From 35b6d8be5549eb7f7dd8ef0426f5dcc187c45734 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Ljunglo=CC=88f?= Date: Mon, 8 Jul 2019 23:02:53 +0200 Subject: [PATCH 01/85] Unit testing for RGL languages, written in Python 2+3 --- src/unittest.py | 147 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 147 insertions(+) create mode 100644 src/unittest.py diff --git a/src/unittest.py b/src/unittest.py new file mode 100644 index 000000000..fb4d7d79d --- /dev/null +++ b/src/unittest.py @@ -0,0 +1,147 @@ +""" +Python 2+3 script for unit testing RGL grammars. + +Usage: python path-to-script.py path/to/testfile.gftest ... +The script muste be located in the RGL 'src' directory to work properly. + +The test file should look something like this: + + LangSwe: jag sover i huset + LangEng: I sleep in the house + + LangSwe: huset verkar stort + Lang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP ... + +This contains two tests: Every test should be separated by empty lines. +Every line starts with a language, followed by ":" and the sentence +(or the abstract syntax tree if the abstract grammar is specified). +""" + +from __future__ import print_function + +import sys +import io +import os.path +from subprocess import Popen, PIPE +from glob import glob + +ENCODING = 'utf-8' + + +def usage(): + print("Usage: python %s path/to/testfile.gftest ..." % (sys.argv[0],)) + print() + print("(Note: to work properly this script must be located in") + print("the RGL 'src' directory, and gf must be in the system path)") + print() + + +def error(linenr, *args): + print("[Error at line %s]" % (linenr,), *args) + + +def gferror(reply): + return (reply.startswith('The parser failed') + or reply.startswith('The sentence is not complete') + or reply.startswith('Function') and reply.endswith('is not in scope')) + + +def importfile(linenr, lang): + scriptdir = os.path.dirname(sys.argv[0]) or '.' + langfiles = glob('%s/*/%s.gf' % (scriptdir, lang)) + if not langfiles: + error(linenr, "Cannot find language:", lang) + exit(1) + elif len(langfiles) > 1: + error(linenr, "Found multiple language files for %s:" % (lang,), *langfiles) + exit(1) + return langfiles[0] + + +def stripstrings(strings): + return [s for s0 in strings for s in [s0.strip()] if s] + + +def runtest(testlines): + # first we build the input to the GF process: + gfinput = '' + testing = False + for linenr, line in enumerate(testlines, 1): + if ':' in line: + if not testing: + gfinput += 'ps "### %d" \n' % (linenr,) + testing = True + lang, sent = stripstrings(line.split(':', 1)) + gfinput += 'ps "+++ %d %s" \n' % (linenr, lang) + langfile = importfile(linenr, lang) + gfinput += 'i %s \n' % (langfile,) + if '/abstract/' in langfile: + gfinput += 'pt %s \n' % (sent,) + else: + gfinput += 'p -lang=%s "%s" \n' % (lang, sent) + elif not line.strip(): + testing = False + else: + error(linenr, "Ill-formatted line in test file:", line) + exit(1) + + # then we call GF with the script, catching stdout: + gf = Popen('gf -run'.split(), stdin=PIPE, stdout=PIPE) + stdout, _stderr = gf.communicate(gfinput.encode(ENCODING)) + stdout = stdout.decode(ENCODING) + + # then we analyse the result from the GF process: + totalerrors = 0 + alltests = stripstrings(stdout.split('###')) + for testnr, test in enumerate(alltests, 1): + sents = stripstrings(test.split('+++')) + startline = int(sents.pop(0)) + print("Test %d (line %d..): %d examples" % (testnr, startline, len(sents))) + testerrors = 0 + oldresults = [] + for sresults in sents: + alltrees = stripstrings(sresults.splitlines()) + linenr, lang = alltrees.pop(0).split() + if len(alltrees) == 0 or len(alltrees) == 1 and gferror(alltrees[0]): + theerror = alltrees[0] if alltrees else "No parse trees found" + error(linenr, theerror) + testerrors += 1 + else: + allerrors = [(sum(tree not in oldtrees for _, _, oldtrees in oldresults), tree) + for tree in alltrees] + besterrors, besttree = min(allerrors) + if besterrors > 0: + for oldlinenr, oldlang, oldtrees in oldresults: + if besttree not in oldtrees: + error(linenr, "Line %s (%s) is not a translation of line %s (%s)" + % (linenr, lang, oldlinenr, oldlang)) + testerrors += 1 + oldresults.append((linenr, lang, alltrees)) + if not testerrors: + print("OK!") + print() + totalerrors += testerrors + + # finally we report a summary: + if not totalerrors: + print("All %d tests passed!" % (len(alltests),)) + else: + print("There were %d errors in %d tests!" % (totalerrors, len(alltests))) + print() + + +if __name__ == '__main__': + if len(sys.argv) <= 1: + usage() + exit(1) + for filename in sys.argv[1:]: + try: + print("# Testing file:", filename) + with io.open(filename, encoding=ENCODING) as F: + print() + runtest(F) + except IOError as err: + print(err) + print() + usage() + exit(1) From 9646629fb3d20a8a1c380bf055f42e24c41b94ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Ljunglo=CC=88f?= Date: Fri, 12 Jul 2019 10:19:06 +0200 Subject: [PATCH 02/85] unittest: Move script to new directory --- {src => unittest}/unittest.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {src => unittest}/unittest.py (100%) diff --git a/src/unittest.py b/unittest/unittest.py similarity index 100% rename from src/unittest.py rename to unittest/unittest.py From 29ee6d0d70a9b93e3e2aaa3c2ee7a4ad7e4e8411 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Ljunglo=CC=88f?= Date: Fri, 12 Jul 2019 10:25:11 +0200 Subject: [PATCH 03/85] unittest: updated the script to be able to work from the unittest directory --- unittest/unittest.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/unittest/unittest.py b/unittest/unittest.py index fb4d7d79d..4b2c0acc3 100644 --- a/unittest/unittest.py +++ b/unittest/unittest.py @@ -1,8 +1,9 @@ """ Python 2+3 script for unit testing RGL grammars. -Usage: python path-to-script.py path/to/testfile.gftest ... -The script muste be located in the RGL 'src' directory to work properly. +Usage: python path-to-script.py path/to/testfile.gftest (...) +The script must be located in a sibling directory +to the RGL 'src' directory to work properly. The test file should look something like this: @@ -25,14 +26,15 @@ import os.path from subprocess import Popen, PIPE from glob import glob +GRAMMARDIR = '../src' ENCODING = 'utf-8' def usage(): - print("Usage: python %s path/to/testfile.gftest ..." % (sys.argv[0],)) + print("Usage: python %s path/to/testfile.gftest (...)" % (sys.argv[0],)) print() print("(Note: to work properly this script must be located in") - print("the RGL 'src' directory, and gf must be in the system path)") + print("the RGL 'unittest' directory, and gf must be in the system path)") print() @@ -48,7 +50,7 @@ def gferror(reply): def importfile(linenr, lang): scriptdir = os.path.dirname(sys.argv[0]) or '.' - langfiles = glob('%s/*/%s.gf' % (scriptdir, lang)) + langfiles = glob('%s/%s/*/%s.gf' % (scriptdir, GRAMMARDIR, lang)) if not langfiles: error(linenr, "Cannot find language:", lang) exit(1) From 7cbe4e78106398f854452524e3cea8422675fbcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Ljunglo=CC=88f?= Date: Fri, 12 Jul 2019 10:38:01 +0200 Subject: [PATCH 04/85] unittest: adding support for Python- or GF-style comments --- unittest/unittest.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/unittest/unittest.py b/unittest/unittest.py index 4b2c0acc3..199e4ca2c 100644 --- a/unittest/unittest.py +++ b/unittest/unittest.py @@ -69,7 +69,10 @@ def runtest(testlines): gfinput = '' testing = False for linenr, line in enumerate(testlines, 1): - if ':' in line: + if line.startswith('#') or line.startswith('--'): + # a comment line: do nothing + pass + elif ':' in line: if not testing: gfinput += 'ps "### %d" \n' % (linenr,) testing = True @@ -82,6 +85,7 @@ def runtest(testlines): else: gfinput += 'p -lang=%s "%s" \n' % (lang, sent) elif not line.strip(): + # an empty line: start a new test testing = False else: error(linenr, "Ill-formatted line in test file:", line) From 26442cdbd03884072333b06a649f3efe1258fbf9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Ljunglo=CC=88f?= Date: Fri, 12 Jul 2019 11:05:40 +0200 Subject: [PATCH 05/85] unittest: example test file --- unittest/unittest-example.gftest | 41 ++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 unittest/unittest-example.gftest diff --git a/unittest/unittest-example.gftest b/unittest/unittest-example.gftest new file mode 100644 index 000000000..7897a79e6 --- /dev/null +++ b/unittest/unittest-example.gftest @@ -0,0 +1,41 @@ +# This file consists of some example unittests +# Tests are separated by blank lines +# Comment lines start with "#" or "--" + +# The recommendation is to put unittest files +# in the directory 'src/(language)/unittest' +# and use the file suffix '.gftest' + +# Basic usage: a sentence and its translation +LangEng: I sleep in the house +LangSwe: jag sover i huset + +# Comparing a sentence and a parse tree +LangEng: the house is big +Lang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumSg) (UseN house_N)) (UseComp (CompAP (PositA big_A)))))) NoVoc + +-- Several translations of a sentence +LangEng: I sleep in the house +LangSwe: jag sover i huset +LangGer: ich schlafe im Haus + +-- Ambiguous sentences (the fish can be singular or plural) +-- The test is correct if some translations match +-- (i.e., if the set of parse trees overlap) +LangEng: the cat eats the fish +LangSwe: katten äter fisken + +# If we only specify one sentence, the script only checks if it's possible to parse +LangEng: the cat in Paris sleeps + +# This test should fail, becuase they are not translations of each other +LangEng: the house is big +LangSwe: jag sover i huset + +# Here are some GF parsing errors +# This sentence cannot be parsed: +LangEng: this is not parseable +# This sentence is not complete: +LangEng: I sleep in +# This is not an abstract syntax tree: +Lang: THIS IS NOT A TREE From 2d3d382a417509b06164c66fcd7e57a124edb6df Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Mon, 5 Aug 2019 10:57:26 +0200 Subject: [PATCH 06/85] unittest: create README.md as main documentation --- unittest/README.md | 28 ++++++++++++++++++++++++++++ unittest/unittest.py | 12 +----------- 2 files changed, 29 insertions(+), 11 deletions(-) create mode 100644 unittest/README.md diff --git a/unittest/README.md b/unittest/README.md new file mode 100644 index 000000000..fdfa5e80e --- /dev/null +++ b/unittest/README.md @@ -0,0 +1,28 @@ +# Python script for unit testing RGL grammars + +## Usage + +``` +python path-to-script.py path/to/testfile.gftest (...) +``` + +The script must be located in a sibling directory +to the RGL `src` directory to work properly. + +## Test format + +The test file should look something like this: + +``` +LangSwe: jag sover i huset +LangEng: I sleep in the house + +LangSwe: huset verkar stort +Lang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP ... +``` + +This contains two tests: Every test should be separated by empty lines. +Every line starts with a language, followed by ":" and the sentence +(or the abstract syntax tree if the abstract grammar is specified). + +You can also see an example in the file [`unittest-example.gftest`](unittest-example.gftest). diff --git a/unittest/unittest.py b/unittest/unittest.py index 199e4ca2c..f16ef5895 100644 --- a/unittest/unittest.py +++ b/unittest/unittest.py @@ -5,17 +5,7 @@ Usage: python path-to-script.py path/to/testfile.gftest (...) The script must be located in a sibling directory to the RGL 'src' directory to work properly. -The test file should look something like this: - - LangSwe: jag sover i huset - LangEng: I sleep in the house - - LangSwe: huset verkar stort - Lang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP ... - -This contains two tests: Every test should be separated by empty lines. -Every line starts with a language, followed by ":" and the sentence -(or the abstract syntax tree if the abstract grammar is specified). +For for information see README.md """ from __future__ import print_function From 4c02a6c6d12d91505c014eb865fbd3922fec91a0 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Sun, 11 Aug 2019 14:34:55 +0200 Subject: [PATCH 07/85] (unittest) Add option to only use cc, never parse Usage like before, but add -only-cc as one of the arguments. For example: `python3 unittest/unittest.py src/somali/unittest/vp.gftest -only-cc` In order for it to work, the test file has to only contain test cases like this: ``` LangSom: isku BIND ma barto Lang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PNeg (PredVP (UsePron youSg_Pron) (ReflVP (SlashV2a teach_V2))))) NoVoc ``` &+ needs to be written as BIND. --- unittest/unittest.py | 106 +++++++++++++++++++++++++++++++++---------- 1 file changed, 83 insertions(+), 23 deletions(-) diff --git a/unittest/unittest.py b/unittest/unittest.py index f16ef5895..8f2d8b048 100644 --- a/unittest/unittest.py +++ b/unittest/unittest.py @@ -53,9 +53,45 @@ def importfile(linenr, lang): def stripstrings(strings): return [s for s0 in strings for s in [s0.strip()] if s] +def create_gf_input_cc_only(testlines): + # building the input to the GF process out of the lines of test file + gfinput = '' + testing = False + for linenr, line in enumerate(testlines, 1): + if line.startswith('#') or line.startswith('--'): + # a comment line: do nothing + pass + elif ':' in line: + if not testing: + gfinput += 'ps "### %d" \n' % (linenr,) + testing = True + lang, sent = stripstrings(line.split(':', 1)) + langfile = importfile(linenr, lang) + if '/abstract/' not in langfile: + gfinput += 'ps "+++ %d %s" \n' % (linenr, lang) + gfinput += 'i -retain -no-pmcfg %s \n' % (langfile,) + gfinput += 'ps "%s" \n' % (sent,) # Gold standard to compare against + else: + gfinput += 'cc -unqual -one %s \n' % (sent,) + elif not line.strip(): + # an empty line: start a new test + testing = False + else: + error(linenr, "Ill-formatted line in test file:", line) + exit(1) -def runtest(testlines): - # first we build the input to the GF process: + # if cc only, gf input is this long and complicated thing + command = [ + u'gf', + u'-run', + u'-retain', + u'-no-pmcfg', + u'-gfo-dir=/tmp'] + + return (command,gfinput) + +def create_gf_input(testlines): + # building the input to the GF process out of the lines of test file gfinput = '' testing = False for linenr, line in enumerate(testlines, 1): @@ -81,14 +117,25 @@ def runtest(testlines): error(linenr, "Ill-formatted line in test file:", line) exit(1) - # then we call GF with the script, catching stdout: - gf = Popen('gf -run'.split(), stdin=PIPE, stdout=PIPE) + # If we're parsing, then command is just `gf -run' + return ('gf -run'.split(), gfinput) + +def runtest(testlines,is_cc_only): + # first we build the input to the GF process: + if is_cc_only: + command,gfinput = create_gf_input_cc_only(testlines) + else: + command,gfinput = create_gf_input(testlines) + + # calling GF from a subprocess: + gf = Popen(command, stdin=PIPE, stdout=PIPE) stdout, _stderr = gf.communicate(gfinput.encode(ENCODING)) stdout = stdout.decode(ENCODING) # then we analyse the result from the GF process: totalerrors = 0 alltests = stripstrings(stdout.split('###')) + for testnr, test in enumerate(alltests, 1): sents = stripstrings(test.split('+++')) startline = int(sents.pop(0)) @@ -103,16 +150,24 @@ def runtest(testlines): error(linenr, theerror) testerrors += 1 else: - allerrors = [(sum(tree not in oldtrees for _, _, oldtrees in oldresults), tree) - for tree in alltrees] - besterrors, besttree = min(allerrors) - if besterrors > 0: - for oldlinenr, oldlang, oldtrees in oldresults: - if besttree not in oldtrees: - error(linenr, "Line %s (%s) is not a translation of line %s (%s)" - % (linenr, lang, oldlinenr, oldlang)) - testerrors += 1 - oldresults.append((linenr, lang, alltrees)) + if is_cc_only: + # If is_cc_only, gfinput (and thus stdout) include gold standard + gold = alltrees.pop(0) + lin = alltrees.pop(0) + if gold != lin: + testerrors += 1 + error(linenr,"\nExpected linearisation\n\t%s \n\nActual linearisation\n\t%s" % (gold, lin)) + else: + allerrors = [(sum(tree not in oldtrees for _, _, oldtrees in oldresults), tree) + for tree in alltrees] + besterrors, besttree = min(allerrors) + if besterrors > 0: + for oldlinenr, oldlang, oldtrees in oldresults: + if besttree not in oldtrees: + error(linenr, "Line %s (%s) is not a translation of line %s (%s)" + % (linenr, lang, oldlinenr, oldlang)) + testerrors += 1 + oldresults.append((linenr, lang, alltrees)) if not testerrors: print("OK!") print() @@ -130,14 +185,19 @@ if __name__ == '__main__': if len(sys.argv) <= 1: usage() exit(1) + if "-only-cc" in sys.argv: + is_cc_only = True + else: + is_cc_only = False for filename in sys.argv[1:]: - try: - print("# Testing file:", filename) - with io.open(filename, encoding=ENCODING) as F: + if filename != "-only-cc": + try: + print("# Testing file:", filename) + with io.open(filename, encoding=ENCODING) as F: + print() + runtest(F,is_cc_only) + except IOError as err: + print(err) print() - runtest(F) - except IOError as err: - print(err) - print() - usage() - exit(1) + usage() + exit(1) From 091e53619d281b793021d77903f6bf7d3732c429 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Ljunglo=CC=88f?= Date: Thu, 22 Aug 2019 11:31:51 +0200 Subject: [PATCH 08/85] Updated script: better handling of arguments, simplified code, better reporting, etc. Note that the flag `-only-cc` has been renamed to `--no-pmcfg` --- unittest/unittest.py | 238 +++++++++++++++++++++++-------------------- 1 file changed, 130 insertions(+), 108 deletions(-) diff --git a/unittest/unittest.py b/unittest/unittest.py index 8f2d8b048..fa01d6b10 100644 --- a/unittest/unittest.py +++ b/unittest/unittest.py @@ -1,11 +1,10 @@ """ Python 2+3 script for unit testing RGL grammars. -Usage: python path-to-script.py path/to/testfile.gftest (...) -The script must be located in a sibling directory +This script must be located in a sibling directory to the RGL 'src' directory to work properly. -For for information see README.md +For for information see README.md, or run with argument '-h' """ from __future__ import print_function @@ -13,6 +12,7 @@ from __future__ import print_function import sys import io import os.path +import argparse from subprocess import Popen, PIPE from glob import glob @@ -20,25 +20,40 @@ GRAMMARDIR = '../src' ENCODING = 'utf-8' -def usage(): - print("Usage: python %s path/to/testfile.gftest (...)" % (sys.argv[0],)) - print() - print("(Note: to work properly this script must be located in") - print("the RGL 'unittest' directory, and gf must be in the system path)") - print() +def create_argparser(): + """Creates an command line argument parser""" + parser = argparse.ArgumentParser( + description="Unit-test one (or more) RGL language(s).", + epilog=""" +This script must be located in a sibling directory +to the RGL 'src' directory to work properly. +For for information see README.md. +""") + parser.add_argument('testfile', nargs='+', + help="one (or more) .gfscript file(s) containing unittests") + parser.add_argument('-v', '--verbose', action='store_true', + help="be more verbose") + parser.add_argument('--no-pmcfg', action='store_true', + help="don't calculate the PMCFG (faster for complex grammars); " + "for this to work, every test case needs a parse tree") + return parser def error(linenr, *args): + """Prints an error to the terminal""" print("[Error at line %s]" % (linenr,), *args) def gferror(reply): + """Determines if a GF reply is an error""" return (reply.startswith('The parser failed') or reply.startswith('The sentence is not complete') + or reply.startswith('Warning:') or reply.startswith('Function') and reply.endswith('is not in scope')) def importfile(linenr, lang): + """Calculate the path to the GF file to import""" scriptdir = os.path.dirname(sys.argv[0]) or '.' langfiles = glob('%s/%s/*/%s.gf' % (scriptdir, GRAMMARDIR, lang)) if not langfiles: @@ -51,83 +66,98 @@ def importfile(linenr, lang): def stripstrings(strings): + """Strip leading/trailing blanks of every string in the given list""" return [s for s0 in strings for s in [s0.strip()] if s] -def create_gf_input_cc_only(testlines): - # building the input to the GF process out of the lines of test file - gfinput = '' - testing = False + +def numbered_np(num, noun, plural=None): + """Crude way of inflecting nouns for number""" + return "%d %s" % (num, noun if num == 1 else (plural or noun+'s')) + + +def collect_testcases(testlines): + """Parse the test file and return a list of test cases""" + tests = [[]] for linenr, line in enumerate(testlines, 1): if line.startswith('#') or line.startswith('--'): # a comment line: do nothing pass - elif ':' in line: - if not testing: - gfinput += 'ps "### %d" \n' % (linenr,) - testing = True - lang, sent = stripstrings(line.split(':', 1)) - langfile = importfile(linenr, lang) - if '/abstract/' not in langfile: - gfinput += 'ps "+++ %d %s" \n' % (linenr, lang) - gfinput += 'i -retain -no-pmcfg %s \n' % (langfile,) - gfinput += 'ps "%s" \n' % (sent,) # Gold standard to compare against - else: - gfinput += 'cc -unqual -one %s \n' % (sent,) elif not line.strip(): # an empty line: start a new test - testing = False + if tests[-1]: + tests.append([]) + elif ':' in line: + lang, sentence = stripstrings(line.split(':', 1)) + langfile = importfile(linenr, lang) + is_tree = '/abstract/' in langfile + tests[-1].append((is_tree, linenr, lang, langfile, sentence)) else: error(linenr, "Ill-formatted line in test file:", line) exit(1) + return tests - # if cc only, gf input is this long and complicated thing - command = [ - u'gf', - u'-run', - u'-retain', - u'-no-pmcfg', - u'-gfo-dir=/tmp'] - return (command,gfinput) - -def create_gf_input(testlines): - # building the input to the GF process out of the lines of test file - gfinput = '' - testing = False - for linenr, line in enumerate(testlines, 1): - if line.startswith('#') or line.startswith('--'): - # a comment line: do nothing - pass - elif ':' in line: - if not testing: - gfinput += 'ps "### %d" \n' % (linenr,) - testing = True - lang, sent = stripstrings(line.split(':', 1)) - gfinput += 'ps "+++ %d %s" \n' % (linenr, lang) - langfile = importfile(linenr, lang) - gfinput += 'i %s \n' % (langfile,) - if '/abstract/' in langfile: - gfinput += 'pt %s \n' % (sent,) - else: - gfinput += 'p -lang=%s "%s" \n' % (lang, sent) - elif not line.strip(): - # an empty line: start a new test - testing = False - else: - error(linenr, "Ill-formatted line in test file:", line) +def create_gf_input(testcases, args): + """Create a GF test script from the collected test cases""" + gfscript = [] + for test in testcases: + test_linenr = test[0][1] + # check if the test contains an abstract tree: + abs_linenr = abs_tree = None + test.sort(key=lambda x:x[0], reverse=True) + if test[0][0]: + _, abs_linenr, abs_lang, _, abs_tree = test.pop(0) + # the test should not consist of only a tree: + if not test: + error(test_linenr, "Empty test case") exit(1) + # there should not be more than one abstree in the test: + if test[0][0]: + error(test[0][1], "Multiple abstract trees in test case") + exit(1) + # if there is an abstree, we use it for linearisation: + if abs_tree: + for _, linenr, lang, langfile, sentence in test: + gfscript += ['ps "### %d"' % (test_linenr,), + 'ps "+++ %d %s"' % (abs_linenr, abs_lang)] + if not args.no_pmcfg: + gfscript += ['i %s' % (langfile,), + 'l -lang=%s %s' % (lang, abs_tree)] + else: + gfscript += ['i -retain -no-pmcfg %s' % (langfile,), + 'cc -unqual -one %s' % (abs_tree,)] + gfscript += ['ps "+++ %d %s"' % (linenr, lang), + 'ps "%s"' % (sentence,)] + # if there is no abstree, we have to use parsing; + # in this case, the flag 'no_pmfcg' is of no use: + elif args.no_pmcfg: + error(test_linenr, "The flag '--no-pmcfg' requires that all test cases contain an abstract tree") + exit(1) + else: + gfscript += ['ps "### %d"' % (test_linenr,)] + for _, linenr, lang, langfile, sentence in test: + gfscript += ['ps "+++ %d %s"' % (linenr, lang), + 'i %s' % (langfile,), + 'p -lang=%s "%s"' % (lang, sentence)] + return gfscript - # If we're parsing, then command is just `gf -run' - return ('gf -run'.split(), gfinput) -def runtest(testlines,is_cc_only): +def runtest(testlines, args): + """Read the test cases, run GF and report the results""" + # first we build the input to the GF process: - if is_cc_only: - command,gfinput = create_gf_input_cc_only(testlines) - else: - command,gfinput = create_gf_input(testlines) + testcases = collect_testcases(testlines) + gfscript = create_gf_input(testcases, args) + + if args.verbose: + print("---+ GF testing script:") + for line in gfscript: + print(' |', line) + print() # calling GF from a subprocess: + command = 'gf -run'.split() + gfinput = '\n'.join(gfscript) + '\n' gf = Popen(command, stdin=PIPE, stdout=PIPE) stdout, _stderr = gf.communicate(gfinput.encode(ENCODING)) stdout = stdout.decode(ENCODING) @@ -139,35 +169,33 @@ def runtest(testlines,is_cc_only): for testnr, test in enumerate(alltests, 1): sents = stripstrings(test.split('+++')) startline = int(sents.pop(0)) - print("Test %d (line %d..): %d examples" % (testnr, startline, len(sents))) + print("Test %d (line %d..): %s" % (testnr, startline, numbered_np(len(sents), "example"))) testerrors = 0 oldresults = [] for sresults in sents: alltrees = stripstrings(sresults.splitlines()) linenr, lang = alltrees.pop(0).split() - if len(alltrees) == 0 or len(alltrees) == 1 and gferror(alltrees[0]): - theerror = alltrees[0] if alltrees else "No parse trees found" + if args.verbose: + print('---+ line %s (%s), result from GF:' % (linenr, lang)) + for tree in alltrees: + print(' |', tree) + if len(alltrees) == 0 or gferror("\n".join(alltrees)): + theerror = "\n".join(alltrees) if alltrees else "No parse trees found" error(linenr, theerror) testerrors += 1 else: - if is_cc_only: - # If is_cc_only, gfinput (and thus stdout) include gold standard - gold = alltrees.pop(0) - lin = alltrees.pop(0) - if gold != lin: - testerrors += 1 - error(linenr,"\nExpected linearisation\n\t%s \n\nActual linearisation\n\t%s" % (gold, lin)) - else: - allerrors = [(sum(tree not in oldtrees for _, _, oldtrees in oldresults), tree) - for tree in alltrees] - besterrors, besttree = min(allerrors) - if besterrors > 0: - for oldlinenr, oldlang, oldtrees in oldresults: - if besttree not in oldtrees: - error(linenr, "Line %s (%s) is not a translation of line %s (%s)" - % (linenr, lang, oldlinenr, oldlang)) - testerrors += 1 - oldresults.append((linenr, lang, alltrees)) + allerrors = [(sum(tree not in oldtrees for _, _, oldtrees in oldresults), tree) + for tree in alltrees] + besterrors, besttree = min(allerrors) + if besterrors > 0: + for oldlinenr, oldlang, oldtrees in oldresults: + if besttree not in oldtrees: + error(linenr, + "The result of line %s (%s):\n %s\n" + "is not among the results of line %s (%s):\n %s" + % (linenr, lang, besttree, oldlinenr, oldlang, "\n ".join(oldtrees))) + testerrors += 1 + oldresults.append((linenr, lang, alltrees)) if not testerrors: print("OK!") print() @@ -175,29 +203,23 @@ def runtest(testlines,is_cc_only): # finally we report a summary: if not totalerrors: - print("All %d tests passed!" % (len(alltests),)) + print("All %s passed!" % (numbered_np(len(alltests), "test"),)) else: - print("There were %d errors in %d tests!" % (totalerrors, len(alltests))) + print("Found %s in %s!" % (numbered_np(totalerrors, "error"), numbered_np(len(alltests), "test"))) print() if __name__ == '__main__': - if len(sys.argv) <= 1: - usage() - exit(1) - if "-only-cc" in sys.argv: - is_cc_only = True - else: - is_cc_only = False - for filename in sys.argv[1:]: - if filename != "-only-cc": - try: - print("# Testing file:", filename) - with io.open(filename, encoding=ENCODING) as F: - print() - runtest(F,is_cc_only) - except IOError as err: - print(err) + parser = create_argparser() + args = parser.parse_args() + for filename in args.testfile: + try: + print("# Testing file:", filename) + with io.open(filename, encoding=ENCODING) as F: print() - usage() - exit(1) + runtest(F, args) + except IOError as err: + print(err) + print() + parser.print_usage() + exit(1) From 7e1d0d87ea2112f66f63f560f750e8b566d13f82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Ljunglo=CC=88f?= Date: Thu, 22 Aug 2019 11:32:35 +0200 Subject: [PATCH 09/85] Updated README --- unittest/README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/unittest/README.md b/unittest/README.md index fdfa5e80e..430694489 100644 --- a/unittest/README.md +++ b/unittest/README.md @@ -3,7 +3,7 @@ ## Usage ``` -python path-to-script.py path/to/testfile.gftest (...) +python path/to/unittest.py [-h] [-v] [--no-pmcfg] path/to/testfile.gftest (...) ``` The script must be located in a sibling directory @@ -26,3 +26,10 @@ Every line starts with a language, followed by ":" and the sentence (or the abstract syntax tree if the abstract grammar is specified). You can also see an example in the file [`unittest-example.gftest`](unittest-example.gftest). + +## No PMCFG + +If your grammar is complex and takes long time to compile, you can try +the option `--no-pmcfg`, which tells GF to not build the parsing grammar. + +Note however that in this case, every test case needs to contain a parse tree. From 01f6957bad7cbc96e37a8f784b7487ad8ab8cf31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Ljunglo=CC=88f?= Date: Thu, 22 Aug 2019 11:33:00 +0200 Subject: [PATCH 10/85] Updated example test cases --- unittest/unittest-example.gftest | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/unittest/unittest-example.gftest b/unittest/unittest-example.gftest index 7897a79e6..8a8553510 100644 --- a/unittest/unittest-example.gftest +++ b/unittest/unittest-example.gftest @@ -28,14 +28,25 @@ LangSwe: katten äter fisken # If we only specify one sentence, the script only checks if it's possible to parse LangEng: the cat in Paris sleeps -# This test should fail, becuase they are not translations of each other +# This test should fail, because they are not translations of each other LangEng: the house is big LangSwe: jag sover i huset -# Here are some GF parsing errors +# This test should fail, because the tree does not have this linearisation +LangEng: the house is small +Lang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumSg) (UseN house_N)) (UseComp (CompAP (PositA big_A)))))) NoVoc + + +# And finally some GF parsing errors + # This sentence cannot be parsed: LangEng: this is not parseable +LangSwe: jag sover i huset + # This sentence is not complete: LangEng: I sleep in +LangSwe: jag sover i huset + # This is not an abstract syntax tree: Lang: THIS IS NOT A TREE +LangSwe: jag sover i huset From 92d70c16d1d1047e9479f441dab8fb047417ecc2 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Wed, 4 Sep 2019 16:11:45 +0200 Subject: [PATCH 11/85] =?UTF-8?q?(Fin)=20Cover=20inflection=20type=20hapan?= =?UTF-8?q?/syd=C3=A4n=20in=20nForms3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/finnish/ParadigmsFin.gf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/finnish/ParadigmsFin.gf b/src/finnish/ParadigmsFin.gf index c45992d55..61ce52b61 100644 --- a/src/finnish/ParadigmsFin.gf +++ b/src/finnish/ParadigmsFin.gf @@ -599,6 +599,8 @@ mkVS = overload { => dRae ukko ukon ; => dArpi ukko ukon ; <_ + ("us" | "ys"), _ + "den"> => dLujuus ukko ; + + => dLiitin ukko ukon ; -- laidun,hapan,sydän not caught in previous <_, _ + "n"> => ukot ; _ => Predef.error (["second argument should end in n, not"] ++ ukon) From 49fdc61eab575ecf8074de217400f972836873b8 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Thu, 5 Sep 2019 16:14:36 +0200 Subject: [PATCH 12/85] (Fin) Add SOFT_BIND before commas --- src/finnish/PhraseFin.gf | 2 +- src/finnish/SentenceFin.gf | 6 +++--- src/finnish/SymbolFin.gf | 2 +- src/finnish/VerbFin.gf | 8 ++++---- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/finnish/PhraseFin.gf b/src/finnish/PhraseFin.gf index e890bf05c..015ac8989 100644 --- a/src/finnish/PhraseFin.gf +++ b/src/finnish/PhraseFin.gf @@ -23,7 +23,7 @@ concrete PhraseFin of Phrase = CatFin ** open ResFin, StemFin, (P = Prelude) in PConjConj conj = {s = conj.s2} ; NoVoc = {s = []} ; - VocNP np = {s = "," ++ np.s ! NPSep} ; + VocNP np = {s = SOFT_BIND ++ "," ++ np.s ! NPSep} ; oper addNegation : P.Bool -> Str = \isNeg -> case isNeg of {P.True => "ei" ; _ => []} ; diff --git a/src/finnish/SentenceFin.gf b/src/finnish/SentenceFin.gf index 269b47ab0..f5d9b5f0d 100644 --- a/src/finnish/SentenceFin.gf +++ b/src/finnish/SentenceFin.gf @@ -61,10 +61,10 @@ concrete SentenceFin of Sentence = CatFin ** open Prelude, ResFin, StemFin in { } ; AdvS a s = {s = a.s ++ s.s} ; - ExtAdvS a s = {s = a.s ++ "," ++ s.s} ; + ExtAdvS a s = {s = a.s ++ SOFT_BIND ++ "," ++ s.s} ; - RelS s r = {s = s.s ++ "," ++ r.s ! agrP3 Sg} ; ---- mikä + RelS s r = {s = s.s ++ SOFT_BIND ++ "," ++ r.s ! agrP3 Sg} ; ---- mikä - SSubjS a subj b = {s = a.s ++ "," ++ subj.s ++ b.s} ; + SSubjS a subj b = {s = a.s ++ SOFT_BIND ++ "," ++ subj.s ++ b.s} ; } diff --git a/src/finnish/SymbolFin.gf b/src/finnish/SymbolFin.gf index 26763536b..a922c4521 100644 --- a/src/finnish/SymbolFin.gf +++ b/src/finnish/SymbolFin.gf @@ -38,7 +38,7 @@ lin MkSymb s = s ; BaseSymb = infixSS "ja" ; - ConsSymb = infixSS "," ; + ConsSymb = infixSS (SOFT_BIND ++ ",") ; } diff --git a/src/finnish/VerbFin.gf b/src/finnish/VerbFin.gf index bad8752ec..d50db2158 100644 --- a/src/finnish/VerbFin.gf +++ b/src/finnish/VerbFin.gf @@ -29,8 +29,8 @@ concrete VerbFin of Verb = CatFin ** open Prelude, ResFin, StemFin in { } ) ; - ComplVS v s = insertExtrapos ("," ++ etta_Conj ++ s.s) (predSV v) ; - ComplVQ v q = insertExtrapos ("," ++ q.s) (predSV v) ; + ComplVS v s = insertExtrapos (SOFT_BIND ++ "," ++ etta_Conj ++ s.s) (predSV v) ; + ComplVQ v q = insertExtrapos (SOFT_BIND ++ "," ++ q.s) (predSV v) ; ComplVA v ap = insertObj (\\_,b,agr => @@ -39,9 +39,9 @@ concrete VerbFin of Verb = CatFin ** open Prelude, ResFin, StemFin in { (predSV v) ; SlashV2S v s = - insertExtrapos ("," ++ etta_Conj ++ s.s) (predSV v) ** {c2 = v.c2} ; + insertExtrapos (SOFT_BIND ++ "," ++ etta_Conj ++ s.s) (predSV v) ** {c2 = v.c2} ; SlashV2Q v q = - insertExtrapos ("," ++ q.s) (predSV v) ** {c2 = v.c2} ; + insertExtrapos (SOFT_BIND ++ "," ++ q.s) (predSV v) ** {c2 = v.c2} ; SlashV2V v vp = insertObj (\\_,b,a => infVP v.sc b a vp (vvtype2infform v.vi)) (predSV v) ** {c2 = v.c2} ; SlashV2A v ap = From ea1d7c4601f5cf4d5833ff843206a3a4f87a63cb Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Thu, 5 Sep 2019 16:15:36 +0200 Subject: [PATCH 13/85] (Fin) quality SOFT_BIND with Prelude --- src/finnish/PhraseFin.gf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/finnish/PhraseFin.gf b/src/finnish/PhraseFin.gf index 015ac8989..35f424ed4 100644 --- a/src/finnish/PhraseFin.gf +++ b/src/finnish/PhraseFin.gf @@ -23,7 +23,7 @@ concrete PhraseFin of Phrase = CatFin ** open ResFin, StemFin, (P = Prelude) in PConjConj conj = {s = conj.s2} ; NoVoc = {s = []} ; - VocNP np = {s = SOFT_BIND ++ "," ++ np.s ! NPSep} ; + VocNP np = {s = P.SOFT_BIND ++ "," ++ np.s ! NPSep} ; oper addNegation : P.Bool -> Str = \isNeg -> case isNeg of {P.True => "ei" ; _ => []} ; From df11d86ffbbd55a3e8acee0ea6958d7053859e8d Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Fri, 6 Sep 2019 15:32:48 +0200 Subject: [PATCH 14/85] (Som) Cleanup and renaming functions --- src/somali/ResSom.gf | 75 +++++++++++++++++++------------------------- 1 file changed, 33 insertions(+), 42 deletions(-) diff --git a/src/somali/ResSom.gf b/src/somali/ResSom.gf index c27d2c92c..6e96e5a19 100644 --- a/src/somali/ResSom.gf +++ b/src/somali/ResSom.gf @@ -882,14 +882,14 @@ oper let hasSubjPron : Bool = False ; hasSTM : Bool = False ; isRel : Bool = True ; - in wordOrder Subord isRel hasSubjPron hasSTM ; + in mkClause Subord isRel hasSubjPron hasSTM ; -- No subject pronoun, no STM, but use verb forms from Statement cl2rclNom : ClSlash -> Clause = \cls -> let hasSubjPron : Bool = False ; hasSTM : Bool = False ; isRel : Bool = True ; - in wordOrder Statement isRel hasSubjPron hasSTM cls ; + in mkClause Statement isRel hasSubjPron hasSTM cls ; -- RelSlash: subject pronoun is included if it's not 3rd person -- TODO check this rule with more example sentences @@ -897,14 +897,14 @@ oper let hasSubjPron : Bool = True ; hasSTM : Bool = False ; isRel : Bool = True ; - in wordOrder Subord isRel hasSubjPron hasSTM ; + in mkClause Subord isRel hasSubjPron hasSTM ; -- Question clauses: subject pronoun not included, STM is cl2qcl : ClSlash -> Clause = let hasSubjPron : Bool = False ; hasSTM : Bool = True ; isRel : Bool = False ; - in wordOrder Question isRel hasSubjPron hasSTM ; + in mkClause Question isRel hasSubjPron hasSTM ; -- Sentence: include subject pronoun and STM. -- When subordinate, include "in". @@ -916,12 +916,12 @@ oper cl : ClSlash = case isSubord of { -- add "in" to the clause if used as subordinate True => cls ** {vComp = cls.vComp ** {subjunc = "in"}} ; False => cls } ; - sent = wordOrder cltyp False True True cl + sent = mkClause cltyp False True True cl in sent.s ! t ! a ! p } ; - wordOrder : ClType -> (rel,sp,stm : Bool) -> ClSlash -> Clause = \cltyp,isRel,hasSubjPron,hasSTM,incomplCl -> { + mkClause : ClType -> (rel,sp,stm : Bool) -> ClSlash -> Clause = \cltyp,isRel,hasSubjPron,hasSTM,incomplCl -> { s = \\t,a,p => let -- Put all arguments in their right place cl : ClSlash = complCl incomplCl ; @@ -1044,16 +1044,6 @@ oper -- linrefs oper - linVP : VForm -> ClType -> VerbPhrase -> Str = \vf,cltyp,vp -> - let pred = vp.s ! vf ; - vp' = complSlash vp ; - stm = case of { - => {p1 = "aan" ; p2 = []} ; - _ => {p1,p2 = []} - } ; - wo = wordOrderOld (Sg3 Masc) [] stm (vp'.comp ! pagr2agr vp.obj2.a) pred vp' cltyp ; - in wo.beforeSTM ++ wo.stm ++ wo.afterSTM ; - linCN : CNoun -> Str = \cn -> cn.s ! Indef Sg ++ cn.mod ! Indefinite ! Sg ! Abs ; linAdv : Adverb -> Str = \adv -> adv.berri @@ -1062,34 +1052,35 @@ oper ++ adv.dhex ++ adv.np.s ++ adv.miscAdv ; - linBaseCl : BaseCl -> Str = \b -> b.beforeSTM ++ b.stm ++ b.afterSTM ; - -- TODO: deprecate eventually - BaseCl : Type = {beforeSTM, stm, afterSTM : Str} ; -- adverbs, subjects, all that comes before sentence type marker. Eventual Subj attaches to the part after STM. + linVP : VForm -> ClType -> VerbPhrase -> Str = \vf,cltyp,vp -> + let pred = vp.s ! vf ; + vp' = complSlash vp ; + neg = case of { + => "aan" ; + _ => [] + } ; + in wordOrder cltyp neg pred (vp'.comp ! pagr2agr vp.obj2.a) vp' ; - wordOrderOld : Agreement -> (sn : Str) -> (stm,obj : {p1,p2 : Str}) -> Str -> VerbPhrase -> ClType -> BaseCl = - \agr,subjnoun,stm,obj,pred,vp,cltyp -> { - beforeSTM = vp.berri -- AdV - ++ subjnoun -- subject if it's a noun - ++ case cltyp of { - Subord => [] ; - _ => obj.p1 } ; -- noun object if it's a statement - - stm = stm.p1 ; -- sentence type marker; empty if subordinate and positive - - afterSTM = vp.vComp.subjunc -- "waa in" construction - ++ stm.p2 -- possible subj. pronoun - ++ case cltyp of { - Subord => obj.p1 ; -- noun object if it's subordinate clause - _ => [] } - ++ obj.p2 -- object if it's a pronoun - ++ vp.sii -- restricted set of particles - ++ vp.dhex -- restricted set of nouns/adverbials - ++ vp.secObj -- "second object" - ++ vp.vComp.inf -- VV complement, if it's infinitive - ++ pred -- the verb inflected - ++ vp.vComp.subcl ! agr -- VV complement, if it's subordinate clause - ++ vp.miscAdv } ; ---- NB. Only used if there are several adverbs, or for "waa in" construction. + wordOrder : ClType -> (neg,pred : Str) -> (obj : {p1,p2 : Str}) -> VerbPhrase -> Str = + \cltyp,neg,pred,obj,vp -> + vp.berri -- AdV + ++ case cltyp of { + Subord => [] ; + _ => obj.p1 } -- noun object if it's a statement + ++ neg + ++ vp.vComp.subjunc -- "waa in" construction + ++ case cltyp of { + Subord => obj.p1 ; -- noun object if it's subordinate clause + _ => [] } + ++ obj.p2 -- object if it's a pronoun + ++ vp.sii -- restricted set of particles + ++ vp.dhex -- restricted set of nouns/adverbials + ++ vp.secObj -- "second object" + ++ vp.vComp.inf -- VV complement, if it's infinitive + ++ pred -- the verb inflected + ++ vp.vComp.subcl ! Sg3 Masc -- VV complement, if it's subordinate clause + ++ vp.miscAdv ; ---- NB. Only used if there are several adverbs, or for "waa in" construction. } From 0bbc4c551b6e38b3fc6c0483f0c1bec17f956a85 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Tue, 10 Sep 2019 13:13:11 +0200 Subject: [PATCH 15/85] (Som) IAdv + related functions --- src/somali/AdverbSom.gf | 9 +--- src/somali/CatSom.gf | 11 ++--- src/somali/GrammarSom.gf | 4 +- src/somali/PhraseSom.gf | 10 ++--- src/somali/QuestionSom.gf | 19 +++++--- src/somali/ResSom.gf | 87 +++++++++++++++++++++++++------------ src/somali/StructuralSom.gf | 7 +-- 7 files changed, 89 insertions(+), 58 deletions(-) diff --git a/src/somali/AdverbSom.gf b/src/somali/AdverbSom.gf index 95bc1e986..1169ff6f1 100644 --- a/src/somali/AdverbSom.gf +++ b/src/somali/AdverbSom.gf @@ -11,14 +11,7 @@ lin -- ComparAdvAdjS : CAdv -> A -> S -> Adv ; -- more warmly than he runs -- : Prep -> NP -> Adv ; - PrepNP prep np = prep ** { - np = case prep.isPoss of { - True => nplite emptyNP ; - False => nplite np } ; - miscAdv = case prep.isPoss of { - True => np.s ! Abs ++ prep.miscAdv ! np.a ; - False => prep.miscAdv ! Sg3 Masc } - } ; + PrepNP = prepNP ; -- Adverbs can be modified by 'adadjectives', just like adjectives. diff --git a/src/somali/CatSom.gf b/src/somali/CatSom.gf index 1afc5038f..5c2936776 100644 --- a/src/somali/CatSom.gf +++ b/src/somali/CatSom.gf @@ -1,4 +1,4 @@ -concrete CatSom of Cat = CommonX - [Adv] ** open ResSom, Prelude in { +concrete CatSom of Cat = CommonX - [Adv,IAdv] ** open ResSom, Prelude in { flags optimize=all_subs ; @@ -84,11 +84,7 @@ concrete CatSom of Cat = CommonX - [Adv] ** open ResSom, Prelude in { -- Constructed in StructuralSom. Conj = {s2 : State => Str ; s1 : Str ; n : Number } ; Subj = SS ; - Prep = ResSom.Prep ** { - isPoss : Bool ; - c2 : Preposition ; - berri, sii, dhex : Str ; - miscAdv : Agreement => Str } ; + Prep = ResSom.Prep ; @@ -120,7 +116,8 @@ concrete CatSom of Cat = CommonX - [Adv] ** open ResSom, Prelude in { N3 = ResSom.Noun3 ; PN = ResSom.PNoun ; - Adv = ResSom.Adverb ; -- Preposition of an adverbial can merge with obligatory complements of the verb. + Adv, + IAdv = ResSom.Adverb ; -- Preposition of an adverbial can merge with obligatory complements of the verb. linref -- Cl = linCl ; diff --git a/src/somali/GrammarSom.gf b/src/somali/GrammarSom.gf index 1daafc194..1b32f79ae 100644 --- a/src/somali/GrammarSom.gf +++ b/src/somali/GrammarSom.gf @@ -9,10 +9,10 @@ concrete GrammarSom of Grammar = RelativeSom, ConjunctionSom, PhraseSom, - TextX - [Adv], + TextX - [Adv,IAdv], StructuralSom, IdiomSom, - TenseX - [Adv] + TenseX - [Adv,IAdv] ** { flags startcat = Phr ; unlexer = text ; lexer = text ; diff --git a/src/somali/PhraseSom.gf b/src/somali/PhraseSom.gf index f8ab38d74..dd1e596c9 100644 --- a/src/somali/PhraseSom.gf +++ b/src/somali/PhraseSom.gf @@ -12,11 +12,11 @@ concrete PhraseSom of Phrase = CatSom ** open Prelude, ResSom in { UttImpPl = UttImpSg ; UttImpPol = UttImpSg ; - UttIP ip = { s = ip.s ! Abs} ; - UttIAdv iadv = iadv ; - UttNP np = { s = np.s ! Abs} ; - UttVP vp = { s = infVP vp } ; - UttAdv adv = {s = linAdv adv} ; + UttIP ip = {s = ip.s ! Abs} ; + UttNP np = {s = np.s ! Abs} ; + UttVP vp = {s = infVP vp} ; + UttAdv, + UttIAdv = \adv -> {s = linAdv adv} ; UttCN n = {s = linCN n} ; UttCard n = {s = n.s ! Mid} ; UttAP ap = { s = ap.s ! AF Sg Abs } ; diff --git a/src/somali/QuestionSom.gf b/src/somali/QuestionSom.gf index e367585eb..5317fd6d5 100644 --- a/src/somali/QuestionSom.gf +++ b/src/somali/QuestionSom.gf @@ -22,7 +22,16 @@ concrete QuestionSom of Question = CatSom ** open --QuestSlash ip cls = ; -- : IAdv -> Cl -> QCl ; -- why does John walk - -- QuestIAdv iadv cl = { } ; + QuestIAdv iadv cls = + let clRaw : ClSlash = insertIAdv iadv cls ; + sbj = clRaw.subj ; + cl : ClSlash = clRaw ** { + stm = \\clt,p => case of { + -- IAdv is focused + <_,Pos> => "baa" ++ sbj.pron ++ sbj.noun; + _ => clRaw.stm ! clt ! p } ; + subj = {noun, pron = [] ; isP3 = True}} + in cl2qcl cl ; -- : IComp -> NP -> QCl ; -- where is John? -- QuestIComp icomp np = ; @@ -47,21 +56,21 @@ concrete QuestionSom of Question = CatSom ** open -- Interrogative adverbs can be formed prepositionally. -- : Prep -> IP -> IAdv ; -- with whom - PrepIP prep ip = let a = AS.PrepNP prep ip in a ** {s = a.berri} ; + PrepIP = AS.PrepNP ; -- They can be modified with other adverbs. -- : IAdv -> Adv -> IAdv ; -- where in Paris - AdvIAdv iadv adv = iadv ** {s = iadv.s ++ adv.berri} ; + -- AdvIAdv iadv adv = iadv ** {s = iadv.s ++ adv.berri} ; -- TODO do we need PrepCombination in IAdv? -- Interrogative complements to copulas can be both adverbs and -- pronouns. -- : IAdv -> IComp ; - CompIAdv iadv = iadv ; -- where (is it) + --CompIAdv iadv = iadv ; -- where (is it) -- : IP -> IComp ; - CompIP ip = { s = ip.s ! Abs } ; -- who (is it) + --CompIP ip = { s = ip.s ! Abs } ; -- who (is it) {- -- More $IP$, $IDet$, and $IAdv$ are defined in $Structural$. diff --git a/src/somali/ResSom.gf b/src/somali/ResSom.gf index 6e96e5a19..20a3e4227 100644 --- a/src/somali/ResSom.gf +++ b/src/somali/ResSom.gf @@ -170,6 +170,8 @@ oper impersNP : NounPhrase = pronTable ! Impers ; + indeclNP : Str -> NounPhrase = \s -> emptyNP ** {s = \\c => s} ; + -------------------------------------------------------------------------------- -- Pronouns @@ -182,11 +184,11 @@ oper sp : Case => Str ; } ; - {- Saeed p.115: "This combination of possessive and article [kay-ga, tay-da] + {- Saeed p.115: "This combination of possessive and article [kay-ga, tay-da] is the basic form but possessives occur with the full range of determiners, with associated meanings, for example: - remote article kii/tii: gurigaagii 'your house (remote)' - demonstrative kaas/taas: gurigaagaas 'that house of yours' + remote article kii/tii: gurigaagii 'your house (remote)' + demonstrative kaas/taas: gurigaagaas 'that house of yours' interrogative kee/tee: gurigaagee? 'which house of yours?'" Since RGL abstract syntax doesn't allow combining two Quants, the way to go is @@ -327,7 +329,7 @@ oper } ; defIQuant : Str -> Quant = \ee -> - let quantRaw = defQuant ee ("k"+ee) ("t"+ee) ("kuw"+ee) False + let quantRaw = defQuant ee ("k"+ee) ("t"+ee) ("kuw"+ee) False in quantRaw ** { s = \\da,c => quantRaw.s ! da ! Abs ; sp = \\gn,c => quantRaw.sp ! gn ! Abs } ; @@ -344,9 +346,14 @@ oper -------------------------------------------------------------------------------- -- Prepositions - Prep : Type = {s : PrepAgr => Str} ; + Prep : Type = { + s : PrepAgr => Str ; + c2 : Preposition ; + isPoss : Bool ; + berri, sii, dhex : Str ; + miscAdv : Agreement => Str } ; - mkPrep : (x1,_,_,_,_,x6 : Str) -> Prep = \ku,ii,kuu,noo,idiin,isku -> { + mkPrep : (x1,_,_,_,_,x6 : Str) -> {s : PrepAgr => Str} = \ku,ii,kuu,noo,idiin,isku -> { s = table { P3_Prep => ku ; Sg1_Prep => ii ; @@ -357,9 +364,10 @@ oper Reflexive_Prep => isku } } ; - prep : Preposition -> (Prep ** {c2 : Preposition}) = \p -> prepTable ! p ** {c2 = p} ; + prep : Preposition -> {s : PrepAgr => Str ; c2 : Preposition} = \p -> + prepTable ! p ** {c2 = p} ; - prepTable : Preposition => Prep = table { + prepTable : Preposition => {s : PrepAgr => Str} = table { Ku => mkPrep "ku" "igu" "kugu" "nagu" "idinku" "isku" ; Ka => mkPrep "ka" "iga" "kaa" "naga" "idinka" "iska" ; La => mkPrep "la" "ila" "kula" "nala" "idinla" "isla" ; @@ -557,7 +565,7 @@ oper VNegPast Progressive => progr + "n" ; -- TODO check conjugations 2 and 3 - VNegCond PlInv => arag + n + "een" ; + VNegCond PlInv => arag + n + "een" ; VNegCond SgMasc => qaat + "een" ; -- for most verbs same as VPast Simple Pl3_ VNegCond SgFem => arag + t + "een" ; -- for most verbs same as VPast Simple Pl2_ @@ -636,11 +644,11 @@ oper VPast _ Pl2_ => "ahaydeen" ; VPast _ Pl3_ => "ahaayeen" ; VNegPast _ => "ahi" ; - VNegCond SgMasc => "ahaadeen" ; -- 1SG/3 SG M/3PL - VNegCond SgFem => "ahaateen" ; -- 2SG/3 SG F/2PL + VNegCond SgMasc => "ahaadeen" ; -- 1SG/3 SG M/3PL + VNegCond SgFem => "ahaateen" ; -- 2SG/3 SG F/2PL VNegCond PlInv => "ahaanneen" ; -- 1PL VRel _ => "ah" ; -- All persons: see Nilsson p. 78. TODO check Saeed p. 103 - VRelNeg => "ahayni" ; -- Saeed + VRelNeg => "ahayni" ; -- Saeed VInf => "ahaan" ; VImp Sg pol => if_then_Pol pol "ahaw" "ahaanin" ; VImp Pl pol => if_then_Pol pol "ahaada" "ahaanina" ; @@ -675,7 +683,7 @@ oper } ; ------------------ --- VP +-- Adv BaseAdv : Type = { sii, -- sii, soo, wala, kada go inside VP. @@ -689,6 +697,18 @@ oper np : NPLite ; -- NP from PrepNP can be promoted into a core argument. } ; + prepNP : Prep -> NounPhrase -> Adverb = \prep,np -> prep ** { + np = case prep.isPoss of { + True => nplite emptyNP ; + False => nplite np } ; + miscAdv = case prep.isPoss of { + True => np.s ! Abs ++ prep.miscAdv ! np.a ; + False => prep.miscAdv ! Sg3 Masc } + } ; + +------------------ +-- VP + Complement : Type = { comp : Agreement => {p1,p2 : Str} ; -- Agreement for AP complements stm : STM ; -- to choose right sentence type marker @@ -708,7 +728,7 @@ oper useV : Verb -> VerbPhrase = \v -> v ** { comp = \\_ => <[],[]> ; stm = case v.isCopula of { -- can change into Waxa in ComplVV - True => Waa Copula ; + True => Waa Copula ; False => Waa NoPred } ; vComp = {subjunc, inf = [] ; @@ -754,9 +774,21 @@ oper } ; insertComp : VPSlash -> NounPhrase -> VerbPhrase = \vp,np -> - insertCompLite vp (nplite np) ; + vp ** insertCompLite vp (nplite np) ; - insertCompLite : VPSlash -> NPLite -> VerbPhrase = \vp,nplite -> + insertAdv : VerbPhrase -> Adverb -> VerbPhrase = \vp,adv -> + vp ** insertAdvLite vp adv ; + + insertIAdv : Adverb -> ClSlash -> ClSlash = \adv,cls -> + cls ** insertAdvLite cls adv ; + + -- To generalise insertAdv and insertComp + VPLite : Type = { + c2 : PrepCombination ; + obj2 : NPLite ; + sii,dhex,berri,miscAdv,secObj : Str} ; + + insertCompLite : VPLite -> NPLite -> VPLite = \vp,nplite -> case vp.obj2.a of { -- If the old object is 3rd person (or nonexistent), we replace its agreement. -- We keep both old and new string (=noun, if there was one) in obj2.s. @@ -772,10 +804,9 @@ oper s = vp.obj2.s ++ nplite.s } ; secObj = vp.secObj ++ secondObject ! nplite.a} - } ; - insertAdv : VerbPhrase -> Adverb -> VerbPhrase = \vp,adv -> + insertAdvLite : VPLite -> Adverb -> VPLite = \vp,adv -> case adv.c2 of { NoPrep => vp ** adv'' ; -- the adverb is not formed with PrepNP, e.g. "tomorrow" _ => case vp.c2 of { @@ -801,7 +832,7 @@ oper {- After PredVP, we might still want to add more adverbs (QuestIAdv), - but we're done with verb inflection. + but we're done with verb inflection. -} ClSlash : Type = BaseAdv ** { -- Fixed in Cl @@ -826,7 +857,7 @@ oper predVP : NounPhrase -> VerbPhrase -> ClSlash = \np,vps -> vp ** { subj = {noun = subjnoun ; pron = subjpron ; isP3 = isP3 subj.a} ; - pred = \\cltyp,t,a,p => + pred = \\cltyp,t,a,p => let predRaw = vf cltyp t a p subj.a vp ; in case of { -- VP comes from CompNP/CompCN + P3 subject @@ -838,7 +869,7 @@ oper _ => predRaw -- Any other verb } ; - stm = \\cltyp,pol => + stm = \\cltyp,pol => case of { => showSTM vp.stm ; => "ma" ; @@ -856,7 +887,7 @@ oper True => insertComp vps np ; _ => vps } ; subj : NounPhrase = case isPassive vps of { - True => impersNP ; + True => impersNP ; _ => np } ; subjnoun : Str = case np.isPron of { True => np.empty ; @@ -878,7 +909,7 @@ oper -- RelVP: subject pronoun is never included - cl2rcl : ClSlash -> Clause = + cl2rcl : ClSlash -> Clause = let hasSubjPron : Bool = False ; hasSTM : Bool = False ; isRel : Bool = True ; @@ -922,7 +953,7 @@ oper mkClause : ClType -> (rel,sp,stm : Bool) -> ClSlash -> Clause = \cltyp,isRel,hasSubjPron,hasSTM,incomplCl -> { - s = \\t,a,p => + s = \\t,a,p => let -- Put all arguments in their right place cl : ClSlash = complCl incomplCl ; @@ -954,14 +985,14 @@ oper stm : Str = case of { => cl.stm ! cltyp ! p ; <_,Neg> => cl.stm ! cltyp ! p ; -- negation overrides hasSTM=False - _ => [] } + _ => [] } in cl.berri -- AdV ++ cl.subj.noun -- subject if it's a noun ++ statementNounObj -- noun object if it's a statement ++ stm - ++ cl.vComp.subjunc -- "waa in" construction / + ++ cl.vComp.subjunc -- "waa in" construction / ++ subjpron -- subject pronoun ++ subordNounObj -- noun object if it's subordinate clause: "timir aan /laf/ lahayn" (Saeed p. 210-211) @@ -1050,7 +1081,7 @@ oper ++ adv.sii ++ (prepTable ! adv.c2).s ! adv.np.a ++ adv.dhex - ++ adv.np.s + ++ adv.np.s ++ adv.miscAdv ; @@ -1082,5 +1113,5 @@ oper ++ pred -- the verb inflected ++ vp.vComp.subcl ! Sg3 Masc -- VV complement, if it's subordinate clause ++ vp.miscAdv ; ---- NB. Only used if there are several adverbs, or for "waa in" construction. - + } diff --git a/src/somali/StructuralSom.gf b/src/somali/StructuralSom.gf index fe7c624c7..6d779b2a9 100644 --- a/src/somali/StructuralSom.gf +++ b/src/somali/StructuralSom.gf @@ -15,8 +15,9 @@ lin very_AdA = mkAdA "" ; lin as_CAdv = { s = "" ; p = [] } ; lin less_CAdv = { s = "" ; p = [] } ; lin more_CAdv = { s = "" ; p = [] } ; - -lin how_IAdv = ss "" ; +-} +lin how_IAdv = prepNP (mkPrep (mkPrep u) "sidee" [] []) emptyNP ; +{- lin how8much_IAdv = ss "" ; lin when_IAdv = ss "" ; lin where_IAdv = ss "" ; @@ -127,7 +128,7 @@ lin on_Prep = mkPrep ku ; -- lin possess_Prep = mkPrep ; -- lin through_Prep = mkPrep ; -- lin to_Prep = mkPrep ; -lin under_Prep = +lin under_Prep = let hoos : CatSom.Prep = possPrep (nUl "hoos") in hoos ** {c2 = Ku} ; lin with_Prep = mkPrep la ; From 1c367530f0dbe281d5693f5e7f427ec90bbf038b Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Tue, 10 Sep 2019 15:12:54 +0200 Subject: [PATCH 16/85] (Som) Lincats for V2* + SlashV2A + new unittest for V2A and QuestIAdv --- src/somali/CatSom.gf | 12 ++++++------ src/somali/LexiconSom.gf | 2 +- src/somali/VerbSom.gf | 11 ++++++----- src/somali/unittest/cl.gftest | 4 ++++ 4 files changed, 17 insertions(+), 12 deletions(-) diff --git a/src/somali/CatSom.gf b/src/somali/CatSom.gf index 5c2936776..4a87768a6 100644 --- a/src/somali/CatSom.gf +++ b/src/somali/CatSom.gf @@ -93,18 +93,18 @@ concrete CatSom of Cat = CommonX - [Adv,IAdv] ** open ResSom, Prelude in { -- These are constructed in LexiconSom and in -- additional lexicon modules. - V, VS, -- sentence-complement verb e.g. "claim" -- TODO: eventually different lincats VQ, -- question-complement verb e.g. "wonder" VA, -- adjective-complement verb e.g. "look" - V2V, -- verb with NP and V complement e.g. "cause" - V2S, -- verb with NP and S complement e.g. "tell" - V2Q, -- verb with NP and Q complement e.g. "ask" - V2A = ResSom.Verb ; -- verb with NP and AP complement e.g. "paint" + V = ResSom.Verb ; VV = ResSom.VV ; -- verb-phrase-complement verb e.g. "want" + V2A, -- verb with NP and AP complement e.g. "paint" + V2V, -- verb with NP and V complement e.g. "cause" + V2S, -- verb with NP and S complement e.g. "tell" + V2Q, -- verb with NP and Q complement e.g. "ask" V2 = ResSom.Verb2 ; V3 = ResSom.Verb3 ; @@ -123,5 +123,5 @@ linref -- Cl = linCl ; VP = infVP ; CN = linCN ; - Prep = \prep -> prep.s ! P3_Prep ++ prep.sii ++ prep.dhex ++ prep.miscAdv ! Sg3 Masc ; + Prep = \prep -> prep.s ! P3_Prep ++ prep.sii ++ prep.dhex ++ prep.hoostiisa ! Sg3 Masc ; } diff --git a/src/somali/LexiconSom.gf b/src/somali/LexiconSom.gf index 353b6977f..8e3bf3439 100644 --- a/src/somali/LexiconSom.gf +++ b/src/somali/LexiconSom.gf @@ -253,7 +253,7 @@ lin name_N = mkN "magac" ; -- lin oil_N = mkN "" ; -- lin old_A = mkA "" ; -- lin open_V2 = mkV2 "" ; --- lin paint_V2A = mkV2 "" ; +lin paint_V2A = mkV2 "rinjiyee" ; -- lin paper_N = mkN "" ; -- lin paris_PN = mkPN "Paris" ; -- lin peace_N = mkN "" ; diff --git a/src/somali/VerbSom.gf b/src/somali/VerbSom.gf index 27e87b27f..6ccc5cbf8 100644 --- a/src/somali/VerbSom.gf +++ b/src/somali/VerbSom.gf @@ -75,12 +75,13 @@ lin -- : V2Q -> QS -> VPSlash ; -- ask (him) who came SlashV2Q v2q qs = ; - - -- : V2A -> AP -> VPSlash ; -- paint (it) red - SlashV2A v2a ap = slashDObj v2a ** - { comp = (CompAP ap).s } ; - -} + -- : V2A -> AP -> VPSlash ; -- paint (it) red + -- TODO: is "red" plural in "paint them red"? + SlashV2A v2a ap = useVc v2a ** { + comp = \\_ => (CompAP ap).comp ! Sg3 Masc + } ; + -- : VPSlash -> NP -> VP ComplSlash = insertComp ; diff --git a/src/somali/unittest/cl.gftest b/src/somali/unittest/cl.gftest index 597aa4c79..0e294d26f 100644 --- a/src/somali/unittest/cl.gftest +++ b/src/somali/unittest/cl.gftest @@ -85,3 +85,7 @@ Lang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (RelNP (UseP -- LangEng: which cat teaches him LangSom: bisad BIND dee baa ku bartaa Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPres ASimul) PPos (QuestVP (IdetCN (IdetQuant which_IQuant NumSg) (UseN cat_N)) (ComplSlash (SlashV2a teach_V2) (UsePron he_Pron))))) NoVoc + +-- LangEng: how does your mother paint the house black +LangSom: sidee baa ay hooya BIND daa madow u rinjiyeysaa guri BIND ga +Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPres ASimul) PPos (QuestIAdv how_IAdv (PredVP (DetCN (DetQuant (PossPron youSg_Pron) NumSg) (UseN2 mother_N2)) (ComplSlash (SlashV2A paint_V2A (PositA black_A)) (DetCN (DetQuant DefArt NumSg) (UseN house_N))))))) NoVoc From d01aec2d649e65d2125721b1ba02dd51afb25671 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Tue, 10 Sep 2019 15:11:41 +0200 Subject: [PATCH 17/85] (Som) bugfix in QuestIAdv: add subject also when STM is negative --- src/somali/QuestionSom.gf | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/somali/QuestionSom.gf b/src/somali/QuestionSom.gf index 5317fd6d5..048b8316b 100644 --- a/src/somali/QuestionSom.gf +++ b/src/somali/QuestionSom.gf @@ -27,10 +27,12 @@ concrete QuestionSom of Question = CatSom ** open sbj = clRaw.subj ; cl : ClSlash = clRaw ** { stm = \\clt,p => case of { - -- IAdv is focused + -- IAdv is focused with baa, and subject comes after <_,Pos> => "baa" ++ sbj.pron ++ sbj.noun; - _ => clRaw.stm ! clt ! p } ; - subj = {noun, pron = [] ; isP3 = True}} + -- TODO how do negative questions work + _ => clRaw.stm ! Question ! p ++ sbj.pron ++ sbj.noun } ; + subj = sbj ** {noun, pron = []} -- to force subject after baa + } ; in cl2qcl cl ; -- : IComp -> NP -> QCl ; -- where is John? From 1ceb12d8b838ed2a2e2abf3e10e634217a796318 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Tue, 10 Sep 2019 15:04:50 +0200 Subject: [PATCH 18/85] (Som) Change word order in VP complements, update test accordingly --- src/somali/ResSom.gf | 4 ++-- src/somali/unittest/vp.gftest | 5 ++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/somali/ResSom.gf b/src/somali/ResSom.gf index 20a3e4227..5a557182d 100644 --- a/src/somali/ResSom.gf +++ b/src/somali/ResSom.gf @@ -794,14 +794,14 @@ oper -- We keep both old and new string (=noun, if there was one) in obj2.s. P3_Prep => vp ** {obj2 = nplite ** { - s = vp.obj2.s ++ nplite.s} + s = nplite.s ++ vp.obj2.s} } ; -- no secObj, because there's ≤1 non-3rd-person pronoun. -- If old object was non-3rd person, we keep its agreement. -- The new object is put in the secondObject field. _ => vp ** {obj2 = vp.obj2 ** { - s = vp.obj2.s ++ nplite.s + s = nplite.s ++ vp.obj2.s } ; secObj = vp.secObj ++ secondObject ! nplite.a} } ; diff --git a/src/somali/unittest/vp.gftest b/src/somali/unittest/vp.gftest index 4a29b6725..58cd6f9bf 100644 --- a/src/somali/unittest/vp.gftest +++ b/src/somali/unittest/vp.gftest @@ -56,11 +56,11 @@ LangSom: rooti waa uu is siiyey Lang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPast ASimul) PPos (PredVP (UsePron he_Pron) (ReflVP (Slash2V3 give_V3 (MassNP (UseN bread_N))))))) NoVoc -- LangEng: one adds salt to the meat -LangSom: hilib BIND ka cusbo waa lagu daraa +LangSom: cusbo hilib BIND ka waa lagu daraa Lang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (GenericCl (ComplSlash (Slash3V3 add_V3 (DetCN (DetQuant DefArt NumSg) (UseN meat_N))) (MassNP (UseN salt_N)))))) NoVoc -- LangEng: one can add salt to meat -LangSom: hilib cusbo waa lagu dari karaa +LangSom: cusbo hilib waa lagu dari karaa Lang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (GenericCl (ComplVV can_VV (ComplSlash (Slash3V3 add_V3 (MassNP (UseN meat_N))) (MassNP (UseN salt_N))))))) NoVoc -------------------------------------------------------------------------------- @@ -116,4 +116,3 @@ Lang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron i_P -- LangEng: my mother lives under the sea LangSom: hooya BIND day waa ku nool tahay bad BIND da hoos BIND teed BIND a Lang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant (PossPron i_Pron) NumSg) (UseN2 mother_N2)) (AdvVP (UseV live_V) (PrepNP under_Prep (DetCN (DetQuant DefArt NumSg) (UseN sea_N))))))) NoVoc - From 4f9927d12be407f70873157b1fdabef87e953bc0 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Tue, 10 Sep 2019 15:03:59 +0200 Subject: [PATCH 19/85] (Som) minor cleanup/renaming --- src/somali/ParadigmsSom.gf | 4 ++-- src/somali/ResSom.gf | 6 +++--- src/somali/VerbSom.gf | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/somali/ParadigmsSom.gf b/src/somali/ParadigmsSom.gf index 42cefc869..68ae50476 100644 --- a/src/somali/ParadigmsSom.gf +++ b/src/somali/ParadigmsSom.gf @@ -247,7 +247,7 @@ oper } ; possPrep : N -> CatSom.Prep = \dhex -> emptyPrep ** { - miscAdv = \\agr => + hoostiisa = \\agr => let qnt = PossPron (pronTable ! agr) ; num = getNum agr ; art = gda2da dhex.gda ! Sg ; @@ -258,7 +258,7 @@ oper emptyPrep : CatSom.Prep = lin Prep { sii,berri,dhex = [] ; - miscAdv = \\_ => [] ; + hoostiisa = \\_ => [] ; s = \\_ => [] ; c2 = noPrep ; isPoss = False diff --git a/src/somali/ResSom.gf b/src/somali/ResSom.gf index 5a557182d..bf1c1f515 100644 --- a/src/somali/ResSom.gf +++ b/src/somali/ResSom.gf @@ -351,7 +351,7 @@ oper c2 : Preposition ; isPoss : Bool ; berri, sii, dhex : Str ; - miscAdv : Agreement => Str } ; + hoostiisa : Agreement => Str } ; mkPrep : (x1,_,_,_,_,x6 : Str) -> {s : PrepAgr => Str} = \ku,ii,kuu,noo,idiin,isku -> { s = table { @@ -702,8 +702,8 @@ oper True => nplite emptyNP ; False => nplite np } ; miscAdv = case prep.isPoss of { - True => np.s ! Abs ++ prep.miscAdv ! np.a ; - False => prep.miscAdv ! Sg3 Masc } + True => np.s ! Abs ++ prep.hoostiisa ! np.a ; + False => prep.hoostiisa ! Sg3 Masc } } ; ------------------ diff --git a/src/somali/VerbSom.gf b/src/somali/VerbSom.gf index 6ccc5cbf8..3208febc2 100644 --- a/src/somali/VerbSom.gf +++ b/src/somali/VerbSom.gf @@ -18,14 +18,14 @@ lin ComplVV vv vp = let vc = vp.vComp in case vv.vvtype of { Waa_In => vp ** { vComp = vc ** {subjunc = vv.s ! VInf} ; -- it's always the word "in", and it will be placed before subject pronoun. it's placed in vv.s!VInf so that the VV would contribute with some string. /IL - obj2 = vp.obj2 ** {s = []} ; -- word order hack to avoid more parameters: + obj2 = vp.obj2 ** {s = []} ; -- word order hack to avoid more parameters: miscAdv = vp.miscAdv ++ vp.obj2.s -- dump the object to miscAdv } ; Subjunctive => useV vv ** { stm = Waxa ; vComp = vc ** { -- The whole previous VP becomes the subordinate clause - subcl = \\agr => + subcl = \\agr => let subj = pronTable ! agr ; cls = predVPslash subj vp ; scl = cl2sentence True cls ; @@ -39,11 +39,11 @@ lin inf = vc.inf ++ vp.s ! VInf } ; stm = Waa NoPred ; - } + } } ; -- : VS -> S -> VP ; - ComplVS vs s = + ComplVS vs s = let vps = useV vs ; subord = SubjS {s="in"} s ; in vps ** {obj2 = {s = subord.berri ; a = P3_Prep}} ; From 67ac5ae5e3ffb06db931546889aa0c8a6fa2646e Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Tue, 10 Sep 2019 16:54:19 +0200 Subject: [PATCH 20/85] (Som) Add QuestSlash + make it possible for IPs to contract with stm --- src/somali/CatSom.gf | 2 +- src/somali/QuestionSom.gf | 24 ++++++++++++++++-------- src/somali/ResSom.gf | 8 +++++--- src/somali/StructuralSom.gf | 8 +++++++- src/somali/unittest/cl.gftest | 8 ++++++++ 5 files changed, 37 insertions(+), 13 deletions(-) diff --git a/src/somali/CatSom.gf b/src/somali/CatSom.gf index 4a87768a6..338f4b7a8 100644 --- a/src/somali/CatSom.gf +++ b/src/somali/CatSom.gf @@ -23,7 +23,7 @@ concrete CatSom of Cat = CommonX - [Adv,IAdv] ** open ResSom, Prelude in { -- Constructed in QuestionSom. QCl = ResSom.QClause ; - IP = ResSom.NounPhrase ; + IP = ResSom.NounPhrase ** {contractSTM : Bool} ; IComp = SS ; -- interrogative complement of copula e.g. "where" IDet = ResSom.Determiner ; -- interrogative determiner e.g. "how many" IQuant = ResSom.Quant ; -- interrogative quantifier e.g. "which" diff --git a/src/somali/QuestionSom.gf b/src/somali/QuestionSom.gf index 048b8316b..0cdf05245 100644 --- a/src/somali/QuestionSom.gf +++ b/src/somali/QuestionSom.gf @@ -1,12 +1,12 @@ concrete QuestionSom of Question = CatSom ** open - Prelude, ResSom, (VS=VerbSom), (NS=NounSom), (AS=AdverbSom) in { + Prelude, ResSom, ParadigmsSom, (VS=VerbSom), (NS=NounSom), (AS=AdverbSom) in { -- A question can be formed from a clause ('yes-no question') or -- with an interrogative. lin -- : Cl -> QCl ; - QuestCl = cl2qcl ; + QuestCl = cl2qcl True; -- : IP -> VP -> QCl ; QuestVP ip vp = -- TODO: if we want to contract baa + subj. pronoun, change ResSom.predVP @@ -16,10 +16,16 @@ concrete QuestionSom of Question = CatSom ** open <_,Pos> => "baa" ; _ => clRaw.stm ! clt ! p } } - in cl2qcl cl ; + in cl2qcl (notB ip.contractSTM) cl ; -- : IP -> ClSlash -> QCl ; -- whom does John love - --QuestSlash ip cls = ; + QuestSlash ip cls = + let clsIPFocus = cls ** { + subj = cls.subj ** {noun = ip.s ! Nom} ; -- place IP first in the sentence, keep old subject pronoun. + obj2 = cls.obj2 ** {s = cls.subj.noun ++ cls.obj2.s} -- move old subject noun before object. + } ; + in cl2qcl (notB ip.contractSTM) clsIPFocus ; + -- : IAdv -> Cl -> QCl ; -- why does John walk QuestIAdv iadv cls = @@ -33,7 +39,7 @@ concrete QuestionSom of Question = CatSom ** open _ => clRaw.stm ! Question ! p ++ sbj.pron ++ sbj.noun } ; subj = sbj ** {noun, pron = []} -- to force subject after baa } ; - in cl2qcl cl ; + in cl2qcl True cl ; -- TODO: add contractSTM field to IAdv as well -- : IComp -> NP -> QCl ; -- where is John? -- QuestIComp icomp np = ; @@ -42,10 +48,10 @@ concrete QuestionSom of Question = CatSom ** open -- determiners, with or without a noun. -- : IDet -> CN -> IP ; -- which five songs - IdetCN = NS.DetCN ; + IdetCN idet cn = {contractSTM = False} ** NS.DetCN idet cn ; -- : IDet -> IP ; -- which five - IdetIP = NS.DetNP ; + IdetIP idet = {contractSTM = False} ** NS.DetNP idet ; -- They can be modified with adverbs. -- : IP -> Adv -> IP ; -- who in Paris @@ -58,7 +64,9 @@ concrete QuestionSom of Question = CatSom ** open -- Interrogative adverbs can be formed prepositionally. -- : Prep -> IP -> IAdv ; -- with whom - PrepIP = AS.PrepNP ; + PrepIP prep ip = + let ipAbs : Str = ip.s ! Abs + in prepNP (mkPrep prep ipAbs [] []) emptyNP ; -- They can be modified with other adverbs. diff --git a/src/somali/ResSom.gf b/src/somali/ResSom.gf index bf1c1f515..ca8f788bb 100644 --- a/src/somali/ResSom.gf +++ b/src/somali/ResSom.gf @@ -776,6 +776,9 @@ oper insertComp : VPSlash -> NounPhrase -> VerbPhrase = \vp,np -> vp ** insertCompLite vp (nplite np) ; + insertCompCl : ClSlash -> NounPhrase -> ClSlash = \cls,np -> + cls ** insertCompLite cls (nplite np) ; + insertAdv : VerbPhrase -> Adverb -> VerbPhrase = \vp,adv -> vp ** insertAdvLite vp adv ; @@ -931,11 +934,10 @@ oper in mkClause Subord isRel hasSubjPron hasSTM ; -- Question clauses: subject pronoun not included, STM is - cl2qcl : ClSlash -> Clause = + cl2qcl : Bool -> ClSlash -> Clause = let hasSubjPron : Bool = False ; - hasSTM : Bool = True ; isRel : Bool = False ; - in mkClause Question isRel hasSubjPron hasSTM ; + in mkClause Question isRel hasSubjPron ; -- Sentence: include subject pronoun and STM. -- When subordinate, include "in". diff --git a/src/somali/StructuralSom.gf b/src/somali/StructuralSom.gf index 6d779b2a9..c9cadabbb 100644 --- a/src/somali/StructuralSom.gf +++ b/src/somali/StructuralSom.gf @@ -152,10 +152,16 @@ lin with_Prep = mkPrep la ; lin whatPl_IP = ; lin whatSg_IP = ; lin whoPl_IP = ; -lin whoSg_IP = ; -} +lin whoSg_IP = emptyNP ** { + s = table { + Nom => "yaa" ; -- together with STM + Abs => "ayo" } ; -- alone, no STM (used in UttIP) + contractSTM = True ; + } ; + ------- -- Subj diff --git a/src/somali/unittest/cl.gftest b/src/somali/unittest/cl.gftest index 0e294d26f..64a59f0db 100644 --- a/src/somali/unittest/cl.gftest +++ b/src/somali/unittest/cl.gftest @@ -82,6 +82,14 @@ Lang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (RelNP (UseP -- Question clauses +-- to whom did mother give the meat +LangSom: yaa siisey hooyo hilib BIND ka +Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PPos (QuestSlash whoSg_IP (SlashVP (MassNP (UseN2 mother_N2)) (Slash3V3 give_V3 (DetCN (DetQuant DefArt NumSg) (UseN meat_N))))))) NoVoc + +-- LangEng: who wants to go +LangSom: yaa rabaa in uu tago +Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPres ASimul) PPos (QuestVP whoSg_IP (ComplVV want_VV (UseV go_V))))) NoVoc + -- LangEng: which cat teaches him LangSom: bisad BIND dee baa ku bartaa Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPres ASimul) PPos (QuestVP (IdetCN (IdetQuant which_IQuant NumSg) (UseN cat_N)) (ComplSlash (SlashV2a teach_V2) (UsePron he_Pron))))) NoVoc From 516270148fbead2ac561d9b6089344aa141ecdf4 Mon Sep 17 00:00:00 2001 From: Aarne Ranta Date: Wed, 11 Sep 2019 09:14:53 +0200 Subject: [PATCH 21/85] restored contructor CommonRomance.AF as oper since it is used in various applications --- src/romance/CommonRomance.gf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/romance/CommonRomance.gf b/src/romance/CommonRomance.gf index e30e0bea1..e92932825 100644 --- a/src/romance/CommonRomance.gf +++ b/src/romance/CommonRomance.gf @@ -42,6 +42,10 @@ param CardOrd = NCard Gender | NOrd Gender Number ; +--- a workaround for a lost constructor used e.g. in Attempto: AR 2019-09-11 +oper + AF : Gender -> Number -> AForm = \g,n -> case n of {Sg => ASg g AAttr ; Pl => APl g} ; + -- The following coercions are useful: oper From 953771ccf6034478bad5a78b95407a016990d2e1 Mon Sep 17 00:00:00 2001 From: Aarne Ranta Date: Wed, 11 Sep 2019 10:41:21 +0200 Subject: [PATCH 22/85] added PassVPSlash to ExtendFin --- src/finnish/ExtendFin.gf | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/finnish/ExtendFin.gf b/src/finnish/ExtendFin.gf index 0a6827ffd..6d7e3f7dc 100644 --- a/src/finnish/ExtendFin.gf +++ b/src/finnish/ExtendFin.gf @@ -6,6 +6,7 @@ concrete ExtendFin of Extend = MkVPI2,ConjVPI2,ComplVPI2,ComplVPIVV ,ExistCN, ExistMassCN, ICompAP, ByVP ,CompoundN, GenNP, GenIP, AdvIsNP, EmbedSSlash + ,PassVPSlash, PassAgentVPSlash ] with (Grammar = GrammarFin) ** @@ -160,4 +161,15 @@ lin NPSep => mikaInt ! Sg ! Nom } } ; in {s = appCompl True Pos ss.c2 thatWhich ++ ss.s} ; + + PassVPSlash vp = S.passVP vp vp.c2 ; + + PassAgentVPSlash vp np = { + s = {s = vp.s.s ; h = vp.s.h ; p = vp.s.p ; sc = npform2subjcase vp.c2.c} ; + s2 = \\b,p,a => np.s ! NPSep ++ vp.s2 ! b ! p ! a ; + adv = vp.adv ; + ext = vp.ext ; + vptyp = vp.vptyp ; + } ; + } From 7c039494724326be76084fe12be3d1f7ee06885a Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Wed, 11 Sep 2019 17:18:12 +0200 Subject: [PATCH 23/85] (Som) New unit tests about questions --- src/somali/unittest/cl.gftest | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/somali/unittest/cl.gftest b/src/somali/unittest/cl.gftest index 64a59f0db..8859e3628 100644 --- a/src/somali/unittest/cl.gftest +++ b/src/somali/unittest/cl.gftest @@ -97,3 +97,14 @@ Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPres ASimul) PPos (QuestVP (IdetCN ( -- LangEng: how does your mother paint the house black LangSom: sidee baa ay hooya BIND daa madow u rinjiyeysaa guri BIND ga Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPres ASimul) PPos (QuestIAdv how_IAdv (PredVP (DetCN (DetQuant (PossPron youSg_Pron) NumSg) (UseN2 mother_N2)) (ComplSlash (SlashV2A paint_V2A (PositA black_A)) (DetCN (DetQuant DefArt NumSg) (UseN house_N))))))) NoVoc + +-- Some examples from Nilsson, adjusted to the GF lexicon +-- Maxaa ay u samaysay sidaas? Varför gjorde hon så? +--LangEng: why did she eat the meat +LangSom: TODO +Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PPos (QuestIAdv why_IAdv (PredVP (UsePron she_Pron) (ComplSlash (SlashV2a eat_V2) (DetCN (DetQuant DefArt NumSg) (UseN meat_N))))))) NoVoc + +-- Maxaa ay ahaa dharka cusub ee Faadumo loo iibiyay? Vad/Vilka var de nya kläder som man köpt åt Fadumo? +--LangEng: what was the meat that was eaten +LangSom: TODO +Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PPos (QuestVP whatSg_IP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (RelCN (UseN meat_N) (UseRCl (TTAnt TPast ASimul) PPos (RelVP IdRP (PassV2 eat_V2)))))))))) NoVoc From 52aa4c35e08b833bf194a474ce7e77b81a5a4bae Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Thu, 12 Sep 2019 16:56:50 +0200 Subject: [PATCH 24/85] (Som) Fixes in question clauses --- src/somali/CatSom.gf | 6 ++--- src/somali/PhraseSom.gf | 4 +-- src/somali/QuestionSom.gf | 20 +++++++++------ src/somali/ResSom.gf | 11 +++++++++ src/somali/StructuralSom.gf | 46 ++++++++++++++++++++--------------- src/somali/unittest/cl.gftest | 10 +++++--- 6 files changed, 61 insertions(+), 36 deletions(-) diff --git a/src/somali/CatSom.gf b/src/somali/CatSom.gf index 338f4b7a8..538816379 100644 --- a/src/somali/CatSom.gf +++ b/src/somali/CatSom.gf @@ -23,10 +23,11 @@ concrete CatSom of Cat = CommonX - [Adv,IAdv] ** open ResSom, Prelude in { -- Constructed in QuestionSom. QCl = ResSom.QClause ; - IP = ResSom.NounPhrase ** {contractSTM : Bool} ; IComp = SS ; -- interrogative complement of copula e.g. "where" IDet = ResSom.Determiner ; -- interrogative determiner e.g. "how many" IQuant = ResSom.Quant ; -- interrogative quantifier e.g. "which" + IP = ResSom.NounPhrase ** {contractSTM : Bool} ; -- like NP but may contract with STM + IAdv = ResSom.IAdv ; --2 Subord clauses and pronouns @@ -116,8 +117,7 @@ concrete CatSom of Cat = CommonX - [Adv,IAdv] ** open ResSom, Prelude in { N3 = ResSom.Noun3 ; PN = ResSom.PNoun ; - Adv, - IAdv = ResSom.Adverb ; -- Preposition of an adverbial can merge with obligatory complements of the verb. + Adv = ResSom.Adverb ; -- Preposition of an adverbial can merge with obligatory complements of the verb. linref -- Cl = linCl ; diff --git a/src/somali/PhraseSom.gf b/src/somali/PhraseSom.gf index dd1e596c9..c9c18c396 100644 --- a/src/somali/PhraseSom.gf +++ b/src/somali/PhraseSom.gf @@ -5,6 +5,7 @@ concrete PhraseSom of Phrase = CatSom ** open Prelude, ResSom in { UttS s = {s = s.s ! False} ; UttQS qs = qs ; + UttIAdv iadv = iadv ; UttImpSg pol imp = let ma = case pol.p of { Pos => [] ; Neg => "ma" } @@ -15,8 +16,7 @@ concrete PhraseSom of Phrase = CatSom ** open Prelude, ResSom in { UttIP ip = {s = ip.s ! Abs} ; UttNP np = {s = np.s ! Abs} ; UttVP vp = {s = infVP vp} ; - UttAdv, - UttIAdv = \adv -> {s = linAdv adv} ; + UttAdv adv = {s = linAdv adv} ; UttCN n = {s = linCN n} ; UttCard n = {s = n.s ! Mid} ; UttAP ap = { s = ap.s ! AF Sg Abs } ; diff --git a/src/somali/QuestionSom.gf b/src/somali/QuestionSom.gf index 0cdf05245..bf230a1b6 100644 --- a/src/somali/QuestionSom.gf +++ b/src/somali/QuestionSom.gf @@ -1,5 +1,5 @@ concrete QuestionSom of Question = CatSom ** open - Prelude, ResSom, ParadigmsSom, (VS=VerbSom), (NS=NounSom), (AS=AdverbSom) in { + Prelude, ResSom, ParadigmsSom, (VS=VerbSom), (NS=NounSom), (SS=StructuralSom) in { -- A question can be formed from a clause ('yes-no question') or -- with an interrogative. @@ -24,7 +24,7 @@ concrete QuestionSom of Question = CatSom ** open subj = cls.subj ** {noun = ip.s ! Nom} ; -- place IP first in the sentence, keep old subject pronoun. obj2 = cls.obj2 ** {s = cls.subj.noun ++ cls.obj2.s} -- move old subject noun before object. } ; - in cl2qcl (notB ip.contractSTM) clsIPFocus ; + in cl2qclslash (notB ip.contractSTM) clsIPFocus ; -- : IAdv -> Cl -> QCl ; -- why does John walk @@ -34,14 +34,20 @@ concrete QuestionSom of Question = CatSom ** open cl : ClSlash = clRaw ** { stm = \\clt,p => case of { -- IAdv is focused with baa, and subject comes after - <_,Pos> => "baa" ++ sbj.pron ++ sbj.noun; + <_,Pos> => case iadv.contractSTM of { + True => [] ; _ => "baa"} + ++ sbj.pron ++ sbj.noun ; -- TODO how do negative questions work - _ => clRaw.stm ! Question ! p ++ sbj.pron ++ sbj.noun } ; + _ => case iadv.contractSTM of { + True => [] ; _ => clRaw.stm ! Question ! p} + ++ sbj.pron ++ sbj.noun } ; subj = sbj ** {noun, pron = []} -- to force subject after baa } ; - in cl2qcl True cl ; -- TODO: add contractSTM field to IAdv as well + in cl2qcl True cl ; -- True because we handle STM placement in cl.stm -- : IComp -> NP -> QCl ; -- where is John? + -- Saeed p. 212 Ninkii ay raaceen waa ayo? man-the they accompanied DM who + -- 'The man they travelled with is who?' -- QuestIComp icomp np = ; -- Interrogative pronouns can be formed with interrogative @@ -64,9 +70,7 @@ concrete QuestionSom of Question = CatSom ** open -- Interrogative adverbs can be formed prepositionally. -- : Prep -> IP -> IAdv ; -- with whom - PrepIP prep ip = - let ipAbs : Str = ip.s ! Abs - in prepNP (mkPrep prep ipAbs [] []) emptyNP ; + PrepIP prep ip = SS.prepIP prep (ip.s ! Abs) False ; -- They can be modified with other adverbs. diff --git a/src/somali/ResSom.gf b/src/somali/ResSom.gf index ca8f788bb..8116924f5 100644 --- a/src/somali/ResSom.gf +++ b/src/somali/ResSom.gf @@ -697,6 +697,11 @@ oper np : NPLite ; -- NP from PrepNP can be promoted into a core argument. } ; + IAdv : Type = Adverb ** { + contractSTM : Bool ; + s : Str -- alone, in one-word question, e.g. Waayo? 'Why?' + } ; + prepNP : Prep -> NounPhrase -> Adverb = \prep,np -> prep ** { np = case prep.isPoss of { True => nplite emptyNP ; @@ -939,6 +944,12 @@ oper isRel : Bool = False ; in mkClause Question isRel hasSubjPron ; + -- Question clauses: subject pronoun is included + cl2qclslash : Bool -> ClSlash -> Clause = + let hasSubjPron : Bool = True ; + isRel : Bool = False ; + in mkClause Question isRel hasSubjPron ; + -- Sentence: include subject pronoun and STM. -- When subordinate, include "in". cl2sentence : Bool -> ClSlash -> Clause = \isSubord,cls -> { diff --git a/src/somali/StructuralSom.gf b/src/somali/StructuralSom.gf index c9cadabbb..4429e3b49 100644 --- a/src/somali/StructuralSom.gf +++ b/src/somali/StructuralSom.gf @@ -16,14 +16,14 @@ lin as_CAdv = { s = "" ; p = [] } ; lin less_CAdv = { s = "" ; p = [] } ; lin more_CAdv = { s = "" ; p = [] } ; -} -lin how_IAdv = prepNP (mkPrep (mkPrep u) "sidee" [] []) emptyNP ; -{- -lin how8much_IAdv = ss "" ; -lin when_IAdv = ss "" ; -lin where_IAdv = ss "" ; -lin why_IAdv = ss "" ; +lin how_IAdv = mkIAdv u "sidee" False ; -lin always_AdV = ss "" ; +-- lin how8much_IAdv = ss "" ; +-- lin when_IAdv = ss "" ; +-- lin where_IAdv = ss "" ; +lin why_IAdv = let mx = mkIAdv u "maxaa" True in mx ** {s = "waayo"} ; + +{-lin always_AdV = ss "" ; lin everywhere_Adv = ss "" ; lin here7from_Adv = ss "" ; @@ -148,19 +148,11 @@ lin with_Prep = mkPrep la ; we_Pron = pronTable ! Pl1 Incl ; youPl_Pron = pronTable ! Pl2 ; they_Pron = pronTable ! Pl3 ; -{- -lin whatPl_IP = ; -lin whatSg_IP = ; -lin whoPl_IP = ; --} - -lin whoSg_IP = emptyNP ** { - s = table { - Nom => "yaa" ; -- together with STM - Abs => "ayo" } ; -- alone, no STM (used in UttIP) - contractSTM = True ; - } ; +--lin whatPl_IP = ; +lin whatSg_IP = mkIP "maxay" "maxaa" True ; +--lin whoPl_IP = ; +lin whoSg_IP = mkIP "ayo" "yaa" True ; ------- -- Subj @@ -195,4 +187,20 @@ lin want_VV = mkVV (mkV "rabid" "rab" "rab") subjunctive ; {- lin please_Voc = ss "" ; -} +oper + mkIAdv : Preposition -> Str -> Bool -> ResSom.IAdv = \pr -> + let pr' : Prep = ParadigmsSom.mkPrep pr ; + in prepIP pr' ; + + mkIP : (maxay, maxaa : Str) -> Bool -> IP = \maxay,maxaa,b -> emptyNP ** { + s = table { + Nom => maxaa ; -- together with STM + Abs => maxay } ; -- alone, no STM (used in UttIP and IComp) + contractSTM = b ; + } ; + + prepIP : Prep -> Str -> Bool -> ResSom.IAdv = \pr,str,b -> + let adv : Adverb = prepNP (mkPrep pr str [] []) emptyNP ; + in adv ** {contractSTM = b ; s = linAdv adv} ; + } diff --git a/src/somali/unittest/cl.gftest b/src/somali/unittest/cl.gftest index 8859e3628..75169102b 100644 --- a/src/somali/unittest/cl.gftest +++ b/src/somali/unittest/cl.gftest @@ -83,10 +83,12 @@ Lang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (RelNP (UseP -- Question clauses -- to whom did mother give the meat -LangSom: yaa siisey hooyo hilib BIND ka +-- subject pronoun 'ay' included, because whom is an object +LangSom: yaa ay siisey hooyo hilib BIND ka Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PPos (QuestSlash whoSg_IP (SlashVP (MassNP (UseN2 mother_N2)) (Slash3V3 give_V3 (DetCN (DetQuant DefArt NumSg) (UseN meat_N))))))) NoVoc -- LangEng: who wants to go +-- subject pronoun not included, because who is a subject LangSom: yaa rabaa in uu tago Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPres ASimul) PPos (QuestVP whoSg_IP (ComplVV want_VV (UseV go_V))))) NoVoc @@ -99,12 +101,12 @@ LangSom: sidee baa ay hooya BIND daa madow u rinjiyeysaa guri BIND ga Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPres ASimul) PPos (QuestIAdv how_IAdv (PredVP (DetCN (DetQuant (PossPron youSg_Pron) NumSg) (UseN2 mother_N2)) (ComplSlash (SlashV2A paint_V2A (PositA black_A)) (DetCN (DetQuant DefArt NumSg) (UseN house_N))))))) NoVoc -- Some examples from Nilsson, adjusted to the GF lexicon --- Maxaa ay u samaysay sidaas? Varför gjorde hon så? +-- Maxaa ay u samaysay sidaas? Varför gjorde hon så? --LangEng: why did she eat the meat -LangSom: TODO +LangSom: maxaa ay u cuntay hilib BIND ka Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PPos (QuestIAdv why_IAdv (PredVP (UsePron she_Pron) (ComplSlash (SlashV2a eat_V2) (DetCN (DetQuant DefArt NumSg) (UseN meat_N))))))) NoVoc --- Maxaa ay ahaa dharka cusub ee Faadumo loo iibiyay? Vad/Vilka var de nya kläder som man köpt åt Fadumo? +-- Maxaa ay ahaa dharka cusub ee Faadumo loo iibiyay? Vad/Vilka var de nya kläder som man köpt åt Fadumo? TODO why is there subject pronoun here? --LangEng: what was the meat that was eaten LangSom: TODO Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PPos (QuestVP whatSg_IP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (RelCN (UseN meat_N) (UseRCl (TTAnt TPast ASimul) PPos (RelVP IdRP (PassV2 eat_V2)))))))))) NoVoc From d52f1633b71cfa8d7054d31ac898e06561051938 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Fri, 13 Sep 2019 14:04:28 +0200 Subject: [PATCH 25/85] (Som) Fix bug in QuestSlash, new unit tests + comments. --- src/somali/QuestionSom.gf | 14 +++++++++++--- src/somali/StructuralSom.gf | 2 +- src/somali/unittest/cl.gftest | 29 +++++++++++++++++++++++------ 3 files changed, 35 insertions(+), 10 deletions(-) diff --git a/src/somali/QuestionSom.gf b/src/somali/QuestionSom.gf index bf230a1b6..073f18461 100644 --- a/src/somali/QuestionSom.gf +++ b/src/somali/QuestionSom.gf @@ -21,9 +21,17 @@ concrete QuestionSom of Question = CatSom ** open -- : IP -> ClSlash -> QCl ; -- whom does John love QuestSlash ip cls = let clsIPFocus = cls ** { - subj = cls.subj ** {noun = ip.s ! Nom} ; -- place IP first in the sentence, keep old subject pronoun. - obj2 = cls.obj2 ** {s = cls.subj.noun ++ cls.obj2.s} -- move old subject noun before object. - } ; + subj = cls.subj ** { -- place IP first in the sentence, + noun = ip.s ! Nom -- keep old subject pronoun. + } ; + obj2 = cls.obj2 ** { -- move old subject noun before object. + s = cls.subj.noun ++ cls.obj2.s + } ; + stm : ClType=>Polarity=>Str = + \\clt,p => case of { + <_,Pos> => "baa" ; + _ => cls.stm ! clt ! p } + } ; in cl2qclslash (notB ip.contractSTM) clsIPFocus ; diff --git a/src/somali/StructuralSom.gf b/src/somali/StructuralSom.gf index 4429e3b49..560691693 100644 --- a/src/somali/StructuralSom.gf +++ b/src/somali/StructuralSom.gf @@ -20,7 +20,7 @@ lin how_IAdv = mkIAdv u "sidee" False ; -- lin how8much_IAdv = ss "" ; -- lin when_IAdv = ss "" ; --- lin where_IAdv = ss "" ; +lin where_IAdv = mkIAdv noPrep "xaggee" False ; lin why_IAdv = let mx = mkIAdv u "maxaa" True in mx ** {s = "waayo"} ; {-lin always_AdV = ss "" ; diff --git a/src/somali/unittest/cl.gftest b/src/somali/unittest/cl.gftest index 75169102b..18c8e24d7 100644 --- a/src/somali/unittest/cl.gftest +++ b/src/somali/unittest/cl.gftest @@ -82,20 +82,37 @@ Lang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (RelNP (UseP -- Question clauses --- to whom did mother give the meat --- subject pronoun 'ay' included, because whom is an object -LangSom: yaa ay siisey hooyo hilib BIND ka -Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PPos (QuestSlash whoSg_IP (SlashVP (MassNP (UseN2 mother_N2)) (Slash3V3 give_V3 (DetCN (DetQuant DefArt NumSg) (UseN meat_N))))))) NoVoc - -- LangEng: who wants to go --- subject pronoun not included, because who is a subject +-- subject pronoun not included, because who is a subject. STM merged to pron. LangSom: yaa rabaa in uu tago Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPres ASimul) PPos (QuestVP whoSg_IP (ComplVV want_VV (UseV go_V))))) NoVoc +-- to whom did mother give the meat +-- subject pronoun 'ay' included, because whom is an object. STM merged. +LangSom: yaa ay siisey hooyo hilib BIND ka +Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PPos (QuestSlash whoSg_IP (SlashVP (MassNP (UseN2 mother_N2)) (Slash3V3 give_V3 (DetCN (DetQuant DefArt NumSg) (UseN meat_N))))))) NoVoc + -- LangEng: which cat teaches him +-- subject pronoun not included, STM not merged. LangSom: bisad BIND dee baa ku bartaa Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPres ASimul) PPos (QuestVP (IdetCN (IdetQuant which_IQuant NumSg) (UseN cat_N)) (ComplSlash (SlashV2a teach_V2) (UsePron he_Pron))))) NoVoc +-- LangEng: which woman did you see +-- subject pronoun included, STM not merged. +LangSom: naag BIND tee baa aad aragtay +Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PPos (QuestSlash (IdetCN (IdetQuant which_IQuant NumSg) (UseN woman_N)) (SlashVP (UsePron youSg_Pron) (SlashV2a see_V2))))) NoVoc + +-- LangEng: where did you go +-- subject pronoun included, because IAdv xaggee 'where' is fronted and aad 'you' is subject. STM not merged. +LangSom: xaggee baa aad tagtay +Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PPos (QuestIAdv where_IAdv (PredVP (UsePron youSg_Pron) (UseV go_V))))) NoVoc + +-- LangEng: why did you go +-- subject pronoun included, STM merged. +LangSom: maxaa aad u tagtay +Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PPos (QuestIAdv why_IAdv (PredVP (UsePron youSg_Pron) (UseV go_V))))) NoVoc + +--- Longer example, unsure about word order -- TODO check -- LangEng: how does your mother paint the house black LangSom: sidee baa ay hooya BIND daa madow u rinjiyeysaa guri BIND ga Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPres ASimul) PPos (QuestIAdv how_IAdv (PredVP (DetCN (DetQuant (PossPron youSg_Pron) NumSg) (UseN2 mother_N2)) (ComplSlash (SlashV2A paint_V2A (PositA black_A)) (DetCN (DetQuant DefArt NumSg) (UseN house_N))))))) NoVoc From 0ed0c1f19432453f99a5ad4edf7bda8f5bf1228a Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Fri, 13 Sep 2019 14:28:33 +0200 Subject: [PATCH 26/85] (Som) Add TODO about negative questions --- src/somali/QuestionSom.gf | 4 ++++ src/somali/unittest/cl.gftest | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/src/somali/QuestionSom.gf b/src/somali/QuestionSom.gf index 073f18461..410038c84 100644 --- a/src/somali/QuestionSom.gf +++ b/src/somali/QuestionSom.gf @@ -46,6 +46,10 @@ concrete QuestionSom of Question = CatSom ** open True => [] ; _ => "baa"} ++ sbj.pron ++ sbj.noun ; -- TODO how do negative questions work + -- Information questions are not commonly used in negative forms. When they occur they have the same forms as negative declaratives with focus (7.4.1). There is however a strong tendency to use positive forms, for example by subordinating the clause under a verb with an inherently negative meaning: + -- Maxaad u tegi weydey? + -- what+FOC+you for go:INF failed + -- 'Why didn't you go?' (lit. 'Why did you fail to go?') _ => case iadv.contractSTM of { True => [] ; _ => clRaw.stm ! Question ! p} ++ sbj.pron ++ sbj.noun } ; diff --git a/src/somali/unittest/cl.gftest b/src/somali/unittest/cl.gftest index 18c8e24d7..6ea33be07 100644 --- a/src/somali/unittest/cl.gftest +++ b/src/somali/unittest/cl.gftest @@ -112,6 +112,11 @@ Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PPos (QuestIAdv where_I LangSom: maxaa aad u tagtay Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PPos (QuestIAdv why_IAdv (PredVP (UsePron youSg_Pron) (UseV go_V))))) NoVoc +-- Negative question -- TODO not implemented yet properly. Saeed p. 203 +-- LangEng: why didn't you go +LangSom: maxaa aad u tagi weydey +Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PNeg (QuestIAdv why_IAdv (PredVP (UsePron youSg_Pron) (UseV go_V))))) NoVoc + --- Longer example, unsure about word order -- TODO check -- LangEng: how does your mother paint the house black LangSom: sidee baa ay hooya BIND daa madow u rinjiyeysaa guri BIND ga From 319f097ac0e52badc056f0085c8bb2ca7e2f2fe2 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Fri, 13 Sep 2019 15:12:13 +0200 Subject: [PATCH 27/85] (Som) Move qcl-tests into new file --- src/somali/unittest/cl.gftest | 53 ------------------------------ src/somali/unittest/qcl.gftest | 60 ++++++++++++++++++++++++++++++++++ 2 files changed, 60 insertions(+), 53 deletions(-) create mode 100644 src/somali/unittest/qcl.gftest diff --git a/src/somali/unittest/cl.gftest b/src/somali/unittest/cl.gftest index 6ea33be07..0374a01f5 100644 --- a/src/somali/unittest/cl.gftest +++ b/src/somali/unittest/cl.gftest @@ -79,56 +79,3 @@ Lang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (RelNP (UseP --LangEng: he , that sees the men , is this LangSom: isagu oo niman BIND ka arkaa waa kan Lang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (RelNP (UsePron he_Pron) (UseRCl (TTAnt TPres ASimul) PPos (RelVP IdRP (ComplSlash (SlashV2a see_V2) (DetCN (DetQuant DefArt NumPl) (UseN man_N)))))) (UseComp (CompNP (DetNP (DetQuant this_Quant NumSg))))))) NoVoc - --- Question clauses - --- LangEng: who wants to go --- subject pronoun not included, because who is a subject. STM merged to pron. -LangSom: yaa rabaa in uu tago -Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPres ASimul) PPos (QuestVP whoSg_IP (ComplVV want_VV (UseV go_V))))) NoVoc - --- to whom did mother give the meat --- subject pronoun 'ay' included, because whom is an object. STM merged. -LangSom: yaa ay siisey hooyo hilib BIND ka -Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PPos (QuestSlash whoSg_IP (SlashVP (MassNP (UseN2 mother_N2)) (Slash3V3 give_V3 (DetCN (DetQuant DefArt NumSg) (UseN meat_N))))))) NoVoc - --- LangEng: which cat teaches him --- subject pronoun not included, STM not merged. -LangSom: bisad BIND dee baa ku bartaa -Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPres ASimul) PPos (QuestVP (IdetCN (IdetQuant which_IQuant NumSg) (UseN cat_N)) (ComplSlash (SlashV2a teach_V2) (UsePron he_Pron))))) NoVoc - --- LangEng: which woman did you see --- subject pronoun included, STM not merged. -LangSom: naag BIND tee baa aad aragtay -Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PPos (QuestSlash (IdetCN (IdetQuant which_IQuant NumSg) (UseN woman_N)) (SlashVP (UsePron youSg_Pron) (SlashV2a see_V2))))) NoVoc - --- LangEng: where did you go --- subject pronoun included, because IAdv xaggee 'where' is fronted and aad 'you' is subject. STM not merged. -LangSom: xaggee baa aad tagtay -Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PPos (QuestIAdv where_IAdv (PredVP (UsePron youSg_Pron) (UseV go_V))))) NoVoc - --- LangEng: why did you go --- subject pronoun included, STM merged. -LangSom: maxaa aad u tagtay -Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PPos (QuestIAdv why_IAdv (PredVP (UsePron youSg_Pron) (UseV go_V))))) NoVoc - --- Negative question -- TODO not implemented yet properly. Saeed p. 203 --- LangEng: why didn't you go -LangSom: maxaa aad u tagi weydey -Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PNeg (QuestIAdv why_IAdv (PredVP (UsePron youSg_Pron) (UseV go_V))))) NoVoc - ---- Longer example, unsure about word order -- TODO check --- LangEng: how does your mother paint the house black -LangSom: sidee baa ay hooya BIND daa madow u rinjiyeysaa guri BIND ga -Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPres ASimul) PPos (QuestIAdv how_IAdv (PredVP (DetCN (DetQuant (PossPron youSg_Pron) NumSg) (UseN2 mother_N2)) (ComplSlash (SlashV2A paint_V2A (PositA black_A)) (DetCN (DetQuant DefArt NumSg) (UseN house_N))))))) NoVoc - --- Some examples from Nilsson, adjusted to the GF lexicon --- Maxaa ay u samaysay sidaas? Varför gjorde hon så? ---LangEng: why did she eat the meat -LangSom: maxaa ay u cuntay hilib BIND ka -Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PPos (QuestIAdv why_IAdv (PredVP (UsePron she_Pron) (ComplSlash (SlashV2a eat_V2) (DetCN (DetQuant DefArt NumSg) (UseN meat_N))))))) NoVoc - --- Maxaa ay ahaa dharka cusub ee Faadumo loo iibiyay? Vad/Vilka var de nya kläder som man köpt åt Fadumo? TODO why is there subject pronoun here? ---LangEng: what was the meat that was eaten -LangSom: TODO -Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PPos (QuestVP whatSg_IP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (RelCN (UseN meat_N) (UseRCl (TTAnt TPast ASimul) PPos (RelVP IdRP (PassV2 eat_V2)))))))))) NoVoc diff --git a/src/somali/unittest/qcl.gftest b/src/somali/unittest/qcl.gftest new file mode 100644 index 000000000..0091209ba --- /dev/null +++ b/src/somali/unittest/qcl.gftest @@ -0,0 +1,60 @@ + +-- Question clauses + +-- LangEng: who wants to go +-- subject pronoun not included, because who is a subject. STM merged to pron. +LangSom: yaa rabaa in uu tago +Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPres ASimul) PPos (QuestVP whoSg_IP (ComplVV want_VV (UseV go_V))))) NoVoc + +-- to whom did mother give the meat +-- subject pronoun 'ay' included, because whom is an object. STM merged. +LangSom: yaa ay siisey hooyo hilib BIND ka +Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PPos (QuestSlash whoSg_IP (SlashVP (MassNP (UseN2 mother_N2)) (Slash3V3 give_V3 (DetCN (DetQuant DefArt NumSg) (UseN meat_N))))))) NoVoc + +-- LangEng: which cat teaches him +-- subject pronoun not included, STM not merged. +LangSom: bisad BIND dee baa ku bartaa +Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPres ASimul) PPos (QuestVP (IdetCN (IdetQuant which_IQuant NumSg) (UseN cat_N)) (ComplSlash (SlashV2a teach_V2) (UsePron he_Pron))))) NoVoc + +-- LangEng: which woman did you see +-- subject pronoun included, STM not merged. +LangSom: naag BIND tee baa aad aragtay +Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PPos (QuestSlash (IdetCN (IdetQuant which_IQuant NumSg) (UseN woman_N)) (SlashVP (UsePron youSg_Pron) (SlashV2a see_V2))))) NoVoc + +-- LangEng: where did you go +-- subject pronoun included, because IAdv xaggee 'where' is fronted and aad 'you' is subject. STM not merged. +LangSom: xaggee baa aad tagtay +Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PPos (QuestIAdv where_IAdv (PredVP (UsePron youSg_Pron) (UseV go_V))))) NoVoc + +-- LangEng: why did you go +-- subject pronoun included, STM merged. +LangSom: maxaa aad u tagtay +Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PPos (QuestIAdv why_IAdv (PredVP (UsePron youSg_Pron) (UseV go_V))))) NoVoc + +-- Negative question -- TODO not implemented yet properly. Saeed p. 203 +-- LangEng: why didn't you go +LangSom: maxaa aad u tagi weydey +Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PNeg (QuestIAdv why_IAdv (PredVP (UsePron youSg_Pron) (UseV go_V))))) NoVoc + +-- IComp +-- LangEng: who is the man +-- Saeed p. 212 Ninkii ay raaceen waa ayo? man-the they accompanied DM who +-- 'The man they travelled with is who?' +LangSom: nin BIND ku waa ayo +Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPres ASimul) PPos (QuestIComp (CompIP whoSg_IP) (DetCN (DetQuant DefArt NumSg) (UseN man_N))))) NoVoc + +--- Longer example, unsure about word order -- TODO check +-- LangEng: how does your mother paint the house black +LangSom: sidee baa ay hooya BIND daa madow u rinjiyeysaa guri BIND ga +Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPres ASimul) PPos (QuestIAdv how_IAdv (PredVP (DetCN (DetQuant (PossPron youSg_Pron) NumSg) (UseN2 mother_N2)) (ComplSlash (SlashV2A paint_V2A (PositA black_A)) (DetCN (DetQuant DefArt NumSg) (UseN house_N))))))) NoVoc + +-- Some examples from Nilsson, adjusted to the GF lexicon +-- Maxaa ay u samaysay sidaas? Varför gjorde hon så? +--LangEng: why did she eat the meat +LangSom: maxaa ay u cuntay hilib BIND ka +Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PPos (QuestIAdv why_IAdv (PredVP (UsePron she_Pron) (ComplSlash (SlashV2a eat_V2) (DetCN (DetQuant DefArt NumSg) (UseN meat_N))))))) NoVoc + +-- Maxaa ay ahaa dharka cusub ee Faadumo loo iibiyay? Vad/Vilka var de nya kläder som man köpt åt Fadumo? TODO why is there subject pronoun here? +--LangEng: what was the meat that was eaten +LangSom: TODO +Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PPos (QuestVP whatSg_IP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (RelCN (UseN meat_N) (UseRCl (TTAnt TPast ASimul) PPos (RelVP IdRP (PassV2 eat_V2)))))))))) NoVoc From d061595a2a6f5143c9b45ec7092a0c09fad18345 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Fri, 13 Sep 2019 15:12:50 +0200 Subject: [PATCH 28/85] (Som) Add IComp + related functions --- src/somali/CatSom.gf | 2 +- src/somali/QuestionSom.gf | 20 ++++++++++++++------ 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/src/somali/CatSom.gf b/src/somali/CatSom.gf index 538816379..52af918d0 100644 --- a/src/somali/CatSom.gf +++ b/src/somali/CatSom.gf @@ -23,7 +23,7 @@ concrete CatSom of Cat = CommonX - [Adv,IAdv] ** open ResSom, Prelude in { -- Constructed in QuestionSom. QCl = ResSom.QClause ; - IComp = SS ; -- interrogative complement of copula e.g. "where" + IComp = ResSom.Complement ; -- interrogative complement of copula e.g. "where" IDet = ResSom.Determiner ; -- interrogative determiner e.g. "how many" IQuant = ResSom.Quant ; -- interrogative quantifier e.g. "which" IP = ResSom.NounPhrase ** {contractSTM : Bool} ; -- like NP but may contract with STM diff --git a/src/somali/QuestionSom.gf b/src/somali/QuestionSom.gf index 410038c84..095d3409c 100644 --- a/src/somali/QuestionSom.gf +++ b/src/somali/QuestionSom.gf @@ -58,9 +58,12 @@ concrete QuestionSom of Question = CatSom ** open in cl2qcl True cl ; -- True because we handle STM placement in cl.stm -- : IComp -> NP -> QCl ; -- where is John? - -- Saeed p. 212 Ninkii ay raaceen waa ayo? man-the they accompanied DM who - -- 'The man they travelled with is who?' - -- QuestIComp icomp np = ; + QuestIComp icomp np = + let cls = predVP np (VS.UseComp icomp) ; + -- cl = cls ** { -- TODO: neg. questions + -- stm : ClType=>Polarity=>Str = \\_,_ => "waa" + -- } + in cl2sentence False cls ; -- copula is dropped and STM is waa -- Interrogative pronouns can be formed with interrogative -- determiners, with or without a noun. @@ -93,10 +96,15 @@ concrete QuestionSom of Question = CatSom ** open -- pronouns. -- : IAdv -> IComp ; - --CompIAdv iadv = iadv ; -- where (is it) - + CompIAdv iadv = { -- where (is it) + comp = \\_ => <[], iadv.s> ; + stm = Waa NoCopula ; + } ; -- : IP -> IComp ; - --CompIP ip = { s = ip.s ! Abs } ; -- who (is it) + CompIP ip = { -- who (is it) + comp = \\_ => <[], ip.s ! Abs> ; + stm = Waa NoCopula ; + } ; {- -- More $IP$, $IDet$, and $IAdv$ are defined in $Structural$. From a23881f2dc7ecd6fad69326dee8e96b422b5ee71 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Fri, 13 Sep 2019 19:13:20 +0200 Subject: [PATCH 29/85] (Som) Minor cleanup + better comments --- src/somali/QuestionSom.gf | 21 +++++++---------- src/somali/ResSom.gf | 47 +++++++++++++++------------------------ 2 files changed, 26 insertions(+), 42 deletions(-) diff --git a/src/somali/QuestionSom.gf b/src/somali/QuestionSom.gf index 095d3409c..8bd064559 100644 --- a/src/somali/QuestionSom.gf +++ b/src/somali/QuestionSom.gf @@ -10,27 +10,22 @@ concrete QuestionSom of Question = CatSom ** open -- : IP -> VP -> QCl ; QuestVP ip vp = -- TODO: if we want to contract baa + subj. pronoun, change ResSom.predVP - let clRaw : ClSlash = predVP ip vp ; - cl : ClSlash = clRaw ** { - stm = \\clt,p => case of { - <_,Pos> => "baa" ; - _ => clRaw.stm ! clt ! p } - } + let cls : ClSlash = predVP ip vp ; + cl : ClSlash = cls ** { + stm = modSTM "baa" cls.stm + } ; in cl2qcl (notB ip.contractSTM) cl ; -- : IP -> ClSlash -> QCl ; -- whom does John love QuestSlash ip cls = let clsIPFocus = cls ** { - subj = cls.subj ** { -- place IP first in the sentence, - noun = ip.s ! Nom -- keep old subject pronoun. + subj = cls.subj ** { -- keep old subject pronoun, + noun = ip.s ! Nom -- and place IP first. } ; obj2 = cls.obj2 ** { -- move old subject noun before object. - s = cls.subj.noun ++ cls.obj2.s + s = cls.subj.noun ++ cls.obj2.s } ; - stm : ClType=>Polarity=>Str = - \\clt,p => case of { - <_,Pos> => "baa" ; - _ => cls.stm ! clt ! p } + stm = modSTM "baa" cls.stm } ; in cl2qclslash (notB ip.contractSTM) clsIPFocus ; diff --git a/src/somali/ResSom.gf b/src/somali/ResSom.gf index 8116924f5..d1f7032cf 100644 --- a/src/somali/ResSom.gf +++ b/src/somali/ResSom.gf @@ -877,15 +877,7 @@ oper _ => predRaw -- Any other verb } ; - stm = \\cltyp,pol => - case of { - => showSTM vp.stm ; - => "ma" ; - => "ma" ; - => "sow" ; - => [] ; - => "aan" - } ; + stm = mkStm vp.stm ; comp = vp.comp ! subj.a ; vComp = vp.vComp ** { subcl = vp.vComp.subcl ! subj.a @@ -1062,28 +1054,25 @@ oper infVP : VerbPhrase -> Str = linVP VInf Statement ; - waaContr : Agreement => Polarity => Str = \\a,b => - let stm = if_then_Pol b "w" "m" - in stm + subjpron ! a ; + STMarker : Type = ClType => Polarity => Str ; - waaNoContr : Agreement => Polarity => {p1,p2 : Str} = \\a,p => - case p of { - Pos => {p1 = "waa" ; p2 = subjpron ! a} ; - Neg => {p1 = "ma" ; p2 = []} } ; - - waxaNoContr : Agreement => Polarity => {p1,p2 : Str} = \\a,p => - case p of { - Pos => {p1 = "waxa" ; p2 = subjpron ! a} ; - Neg => {p1 = "ma" ; p2 = []} } ; -- TODO: find out how to properly negate waxa clauses! - - subjpron : Agreement => Str = table { - Sg1|Pl1 Excl => "aan" ; - Pl1 Incl => "aynu" ; - Sg2|Pl2 => "aad" ; - Sg3 Masc => "uu" ; - Impers => [] ; - _ => "ay" } ; + mkStm : STM -> STMarker = \stm -> + \\cltyp,pol => + case of { + => showSTM stm ; + => "ma" ; + => "ma" ; + => "sow" ; + => [] ; + => "aan" + } ; + modSTM : Str -> STMarker -> STMarker = \str,stm -> + \\cltyp,pol => + case of { + <_,Pos> => str ; + _ => stm ! cltyp ! pol + } ; -------------------------------------------------------------------------------- -- linrefs From 8fb8ddd808875a13b84fcc38acbc301675be05b9 Mon Sep 17 00:00:00 2001 From: Hans Leiss Date: Wed, 18 Sep 2019 15:16:42 +0200 Subject: [PATCH 30/85] Ger: improved infinitives (and passives); tests with more verbs in testing/german - NP: added field isLight in order to push negation behind light nps; this had been done in gf-3.9 using field isPron, but isPron is now used to put accusative pronoun before dative pronoun. Removed field adv: adverbial extensions cannot be extracted (todo: also for CN). Reduced isLight*isPron to w:Weight with 3 values: WPron, WLight, WHeavy. - added param Control and field ctrl:Control to classify V2V-verbs into subject- and object-contol verbs, use ctrl to make reflexives agree with subject resp. object in VPSlash, and refine ComplSlash. - Verb: new versions of ComplVV, SlashV2V and SlashVV to give better (nested) infinitives (extracting infzu and correcting object order). a) nested SlashVV doesn't work properly; b) SlashV2VNP may have to be commented out to prevent a stack overflow when compiling. Intended change of SlashV2VNP in tests/german/TestLangGer could not be tested due to size problems with the compiler. - VP: changed field a1 : Polarity => Str to a1:Str to collect the adverbs coming before negation, using (negation : Polarity => Str) in mkClause. Use objCtrl:Bool instead of missingAdv to let reflexives agree with object. - ResGer: insertObjNP reorganized, infzuVP added - DictVerbsGer: some corrections (helft -> hilft, *sprecht -> *spricht) - Some potential passive rules in tests/german/TestLangGer|Eng - ExtraGer needs to be cleaned up with repect to the modified mkClause. --- src/german/CatGer.gf | 4 +- src/german/DictGer.gf | 4 +- src/german/DictVerbsGer.gf | 20 +-- src/german/DictVerbsGerAbs.gf | 1 + src/german/ExtraGer.gf | 58 ++++--- src/german/ExtraGerAbs.gf | 1 + src/german/MorphoGer.gf | 8 +- src/german/NounGer.gf | 81 +++++---- src/german/ParadigmsGer.gf | 17 +- src/german/ResGer.gf | 264 ++++++++++++++++++++---------- src/german/SentenceGer.gf | 7 +- src/german/SymbolGer.gf | 18 +- src/german/VerbGer.gf | 116 ++++++++++--- tests/german/TestLang.gf | 21 ++- tests/german/TestLangEng.gf | 44 ++++- tests/german/TestLangGer.gf | 183 ++++++++++++++++++--- tests/german/TestLexiconEng.gf | 14 +- tests/german/TestLexiconGer.gf | 17 +- tests/german/TestLexiconGerAbs.gf | 21 ++- tests/german/examples.txt | 26 +++ tests/german/infinitives.gfs | 15 ++ tests/german/infinitives.lin.out | 258 +++++++++++++++++++++++++++++ tests/german/infinitives.trees | 195 ++++++++++++++++++++++ tests/german/object-order.README | 4 +- tests/german/object-order.gfs | 46 +++--- tests/german/passive.dub.out | 12 ++ tests/german/passive.gfs | 23 +++ tests/german/passive.neg.out | 24 +++ tests/german/passive.pos.out | 195 ++++++++++++++++++++++ tests/german/passive.trees | 37 +++++ tests/german/passive.txt | 110 +++++++++++++ 31 files changed, 1580 insertions(+), 264 deletions(-) create mode 100644 tests/german/infinitives.gfs create mode 100644 tests/german/infinitives.lin.out create mode 100644 tests/german/infinitives.trees create mode 100644 tests/german/passive.dub.out create mode 100644 tests/german/passive.gfs create mode 100644 tests/german/passive.neg.out create mode 100644 tests/german/passive.pos.out create mode 100644 tests/german/passive.trees create mode 100644 tests/german/passive.txt diff --git a/src/german/CatGer.gf b/src/german/CatGer.gf index 2dcbb13b0..990b1a09b 100644 --- a/src/german/CatGer.gf +++ b/src/german/CatGer.gf @@ -89,7 +89,7 @@ concrete CatGer of Cat = V, VS, VQ = ResGer.Verb ; -- = {s : VForm => Str} ; VV = Verb ** {isAux : Bool} ; V2, VA, V2A, V2S, V2Q = Verb ** {c2 : Preposition} ; - V2V = Verb ** {c2 : Preposition ; isAux : Bool} ; + V2V = Verb ** {c2 : Preposition ; isAux : Bool ; ctrl : Control} ; V3 = Verb ** {c2, c3 : Preposition} ; A = {s : Degree => AForm => Str} ; @@ -106,7 +106,7 @@ concrete CatGer of Cat = Tense = {s : Str ; t : ResGer.Tense ; m : Mood} ; linref - NP = \np -> np.s!(NPC Nom) ++ np.adv ++ np.ext ++ np.rc ; -- HL 6/2019 + NP = \np -> np.s!(NPC Nom) ++ np.ext ++ np.rc ; -- HL 6/2019 CN = \cn -> cn.s ! Strong ! Pl ! Nom ++ cn.adv ++ cn.ext ++ cn.rc ! Pl ; SSlash = \ss -> ss.s ! Main ++ ss.c2.s ; diff --git a/src/german/DictGer.gf b/src/german/DictGer.gf index 1b0289a27..be37e7e1e 100644 --- a/src/german/DictGer.gf +++ b/src/german/DictGer.gf @@ -16980,7 +16980,7 @@ lin heldin_N = mkN "Heldin" "Heldinnen" feminine ; heldisch_A = mk3A "heldisch" "heldischer" "heldischste" ; helena_N = mkN "Helena" "Helenas" feminine ; - helfen_V = irregV "helfen" "helft" "half" "hälfe" "geholfen" ; + helfen_V = irregV "helfen" "hilft" "half" "hälfe" "geholfen" ; helfensteiner_N = mkN "Helfensteiner" "Helfensteiner" masculine ; helfer_N = mkN "Helfer" "Helfer" masculine ; helferlein_N = mkN "Helferlein" "Helferlein" neuter ; @@ -26112,7 +26112,7 @@ lin nachgruebeln_V = prefixV "nach" (regV "grübeln") ; nachhaken_5_V = prefixV "nach" (regV "haken") ; nachhaltig_A = mk3A "nachhaltig" "nachhaltiger" "nachhaltigste" ; - nachhelfen_6_V = prefixV "nach" (irregV "helfen" "helft" "half" "hälfe" "geholfen") ; + nachhelfen_6_V = prefixV "nach" (irregV "helfen" "hilft" "half" "hälfe" "geholfen") ; nachher_Adv = mkAdv "nachher" ; nachhilfe_N = mkN "Nachhilfe" "Nachhilfen" feminine ; nachhut_N = mkN "Nachhut" "Nachhuten" feminine ; diff --git a/src/german/DictVerbsGer.gf b/src/german/DictVerbsGer.gf index 5e4f74c68..9685cd060 100644 --- a/src/german/DictVerbsGer.gf +++ b/src/german/DictVerbsGer.gf @@ -1032,8 +1032,8 @@ lin aussortieren_V2 = dirV2 (prefixV "aus" (regV "sortieren")) ; ausspeichern_V2 = dirV2 (prefixV "aus" (regV "speichern")) ; ausspionieren_V2 = dirV2 (prefixV "aus" (regV "spionieren")) ; - aussprechen_V2 = dirV2 (prefixV "aus" (irregV "sprechen" "sprecht" "sprach" "spräche" "gesprochen")) ; - aussprechen_VS = mkVS (prefixV "aus" (irregV "sprechen" "sprecht" "sprach" "spräche" "gesprochen")) ; + aussprechen_V2 = dirV2 (prefixV "aus" (irregV "sprechen" "spricht" "sprach" "spräche" "gesprochen")) ; + aussprechen_VS = mkVS (prefixV "aus" (irregV "sprechen" "spricht" "sprach" "spräche" "gesprochen")) ; ausspucken_vor_V2 = prepV2 (prefixV "aus" (regV "spucken")) (mkPrep "vor" dative) ; ausspucken_V = prefixV "aus" (regV "spucken") ; ausstatten_mit_V3 = dirV3 (prefixV "aus" (regV "statten")) mit_Prep ; @@ -1358,8 +1358,8 @@ lin besorgen_dat_V3 = accdatV3 (regV "besorgen") ; besorgen_V2 = dirV2 (regV "besorgen") ; bespassen_V2 = dirV2 (regV "bespaßen") ; - besprechen_mit_V3 = dirV3 (irregV "besprechen" "besprecht" "besprach" "bespräche" "besprochen") mit_Prep ; - besprechen_plV2 = pldirV2 (irregV "besprechen" "besprecht" "besprach" "bespräche" "besprochen") ; + besprechen_mit_V3 = dirV3 (irregV "besprechen" "bespricht" "besprach" "bespräche" "besprochen") mit_Prep ; + besprechen_plV2 = pldirV2 (irregV "besprechen" "bespricht" "besprach" "bespräche" "besprochen") ; bespruehen_mit_V3 = dirV3 (regV "besprühen") mit_Prep ; bespruehen_V2 = dirV2 (regV "besprühen") ; besseren_rV = reflV (regV "besseren") accusative ; @@ -2146,8 +2146,8 @@ lin entsichern_V2 = dirV2 (irregV "entsichern" "entsichert" "entsicherte" "entsicherte" "entsichert") ; entsorgen_V2 = dirV2 (irregV "entsorgen" "entsorgt" "entsorgte" "entsorgte" "entsorgt") ; entspannen_rV = reflV (irregV "entspannen" "entspannt" "entspannte" "entspannte" "entspannt") accusative ; - entsprechen_dat_V2 = mkV2 (irregV "entsprechen" "entsprecht" "entsprach" "entspräche" "entsprochen") datPrep ; - entsprechen_rcV = reciV (irregV "entsprechen" "entsprecht" "entsprach" "entspräche" "entsprochen") dative ; + entsprechen_dat_V2 = mkV2 (irregV "entsprechen" "entspricht" "entsprach" "entspräche" "entsprochen") datPrep ; + entsprechen_rcV = reciV (irregV "entsprechen" "entspricht" "entsprach" "entspräche" "entsprochen") dative ; entspringen_loc_V2 = prepV2 (irregV "entspringen" "entspringt" "entsprang" "entspränge" "entsprungen") loc_Prep ; entstaatlichen_V2 = dirV2 (irregV "entstaatlichen" "entstaatlicht" "entstaatlichte" "entstaatlichte" "entstaatlicht") ; entstammen_gen_V2 = mkV2 (irregV "entstammen" "entstammt" "entstammte" "entstammte" "entstammt") genPrep ; @@ -3019,8 +3019,8 @@ lin heissen_V3 = dirV3 (irregV "heißen" "heißt" "hieß" "hieße" "geheißen") accPrep ; heizen_V2 = dirV2 (regV "heizen") ; heizen_V = regV "heizen" ; + helfen_dat_V2V = mkV2V (irregV "helfen" "hilft" "half" "hälfe" "geholfen") datPrep ; helfen_dat_bei_V3 = mkV3 (irregV "helfen" "hilft" "half" "hülfe" "geholfen") datPrep bei_Prep ; --- helfen_V = irregV "helfen" "helft" "half" "hälfe" "geholfen" ; hellen_es_esV = esV (regV "hellen") ; hellenisieren_V2 = dirV2 (regV "hellenisieren") ; hemmen_sV2 = dassV2 (regV "hemmen") accPrep ; @@ -4142,8 +4142,8 @@ lin nachgruebeln_ueber_V2 = prepV2 (prefixV "nach" (regV "grübeln")) (mkPrep "über" dative) ; nachhaken_bei_V2 = prepV2 (prefixV "nach" (regV "haken")) bei_Prep ; nachhaken_V = prefixV "nach" (regV "haken") ; - nachhelfen_dat_V2 = mkV2 (prefixV "nach" (irregV "helfen" "helft" "half" "hälfe" "geholfen")) datPrep ; - nachhelfen_dat_V2V = mkV2V (prefixV "nach" (irregV "helfen" "helft" "half" "hälfe" "geholfen")) datPrep ; + nachhelfen_dat_V2 = mkV2 (prefixV "nach" (irregV "helfen" "hilft" "half" "hälfe" "geholfen")) datPrep ; + nachhelfen_dat_V2V = mkV2V (prefixV "nach" (irregV "helfen" "hilft" "half" "hälfe" "geholfen")) datPrep ; nachkarten_V = prefixV "nach" (regV "karten") ; nachlassen_dat_V3 = accdatV3 (prefixV "nach" (irregV "lassen" "lasst" "ließ" "ließe" "gelassen")) ; nachlassen_im_V2 = prepV2 (prefixV "nach" (irregV "lassen" "lasst" "ließ" "ließe" "gelassen")) (mkPrep "in" dative) ; @@ -6492,7 +6492,7 @@ lin verspielen_rV = reflV (irregV "verspielen" "verspielt" "verspielte" "verspielte" "verspielt") accusative ; verspielen_V2 = dirV2 (irregV "verspielen" "verspielt" "verspielte" "verspielte" "verspielt") ; verspotten_V2 = dirV2 (irregV "verspotten" "verspottet" "verspottete" "verspotte" "verspottet") ; - versprechen_dat_V2V = mkV2V (irregV "versprechen" "versprecht" "versprach" "verspräche" "versprochen") datPrep ; + versprechen_dat_V2V = mkV2V (irregV "versprechen" "verspricht" "versprach" "verspräche" "versprochen") datPrep ; versprengen_V2 = dirV2 (irregV "versprengen" "versprengt" "versprengte" "versprengte" "versprengt") ; verspueren_V2 = dirV2 (irregV "verspüren" "verspürt" "verspürte" "verspürte" "verspürt") ; verstaatlichen_V2 = dirV2 (irregV "verstaatlichen" "verstaatlicht" "verstaatlichte" "verstaatlichte" "verstaatlicht") ; diff --git a/src/german/DictVerbsGerAbs.gf b/src/german/DictVerbsGerAbs.gf index af1ba63b2..6a425a376 100644 --- a/src/german/DictVerbsGerAbs.gf +++ b/src/german/DictVerbsGerAbs.gf @@ -2882,6 +2882,7 @@ fun heissen_V3 : V3 ; heizen_V2 : V2 ; heizen_V : V ; + helfen_dat_V2V : V2V ; helfen_dat_bei_V3 : V3 ; hellen_es_esV : V ; hellenisieren_V2 : V2 ; diff --git a/src/german/ExtraGer.gf b/src/german/ExtraGer.gf index 15d03daed..f11cc072f 100644 --- a/src/german/ExtraGer.gf +++ b/src/german/ExtraGer.gf @@ -13,7 +13,8 @@ concrete ExtraGer of ExtraGerAbs = CatGer ** ConjVPI = conjunctDistrTable Bool ; ComplVPIVV v vpi = - insertInf (vpi.s ! v.isAux) ( +-- insertInf (vpi.s ! v.isAux) ( + insertInf {s=(vpi.s ! v.isAux);isAux=v.isAux;ctrl=SubjC} ( -- HL ?? predVGen v.isAux v) ; ---- {- insertExtrapos vpi.p3 ( @@ -42,15 +43,19 @@ concrete ExtraGer of ExtraGerAbs = CatGer ** DetNPMasc det = { s = \\c => det.sp ! Masc ! c ; ---- genders a = agrP3 det.n ; - isPron = False ; - ext, adv, rc = [] + -- isPron = False ; + -- isLight = True ; + w = WLight ; + ext, rc = [] } ; DetNPFem det = { s = \\c => det.sp ! Fem ! c ; ---- genders a = agrP3 det.n ; - isPron = False ; - ext, adv, rc = [] + -- isPron = False ; + -- isLight = True ; + w = WLight ; + ext, rc = [] } ; EmptyRelSlash slash = { @@ -63,7 +68,7 @@ concrete ExtraGer of ExtraGerAbs = CatGer ** PassVPSlash vp = let c = case of { => NPC Nom ; - _ => vp.c2.c} + _ => vp.c2.c} in insertObj (\\_ => (PastPartAP vp).s ! APred) (predV werdenPass) ** {subjc = vp.c2 ** {c= c}} ; -- regulates passivised object: accusative objects -> nom; all others: same case @@ -73,8 +78,12 @@ concrete ExtraGer of ExtraGerAbs = CatGer ** PassAgentVPSlash vp np = ---- "von" here, "durch" in StructuralGer insertObj (\\_ => (PastPartAgentAP (lin VPSlash vp) (lin NP np)).s ! APred) (predV werdenPass) ; + Pass3V3 v = -- HL 7/19 + let bekommenPass : Verb = P.habenV (P.irregV "bekommen" "bekommt" "bekam" "bekäme" "bekommen") + in insertObj (\\_ => (v.s ! VPastPart APred)) (predV bekommenPass) ** { subjc = PrepNom ; c2 = v.c2 } ; + PastPartAP vp = { - s = \\af => (vp.nn ! agrP3 Sg).p1 ++ (vp.nn ! agrP3 Sg).p2 ++ (vp.nn ! agrP3 Sg).p3 ++ vp.a2 ++ vp.inf ++ + s = \\af => (vp.nn ! agrP3 Sg).p1 ++ (vp.nn ! agrP3 Sg).p2 ++ (vp.nn ! agrP3 Sg).p3 ++ vp.a2 ++ vp.inf.s ++ vp.ext ++ vp.infExt ++ vp.s.s ! VPastPart af ; isPre = True ; c = <[],[]> ; @@ -85,7 +94,7 @@ concrete ExtraGer of ExtraGerAbs = CatGer ** let agent = appPrepNP P.von_Prep np in { s = \\af => (vp.nn ! agrP3 Sg).p1 ++ (vp.nn ! agrP3 Sg).p2 ++ (vp.nn ! agrP3 Sg).p3 ++ vp.a2 ++ agent ++ - vp.inf ++ + vp.inf.s ++ vp.c2.s ++ --- junk if not TV vp.ext ++ vp.infExt ++ vp.s.s ! VPastPart af ; isPre = True ; @@ -129,7 +138,7 @@ concrete ExtraGer of ExtraGerAbs = CatGer ** m = tm.m ; subj = [] ; verb = vps.s ! ord ! agr ! VPFinite m t a ; - neg = tm.s ++ p.s ++ vp.a1 ! b ; + neg = tm.s ++ p.s ++ vp.a1 ++ negation ! b ; -- HL 8/19 ++ vp.a1 ! b ; -- obj1 = (vp.nn ! agr).p1 ; -- obj = (vp.nn ! agr).p2 ; -- compl = obj1 ++ neg ++ obj ++ vp.a2 ; -- from EG 15/5 @@ -137,19 +146,19 @@ concrete ExtraGer of ExtraGerAbs = CatGer ** obj2 = (vp.nn ! agr).p3 ; -- pp-objects obj3 = (vp.nn ! agr).p4 ++ vp.adj ++ vp.a2 ; -- pred.AP|CN|Adv, via useComp HL 6/2019 compl = obj1 ++ neg ++ obj2 ++ obj3 ; - inf = vp.inf ++ verb.inf ++ verb.inf2 ; + inf = vp.inf.s ++ verb.inf ++ verb.inf2 ; extra = vp.ext ; infE : Str = -- HL 30/6/2019 case of { => inf ; --# notpresent -- Duden 318: kommen wollen haben => haben kommen wollen --# notpresent - => verb.inf2 ++ vp.inf ++ verb.inf ; --# notpresent + => verb.inf2 ++ vp.inf.s ++ verb.inf ; --# notpresent <_,Anter,True> => inf ; --# notpresent - _ => verb.inf ++ verb.inf2 ++ vp.inf } ; + _ => verb.inf ++ verb.inf2 ++ vp.inf.s } ; inffin : Str = case of { -- ... wird|würde haben kommen wollen --# notpresent - => verb.fin ++ verb.inf2 ++ vp.inf ++ verb.inf ; --# notpresent + => verb.fin ++ verb.inf2 ++ vp.inf.s ++ verb.inf ; --# notpresent <_,Anter,True> --# notpresent => verb.fin ++ inf ; -- double inf --# notpresent _ => inf ++ verb.fin --- or just auxiliary vp @@ -204,8 +213,8 @@ concrete ExtraGer of ExtraGerAbs = CatGer ** lin EsVV vv vp = predV vv ** { - nn = \\a => let n = vp.nn ! a in <"es" ++ n.p1 , n.p2 , n.p3, n.p4> ; - inf = vp.s.s ! (VInf True) ++ vp.inf ; -- ich genieße es zu versuchen zu gehen; alternative word order could be produced by vp.inf ++ vp.s.s... (zu gehen zu versuchen) + nn = \\a => let n = vp.nn ! a in <"es" ++ n.p1, n.p2, n.p3, n.p4, n.p5, n.p6> ; + inf = vp.inf ** {s = vp.s.s ! (VInf True) ++ vp.inf.s} ; -- ich genieße es zu versuchen zu gehen; alternative word order could be produced by vp.inf ++ vp.s.s... (zu gehen zu versuchen) a1 = vp.a1 ; a2 = vp.a2 ; ext = vp.ext ; @@ -213,7 +222,7 @@ concrete ExtraGer of ExtraGerAbs = CatGer ** adj = vp.adj } ; EsV2A v2a ap s = predV v2a ** { - nn = \\_ => <"es",[],[],[]> ; + nn = \\_ => <"es",[],[],[],[],[]> ; adj = ap.s ! APred ; ext = "," ++ "dass" ++ s.s ! Sub} ; @@ -228,7 +237,7 @@ concrete ExtraGer of ExtraGerAbs = CatGer ** let vp = predV werdenPass ; in vp ** { subj = esSubj ; - inf = v.s ! VPastPart APred } ; -- construct the formal clause + inf = vp.inf ** {s = v.s ! VPastPart APred } } ; -- construct the formal clause AdvFor adv fcl = fcl ** {a2 = adv.s} ; @@ -244,9 +253,12 @@ concrete ExtraGer of ExtraGerAbs = CatGer ** esSubj : NP = lin NP { s = \\_ => "es" ; - rc, ext, adv = [] ; + rc, ext = [] ; a = Ag Neutr Sg P3 ; - isPron = True} ; + -- isLight = True ; + -- isPron = True + w = WPron + } ; DisToCl : Str -> Agr -> FClause -> Clause = \subj,agr,vp -> let vps = useVP vp in { @@ -257,11 +269,11 @@ concrete ExtraGer of ExtraGerAbs = CatGer ** _ => False } ; verb = vps.s ! ord ! agr ! VPFinite m t a ; - neg = vp.a1 ! b ; + neg = vp.a1 ++ negation ! b ; -- HL 8/19 vp.a1 ! b ; obj1 = (vp.nn ! agr).p1 ; obj2 = (vp.nn ! agr).p2 ++ (vp.nn ! agr).p3 ; compl = obj1 ++ neg ++ vp.adj ++ obj2 ++ vp.a2 ; -- adj added - inf = vp.inf ++ verb.inf ; -- not used for linearisation of Main/Inv + inf = vp.inf.s ++ verb.inf ; -- not used for linearisation of Main/Inv extra = vp.ext ; inffin : Str = case of { @@ -270,8 +282,8 @@ concrete ExtraGer of ExtraGerAbs = CatGer ** } in case o of { - Main => subj ++ verb.fin ++ compl ++ vp.infExt ++ verb.inf ++ extra ++ vp.inf ; - Inv => verb.fin ++ compl ++ vp.infExt ++ verb.inf ++ extra ++ vp.inf ; + Main => subj ++ verb.fin ++ compl ++ vp.infExt ++ verb.inf ++ extra ++ vp.inf.s ; + Inv => verb.fin ++ compl ++ vp.infExt ++ verb.inf ++ extra ++ vp.inf.s ; Sub => compl ++ vp.infExt ++ inffin ++ extra } } ; diff --git a/src/german/ExtraGerAbs.gf b/src/german/ExtraGerAbs.gf index 84b572aab..ef02bf633 100644 --- a/src/german/ExtraGerAbs.gf +++ b/src/german/ExtraGerAbs.gf @@ -26,4 +26,5 @@ abstract ExtraGerAbs = Extra [ AdvFor : Adv -> FClause -> FClause ; -- es wird heute gelacht - addition of adverbs FtoCl : FClause -> Cl ; -- embedding FClause within the RGL, to allow generation of S, Utt, etc. + Pass3V3 : V3 -> VPSlash ; -- wir bekommen den Beweis erklärt } diff --git a/src/german/MorphoGer.gf b/src/german/MorphoGer.gf index 3b887b0b2..a2eeea1c4 100644 --- a/src/german/MorphoGer.gf +++ b/src/german/MorphoGer.gf @@ -20,10 +20,12 @@ oper mkPrep : Str -> PCase -> Preposition = \s,c -> {s = s ; s2 = [] ; c = c ; isPrep = True} ; - nameNounPhrase : {s : Case => Str} -> {s : PCase => Str ; a : Agr ; isPron : Bool ; ext,adv,rc : Str} = \name -> heavyNP { + nameNounPhrase : {s : Case => Str} -> {s : PCase => Str ; a : Agr ; + -- isLight, isPron : Bool ; + w : Weight ; + ext,rc : Str} = \name -> heavyNP { s = \\c => usePrepC c (\k -> name.s ! k) ; - a = agrP3 Sg ; - ext, adv, rc = [] -- added + a = agrP3 Sg } ; detLikeAdj : Bool -> Number -> Str -> diff --git a/src/german/NounGer.gf b/src/german/NounGer.gf index 547a346df..a7fa50682 100644 --- a/src/german/NounGer.gf +++ b/src/german/NounGer.gf @@ -2,39 +2,46 @@ concrete NounGer of Noun = CatGer ** open ResGer, MorphoGer, Prelude in { flags optimize=all_subs ; +-- Remark: np.isLight makes ResGer.insertObjNP expensive, for ComplSlash, SlashVP + lin DetCN det cn = { s = \\c => det.s ! cn.g ! c ++ - (let k = (prepC c).c in cn.s ! adjfCase det.a k ! det.n ! k) ; + (let k = (prepC c).c in cn.s ! adjfCase det.a k ! det.n ! k ++ cn.adv) ; a = agrgP3 cn.g det.n ; --- isPron = det.isDef ; -- ich sehe den Mann nicht vs. ich sehe nicht einen Mann - isPron = False ; -- HL 6/2019 (but:) sehe (die|einige) Männer nicht - rc = cn.rc ! det.n ; -- don't see a|no man = sehe keinen Mann - adv = cn.adv ; + -- isLight = det.isDef ; -- ich sehe den Mann nicht vs. ich sehe nicht einen Mann + -- isPron = False ; -- HL 6/2019 (but:) sehe (die|einige) Männer nicht + -- don't see a|no man = sehe keinen Mann + w = case det.isDef of { True => WLight ; _ => WHeavy } ; + rc = cn.rc ! det.n ; ext = cn.ext } ; DetNP det = { s = \\c => det.sp ! Neutr ! c ; -- more genders in ExtraGer -- HL: der+er,den+en ; der drei,den drei+en a = agrP3 det.n ; - -- isPron = det.isDef ; - isPron = False ; -- HL 6/2019: don't apply pronoun switch: ich gebe ihr das vs. ich gebe es ihr - rc, adv, ext = [] + -- isLight = det.isDef ; + -- isPron = False ; -- HL 6/2019: don't apply pronoun switch: ich gebe ihr das vs. ich gebe es ihr + w = case det.isDef of { True => WLight ; _ => WHeavy } ; + rc, ext = [] } ; UsePN pn = { s = \\c => usePrepC c (\k -> pn.s ! k) ; a = agrgP3 pn.g Sg ; --- isPron = True ; --- means: this is not a heavy NP, but comes before negation - isPron = False ; -- HL 6/2019: to regulate Pron/NonPronNP order - rc, adv, ext = [] +-- isLight = True ; -- means: this is not a heavy NP, but comes before negation +-- isPron = False ; -- HL 6/2019: to regulate Pron/NonPronNP order + w = WLight ; + rc, ext = [] } ; UsePron pron = { s = \\c => usePrepC c (\k -> pron.s ! NPCase k) ; a = pron.a ; - isPron = True ; - rc, adv, ext = [] + -- isLight = True ; + -- isPron = True ; + w = WPron ; + rc, ext = [] } ; PredetNP pred np = @@ -43,25 +50,32 @@ concrete NounGer of Noun = CatGer ** open ResGer, MorphoGer, Prelude in { let c = case pred.c.k of {NoCase => c0 ; PredCase k => k} in pred.s ! numberAgr ag ! genderAgr np.a ! c0 ++ pred.c.p ++ np.s ! c ; a = ag ; - isPron = False + -- isLight = False ; + -- isPron = False + w = WHeavy } ; PPartNP np v2 = np ** { - s = \\c => np.s ! c ++ v2.s ! VPastPart APred ; --- invar part - isPron = False + s = \\c => np.s ! c ++ embedInCommas (v2.s ! VPastPart APred) ; --- invar part +-- isPron = False + w = WHeavy } ; - {- possibly structures such as - "sie ist eine erfolgreiche Frau geliebt von vielen" - but only with v2 not possible in German? -} + {- "eine erfolgreiche Frau, geliebt von vielen," but only with v2 not possible in German? + HL: PPartNP np vps|vp: "der Autor, heute vergessen" , "der Mond, gerade aufgegangen," + -} AdvNP np adv = np ** { - adv = np.adv ++ adv.s ; - isPron = False + s = \\c => np.s ! c ++ adv.s ; + -- isLight = False ; + -- isPron = False + w = WHeavy } ; ExtAdvNP np adv = np ** { - adv = np.adv ++ embedInCommas adv.s ; - isPron = False + s = \\c => np.s ! c ++ embedInCommas adv.s ; + -- isLight = False ; + -- isPron = False + w = WHeavy } ; DetQuantOrd quant num ord = @@ -151,19 +165,20 @@ concrete NounGer of Noun = CatGer ** open ResGer, MorphoGer, Prelude in { } ; MassNP cn = { - s = \\c => usePrepC c (\k -> cn.s ! Strong ! Sg ! k) ; + s = \\c => usePrepC c (\k -> cn.s ! Strong ! Sg ! k) ++ cn.adv ; a = agrgP3 cn.g Sg ; - isPron = False ; - rc = cn.rc ! Sg ; - adv = cn.adv ; - ext = cn.ext + -- isLight = True ; -- ich trinke Bier nicht vs. ich trinke kein Bier + -- isPron = False ; + w = WLight ; + rc = cn.rc ! Sg ; + ext = cn.ext } ; UseN, UseN2 = \n -> { s = \\_ => n.s ; g = n.g ; - rc = \\_ => [] ; - ext,adv = [] + rc = \\_ => [] ; + ext,adv = [] } ; ComplN2 f x = { @@ -182,8 +197,6 @@ concrete NounGer of Noun = CatGer ** open ResGer, MorphoGer, Prelude in { } ; g = f.g ; c2 = f.c3 ; - rc = \\_ => [] ; - ext,adv = [] } ; Use2N3 f = f ; @@ -209,7 +222,9 @@ concrete NounGer of Noun = CatGer ** open ResGer, MorphoGer, Prelude in { RelNP np rs = np ** { rc = (np.rc ++ embedInCommas (rs.s ! RGenNum (gennum (genderAgr np.a) (numberAgr np.a)))) ; - isPron = False } ; + -- isPron = False + w = case isPron np of { True => WLight ; _ => np.w } + } ; SentCN cn s = cn ** {ext = cn.ext ++ embedInCommas s.s} ; diff --git a/src/german/ParadigmsGer.gf b/src/german/ParadigmsGer.gf index 02758d895..89dc95114 100644 --- a/src/german/ParadigmsGer.gf +++ b/src/german/ParadigmsGer.gf @@ -302,7 +302,7 @@ mkV2 : overload { mkV0 : V -> V0 ; --% mkVS : V -> VS ; - mkV2V : overload { -- with zu + mkV2V : overload { -- with zu; object-control mkV2V : V -> V2V ; mkV2V : V -> Prep -> V2V ; } ; @@ -310,6 +310,8 @@ mkV2 : overload { auxV2V : V -> V2V ; auxV2V : V -> Prep -> V2V ; } ; + subjV2V : V2V -> V2V ; -- force subject-control + mkV2A : overload { mkV2A : V -> V2A ; mkV2A : V -> Prep -> V2A ; @@ -596,24 +598,25 @@ mkV2 : overload { auxVV v = v ** {isAux = True ; lock_VV = <>} ; V0 : Type = V ; --- V2S, V2V, V2Q : Type = V2 ; AS, A2S, AV : Type = A ; A2V : Type = A2 ; mkV0 v = v ** {lock_V = <>} ; - mkV2V = overload { + mkV2V = overload { -- default: object-control mkV2V : V -> V2V - = \v -> dirV2 v ** {isAux = False ; lock_V2V = <>} ; + = \v -> dirV2 v ** {isAux = False ; ctrl = ObjC ; lock_V2V = <>} ; mkV2V : V -> Prep -> V2V - = \v,p -> prepV2 v p ** {isAux = False ; lock_V2V = <>} ; + = \v,p -> prepV2 v p ** {isAux = False ; ctrl = ObjC ; lock_V2V = <>} ; } ; auxV2V = overload { auxV2V : V -> V2V - = \v -> dirV2 v ** {isAux = True ; lock_V2V = <>} ; + = \v -> dirV2 v ** {isAux = True ; ctrl = ObjC ; lock_V2V = <>} ; auxV2V : V -> Prep -> V2V - = \v,p -> prepV2 v p ** {isAux = True ; lock_V2V = <>} ; + = \v,p -> prepV2 v p ** {isAux = True ; ctrl = ObjC ; lock_V2V = <>} ; } ; + subjV2V v = v ** {ctrl = SubjC} ; + mkV2A = overload { mkV2A : V -> V2A = \v -> dirV2 v ** {isAux = False ; lock_V2A = <>} ; diff --git a/src/german/ResGer.gf b/src/german/ResGer.gf index 7a3af3b21..52a20c693 100644 --- a/src/german/ResGer.gf +++ b/src/german/ResGer.gf @@ -1,4 +1,4 @@ ---# -path=.:../abstract:../common:prelude +--# -path=.:../abstract:../common:../prelude: --1 German auxiliary operations. -- @@ -74,7 +74,7 @@ resource ResGer = ParamX ** open Prelude in { -- Predeterminers sometimes require a case ("ausser mir"), sometimes not ("nur ich"). -- A number is sometimes inherited ("alle Menschen"), --- sometimes forced ("jeder von Mwnschen"). +-- sometimes forced ("jeder von den Menschen"). param PredetCase = NoCase | PredCase PCase ; @@ -82,6 +82,16 @@ resource ResGer = ParamX ** open Prelude in { oper noCase : {p : Str ; k : PredetCase} = {p = [] ; k = NoCase} ; +-- Pronominal nps are ordered differently, and light nps come before negation in clauses. +-- (To save space, reduce isPron * isLight = 4 values to the following three.) HL 9/19 + param + Weight = WPron | WLight | WHeavy ; + oper + isPron : {w : Weight} -> Bool = \np -> + case np.w of {WPron => True ; _ => False} ; + isLight : {w : Weight} -> Bool = \np -> + case np.w of {WHeavy => False ; _ => True} ; + --2 For $Adjective$ -- The predicative form of adjectives is not inflected further. @@ -114,7 +124,11 @@ resource ResGer = ParamX ** open Prelude in { param VType = VAct | VRefl Case ; --- The order of sentence is depends on whether it is used as a main +-- Implicit subject of embedded vp equals subject resp. object of matrix verb v:V2V: + + param Control = SubjC | ObjC | NoC ; -- NoC : verb without infinite vp-complement + +-- The order of a sentence depends on whether it is used as a main -- clause, inverted, or subordinate. param @@ -239,11 +253,13 @@ resource ResGer = ParamX ** open Prelude in { NP : Type = { s : PCase => Str ; - rc : Str ; -- die Frage , [rc die ich gestellt habe] - ext : Str ; -- die Frage , [sc wo sie schläft]) - adv : Str ; -- die Frage [a von Max] - a : Agr ; - isPron : Bool } ; + rc : Str ; -- die Frage , [rc die ich gestellt habe] + ext : Str ; -- die Frage , [sc wo sie schläft] ; die Regel , [vp kein Fleisch zu essen] | [s dass ...] + -- adv : Str ; -- die Frage [a von Max] -- HL: cannot be extracted + a : Agr ; + -- isLight : Bool ; -- light NPs come before negation in simple clauses (expensive) + -- isPron : Bool } ; -- needed to put accPron before datPron + w : Weight } ; mkN : (x1,_,_,_,_,x6,x7 : Str) -> Gender -> Noun = \Mann, Mannen, Manne, Mannes, Maenner, Maennern, Mann_, g -> { @@ -398,7 +414,10 @@ resource ResGer = ParamX ** open Prelude in { -- Prepositions for complements indicate the complement case. - Preposition : Type = {s : Str ; s2 : Str ; c : PCase ; isPrep : Bool} ; -- s2 is postposition + Preposition : Type = {s : Str ; s2 : Str ; c : PCase ; isPrep : Bool} ; + + -- HL 7/19: German has very few circumpositions: um (Gen) Willen, von (Adv) an|ab|aus + -- ? bis (Adv) hin|her. So maybe we should skip s2 (and save readings with empty preps). -- To apply a preposition to a complement. @@ -409,10 +428,9 @@ resource ResGer = ParamX ** open Prelude in { prep.s ++ np.s ! prep.c ++ bigNP np ++ prep.s2 ; -- revised appPrep for discontinuous NPs - bigNP : NP -> Str = \np -> - np.adv ++ np.ext ++ np.rc ; + bigNP : NP -> Str = \np -> np.ext ++ np.rc ; --- To build a preposition from just a case. +-- To build a preposition from just a case. -- HL 9/19: no longer used in RGL noPreposition : Case -> Preposition = \c -> {s,s2 = [] ; c = NPC c ; isPrep = False} ; @@ -503,27 +521,27 @@ resource ResGer = ParamX ** open Prelude in { VPC : Type = { s : Bool => Agr => VPForm => { -- True = prefix glued to verb fin : Str ; -- wird - inf:Str;inf2 : Str -- lesen,[] | gelesen,haben | können,haben (= gekonnt,haben) + inf, inf2 : Str -- lesen,[] | gelesen,haben | können,haben (= gekonnt,haben) } -- HL 11/6/2019 Fut Anter: lesen gekonnt haben => haben lesen können } ; VP : Type = { - s : Verb ; -- HL 6/2019: - nn : Agr => Str * Str * Str * Str ; -- - a1 : Polarity => Str ; -- nicht = adV + s : Verb ; -- HL 6/2019: + nn : Agr => Str * Str * Str * Str -- + a1 : Str ; -- adv before negation, adV a2 : Str ; -- heute = adv - adj : Str ; -- space for adjectival complements ("ich finde dich schön") + adj : Str ; -- adjectival complement ("ich finde dich schön") isAux : Bool ; -- is a double infinitive - inf : Str ; -- sagen + inf : {s:Str ; isAux:Bool ; ctrl:Control} ; -- infinitival complement of VV or V2V ext : Str ; -- dass sie kommt - infExt : Str ; -- infinitival complements of inf e.g. ich hoffe [zu gehen] zu versuchen - subjc : Preposition -- determines case of "subj" - } ; + infExt : Str ; -- infinitival complements of inf + -- e.g. ich hoffe [ihr zu helfen] zu versuchen + subjc : Preposition -- case of subject + } ; - predV : Verb -> VPSlash = predVGen False ; - - predVc : Verb ** {c2 : Preposition} -> VPSlash = \v -> - predV v ** {c2 = v.c2} ; + VPSlash = VP ** {c2 : Preposition ; + objCtrl : Bool } ; -- True = embedded reflexives agree with object useVP : VP -> VPC = \vp -> let @@ -578,6 +596,11 @@ resource ResGer = ParamX ** open Prelude in { } } ; + predV : Verb -> VPSlash = predVGen False ; + + predVc : Verb ** {c2 : Preposition} -> VPSlash = \v -> + predV v ** {c2 = v.c2 ; objCtrl = False} ; + predVGen : Bool -> Verb -> VPSlash = \isAux, verb -> { s = { s = verb.s ; @@ -586,19 +609,18 @@ resource ResGer = ParamX ** open Prelude in { aux = verb.aux ; vtype = verb.vtype } ; - - a1 : Polarity => Str = negation ; - a2 : Str = [] ; - nn : Agr => Str * Str * Str * Str = case verb.vtype of { - VAct => \\_ => <[],[],[],[]> ; - VRefl c => \\a => + a1,a2 : Str = [] ; + nn : Agr => Str * Str * Str * Str * Str * Str = case verb.vtype of { + VAct => \\_ => <[],[],[],[],[],[]> ; + VRefl c => \\a => } ; isAux = isAux ; ---- - inf,ext,infExt,adj : Str = [] ; + inf = {s=[]; isAux=True; ctrl=NoC} ; -- default infinitive complement + ext,infExt,adj : Str = [] ; -- (isAux=True => no endcomma) subjc = PrepNom ; -- Dummy values for subtyping. - c2 = noPreposition Nom ; - missingAdv = False + c2 = PrepNom ; + objCtrl = False } ; auxPerfect : Verb -> VForm => Str = \verb -> @@ -658,34 +680,59 @@ resource ResGer = ParamX ** open Prelude in { Neg => "nicht" } ; - VPSlash = VP ** {c2 : Preposition ; missingAdv : Bool } ; - -- IL 24/04/2018 Fixing the scope of reflexives objAgr : { a : Agr } -> VP -> VP = \obj,vp -> vp ** { - nn = \\a => vp.nn ! obj.a } ; + nn = \\a => vp.nn ! obj.a } ; + -- HL: if reflexive only: -- Extending a verb phrase with new constituents. insertObj : (Agr => Str) -> VPSlash -> VPSlash = \obj,vp -> -- obj:Comp A|Adv|CN - vp ** { nn = \\a => let vpnn = vp.nn ! a in } ; + vp ** { nn = \\a => let vpnn = vp.nn ! a + in } ; insertObjc : (Agr => Str) -> VPSlash -> VPSlash = \obj,vp -> - insertObj obj vp ** {c2 = vp.c2 ; missingAdv = vp.missingAdv } ; + insertObj obj vp ** {c2 = vp.c2 ; objCtrl = vp.objCtrl } ; insertObjNP : NP -> Preposition -> VPSlash -> VPSlash = \np,prep,vp -> let c = case prep.c of { NPC cc => cc ; _ => Nom } ; obj : Agr => Str = \\_ => appPrepNP prep np ; in vp ** { - nn = \\a => -- HL 11/6/19: rough objNP order: + nn = \\a => -- HL 11/6/19: rough objNP order: (p5,p6 = splitInfExt) let vpnn = vp.nn ! a in -- vfin < accPron < refl < (gen|dat)Pron < nonPronNP < neg < prepNP < vinf|comp - case of { -- (assuming v.c2=acc) nonPron: dat < acc|gen (acc < gen not enforced) - => ; -- - => ; -- - => ; -- - => ; -- - <_, True, _> => -- +{- less expensive if isLight is removed from NPs: + case of { + -- (assuming v.c2=acc) nonPron: dat < acc|gen (acc < gen not enforced) + => -- + ; + => -- + ; + => -- + ; + => -- + ; + <_, True,_ > => -- + } - } ; -- the ordering of objects of v:V3 (and v:V4) is also determined by Slash?V3 (and Slash?V4) +-} +-- expensive: -- vfin < accPron < refl < (gen|dat)Pron < lightNP < neg < heavyNP|PP < vinf|comp + case of { + => -- + ; + => -- + ; + => -- + ; + => -- (assuming v.c2=acc) nonPron: dat < acc|gen + -- + ; + => -- + ; + => -- + ; + => -- + } + } ; -- the ordering of objects of v:V3 (and v:V4) is also determined by Slash?V3 (and Slash?V4) insertObjRefl : VPSlash -> VPSlash = \vp -> -- HL 6/2019, to order reflPron < neg < prep+reflPron let prep = vp.c2 ; @@ -696,12 +743,12 @@ resource ResGer = ParamX ** open Prelude in { nn = \\a => let vpnn = vp.nn ! a in case b of { - True => ; - False => } + True => ; + False => } } ; - insertAdV : Str -> VP -> VP = \adv,vp -> vp ** { - a1 = \\a => adv ++ vp.a1 ! a } ; -- immer nicht + insertAdV : Str -> VP -> VP = \adv,vp -> vp ** { -- not used in RGL, so VP.a1 can be skipped + a1 = adv ++ vp.a1 } ; -- cf. AdvVP(Slash),AdVVP(Slash) insertAdv : Str -> VP -> VP = \adv,vp -> vp ** { a2 = vp.a2 ++ adv } ; @@ -712,13 +759,24 @@ resource ResGer = ParamX ** open Prelude in { insertInfExt : Str -> VPSlash -> VPSlash = \infExt,vp -> vp ** { infExt = vp.infExt ++ infExt } ; - insertInf : Str -> VPSlash -> VPSlash = \inf,vp -> vp ** { - inf = inf ++ vp.inf } ; + -- HL: to handle infExt in ComplVV and SlashVV, SlashV2V + insertInfExtraObj : (Agr => Str) -> VPSlash -> VPSlash = \objs,vp -> vp ** { + nn = \\a => let vpnn = vp.nn ! a in + + } ; + insertInfExtraInf : (Agr => Str) -> VPSlash -> VPSlash = \inf,vp -> vp ** { + nn = \\a => let vpnn = vp.nn ! a in + + } ; + + insertInf : {s:Str;isAux:Bool;ctrl:Control} -> VPSlash -> VPSlash = \inf,vp -> vp ** { + inf = {s = inf.s ++ vp.inf.s ; isAux = inf.isAux ; ctrl=inf.ctrl} } ; insertAdj : Str -> Str * Str -> Str -> VPSlash -> VPSlash = \adj,c,ext,vp -> vp ** { nn = \\a => - let vpnn = vp.nn ! a in ; -- ihr? | der Frau treu - adj = vp.adj ++ adj ++ c.p2 ; -- neugierig auf das Buch + let vpnn = vp.nn ! a in ; + adj = vp.adj ++ adj ++ c.p2 ; -- neugierig auf das Buch ext = vp.ext ++ ext} ; -------------------------------------------- @@ -739,34 +797,56 @@ resource ResGer = ParamX ** open Prelude in { _ => False } ; verb = vps.s ! ord ! agr ! VPFinite m t a ; - neg = vp.a1 ! b ; - obj1 = (vp.nn ! agr).p1 ++ (vp.nn ! agr).p2 ; -- refl ++ pronouns ++ nonpronouns - obj2 = (vp.nn ! agr).p3 ; -- pp-objects + neg = negation ! b ; + obj1 = (vp.nn ! agr).p1 ++ (vp.nn ! agr).p2 ; -- refl ++ pronouns ++ light nps + obj2 = (vp.nn ! agr).p3 ; -- pp-objects and heavy nps obj3 = (vp.nn ! agr).p4 ++ vp.adj ++ vp.a2 ; -- pred.AP|CN|Adv, via useComp HL 6/2019 compl = obj1 ++ neg ++ obj2 ++ obj3 ; - inf = vp.inf ++ verb.inf ++ verb.inf2 ; -- zu kommen gebeten haben - extra = vp.ext ; -- * kommen (gewollt|wollen) haben - infE : Str = -- HL 30/6/2019 + -- leave inf-complement of +auxV(2)V in place, + -- extract infzu-complement of -auxV(2)V: (ComplVV, SlashV2V) + infExt : Str * Str = case vp.inf.isAux of + { True => <(vp.nn!agr).p6,[]> ; _ => <[],(vp.nn!agr).p6> } ; + extra = infExt.p2 ++ vp.ext ; + infCompls = -- () tun | ihn (es tun) lassen | ihm [es zu tun] versprechen + (vp.nn ! agr).p5 ++ infExt.p1 ++ vp.inf.s ; + comma = case orB vp.isAux (case vp.inf.ctrl of { NoC => True ; _ => False }) of { + True => [] ; _ => bindComma} ; + inf : Str = case of { - => inf ; --# notpresent - -- Duden 318: kommen wollen haben => haben kommen wollen --# notpresent - => verb.inf2 ++ vp.inf ++ verb.inf ; --# notpresent - <_,Anter,True> => inf ; --# notpresent - _ => verb.inf ++ verb.inf2 ++ vp.inf } ; + => --# notpresent + -- haben () tun wollen | + -- ihn haben (es tun) lassen wollen () | + -- ihm haben () versprechen wollen (, es zu tun) + (vp.nn ! agr).p5 ++ verb.inf2 ++ infExt.p1 ++ vp.inf.s ++ verb.inf ; --# notpresent + <_, Anter,True> => --# notpresent + -- tun wollen [] | ihn (es tun) lassen wollen [] | + -- ihm () versprechen wollen [] (, es zu tun) + infCompls ++ verb.inf ++ verb.inf2 ; --# notpresent + => --# notpresent + infCompls ++ verb.inf ++ verb.inf2 ; --# notpresent + => --# notpresent + -- gebeten haben , es zu tun () | gebeten haben , ihn (es tun) zu lassen + verb.inf ++ verb.inf2 ++ comma ++ infCompls ; --# notpresent + _ => verb.inf2 ++ verb.inf ++ comma ++ infCompls } ; inffin : Str = case of { -- ... wird|würde haben kommen wollen --# notpresent - => verb.fin ++ verb.inf2 ++ vp.inf ++ verb.inf ; --# notpresent - <_,Anter,True> --# notpresent - => verb.fin ++ inf ; -- double inf --# notpresent - _ => inf ++ verb.fin --- or just auxiliary vp + => (vp.nn ! agr).p5 ++ verb.fin --# notpresent + ++ verb.inf2 ++ infExt.p1 ++ vp.inf.s ++ verb.inf ; --# notpresent + --# notpresent + => (vp.nn ! agr).p5 ++ infExt.p1 ++ verb.fin --# notpresent + ++ vp.inf.s ++ verb.inf ++ verb.inf2 ; -- double inf --# notpresent + <_, _ ,True> + => infCompls ++ verb.inf ++ verb.inf2 ++ verb.fin ; -- or just auxiliary vp + <_, _ ,False> + => verb.inf ++ verb.inf2 ++ verb.fin ++ comma ++ infCompls } ; in case o of { - Main => subj ++ verb.fin ++ compl ++ vp.infExt ++ infE ++ extra ; - Inv => verb.fin ++ subj ++ compl ++ vp.infExt ++ infE ++ extra ; - Sub => subj ++ compl ++ vp.infExt ++ inffin ++ extra - } + Main => subj ++ verb.fin ++ compl ++ inf ++ extra ; + Inv => verb.fin ++ subj ++ compl ++ inf ++ extra ; + Sub => subj ++ compl ++ inffin ++ extra + } } ; {- @@ -786,11 +866,12 @@ resource ResGer = ParamX ** open Prelude in { es wird nicht besser -} - infVP : Bool -> VP -> ((Agr => Str) * Str * Str * Str) = \isAux, vp -> let vps = useVP vp in + infVP : Bool -> VP -> ((Agr => Str) * Str * Str * Str) = + \isAux, vp -> let vps = useVP vp in < \\agr => (vp.nn ! agr).p1 ++ (vp.nn ! agr).p2 ++ (vp.nn ! agr).p3 ++ (vp.nn ! agr).p4 ++ vp.a2, - vp.a1 ! Pos ++ vp.adj ++ (vps.s ! (notB isAux) ! agrP3 Sg ! VPInfinit Simul).inf, - vp.inf, + vp.a1 ++ vp.adj ++ (vps.s ! (notB isAux) ! agrP3 Sg ! VPInfinit Simul).inf, -- vp.a1 ! Pos + vp.inf.s, vp.infExt ++ vp.ext > ; @@ -798,6 +879,17 @@ resource ResGer = ParamX ** open Prelude in { let vpi = infVP isAux vp in vpi.p1 ! agrP3 Sg ++ vpi.p3 ++ vpi.p2 ++ vpi.p4 ; + infzuVP : Bool -> Control -> Anteriority -> Polarity -> VP -- HL + -> { objs:(Agr => Str) ; pred:{s:Str;isAux:Bool;ctrl:Control} ; inf:Str ; ext:Str } = + \isAux, ctrl, ant, pol, vp -> let vps = useVP vp in + { objs = \\agr => (vp.nn ! agr).p1 ++ (vp.nn ! agr).p2 ++ negation ! pol ++ (vp.nn ! agr).p3 + ++ vp.a2 ++ (vp.nn ! agr).p4 ; -- objects + predicative A|CN|NP + pred = { s = vp.a1 ++ vp.adj ++ (vps.s ! (notB isAux) ! agrP3 Sg ! VPInfinit ant).inf ; + isAux = vp.isAux ; ctrl = ctrl } ; + inf = vp.inf.s ; + ext = vp.ext + } ; + -- The nominative case is not used as reflexive, but defined here -- so that we can reuse this in personal pronouns. -- The missing Sg "ihrer" shows that a dependence on gender would @@ -855,8 +947,8 @@ resource ResGer = ParamX ** open Prelude in { infPart : Bool -> Str = \b -> if_then_Str b [] "zu" ; heavyNP : - {s : PCase => Str ; a : Agr} -> {s : PCase => Str ; a : Agr ; isPron : Bool ; adv,ext,rc : Str} = \np -> - np ** {isPron = False; adv,ext,rc = []} ; -- this could be wrong + {s : PCase => Str ; a : Agr} -> {s : PCase => Str ; a : Agr ; w : Weight ; ext,rc : Str} = \np -> + np ** {w = WHeavy ; ext,rc = []} ; -- this could be wrong relPron : RelGenNum => Case => Str = \\rgn,c => case rgn of { @@ -872,14 +964,12 @@ resource ResGer = ParamX ** open Prelude in { } ; -- Function that allows the construction of non-nominative subjects. - mkSubj : NP -> Preposition -> Str * Agr = \np, subjc -> - let - sub = subjc ; - agr = case sub.c of { - NPC Nom => np.a ; - _ => Ag Masc Sg P3 } ; - subj = appPrepNP sub np - in ; + mkSubj : NP -> Preposition -> Str * Agr = \np, subjc -> + let + sub = subjc ; + agr = case sub.c of { NPC Nom => np.a ; _ => Ag Masc Sg P3 } ; + subj = appPrepNP sub np + in ; } diff --git a/src/german/SentenceGer.gf b/src/german/SentenceGer.gf index 3138a9c91..fc33fa22d 100644 --- a/src/german/SentenceGer.gf +++ b/src/german/SentenceGer.gf @@ -26,10 +26,11 @@ concrete SentenceGer of Sentence = CatGer ** open ResGer, Prelude in { } ; agr = Ag Fem (numImp n) ps.p1 ; --- g does not matter verb = vps.s ! False ! agr ! VPImperat ps.p3 ; - inf = vp.inf ++ verb.inf ; -- HL .nn + inf = vp.inf.s ++ verb.inf ; -- HL .nn obj = (vp.nn ! agr).p2 ++ (vp.nn ! agr).p3 ++ (vp.nn ! agr).p4 in - verb.fin ++ ps.p2 ++ (vp.nn ! agr).p1 ++ vp.a1 ! pol ++ obj ++ vp.a2 ++ inf ++ vp.ext +-- verb.fin ++ ps.p2 ++ (vp.nn ! agr).p1 ++ vp.a1 ! pol ++ obj ++ vp.a2 ++ inf ++ vp.ext + verb.fin ++ ps.p2 ++ (vp.nn ! agr).p1 ++ vp.a1 ++ negation ! pol ++ obj ++ vp.a2 ++ inf ++ vp.ext } ; SlashVP np vp = @@ -49,7 +50,7 @@ concrete SentenceGer of Sentence = CatGer ** open ResGer, Prelude in { (insertExtrapos (conjThat ++ slash.s ! Sub) (predV vs)) ** {c2 = slash.c2} ; - EmbedS s = {s = conjThat ++ s.s ! Sub} ; + EmbedS s = {s = conjThat ++ s.s ! Sub} ; -- no leading comma, if sentence-initial EmbedQS qs = {s = qs.s ! QIndir} ; EmbedVP vp = {s = useInfVP False vp} ; diff --git a/src/german/SymbolGer.gf b/src/german/SymbolGer.gf index 888ff3937..190e8e9ae 100644 --- a/src/german/SymbolGer.gf +++ b/src/german/SymbolGer.gf @@ -11,21 +11,27 @@ lin CNIntNP cn i = { s = \\c => cn.s ! Weak ! Sg ! Nom ++ i.s ; a = agrP3 Sg ; - isPron = False ; - ext,rc,adv = [] -- added + -- isPron = False ; + -- isLight = True ; + w = WLight ; + ext,rc = [] -- added } ; CNSymbNP det cn xs = let g = cn.g in { s = \\c => det.s ! g ! c ++ (let k = (prepC c).c in cn.s ! adjfCase det.a k ! det.n ! k) ++ xs.s ; a = agrP3 det.n ; - isPron = False ; - ext,rc,adv = [] -- added + -- isPron = False ; + -- isLight = True ; + w = WLight ; + ext,rc = [] -- added } ; CNNumNP cn i = { s = \\c => artDefContr (GSg cn.g) c ++ cn.s ! Weak ! Sg ! Nom ++ i.s ! Neutr ! (prepC c).c ; a = agrP3 Sg ; - isPron = False ; - ext,rc,adv = [] -- added + -- isPron = False ; + -- isLight = True ; + w = WLight ; + ext,rc = [] -- added } ; SymbS sy = {s = \\_ => sy.s} ; diff --git a/src/german/VerbGer.gf b/src/german/VerbGer.gf index 00492f3db..9cfdb042a 100644 --- a/src/german/VerbGer.gf +++ b/src/german/VerbGer.gf @@ -4,7 +4,7 @@ concrete VerbGer of Verb = CatGer ** open Prelude, ResGer, Coordination in { lin UseV = predV ; - +{- ComplVV v vp = let vpi = infVP v.isAux vp ; @@ -14,6 +14,32 @@ concrete VerbGer of Verb = CatGer ** open Prelude, ResGer, Coordination in { insertInfExt vpi.p3 ( insertInf vpi.p2 ( insertObjc vpi.p1 vps))) ; +-} + -- HL 7/19 + ComplVV v vp = -- will|wage (es ([]|zu) tun [] | ihn [es tun] ([]|zu) lassen + let + vps = predVGen v.isAux v ; + vpi = infzuVP v.isAux SubjC Simul Pos vp ; + -- { objs: ihm ; pred: []/zu versprechen, objInf: sich/es zu tun } + -- (ich) vfin:werde (ihm ([]/zu) versprechen) vinf:(wollen/gewagt haben) (, es zu tun) + -- (ich) vfin:werde (ihn (es tun) lassen)/[] vinf:(wollen/gewagt haben) []/(, ihn (es tun) zu lassen) + extInfzu = case of { => (vp.nn!(Ag Masc Sg P3)).p6 ; _ => []} ; + comma = case vp.inf.ctrl of { NoC => [] ; _ => bindComma} ; -- es (zu) tun + embeddedInf : Agr => Str = + case of { -- vv + vp + [embeddedInf] + -- will [es lesen] können | will ihn [es lesen] lassen + => \\agr => (vp.nn!agr).p5 ++ (vp.nn!agr).p6 ++ vpi.inf ; + -- will ihn [euch (extInfzu) bitten] lassen + => \\agr => (vp.nn!agr).p5 ++ vpi.inf ; -- ++ (vp.nn!agr).p6 => extInfzu + -- will es lesen [] | will ihn bitten [, es zu lesen] | will ihn bitten [, sie es lesen zu lassen] + => \\agr => comma ++ (vp.nn!agr).p5 ++ (vp.nn!agr).p6 ++ vpi.inf ; + -- will ihn bitten [, ihr zu helfen, es zu lesen] + => \\agr => comma ++ (vp.nn!agr).p5 ++ vpi.inf ++ (vp.nn!agr).p6 } + in + insertExtrapos (extInfzu ++ vpi.ext) ( -- vps.ext <- vp's extracted embedded infzu + vp's object-sentence + insertInf vpi.pred ( -- vps.inf <- vp's infinite main verb + insertInfExtraObj vpi.objs ( -- vps.nn.p5 <- vp's object nps + insertInfExtraInf embeddedInf vps))) ; ComplVS v s = insertExtrapos (comma ++ conjThat ++ s.s ! Sub) (predV v) ; @@ -21,52 +47,90 @@ concrete VerbGer of Verb = CatGer ** open Prelude, ResGer, Coordination in { insertExtrapos (comma ++ q.s ! QIndir) (predV v) ; ComplVA v ap = insertAdj (v.c2.s ++ ap.s ! APred) ap.c ap.ext (predV v) ; -- changed - SlashV2a v = (predVc v) ** {missingAdv = True} ; -- HL 12/6/2019 for reflexive verbs with objects, rV2:V2, rV3:V3 + SlashV2a v = (predVc v) ; - Slash2V3 v np = insertObjNP np v.c2 (predV v) ** {c2 = v.c3 ; missingAdv = True} ; - Slash3V3 v np = insertObjNP np v.c3 (predV v) ** {c2 = v.c2 ; missingAdv = True} ; + Slash2V3 v np = insertObjNP np v.c2 (predVc v) ** {c2 = v.c3} ; + Slash3V3 v np = insertObjNP np v.c3 (predVc v) ; SlashV2S v s = - insertExtrapos (conjThat ++ s.s ! Sub) (predVc v) ; + insertExtrapos (comma ++ conjThat ++ s.s ! Sub) (predVc v) ; SlashV2Q v q = - insertExtrapos (q.s ! QIndir) (predVc v) ; + insertExtrapos (comma ++ q.s ! QIndir) (predVc v) ; +{- SlashV2V v vp = let vpi = infVP v.isAux vp ; vps = predVGen v.isAux v ** {c2 = v.c2} ; - in vps ** - insertExtrapos vpi.p3 ( - insertInf vpi.p2 ( - insertObj vpi.p1 vps)) ; + in vps ** + insertExtrapos vpi.p4 ( -- inplace vp; better extract it! + insertInfExt vpi.p3 ( + insertInf vpi.p2 ( + insertObjc vpi.p1 vps))) ; +-} + SlashV2V v vp = -- jmdn bitten, (\agr => sich!agr das Buch zu merken) HL 7/19 + let + vps = (predVGen v.isAux v) ** { c2 = v.c2 ; objCtrl = case v.ctrl of {ObjC => True ; _ => False}} ; + vpi = infzuVP v.isAux v.ctrl Simul Pos vp ; + comma : Str = case of { | <_,NoC> => [] ; _ => bindComma} ; + embeddedInf : Agr => Str = case vp.inf.isAux of { + True => \\agr => comma ++ (vp.nn!agr).p5 ++ (vp.nn!agr).p6 ++ vpi.inf ; -- ihn es lesen (zu) lassen + False => \\agr => comma ++ (vp.nn!agr).p5 ++ vpi.inf ++ (vp.nn!agr).p6 } -- ihn (zu) bitten , es zu lesen + in + insertExtrapos vpi.ext ( -- vps.ext <- vp's object-sentence ++ extractedInfzu? + insertInf vpi.pred ( -- vps.inf <- vp's infinite main verb + insertInfExtraObj vpi.objs ( -- vps.nn.p5 <- vp's object nps + insertInfExtraInf embeddedInf vps))) ; - SlashV2A v ap = + SlashV2A v ap = insertAdj (ap.s ! APred) ap.c ap.ext (predVc v) ; ComplSlash vps np = let vp = insertObjNP np vps.c2 vps ; - in case vp.missingAdv of { - True => vp ; - False => objAgr np vp } ; -- IL 24/04/2018 force reflexive in the VPSlash to take the agreement of the object introduced by ComplSlash. - + -- IL 24/04/2018 force reflexive in the VPSlash to take the agreement of np. + in case vps.objCtrl of { True => objAgr np vp ; _ => vp } ; +{- SlashVV v vp = - let + let vpi = infVP v.isAux vp ; - vps = predVGen v.isAux v ** {c2 = vp.c2} ; + vps = predVGen v.isAux v ** {c2 = vp.c2 } ; in vps ** insertExtrapos vpi.p3 ( - insertInf vpi.p2 ( + insertInf {s=vpi.p2;isAux=vp.isAux;ctrl=SubjC} ( -- insertInf vpi.p2 ( insertObj vpi.p1 vps)) ; +-} + SlashVV v vp = -- will|hoffe ((zu) lesen | ihr (zu) geben | (zu) bitten, es zu lesen) + let + vps = (predVGen v.isAux v) ** { c2 = vp.c2 } ; + vpi = infzuVP v.isAux SubjC Simul Pos vp ; -- (zu) (lesen | ihr geben | bitten, es zu lesen) + comma : Str = case of { | <_,NoC> => [] ; _ => bindComma} ; + embeddedInf : Agr => Str = case vp.inf.isAux of { + True => \\agr => comma ++ (vp.nn!agr).p5 ++ (vp.nn!agr).p6 ++ vpi.inf ; -- es lesen (zu) lassen + False => \\agr => comma ++ (vp.nn!agr).p5 ++ vpi.inf ++ (vp.nn!agr).p6 } -- (zu) bitten, es zu lesen + in + insertExtrapos vpi.ext ( -- vps.ext <- vp's object-sentence ++ extractedInfzu? + insertInf vpi.pred ( -- vps.inf <- vp's infinite main verb + insertInfExtraObj vpi.objs ( -- vps.nn.p5 <- vp's object nps + insertInfExtraInf embeddedInf vps))) ; + +-- {- HL 8/19: this slightly modified SlashV2VNP is expensive even with NP.w:Weight + + -- order of embedded objects wrong: + -- Lang> p "the woman that you beg me to listen to" | l + -- the woman that you beg me to listen to + -- die Frau , der ihr mich zuzuhören bittet + -- better: die Frau , der zuzuhören ihr mich bittet SlashV2VNP v np vp = let vpi = infVP v.isAux vp ; - vps = predVGen v.isAux v ** {c2 = v.c2} ; + vps = predVGen v.isAux v ** {c2 = vp.c2} ; -- objCtrl = ? in vps ** insertExtrapos vpi.p3 ( - insertInf vpi.p2 ( + insertInf {s=vpi.p2;isAux=v.isAux;ctrl=v.ctrl} ( -- insertInf vpi.p2 insertObj vpi.p1 ( insertObj (\\_ => appPrepNP v.c2 np) vps))) ; --- insertObjNP v.c2 np vps))) ; + + -- HL: version with infzuVP in tests/german/TestLangGer.gf, too expensive UseComp comp = insertExtrapos comp.ext (insertObj comp.s (predV sein_V)) ; -- agr not used @@ -76,7 +140,7 @@ concrete VerbGer of Verb = CatGer ** open Prelude, ResGer, Coordination in { UseCopula = predV sein_V ; CompAP ap = {s = \\_ => ap.c.p1 ++ ap.s ! APred ++ ap.c.p2 ; ext = ap.ext} ; - CompNP np = {s = \\_ => np.s ! NPC Nom ++ np.adv ++ np.rc ; ext = np.ext} ; + CompNP np = {s = \\_ => np.s ! NPC Nom ++ np.rc ; ext = np.ext} ; CompAdv a = {s = \\_ => a.s ; ext = []} ; CompCN cn = {s = \\a => case numberAgr a of { @@ -112,14 +176,16 @@ concrete VerbGer of Verb = CatGer ** open Prelude, ResGer, Coordination in { from "we live (in the city : Adv) : Cl" - But in German we cannot move the NP part of an Adv, we only have the + In German we cannot move the NP part of an Adv, we only have the full relative clauses like die Stadt, in der wir leben, die Stadt, worin wir leben, --contracted Prep+Rel - but nothing like "die Stadt wir leben in". + But: VPSlashPrep is used to parse "sie ist mit mir verheiratet", + (ist verheiratet:VP mit:Prep):VPSlash, + ComplA2 is used to parse "sie ist verheiratet mit mir" -} - VPSlashPrep vp prep = vp ** {c2 = prep ; missingAdv = True} ; + VPSlashPrep vp prep = vp ** {c2 = prep ; objCtrl = False} ; } diff --git a/tests/german/TestLang.gf b/tests/german/TestLang.gf index 8780b3967..9991d5da3 100644 --- a/tests/german/TestLang.gf +++ b/tests/german/TestLang.gf @@ -1,10 +1,12 @@ abstract TestLang = Grammar, - Lexicon - , TestLexiconGerAbs - , Construction + TestLexiconGerAbs +-- , Construction ** { flags startcat=Phr ; + + fun + SlashV2Vneg : V2V -> VP -> VPSlash ; -- negative use of VP: promise, not to vp cat VPSlashSlash ; fun @@ -17,4 +19,17 @@ abstract TestLang = Slash4V4 : V4 -> NP -> VPSlashSlash ; ComplSlashSlash: VPSlashSlash -> NP -> VPSlash ; + + -- Passive + PastPartAP : VPSlash -> AP ; -- lost (opportunity) ; (opportunity) lost in space + PassVPSlash : VPSlash -> VP ; -- from ExtraGer, to be corrected + + PassV2S : V2S -> S -> VP ; + PassV2Q : V2Q -> QS -> VP ; + PassV2V : V2V -> VP -> VP ; + + Pass3V3 : V3 -> NP -> VP ; -- den Beweis erklärt bekommen + Pass2V3 : V3 -> NP -> VP ; -- uns erklärt werden ; Eng give_V3[indir,dir]: we are given the book + + Pass2V4 : V4 -> NP -> VPSlash ; -- bei dir (für Gold) gekauft werden } ; diff --git a/tests/german/TestLangEng.gf b/tests/german/TestLangEng.gf index 24ca98315..794c64896 100644 --- a/tests/german/TestLangEng.gf +++ b/tests/german/TestLangEng.gf @@ -2,26 +2,54 @@ -- --# -path=.:../abstract:../common:../api:../prelude concrete TestLangEng of TestLang = - GrammarEng, - LexiconEng + GrammarEng , TestLexiconEng - , ConstructionEng - ** open (R=ResEng),(P=ParadigmsEng),Prelude in { +-- , ConstructionEng + ** open (R=ResEng), (P=ParadigmsEng), Prelude, (E=ExtendEng) + in { flags startcat = Phr ; unlexer = text ; lexer = text ; + lin + SlashV2Vneg v vp = + R.insertObjc (\\a => v.c3 ++ R.infVP v.typ vp False R.Simul (R.CNeg True) a) (R.predVc v) ; + lincat VPSlashSlash = VPSlash ** {c3 : Str} ; lin ReflVPSlash v3 = (R.predVc ((P.reflV (lin V v3)) ** {c2 = v3.c3 ; missingAdv = True})); - ComplSlashSlash vpss np = R.insertObjc (appPrep vpss.c2 (lin NP np)) (vpss ** {c2 = vpss.c3 ; missingAdv = True }) ; + ComplSlashSlash vpss np = R.insertObjc + (appPrep vpss.c2 (lin NP np)) (vpss ** {c2 = vpss.c3 ; missingAdv = True }) ; - Slash2V4 v np = (lin VPSlash (R.insertObjc (appPrep v.c2 (lin NP np)) (R.predVc v) ** {c2 = v.c3 ; missingAdv = True})) ** { c3 = v.c4 } ; - Slash3V4 v np = (lin VPSlash (R.insertObjc (appPrep v.c3 (lin NP np)) (R.predVc v) ** {c2 = v.c2 ; missingAdv = True})) ** { c3 = v.c4 } ; - Slash4V4 v np = (lin VPSlash (R.insertObjc (appPrep v.c4 (lin NP np)) (R.predVc v) ** {c2 = v.c2 ; missingAdv = True})) ** { c3 = v.c3 } ; + Slash2V4 v np = (lin VPSlash (R.insertObjc (appPrep v.c2 (lin NP np)) (R.predVc v) + ** {c2 = v.c3 ; missingAdv = True})) ** { c3 = v.c4 } ; + Slash3V4 v np = (lin VPSlash (R.insertObjc (appPrep v.c3 (lin NP np)) (R.predVc v) + ** {c2 = v.c2 ; missingAdv = True})) ** { c3 = v.c4 } ; + Slash4V4 v np = (lin VPSlash (R.insertObjc (appPrep v.c4 (lin NP np)) (R.predVc v) + ** {c2 = v.c2 ; missingAdv = True})) ** { c3 = v.c3 } ; oper appPrep : Str -> NP -> (R.Agr => Str) = \p,np -> \\_ => p ++ np.s ! R.NPAcc ; + + -- Passive + lin + Pass2V3 v np = + let vps = R.insertObj (\\_ => v.s ! R.VPPart ++ v.p) (R.predAux R.auxBe) ** {c2 = v.c3} + in R.insertObj (\\_ => vps.c2 ++ np.s ! R.NPAcc) vps ; + + Pass3V3 v np = + let vps = R.insertObj (\\_ => v.s ! R.VPPart ++ v.p) (R.predAux R.auxBe) ** {c2 = v.c2} + in R.insertObj (\\_ => vps.c2 ++ np.s ! R.NPAcc) vps ; + + PastPartAP = E.PastPartAP ; + PassVPSlash = E.PassVPSlash ; + + Pass2V4 v np = + let vpss = R.insertObj (\\_ => v.s ! R.VPPart ++ v.p) (R.predAux R.auxBe) ** {c2 = v.c3 ; c3 = v.c4} + in R.insertObj (\\_ => vpss.c3 ++ np.s ! R.NPAcc) vpss ** {c2 = vpss.c2 ; + missingAdv = True ; + gapInMiddle = False } ; + } ; diff --git a/tests/german/TestLangGer.gf b/tests/german/TestLangGer.gf index 4ba97ad8a..fb282e1d7 100644 --- a/tests/german/TestLangGer.gf +++ b/tests/german/TestLangGer.gf @@ -1,28 +1,173 @@ --# -path=.:../../src/abstract:../../src/common:../../src/api:../../src/prelude:../../src/german --- --# -path=.:../abstract:../common:../api:../prelude +-- use the modified files in gf-rgl/src/german concrete TestLangGer of TestLang = - GrammarGer, - LexiconGer - , TestLexiconGer - , ConstructionGer - ** open (R=ResGer),Prelude in { + GrammarGer - [PassV2] -- to improve these ,ComplVV,SlashVV,SlashV2V,SlashV2VNP + , TestLexiconGer - [helfen_V2V, warnen_V2V, versprechen_dat_V2V, lassen_V2V] +-- , ConstructionGer -- needs SlashV2VNP of VerbGer + ** open ResGer,Prelude,(P=ParadigmsGer) in { -flags startcat = Phr ; unlexer = text ; lexer = text ; + flags startcat = Phr ; unlexer = text ; lexer = text ; + optimize=all_subs ; +{- lincat - VPSlashSlash = VPSlash ** {c3 : R.Preposition} ; + VPSlashSlash = CatGer.VPSlash ** {c3 : Preposition} ; lin - ReflVPSlash v3 = (R.insertObjRefl (R.predVc v3) ** {c2 = v3.c3 ; missingAdv = True}); -- reflexive use of v:V3, untested - - -- SlashV3a v = (R.predVc v) ** {c3 = v.c3} ; - - Slash2V4 v np = (lin VPSlash (R.insertObjNP np v.c2 (R.predV v) ** {c2 = v.c3 ; missingAdv = True})) ** { c3 = v.c4 } ; - Slash3V4 v np = (lin VPSlash (R.insertObjNP np v.c3 (R.predV v) ** {c2 = v.c2 ; missingAdv = True})) ** { c3 = v.c4 } ; - Slash4V4 v np = (lin VPSlash (R.insertObjNP np v.c4 (R.predV v) ** {c2 = v.c2 ; missingAdv = True})) ** { c3 = v.c3 } ; - - ComplSlashSlash vpss np = R.insertObjNP np vpss.c2 vpss ** {c2 = vpss.c3 ; missingAdv = True } ; + SlashV3a v = (predVc v) ** {c3 = v.c3} ; + Slash2V4 v np = insertObjNP np v.c2 (predV v) ** {c2 = v.c3 ; c3 = v.c4 } ; + Slash3V4 v np = insertObjNP np v.c3 (predV v) ** {c2 = v.c2 ; c3 = v.c4 } ; + Slash4V4 v np = insertObjNP np v.c4 (predV v) ** {c2 = v.c2 ; c3 = v.c3 } ; + + ComplSlashSlash vpss np = insertObjNP np vpss.c2 vpss ** {c2 = vpss.c3} ; -- linref - -- V4 = \v -> useInfVP False (R.predV v) ++ v.c2.s ++ v.c3.s ++ v.c4.s ; + -- V4 = \v -> useInfVP False (predV v) ++ v.c2.s ++ v.c3.s ++ v.c4.s ; +-} + lin + ReflVPSlash v3 = -- reflexive use of v:V3, untested + (insertObjRefl (predVc v3) ** {c2 = v3.c3}); -} ; + PassV2 v = -- insertObj (\\_ => v.s ! VPastPart APred) (predV werdenPass) ; + let c = case of { + => NPC Nom ; _ => v.c2.c} -- acc object -> nom; all others: same PCase + in insertObjc (\\_ => v.s ! VPastPart APred) (predV werdenPass) ** { subjc = v.c2 ** {c = c} } ; + + PassV2Q v q = + let c = case of { + => NPC Nom ; _ => v.c2.c} ; -- acc;pcase object -> nom;pcase subject + vp = insertObjc (\\_ => v.s ! VPastPart APred) (predV werdenPass) + ** { subjc = v.c2 ** {c = c} } + in insertExtrapos (bindComma ++ q.s ! QIndir) vp ; + + PassV2S v s = + let c = case of { + => NPC Nom ; _ => v.c2.c} ; -- acc;pcase object -> nom;pcase subject + vp = insertObjc (\\_ => v.s ! VPastPart APred) (predV werdenPass) + ** { subjc = v.c2 ** {c = c} } + in insertExtrapos (bindComma ++ conjThat ++ s.s ! Sub) vp ; + + PassV2V v vp = + let c = case of { + => NPC Nom ; _ => v.c2.c} ; -- acc;pcase object -> nom;pcase subject + vp2 = insertObjc (\\_ => v.s ! VPastPart APred) (predV werdenPass) + ** { subjc = v.c2 ** {c = c} } + in insertExtrapos (bindComma ++ (useInfVP False vp)) vp2 ; -- misses subject agr for vp = ReflVP vps +{- + PassVPSlash vp = + let c = case of { + => NPC Nom ; _ => vp.c2.c} + in insertObjc (\\_ => (PastPartAP vp).s ! APred) (predV werdenPass) + ** {ext = vp.ext ; subjc = vp.c2 ** {c = c}} ; + -- regulates passivised object: accusative objects -> nom; all others: same case + -- this also gives "mit dir wird gerechnet" ; + -- the alternative linearisation ("es wird mit dir gerechnet") is not implemented + -- HL: does not work for vp = (Slash2V3 v np): uns wird den Beweis erklärt + -- vp = (SlashV2V v2v reflVP): wir werden gebeten, uns zu fragen , ob S + PastPartAP vp = { + s = \\af => (vp.nn ! agrP3 Sg).p1 ++ (vp.nn ! agrP3 Sg).p2 ++ + (vp.nn ! agrP3 Sg).p3 ++ (vp.nn ! agrP3 Sg).p4 ++ vp.adj ++ vp.a2 + ++ vp.inf.s ++ vp.infExt ++ vp.s.s ! VPastPart af ; + isPre = True ; + c = <[],[]> ; + adj = [] ; + ext = vp.ext + } ; +-} + Pass2V3 v np = -- HL 7/19: making the (active) direct object to the (passive) subject + let vps = insertObjc (\\_ => (v.s ! VPastPart APred)) (predV werdenPass) + ** { subjc = PrepNom ; c2 = v.c3 } + in insertObjNP np vps.c2 vps ; + + Pass3V3 v np = -- HL 7/19: making the (active) indirect object to the (passive) subject + let bekommen : Verb = P.habenV (P.irregV "bekommen" "bekommt" "bekam" "bekäme" "bekommen") ; + vps = insertObjc (\\_ => (v.s ! VPastPart APred)) (predV bekommen) + ** { subjc = PrepNom ; c2 = v.c2 } + in insertObjNP np vps.c2 vps ; +{- + Pass2V4 v np = + let vps = -- : VPSlashSlash = + insertObj (\\_ => (v.s ! VPastPart APred)) (predV werdenPass) + ** { subjc = PrepNom ; c2 = v.c3 ; c3 = v.c4 } + in (insertObjNP np vps.c3 vps) ; + + -- Todo: Pass?V2S, Pass?V2Q, PassVS, PassVQ Pass?V2V +-} + + SlashV2Vneg v vp = -- versprechen, (\agr => sich!agr es nicht zu merken) + let + vps = (predVGen v.isAux v) ** { c2 = v.c2 } ; --; ctrl = v.ctrl } ; + vpi = infzuVP v.isAux v.ctrl Simul Neg vp ; + comma = case orB vp.isAux (case vp.inf.ctrl of { NoC => True ; _ => False }) of {True => [] ; _ => bindComma} ; + embeddedInf : Agr => Str = case vp.inf.isAux of { + True => \\agr => comma ++ (vp.nn!agr).p5 ++ (vp.nn!agr).p6 ++ vpi.inf ; -- ihn es lesen (zu) lassen + False => \\agr => comma ++ (vp.nn!agr).p5 ++ vpi.inf ++ (vp.nn!agr).p6 } -- ihn (zu) bitten , es zu lesen + in + insertExtrapos vpi.ext ( + insertInf vpi.pred ( + insertInfExtraObj vpi.objs ( + insertInfExtraInf embeddedInf vps))) ; + + lin -- with param Control in ../../src/german/ParadigmsGer.gf + helfen_V2V = P.mkV2V (P.irregV "helfen" "hilft" "half" "hälfe" "geholfen") P.datPrep ; + warnen_V2V = P.mkV2V (P.regV "warnen") P.accPrep ; + versprechen_dat_V2V = + P.subjV2V (P.mkV2V (P.irregV "versprechen" "verspricht" "versprach" "verspräche" "versprochen") P.datPrep) ; + lassen_V2V = P.auxV2V (P.irregV "lassen" "lasst" "ließ" "ließe" "gelassen") P.accPrep ; -- lasse dich (*zu) arbeiten + +-- SlashV2VNP : V2V -> NP -> VPSlash -> VPSlash ; -- beg me to buy +-- -- (the book) that (she (begged:V2V me:NP (to buy ()):VPSlash):VPSlash):ClSlash + +-- very expensive: +-- + SlashV2V 2332800 (6480,40) +-- + SlashV2VNP 2267481600 (4320,270) vs. (1080,90) in VerbGer, 305460 msec +-- Languages: TestLangGer +-- 623657 msec +{- + SlashV2VNP v np vp = + let + vps = (predVGen v.isAux v) ** { c2 = vp.c2 } ; -- objCtrl = + vpi = infzuVP v.isAux v.ctrl Simul Pos vp ; + -- comma = case of { => [] ; <_,NoC> => [] ; _ => bindComma} ; + embeddedInf : Agr => Str = + \\agr => "[" ++ (vp.nn!agr).p5 ++ (vp.nn!agr).p6 ++ vpi.inf ++ "]"; + -- embeddedInf : Agr => Str = case vp.inf.isAux of { + -- True => \\agr => comma ++ (vp.nn!agr).p5 ++ (vp.nn!agr).p6 ++ vpi.inf ; -- ihn es lesen (zu) lassen + -- False => \\agr => comma ++ (vp.nn!agr).p5 ++ vpi.inf ++ (vp.nn!agr).p6 } -- ihn (zu) bitten , es zu lesen + in + insertExtrapos vpi.ext ( -- vps.ext <- vp's object-sentence ++ extractedInfzu? + insertInf vpi.pred ( -- vps.inf <- vp's infinite main verb + insertInfExtraObj vpi.objs ( -- vps.nn.p5 <- vp's object nps + insertInfExtraInf embeddedInf ( + insertObjNP np v.c2 vps )))) ; +-} +{- +TestLang> p "the book that we beg her to promise him to read" | l +the book that we beg her to promise him to read +das Buch , das wir sie bitten , ihn zu versprechen [ [ ] zu lesen ] + +TestLang> p "the book that we beg her to beg him to read" | l +the book that we beg her to beg him to read +das Buch , das wir sie bitten , ihn zu bitten [ [ ] zu lesen ] + +TestLang: DetCN (DetQuant DefArt NumSg) (RelCN (UseN book_N) (UseRCl (TTAnt TPres ASimul) PPos (RelSlash IdRP (SlashVP (UsePron we_Pron) (SlashV2VNP versprechen_dat_V2V (UsePron she_Pron) (SlashV2a read_V2)))))) +TestLangEng: the book that we promise her to read +TestLangGer: das Buch , dem wir ihr versprechen , zu lesen Bug: dem => das + +TestLang> p "the book that we beg her to sell to him" | l +the book that we beg her to sell to him +das Buch , das wir ihm sie bitten , zu verkaufen +=> das Buch , das wir sie bitten , ihm zu verkaufen +~~> das Buch , das ihm zu verkaufen wir sie bitten + ~~ das Buch , an das zu glauben wir sie bitten + +Wrong in gf-3.9 as well: +Lang> p "the woman that we beg him to listen to" | l +the woman that we beg him to listen to +die Frau , die wir ihn zuzuhören bitten (Bug: die => der) + +Lang> p "the book that we beg her to sell to him" | l +the book that we beg her to sell to him +das Buch , das wir ihn sie zu verkaufen bitten (Bug: ihn sie => sie ihm) +=> das Buch, das wir sie bitten, ihm zu verkaufen +-} +} diff --git a/tests/german/TestLexiconEng.gf b/tests/german/TestLexiconEng.gf index c60126efc..7a4477ef0 100644 --- a/tests/german/TestLexiconEng.gf +++ b/tests/german/TestLexiconEng.gf @@ -3,7 +3,7 @@ -- translations and corresponding c2,c3,c4-objects under Slash?V3, Slash?V4. concrete TestLexiconEng of TestLexiconGerAbs = - CatEng ** open (R=ResEng), (P=Prelude), ParadigmsEng + LexiconEng ** open (R=ResEng), (P=Prelude), ParadigmsEng, (I=IrregEng) in { lincat @@ -20,6 +20,8 @@ oper mkV4 : V -> Prep -> Prep -> Prep -> V4 = \v,p2,p3,p4 -> lin V4 (v ** { c2=p2.s ; c3=p3.s ; c4=p4.s }) ; dirV4 : V -> Prep -> Prep -> V4 = \v,c,d -> mkV4 v noPrep c d ; + -- control verbs: + defaultV2V : V -> V2V = \v -> lin V2V (dirV2 v ** {c3=[] ; typ = R.VVInf}) ; lin aendern_rV = (regV "change") ; @@ -27,6 +29,7 @@ lin compl : Str = "an effort" in {s = \\vf => v.s!vf ++ compl ; isRefl = P.False ; p = []} ; + gedenken_gen_V2 = dirV2 (regV "remember") ; bedienen_gen_rV2 = dirV2 (regV "use") ; stuetzen_auf_rV2 = mkV2 (irregV "rely" "relied" "relied") (mkPrep "on") ; ergeben_dat_rV2 = mkV2 (regV "surrender") (mkPrep "to") ; @@ -36,6 +39,7 @@ lin erklaeren_dat_V3 = dirV3 (regV "explain") (mkPrep "to") ; erinnern_an_V3 = dirV3 (regV "remind") (mkPrep "of") ; danken_dat_fuer_V3 = dirV3 (regV "thank") (mkPrep "for") ; + debattieren_mit_ueber_V3 = mkV3 (regV "debate") (mkPrep "with") (mkPrep "about") ; lehren_V3 = mkV3 (irregV "teach" "taught" "taught") noPrep noPrep ; abschauen_bei_rV3 = dirV3 (regV "copy") (mkPrep "from") ; @@ -48,4 +52,12 @@ lin mieten_von_fuer_V4 = dirV4 (regV "rent") (mkPrep "from") (mkPrep "for") ; neugierig_auf_A2 = mkA2 (regA "curious") (mkPrep "about") ; + + wagen_VV = mkVV (regV "dare") ; -- typ=VVInf + versuchen_VV = mkVV (irregV "try" "tried" "tried") ; -- typ=VVInf + helfen_V2V = defaultV2V (regV "help") ; + warnen_V2V = defaultV2V (regV "warn") ; -- typ=VVInf + versprechen_dat_V2V = defaultV2V (regV "promise") ; -- typ=VVInf + lassen_V2V = ParadigmsEng.mkV2V (I.let_V) ; -- typ=VVAux + } diff --git a/tests/german/TestLexiconGer.gf b/tests/german/TestLexiconGer.gf index ce37b68a9..abcdc03da 100644 --- a/tests/german/TestLexiconGer.gf +++ b/tests/german/TestLexiconGer.gf @@ -1,7 +1,7 @@ --# -path=.:../abstract:../common:../prelude: concrete TestLexiconGer of TestLexiconGerAbs = - CatGer ** open (R=ResGer), (P=Prelude), ParadigmsGer + LexiconGer ** open (R=ResGer), (P=Prelude), ParadigmsGer in { lincat @@ -16,25 +16,30 @@ oper bei_Prep = mkPrep "bei" dative ; fuer_Prep = mkPrep "für" accusative ; + mit_Prep = mkPrep "mit" dative ; -- quaternary verbs: mkV4 : V -> Prep -> Prep -> Prep -> V4 = \v,p2,p3,p4 -> lin V4 (v ** { c2=p2 ; c3=p3 ; c4=p4 }) ; dirV4 : V -> Prep -> Prep -> V4 = \v,c,d -> mkV4 v accPrep c d ; + -- control verbs + dirV2V : V -> V2V = \v -> mkV2V v ; lin aendern_rV = reflV (regV "ändern") accusative ; anstrengen_rV = reflV (prefixV "an" (regV "strengen")) accusative ; + gedenken_gen_V2 = mkV2 (irregV "gedenken" "gedenkt" "gedachte" "gedächte" "gedacht") genPrep ; bedienen_gen_rV2 = reflV2 (regV "bedienen") accusative genPrep ; stuetzen_auf_rV2 = reflV2 (regV "stützen") accusative (mkPrep "auf" accusative) ; ergeben_dat_rV2 = reflV2 (irregV "ergeben" "ergibt" "ergab" "ergäbe" "ergeben") accusative datPrep ; merken_rV2 = reflV2 (regV "merken") dative accPrep ; - erklaeren_dat_V3 = accdatV3 (irregV "erklären" "erklärt" "erklärte" "erklärte" "erklärt") ; + erklaeren_dat_V3 = mkV3 (irregV "erklären" "erklärt" "erklärte" "erklärte" "erklärt") ; anklagen_gen_V3 = dirV3 (prefixV "an" (regV "klagen")) genPrep ; erinnern_an_V3 = dirV3 (irregV "erinnern" "erinnert" "erinnerte" "erinnerte" "erinnert") (mkPrep "an" accusative) ; danken_dat_fuer_V3 = mkV3 (regV "danken") datPrep (mkPrep "für" accusative) ; + debattieren_mit_ueber_V3 = mkV3 (irregV "debattieren" "debattiert" "debattierte" "debattierte" "debattiert") mit_Prep (mkPrep "über" accusative) ; lehren_V3 = dirV3 (regV "lehren") accPrep ; abschauen_bei_rV3 = reflV3 (prefixV "ab" (irregV "schauen" "schaut" "schaute" "schaute" "geschaut")) dative accPrep bei_Prep ; @@ -49,4 +54,12 @@ lin neugierig_auf_A2 = mkA2 (mk3A "neugierig" "neugieriger" "neugierigste") (mkPrep "auf" accusative) ; + wagen_VV = mkVV (regV "wagen") ; + versuchen_VV = mkVV (irregV "versuchen" "versucht" "versuchte" "versuchte" "versucht") ; + + helfen_V2V = mkV2V (irregV "helfen" "hilft" "half" "hälfe" "geholfen") datPrep ; + warnen_V2V = dirV2V (regV "warnen") ; +-- versprechen_dat_V2V = subjV2V (mkV2V (irregV "versprechen" "verspricht" "versprach" "verspräche" "versprochen") datPrep) ; + lassen_V2V = auxV2V (irregV "lassen" "lasst" "ließ" "ließe" "gelassen") accPrep ; -- lasse dich (*zu) arbeiten + } diff --git a/tests/german/TestLexiconGerAbs.gf b/tests/german/TestLexiconGerAbs.gf index 886fbc065..0e5d0879e 100644 --- a/tests/german/TestLexiconGerAbs.gf +++ b/tests/german/TestLexiconGerAbs.gf @@ -1,12 +1,11 @@ --# -path=.:../abstract:../common:../prelude: -- partially extracted from DictVerbsGerAbs -abstract TestLexiconGerAbs = Cat ** { -cat - V4 ; +abstract TestLexiconGerAbs = Lexicon ** { fun aendern_rV : V ; anstrengen_rV : V ; + gedenken_gen_V2 : V2 ; bedienen_gen_rV2 : V2 ; stuetzen_auf_rV2 : V2 ; ergeben_dat_rV2 : V2 ; @@ -17,6 +16,7 @@ fun lehren_V3 : V3 ; erinnern_an_V3 : V3 ; danken_dat_fuer_V3 : V3 ; + debattieren_mit_ueber_V3 : V3 ; abschauen_bei_rV3 : V3 ; leihen_von_rV3 : V3 ; @@ -24,9 +24,20 @@ fun entschuldigen_bei_fuer_rV3 : V3 ; raechen_am_fuer_rV3 : V3 ; + neugierig_auf_A2 : A2 ; + + wagen_VV : VV ; + versuchen_VV : VV ; + + helfen_V2V : V2V ; -- -aux(zu-inf), object control + warnen_V2V : V2V ; -- -aux, object control + versprechen_dat_V2V : V2V ; -- -aux, subject control + lassen_V2V : V2V ; -- +aux(inf), object control + +cat + V4 ; +fun kaufen_bei_fuer_V4 : V4 ; mieten_von_fuer_V4 : V4 ; - neugierig_auf_A2 : A2 ; - } diff --git a/tests/german/examples.txt b/tests/german/examples.txt index 99694dd96..6db163d76 100644 --- a/tests/german/examples.txt +++ b/tests/german/examples.txt @@ -331,3 +331,29 @@ ich bin nicht auf ihn neugierig -- reject -- done +-- Passive of VPSlash and V3 + +sie gibt uns den Wagen -- accept + +der Wagen wird uns gegeben -- accept, via PassVPSlash or Pass2V3 +uns wird der Wagen gegeben -- accept, word order variant (not recognized) +wir bekommen den Wagen gegeben -- accept, via Pass3V3 + +sie schickte uns den Wagen -- accept (Eng with prep) + +der Wagen wurde uns geschickt -- accept, via PassVPSlash +uns wurde der Wagen geschickt -- accept, word order variant (not recognized) +wir bekamen den Wagen geschickt -- accept, via Pass3V3 + +der Wagen würde uns geschickt werden -- accept +der Wagen würde uns nicht geschickt werden -- accept +wir würden den Wagen geschickt bekommen -- accept +wir würden den Wagen nicht geschickt bekommen -- accept +wir würden nicht den Wagen geschickt bekommen -- accept ? + +der Wagen sei uns geschickt worden -- accept +wir hätten den Wagen geschickt bekommen -- accept + +wir wollen den Wagen geschickt bekommen -- accept +wir würden den Wagen geschickt bekommen wollen haben -- accept + diff --git a/tests/german/infinitives.gfs b/tests/german/infinitives.gfs new file mode 100644 index 000000000..79728bd3d --- /dev/null +++ b/tests/german/infinitives.gfs @@ -0,0 +1,15 @@ +-- usage: gf --run < infinitives.gfs or gf> eh infinitives.gfs +--? echo "loading TestLangGer.gf and TestLangEng.gf ..." +--i TestLangGer.gf TestLangEng.gf +? ls -l infinitives.lin.out infinitives.lin.tmp +? echo "remove infinitives.lin.tmp" +? rm infinitives.lin.tmp +? echo "linearizing infinitives.trees to infinitives.lin.tmp ... " +rf -file="infinitives.trees" -lines -tree | l -lang="Ger,Eng" -treebank | wf -file="infinitives.lin.tmp" +rf -file="infinitives.trees" -lines -tree | l -lang=Ger -table | wf -file="infinitives.lin.tmp.txt" +? ls -l infinitives.lin.out infinitives.lin.tmp +? echo "diff infinitives.lin.out infinitives.lin.tmp" +? diff infinitives.lin.out infinitives.lin.tmp +? ls -l infinitives.lin.out.txt infinitives.lin.tmp.txt +--? echo "diff infinitives.lin.out.txt infinitives.lin.tmp.txt" +--? diff infinitives.lin.out.txt infinitives.lin.tmp.txt diff --git a/tests/german/infinitives.lin.out b/tests/german/infinitives.lin.out new file mode 100644 index 000000000..a96c65008 --- /dev/null +++ b/tests/german/infinitives.lin.out @@ -0,0 +1,258 @@ +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2V versprechen_dat_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron youPl_Pron)) +TestLangGer: ich verspreche euch , das Buch zu lesen +TestLangEng: I promise you to read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2V lassen_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron youPl_Pron)) +TestLangGer: ich lasse euch das Buch lesen +TestLangEng: I let you read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2V beg_V2V (ComplSlash (SlashV2V versprechen_dat_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron we_Pron))) (UsePron youSg_Pron)) +TestLangGer: ich bitte dich , uns zu versprechen , das Buch zu lesen +TestLangEng: I beg you to promise us to read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2V lassen_V2V (ComplSlash (SlashV2V versprechen_dat_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron we_Pron))) (UsePron youSg_Pron)) +TestLangGer: ich lasse dich uns versprechen , das Buch zu lesen +TestLangEng: I let you promise us to read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2V beg_V2V (ComplSlash (SlashV2V lassen_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron we_Pron))) (UsePron youSg_Pron)) +TestLangGer: ich bitte dich , uns das Buch lesen zu lassen +TestLangEng: I beg you to let us read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2V lassen_V2V (ComplSlash (SlashV2V lassen_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron we_Pron))) (UsePron youSg_Pron)) +TestLangGer: ich lasse dich uns das Buch lesen lassen +TestLangEng: I let you let us read the book +TestLang: PredVP (UsePron i_Pron) (ComplVV want_VV (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) +TestLangGer: ich will das Buch lesen +TestLangEng: I want to read the book +TestLang: PredVP (UsePron i_Pron) (ComplVV wagen_VV (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) +TestLangGer: ich wage , das Buch zu lesen +TestLangEng: I dare to read the book +TestLang: PredVP (UsePron i_Pron) (ComplVV must_VV (ComplSlash (SlashV2V versprechen_dat_V2V (UseV sleep_V)) (UsePron she_Pron))) +TestLangGer: ich muss ihr versprechen , zu schlafen +TestLangEng: I must promise her to sleep +TestLang: PredVP (UsePron i_Pron) (ComplVV wagen_VV (ComplSlash (SlashV2V versprechen_dat_V2V (UseV sleep_V)) (UsePron she_Pron))) +TestLangGer: ich wage , ihr zu versprechen , zu schlafen +TestLangEng: I dare to promise her to sleep +TestLang: PredVP (UsePron i_Pron) (ComplVV must_VV (ComplSlash (SlashV2V lassen_V2V (UseV sleep_V)) (UsePron she_Pron))) +TestLangGer: ich muss sie schlafen lassen +TestLangEng: I must let her sleep +TestLang: PredVP (UsePron i_Pron) (ComplVV wagen_VV (ComplSlash (SlashV2V lassen_V2V (UseV sleep_V)) (UsePron she_Pron))) +TestLangGer: ich wage , sie schlafen zu lassen +TestLangEng: I dare to let her sleep +TestLang: PredVP (UsePron i_Pron) (ComplVV must_VV (ComplSlash (SlashV2V versprechen_dat_V2V (ComplSlash (SlashV2V lassen_V2V (UseV sleep_V)) (UsePron she_Pron))) (UsePron she_Pron))) +TestLangGer: ich muss ihr versprechen , sie schlafen zu lassen +TestLangEng: I must promise her to let her sleep +TestLang: PredVP (UsePron i_Pron) (ComplVV must_VV (ComplSlash (SlashV2V lassen_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron she_Pron))) +TestLangGer: ich muss sie das Buch lesen lassen +TestLangEng: I must let her read the book +TestLang: PredVP (UsePron i_Pron) (ComplVV want_VV (ComplSlash (SlashV2V versprechen_dat_V2V (ComplSlash (SlashV2V lassen_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron she_Pron))) (UsePron he_Pron))) +TestLangGer: ich will ihm versprechen , sie das Buch lesen zu lassen +TestLangEng: I want to promise him to let her read the book +TestLang: PredVP (UsePron i_Pron) (ComplVV must_VV (ComplVV want_VV (ComplSlash (SlashV2V versprechen_dat_V2V (ComplSlash (SlashV2V lassen_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron she_Pron))) (UsePron he_Pron)))) +TestLangGer: ich muss ihm versprechen wollen , sie das Buch lesen zu lassen +TestLangEng: I must want to promise him to let her read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashVV must_VV (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N))) +TestLangGer: ich muss das Buch lesen +TestLangEng: I must read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashVV want_VV (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N))) +TestLangGer: ich will das Buch lesen +TestLangEng: I want to read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashVV wagen_VV (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N))) +TestLangGer: ich wage das Buch , zu lesen -- wrong +TestLangEng: I dare to read the book +TestLang: PredVP (UsePron i_Pron) (ComplVV must_VV (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) +TestLangGer: ich muss das Buch lesen +TestLangEng: I must read the book +TestLang: PredVP (UsePron i_Pron) (ComplVV want_VV (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) +TestLangGer: ich will das Buch lesen +TestLangEng: I want to read the book +TestLang: PredVP (UsePron i_Pron) (ComplVV wagen_VV (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) +TestLangGer: ich wage , das Buch zu lesen +TestLangEng: I dare to read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashVV must_VV (SlashVV want_VV (SlashV2a read_V2))) (DetCN (DetQuant DefArt NumSg) (UseN book_N))) +TestLangGer: ich muss das Buch lesen wollen +TestLangEng: I must want to read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashVV must_VV (SlashVV wagen_VV (SlashV2a read_V2))) (DetCN (DetQuant DefArt NumSg) (UseN book_N))) +TestLangGer: ich muss das Buch wagen , zu lesen -- wrong +TestLangEng: I must dare to read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashVV want_VV (SlashVV wagen_VV (SlashV2a read_V2))) (DetCN (DetQuant DefArt NumSg) (UseN book_N))) +TestLangGer: ich will das Buch wagen , zu lesen -- wrong +TestLangEng: I want to dare to read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashVV wagen_VV (SlashVV want_VV (SlashV2a read_V2))) (DetCN (DetQuant DefArt NumSg) (UseN book_N))) +TestLangGer: ich wage das Buch , lesen zu wollen -- wrong +TestLangEng: I dare to want to read the book +TestLang: PredVP (UsePron i_Pron) (ComplVV must_VV (ComplSlash (SlashVV want_VV (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) +TestLangGer: ich muss das Buch lesen wollen +TestLangEng: I must want to read the book +TestLang: PredVP (UsePron i_Pron) (ComplVV must_VV (ComplSlash (SlashVV wagen_VV (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) +TestLangGer: ich muss das Buch wagen , zu lesen -- wrong +TestLangEng: I must dare to read the book +TestLang: PredVP (UsePron i_Pron) (ComplVV want_VV (ComplSlash (SlashVV wagen_VV (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) +TestLangGer: ich will das Buch wagen , zu lesen -- wrong +TestLangEng: I want to dare to read the book +TestLang: PredVP (UsePron i_Pron) (ComplVV wagen_VV (ComplSlash (SlashVV want_VV (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) +TestLangGer: ich wage , das Buch lesen zu wollen +TestLangEng: I dare to want to read the book +TestLang: PredVP (UsePron i_Pron) (ComplVV must_VV (ComplVV want_VV (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N))))) +TestLangGer: ich muss das Buch lesen wollen +TestLangEng: I must want to read the book +TestLang: PredVP (UsePron i_Pron) (ComplVV must_VV (ComplVV wagen_VV (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N))))) +TestLangGer: ich muss wagen , das Buch zu lesen +TestLangEng: I must dare to read the book +TestLang: PredVP (UsePron i_Pron) (ComplVV want_VV (ComplVV wagen_VV (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N))))) +TestLangGer: ich will wagen , das Buch zu lesen +TestLangEng: I want to dare to read the book +TestLang: PredVP (UsePron i_Pron) (ComplVV wagen_VV (ComplVV want_VV (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N))))) +TestLangGer: ich wage , das Buch lesen zu wollen +TestLangEng: I dare to want to read the book +TestLang: PredVP (UsePron i_Pron) (ComplVV must_VV (ComplSlash (SlashVV want_VV (SlashVV wagen_VV (SlashV2a read_V2))) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) +TestLangGer: ich muss das Buch wagen wollen , zu lesen -- wrong +TestLangEng: I must want to dare to read the book +TestLang: PredVP (UsePron i_Pron) (ComplVV must_VV (ComplVV want_VV (ComplSlash (SlashVV wagen_VV (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N))))) +TestLangGer: ich muss das Buch wagen wollen , zu lesen -- wrong +TestLangEng: I must want to dare to read the book +TestLang: PredVP (UsePron i_Pron) (ComplVV must_VV (ComplVV want_VV (ComplVV wagen_VV (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))))) +TestLangGer: ich muss wagen wollen , das Buch zu lesen +TestLangEng: I must want to dare to read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashVV must_VV (SlashVV wagen_VV (SlashVV want_VV (SlashV2a read_V2)))) (DetCN (DetQuant DefArt NumSg) (UseN book_N))) +TestLangGer: ich muss das Buch wagen , lesen zu wollen -- wrong +TestLangEng: I must dare to want to read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashVV must_VV (SlashVV want_VV (SlashVV wagen_VV (SlashV2a read_V2)))) (DetCN (DetQuant DefArt NumSg) (UseN book_N))) +TestLangGer: ich muss das Buch wagen , zu lesen wollen -- wrong +TestLangEng: I must want to dare to read the book +TestLang: PredVP (UsePron i_Pron) (ComplVV must_VV (ComplSlash (SlashVV wagen_VV (SlashVV want_VV (SlashV2a read_V2))) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) +TestLangGer: ich muss das Buch wagen , lesen zu wollen -- wrong +TestLangEng: I must dare to want to read the book +TestLang: PredVP (UsePron i_Pron) (ComplVV must_VV (ComplVV wagen_VV (ComplSlash (SlashVV want_VV (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N))))) +TestLangGer: ich muss wagen , das Buch lesen zu wollen +TestLangEng: I must dare to want to read the book +TestLang: PredVP (UsePron i_Pron) (ComplVV must_VV (ComplVV wagen_VV (ComplVV want_VV (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))))) +TestLangGer: ich muss wagen , das Buch lesen zu wollen +TestLangEng: I must dare to want to read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2V lassen_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron he_Pron)) +TestLangGer: ich lasse ihn das Buch lesen +TestLangEng: I let him read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2V beg_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron he_Pron)) +TestLangGer: ich bitte ihn , das Buch zu lesen +TestLangEng: I beg him to read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2V versprechen_dat_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron he_Pron)) +TestLangGer: ich verspreche ihm , das Buch zu lesen +TestLangEng: I promise him to read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2V beg_V2V (ComplSlash (SlashV2V lassen_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron he_Pron))) (DetNP (DetQuant DefArt NumPl))) +TestLangGer: ich bitte die , ihn das Buch lesen zu lassen +TestLangEng: I beg them to let him read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2V beg_V2V (ComplSlash (SlashV2V lassen_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron he_Pron))) (UsePron they_Pron)) +TestLangGer: ich bitte sie , ihn das Buch lesen zu lassen +TestLangEng: I beg them to let him read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2V versprechen_dat_V2V (ComplSlash (SlashV2V beg_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron he_Pron))) (DetNP (DetQuant DefArt NumPl))) +TestLangGer: ich verspreche denen , ihn zu bitten , das Buch zu lesen +TestLangEng: I promise them to beg him to read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2V versprechen_dat_V2V (ComplSlash (SlashV2V beg_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron he_Pron))) (UsePron they_Pron)) +TestLangGer: ich verspreche ihnen , ihn zu bitten , das Buch zu lesen +TestLangEng: I promise them to beg him to read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2V beg_V2V (ComplSlash (SlashV2V versprechen_dat_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron he_Pron))) (UsePron he_Pron)) +TestLangGer: ich bitte ihn , ihm zu versprechen , das Buch zu lesen +TestLangEng: I beg him to promise him to read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2VNP lassen_V2V (UsePron he_Pron) (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N))) +TestLangGer: ich lasse das Buch ihn lesen -- wrong object order (3.9 SlashV2VNP) +TestLangEng: I let him read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2VNP beg_V2V (UsePron he_Pron) (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N))) +TestLangGer: ich bitte das Buch ihn , zu lesen -- wrong (SlashV2VNP) +TestLangEng: I beg him to read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2VNP versprechen_dat_V2V (UsePron he_Pron) (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N))) +TestLangGer: ich verspreche das Buch ihm , zu lesen -- wrong (SlashV2VNP) +TestLangEng: I promise him to read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2VNP beg_V2V (DetNP (DetQuant DefArt NumPl)) (SlashV2VNP lassen_V2V (UsePron he_Pron) (SlashV2a read_V2))) (DetCN (DetQuant DefArt NumSg) (UseN book_N))) +TestLangGer: ich bitte das Buch ihn die , zu lassen lesen -- wrong (SlahV2VNP) bitte die, ihn es lesen zu lassen +TestLangEng: I beg them to let him read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2VNP beg_V2V (UsePron they_Pron) (SlashV2VNP lassen_V2V (UsePron he_Pron) (SlashV2a read_V2))) (DetCN (DetQuant DefArt NumSg) (UseN book_N))) +TestLangGer: ich bitte das Buch ihn sie , zu lassen lesen -- wrong (SlashV2VNP) +TestLangEng: I beg them to let him read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2V beg_V2V (ComplSlash (SlashV2VNP lassen_V2V (UsePron he_Pron) (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (DetNP (DetQuant DefArt NumPl))) +TestLangGer: ich bitte die , das Buch ihn lesen zu lassen -- wrong obj order +TestLangEng: I beg them to let him read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2V beg_V2V (ComplSlash (SlashV2VNP lassen_V2V (UsePron he_Pron) (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron they_Pron)) +TestLangGer: ich bitte sie , das Buch ihn lesen zu lassen -- wrong obj order +TestLangEng: I beg them to let him read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2VNP versprechen_dat_V2V (DetNP (DetQuant DefArt NumPl)) (SlashV2VNP beg_V2V (UsePron he_Pron) (SlashV2a read_V2))) (DetCN (DetQuant DefArt NumSg) (UseN book_N))) +TestLangGer: ich verspreche das Buch ihn denen , zu bitten zu lesen -- wrong (SlashV2VNP gf-3.9)) +TestLangEng: I promise them to beg him to read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2VNP versprechen_dat_V2V (UsePron they_Pron) (SlashV2VNP beg_V2V (UsePron he_Pron) (SlashV2a read_V2))) (DetCN (DetQuant DefArt NumSg) (UseN book_N))) +TestLangGer: ich verspreche das Buch ihn ihnen , zu bitten zu lesen -- wrong (SlashV2VNP) +TestLangEng: I promise them to beg him to read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2V versprechen_dat_V2V (ComplSlash (SlashV2VNP beg_V2V (UsePron he_Pron) (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (DetNP (DetQuant DefArt NumPl))) +TestLangGer: ich verspreche denen , das Buch ihn zu bitten , zu lesen -- wrong obj order +TestLangEng: I promise them to beg him to read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2V versprechen_dat_V2V (ComplSlash (SlashV2VNP beg_V2V (UsePron he_Pron) (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron they_Pron)) +TestLangGer: ich verspreche ihnen , das Buch ihn zu bitten , zu lesen -- wrong obj order +TestLangEng: I promise them to beg him to read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2VNP beg_V2V (UsePron he_Pron) (SlashV2VNP versprechen_dat_V2V (UsePron he_Pron) (SlashV2a read_V2))) (DetCN (DetQuant DefArt NumSg) (UseN book_N))) +TestLangGer: ich bitte das Buch ihm ihn , zu versprechen zu lesen -- wrong (SlashV2VNP) +TestLangEng: I beg him to promise him to read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2V beg_V2V (ComplSlash (SlashV2VNP versprechen_dat_V2V (UsePron he_Pron) (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron he_Pron)) +TestLangGer: ich bitte ihn , das Buch ihm zu versprechen , zu lesen -- wrong (SlashV2VNP) +TestLangEng: I beg him to promise him to read the book +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2V beg_V2V (ReflVP (SlashV2a love_V2))) (UsePron youSg_Pron)) +TestLangGer: ich bitte dich , dich zu lieben +TestLangEng: I beg you to love yourself +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2V warnen_V2V (ReflVP (SlashV2a hate_V2))) (UsePron youPl_Pron)) +TestLangGer: ich warne euch , euch zu hassen +TestLangEng: I warn you to hate yourselves +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2V versprechen_dat_V2V (ReflVP (SlashV2a love_V2))) (UsePron she_Pron)) +TestLangGer: ich verspreche ihr , mich zu lieben +TestLangEng: I promise her to love herself -- wrong: myself +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2V versprechen_dat_V2V (ComplVV want_VV (ReflVP (SlashV2a love_V2)))) (UsePron she_Pron)) +TestLangGer: ich verspreche ihr , mich lieben zu wollen +TestLangEng: I promise her to want to love herself -- wrong: myself +TestLang: PredVP (UsePron i_Pron) (ComplVV want_VV (ComplSlash (SlashV2V beg_V2V (ComplSlash (SlashV2Vneg versprechen_dat_V2V (ReflVP (SlashV2a hate_V2))) (UsePron youSg_Pron))) (UsePron she_Pron))) +TestLangGer: ich will sie bitten , dir zu versprechen , sich nicht zu hassen +TestLangEng: I want to beg her to promise you not to hate yourself -- wrong: herself +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2V versprechen_dat_V2V (ComplSlash (ReflVPSlash entschuldigen_bei_fuer_rV3) (UsePron it_Pron))) (UsePron she_Pron)) +TestLangGer: ich verspreche ihr , mich bei mir für es zu entschuldigen +TestLangEng: I promise her to apologize for it itself -- wrong: myself +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2V versprechen_dat_V2V (ComplSlash (ReflVPSlash give_V3) (UsePron it_Pron))) (UsePron we_Pron)) +TestLangGer: ich verspreche uns , es mir zu geben +TestLangEng: I promise us to give it itself -- wrong: myself +TestLang: PredVP (UsePron i_Pron) (ComplVV want_VV (ComplSlash (SlashV2V versprechen_dat_V2V (ComplSlash (SlashV2Vneg beg_V2V (ReflVP (SlashV2a hate_V2))) (UsePron youSg_Pron))) (UsePron she_Pron))) +TestLangGer: ich will ihr versprechen , dich zu bitten , dich nicht zu hassen +TestLangEng: I want to promise her to beg you to not hate yourself +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2V beg_V2V (ComplSlash (ReflVPSlash entschuldigen_bei_fuer_rV3) (UsePron it_Pron))) (UsePron youSg_Pron)) +TestLangGer: ich bitte dich , dich bei dir für es zu entschuldigen +TestLangEng: I beg you to apologize for it itself -- wrong: yourself +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2V beg_V2V (ComplSlash (SlashV2V versprechen_dat_V2V (ReflVP (SlashV2a love_V2))) (UsePron i_Pron))) (UsePron youSg_Pron)) +TestLangGer: ich bitte dich , mir zu versprechen , dich zu lieben +TestLangEng: I beg you to promise me to love myself +TestLang: PredVP (UsePron i_Pron) (ComplSlash (SlashV2V helfen_V2V (ComplSlash (SlashV2V versprechen_dat_V2V (ReflVP (SlashV2a love_V2))) (UsePron i_Pron))) (UsePron youSg_Pron)) +TestLangGer: ich helfe dir , mir zu versprechen , dich zu lieben +TestLangEng: I help you to promise me to love myself +TestLang: DetCN (DetQuant DefArt NumSg) (RelCN (UseN book_N) (UseRCl (TTAnt TPast ASimul) PNeg (RelSlash IdRP (SlashVP (UsePron we_Pron) (SlashVV want_VV (SlashV2a read_V2)))))) +TestLangGer: das Buch , das wir nicht lesen wollten +TestLangEng: the book that we didn't want to read +TestLang: DetCN (DetQuant DefArt NumSg) (RelCN (UseN book_N) (UseRCl (TTAnt TPast ASimul) PNeg (RelSlash IdRP (SlashVP (UsePron we_Pron) (SlashVV must_VV (SlashV2a read_V2)))))) +TestLangGer: das Buch , das wir nicht lesen mussten +TestLangEng: the book that we hadn't to read +TestLang: DetCN (DetQuant DefArt NumSg) (RelCN (UseN book_N) (UseRCl (TTAnt TPast ASimul) PNeg (RelSlash IdRP (SlashVP (UsePron we_Pron) (SlashVV wagen_VV (SlashV2a read_V2)))))) +TestLangGer: das Buch , das wir nicht wagten , zu lesen +TestLangEng: the book that we didn't dare to read +TestLang: DetCN (DetQuant DefArt NumSg) (RelCN (UseN book_N) (UseRCl (TTAnt TPast ASimul) PNeg (RelSlash IdRP (SlashVP (UsePron we_Pron) (SlashVV wagen_VV (Slash3V3 erklaeren_dat_V3 (UsePron she_Pron))))))) +TestLangGer: das Buch , das wir nicht wagten , ihr zu erklären +TestLangEng: the book that we didn't dare to explain to her +TestLang: DetCN (DetQuant DefArt NumSg) (RelCN (UseN book_N) (UseRCl (TTAnt TPres ASimul) PPos (RelSlash IdRP (SlashVP (UsePron we_Pron) (SlashV2VNP versprechen_dat_V2V (UsePron she_Pron) (SlashV2a read_V2)))))) +TestLangGer: das Buch , das wir ihr versprechen , zu lesen -- wrong: das zu lesen wir ihr versprechen +TestLangEng: the book that we promise her to read +TestLang: DetCN (DetQuant DefArt NumSg) (RelCN (UseN book_N) (UseRCl (TTAnt TPres ASimul) PPos (RelSlash IdRP (SlashVP (UsePron we_Pron) (SlashV2VNP lassen_V2V (UsePron she_Pron) (SlashV2a read_V2)))))) +TestLangGer: das Buch , das wir sie lesen lassen +TestLangEng: the book that we let her read +TestLang: DetCN (DetQuant DefArt NumSg) (RelCN (UseN boy_N) (UseRCl (TTAnt TPres ASimul) PPos (RelSlash IdRP (SlashVP (UsePron i_Pron) (SlashV2V lassen_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))))))) +TestLangGer: der Junge , den ich das Buch lesen lasse +TestLangEng: the boy that I let read the book +TestLang: DetCN (DetQuant DefArt NumSg) (RelCN (UseN boy_N) (UseRCl (TTAnt TPres ASimul) PPos (RelSlash IdRP (SlashVP (UsePron i_Pron) (SlashV2V versprechen_dat_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))))))) +TestLangGer: der Junge , dem ich verspreche , das Buch zu lesen +TestLangEng: the boy that I promise to read the book +TestLang: DetCN (DetQuant DefArt NumSg) (RelCN (UseN boy_N) (UseRCl (TTAnt TPres ASimul) PPos (RelSlash IdRP (SlashVP (UsePron i_Pron) (SlashV2V versprechen_dat_V2V (ComplSlash (SlashVV want_VV (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))))))) +TestLangGer: der Junge , dem ich verspreche , das Buch lesen zu wollen +TestLangEng: the boy that I promise to want to read the book +TestLang: DetCN (DetQuant DefArt NumSg) (RelCN (UseN boy_N) (UseRCl (TTAnt TPres ASimul) PPos (RelSlash IdRP (SlashVP (UsePron i_Pron) (SlashV2V versprechen_dat_V2V (ComplVV want_VV (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N))))))))) +TestLangGer: der Junge , dem ich verspreche , das Buch lesen zu wollen +TestLangEng: the boy that I promise to want to read the book +TestLang: DetCN (DetQuant DefArt NumSg) (RelCN (UseN boy_N) (UseRCl (TTAnt TPres ASimul) PPos (RelSlash IdRP (SlashVP (UsePron i_Pron) (SlashV2V helfen_V2V (ReflVP (SlashV2a wash_V2))))))) +TestLangGer: der Junge , dem ich helfe , mich zu waschen -- wrong: sich zu waschen +TestLangEng: the boy that I help to wash myself -- wrong: wash himself +TestLang: PredVP (UsePN john_PN) (ComplVS say_VS (UseCl (TTAnt TPast ASimul) PPos (PredVP (UsePron we_Pron) (ComplVV want_VV (ComplSlash (SlashV2V lassen_V2V (ComplSlash (SlashV2V helfen_V2V (ComplSlash (SlashV2A paint_V2A (PositA blue_A)) (DetCN (DetQuant DefArt NumSg) (UseN house_N)))) (UsePron he_Pron))) (DetCN (DetQuant DefArt NumPl) (UseN child_N))))))) +TestLangGer: Johann sagt , dass wir die Kinder ihm helfen lassen wollten , das Haus blau zu malen +TestLangEng: John says that we wanted to let the children help him to paint the house blue diff --git a/tests/german/infinitives.trees b/tests/german/infinitives.trees new file mode 100644 index 000000000..ef80d9114 --- /dev/null +++ b/tests/german/infinitives.trees @@ -0,0 +1,195 @@ +-- V2V o V2 and V2V o V2V o V2 works: + +-- -auxV2V o V2 + +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2V versprechen_dat_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron youPl_Pron))) + +-- +auxV2V o V2 + +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2V lassen_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron youPl_Pron))) + +-- -auxV2V o -auxV2V + +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2V beg_V2V (ComplSlash (SlashV2V versprechen_dat_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron we_Pron))) (UsePron youSg_Pron))) + +-- +auxV2V o -auxV2V + +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2V lassen_V2V (ComplSlash (SlashV2V versprechen_dat_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron we_Pron))) (UsePron youSg_Pron))) + +-- -auxV2V o +auxV2V + +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2V beg_V2V (ComplSlash (SlashV2V lassen_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron we_Pron))) (UsePron youSg_Pron))) + +-- +auxV2V o +auxV2V + +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2V lassen_V2V (ComplSlash (SlashV2V lassen_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron we_Pron))) (UsePron youSg_Pron))) + +-- ---------- VV combined with V2 and V2V ---------- + +-- VV o V2 ok + +(PredVP (UsePron i_Pron) (ComplVV want_VV (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N))))) + +(PredVP (UsePron i_Pron) (ComplVV wagen_VV (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N))))) + +-- VV o -auxV2V ok: + +(PredVP (UsePron i_Pron) (ComplVV must_VV (ComplSlash (SlashV2V versprechen_dat_V2V (UseV sleep_V)) (UsePron she_Pron)))) + +(PredVP (UsePron i_Pron) (ComplVV wagen_VV (ComplSlash (SlashV2V versprechen_dat_V2V (UseV sleep_V)) (UsePron she_Pron)))) + +-- VV o +auxV2V ok: + +(PredVP (UsePron i_Pron) (ComplVV must_VV (ComplSlash (SlashV2V lassen_V2V (UseV sleep_V)) (UsePron she_Pron)))) + +(PredVP (UsePron i_Pron) (ComplVV wagen_VV (ComplSlash (SlashV2V lassen_V2V (UseV sleep_V)) (UsePron she_Pron)))) + +-- +auxVV o -auxV2V o +auxV2V: + +(PredVP (UsePron i_Pron) (ComplVV must_VV (ComplSlash (SlashV2V versprechen_dat_V2V (ComplSlash (SlashV2V lassen_V2V (UseV sleep_V)) (UsePron she_Pron))) (UsePron she_Pron)))) + +-- +auxVV o +auxV2V o V2: + +(PredVP (UsePron i_Pron) (ComplVV must_VV (ComplSlash (SlashV2V lassen_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron she_Pron)))) + +-- +auxVV o -auxV2V o +auxV2V o V2: + +(PredVP (UsePron i_Pron) (ComplVV want_VV (ComplSlash (SlashV2V versprechen_dat_V2V (ComplSlash (SlashV2V lassen_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron she_Pron))) (UsePron he_Pron)))) + +-- +auxVV o +auxVV o -auxV2V o +auxV2V o V2: + +(PredVP (UsePron i_Pron) (ComplVV must_VV (ComplVV want_VV (ComplSlash (SlashV2V versprechen_dat_V2V (ComplSlash (SlashV2V lassen_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron she_Pron))) (UsePron he_Pron))))) + +-- ComplSlash o SlashVV +(PredVP (UsePron i_Pron) (ComplSlash (SlashVV must_VV (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) +(PredVP (UsePron i_Pron) (ComplSlash (SlashVV want_VV (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) +(PredVP (UsePron i_Pron) (ComplSlash (SlashVV wagen_VV (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) + +-- ComplVV o ComplSlash +(PredVP (UsePron i_Pron) (ComplVV must_VV (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N))))) +(PredVP (UsePron i_Pron) (ComplVV want_VV (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N))))) +(PredVP (UsePron i_Pron) (ComplVV wagen_VV (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N))))) + +-- ComplSlash o SlashVV o SlashVV +(PredVP (UsePron i_Pron) (ComplSlash (SlashVV must_VV (SlashVV want_VV (SlashV2a read_V2))) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) +(PredVP (UsePron i_Pron) (ComplSlash (SlashVV must_VV (SlashVV wagen_VV (SlashV2a read_V2))) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) +(PredVP (UsePron i_Pron) (ComplSlash (SlashVV want_VV (SlashVV wagen_VV (SlashV2a read_V2))) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) +(PredVP (UsePron i_Pron) (ComplSlash (SlashVV wagen_VV (SlashVV want_VV (SlashV2a read_V2))) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) + +-- ComplVV o ComplSlash o SlashVV +(PredVP (UsePron i_Pron) (ComplVV must_VV (ComplSlash (SlashVV want_VV (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N))))) +(PredVP (UsePron i_Pron) (ComplVV must_VV (ComplSlash (SlashVV wagen_VV (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N))))) +(PredVP (UsePron i_Pron) (ComplVV want_VV (ComplSlash (SlashVV wagen_VV (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N))))) +(PredVP (UsePron i_Pron) (ComplVV wagen_VV (ComplSlash (SlashVV want_VV (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N))))) + +-- ComplVV o ComplVV o ComplSlash +(PredVP (UsePron i_Pron) (ComplVV must_VV (ComplVV want_VV (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))))) +(PredVP (UsePron i_Pron) (ComplVV must_VV (ComplVV wagen_VV (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))))) +(PredVP (UsePron i_Pron) (ComplVV want_VV (ComplVV wagen_VV (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))))) +(PredVP (UsePron i_Pron) (ComplVV wagen_VV (ComplVV want_VV (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))))) + +-- ComplVV o ComplSlash o SlashVV o SlashVV +(PredVP (UsePron i_Pron) (ComplVV must_VV (ComplSlash (SlashVV want_VV (SlashVV wagen_VV (SlashV2a read_V2))) (DetCN (DetQuant DefArt NumSg) (UseN book_N))))) + +- ComplVV o ComplVV o ComplSlash o SlashVV +(PredVP (UsePron i_Pron) (ComplVV must_VV (ComplVV want_VV (ComplSlash (SlashVV wagen_VV (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))))) + +-- ComplVV o ComplVV o ComplVV o ComplSlash +(PredVP (UsePron i_Pron) (ComplVV must_VV (ComplVV want_VV (ComplVV wagen_VV (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N))))))) + +-- ComplSlash o SlashVV o SlashVV o SlashVV +(PredVP (UsePron i_Pron) (ComplSlash (SlashVV must_VV (SlashVV wagen_VV (SlashVV want_VV (SlashV2a read_V2)))) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) +(PredVP (UsePron i_Pron) (ComplSlash (SlashVV must_VV (SlashVV want_VV (SlashVV wagen_VV (SlashV2a read_V2)))) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) + +-- ComplVV o ComplSlash o SlashVV o SlashVV +(PredVP (UsePron i_Pron) (ComplVV must_VV (ComplSlash (SlashVV wagen_VV (SlashVV want_VV (SlashV2a read_V2))) (DetCN (DetQuant DefArt NumSg) (UseN book_N))))) + +-- ComplVV o ComplVV o ComplSlash o SlashVV +(PredVP (UsePron i_Pron) (ComplVV must_VV (ComplVV wagen_VV (ComplSlash (SlashVV want_VV (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))))) + +-- ComplVV o ComplVV o ComplVV o ComplSlash +(PredVP (UsePron i_Pron) (ComplVV must_VV (ComplVV wagen_VV (ComplVV want_VV (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N))))))) + +-- ComplSlash o SlashV2V o ComplSlash +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2V lassen_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron he_Pron))) +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2V beg_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron he_Pron))) +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2V versprechen_dat_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron he_Pron))) +-- ComplSlash o SlashV2V o ComplSlash o SlashV2V o ComplSlash +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2V beg_V2V (ComplSlash (SlashV2V lassen_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron he_Pron))) (DetNP (DetQuant DefArt NumPl)))) +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2V beg_V2V (ComplSlash (SlashV2V lassen_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron he_Pron))) (UsePron they_Pron))) +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2V versprechen_dat_V2V (ComplSlash (SlashV2V beg_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron he_Pron))) (DetNP (DetQuant DefArt NumPl)))) +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2V versprechen_dat_V2V (ComplSlash (SlashV2V beg_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron he_Pron))) (UsePron they_Pron))) +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2V beg_V2V (ComplSlash (SlashV2V versprechen_dat_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron he_Pron))) (UsePron he_Pron))) + + +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2VNP lassen_V2V (UsePron he_Pron) (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2VNP beg_V2V (UsePron he_Pron) (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2VNP versprechen_dat_V2V (UsePron he_Pron) (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2VNP beg_V2V (DetNP (DetQuant DefArt NumPl)) (SlashV2VNP lassen_V2V (UsePron he_Pron) (SlashV2a read_V2))) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2VNP beg_V2V (UsePron they_Pron) (SlashV2VNP lassen_V2V (UsePron he_Pron) (SlashV2a read_V2))) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2V beg_V2V (ComplSlash (SlashV2VNP lassen_V2V (UsePron he_Pron) (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (DetNP (DetQuant DefArt NumPl)))) +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2V beg_V2V (ComplSlash (SlashV2VNP lassen_V2V (UsePron he_Pron) (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron they_Pron))) +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2VNP versprechen_dat_V2V (DetNP (DetQuant DefArt NumPl)) (SlashV2VNP beg_V2V (UsePron he_Pron) (SlashV2a read_V2))) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2VNP versprechen_dat_V2V (UsePron they_Pron) (SlashV2VNP beg_V2V (UsePron he_Pron) (SlashV2a read_V2))) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2V versprechen_dat_V2V (ComplSlash (SlashV2VNP beg_V2V (UsePron he_Pron) (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (DetNP (DetQuant DefArt NumPl)))) +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2V versprechen_dat_V2V (ComplSlash (SlashV2VNP beg_V2V (UsePron he_Pron) (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron they_Pron))) +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2VNP beg_V2V (UsePron he_Pron) (SlashV2VNP versprechen_dat_V2V (UsePron he_Pron) (SlashV2a read_V2))) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2V beg_V2V (ComplSlash (SlashV2VNP versprechen_dat_V2V (UsePron he_Pron) (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))) (UsePron he_Pron))) + +-- V2V o ReflVP with object control (default) +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2V beg_V2V (ReflVP (SlashV2a love_V2))) (UsePron youSg_Pron))) +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2V warnen_V2V (ReflVP (SlashV2a hate_V2))) (UsePron youPl_Pron))) + +-- V2V o ReflVP with subject control +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2V versprechen_dat_V2V (ReflVP (SlashV2a love_V2))) (UsePron she_Pron))) +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2V versprechen_dat_V2V (ComplVV want_VV (ReflVP (SlashV2a love_V2)))) (UsePron she_Pron))) + +-- +auxVV o (V2V object control) o (V2V subject control) o ReflVP +(PredVP (UsePron i_Pron) (ComplVV want_VV (ComplSlash (SlashV2V beg_V2V (ComplSlash (SlashV2Vneg versprechen_dat_V2V (ReflVP (SlashV2a hate_V2))) (UsePron youSg_Pron))) (UsePron she_Pron)))) + +-- V2V o ReflVPSlash with subject control + +PredVP (UsePron i_Pron) (ComplSlash (SlashV2V versprechen_dat_V2V (ComplSlash (ReflVPSlash entschuldigen_bei_fuer_rV3) (UsePron it_Pron))) (UsePron she_Pron)) +(PredVP (UsePron i_Pron) (ComplSlash (SlashV2V versprechen_dat_V2V (ComplSlash (ReflVPSlash give_V3) (UsePron it_Pron))) (UsePron we_Pron))) + +(PredVP (UsePron i_Pron) (ComplVV want_VV (ComplSlash (SlashV2V versprechen_dat_V2V (ComplSlash (SlashV2Vneg beg_V2V (ReflVP (SlashV2a hate_V2))) (UsePron youSg_Pron))) (UsePron she_Pron)))) + +-- V2V o ReflVPSlash with object control +PredVP (UsePron i_Pron) (ComplSlash (SlashV2V beg_V2V (ComplSlash (ReflVPSlash entschuldigen_bei_fuer_rV3) (UsePron it_Pron))) (UsePron youSg_Pron)) + +-- SlashV2V o SlashV2V o ReflVP with object control o subject control + +PredVP (UsePron i_Pron) (ComplSlash (SlashV2V beg_V2V (ComplSlash (SlashV2V versprechen_dat_V2V (ReflVP (SlashV2a love_V2))) (UsePron i_Pron))) (UsePron youSg_Pron)) + +PredVP (UsePron i_Pron) (ComplSlash (SlashV2V helfen_V2V (ComplSlash (SlashV2V versprechen_dat_V2V (ReflVP (SlashV2a love_V2))) (UsePron i_Pron))) (UsePron youSg_Pron)) + +-- VP.inf with extracted NP (testing SlashVV, SlashV2VNP) + +DetCN (DetQuant DefArt NumSg) (RelCN (UseN book_N) (UseRCl (TTAnt TPast ASimul) PNeg (RelSlash IdRP (SlashVP (UsePron we_Pron) (SlashVV want_VV (SlashV2a read_V2)))))) + +DetCN (DetQuant DefArt NumSg) (RelCN (UseN book_N) (UseRCl (TTAnt TPast ASimul) PNeg (RelSlash IdRP (SlashVP (UsePron we_Pron) (SlashVV must_VV (SlashV2a read_V2)))))) + +DetCN (DetQuant DefArt NumSg) (RelCN (UseN book_N) (UseRCl (TTAnt TPast ASimul) PNeg (RelSlash IdRP (SlashVP (UsePron we_Pron) (SlashVV wagen_VV (SlashV2a read_V2)))))) + +DetCN (DetQuant DefArt NumSg) (RelCN (UseN book_N) (UseRCl (TTAnt TPast ASimul) PNeg (RelSlash IdRP (SlashVP (UsePron we_Pron) (SlashVV wagen_VV (Slash3V3 erklaeren_dat_V3 (UsePron she_Pron))))))) + +DetCN (DetQuant DefArt NumSg) (RelCN (UseN book_N) (UseRCl (TTAnt TPres ASimul) PPos (RelSlash IdRP (SlashVP (UsePron we_Pron) (SlashV2VNP versprechen_dat_V2V (UsePron she_Pron) (SlashV2a read_V2)))))) + +DetCN (DetQuant DefArt NumSg) (RelCN (UseN book_N) (UseRCl (TTAnt TPres ASimul) PPos (RelSlash IdRP (SlashVP (UsePron we_Pron) (SlashV2VNP lassen_V2V (UsePron she_Pron) (SlashV2a read_V2)))))) + +-- + +DetCN (DetQuant DefArt NumSg) (RelCN (UseN boy_N) (UseRCl (TTAnt TPres ASimul) PPos (RelSlash IdRP (SlashVP (UsePron i_Pron) (SlashV2V lassen_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))))))) + +DetCN (DetQuant DefArt NumSg) (RelCN (UseN boy_N) (UseRCl (TTAnt TPres ASimul) PPos (RelSlash IdRP (SlashVP (UsePron i_Pron) (SlashV2V versprechen_dat_V2V (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))))))) + +DetCN (DetQuant DefArt NumSg) (RelCN (UseN boy_N) (UseRCl (TTAnt TPres ASimul) PPos (RelSlash IdRP (SlashVP (UsePron i_Pron) (SlashV2V versprechen_dat_V2V (ComplSlash (SlashVV want_VV (SlashV2a read_V2)) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))))))) + +DetCN (DetQuant DefArt NumSg) (RelCN (UseN boy_N) (UseRCl (TTAnt TPres ASimul) PPos (RelSlash IdRP (SlashVP (UsePron i_Pron) (SlashV2V versprechen_dat_V2V (ComplVV want_VV (ComplSlash (SlashV2a read_V2) (DetCN (DetQuant DefArt NumSg) (UseN book_N))))))))) + +DetCN (DetQuant DefArt NumSg) (RelCN (UseN boy_N) (UseRCl (TTAnt TPres ASimul) PPos (RelSlash IdRP (SlashVP (UsePron i_Pron) (SlashV2V helfen_V2V (ReflVP (SlashV2a wash_V2))))))) + +-- Shieber's example + +PredVP (UsePN john_PN) (ComplVS say_VS (UseCl (TTAnt TPast ASimul) PPos (PredVP (UsePron we_Pron) (ComplVV want_VV (ComplSlash (SlashV2V lassen_V2V (ComplSlash (SlashV2V helfen_V2V (ComplSlash (SlashV2A paint_V2A (PositA blue_A)) (DetCN (DetQuant DefArt NumSg) (UseN house_N)))) (UsePron he_Pron))) (DetCN (DetQuant DefArt NumPl) (UseN child_N))))))) + diff --git a/tests/german/object-order.README b/tests/german/object-order.README index ca2b523e5..74d6a51ce 100644 --- a/tests/german/object-order.README +++ b/tests/german/object-order.README @@ -1,4 +1,4 @@ -Implementing pronoun switch e.a. in LangGer HL 13.6.2019 -- 20.3.2019 +Implementing pronoun switch e.a. in LangGer HL 13.6.2019 -- 20.6.2019 ------------------------------------------- Ternary verbs v:V3 with two objects of category NP order them depending on their being (personal) pronouns or not. Basically @@ -273,7 +273,7 @@ From Eng to Ger: examples.eng.txt could also be parsed using LangEng instead of TestLangEng|Ger. -Lang> rf -file=examples.eng.txt -lines | p -lang=LangEng | l -lang="Eng,Ger" -treebank | wf -file=examples.eng.new +Lang> rf -file=examples.eng.txt -lines | p -lang=LangEng | l -lang="Eng,Ger" -treebank | wf -file=examples.eng.tmp Lang> rf -file=examples.eng.txt -lines | p -lang=LangEng | l -lang="Eng,Ger" | wf -file=examples.eng2ger.new Using give_V3 is confusing, as both objects are connected with noPrep. The examples are diff --git a/tests/german/object-order.gfs b/tests/german/object-order.gfs index be54dbd2b..930953dbe 100644 --- a/tests/german/object-order.gfs +++ b/tests/german/object-order.gfs @@ -1,30 +1,30 @@ ---# Use gf --run < obj-order.gfs or gf> eh object-order.gfs -? echo "loading TestLangGer.gf and TestLangEng.gf ..." -i TestLangGer.gf TestLangEng.gf +-- Use gf --run < obj-order.gfs or gf> eh object-order.gfs +--? echo "loading TestLangGer.gf and TestLangEng.gf ..." +--i TestLangGer.gf TestLangEng.gf -- Remark: examples in examples.eng.txt need only LangEng,LangGer -? echo "parsing from examples.eng and writing trees to examples.eng.new:" -rf -file=examples.eng.txt -lines | p -lang=Eng | l -lang="Eng,Ger" -treebank | wf -file=examples.eng.new -? echo "diff examples.eng.out examples.eng.new" -? diff examples.eng.out examples.eng.new -? echo "parsing from examples.eng and writing source and translation to examples.eng2ger.new:" -rf -file=examples.eng.txt -lines | p -lang=Eng | l -lang="Eng,Ger" | wf -file=examples.eng2ger.new -? echo "diff examples.eng2ger.out examples.eng2ger.new" -? diff examples.eng2ger.out examples.eng2ger.new +? echo "parsing from examples.eng and writing trees to examples.eng.tmp:" +rf -file=examples.eng.txt -lines | p -lang=Eng | l -lang="Eng,Ger" -treebank | wf -file=examples.eng.tmp +? echo "diff examples.eng.out examples.eng.tmp" +? diff examples.eng.out examples.eng.tmp +? echo "parsing from examples.eng and writing source and translation to examples.eng2ger.tmp:" +rf -file=examples.eng.txt -lines | p -lang=Eng | l -lang="Eng,Ger" | wf -file=examples.eng2ger.tmp +? echo "diff examples.eng2ger.out examples.eng2ger.tmp" +? diff examples.eng2ger.out examples.eng2ger.tmp ? echo "extracting positive, negative and dubious examples from examples.txt ..." ? grep accept examples.txt | sed s/\ --\ [\*a-zA-Z\(\)\ \.\:\,\;\<\>\\_0-4\\+\\?\\-]*// | cpif examples.pos.txt ? grep reject examples.txt | sed s/\ --\ [\*a-zA-Z\(\)\ \.\:\,\;\<\>\\_0-4\\+\\?\\-]*// | cpif examples.neg.txt ? grep dubious examples.txt | sed s/\ --\ [\*a-zA-Z\(\)\ \.\:\,\;\<\>\\_0-4\\+\\?\\-]*// | cpif examples.dub.txt -? echo "parsing negative examples ...; storing trees in examples.neg.new ..." -rf -lines -file="examples.neg.txt" | p -lang=Ger | l -treebank -lang="Ger,Eng" | wf -file="examples.neg.new" -? echo "diff examples.neg.out examples.neg.new:" -? diff examples.neg.out examples.neg.new -? echo "parsing dubious examples ...; storing trees in examples.dub.new ..." -rf -lines -file="examples.dub.txt" | p -lang=Ger | l -treebank -lang="Ger,Eng" | wf -file="examples.dub.new" -? echo "diff examples.dub.out examples.dub.new:" -? diff examples.dub.out examples.dub.new -? echo "parsing positive examples ...; storing trees in examples.pos.new ..." -rf -lines -file="examples.pos.txt" | p -lang=Ger | l -treebank -lang="Ger,Eng" | wf -file="examples.pos.new" -? echo "diff examples.pos.out examples.pos.new:" -? diff examples.pos.out examples.pos.new +? echo "parsing negative examples ...; storing trees in examples.neg.tmp ..." +rf -lines -file="examples.neg.txt" | p -lang=Ger | l -treebank -lang="Ger,Eng" | wf -file="examples.neg.tmp" +? echo "diff examples.neg.out examples.neg.tmp:" +? diff examples.neg.out examples.neg.tmp +? echo "parsing dubious examples ...; storing trees in examples.dub.tmp ..." +rf -lines -file="examples.dub.txt" | p -lang=Ger | l -treebank -lang="Ger,Eng" | wf -file="examples.dub.tmp" +? echo "diff examples.dub.out examples.dub.tmp:" +? diff examples.dub.out examples.dub.tmp +? echo "parsing positive examples ...; storing trees in examples.pos.tmp ..." +rf -lines -file="examples.pos.txt" | p -lang=Ger | l -treebank -lang="Ger,Eng" | wf -file="examples.pos.tmp" +? echo "diff examples.pos.out examples.pos.tmp:" +? diff examples.pos.out examples.pos.tmp diff --git a/tests/german/passive.dub.out b/tests/german/passive.dub.out new file mode 100644 index 000000000..6c34919d6 --- /dev/null +++ b/tests/german/passive.dub.out @@ -0,0 +1,12 @@ +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TCond AAnter) PPos (PredVP (UsePron we_Pron) (ComplVV want_VV (Pass3V3 send_V3 (DetCN (DetQuant DefArt NumSg) (UseN car_N))))))) NoVoc +TestLangGer: wir würden den Wagen geschickt haben bekommen wollen +TestLangEng: we would have wanted to be sent the car +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumPl) (UseN book_N)) (PassVPSlash (Slash2V3 danken_dat_fuer_V3 (PredetNP not_Predet (UsePron youPl_Pron))))))) NoVoc +TestLangGer: für die Bücher wird nicht euch gedankt +TestLangEng: the books are thanked not you for +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PNeg (PredVP (DetCN (DetQuant DefArt NumPl) (UseN book_N)) (PassVPSlash (Slash2V3 danken_dat_fuer_V3 (UsePron youPl_Pron)))))) NoVoc +TestLangGer: für die Bücher wird nicht euch gedankt +TestLangEng: the books aren't thanked you for +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres AAnter) PNeg (PredVP (DetCN (DetQuant DefArt NumSg) (UseN book_N)) (PassVPSlash (Slash2V3 debattieren_mit_ueber_V3 (UsePron i_Pron)))))) NoVoc +TestLangGer: über das Buch ist nicht mit mir debattiert worden +TestLangEng: the book hasn't been debated with me about diff --git a/tests/german/passive.gfs b/tests/german/passive.gfs new file mode 100644 index 000000000..d75d83075 --- /dev/null +++ b/tests/german/passive.gfs @@ -0,0 +1,23 @@ +-- Use gf --run < passive.gfs or gf> eh passive.gfs +--? echo "loading TestLangGer.gf and TestLangEng.gf ..." +--i TestLangGer.gf TestLangEng.gf + +? echo "extracting positive, negative and dubious examples from passive.txt ..." +? grep accept passive.txt | sed s/\ --\ [\*a-zA-Z\(\)\ \.\:\,\;\<\>\\_0-4\\+\\?\\-]*// | cpif passive.pos.txt +? wc -l passive.pos.txt +? grep reject passive.txt | sed s/\ --\ [\*a-zA-Z\(\)\ \.\:\,\;\<\>\\_0-4\\+\\?\\-]*// | cpif passive.neg.txt +? wc -l passive.neg.txt +? grep dubious passive.txt | sed s/\ --\ [\*a-zA-Z\(\)\ \.\:\,\;\<\>\\_0-4\\+\\?\\-]*// | cpif passive.dub.txt +? wc -l passive.dub.txt + +? echo "parsing positive examples ...; storing trees in passive.pos.new ..." +rf -lines -file="passive.pos.txt" | p -lang=Ger | l -treebank -lang="Ger,Eng" | wf -file="passive.pos.new" +? echo "diff passive.pos.out passive.pos.new:" ; diff passive.pos.out passive.pos.new + +? echo "parsing negative examples ...; storing trees in passive.neg.new ..." +rf -lines -file="passive.neg.txt" | p -lang=Ger | l -treebank -lang="Ger,Eng" | wf -file="passive.neg.new" +? echo "diff passive.neg.out passive.neg.new:" ; diff passive.neg.out passive.neg.new + +? echo "parsing dubious examples ...; storing trees in passive.dub.new ..." +rf -lines -file="passive.dub.txt" | p -lang=Ger | l -treebank -lang="Ger,Eng" | wf -file="passive.dub.new" +? echo "diff passive.dub.out passive.dub.new:" ; diff passive.dub.out passive.dub.new diff --git a/tests/german/passive.neg.out b/tests/german/passive.neg.out new file mode 100644 index 000000000..85970f056 --- /dev/null +++ b/tests/german/passive.neg.out @@ -0,0 +1,24 @@ +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TCond AAnter) PPos (PredVP (UsePron we_Pron) (ComplVV want_VV (Pass3V3 send_V3 (DetCN (DetQuant DefArt NumSg) (UseN car_N))))))) NoVoc +TestLangGer: wir würden den Wagen geschickt haben bekommen wollen +TestLangEng: we would have wanted to be sent the car +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron we_Pron) (ComplSlash (Slash2V3 lehren_V3 (DetCN (DetQuant DefArt NumSg) (UseN science_N))) (DetCN (DetQuant (PossPron we_Pron) NumSg) (UseN friend_N)))))) NoVoc +TestLangGer: wir lehren die Wissenschaft unseren Freund +TestLangEng: we teach the science our friend +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron we_Pron) (ComplSlash (Slash3V3 lehren_V3 (DetCN (DetQuant DefArt NumSg) (UseN science_N))) (DetCN (DetQuant (PossPron we_Pron) NumSg) (UseN friend_N)))))) NoVoc +TestLangGer: wir lehren die Wissenschaft unseren Freund +TestLangEng: we teach our friend the science +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumSg) (UseN science_N)) (ComplVA become_VA (PastPartAP (Slash2V3 lehren_V3 (DetCN (DetQuant DefArt NumPl) (UseN friend_N)))))))) NoVoc +TestLangGer: die Wissenschaft wird die Freunde gelehrt +TestLangEng: the science becomes taught the friends +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumSg) (UseN science_N)) (ComplVA become_VA (PastPartAP (Slash3V3 lehren_V3 (DetCN (DetQuant DefArt NumPl) (UseN friend_N)))))))) NoVoc +TestLangGer: die Wissenschaft wird die Freunde gelehrt +TestLangEng: the science becomes taught the friends +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumSg) (UseN science_N)) (Pass2V3 lehren_V3 (DetCN (DetQuant DefArt NumPl) (UseN friend_N)))))) NoVoc +TestLangGer: die Wissenschaft wird die Freunde gelehrt +TestLangEng: the science is taught the friends +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumSg) (UseN science_N)) (PassVPSlash (Slash2V3 lehren_V3 (DetCN (DetQuant DefArt NumPl) (UseN friend_N))))))) NoVoc +TestLangGer: die Wissenschaft wird die Freunde gelehrt +TestLangEng: the science is taught the friends +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumSg) (UseN science_N)) (PassVPSlash (Slash3V3 lehren_V3 (DetCN (DetQuant DefArt NumPl) (UseN friend_N))))))) NoVoc +TestLangGer: die Wissenschaft wird die Freunde gelehrt +TestLangEng: the science is taught the friends diff --git a/tests/german/passive.pos.out b/tests/german/passive.pos.out new file mode 100644 index 000000000..090b7a737 --- /dev/null +++ b/tests/german/passive.pos.out @@ -0,0 +1,195 @@ +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron she_Pron) (ComplSlash (Slash2V3 give_V3 (UsePron we_Pron)) (DetCN (DetQuant DefArt NumSg) (UseN car_N)))))) NoVoc +TestLangGer: sie gibt uns den Wagen +TestLangEng: she gives us the car +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron she_Pron) (ComplSlash (Slash3V3 give_V3 (UsePron we_Pron)) (DetCN (DetQuant DefArt NumPl) (UseN car_N)))))) NoVoc +TestLangGer: sie gibt uns den Wagen +TestLangEng: she gives the cars us +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron she_Pron) (ComplSlash (Slash2V3 give_V3 (DetCN (DetQuant DefArt NumPl) (UseN car_N))) (UsePron we_Pron))))) NoVoc +TestLangGer: sie gibt uns den Wagen +TestLangEng: she gives the cars us +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron she_Pron) (ComplSlash (Slash3V3 give_V3 (DetCN (DetQuant DefArt NumSg) (UseN car_N))) (UsePron we_Pron))))) NoVoc +TestLangGer: sie gibt uns den Wagen +TestLangEng: she gives us the car +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumSg) (UseN car_N)) (Pass2V3 give_V3 (UsePron we_Pron))))) NoVoc +TestLangGer: der Wagen wird uns gegeben +TestLangEng: the car is given us +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumSg) (UseN car_N)) (PassVPSlash (Slash2V3 give_V3 (UsePron we_Pron)))))) NoVoc +TestLangGer: der Wagen wird uns gegeben +TestLangEng: the car is given us +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron we_Pron) (Pass3V3 give_V3 (DetCN (DetQuant DefArt NumPl) (UseN car_N)))))) NoVoc +TestLangGer: wir bekommen den Wagen gegeben +TestLangEng: we are given the cars +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPast ASimul) PPos (PredVP (UsePron she_Pron) (ComplSlash (Slash3V3 send_V3 (UsePron we_Pron)) (DetCN (DetQuant DefArt NumSg) (UseN car_N)))))) NoVoc +TestLangGer: sie schickte uns den Wagen +TestLangEng: she sent the car to us +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPast ASimul) PPos (PredVP (UsePron she_Pron) (ComplSlash (Slash2V3 send_V3 (UsePron we_Pron)) (DetCN (DetQuant DefArt NumPl) (UseN car_N)))))) NoVoc +TestLangGer: sie schickte uns den Wagen +TestLangEng: she sent us to the cars +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPast ASimul) PPos (PredVP (UsePron she_Pron) (ComplSlash (Slash3V3 send_V3 (DetCN (DetQuant DefArt NumPl) (UseN car_N))) (UsePron we_Pron))))) NoVoc +TestLangGer: sie schickte uns den Wagen +TestLangEng: she sent us to the cars +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPast ASimul) PPos (PredVP (UsePron she_Pron) (ComplSlash (Slash2V3 send_V3 (DetCN (DetQuant DefArt NumSg) (UseN car_N))) (UsePron we_Pron))))) NoVoc +TestLangGer: sie schickte uns den Wagen +TestLangEng: she sent the car to us +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPast ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumSg) (UseN car_N)) (Pass2V3 send_V3 (UsePron we_Pron))))) NoVoc +TestLangGer: der Wagen wurde uns geschickt +TestLangEng: the car was sent to us +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPast ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumSg) (UseN car_N)) (PassVPSlash (Slash3V3 send_V3 (UsePron we_Pron)))))) NoVoc +TestLangGer: der Wagen wurde uns geschickt +TestLangEng: the car was sent to us +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPast ASimul) PPos (PredVP (UsePron we_Pron) (Pass3V3 send_V3 (DetCN (DetQuant DefArt NumSg) (UseN car_N)))))) NoVoc +TestLangGer: wir bekamen den Wagen geschickt +TestLangEng: we were sent the car +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TCond ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumSg) (UseN car_N)) (Pass2V3 send_V3 (UsePron we_Pron))))) NoVoc +TestLangGer: der Wagen würde uns geschickt werden +TestLangEng: the car would be sent to us +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TCond ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumSg) (UseN car_N)) (PassVPSlash (Slash3V3 send_V3 (UsePron we_Pron)))))) NoVoc +TestLangGer: der Wagen würde uns geschickt werden +TestLangEng: the car would be sent to us +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TCond ASimul) PNeg (PredVP (DetCN (DetQuant DefArt NumSg) (UseN car_N)) (Pass2V3 send_V3 (UsePron we_Pron))))) NoVoc +TestLangGer: der Wagen würde uns nicht geschickt werden +TestLangEng: the car wouldn't be sent to us +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TCond ASimul) PPos (PredVP (UsePron we_Pron) (Pass3V3 send_V3 (DetCN (DetQuant DefArt NumSg) (UseN car_N)))))) NoVoc +TestLangGer: wir würden den Wagen geschickt bekommen +TestLangEng: we would be sent the car +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TCond ASimul) PNeg (PredVP (UsePron we_Pron) (Pass3V3 send_V3 (DetCN (DetQuant DefArt NumSg) (UseN car_N)))))) NoVoc +TestLangGer: wir würden den Wagen nicht geschickt bekommen +TestLangEng: we wouldn't be sent the car +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TCond ASimul) PPos (PredVP (UsePron we_Pron) (Pass3V3 send_V3 (PredetNP not_Predet (DetCN (DetQuant DefArt NumSg) (UseN car_N))))))) NoVoc +TestLangGer: wir würden nicht den Wagen geschickt bekommen +TestLangEng: we would be sent not the car +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron we_Pron) (ComplVV want_VV (Pass3V3 send_V3 (DetCN (DetQuant DefArt NumSg) (UseN car_N))))))) NoVoc +TestLangGer: wir wollen den Wagen geschickt bekommen +TestLangEng: we want to be sent the car +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPast ASimul) PNeg (PredVP (UsePron they_Pron) (ComplSlash (Slash3V3 erklaeren_dat_V3 (UsePron we_Pron)) (DetCN (DetQuant DefArt NumSg) (UseN car_N)))))) NoVoc +TestLangGer: sie erklärten uns den Wagen nicht +TestLangEng: they didn't explain the car to us +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPast ASimul) PNeg (PredVP (UsePron they_Pron) (ComplSlash (Slash2V3 erklaeren_dat_V3 (UsePron we_Pron)) (DetCN (DetQuant DefArt NumPl) (UseN car_N)))))) NoVoc +TestLangGer: sie erklärten uns den Wagen nicht +TestLangEng: they didn't explain us to the cars +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPast ASimul) PNeg (PredVP (UsePron they_Pron) (ComplSlash (Slash3V3 erklaeren_dat_V3 (DetCN (DetQuant DefArt NumPl) (UseN car_N))) (UsePron we_Pron))))) NoVoc +TestLangGer: sie erklärten uns den Wagen nicht +TestLangEng: they didn't explain us to the cars +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPast ASimul) PNeg (PredVP (UsePron they_Pron) (ComplSlash (Slash2V3 erklaeren_dat_V3 (DetCN (DetQuant DefArt NumSg) (UseN car_N))) (UsePron we_Pron))))) NoVoc +TestLangGer: sie erklärten uns den Wagen nicht +TestLangEng: they didn't explain the car to us +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPast ASimul) PNeg (PredVP (DetCN (DetQuant DefArt NumSg) (UseN car_N)) (Pass2V3 erklaeren_dat_V3 (UsePron we_Pron))))) NoVoc +TestLangGer: der Wagen wurde uns nicht erklärt +TestLangEng: the car wasn't explained to us +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPast ASimul) PNeg (PredVP (UsePron we_Pron) (Pass3V3 erklaeren_dat_V3 (DetCN (DetQuant DefArt NumSg) (UseN car_N)))))) NoVoc +TestLangGer: wir bekamen den Wagen nicht erklärt +TestLangEng: we weren't explained the car +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PNeg (PredVP (UsePron we_Pron) (ComplSlash (Slash2V3 danken_dat_fuer_V3 (UsePron youPl_Pron)) (DetCN (DetQuant DefArt NumSg) (UseN gold_N)))))) NoVoc +TestLangGer: wir danken euch nicht für das Gold +TestLangEng: we don't thank you for the gold +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PNeg (PredVP (UsePron we_Pron) (ComplSlash (Slash3V3 danken_dat_fuer_V3 (DetCN (DetQuant DefArt NumSg) (UseN gold_N))) (UsePron youPl_Pron))))) NoVoc +TestLangGer: wir danken euch nicht für das Gold +TestLangEng: we don't thank you for the gold +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PNeg (PredVP (UsePron youPl_Pron) (PassVPSlash (Slash3V3 danken_dat_fuer_V3 (DetCN (DetQuant DefArt NumSg) (UseN gold_N))))))) NoVoc +TestLangGer: euch wird nicht für das Gold gedankt +TestLangEng: you aren't thanked for the gold +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumPl) (UseN book_N)) (PassVPSlash (Slash2V3 danken_dat_fuer_V3 (UsePron youPl_Pron)))))) NoVoc +TestLangGer: für die Bücher wird euch gedankt +TestLangEng: the books are thanked you for +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron we_Pron) (ComplSlash (ComplSlashSlash (Slash3V4 kaufen_bei_fuer_V4 (UsePron youSg_Pron)) (DetCN (DetQuant DefArt NumSg) (UseN car_N))) (MassNP (UseN gold_N)))))) NoVoc +TestLangGer: wir kaufen den Wagen bei dir für Gold +TestLangEng: we buy for gold from you the car +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron we_Pron) (ComplSlash (ComplSlashSlash (Slash2V4 kaufen_bei_fuer_V4 (DetCN (DetQuant DefArt NumSg) (UseN car_N))) (UsePron youSg_Pron)) (MassNP (UseN gold_N)))))) NoVoc +TestLangGer: wir kaufen den Wagen bei dir für Gold +TestLangEng: we buy for gold the car from you +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPast ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumSg) (UseN car_N)) (ComplSlash (Pass2V4 kaufen_bei_fuer_V4 (DetCN much_Det (UseN gold_N))) (UsePron youSg_Pron))))) NoVoc +TestLangGer: der Wagen wurde für viel Gold bei dir gekauft +TestLangEng: the car was bought for much gold from you +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron they_Pron) (ComplSlash (Slash2V3 debattieren_mit_ueber_V3 (UsePron i_Pron)) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))))) NoVoc +TestLangGer: sie debattieren mit mir über das Buch +TestLangEng: they debate with me about the book +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PNeg (PredVP (UsePron they_Pron) (ComplSlash (Slash2V3 debattieren_mit_ueber_V3 (UsePron i_Pron)) (DetCN (DetQuant DefArt NumSg) (UseN book_N)))))) NoVoc +TestLangGer: sie debattieren nicht mit mir über das Buch +TestLangEng: they don't debate with me about the book +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPast ASimul) PPos (PredVP (UsePron i_Pron) (PassVPSlash (Slash3V3 debattieren_mit_ueber_V3 (DetCN (DetQuant DefArt NumSg) (UseN book_N))))))) NoVoc +TestLangGer: mit mir wurde über das Buch debattiert +TestLangEng: I was debated about the book with +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPast ASimul) PNeg (PredVP (UsePron i_Pron) (PassVPSlash (Slash3V3 debattieren_mit_ueber_V3 (DetCN (DetQuant DefArt NumSg) (UseN book_N))))))) NoVoc +TestLangGer: mit mir wurde nicht über das Buch debattiert +TestLangEng: I wasn't debated about the book with +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres AAnter) PPos (PredVP (DetCN (DetQuant DefArt NumSg) (UseN book_N)) (PassVPSlash (Slash2V3 debattieren_mit_ueber_V3 (UsePron i_Pron)))))) NoVoc +TestLangGer: über das Buch ist mit mir debattiert worden +TestLangEng: the book has been debated with me about +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres AAnter) PNeg (PredVP (DetCN (DetQuant DefArt NumSg) (UseN book_N)) (PassVPSlash (Slash2V3 debattieren_mit_ueber_V3 (UsePron i_Pron)))))) NoVoc +TestLangGer: über das Buch ist nicht mit mir debattiert worden +TestLangEng: the book hasn't been debated with me about +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron we_Pron) (ComplSlash (Slash2V3 lehren_V3 (DetCN (DetQuant (PossPron we_Pron) NumSg) (UseN friend_N))) (DetCN (DetQuant DefArt NumSg) (UseN science_N)))))) NoVoc +TestLangGer: wir lehren unseren Freund die Wissenschaft +TestLangEng: we teach our friend the science +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron we_Pron) (ComplSlash (Slash3V3 lehren_V3 (DetCN (DetQuant (PossPron we_Pron) NumSg) (UseN friend_N))) (DetCN (DetQuant DefArt NumSg) (UseN science_N)))))) NoVoc +TestLangGer: wir lehren unseren Freund die Wissenschaft +TestLangEng: we teach the science our friend +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron we_Pron) (ComplSlash (Slash2V3 lehren_V3 (UsePron he_Pron)) (UsePron she_Pron))))) NoVoc +TestLangGer: wir lehren sie ihn +TestLangEng: we teach him her +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron we_Pron) (ComplSlash (Slash2V3 lehren_V3 (UsePron he_Pron)) (UsePron they_Pron))))) NoVoc +TestLangGer: wir lehren sie ihn +TestLangEng: we teach him them +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron we_Pron) (ComplSlash (Slash3V3 lehren_V3 (UsePron he_Pron)) (UsePron she_Pron))))) NoVoc +TestLangGer: wir lehren sie ihn +TestLangEng: we teach her him +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron we_Pron) (ComplSlash (Slash3V3 lehren_V3 (UsePron he_Pron)) (UsePron they_Pron))))) NoVoc +TestLangGer: wir lehren sie ihn +TestLangEng: we teach them him +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron we_Pron) (ComplSlash (Slash2V3 lehren_V3 (UsePron she_Pron)) (UsePron he_Pron))))) NoVoc +TestLangGer: wir lehren ihn sie +TestLangEng: we teach her him +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron we_Pron) (ComplSlash (Slash2V3 lehren_V3 (UsePron they_Pron)) (UsePron he_Pron))))) NoVoc +TestLangGer: wir lehren ihn sie +TestLangEng: we teach them him +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron we_Pron) (ComplSlash (Slash3V3 lehren_V3 (UsePron she_Pron)) (UsePron he_Pron))))) NoVoc +TestLangGer: wir lehren ihn sie +TestLangEng: we teach him her +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron we_Pron) (ComplSlash (Slash3V3 lehren_V3 (UsePron they_Pron)) (UsePron he_Pron))))) NoVoc +TestLangGer: wir lehren ihn sie +TestLangEng: we teach him them +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumPl) (UseN friend_N)) (Pass2V3 lehren_V3 (DetCN (DetQuant DefArt NumSg) (UseN science_N)))))) NoVoc +TestLangGer: die Freunde werden die Wissenschaft gelehrt +TestLangEng: the friends are taught the science +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumPl) (UseN friend_N)) (PassVPSlash (Slash2V3 lehren_V3 (DetCN (DetQuant DefArt NumSg) (UseN science_N))))))) NoVoc +TestLangGer: die Freunde werden die Wissenschaft gelehrt +TestLangEng: the friends are taught the science +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumPl) (UseN friend_N)) (PassVPSlash (Slash3V3 lehren_V3 (DetCN (DetQuant DefArt NumSg) (UseN science_N))))))) NoVoc +TestLangGer: die Freunde werden die Wissenschaft gelehrt +TestLangEng: the friends are taught the science +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron he_Pron) (Pass2V3 lehren_V3 (DetCN (DetQuant DefArt NumSg) (UseN science_N)))))) NoVoc +TestLangGer: er wird die Wissenschaft gelehrt +TestLangEng: he is taught the science +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron he_Pron) (PassVPSlash (Slash2V3 lehren_V3 (DetCN (DetQuant DefArt NumSg) (UseN science_N))))))) NoVoc +TestLangGer: er wird die Wissenschaft gelehrt +TestLangEng: he is taught the science +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron he_Pron) (PassVPSlash (Slash3V3 lehren_V3 (DetCN (DetQuant DefArt NumSg) (UseN science_N))))))) NoVoc +TestLangGer: er wird die Wissenschaft gelehrt +TestLangEng: he is taught the science +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron he_Pron) (Pass2V3 lehren_V3 (UsePron she_Pron))))) NoVoc +TestLangGer: er wird sie gelehrt +TestLangEng: he is taught her +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron he_Pron) (Pass2V3 lehren_V3 (UsePron they_Pron))))) NoVoc +TestLangGer: er wird sie gelehrt +TestLangEng: he is taught them +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron he_Pron) (PassVPSlash (Slash2V3 lehren_V3 (UsePron she_Pron)))))) NoVoc +TestLangGer: er wird sie gelehrt +TestLangEng: he is taught her +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron he_Pron) (PassVPSlash (Slash2V3 lehren_V3 (UsePron they_Pron)))))) NoVoc +TestLangGer: er wird sie gelehrt +TestLangEng: he is taught them +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron he_Pron) (PassVPSlash (Slash3V3 lehren_V3 (UsePron she_Pron)))))) NoVoc +TestLangGer: er wird sie gelehrt +TestLangEng: he is taught her +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron he_Pron) (PassVPSlash (Slash3V3 lehren_V3 (UsePron they_Pron)))))) NoVoc +TestLangGer: er wird sie gelehrt +TestLangEng: he is taught them +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron she_Pron) (Pass2V3 lehren_V3 (UsePron he_Pron))))) NoVoc +TestLangGer: sie wird ihn gelehrt +TestLangEng: she is taught him +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron she_Pron) (PassVPSlash (Slash2V3 lehren_V3 (UsePron he_Pron)))))) NoVoc +TestLangGer: sie wird ihn gelehrt +TestLangEng: she is taught him +TestLang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron she_Pron) (PassVPSlash (Slash3V3 lehren_V3 (UsePron he_Pron)))))) NoVoc +TestLangGer: sie wird ihn gelehrt +TestLangEng: she is taught him diff --git a/tests/german/passive.trees b/tests/german/passive.trees new file mode 100644 index 000000000..406706208 --- /dev/null +++ b/tests/german/passive.trees @@ -0,0 +1,37 @@ +PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumSg) (UseN car_N)) (Pass2V3 give_V3 (UsePron we_Pron))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumSg) (UseN car_N)) (PassVPSlash (Slash2V3 give_V3 (UsePron we_Pron)))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron we_Pron) (Pass3V3 give_V3 (DetCN (DetQuant DefArt NumPl) (UseN car_N)))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TPast ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumSg) (UseN car_N)) (Pass2V3 send_V3 (UsePron we_Pron))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TPast ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumSg) (UseN car_N)) (PassVPSlash (Slash3V3 send_V3 (UsePron we_Pron)))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TPast ASimul) PPos (PredVP (UsePron we_Pron) (Pass3V3 send_V3 (DetCN (DetQuant DefArt NumSg) (UseN car_N)))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TCond ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumSg) (UseN car_N)) (Pass2V3 send_V3 (UsePron we_Pron))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TCond ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumSg) (UseN car_N)) (PassVPSlash (Slash3V3 send_V3 (UsePron we_Pron)))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TCond ASimul) PNeg (PredVP (DetCN (DetQuant DefArt NumSg) (UseN car_N)) (Pass2V3 send_V3 (UsePron we_Pron))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TCond ASimul) PPos (PredVP (UsePron we_Pron) (Pass3V3 send_V3 (DetCN (DetQuant DefArt NumSg) (UseN car_N)))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TCond ASimul) PNeg (PredVP (UsePron we_Pron) (Pass3V3 send_V3 (DetCN (DetQuant DefArt NumSg) (UseN car_N)))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TCond ASimul) PPos (PredVP (UsePron we_Pron) (Pass3V3 send_V3 (PredetNP not_Predet (DetCN (DetQuant DefArt NumSg) (UseN car_N))))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron we_Pron) (ComplVV want_VV (Pass3V3 send_V3 (DetCN (DetQuant DefArt NumSg) (UseN car_N))))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TPast ASimul) PNeg (PredVP (DetCN (DetQuant DefArt NumSg) (UseN car_N)) (Pass2V3 erklaeren_dat_V3 (UsePron we_Pron))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TPast ASimul) PNeg (PredVP (UsePron we_Pron) (Pass3V3 erklaeren_dat_V3 (DetCN (DetQuant DefArt NumSg) (UseN car_N)))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PNeg (PredVP (UsePron youPl_Pron) (PassVPSlash (Slash3V3 danken_dat_fuer_V3 (DetCN (DetQuant DefArt NumSg) (UseN gold_N))))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumPl) (UseN book_N)) (PassVPSlash (Slash2V3 danken_dat_fuer_V3 (UsePron youPl_Pron)))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TPast ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumSg) (UseN car_N)) (ComplSlash (Pass2V4 kaufen_bei_fuer_V4 (DetCN much_Det (UseN gold_N))) (UsePron youSg_Pron))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TPast ASimul) PPos (PredVP (UsePron i_Pron) (PassVPSlash (Slash3V3 debattieren_mit_ueber_V3 (DetCN (DetQuant DefArt NumSg) (UseN book_N))))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TPast ASimul) PNeg (PredVP (UsePron i_Pron) (PassVPSlash (Slash3V3 debattieren_mit_ueber_V3 (DetCN (DetQuant DefArt NumSg) (UseN book_N))))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TPres AAnter) PPos (PredVP (DetCN (DetQuant DefArt NumSg) (UseN book_N)) (PassVPSlash (Slash2V3 debattieren_mit_ueber_V3 (UsePron i_Pron)))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TPres AAnter) PNeg (PredVP (DetCN (DetQuant DefArt NumSg) (UseN book_N)) (PassVPSlash (Slash2V3 debattieren_mit_ueber_V3 (UsePron i_Pron)))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumPl) (UseN friend_N)) (Pass2V3 lehren_V3 (DetCN (DetQuant DefArt NumSg) (UseN science_N)))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumPl) (UseN friend_N)) (PassVPSlash (Slash2V3 lehren_V3 (DetCN (DetQuant DefArt NumSg) (UseN science_N))))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumPl) (UseN friend_N)) (PassVPSlash (Slash3V3 lehren_V3 (DetCN (DetQuant DefArt NumSg) (UseN science_N))))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron he_Pron) (Pass2V3 lehren_V3 (DetCN (DetQuant DefArt NumSg) (UseN science_N)))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron he_Pron) (PassVPSlash (Slash2V3 lehren_V3 (DetCN (DetQuant DefArt NumSg) (UseN science_N))))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron he_Pron) (PassVPSlash (Slash3V3 lehren_V3 (DetCN (DetQuant DefArt NumSg) (UseN science_N))))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron he_Pron) (Pass2V3 lehren_V3 (UsePron she_Pron))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron he_Pron) (Pass2V3 lehren_V3 (UsePron they_Pron))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron he_Pron) (PassVPSlash (Slash2V3 lehren_V3 (UsePron she_Pron)))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron he_Pron) (PassVPSlash (Slash2V3 lehren_V3 (UsePron they_Pron)))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron he_Pron) (PassVPSlash (Slash3V3 lehren_V3 (UsePron she_Pron)))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron he_Pron) (PassVPSlash (Slash3V3 lehren_V3 (UsePron they_Pron)))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron she_Pron) (Pass2V3 lehren_V3 (UsePron he_Pron))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron she_Pron) (PassVPSlash (Slash2V3 lehren_V3 (UsePron he_Pron)))))) NoVoc + PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron she_Pron) (PassVPSlash (Slash3V3 lehren_V3 (UsePron he_Pron)))))) NoVoc diff --git a/tests/german/passive.txt b/tests/german/passive.txt new file mode 100644 index 000000000..2c7fb00fd --- /dev/null +++ b/tests/german/passive.txt @@ -0,0 +1,110 @@ +-- Passive of V2 + +du wirst unterrichtet -- accept (dirV2) +sie wird nicht angeschaut -- accept (dirV2 + prefixV) +auf euch wird nicht gewartet -- accept (prepV2) +es wird auf euch gewartet -- accept (wrong trees: VPSlashPrep, become_VA, PrepNP) +es wird auf euch nicht gewartet -- accept (not recognized) + +ihr wurde nicht zugehört -- accept (V2 + dat) (PassVPSlash) + +-- Passive of V2A, V2S, V2Q + +der Wagen wurde nicht blau gemalt -- accept (V2A) (PassVPSlash) +wir fragen dich , ob du kommen wirst -- accept +du wirst gefragt , ob du kommen wirst -- accept (V2Q) (PassVPSlash) +du wirst nicht gefragt , ob du nicht kommen willst -- accept +wir antworten dir , dass es regnet -- accept +dir wird geantwortet , dass es regnet -- accept (V2S) (PassVPSlash) + +wir bitten dich , das Buch zu lesen -- accept +du wirst gebeten , das Buch zu lesen -- accept (V2V) +du wirst gebeten das Buch zu lesen -- accept (V2V) (not recognized) +du wirst das Buch zu lesen gebeten -- accept (V2V) (recognized) + +er wird gebeten , sich das Buch zu merken -- accept (V2V) (PassVPSlash) +ich werde gebeten , mir das Buch zu merken -- accept (not recognized) ext:Str, need ext:Agr=>Str + +-- Passive of VPSlash and V3 + +sie gibt uns den Wagen -- accept + +der Wagen wird uns gegeben -- accept, via PassVPSlash or Pass2V3 +uns wird der Wagen gegeben -- accept, word order variant (not recognized) +wir bekommen den Wagen gegeben -- accept, via Pass3V3 + +sie schickte uns den Wagen -- accept (Eng with prep) + -- uns:dat+Wagen:sg,acc | uns:acc,Wagen:pl,dat + +der Wagen wurde uns geschickt -- accept, via PassVPSlash +uns wurde der Wagen geschickt -- accept, word order variant (not recognized) +wir bekamen den Wagen geschickt -- accept, via Pass3V3 + +der Wagen würde uns geschickt werden -- accept +der Wagen würde uns nicht geschickt werden -- accept +wir würden den Wagen geschickt bekommen -- accept +wir würden den Wagen nicht geschickt bekommen -- accept +wir würden nicht den Wagen geschickt bekommen -- accept ? + +der Wagen sei uns geschickt worden -- accept +wir hätten den Wagen geschickt bekommen -- accept + +wir wollen den Wagen geschickt bekommen -- accept +wir würden den Wagen geschickt bekommen wollen haben -- accept, dubiuos +wir würden den Wagen geschickt haben bekommen wollen -- reject, dubious + +sie erklärten uns den Wagen nicht -- accept +der Wagen wurde uns nicht erklärt -- accept +wir bekamen den Wagen nicht erklärt -- accept +uns wurde den Wagen erklärt -- reject (bug in PassVPSlash) + +wir danken euch nicht für das Gold -- accept +euch wird nicht für das Gold gedankt -- accept +für die Bücher wird euch gedankt -- accept +für die Bücher wird euch nicht gedankt -- accept, dubious +für die Bücher wird nicht euch gedankt -- dubious + +wir kaufen den Wagen bei dir für Gold -- accept +der Wagen wird bei dir für Gold gekauft -- accept (not parsed) +der Wagen wurde für viel Gold bei dir gekauft -- accept (Obj.order: kaufen_bei_fuer) + +-- Passive with main verb v:V4 + +sie debattieren mit mir über das Buch -- accept +sie debattieren nicht mit mir über das Buch -- accept + +mit mir wurde über das Buch debattiert -- accept +mit mir wurde nicht über das Buch debattiert -- accept +über das Buch ist mit mir debattiert worden -- accept +über das Buch ist nicht mit mir debattiert worden -- accept, dubious +über das Buch ist mit mir nicht debattiert worden -- accept, dubious + +-- Passive with main verb v:3 + acc + acc + +wir lehren unseren Freund die Wissenschaft -- accept +wir lehren die Wissenschaft unseren Freund -- reject +wir lehren sie ihn -- accept (die Frau den Bauchtanz) +wir lehren ihn sie -- accept + +die Freunde werden die Wissenschaft gelehrt -- accept +die Wissenschaft wird die Freunde gelehrt -- reject +er wird die Wissenschaft gelehrt -- accept +er wird sie gelehrt -- accept +sie wird ihn gelehrt -- accept + +-- Passive of V2Q, V2S, V2V + +du wirst nicht gefragt , ob du kommen willst -- accept (V2Q) +uns wurde nicht geantwortet , daß ihr kommt -- accept (V2S) + +du wirst gebeten , zu kommen -- accept (PassV2V) +du wirst nicht gebeten , zu kommen -- accept (PassV2V) +du wirst nicht gebeten , nicht zu kommen -- accept (not recognized, dubious) +du wirst nicht gebeten , das Buch zu lesen -- accept +du wirst nicht gebeten , sich zu ändern -- accept (dubious: dich/sich) +du wirst nicht gebeten , dich zu fragen , ob du mir das Buch schicken willst -- accept +mir wurde versprochen , das Buch zu lesen -- accept (PassV2V) + +wir bitten euch euch zu fragen , ob ihr kommt -- accept (dubious : missing comma) +wir bitten dich dich zu ändern -- dubious (comma) + From 55dac61fe5f5dbc8b9e504cbea88a23388b2cdb8 Mon Sep 17 00:00:00 2001 From: Aarne Ranta Date: Thu, 19 Sep 2019 10:33:01 +0200 Subject: [PATCH 31/85] fixed the order of Fre.mkA. It should always be: SgMasc,(SgMascVoc,)SgFem,PlMasc,PlFem,Adv --- src/french/LexiconFre.gf | 6 +++--- src/french/MorphoFre.gf | 4 ++-- src/french/ParadigmsFre.gf | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/french/LexiconFre.gf b/src/french/LexiconFre.gf index 0203a9fa5..c94efccce 100644 --- a/src/french/LexiconFre.gf +++ b/src/french/LexiconFre.gf @@ -18,7 +18,7 @@ lin bad_A = prefA (mkADeg (regA "mauvais") (regA "pire")) ; bank_N = regGenN "banque" feminine ; beautiful_A = - prefA (compADeg (mkA "beau" "bel" "beaux" "belle" "bellement")) ; + prefA (compADeg (mkA "beau" "bel" "belle" "beaux" "bellement")) ; become_VA = mkVA devenir_V ; beer_N = regGenN "bière" feminine ; beg_V2V = mkV2V (regV "demander") accusative dative ; @@ -129,11 +129,11 @@ lin music_N = regGenN "musique" feminine ; narrow_A = regA "étroit" ; new_A = - prefA (compADeg (mkA "nouveau" "nouvel" "nouveaux" "nouvelle" "nouvellement")) ; + prefA (compADeg (mkA "nouveau" "nouvel" "nouvelle" "nouveaux" "nouvellement")) ; newspaper_N = regGenN "journal" masculine ; oil_N = regGenN "huile" feminine ; old_A = - prefA (compADeg (mkA "vieux" "vieil" "vieux" "vieille" "vieillement")) ; + prefA (compADeg (mkA "vieux" "vieil" "vieille" "vieux" "vieillement")) ; open_V2 = ouvrir_V2 ; paint_V2A = mkV2A (v2V peindre_V2) accusative (mkPrep "en") ; paper_N = regGenN "papier" masculine ; diff --git a/src/french/MorphoFre.gf b/src/french/MorphoFre.gf index 87d6c3ef9..b87c55b24 100644 --- a/src/french/MorphoFre.gf +++ b/src/french/MorphoFre.gf @@ -73,7 +73,7 @@ oper -- Here are some patterns. First one that describes the worst case. mkAdj' : (_,_,_,_,_ : Str) -> Adj ; - mkAdj' vieux vieil vieuxs vieille vieillement = { + mkAdj' vieux vieil vieille vieuxs vieillement = { s = table { ASg Masc _ => pre {#voyelle => vieil ; "h" => vieil ; _ => vieux} ; ASg Fem _ => vieille ; @@ -83,7 +83,7 @@ oper } ; mkAdj : (_,_,_,_ : Str) -> Adj ; - mkAdj bleu bleus bleue bleuement = mkAdj' bleu bleu bleus bleue bleuement ; + mkAdj bleu bleue bleus bleuement = mkAdj' bleu bleu bleue bleus bleuement ; -- Then the regular and invariant patterns. diff --git a/src/french/ParadigmsFre.gf b/src/french/ParadigmsFre.gf index c3cc68887..cccc5ac51 100644 --- a/src/french/ParadigmsFre.gf +++ b/src/french/ParadigmsFre.gf @@ -394,7 +394,7 @@ oper } ; mk4A masc fem mascpl aa = mk5A masc masc fem mascpl aa ; - mk5A masc masc fem mascpl aa = compADeg {s = \\_ => (mkAdj' masc masc mascpl fem aa).s ; isPre = False ; copTyp = serCopula ; lock_A = <>} ; + mk5A masc mascv fem mascpl aa = compADeg {s = \\_ => (mkAdj' masc mascv fem mascpl aa).s ; isPre = False ; copTyp = serCopula ; lock_A = <>} ; regA a = compADeg {s = \\_ => (mkAdjReg a).s ; isPre = False ; copTyp = serCopula ; lock_A = <>} ; prefA a = {s = a.s ; isPre = True ; copTyp = a.copTyp ; lock_A = <>} ; adjCopula a cop = a ** {copTyp = cop} ; From 4ee46171a918b57ce297581ebd63607bca53a38e Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Mon, 23 Sep 2019 22:04:23 +0200 Subject: [PATCH 32/85] (Som) WIP negative questions --- src/somali/ResSom.gf | 36 +++++++++++++++++++++++------------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/src/somali/ResSom.gf b/src/somali/ResSom.gf index d1f7032cf..8a692c986 100644 --- a/src/somali/ResSom.gf +++ b/src/somali/ResSom.gf @@ -1017,7 +1017,9 @@ oper -> Str ; vf : ClType -> VFun = \clt -> case clt of { - Subord => vfSubord ; _ => vfStatement } ; + Subord => vfSubord ; + Question => vfQuestion ; + _ => vfStatement } ; vfStatement : VFun = \t,ant,p,agr,vp -> case of { @@ -1030,20 +1032,28 @@ oper => vp.s ! VInf ++ presV (cSug "doon") ; => vp.s ! VInf ++ pastV (cSug "doon") } - where { - agrPol : {agr:Agreement ; pol:Polarity} = {agr=agr; pol=p} ; - pastV : BaseVerb -> Str = \v -> - case p of { Neg => v.s ! VNegPast Simple ; - Pos => v.s ! VPast Simple (agr2vagr agr) } ; + where { + agrPol : {agr:Agreement ; pol:Polarity} = {agr=agr; pol=p} ; + pastV : BaseVerb -> Str = \v -> + case p of { Neg => v.s ! VNegPast Simple ; + Pos => v.s ! VPast Simple (agr2vagr agr) } ; - presV : BaseVerb -> Str = \v -> v.s ! VPres Simple (agr2vagr agr) p ; + presV : BaseVerb -> Str = \v -> v.s ! VPres Simple (agr2vagr agr) p ; - condNegV : BaseVerb -> Str = \v -> case agr of { - Sg2|Sg3 Fem - |Pl2 => v.s ! VNegCond SgFem ; - Pl1 _ => v.s ! VNegCond PlInv ; - _ => v.s ! VNegCond SgMasc --Sg1|Sg3 Masc|Pl3|Impers -} + condNegV : BaseVerb -> Str = \v -> case agr of { + Sg2|Sg3 Fem + |Pl2 => v.s ! VNegCond SgFem ; + Pl1 _ => v.s ! VNegCond PlInv ; + _ => v.s ! VNegCond SgMasc --Sg1|Sg3 Masc|Pl3|Impers + } + } ; + + vfQuestion : VFun = \t,ant,p,agr,vp -> + case of { + <_,_,Neg> => vp.s ! VInf ++ vfStatement t ant p agr (useV waa_V) ; + _ => vfStatement t ant p agr vp + } where { + waa_V = cSug "waa" ; ---- TODO irregular verb } ; vfSubord : VFun = \t,ant,p,agr,vp -> From 4dd9b92354d8186f78b830e6255c32a607086939 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Tue, 24 Sep 2019 17:28:48 +0200 Subject: [PATCH 33/85] (Som) more on negative questions --- src/somali/ResSom.gf | 25 ++++++++++++++++++++----- 1 file changed, 20 insertions(+), 5 deletions(-) diff --git a/src/somali/ResSom.gf b/src/somali/ResSom.gf index 8a692c986..c564ddc93 100644 --- a/src/somali/ResSom.gf +++ b/src/somali/ResSom.gf @@ -682,6 +682,23 @@ oper x => hold_V.s ! x } } ; + fail_V : Verb = + let waa_V : Verb = cSug "waay" in waa_V ** { + s = table { + VPres _ Sg2_Sg3Fem _ + => "waayday" ; + VPast _ Sg1_Sg3Masc + => "waayey" ; + VPast _ Sg2_Sg3Fem + => "weydey" ; + VPast _ Pl1_ => "weyney" ; + VPast _ Pl2_ => "weydeen" ; + VPast _ Pl3_ => "waayeen" ; + VInf => "waayi" ; + x => waa_V.s ! x -- TODO actual forms + } + } ; + ------------------ -- Adv @@ -1050,10 +1067,8 @@ oper vfQuestion : VFun = \t,ant,p,agr,vp -> case of { - <_,_,Neg> => vp.s ! VInf ++ vfStatement t ant p agr (useV waa_V) ; + <_,_,Neg> => vp.s ! VInf ++ vfStatement t ant Pos agr (useV fail_V) ; _ => vfStatement t ant p agr vp - } where { - waa_V = cSug "waa" ; ---- TODO irregular verb } ; vfSubord : VFun = \t,ant,p,agr,vp -> @@ -1071,8 +1086,8 @@ oper case of { => showSTM stm ; => "ma" ; - => "ma" ; - => "sow" ; + => "ma" ; -- neg. questions are formed with waayaa 'fail to do X', so they are syntactically positive +-- => "sow" ; -- for true negative questions => [] ; => "aan" } ; From 9973349270ee1382d2d717926d0b48cfff0e69bf Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Wed, 25 Sep 2019 10:47:21 +0200 Subject: [PATCH 34/85] (Som) Minor cleanup --- src/somali/LexiconSom.gf | 2 +- src/somali/ParadigmsSom.gf | 30 ++++++++++++++++-------------- src/somali/ParamSom.gf | 4 ++-- src/somali/ResSom.gf | 6 ------ 4 files changed, 19 insertions(+), 23 deletions(-) diff --git a/src/somali/LexiconSom.gf b/src/somali/LexiconSom.gf index 8e3bf3439..585b1fcc3 100644 --- a/src/somali/LexiconSom.gf +++ b/src/somali/LexiconSom.gf @@ -253,7 +253,7 @@ lin name_N = mkN "magac" ; -- lin oil_N = mkN "" ; -- lin old_A = mkA "" ; -- lin open_V2 = mkV2 "" ; -lin paint_V2A = mkV2 "rinjiyee" ; +lin paint_V2A = mkV2A "rinjiyee" ; -- lin paper_N = mkN "" ; -- lin paris_PN = mkPN "Paris" ; -- lin peace_N = mkN "" ; diff --git a/src/somali/ParadigmsSom.gf b/src/somali/ParadigmsSom.gf index 68ae50476..075709608 100644 --- a/src/somali/ParadigmsSom.gf +++ b/src/somali/ParadigmsSom.gf @@ -32,7 +32,6 @@ oper u : Preposition ; noPrep : Preposition ; - -- TODO: add subjunctive too! VVForm : Type ; -- Argument to give to mkVV infinitive : VVForm ; -- Takes its complement in infinitive subjunctive : VVForm ; -- Takes its complement as a clause in subjunctive @@ -46,7 +45,6 @@ oper mkN : (shimbir : Str) -> (fem : Gender) -> N ; -- Unpredictable gender -- mkN : (nin, niman : Str) -> N ; -- Monosyllable word with unpredictable plural mkN : (maalin,maalmo : Str) -> Gender -> N ; -- Consonant cluster in stem - --mkN : N -> Gender -> N ; -- Otherwise predictable but not gender (TODO does this even happen?) } ; mkN2 : overload { @@ -94,21 +92,25 @@ oper mkVV : overload { mkVV : (kar : Str) -> VV ; -- VV that takes its complement in infinitive. mkVV : (rab : Str) -> VVForm -> VV ; -- Specify complement type: infinitive or subjunctive. - mkVV : V -> VVForm -> VV ; -- VV out of an existing V + mkVV : V -> VVForm -> VV ; -- VV out of an existing V } ; - -- TODO: actual constructors - -- mkVA : Str -> VA = \s -> lin VA (mkVerb s) ; - -- - -- mkV2A : Str -> V2A = \s -> lin V2A (mkVerb s) ; - -- mkVQ : Str -> VQ = \s -> lin VQ (mkVerb s) ; - -- mkVS : Str -> VS = \s -> lin VS (mkVerb s) ; - -- - -- mkV2V : Str -> V2V = \s -> lin V2V (mkVerb s) ; - -- mkV2S : Str -> V2S = \s -> lin V2S (mkVerb s) ; - -- mkV2Q : Str -> V2Q = \s -> lin V2Q (mkVerb s) ; - -- mkV3 : Str -> V3 = \s -> lin V3 (mkVerb s) ; + mkVA : Str -> VA + = \s -> lin VA (regV s) ; + mkVQ : Str -> VQ + = \s -> lin VQ (regV s) ; + mkVS : Str -> VS + = \s -> lin VS (regV s) ; + + mkV2A : Str -> V2A + = \s -> lin V2A (regV s ** {c2 = noPrep}) ; + mkV2V : Str -> V2V + = \s -> lin V2V (regV s ** {c2 = noPrep}) ; + mkV2S : Str -> V2S + = \s -> lin V2S (regV s ** {c2 = noPrep}) ; + mkV2Q : Str -> V2Q + = \s -> lin V2Q (regV s ** {c2 = noPrep}) ; ----- diff --git a/src/somali/ParamSom.gf b/src/somali/ParamSom.gf index a0807732f..692f758eb 100644 --- a/src/somali/ParamSom.gf +++ b/src/somali/ParamSom.gf @@ -192,7 +192,7 @@ oper case n.gda of {FM _ _ => Fem ; _ => Masc} ; gennum : {gda : GenderDefArt} -> Number -> GenNum = \gda,n -> - case n of {Pl => PlInv ; Sg => + case n of {Pl => PlInv ; Sg => case gda.gda of {FM _ _ => SgFem ; _ => SgMasc} } ; @@ -223,7 +223,7 @@ param Preposition = U | Ku | Ka | La | NoPrep ; PrepCombination = Ugu | Uga | Ula | Kaga | Kula | Kala - | Passive | Lagu | Laga | Loo | Lala -- TODO all combinations with impersonal la + | Passive | Loo | Lagu | Laga | Lala -- TODO all combinations with impersonal la: Loogu, Looga, Loola, Lagaga, Lagula, Lagala | Single Preposition ; oper diff --git a/src/somali/ResSom.gf b/src/somali/ResSom.gf index c564ddc93..bb07ed0d7 100644 --- a/src/somali/ResSom.gf +++ b/src/somali/ResSom.gf @@ -404,12 +404,6 @@ oper Passive => "laydin" ; Loo => "laydiin" ; Lala => "laydinla" ; Lagu => "laydinku" ; Laga => "laydinka" ; Single p => (prepTable ! p).s ! Pl2_Prep } ; - -- Impers_Prep => -- TODO: put these later into other tables - -- table { Ugu => "loogu" ; Uga => "looga" ; - -- Ula => "loola" ; Kaga => "lagaga" ; - -- Kula => "lagula" ; Kala => "lagala" ; - -- Passive => "la" ; - -- Lagu => "lagu" ; Laga => "laga" ; } ; Reflexive_Prep => -- TODO check every form table { Ugu => "isugu" ; Uga => "isuga" ; Ula => "isula" ; Kaga => "iskaga" ; Kula => "iskula" ; Kala => "iskala" ; From 1f62af0e2c42a37c6ea5b86828a4f37d13c7b12a Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Wed, 25 Sep 2019 11:53:27 +0200 Subject: [PATCH 35/85] (Som) Add ImpVP and UttImp{Sg,Pl,Pol} --- src/somali/CatSom.gf | 2 +- src/somali/PhraseSom.gf | 8 +++++--- src/somali/SentenceSom.gf | 6 +++--- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/src/somali/CatSom.gf b/src/somali/CatSom.gf index 52af918d0..eb1747c78 100644 --- a/src/somali/CatSom.gf +++ b/src/somali/CatSom.gf @@ -16,7 +16,7 @@ concrete CatSom of Cat = CommonX - [Adv,IAdv] ** open ResSom, Prelude in { Cl = ResSom.ClSlash ; ClSlash = ResSom.ClSlash ; SSlash = ResSom.Sentence ; -- sentence missing NP; e.g. "she has looked at" - Imp = SS ; -- imperative e.g. "look at this" + Imp = {s : Number => Polarity => Str} ; -- imperative e.g. "look at this" --2 Questions and interrogatives diff --git a/src/somali/PhraseSom.gf b/src/somali/PhraseSom.gf index c9c18c396..0a20b76e4 100644 --- a/src/somali/PhraseSom.gf +++ b/src/somali/PhraseSom.gf @@ -8,9 +8,11 @@ concrete PhraseSom of Phrase = CatSom ** open Prelude, ResSom in { UttIAdv iadv = iadv ; UttImpSg pol imp = - let ma = case pol.p of { Pos => [] ; Neg => "ma" } - in { s = ma ++ imp.s } ; - UttImpPl = UttImpSg ; + let ha = case pol.p of {Pos => [] ; Neg => "ha"} + in {s = ha ++ imp.s ! Sg ! pol.p} ; + UttImpPl pol imp = + let ha = case pol.p of {Pos => [] ; Neg => "ha"} + in {s = ha ++ imp.s ! Pl ! pol.p} ; UttImpPol = UttImpSg ; UttIP ip = {s = ip.s ! Abs} ; diff --git a/src/somali/SentenceSom.gf b/src/somali/SentenceSom.gf index e09de077b..27167f21f 100644 --- a/src/somali/SentenceSom.gf +++ b/src/somali/SentenceSom.gf @@ -29,12 +29,12 @@ lin -- : Temp -> Pol -> ClSlash -> SSlash ; -- (that) she had not seen UseSlash t p cls = { s = \\isSubord => let cl = cl2sentence isSubord cls in - t.s ++ p.s ++ cl.s ! t.t ! t.a ! p.p + t.s ++ p.s ++ cl.s ! t.t ! t.a ! p.p } ; --2 Imperatives -- : VP -> Imp ; - --ImpVP vp = { s = linVP vp } ; + ImpVP vp = {s = \\num,pol => linVP (VImp num pol) Statement vp} ; --2 Embedded sentences @@ -54,7 +54,7 @@ lin -- : Temp -> Pol -> Cl -> S ; UseCl t p cls = { s = \\isSubord => let cl = cl2sentence isSubord cls in - t.s ++ p.s ++ cl.s ! t.t ! t.a ! p.p + t.s ++ p.s ++ cl.s ! t.t ! t.a ! p.p } ; -- : Temp -> Pol -> QCl -> QS ; From 36997f0dd493c9a50f3d2793813d3a5a1cbfadb3 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Wed, 25 Sep 2019 12:06:05 +0200 Subject: [PATCH 36/85] (Som) Add unit tests for all TAM inflections of a single verb --- src/somali/unittest/inflection.gftest | 62 +++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 src/somali/unittest/inflection.gftest diff --git a/src/somali/unittest/inflection.gftest b/src/somali/unittest/inflection.gftest new file mode 100644 index 000000000..69b9be7ce --- /dev/null +++ b/src/somali/unittest/inflection.gftest @@ -0,0 +1,62 @@ +-- Examples from Saeed p. 119 + +-------------- +-- Positive -- +-------------- + +-- Declarative +-- LangEng: he/she/it waits (for him/her/it) +Lang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron it_Pron) (ComplSlash (SlashV2a wait_V2) (UsePron it_Pron))))) NoVoc +LangSom: waa sugaa + +-- Interrogative +-- LangEng: does he/she/it wait (for him/her/it) +Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPres ASimul) PPos (QuestCl (PredVP (UsePron it_Pron) (ComplSlash (SlashV2a wait_V2) (UsePron it_Pron)))))) NoVoc +LangSom: ma sugaa + +-- Imperative +-- LangEng: wait for it (sg and pl) +Lang: PhrUtt NoPConj (UttImpSg PPos (ImpVP (ComplSlash (SlashV2a wait_V2) (UsePron it_Pron)))) NoVoc +LangSom: sug + +Lang: PhrUtt NoPConj (UttImpPl PPos (ImpVP (ComplSlash (SlashV2a wait_V2) (UsePron it_Pron)))) NoVoc +LangSom: suga + +-- Conditional +-- LangEng: he/she/it would wait (for him/her/it) +Lang: PhrUtt NoPConj (UttS (UseCl (TTAnt TCond ASimul) PPos (PredVP (UsePron it_Pron) (ComplSlash (SlashV2a wait_V2) (UsePron it_Pron))))) NoVoc +LangSom: waa sugi lahaa + +-- Optative and potential not implemented (yet?) + + +-------------- +-- Negative -- +-------------- + +-- Declarative +-- LangEng: he/she/it doesn't wait (for him/her/it) +Lang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PNeg (PredVP (UsePron it_Pron) (ComplSlash (SlashV2a wait_V2) (UsePron it_Pron))))) NoVoc +LangSom: ma sugo + +-- Interrogative 1: TODO +-- LangEng: does he/she/it wait (for him/her/it) +-- Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPres ASimul) PNeg (QuestCl (PredVP (UsePron it_Pron) (ComplSlash (SlashV2a wait_V2) (UsePron it_Pron)))))) NoVoc +-- LangSom: ma sugaa + +-- LangEng: why doesn't it wait for it +Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPres ASimul) PNeg (QuestIAdv why_IAdv (PredVP (UsePron it_Pron) (ComplSlash (SlashV2a wait_V2) (UsePron it_Pron)))))) NoVoc +LangSom: maxaa u sugi waayaa + +-- Imperative +-- LangEng: don't wait for it (sg and pl) +Lang: PhrUtt NoPConj (UttImpSg PNeg (ImpVP (ComplSlash (SlashV2a wait_V2) (UsePron it_Pron)))) NoVoc +LangSom: ha sugin + +Lang: PhrUtt NoPConj (UttImpPl PNeg (ImpVP (ComplSlash (SlashV2a wait_V2) (UsePron it_Pron)))) NoVoc +LangSom: ha sugina + +-- Conditional +-- LangEng: he/she/it wouldn't wait (for him/her/it) +Lang: PhrUtt NoPConj (UttS (UseCl (TTAnt TCond ASimul) PNeg (PredVP (UsePron it_Pron) (ComplSlash (SlashV2a wait_V2) (UsePron it_Pron))))) NoVoc +LangSom: ma sugeen From 0a5e9f426643614d98f1d99c334ead147c5f11b7 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Wed, 25 Sep 2019 12:21:09 +0200 Subject: [PATCH 37/85] (Som) Some notes about conjunctions --- src/somali/StructuralSom.gf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/somali/StructuralSom.gf b/src/somali/StructuralSom.gf index 560691693..c66b9f9fe 100644 --- a/src/somali/StructuralSom.gf +++ b/src/somali/StructuralSom.gf @@ -40,10 +40,10 @@ lin there_Adv = ss "" ; -- Conj lin and_Conj = {s2 = table {Definite => "ee" ; Indefinite => "oo"} ; s1 = [] ; n = Pl} ; -lin or_Conj = {s2 = \\_ => "ama" ; s1 = [] ; n = Sg} ; -- mise with interrogatives +lin or_Conj = {s2 = \\_ => "ama" ; s1 = [] ; n = Sg} ; -- mise with interrogatives; Saeed p. 122-123: "Note that the clause introduced by misé has the form of a declarative not an interrogative though the whole sentence is interpreted as a question." -- lin if_then_Conj = mkConj -- lin both7and_DConj = mkConj "" "" pl ; --- lin either7or_DConj = mkConj "" "" pl ; +lin either7or_DConj = {s2 = \\_ => "ama" ; s1 = "ama" ; n = Sg} ; -- -- lin but_PConj = ss "" ; -- lin otherwise_PConj = ss "" ; From 51c4f1bce75a0811763633430ef9086f2c582bc4 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Wed, 25 Sep 2019 16:50:20 +0200 Subject: [PATCH 38/85] (Som) Split polar questions and wh-questions to separate types --- src/somali/ParamSom.gf | 2 +- src/somali/QuestionSom.gf | 22 ++++++++----------- src/somali/ResSom.gf | 46 +++++++++++++++++++++++++-------------- 3 files changed, 40 insertions(+), 30 deletions(-) diff --git a/src/somali/ParamSom.gf b/src/somali/ParamSom.gf index 692f758eb..1c93f6815 100644 --- a/src/somali/ParamSom.gf +++ b/src/somali/ParamSom.gf @@ -336,6 +336,6 @@ oper param - ClType = Statement | Question | Subord ; + ClType = Statement | PolarQuestion | WhQuestion | Subord ; } diff --git a/src/somali/QuestionSom.gf b/src/somali/QuestionSom.gf index 8bd064559..f1dd7f17a 100644 --- a/src/somali/QuestionSom.gf +++ b/src/somali/QuestionSom.gf @@ -6,30 +6,31 @@ concrete QuestionSom of Question = CatSom ** open lin -- : Cl -> QCl ; - QuestCl = cl2qcl True; + QuestCl = cl2qcl PolarQuestion True; -- : IP -> VP -> QCl ; QuestVP ip vp = -- TODO: if we want to contract baa + subj. pronoun, change ResSom.predVP let cls : ClSlash = predVP ip vp ; + baan : Str = case ip.contractSTM of {True => "aan" ; _ => "baa aan"} ; cl : ClSlash = cls ** { - stm = modSTM "baa" cls.stm + stm = modSTM "baa" baan cls.stm } ; - in cl2qcl (notB ip.contractSTM) cl ; + in cl2qcl PolarQuestion (notB ip.contractSTM) cl ; -- : IP -> ClSlash -> QCl ; -- whom does John love QuestSlash ip cls = - let clsIPFocus = cls ** { + let baan : Str = case ip.contractSTM of {True => "aan" ; _ => "baa aan"} ; + clsIPFocus = cls ** { subj = cls.subj ** { -- keep old subject pronoun, noun = ip.s ! Nom -- and place IP first. } ; obj2 = cls.obj2 ** { -- move old subject noun before object. s = cls.subj.noun ++ cls.obj2.s } ; - stm = modSTM "baa" cls.stm + stm = modSTM "baa" baan cls.stm } ; in cl2qclslash (notB ip.contractSTM) clsIPFocus ; - -- : IAdv -> Cl -> QCl ; -- why does John walk QuestIAdv iadv cls = let clRaw : ClSlash = insertIAdv iadv cls ; @@ -40,17 +41,12 @@ concrete QuestionSom of Question = CatSom ** open <_,Pos> => case iadv.contractSTM of { True => [] ; _ => "baa"} ++ sbj.pron ++ sbj.noun ; - -- TODO how do negative questions work - -- Information questions are not commonly used in negative forms. When they occur they have the same forms as negative declaratives with focus (7.4.1). There is however a strong tendency to use positive forms, for example by subordinating the clause under a verb with an inherently negative meaning: - -- Maxaad u tegi weydey? - -- what+FOC+you for go:INF failed - -- 'Why didn't you go?' (lit. 'Why did you fail to go?') _ => case iadv.contractSTM of { - True => [] ; _ => clRaw.stm ! Question ! p} + True => [] ; _ => clRaw.stm ! WhQuestion ! p} ++ sbj.pron ++ sbj.noun } ; subj = sbj ** {noun, pron = []} -- to force subject after baa } ; - in cl2qcl True cl ; -- True because we handle STM placement in cl.stm + in cl2qcl WhQuestion True cl ; -- True because we handle STM placement in cl.stm -- : IComp -> NP -> QCl ; -- where is John? QuestIComp icomp np = diff --git a/src/somali/ResSom.gf b/src/somali/ResSom.gf index bb07ed0d7..2cf004fcf 100644 --- a/src/somali/ResSom.gf +++ b/src/somali/ResSom.gf @@ -888,7 +888,7 @@ oper _ => predRaw -- Any other verb } ; - stm = mkStm vp.stm ; + stm = mkStm subj.a vp.stm ; comp = vp.comp ! subj.a ; vComp = vp.vComp ** { subcl = vp.vComp.subcl ! subj.a @@ -942,16 +942,16 @@ oper in mkClause Subord isRel hasSubjPron hasSTM ; -- Question clauses: subject pronoun not included, STM is - cl2qcl : Bool -> ClSlash -> Clause = + cl2qcl : ClType -> Bool -> ClSlash -> Clause = \cltyp -> let hasSubjPron : Bool = False ; isRel : Bool = False ; - in mkClause Question isRel hasSubjPron ; + in mkClause cltyp isRel hasSubjPron ; -- Question clauses: subject pronoun is included cl2qclslash : Bool -> ClSlash -> Clause = let hasSubjPron : Bool = True ; isRel : Bool = False ; - in mkClause Question isRel hasSubjPron ; + in mkClause PolarQuestion isRel hasSubjPron ; -- Sentence: include subject pronoun and STM. -- When subordinate, include "in". @@ -990,7 +990,7 @@ oper Subord => obj.p1 ; _ => [] } ; questionNounObj = case cltyp of { - Question => obj.p1 ; + PolarQuestion|WhQuestion => obj.p1 ; _ => [] } ; -- Control whether to include subject pronoun and STM @@ -1028,9 +1028,9 @@ oper -> Str ; vf : ClType -> VFun = \clt -> case clt of { - Subord => vfSubord ; - Question => vfQuestion ; - _ => vfStatement } ; + Subord => vfSubord ; + WhQuestion => vfQuestion ; -- INF + waayaa 'why did you fail to go' + _ => vfStatement } ; vfStatement : VFun = \t,ant,p,agr,vp -> case of { @@ -1075,22 +1075,36 @@ oper STMarker : Type = ClType => Polarity => Str ; - mkStm : STM -> STMarker = \stm -> + -- NB. Agreement is used only for negative questions. If we want to change it + -- in other sentence types, we need to change predVP and mkClause accordingly; + -- certain VVs put stuff between STM and subject pronoun. Some VVs render now + -- incorrectly in negative questions. + mkStm : Agreement -> STM -> STMarker = \agr,stm -> \\cltyp,pol => case of { => showSTM stm ; => "ma" ; - => "ma" ; -- neg. questions are formed with waayaa 'fail to do X', so they are syntactically positive --- => "sow" ; -- for true negative questions => [] ; - => "aan" + => "aan" ; + => "ma" ; -- neg. wh-questions are formed with waayaa 'fail to do sth', so they are syntactically positive + => "ma" ; + => case agr of { -- Negative question in past tense has only one form, need subject pronoun to know what the subject is. + Sg1 => "miyaanan" ; -- Saeed p. 200 + Sg2 => "miyaanad" ; -- Saeed p. 200 + Sg3 Masc => "miyaanu" ; -- Saeed p. 200 + Sg3 Fem => "miyaanay" ; -- ??? + Pl1 Excl => "miyaanaannu" ; -- ??? + Pl1 Incl => "miyaanaynu" ; -- ??? + Pl2 => "miyaanaydin" ; -- ??? + Pl3 => "miyaanay" ; -- ??? + Impers => "ma aan" } -- not merged } ; - modSTM : Str -> STMarker -> STMarker = \str,stm -> + modSTM : (pos, neg : Str) -> STMarker -> STMarker = \pos,neg,stm -> \\cltyp,pol => - case of { - <_,Pos> => str ; - _ => stm ! cltyp ! pol + case pol of { + Pos => pos ; + _ => neg } ; -------------------------------------------------------------------------------- -- linrefs From b18890896950b50f9917bcd1720fc71b4ce6e534 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Wed, 25 Sep 2019 16:50:33 +0200 Subject: [PATCH 39/85] (Som) Updates to some unit tests --- src/somali/unittest/inflection.gftest | 4 ++-- src/somali/unittest/qcl.gftest | 12 +++++++++++- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/src/somali/unittest/inflection.gftest b/src/somali/unittest/inflection.gftest index 69b9be7ce..9f544c856 100644 --- a/src/somali/unittest/inflection.gftest +++ b/src/somali/unittest/inflection.gftest @@ -41,8 +41,8 @@ LangSom: ma sugo -- Interrogative 1: TODO -- LangEng: does he/she/it wait (for him/her/it) --- Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPres ASimul) PNeg (QuestCl (PredVP (UsePron it_Pron) (ComplSlash (SlashV2a wait_V2) (UsePron it_Pron)))))) NoVoc --- LangSom: ma sugaa +Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPres ASimul) PNeg (QuestCl (PredVP (UsePron it_Pron) (ComplSlash (SlashV2a wait_V2) (UsePron it_Pron)))))) NoVoc +LangSom: ma aan sugo -- LangEng: why doesn't it wait for it Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPres ASimul) PNeg (QuestIAdv why_IAdv (PredVP (UsePron it_Pron) (ComplSlash (SlashV2a wait_V2) (UsePron it_Pron)))))) NoVoc diff --git a/src/somali/unittest/qcl.gftest b/src/somali/unittest/qcl.gftest index 0091209ba..10d16b155 100644 --- a/src/somali/unittest/qcl.gftest +++ b/src/somali/unittest/qcl.gftest @@ -1,6 +1,16 @@ -- Question clauses +-- Polar questions +-- LangEng: do you teach the cat +Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPres ASimul) PPos (QuestCl (PredVP (UsePron youSg_Pron) (ComplSlash (SlashV2a teach_V2) (DetCN (DetQuant DefArt NumSg) (UseN cat_N))))))) NoVoc +LangSom: ma ku bartaa bisad BIND da + +-- LangEng: don't you teach the cat +Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPres ASimul) PNeg (QuestCl (PredVP (UsePron youSg_Pron) (ComplSlash (SlashV2a teach_V2) (DetCN (DetQuant DefArt NumSg) (UseN cat_N))))))) NoVoc +LangSom: miyaanad ku barto bisad BIND da + +-- Wh-questions -- LangEng: who wants to go -- subject pronoun not included, because who is a subject. STM merged to pron. LangSom: yaa rabaa in uu tago @@ -31,7 +41,7 @@ Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PPos (QuestIAdv where_I LangSom: maxaa aad u tagtay Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PPos (QuestIAdv why_IAdv (PredVP (UsePron youSg_Pron) (UseV go_V))))) NoVoc --- Negative question -- TODO not implemented yet properly. Saeed p. 203 +-- Negative wh-question, Saeed p. 203 -- LangEng: why didn't you go LangSom: maxaa aad u tagi weydey Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PNeg (QuestIAdv why_IAdv (PredVP (UsePron youSg_Pron) (UseV go_V))))) NoVoc From e63eae8519bf4a3e43a01cf2275302aaa8772e21 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Thu, 26 Sep 2019 11:39:36 +0200 Subject: [PATCH 40/85] (Som) Add npcomp field to VP for more fine-grained control of word order --- src/somali/QuestionSom.gf | 7 +++++-- src/somali/ResSom.gf | 20 +++++++++++++++++++- src/somali/VerbSom.gf | 8 ++++++-- 3 files changed, 30 insertions(+), 5 deletions(-) diff --git a/src/somali/QuestionSom.gf b/src/somali/QuestionSom.gf index f1dd7f17a..b56078e56 100644 --- a/src/somali/QuestionSom.gf +++ b/src/somali/QuestionSom.gf @@ -88,12 +88,15 @@ concrete QuestionSom of Question = CatSom ** open -- : IAdv -> IComp ; CompIAdv iadv = { -- where (is it) - comp = \\_ => <[], iadv.s> ; + comp = \\_ => <[], []> ; + npcomp = iadv.s ; stm = Waa NoCopula ; } ; + -- : IP -> IComp ; CompIP ip = { -- who (is it) - comp = \\_ => <[], ip.s ! Abs> ; + comp = \\_ => <[], []> ; + npcomp = ip.s ! Abs ; stm = Waa NoCopula ; } ; diff --git a/src/somali/ResSom.gf b/src/somali/ResSom.gf index 2cf004fcf..7c1db7a67 100644 --- a/src/somali/ResSom.gf +++ b/src/somali/ResSom.gf @@ -727,6 +727,7 @@ oper Complement : Type = { comp : Agreement => {p1,p2 : Str} ; -- Agreement for AP complements + npcomp : Str ; stm : STM ; -- to choose right sentence type marker } ; @@ -743,6 +744,7 @@ oper useV : Verb -> VerbPhrase = \v -> v ** { comp = \\_ => <[],[]> ; + npcomp = [] ; stm = case v.isCopula of { -- can change into Waxa in ComplVV True => Waa Copula ; False => Waa NoPred @@ -860,6 +862,7 @@ oper secObj : Str ; c2 : PrepCombination ; -- NB. QuestIAdv can add more prepositions comp : {p1,p2 : Str} ; + npcomp : Str ; vComp : {inf,subcl,subjunc : Str} ; -- Still open @@ -993,6 +996,18 @@ oper PolarQuestion|WhQuestion => obj.p1 ; _ => [] } ; + -- Placement of NP complement varies depending on type of clause + statementNPComp = case cltyp of { + Statement => cl.npcomp ; + _ => [] } ; + subordNPComp = case cltyp of { + Subord => cl.npcomp ; + _ => [] } ; + questionNPComp = case cltyp of { + PolarQuestion|WhQuestion => cl.npcomp ; + _ => [] } ; + + -- Control whether to include subject pronoun and STM subjpron : Str = case of { => [] ; @@ -1000,7 +1015,7 @@ oper _ => [] } ; stm : Str = case of { => cl.stm ! cltyp ! p ; - <_,Neg> => cl.stm ! cltyp ! p ; -- negation overrides hasSTM=False + <_,Neg> => cl.stm ! cltyp ! p ; -- negation overrides hasSTM=False. To override the override, set STM to [] in the function that calls this. /IL _ => [] } in cl.berri -- AdV ++ cl.subj.noun -- subject if it's a noun @@ -1011,13 +1026,16 @@ oper ++ cl.vComp.subjunc -- "waa in" construction / ++ subjpron -- subject pronoun + ++ subordNPComp ++ subordNounObj -- noun object if it's subordinate clause: "timir aan /laf/ lahayn" (Saeed p. 210-211) ++ obj.p2 -- object if it's a pronoun + ++ statementNPComp ++ cl.sii -- restricted set of particles ++ cl.dhex -- restricted set of nouns/adverbials ++ cl.secObj -- "second object" ++ cl.vComp.inf -- VV complement, if it's infinitive ++ cl.pred ! cltyp ! t ! a ! p -- the inflecting verb + ++ questionNPComp ++ questionNounObj -- noun object if it's a question ++ cl.vComp.subcl -- VV complement, if it's subordinate clause ++ cl.miscAdv ---- NB. Only used if there are several adverbs, or for "waa in" construction. diff --git a/src/somali/VerbSom.gf b/src/somali/VerbSom.gf index 3208febc2..5aa5d38ae 100644 --- a/src/somali/VerbSom.gf +++ b/src/somali/VerbSom.gf @@ -141,24 +141,28 @@ lin -- : AP -> Comp ; CompAP ap = { comp = \\a => <[], ap.s ! AF (getNum a) Abs> ; + npcomp = [] ; stm = Waa Copula ; } ; -- : CN -> Comp ; CompCN cn = { - comp = \\a => <[], cn2str Sg Abs cn> ; + comp = \\a => <[], []> ; + npcomp = cn2str Sg Abs cn ; stm = Waa NoCopula ; } ; -- NP -> Comp ; CompNP np = { - comp = \\a => <[], np.s ! Abs> ; + comp = \\a => <[], []> ; + npcomp = np.s ! Abs ; stm = Waa NoCopula ; } ; -- : Adv -> Comp ; CompAdv adv = { comp = \\a => <[], linAdv adv> ; + npcomp = [] ; stm = Waa Copula ; } ; From 819bdacc65f7d68d626d5cde233e56ed6ca8df2d Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Thu, 26 Sep 2019 15:11:20 +0200 Subject: [PATCH 41/85] (Som) Better handling of AP and NP complements, remove redundant fields --- src/somali/QuestionSom.gf | 8 +-- src/somali/ResSom.gf | 103 +++++++++++++++------------------ src/somali/VerbSom.gf | 24 ++++---- src/somali/unittest/qcl.gftest | 2 +- 4 files changed, 61 insertions(+), 76 deletions(-) diff --git a/src/somali/QuestionSom.gf b/src/somali/QuestionSom.gf index b56078e56..a4307e988 100644 --- a/src/somali/QuestionSom.gf +++ b/src/somali/QuestionSom.gf @@ -88,15 +88,15 @@ concrete QuestionSom of Question = CatSom ** open -- : IAdv -> IComp ; CompIAdv iadv = { -- where (is it) - comp = \\_ => <[], []> ; - npcomp = iadv.s ; + aComp = \\_ => [] ; + nComp = iadv.s ; stm = Waa NoCopula ; } ; -- : IP -> IComp ; CompIP ip = { -- who (is it) - comp = \\_ => <[], []> ; - npcomp = ip.s ! Abs ; + aComp = \\_ => [] ; + nComp = ip.s ! Abs ; stm = Waa NoCopula ; } ; diff --git a/src/somali/ResSom.gf b/src/somali/ResSom.gf index 7c1db7a67..06f101ac5 100644 --- a/src/somali/ResSom.gf +++ b/src/somali/ResSom.gf @@ -726,8 +726,8 @@ oper -- VP Complement : Type = { - comp : Agreement => {p1,p2 : Str} ; -- Agreement for AP complements - npcomp : Str ; + aComp : Agreement => Str ; + nComp : Str ; stm : STM ; -- to choose right sentence type marker } ; @@ -736,19 +736,19 @@ oper obj2 : NPLite ; -- {s : Str ; a : PrepAgr} secObj : Str ; -- if two overt pronoun objects vComp : {subjunc : Str ; -- "waa in" or subjunctive construction: "in" is placed here - inf : Str ; -- auxiliary VV with infinitive argument - subcl : Agreement => Str} -- VV complement if it's a subordinate clause + inf : Str ; -- auxiliary VV with infinitive argument + subcl : Agreement => Str} -- VV complement if it's a subordinate clause } ; VPSlash : Type = VerbPhrase ; useV : Verb -> VerbPhrase = \v -> v ** { - comp = \\_ => <[],[]> ; - npcomp = [] ; stm = case v.isCopula of { -- can change into Waxa in ComplVV True => Waa Copula ; False => Waa NoPred } ; + nComp = [] ; + aComp = \\_ => [] ; vComp = {subjunc, inf = [] ; subcl = \\_ => []} ; berri,miscAdv = [] ; @@ -777,13 +777,6 @@ oper _ => vp.c2 } } ; - complSlash : VPSlash -> VerbPhrase = \vps -> let np = vps.obj2 in vps ** { - comp = \\agr => let cmp = vps.comp ! agr in - {p1 = np.s ++ cmp.p1 ; -- if object is a noun, it will come before verb in the sentence. - -- if object is a pronoun, np.s is empty. - p2 = cmp.p2 ++ prepCombTable ! np.a ! vps.c2} -- object combines with the preposition of the verb. - } ; - insertRefl : VPSlash -> VPSlash = \vps -> vps ** { obj2 = vps.obj2 ** {a = Reflexive_Prep} ; @@ -861,8 +854,8 @@ oper obj2 : NPLite ; secObj : Str ; c2 : PrepCombination ; -- NB. QuestIAdv can add more prepositions - comp : {p1,p2 : Str} ; - npcomp : Str ; + aComp : Str ; + nComp : Str ; vComp : {inf,subcl,subjunc : Str} ; -- Still open @@ -884,7 +877,6 @@ oper in case of { -- VP comes from CompNP/CompCN + P3 subject => [] ; - <_, _, Pres, Waa (Copula|NoCopula), _> -- Comp* present tense + any subject => presCopula ! {agr=subj.a ; pol=p} ; @@ -892,7 +884,7 @@ oper } ; stm = mkStm subj.a vp.stm ; - comp = vp.comp ! subj.a ; + aComp = vp.aComp ! subj.a ; vComp = vp.vComp ** { subcl = vp.vComp.subcl ! subj.a } @@ -912,15 +904,8 @@ oper => np.empty ; _ => (pronTable ! subj.a).s ! Nom } - } ; - -- just like complSlash but for Cl - complCl : ClSlash -> ClSlash = \cl -> let np = cl.obj2 in cl ** { - comp = {p1 = np.s ++ cl.comp.p1 ; - p2 = cl.comp.p2 ++ prepCombTable ! np.a ! cl.c2} - } ; - -- RelVP: subject pronoun is never included cl2rcl : ClSlash -> Clause = @@ -971,43 +956,43 @@ oper } ; - mkClause : ClType -> (rel,sp,stm : Bool) -> ClSlash -> Clause = \cltyp,isRel,hasSubjPron,hasSTM,incomplCl -> { + mkClause : ClType -> (rel,sp,stm : Bool) -> ClSlash -> Clause = + \cltyp,isRel,hasSubjPron,hasSTM,cl -> { s = \\t,a,p => let -- Put all arguments in their right place - cl : ClSlash = complCl incomplCl ; + --cl : ClSlash = complCl incomplCl ; + prepComb = prepCombTable ! cl.obj2.a ! cl.c2 ; -- Contractions bind : Str = case of { => [] ; -- nothing to attach to the STM _ => BIND } ; -- something to attach, use BIND - obj : {p1,p2 : Str} = case of { - -- object pronoun and prepositions contract with negation - => {p2 = [] ; p1 = cl.comp.p1 ++ cl.comp.p2 ++ bind} ; - _ => cl.comp } ; + prepCombNeg : Str = case of { + => prepComb ++ bind ; + _ => [] + } ; + prepCombPos : Str = case of { + => [] ; + _ => prepComb + } ; -- Placement of object noun varies depending on type of clause statementNounObj = case cltyp of { - Statement => obj.p1 ; + Statement => cl.obj2.s ; _ => [] } ; + statementNounComp = case cltyp of { + Statement => cl.nComp ; + _ => [] } ; + + -- for subord and question, NP predicatives and objects behave the same subordNounObj = case cltyp of { - Subord => obj.p1 ; + Subord => cl.obj2.s ++ cl.nComp ; _ => [] } ; questionNounObj = case cltyp of { - PolarQuestion|WhQuestion => obj.p1 ; + PolarQuestion|WhQuestion + => cl.obj2.s ++ cl.nComp ; _ => [] } ; - -- Placement of NP complement varies depending on type of clause - statementNPComp = case cltyp of { - Statement => cl.npcomp ; - _ => [] } ; - subordNPComp = case cltyp of { - Subord => cl.npcomp ; - _ => [] } ; - questionNPComp = case cltyp of { - PolarQuestion|WhQuestion => cl.npcomp ; - _ => [] } ; - - -- Control whether to include subject pronoun and STM subjpron : Str = case of { => [] ; @@ -1021,21 +1006,23 @@ oper ++ cl.subj.noun -- subject if it's a noun ++ statementNounObj -- noun object if it's a statement + ++ prepCombNeg -- prepositions and pron. objects in negative statement ++ stm ++ cl.vComp.subjunc -- "waa in" construction / ++ subjpron -- subject pronoun - ++ subordNPComp ++ subordNounObj -- noun object if it's subordinate clause: "timir aan /laf/ lahayn" (Saeed p. 210-211) - ++ obj.p2 -- object if it's a pronoun - ++ statementNPComp + ++ cl.aComp -- AP complement, regardless of cltype + ++ statementNounComp -- NP complement if it's direct statement + + ++ prepCombPos -- prepositions + pron. objects in positive sentence + ++ cl.sii -- restricted set of particles ++ cl.dhex -- restricted set of nouns/adverbials ++ cl.secObj -- "second object" ++ cl.vComp.inf -- VV complement, if it's infinitive ++ cl.pred ! cltyp ! t ! a ! p -- the inflecting verb - ++ questionNPComp ++ questionNounObj -- noun object if it's a question ++ cl.vComp.subcl -- VV complement, if it's subordinate clause ++ cl.miscAdv ---- NB. Only used if there are several adverbs, or for "waa in" construction. @@ -1137,28 +1124,30 @@ oper ++ adv.np.s ++ adv.miscAdv ; - linVP : VForm -> ClType -> VerbPhrase -> Str = \vf,cltyp,vp -> let pred = vp.s ! vf ; - vp' = complSlash vp ; + pr = prepCombTable ! vp.obj2.a ! vp.c2 ; + -- obj = {p1 = np.s ; + -- p2 = vp.aComp ! pagr2agr np.a ++ prepCombTable ! np.a ! vps.c2} ; neg = case of { => "aan" ; _ => [] } ; - in wordOrder cltyp neg pred (vp'.comp ! pagr2agr vp.obj2.a) vp' ; + in wordOrder cltyp neg pred pr vp ; - wordOrder : ClType -> (neg,pred : Str) -> (obj : {p1,p2 : Str}) -> VerbPhrase -> Str = - \cltyp,neg,pred,obj,vp -> + wordOrder : ClType -> (neg,pred,prepcomb : Str) -> VerbPhrase -> Str = + \cltyp,neg,pred,pr,vp -> vp.berri -- AdV ++ case cltyp of { Subord => [] ; - _ => obj.p1 } -- noun object if it's a statement + _ => vp.obj2.s {-obj.p1-} } -- noun object if it's a statement ++ neg ++ vp.vComp.subjunc -- "waa in" construction ++ case cltyp of { - Subord => obj.p1 ; -- noun object if it's subordinate clause + Subord => vp.obj2.s ; -- noun object if it's subordinate clause _ => [] } - ++ obj.p2 -- object if it's a pronoun + ++ vp.aComp ! pagr2agr vp.obj2.a -- AP complement agreeing with object + ++ pr -- object if it's a pronoun ++ vp.sii -- restricted set of particles ++ vp.dhex -- restricted set of nouns/adverbials ++ vp.secObj -- "second object" diff --git a/src/somali/VerbSom.gf b/src/somali/VerbSom.gf index 5aa5d38ae..ab17f11bb 100644 --- a/src/somali/VerbSom.gf +++ b/src/somali/VerbSom.gf @@ -79,7 +79,7 @@ lin -- : V2A -> AP -> VPSlash ; -- paint (it) red -- TODO: is "red" plural in "paint them red"? SlashV2A v2a ap = useVc v2a ** { - comp = \\_ => (CompAP ap).comp ! Sg3 Masc + aComp = \\_ => (CompAP ap).aComp ! Sg3 Masc } ; -- : VPSlash -> NP -> VP @@ -133,36 +133,32 @@ lin -- Adjectival phrases, noun phrases, and adverbs can be used. - -- the house is big - -- the houses are big - -- I am [a house that sleeps here] - -- we are [houses that sleep here] - -- : AP -> Comp ; CompAP ap = { - comp = \\a => <[], ap.s ! AF (getNum a) Abs> ; - npcomp = [] ; + aComp = \\a => ap.s ! AF (getNum a) Abs ; + nComp = [] ; stm = Waa Copula ; } ; -- : CN -> Comp ; CompCN cn = { - comp = \\a => <[], []> ; - npcomp = cn2str Sg Abs cn ; + -- I am [a house that sleeps here] vs. we are [houses that sleep here] + aComp = \\a => cn2str (getNum a) Abs cn ; + nComp = [] ; stm = Waa NoCopula ; } ; -- NP -> Comp ; CompNP np = { - comp = \\a => <[], []> ; - npcomp = np.s ! Abs ; + aComp = \\a => [] ; + nComp = np.s ! Abs ; stm = Waa NoCopula ; } ; -- : Adv -> Comp ; CompAdv adv = { - comp = \\a => <[], linAdv adv> ; - npcomp = [] ; + aComp = \\a => linAdv adv ; -- TODO check placement + nComp = [] ; stm = Waa Copula ; } ; diff --git a/src/somali/unittest/qcl.gftest b/src/somali/unittest/qcl.gftest index 10d16b155..4b2fea73c 100644 --- a/src/somali/unittest/qcl.gftest +++ b/src/somali/unittest/qcl.gftest @@ -66,5 +66,5 @@ Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PPos (QuestIAdv why_IAd -- Maxaa ay ahaa dharka cusub ee Faadumo loo iibiyay? Vad/Vilka var de nya kläder som man köpt åt Fadumo? TODO why is there subject pronoun here? --LangEng: what was the meat that was eaten -LangSom: TODO +LangSom: maxaa uu ahaa hilib BIND ka la cunay Lang: PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPast ASimul) PPos (QuestVP whatSg_IP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (RelCN (UseN meat_N) (UseRCl (TTAnt TPast ASimul) PPos (RelVP IdRP (PassV2 eat_V2)))))))))) NoVoc From a399abed83229c6372147f3b9489d50814ec43f8 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Thu, 26 Sep 2019 15:21:14 +0200 Subject: [PATCH 42/85] (Som) Minor cleanup: renaming + moving things around --- src/somali/QuestionSom.gf | 14 ++++++++++++ src/somali/RelativeSom.gf | 24 +++++++++++++++++++++ src/somali/ResSom.gf | 45 ++++++--------------------------------- 3 files changed, 45 insertions(+), 38 deletions(-) diff --git a/src/somali/QuestionSom.gf b/src/somali/QuestionSom.gf index a4307e988..5d8966a7f 100644 --- a/src/somali/QuestionSom.gf +++ b/src/somali/QuestionSom.gf @@ -115,4 +115,18 @@ concrete QuestionSom of Question = CatSom ** open QuestQVP : IP -> QVP -> QCl ; -- who buys what where -} +oper + + -- Question clauses: subject pronoun not included, STM is + cl2qcl : ClType -> Bool -> ClSlash -> Clause = \cltyp -> + let hasSubjPron : Bool = False ; + isRel : Bool = False ; + in mkClause cltyp isRel hasSubjPron ; + + -- Question clause with wh-word as object: subject pronoun is included + cl2qclslash : Bool -> ClSlash -> Clause = + let hasSubjPron : Bool = True ; + isRel : Bool = False ; + in mkClause PolarQuestion isRel hasSubjPron ; + } diff --git a/src/somali/RelativeSom.gf b/src/somali/RelativeSom.gf index dd2665eec..49536b23d 100644 --- a/src/somali/RelativeSom.gf +++ b/src/somali/RelativeSom.gf @@ -36,4 +36,28 @@ lin -- : Prep -> NP -> RP -> RP ; -- the mother of whom --FunRP prep np rp = {} ; +oper + + -- RelVP: subject pronoun is never included + cl2rcl : ClSlash -> Clause = + let hasSubjPron : Bool = False ; + hasSTM : Bool = False ; + isRel : Bool = True ; + in mkClause Subord isRel hasSubjPron hasSTM ; + + -- No subject pronoun, no STM, but use verb forms from Statement + cl2rclNom : ClSlash -> Clause = \cls -> + let hasSubjPron : Bool = False ; + hasSTM : Bool = False ; + isRel : Bool = True ; + in mkClause Statement isRel hasSubjPron hasSTM cls ; + + -- RelSlash: subject pronoun is included if it's not 3rd person + -- TODO check this rule with more example sentences + cl2relslash : ClSlash -> Clause = + let hasSubjPron : Bool = True ; + hasSTM : Bool = False ; + isRel : Bool = True ; + in mkClause Subord isRel hasSubjPron hasSTM ; + } diff --git a/src/somali/ResSom.gf b/src/somali/ResSom.gf index 06f101ac5..a4c5564cf 100644 --- a/src/somali/ResSom.gf +++ b/src/somali/ResSom.gf @@ -906,41 +906,6 @@ oper } } ; - - -- RelVP: subject pronoun is never included - cl2rcl : ClSlash -> Clause = - let hasSubjPron : Bool = False ; - hasSTM : Bool = False ; - isRel : Bool = True ; - in mkClause Subord isRel hasSubjPron hasSTM ; - - -- No subject pronoun, no STM, but use verb forms from Statement - cl2rclNom : ClSlash -> Clause = \cls -> - let hasSubjPron : Bool = False ; - hasSTM : Bool = False ; - isRel : Bool = True ; - in mkClause Statement isRel hasSubjPron hasSTM cls ; - - -- RelSlash: subject pronoun is included if it's not 3rd person - -- TODO check this rule with more example sentences - cl2relslash : ClSlash -> Clause = - let hasSubjPron : Bool = True ; - hasSTM : Bool = False ; - isRel : Bool = True ; - in mkClause Subord isRel hasSubjPron hasSTM ; - - -- Question clauses: subject pronoun not included, STM is - cl2qcl : ClType -> Bool -> ClSlash -> Clause = \cltyp -> - let hasSubjPron : Bool = False ; - isRel : Bool = False ; - in mkClause cltyp isRel hasSubjPron ; - - -- Question clauses: subject pronoun is included - cl2qclslash : Bool -> ClSlash -> Clause = - let hasSubjPron : Bool = True ; - isRel : Bool = False ; - in mkClause PolarQuestion isRel hasSubjPron ; - -- Sentence: include subject pronoun and STM. -- When subordinate, include "in". cl2sentence : Bool -> ClSlash -> Clause = \isSubord,cls -> { @@ -949,13 +914,17 @@ oper True => Subord ; False => Statement } ; cl : ClSlash = case isSubord of { -- add "in" to the clause if used as subordinate - True => cls ** {vComp = cls.vComp ** {subjunc = "in"}} ; + True => cls ** { + vComp = cls.vComp ** {subjunc = "in"} + } ; False => cls } ; - sent = mkClause cltyp False True True cl + isRel = False ; + hasSubjPron = True ; + hasSTM = True ; + sent = mkClause cltyp isRel hasSubjPron hasSTM cl in sent.s ! t ! a ! p } ; - mkClause : ClType -> (rel,sp,stm : Bool) -> ClSlash -> Clause = \cltyp,isRel,hasSubjPron,hasSTM,cl -> { s = \\t,a,p => From 9b9d6ebdd263307c17b93f9482022a5fc19a09c3 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Fri, 27 Sep 2019 10:32:45 +0200 Subject: [PATCH 43/85] (Som) Add comparatives --- src/somali/AdjectiveSom.gf | 16 +++++++++++----- src/somali/CatSom.gf | 2 +- src/somali/QuestionSom.gf | 21 ++++++++++----------- src/somali/ResSom.gf | 5 ++++- src/somali/VerbSom.gf | 4 ++++ src/somali/unittest/ap.gftest | 17 +++++++++++++++++ 6 files changed, 47 insertions(+), 18 deletions(-) diff --git a/src/somali/AdjectiveSom.gf b/src/somali/AdjectiveSom.gf index 345d85fbf..b64d15008 100644 --- a/src/somali/AdjectiveSom.gf +++ b/src/somali/AdjectiveSom.gf @@ -8,12 +8,15 @@ concrete AdjectiveSom of Adjective = CatSom ** open ResSom, Prelude in { -- elliptic-relational. -- : A -> AP ; - PositA a = a ; + PositA a = a ** { + compar = [] ; + } ; -- : A -> NP -> AP ; - -- ComparA a np = a ** { - -- s = \\agr => np.s ! Abs ++ "ka" ++ a.s ! AF Compar ; - -- } ; + ComparA a np = a ** { + s = \\af => "ka" ++ a.s ! af ; + compar = np.s ! Abs + } ; -- : A2 -> NP -> AP ; -- married to her -- ComplA2 a2 np = a2 ** { } ; @@ -25,7 +28,10 @@ concrete AdjectiveSom of Adjective = CatSom ** open ResSom, Prelude in { UseA2 = PositA ; -- : A -> AP ; -- warmer - --UseComparA a = a ** {} ; + UseComparA a = a ** { + s = \\af => "ka" ++ a.s ! af ; + compar = [] + } ; -- : CAdv -> AP -> NP -> AP ; -- as cool as John diff --git a/src/somali/CatSom.gf b/src/somali/CatSom.gf index eb1747c78..9e41234ba 100644 --- a/src/somali/CatSom.gf +++ b/src/somali/CatSom.gf @@ -23,7 +23,7 @@ concrete CatSom of Cat = CommonX - [Adv,IAdv] ** open ResSom, Prelude in { -- Constructed in QuestionSom. QCl = ResSom.QClause ; - IComp = ResSom.Complement ; -- interrogative complement of copula e.g. "where" + IComp = SS ; -- interrogative complement of copula e.g. "where" IDet = ResSom.Determiner ; -- interrogative determiner e.g. "how many" IQuant = ResSom.Quant ; -- interrogative quantifier e.g. "which" IP = ResSom.NounPhrase ** {contractSTM : Bool} ; -- like NP but may contract with STM diff --git a/src/somali/QuestionSom.gf b/src/somali/QuestionSom.gf index 5d8966a7f..87ae497d9 100644 --- a/src/somali/QuestionSom.gf +++ b/src/somali/QuestionSom.gf @@ -50,7 +50,7 @@ concrete QuestionSom of Question = CatSom ** open -- : IComp -> NP -> QCl ; -- where is John? QuestIComp icomp np = - let cls = predVP np (VS.UseComp icomp) ; + let cls = predVP np (VS.UseComp (icomp2comp icomp)) ; -- cl = cls ** { -- TODO: neg. questions -- stm : ClType=>Polarity=>Str = \\_,_ => "waa" -- } @@ -87,18 +87,10 @@ concrete QuestionSom of Question = CatSom ** open -- pronouns. -- : IAdv -> IComp ; - CompIAdv iadv = { -- where (is it) - aComp = \\_ => [] ; - nComp = iadv.s ; - stm = Waa NoCopula ; - } ; + CompIAdv iadv = iadv ; -- where (is it) -- : IP -> IComp ; - CompIP ip = { -- who (is it) - aComp = \\_ => [] ; - nComp = ip.s ! Abs ; - stm = Waa NoCopula ; - } ; + CompIP ip = {s = ip.s ! Abs} ; -- who (is it) {- -- More $IP$, $IDet$, and $IAdv$ are defined in $Structural$. @@ -117,6 +109,13 @@ concrete QuestionSom of Question = CatSom ** open oper + icomp2comp : SS -> Complement = \icomp -> icomp ** { + aComp = \\_ => [] ; + nComp = icomp.s ; + compar = [] ; + stm = Waa NoCopula + } ; + -- Question clauses: subject pronoun not included, STM is cl2qcl : ClType -> Bool -> ClSlash -> Clause = \cltyp -> let hasSubjPron : Bool = False ; diff --git a/src/somali/ResSom.gf b/src/somali/ResSom.gf index a4c5564cf..eaec6dfe2 100644 --- a/src/somali/ResSom.gf +++ b/src/somali/ResSom.gf @@ -464,7 +464,7 @@ oper => q + a + y + b + sg ; --qayb+qaybsan, fiic+fiican _ => sg + sg } ; - AdjPhrase : Type = Adjective ; + AdjPhrase : Type = Adjective ** {compar : Str} ; -------------------------------------------------------------------------------- -- Verbs @@ -728,6 +728,7 @@ oper Complement : Type = { aComp : Agreement => Str ; nComp : Str ; + compar : Str ; -- comparative is discontinuous stm : STM ; -- to choose right sentence type marker } ; @@ -747,6 +748,7 @@ oper True => Waa Copula ; False => Waa NoPred } ; + compar = [] ; nComp = [] ; aComp = \\_ => [] ; vComp = {subjunc, inf = [] ; @@ -872,6 +874,7 @@ oper predVP : NounPhrase -> VerbPhrase -> ClSlash = \np,vps -> vp ** { subj = {noun = subjnoun ; pron = subjpron ; isP3 = isP3 subj.a} ; + obj2 = vp.obj2 ** {s = vp.obj2.s ++ vp.compar} ; pred = \\cltyp,t,a,p => let predRaw = vf cltyp t a p subj.a vp ; in case of { diff --git a/src/somali/VerbSom.gf b/src/somali/VerbSom.gf index ab17f11bb..0b6fde7da 100644 --- a/src/somali/VerbSom.gf +++ b/src/somali/VerbSom.gf @@ -137,6 +137,7 @@ lin CompAP ap = { aComp = \\a => ap.s ! AF (getNum a) Abs ; nComp = [] ; + compar = ap.compar ; stm = Waa Copula ; } ; @@ -145,6 +146,7 @@ lin -- I am [a house that sleeps here] vs. we are [houses that sleep here] aComp = \\a => cn2str (getNum a) Abs cn ; nComp = [] ; + compar = [] ; stm = Waa NoCopula ; } ; @@ -152,6 +154,7 @@ lin CompNP np = { aComp = \\a => [] ; nComp = np.s ! Abs ; + compar = [] ; stm = Waa NoCopula ; } ; @@ -159,6 +162,7 @@ lin CompAdv adv = { aComp = \\a => linAdv adv ; -- TODO check placement nComp = [] ; + compar = [] ; stm = Waa Copula ; } ; diff --git a/src/somali/unittest/ap.gftest b/src/somali/unittest/ap.gftest index dd426d7a6..8178002ef 100644 --- a/src/somali/unittest/ap.gftest +++ b/src/somali/unittest/ap.gftest @@ -1,3 +1,7 @@ +------------------ +-- Conjunctions -- +------------------ + -- LangEng: the big black bird LangSom: shimbir BIND ta madow ee weyn Lang: PhrUtt NoPConj (UttNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA big_A) (AdjCN (PositA black_A) (UseN bird_N))))) NoVoc @@ -5,3 +9,16 @@ Lang: PhrUtt NoPConj (UttNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA big_A) -- LangEng: a big black bird LangSom: shimbir madow oo weyn Lang: PhrUtt NoPConj (UttNP (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA big_A) (AdjCN (PositA black_A) (UseN bird_N))))) NoVoc + +----------------- +-- Comparative -- +----------------- + +-- Examples from Saeed p. 107 +-- LangEng: that cat is bigger +LangSom: bisad BIND daasi waa ka weyn tahay +Lang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant that_Quant NumSg) (UseN cat_N)) (UseComp (CompAP (UseComparA big_A)))))) NoVoc + +-- LangEng: that cat is bigger than this cat +LangSom: bisad BIND daasi bisad BIND dan waa ka weyn tahay +Lang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant that_Quant NumSg) (UseN cat_N)) (UseComp (CompAP (ComparA big_A (DetCN (DetQuant this_Quant NumSg) (UseN cat_N)))))))) NoVoc From a520c9659f57ff28f18454e61e0f6e4b3e68f0f0 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Fri, 27 Sep 2019 11:14:23 +0200 Subject: [PATCH 44/85] (Som) Add superlatives --- src/somali/AdjectiveSom.gf | 4 +++- src/somali/CatSom.gf | 5 ++++- src/somali/NounSom.gf | 19 +++++++++++-------- src/somali/unittest/ap.gftest | 8 ++++++++ 4 files changed, 26 insertions(+), 10 deletions(-) diff --git a/src/somali/AdjectiveSom.gf b/src/somali/AdjectiveSom.gf index b64d15008..19b4e6fd3 100644 --- a/src/somali/AdjectiveSom.gf +++ b/src/somali/AdjectiveSom.gf @@ -40,7 +40,9 @@ concrete AdjectiveSom of Adjective = CatSom ** open ResSom, Prelude in { -- The superlative use is covered in $Ord$. -- : Ord -> AP ; -- warmest - -- AdjOrd ord = ord ** {} ; + AdjOrd ord = ord ** { + compar = [] + } ; -- Sentence and question complements defined for all adjectival -- phrases, although the semantics is only clear for some adjectives. diff --git a/src/somali/CatSom.gf b/src/somali/CatSom.gf index 9e41234ba..c4da9418a 100644 --- a/src/somali/CatSom.gf +++ b/src/somali/CatSom.gf @@ -66,7 +66,10 @@ concrete CatSom of Cat = CommonX - [Adv,IAdv] ** open ResSom, Prelude in { Predet = {s : Str ; da : DefArticle ; isPoss : Bool} ; Quant = ResSom.Quant ; Num = ResSom.Num ; - Ord = {s : Str ; n : Number} ; + Ord = { + s : AForm => Str ; -- Ord can came from AP and become AP again + n : Number -- Ord can come from Num, which has inherent number + } ; DAP = ResSom.Determiner ; diff --git a/src/somali/NounSom.gf b/src/somali/NounSom.gf index bc680e617..5578c774a 100644 --- a/src/somali/NounSom.gf +++ b/src/somali/NounSom.gf @@ -141,9 +141,9 @@ concrete NounSom of Noun = CatSom ** open ResSom, Prelude in { -- : Quant -> Num -> Ord -> Det ; -- these five best DetQuantOrd quant num ord = let theseFive = DetQuant quant num in theseFive ** { - s = \\g,c => theseFive.s ! g ! c ++ ord.s ; - sp = \\g,c => theseFive.sp ! g ! c ++ ord.s ; - shortPoss = \\da => theseFive.shortPoss ! da ++ ord.s + s = \\g,c => theseFive.s ! g ! c ++ ord.s ! AF num.n c ; + sp = \\g,c => theseFive.sp ! g ! c ++ ord.s ! AF num.n c ; + shortPoss = \\da => theseFive.shortPoss ! da ++ ord.s ! AF num.n Abs } ; -- Whether the resulting determiner is singular or plural depends on the @@ -173,17 +173,20 @@ concrete NounSom of Noun = CatSom ** open ResSom, Prelude in { OrdDigits digs = digs ** { s = digs.s ! NOrd } ; -} -- : Numeral -> Ord ; - OrdNumeral num = num ** {s = num.ord} ; + OrdNumeral num = num ** { + s = \\_ => num.ord + } ; -{- -- : A -> Ord ; - OrdSuperl a = { } ; + OrdSuperl a = { + s = \\af => "ugu" ++ a.s ! af ; + n = Sg -- ?? is this meaningful? + } ; -- One can combine a numeral and a superlative. -- : Numeral -> A -> Ord ; -- third largest - OrdNumeralSuperl num a = num ** { } ; --} + -- OrdNumeralSuperl num a = num ** { } ; -- : Quant DefArt = defQuant "a" "kan" "tan" "kuwan" False ; diff --git a/src/somali/unittest/ap.gftest b/src/somali/unittest/ap.gftest index 8178002ef..baf20a2f6 100644 --- a/src/somali/unittest/ap.gftest +++ b/src/somali/unittest/ap.gftest @@ -22,3 +22,11 @@ Lang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQ -- LangEng: that cat is bigger than this cat LangSom: bisad BIND daasi bisad BIND dan waa ka weyn tahay Lang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant that_Quant NumSg) (UseN cat_N)) (UseComp (CompAP (ComparA big_A (DetCN (DetQuant this_Quant NumSg) (UseN cat_N)))))))) NoVoc + +-- LangEng: that cat is biggest +LangSom: bisad BIND daasi waa ugu weyn tahay +Lang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant that_Quant NumSg) (UseN cat_N)) (UseComp (CompAP (AdjOrd (OrdSuperl big_A))))))) NoVoc + +-- LangEng: cat is the biggest animal that I saw +LangSom: bisadi waa xayawaan BIND ka ugu weyn aan arkay +Lang: UseCl (TTAnt TPres ASimul) PPos (PredVP (MassNP (UseN cat_N)) (UseComp (CompNP (DetCN (DetQuantOrd DefArt NumSg (OrdSuperl big_A)) (RelCN (UseN animal_N) (UseRCl (TTAnt TPast ASimul) PPos (RelSlash IdRP (SlashVP (UsePron i_Pron) (SlashV2a see_V2))))))))) From 8e929ea4fb27d0ecd0d1a4473f2498a7b3f303a8 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Fri, 27 Sep 2019 11:14:50 +0200 Subject: [PATCH 45/85] (Som) minor cleanup/whitespace removal --- src/somali/NounSom.gf | 6 +++--- src/somali/ResSom.gf | 16 ++++++++++------ 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/src/somali/NounSom.gf b/src/somali/NounSom.gf index 5578c774a..20fd9719a 100644 --- a/src/somali/NounSom.gf +++ b/src/somali/NounSom.gf @@ -56,15 +56,15 @@ concrete NounSom of Noun = CatSom ** open ResSom, Prelude in { UsePron pron = pron ** {st = Definite} ; -- : Predet -> NP -> NP ; -- only the man - PredetNP predet np = + PredetNP predet np = let qnt = PossPron (pronTable ! np.a) ; det = qnt.shortPoss ! predet.da ; predetS : Str = case predet.isPoss of { True => glue predet.s det ; - False => predet.s + False => predet.s } ; in np ** { - s = \\c => + s = \\c => case of { => np.empty ++ predetS ; _ => np.s ! c ++ predetS} ; diff --git a/src/somali/ResSom.gf b/src/somali/ResSom.gf index eaec6dfe2..0b6099c01 100644 --- a/src/somali/ResSom.gf +++ b/src/somali/ResSom.gf @@ -46,12 +46,16 @@ oper magacya + "da" => magacya ; wiila + "sha" => wiila ; _ => wiilal} ; - bisadi : Str = case gender of - { Fem => case wiil of { _ + #c => wiil+"i" ; _ => wiil} ; - Masc => wiil } ; - bisadood : Str = case gender of - { Fem => case wiilal of {_ + "o" => wiilal+"od" ; _ => wiil} ; - Masc => wiil } + bisadi : Str = case gender of { + Fem => case wiil of { + _ + #c => wiil+"i" ; + _ => wiil } ; + Masc => wiil } ; + bisadood : Str = case gender of { + Fem => case wiilal of { + _ + "o" => wiilal+"od" ; + _ => wiil } ; + Masc => wiil } } ; ------------------------- From 62641093dd0cdd38f8613d81b86539642e4daa5e Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Fri, 27 Sep 2019 11:39:19 +0200 Subject: [PATCH 46/85] (Som) Rename obj2,secObj-> obj,obj2. Remove commented out code+old TODOs --- src/somali/QuestionSom.gf | 4 +-- src/somali/ResSom.gf | 73 +++++++++++++++++---------------------- src/somali/VerbSom.gf | 6 ++-- 3 files changed, 37 insertions(+), 46 deletions(-) diff --git a/src/somali/QuestionSom.gf b/src/somali/QuestionSom.gf index 87ae497d9..86e0f151f 100644 --- a/src/somali/QuestionSom.gf +++ b/src/somali/QuestionSom.gf @@ -24,8 +24,8 @@ concrete QuestionSom of Question = CatSom ** open subj = cls.subj ** { -- keep old subject pronoun, noun = ip.s ! Nom -- and place IP first. } ; - obj2 = cls.obj2 ** { -- move old subject noun before object. - s = cls.subj.noun ++ cls.obj2.s + obj = cls.obj ** { -- move old subject noun before object. + s = cls.subj.noun ++ cls.obj.s } ; stm = modSTM "baa" baan cls.stm } ; diff --git a/src/somali/ResSom.gf b/src/somali/ResSom.gf index 0b6099c01..c1bc1b9d5 100644 --- a/src/somali/ResSom.gf +++ b/src/somali/ResSom.gf @@ -426,17 +426,9 @@ oper -- Sequences of adjectives follow the rules for restrictive relatives clauses, i.e. are linked by oo 'and' on an indefinite head NounPhrase and by ee 'and' on a definite NounPhrase (8.1). - -- Komparativ - -- För att uttrycka motsvarigheten till svenskans komparativ placerar man på somaliska helt enkelt prepositionen ká 'från, av, än' framför adjektivet i fråga. Adjektivet får ingen ändelse. - -- Shan waa ay ká yar tahay siddéed. Fem är mindre än åtta. - -- Superlativ - -- Motsvarigheten till svenskans superlativ bildas med prepositionsklustret ugú som till sin betydelse närmast motsvarar svenskans allra, t.ex. - -- ugu horrayntii (det att komma) allra först - Adjective : Type = {s : AForm => Str} ; Adjective2 : Type = Adjective ** {c2 : Preposition} ; - duplA : Str -> Adjective = \yar -> let yaryar = duplicate yar in mkAdj yar yaryar ; @@ -738,8 +730,8 @@ oper VerbPhrase : Type = BaseVerb ** Complement ** BaseAdv ** { c2 : PrepCombination ; -- Prepositions can combine together and with object pronoun. - obj2 : NPLite ; -- {s : Str ; a : PrepAgr} - secObj : Str ; -- if two overt pronoun objects + obj : NPLite ; -- {s : Str ; a : PrepAgr} + obj2 : Str ; -- if two overt pronoun objects vComp : {subjunc : Str ; -- "waa in" or subjunctive construction: "in" is placed here inf : Str ; -- auxiliary VV with infinitive argument subcl : Agreement => Str} -- VV complement if it's a subordinate clause @@ -759,8 +751,8 @@ oper subcl = \\_ => []} ; berri,miscAdv = [] ; c2 = Single NoPrep ; - obj2 = {s = [] ; a = P3_Prep} ; - secObj = [] + obj = {s = [] ; a = P3_Prep} ; + obj2 = [] } ; useVc : Verb2 -> VPSlash = \v2 -> useV v2 ** { @@ -784,10 +776,10 @@ oper } ; insertRefl : VPSlash -> VPSlash = \vps -> vps ** { - obj2 = vps.obj2 ** {a = Reflexive_Prep} ; + obj = vps.obj ** {a = Reflexive_Prep} ; - -- If old obj2 was something else than P3, it is now shown in secObj - secObj = vps.secObj ++ secondObject ! vps.obj2.a ; + -- If old obj was something else than P3, it is now shown in obj2 + obj2 = vps.obj2 ++ secondObject ! vps.obj.a ; } ; insertComp : VPSlash -> NounPhrase -> VerbPhrase = \vp,np -> @@ -805,25 +797,25 @@ oper -- To generalise insertAdv and insertComp VPLite : Type = { c2 : PrepCombination ; - obj2 : NPLite ; - sii,dhex,berri,miscAdv,secObj : Str} ; + obj : NPLite ; + sii,dhex,berri,miscAdv,obj2 : Str} ; insertCompLite : VPLite -> NPLite -> VPLite = \vp,nplite -> - case vp.obj2.a of { + case vp.obj.a of { -- If the old object is 3rd person (or nonexistent), we replace its agreement. - -- We keep both old and new string (=noun, if there was one) in obj2.s. + -- We keep both old and new string (=noun, if there was one) in obj.s. P3_Prep => - vp ** {obj2 = nplite ** { - s = nplite.s ++ vp.obj2.s} - } ; -- no secObj, because there's ≤1 non-3rd-person pronoun. + vp ** {obj = nplite ** { + s = nplite.s ++ vp.obj.s} + } ; -- no obj2, because there's ≤1 non-3rd-person pronoun. -- If old object was non-3rd person, we keep its agreement. -- The new object is put in the secondObject field. _ => - vp ** {obj2 = vp.obj2 ** { - s = nplite.s ++ vp.obj2.s + vp ** {obj = vp.obj ** { + s = nplite.s ++ vp.obj.s } ; - secObj = vp.secObj ++ secondObject ! nplite.a} + obj2 = vp.obj2 ++ secondObject ! nplite.a} } ; insertAdvLite : VPLite -> Adverb -> VPLite = \vp,adv -> @@ -857,8 +849,8 @@ oper ClSlash : Type = BaseAdv ** { -- Fixed in Cl subj : {noun, pron : Str ; isP3 : Bool} ; -- noun and subject pronoun if applicable - obj2 : NPLite ; - secObj : Str ; + obj : NPLite ; + obj2 : Str ; c2 : PrepCombination ; -- NB. QuestIAdv can add more prepositions aComp : Str ; nComp : Str ; @@ -878,7 +870,7 @@ oper predVP : NounPhrase -> VerbPhrase -> ClSlash = \np,vps -> vp ** { subj = {noun = subjnoun ; pron = subjpron ; isP3 = isP3 subj.a} ; - obj2 = vp.obj2 ** {s = vp.obj2.s ++ vp.compar} ; + obj = vp.obj ** {s = vp.obj.s ++ vp.compar} ; pred = \\cltyp,t,a,p => let predRaw = vf cltyp t a p subj.a vp ; in case of { @@ -937,10 +929,10 @@ oper s = \\t,a,p => let -- Put all arguments in their right place --cl : ClSlash = complCl incomplCl ; - prepComb = prepCombTable ! cl.obj2.a ! cl.c2 ; + prepComb = prepCombTable ! cl.obj.a ! cl.c2 ; -- Contractions - bind : Str = case of { + bind : Str = case of { => [] ; -- nothing to attach to the STM _ => BIND } ; -- something to attach, use BIND prepCombNeg : Str = case of { @@ -954,7 +946,7 @@ oper -- Placement of object noun varies depending on type of clause statementNounObj = case cltyp of { - Statement => cl.obj2.s ; + Statement => cl.obj.s ; _ => [] } ; statementNounComp = case cltyp of { Statement => cl.nComp ; @@ -962,11 +954,11 @@ oper -- for subord and question, NP predicatives and objects behave the same subordNounObj = case cltyp of { - Subord => cl.obj2.s ++ cl.nComp ; + Subord => cl.obj.s ++ cl.nComp ; _ => [] } ; questionNounObj = case cltyp of { PolarQuestion|WhQuestion - => cl.obj2.s ++ cl.nComp ; + => cl.obj.s ++ cl.nComp ; _ => [] } ; -- Control whether to include subject pronoun and STM @@ -996,7 +988,7 @@ oper ++ cl.sii -- restricted set of particles ++ cl.dhex -- restricted set of nouns/adverbials - ++ cl.secObj -- "second object" + ++ cl.obj2 -- "second object" ++ cl.vComp.inf -- VV complement, if it's infinitive ++ cl.pred ! cltyp ! t ! a ! p -- the inflecting verb ++ questionNounObj -- noun object if it's a question @@ -1102,31 +1094,30 @@ oper linVP : VForm -> ClType -> VerbPhrase -> Str = \vf,cltyp,vp -> let pred = vp.s ! vf ; - pr = prepCombTable ! vp.obj2.a ! vp.c2 ; - -- obj = {p1 = np.s ; - -- p2 = vp.aComp ! pagr2agr np.a ++ prepCombTable ! np.a ! vps.c2} ; + pr = prepCombTable ! vp.obj.a ! vp.c2 ; neg = case of { => "aan" ; _ => [] } ; in wordOrder cltyp neg pred pr vp ; + -- Light version of the word order complexity in mkClause. wordOrder : ClType -> (neg,pred,prepcomb : Str) -> VerbPhrase -> Str = \cltyp,neg,pred,pr,vp -> vp.berri -- AdV ++ case cltyp of { Subord => [] ; - _ => vp.obj2.s {-obj.p1-} } -- noun object if it's a statement + _ => vp.obj.s } -- noun object if it's a statement ++ neg ++ vp.vComp.subjunc -- "waa in" construction ++ case cltyp of { - Subord => vp.obj2.s ; -- noun object if it's subordinate clause + Subord => vp.obj.s ; -- noun object if it's subordinate clause _ => [] } - ++ vp.aComp ! pagr2agr vp.obj2.a -- AP complement agreeing with object + ++ vp.aComp ! pagr2agr vp.obj.a -- AP complement agreeing with object ++ pr -- object if it's a pronoun ++ vp.sii -- restricted set of particles ++ vp.dhex -- restricted set of nouns/adverbials - ++ vp.secObj -- "second object" + ++ vp.obj2 -- "second object" ++ vp.vComp.inf -- VV complement, if it's infinitive ++ pred -- the verb inflected ++ vp.vComp.subcl ! Sg3 Masc -- VV complement, if it's subordinate clause diff --git a/src/somali/VerbSom.gf b/src/somali/VerbSom.gf index 0b6fde7da..dc81f471e 100644 --- a/src/somali/VerbSom.gf +++ b/src/somali/VerbSom.gf @@ -18,8 +18,8 @@ lin ComplVV vv vp = let vc = vp.vComp in case vv.vvtype of { Waa_In => vp ** { vComp = vc ** {subjunc = vv.s ! VInf} ; -- it's always the word "in", and it will be placed before subject pronoun. it's placed in vv.s!VInf so that the VV would contribute with some string. /IL - obj2 = vp.obj2 ** {s = []} ; -- word order hack to avoid more parameters: - miscAdv = vp.miscAdv ++ vp.obj2.s -- dump the object to miscAdv + obj = vp.obj ** {s = []} ; -- word order hack to avoid more parameters: + miscAdv = vp.miscAdv ++ vp.obj.s -- dump the object to miscAdv } ; Subjunctive => useV vv ** { @@ -46,7 +46,7 @@ lin ComplVS vs s = let vps = useV vs ; subord = SubjS {s="in"} s ; - in vps ** {obj2 = {s = subord.berri ; a = P3_Prep}} ; + in vps ** {obj = {s = subord.berri ; a = P3_Prep}} ; {- -- : VQ -> QS -> VP ; From 3f30e0946e9f510b78bc370d90ddad1e9d61c6bb Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Fri, 27 Sep 2019 15:22:43 +0200 Subject: [PATCH 47/85] (Som) WIP better handling of multiple modifiers and numerals --- src/somali/NounSom.gf | 52 +++++++++++++++++++++++----------- src/somali/NumeralSom.gf | 17 +++++++---- src/somali/ParamSom.gf | 8 ++++++ src/somali/ResSom.gf | 8 ++++-- src/somali/StructuralSom.gf | 3 +- src/somali/unittest/num.gftest | 31 ++++++++++++++++++-- 6 files changed, 91 insertions(+), 28 deletions(-) diff --git a/src/somali/NounSom.gf b/src/somali/NounSom.gf index 20fd9719a..2bc9db63d 100644 --- a/src/somali/NounSom.gf +++ b/src/somali/NounSom.gf @@ -13,9 +13,9 @@ concrete NounSom of Noun = CatSom ** open ResSom, Prelude in { a = getAgr det.n (gender cn) } where { sTable : Case => Str = \\c => let nfc : {nf : NForm ; c : Case} = - case of { + case of { -- Numbers - => {nf=Numerative ; c=c} ; + => {nf=Numerative ; c=c} ; -- special form for fem. nouns <_,Nom,False,Indefinite,Sg> => {nf=NomSg ; c=c} ; @@ -30,13 +30,24 @@ concrete NounSom of Noun = CatSom ** open ResSom, Prelude in { _ => {nf=Def det.n ; c=c} } ; art = gda2da cn.gda ! det.n ; - num = case det.isNum of {True => Sg ; _ => det.n} ; + num = case isNum det.numtype of {True => Sg ; _ => det.n} ; dt : {pref,s : Str} = case of { - => {s = [] ; pref = det.s ! art ! nfc.c} ; -- determiner comes before CN - <_, True,_> => {pref = [] ; s = det.sp ! gender cn ! nfc.c} ; -- CN has undergone ComplN2 and is already quantified - <_,_, True> => {pref = [] ; s = BIND ++ det.shortPoss ! art} ; - _ => {pref = [] ; s = det.s ! art ! nfc.c} + -- Det is a cardinal number. The number is the head of the NP, + -- and CN becomes its modifier. If CN has modifiers of its own, + -- we insert the conjunction "oo" between the number and the CN. + => + let oo = case det.numtype of {Compound => "oo" ; _ => []} + in {s = [] ; pref = det.s ! art ! nfc.c ++ oo} ; + + -- CN has undergone ComplN2 and is already quantified + <_,True,_> => {pref = [] ; s = det.sp ! gender cn ! nfc.c} ; + + -- CN is e.g. a kinship term and takes short possessive + <_,_,True> => {pref = [] ; s = BIND ++ det.shortPoss ! art} ; + + -- Default case + _ => {pref = [] ; s = det.s ! art ! nfc.c} } ; in dt.pref -- if det is numeral ++ cn.s ! nfc.nf @@ -120,23 +131,19 @@ concrete NounSom of Noun = CatSom ** open ResSom, Prelude in { -- : Quant -> Num -> Det ; DetQuant quant num = let indep = Hal in quant ** { s = \\da,c => - case num.isNum of { + case isNum num.numtype of { True => num.s ! indep ++ quant.s ! num.da ! c ++ num.thousand ; False => num.s ! indep ++ quant.s ! da ! c ++ num.thousand } ; - sp = \\g,c => case of { -- TODO check what happens when num.isNum + sp = \\g,c => case of { => num.s ! indep ++ quant.sp ! SgMasc ! c ++ num.thousand ; => num.s ! indep ++ quant.sp ! SgFem ! c ++ num.thousand ; -- Independent form uses plural morpheme, not gender-flipped allomorph => num.s ! indep ++ quant.sp ! PlInv ! c ++ num.thousand } ; - isNum = num.isNum ; + numtype = num.numtype ; n = num.n ; shortPoss = \\da => quant.shortPoss ! da ++ num.s ! indep } ; - -- d = case of { - -- => Numerative ; - -- => Def num.n quant.v ; - -- => Indef num.n } ; -- : Quant -> Num -> Ord -> Det ; -- these five best DetQuantOrd quant num ord = @@ -157,7 +164,11 @@ concrete NounSom of Noun = CatSom ** open ResSom, Prelude in { NumPl = baseNum ** {n = Pl} ; -- : Card -> Num ; - NumCard card = card ** {isNum = True} ; + NumCard card = card ** { + numtype = case card.hasThousand of { + True => Compound ; + False => Basic } + } ; -- : Digits -> Card ; -- NumDigits dig = { s = dig.s ! NCard ; n = dig.n } ; @@ -245,8 +256,11 @@ concrete NounSom of Noun = CatSom ** open ResSom, Prelude in { Use3N3 n3 = lin N2 n3 ; -- : AP -> CN -> CN AdjCN ap cn = cn ** { - s = table { NomSg => cn.s ! Indef Sg ; -- When an adjective is added, noun loses case marker. - x => cn.s ! x } ; + s = table { -- Add oo after Numerative only if this is CN's first modifier. + Numerative => cn.s ! Numerative + ++ andConj Indefinite (notB cn.hasMod) ; + NomSg => cn.s ! Indef Sg ; -- Add adj -> noun loses case marker + nf => cn.s ! nf } ; mod = \\st,n,c => cn.mod ! st ! n ! Abs -- If there was something before, it is now in Abs ++ andConj st cn.hasMod -- If the sentence is already modified, any new modifier needs to be introduced with conjunction @@ -256,6 +270,10 @@ concrete NounSom of Noun = CatSom ** open ResSom, Prelude in { -- : CN -> RS -> CN ; RelCN cn rs = cn ** { + s = table { + Numerative => cn.s ! Numerative ++ andConj Indefinite (notB cn.hasMod) ; + NomSg => cn.s ! Indef Sg ; -- Add adj -> noun loses case marker + nf => cn.s ! nf } ; mod = \\st,n,c => --what to do with subject case if there's both adj and RS? cn.mod ! st ! n ! Abs ++ andConj st cn.hasMod diff --git a/src/somali/NumeralSom.gf b/src/somali/NumeralSom.gf index b674f1326..0ace5e5d6 100644 --- a/src/somali/NumeralSom.gf +++ b/src/somali/NumeralSom.gf @@ -40,6 +40,7 @@ lincat Sub10, Sub100, Sub1000, Sub1000000 = { s : DForm => Str ; thousand : Str ; -- TODO figure out if this really works so + hasThousand : Bool ; ord : Str ; da : DefArticle ; n : Number @@ -64,25 +65,28 @@ lin n7 = mkNum2 "toddoba" "toddobaatan" ; lin n8 = mkNum2Masc "siddeed" "siddeetan" ; lin n9 = mkNum2Masc "sagaal" "sagaashan" ; -lin pot01 = n1.unit ** {n = Sg ; thousand = []} ; +lin pot01 = n1.unit ** {n = Sg ; thousand = [] ; hasThousand = False} ; -lin pot0 d = d.unit ** {n = Pl ; thousand = []} ; +lin pot0 d = d.unit ** {n = Pl ; thousand = [] ; hasThousand = False} ; lin pot110 = n1.ten ** { s = \\df => n1.ten.s ; thousand = [] ; + hasThousand = False ; n = Pl } ; lin pot111 = { s = \\_ => "koob iyo" ++ n1.ten.s ; ord = "koob iyo" ++ n1.ten.ord ; thousand = [] ; + hasThousand = False ; da = M KA ; n = Pl } ; lin pot1to19 d = { s = \\_ => d.unit.s ! Hal ++ "iyo" ++ n1.ten.s ; thousand = [] ; + hasThousand = False ; ord = d.unit.s ! Hal ++ "iyo" ++ n1.ten.ord ; da = M KA ; n = Pl @@ -91,26 +95,31 @@ lin pot0as1 n = n ; lin pot1 d = d.ten ** { s = \\df => d.ten.s ; thousand = [] ; + hasThousand = False ; n = Pl } ; lin pot1plus d e = d.ten ** { s = \\b => e.s ! b ++ "iyo" ++ d.ten.s ; ord = e.s ! Hal ++ "iyo" ++ d.ten.ord ; thousand = [] ; + hasThousand = False ; n = Pl ; } ; lin pot1as2 n = n ; lin pot2 d = d ** { thousand = "boqol" ; + hasThousand = True ; ord = d.s ! Hal ++ "boqlaad" } ; lin pot2plus d e = d ** { thousand = "boqol iyo" ++ e.s ! Hal ; + hasThousand = True ; ord = d.s ! Hal ++ "boqol iyo" ++ e.ord ; n = Pl} ; lin pot2as3 n = n ; lin pot3 n = n ** { thousand = n.thousand ++ "kun" ; + hasThousand = True ; ord = n.s ! Hal ++ "kunaad" ; n = Pl } ; @@ -119,9 +128,7 @@ lin pot3plus n m = n ** { ord = n.ord ++ "kun iyo" ++ m.ord ; n = Pl} ; ---TODO: --- two thousand small cats --- => laba kun oo bisadood oo yar (kun and bisadood are both attributes) + ---------------------------------------------------------------------------- lincat Dig = TDigit ; diff --git a/src/somali/ParamSom.gf b/src/somali/ParamSom.gf index 1c93f6815..b0c12e9a8 100644 --- a/src/somali/ParamSom.gf +++ b/src/somali/ParamSom.gf @@ -210,6 +210,14 @@ param CardOrd = NOrd | NCard ; + -- to know whether to put oo in between numeral and CN + NumType = NoNum | Basic | Compound ; + +oper + isNum : NumType -> Bool = \nt -> case nt of { + NoNum => False ; + _ => True + } ; -------------------------------------------------------------------------------- -- Adjectives diff --git a/src/somali/ResSom.gf b/src/somali/ResSom.gf index c1bc1b9d5..3a90d39b7 100644 --- a/src/somali/ResSom.gf +++ b/src/somali/ResSom.gf @@ -279,7 +279,7 @@ oper Determiner : Type = BaseQuant ** { sp : Gender => Case => Str ; n : Number ; - isNum : Bool ; -- placement in NP + whether to choose Numerative from CN + numtype : NumType ; -- placement in NP + whether to choose Numerative from CN } ; Quant : Type = BaseQuant ** { @@ -289,6 +289,7 @@ oper BaseNum : Type = { s : DForm => Str ; -- independent or attribute thousand : Str ; -- TODO check where possessive suffix goes + hasThousand : Bool ; da : DefArticle ; n : Number } ; @@ -296,13 +297,14 @@ oper baseNum : Num = { s = \\_ => [] ; thousand = [] ; + hasThousand = False ; da = M KA ; n = Sg ; - isNum = False + numtype = NoNum } ; Num : Type = BaseNum ** { - isNum : Bool -- whether to choose Numerative as the value of NForm + numtype : NumType -- whether to choose Numerative as the value of NForm } ; Numeral : Type = BaseNum ** { diff --git a/src/somali/StructuralSom.gf b/src/somali/StructuralSom.gf index c66b9f9fe..50ddf22d7 100644 --- a/src/somali/StructuralSom.gf +++ b/src/somali/StructuralSom.gf @@ -68,7 +68,8 @@ lin much_Det = R.indefDet "" sg ; -} lin somePl_Det = { sp = \\_,_ => "qaar" ; - isPoss, isNum = False ; + isPoss = False ; + numtype = NoNum ; st = Definite ; -- NB. Indefinite means actually only IndefArt. n = Pl ; s = \\x,_ => BIND ++ defStems ! x ++ BIND ++ "a qaarkood" ; diff --git a/src/somali/unittest/num.gftest b/src/somali/unittest/num.gftest index d0e907623..efa0dc0e1 100644 --- a/src/somali/unittest/num.gftest +++ b/src/somali/unittest/num.gftest @@ -1,8 +1,11 @@ +------------------------------- +-- Numerals with determiners -- +------------------------------- + -- LangEng: the two cats LangSom: laba BIND da bisadood Lang: PhrUtt NoPConj (UttNP (DetCN (DetQuant DefArt (NumCard (NumNumeral (num (pot2as3 (pot1as2 (pot0as1 (pot0 n2)))))))) (UseN cat_N))) NoVoc - -- LangEng: those three men LangSom: saddex BIND daas nin Lang: PhrUtt NoPConj (UttNP (DetCN (DetQuant that_Quant (NumCard (NumNumeral (num (pot2as3 (pot1as2 (pot0as1 (pot0 n3)))))))) (UseN man_N))) NoVoc @@ -25,4 +28,28 @@ Lang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron he_ -- LangEng: he is my first man LangSom: waa nin BIND kayg BIND a kowaad -Lang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron he_Pron) (UseComp (CompNP (DetCN (DetQuantOrd (PossPron i_Pron) NumSg (OrdNumeral (num (pot2as3 (pot1as2 (pot0as1 pot01)))))) (UseN man_N))))))) NoVoc \ No newline at end of file +Lang: PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron he_Pron) (UseComp (CompNP (DetCN (DetQuantOrd (PossPron i_Pron) NumSg (OrdNumeral (num (pot2as3 (pot1as2 (pot0as1 pot01)))))) (UseN man_N))))))) NoVoc + +-------------------------------------- +-- Numerals with multiple modifiers -- +-------------------------------------- + +-- LangEng: two cats +LangSom: laba bisadood +Lang: PhrUtt NoPConj (UttNP (DetCN (DetQuant IndefArt (NumCard (NumNumeral (num (pot2as3 (pot1as2 (pot0as1 (pot0 n2)))))))) (UseN cat_N))) NoVoc + +-- LangEng: two small cats +LangSom: laba bisadood oo yar +Lang: PhrUtt NoPConj (UttNP (DetCN (DetQuant IndefArt (NumCard (NumNumeral (num (pot2as3 (pot1as2 (pot0as1 (pot0 n2)))))))) (AdjCN (PositA small_A) (UseN cat_N)))) NoVoc + +-- LangEng: two small cats that have meat +LangSom: laba bisadood oo yar oo hilib leh +Lang: PhrUtt NoPConj (UttNP (DetCN (DetQuant IndefArt (NumCard (NumNumeral (num (pot2as3 (pot1as2 (pot0as1 (pot0 n2)))))))) (RelCN (AdjCN (PositA small_A) (UseN cat_N)) (UseRCl (TTAnt TPres ASimul) PPos (RelVP IdRP (ComplSlash (SlashV2a have_V2) (MassNP (UseN meat_N)))))))) NoVoc + +-- LangEng: two thousand cats +LangSom: laba kun oo bisadood +Lang: PhrUtt NoPConj (UttNP (DetCN (DetQuant IndefArt (NumCard (NumNumeral (num (pot3 (pot1as2 (pot0as1 (pot0 n2)))))))) (UseN cat_N))) NoVoc + +-- LangEng: two thousand small cats +LangSom: laba kun oo bisadood oo yar +Lang: PhrUtt NoPConj (UttNP (DetCN (DetQuant IndefArt (NumCard (NumNumeral (num (pot3 (pot1as2 (pot0as1 (pot0 n2)))))))) (AdjCN (PositA small_A) (UseN cat_N)))) NoVoc From 096115c35fe5ca1d6c41e84d89c85d8a921b6060 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Fri, 27 Sep 2019 16:44:21 +0200 Subject: [PATCH 48/85] (Som) More fine-grained parameter for modifiers in NPs (AP vs. Other) --- src/somali/NounSom.gf | 49 ++++++++++++++++++++++++++---------------- src/somali/ParamSom.gf | 9 ++++++++ src/somali/ResSom.gf | 4 ++-- 3 files changed, 42 insertions(+), 20 deletions(-) diff --git a/src/somali/NounSom.gf b/src/somali/NounSom.gf index 2bc9db63d..37be7bf66 100644 --- a/src/somali/NounSom.gf +++ b/src/somali/NounSom.gf @@ -13,15 +13,15 @@ concrete NounSom of Noun = CatSom ** open ResSom, Prelude in { a = getAgr det.n (gender cn) } where { sTable : Case => Str = \\c => let nfc : {nf : NForm ; c : Case} = - case of { + case of { -- Numbers => {nf=Numerative ; c=c} ; -- special form for fem. nouns - <_,Nom,False,Indefinite,Sg> => {nf=NomSg ; c=c} ; + <_,Nom,NoMod|OtherMod,Indefinite,Sg> => {nf=NomSg ; c=c} ; -- If cn has modifier, Nom ending attaches to the modifier - <_,Nom,True,_,_> => {nf=Def det.n ; c=Abs} ; + <_,Nom,AMod,_,_> => {nf=Def det.n ; c=Abs} ; -- a Det with st=Indefinite uses Indef forms <_,_,_,Indefinite,n> => {nf=Indef n ; c=c} ; @@ -258,27 +258,28 @@ concrete NounSom of Noun = CatSom ** open ResSom, Prelude in { AdjCN ap cn = cn ** { s = table { -- Add oo after Numerative only if this is CN's first modifier. Numerative => cn.s ! Numerative - ++ andConj Indefinite (notB cn.hasMod) ; + ++ andConj Indefinite (notMod cn.modtype) ; NomSg => cn.s ! Indef Sg ; -- Add adj -> noun loses case marker nf => cn.s ! nf } ; mod = \\st,n,c => cn.mod ! st ! n ! Abs -- If there was something before, it is now in Abs - ++ andConj st cn.hasMod -- If the sentence is already modified, any new modifier needs to be introduced with conjunction + ++ andConj st cn.modtype -- If the sentence is already modified, any new modifier needs to be introduced with conjunction ++ ap.s ! AF n c ; - hasMod = True + modtype = AMod } ; -- : CN -> RS -> CN ; RelCN cn rs = cn ** { s = table { - Numerative => cn.s ! Numerative ++ andConj Indefinite (notB cn.hasMod) ; - NomSg => cn.s ! Indef Sg ; -- Add adj -> noun loses case marker + Numerative => cn.s ! Numerative ++ andConj Indefinite (notMod cn.modtype) ; nf => cn.s ! nf } ; mod = \\st,n,c => --what to do with subject case if there's both adj and RS? cn.mod ! st ! n ! Abs - ++ andConj st cn.hasMod + ++ andConj st cn.modtype ++ rs.s ! st ! gennum cn Sg ! c ; -- gennum cn Sg, because plural form is only for 1st person plural - hasMod = True ; + modtype = case cn.modtype of { + AMod => AMod ; + _ => OtherMod } } ; {- @@ -307,11 +308,23 @@ concrete NounSom of Noun = CatSom ** open ResSom, Prelude in { PossNP cn np = cn ** { -- guriga Axmed, not Axmed gurigiisa mod = \\st,n,c => cn.mod ! st ! n ! c ++ objpron np ! Abs } ; -{- + -- : CN -> NP -> CN ; -- glass of wine / two kilos of red apples - PartNP cn np = cn ** { } ; - + PartNP cn np = cn ** { + s = table { + Numerative => cn.s ! Numerative ++ andConj Indefinite (notMod cn.modtype) ; + nf => cn.s ! nf } ; + mod = \\st,n,c => + cn.mod ! st ! n ! c + ++ andConj st cn.modtype -- If the sentence is already modified, any new modifier needs to be introduced with conjunction + ++ np.s ! Abs + ++ "ah" ; + modtype = case cn.modtype of { + AMod => AMod ; + _ => OtherMod } + } ; +{- -- This is different from the partitive, as shown by many languages. @@ -329,10 +342,10 @@ concrete NounSom of Noun = CatSom ** open ResSom, Prelude in { -} oper - andConj : State -> Bool -> Str = \st,hasMod -> - case of { - => "oo" ; - => "ee" ; - _ => [] + andConj : State -> ModType -> Str = \st,mod -> + case of { + => "oo" ; + => "ee" ; + _ => [] } ; } diff --git a/src/somali/ParamSom.gf b/src/somali/ParamSom.gf index b0c12e9a8..531a3a35e 100644 --- a/src/somali/ParamSom.gf +++ b/src/somali/ParamSom.gf @@ -224,6 +224,15 @@ oper param AForm = AF Number Case ; ---- TODO: past tense + ModType = NoMod | AMod | OtherMod ; + +oper + -- to flip ModType + notMod : ModType -> ModType = \mt -> case mt of { + NoMod => OtherMod ; + _ => NoMod + } ; + -------------------------------------------------------------------------------- -- Prepositions diff --git a/src/somali/ResSom.gf b/src/somali/ResSom.gf index 3a90d39b7..32bb9d9cc 100644 --- a/src/somali/ResSom.gf +++ b/src/somali/ResSom.gf @@ -15,7 +15,7 @@ oper CNoun : Type = Noun ** { mod : State -- for conjunctions: oo for indef, ee for def => Number => Case => Str ; - hasMod : Bool ; + modtype : ModType ; isPoss : Bool -- to prevent impossible forms in ComplN2 with Ns that have short possessive, e.g. "father" } ; @@ -159,7 +159,7 @@ oper False => np.s} ; useN : Noun -> CNoun ** BaseNP = \n -> n ** - { mod = \\_,_,_ => [] ; hasMod = False ; + { mod = \\_,_,_ => [] ; modtype = NoMod ; a = Sg3 (gender n) ; isPron,isPoss = False ; empty = [] ; st = Indefinite } ; From b8b43689bcdea419dcc91681145d9cab8aba13b1 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Fri, 27 Sep 2019 17:53:57 +0200 Subject: [PATCH 49/85] (Som) Small bugfixes in RelCN and PartNP --- src/somali/NounSom.gf | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/somali/NounSom.gf b/src/somali/NounSom.gf index 37be7bf66..e41754d1f 100644 --- a/src/somali/NounSom.gf +++ b/src/somali/NounSom.gf @@ -277,9 +277,7 @@ concrete NounSom of Noun = CatSom ** open ResSom, Prelude in { cn.mod ! st ! n ! Abs ++ andConj st cn.modtype ++ rs.s ! st ! gennum cn Sg ! c ; -- gennum cn Sg, because plural form is only for 1st person plural - modtype = case cn.modtype of { - AMod => AMod ; - _ => OtherMod } + modtype = AMod } ; {- @@ -317,7 +315,7 @@ concrete NounSom of Noun = CatSom ** open ResSom, Prelude in { mod = \\st,n,c => cn.mod ! st ! n ! c ++ andConj st cn.modtype -- If the sentence is already modified, any new modifier needs to be introduced with conjunction - ++ np.s ! Abs + ++ objpron np ! Abs ++ "ah" ; modtype = case cn.modtype of { AMod => AMod ; From 4dba178d33e24578d892c167ce09170b0ebf64a8 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Mon, 30 Sep 2019 10:50:26 +0200 Subject: [PATCH 50/85] (Som) Add VPSlashPrep + fix bug in insertAdv --- src/somali/ParamSom.gf | 9 +++++++++ src/somali/ResSom.gf | 7 ++----- src/somali/VerbSom.gf | 7 +++---- 3 files changed, 14 insertions(+), 9 deletions(-) diff --git a/src/somali/ParamSom.gf b/src/somali/ParamSom.gf index 531a3a35e..c64d5838b 100644 --- a/src/somali/ParamSom.gf +++ b/src/somali/ParamSom.gf @@ -261,6 +261,15 @@ oper Single _ => oneWay ! p1 ! p2 ; z => z } ; + combinePassive : Preposition -> PrepCombination = \p -> + case p of { + U => Loo ; + Ku => Lagu ; + Ka => Laga ; + La => Lala ; + _ => Passive + } ; + isPassive : {c2 : PrepCombination} -> Bool = \vp -> case vp.c2 of { Passive | Lagu | Laga | Loo | Lala => True ; diff --git a/src/somali/ResSom.gf b/src/somali/ResSom.gf index 32bb9d9cc..01b3a6464 100644 --- a/src/somali/ResSom.gf +++ b/src/somali/ResSom.gf @@ -769,11 +769,7 @@ oper passVP : VerbPhrase -> VerbPhrase = \vp -> vp ** { c2 = case vp.c2 of { - Single NoPrep => Passive ; - Single Ku => Lagu ; - Single Ka => Laga ; - Single U => Loo ; - Single La => Lala ; + Single p => combinePassive p ; _ => vp.c2 } } ; @@ -827,6 +823,7 @@ oper -- if free complement slots, introduce adv.np with insertComp Single NoPrep => insertCompLite (vp ** {c2 = Single adv.c2}) adv.np ** adv' ; Single p => insertCompLite (vp ** {c2 = combine p adv.c2}) adv.np ** adv' ; + Passive => insertCompLite (vp ** {c2 = combinePassive adv.c2}) adv.np ** adv' ; -- if complement slots are full, just insert strings. _ => vp ** adv'' diff --git a/src/somali/VerbSom.gf b/src/somali/VerbSom.gf index dc81f471e..ed0940118 100644 --- a/src/somali/VerbSom.gf +++ b/src/somali/VerbSom.gf @@ -121,10 +121,9 @@ lin AdVVPSlash adv vps = vps ** { adv = adv.s ++ vps.adv } ; -} -- : VP -> Prep -> VPSlash ; -- live in (it) - -- NB. We need possibly a MissingArg kind of solution here too - -- VPSlashPrep vp prep = vp ** - -- { c2 = case vp.c2 of { NoPrep => prep.prep ; - -- x => x }} ; + VPSlashPrep vp prep = + let adv = prepNP prep emptyNP + in insertAdv vp adv ; From 0e4cedd144dcf89ba74c4e8002700f24cf500e41 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Mon, 30 Sep 2019 15:39:53 +0200 Subject: [PATCH 51/85] (Som) Add V2S --- src/somali/LexiconSom.gf | 2 +- src/somali/ParadigmsSom.gf | 16 ++++++++++++++-- src/somali/VerbSom.gf | 10 +++++++--- 3 files changed, 22 insertions(+), 6 deletions(-) diff --git a/src/somali/LexiconSom.gf b/src/somali/LexiconSom.gf index 585b1fcc3..107f07f7c 100644 --- a/src/somali/LexiconSom.gf +++ b/src/somali/LexiconSom.gf @@ -9,7 +9,7 @@ lin add_V3 = mkV3 "dar" ku NoPrep ; -- lin alas_Interj = mkInterj "" ; -- lin already_Adv = mkA "" ; lin animal_N = mkN "xayawaan" ; --- lin answer_V2S = mkV2 "" ; +lin answer_V2S = mkV2S "jawaab" ku ; -- lin apartment_N = mkN "" ; -- lin apple_N = mkN "" ; -- lin art_N = mkN "" ; diff --git a/src/somali/ParadigmsSom.gf b/src/somali/ParadigmsSom.gf index 075709608..76bfe1c37 100644 --- a/src/somali/ParadigmsSom.gf +++ b/src/somali/ParadigmsSom.gf @@ -95,6 +95,11 @@ oper mkVV : V -> VVForm -> VV ; -- VV out of an existing V } ; + mkV2S : overload { + mkV2S : Str -> V2S ; -- Predictable verb, no preposition. + mkV2S : Str -> Preposition -> V2S ; -- Predictable verb, preposition given as second argument. + mkV2S : V -> Preposition -> V2S -- Unpredictable verb, preposition. + } ; mkVA : Str -> VA = \s -> lin VA (regV s) ; @@ -107,8 +112,6 @@ oper = \s -> lin V2A (regV s ** {c2 = noPrep}) ; mkV2V : Str -> V2V = \s -> lin V2V (regV s ** {c2 = noPrep}) ; - mkV2S : Str -> V2S - = \s -> lin V2S (regV s ** {c2 = noPrep}) ; mkV2Q : Str -> V2Q = \s -> lin V2Q (regV s ** {c2 = noPrep}) ; @@ -248,6 +251,15 @@ oper in lin VV (dummyV ** {vvtype=b ; s = \\_ => "in"}) } ; + mkV2S = overload { + mkV2S : Str -> V2S -- Predictable verb, no preposition. + = \s -> lin V2S (regV s ** {c2 = noPrep}) ; + mkV2S : Str -> Preposition -> V2S -- Predictable verb, preposition given as second argument. + = \s,pr -> lin V2S (regV s ** {c2 = pr}) ; + mkV2S : V -> Preposition -> V2S -- Unpredictable verb, preposition. + = \v,pr -> lin V2S (v ** {c2 = pr}) + } ; + possPrep : N -> CatSom.Prep = \dhex -> emptyPrep ** { hoostiisa = \\agr => let qnt = PossPron (pronTable ! agr) ; diff --git a/src/somali/VerbSom.gf b/src/somali/VerbSom.gf index ed0940118..4df5e0ca7 100644 --- a/src/somali/VerbSom.gf +++ b/src/somali/VerbSom.gf @@ -66,13 +66,17 @@ lin -- : V3 -> NP -> VPSlash ; -- give (it) to her Slash2V3, Slash3V3 = \v3 -> insertComp (useVc3 v3) ; + + -- : V2S -> S -> VPSlash ; -- answer (to him) that it is good + SlashV2S v2s s = + let vps = useVc v2s ; + subord = SubjS {s="in"} s ; + in vps ** {obj = {s = subord.berri ; a = P3_Prep}} ; + {- -- : V2V -> VP -> VPSlash ; -- beg (her) to go SlashV2V v2v vp = ; - -- : V2S -> S -> VPSlash ; -- answer (to him) that it is good - SlashV2S v2s s = ; - -- : V2Q -> QS -> VPSlash ; -- ask (him) who came SlashV2Q v2q qs = ; -} From ba308dcf957ca349ece36c8106172cdd87eea73e Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Mon, 30 Sep 2019 15:40:09 +0200 Subject: [PATCH 52/85] (Som) More phonological assimilation rules --- src/somali/LexiconSom.gf | 2 +- src/somali/ResSom.gf | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/somali/LexiconSom.gf b/src/somali/LexiconSom.gf index 107f07f7c..d36ebd0d1 100644 --- a/src/somali/LexiconSom.gf +++ b/src/somali/LexiconSom.gf @@ -252,7 +252,7 @@ lin name_N = mkN "magac" ; -- -- lin oil_N = mkN "" ; -- lin old_A = mkA "" ; --- lin open_V2 = mkV2 "" ; +lin open_V2 = mkV2 "fur" ; lin paint_V2A = mkV2A "rinjiyee" ; -- lin paper_N = mkN "" ; -- lin paris_PN = mkPN "Paris" ; diff --git a/src/somali/ResSom.gf b/src/somali/ResSom.gf index 01b3a6464..97b1f05c4 100644 --- a/src/somali/ResSom.gf +++ b/src/somali/ResSom.gf @@ -515,8 +515,10 @@ oper _ + ("i"|"e") => "ey" ; _ => "ay" } ; n : Str = case arag of { - _ + #v => "nn" ; -- n duplicates after vowel - _ => "n" } ; + _ + #v => "nn" ; -- n duplicates after vowel + _ + "r" => "r" ; -- Saeed p. 35: agreement marker n (1PL) + _ + "l" => "l" ; -- assimilates to stem final r or. + _ => "n" } ; an : Str = case qaado of { _ + "o" => "an" ; -- Allomorph for imperatives _ => "in" } ; From 5871f9c1651e1eda6aec3cd22221e9f9a7dc236b Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Thu, 3 Oct 2019 17:56:44 +0200 Subject: [PATCH 53/85] (Som) Implement GenModNP + restructure ComplN2 to better reuse code --- src/somali/ExtendSom.gf | 4 ++++ src/somali/NounSom.gf | 34 +++++++++++++++++++--------------- 2 files changed, 23 insertions(+), 15 deletions(-) diff --git a/src/somali/ExtendSom.gf b/src/somali/ExtendSom.gf index 5d62124b6..fdef37935 100644 --- a/src/somali/ExtendSom.gf +++ b/src/somali/ExtendSom.gf @@ -6,6 +6,10 @@ concrete ExtendSom of Extend = CatSom ** open Prelude, ResSom in { lin + + -- : Num -> NP -> CN -> NP ; -- this man's car(s) + GenModNP num np cn = DetCN (DetQuant IndefArt num) (genModCN cn np) ; + -- : NP -> SSlash -> Utt ; -- her I love -- Saeed p. 189- FocusObj np sslash = -- FIXME: preposition disappears in negative sentences let ss = sslash.s ! False ; diff --git a/src/somali/NounSom.gf b/src/somali/NounSom.gf index e41754d1f..5432a8b49 100644 --- a/src/somali/NounSom.gf +++ b/src/somali/NounSom.gf @@ -226,21 +226,7 @@ concrete NounSom of Noun = CatSom ** open ResSom, Prelude in { UseN,UseN2 = ResSom.useN ; -- : N2 -> NP -> CN ; -- Sahra hooyadeed - ComplN2 n2 np = let cn = useN n2 in cn ** {s = \\nf => - let num = case nf of { - Def n => n ; - Indef n => n ; - _ => Sg } ; - art = gda2da cn.gda ! num ; - qnt = PossPron (pronTable ! np.a) ; - det = case cn.shortPoss of { - True => qnt.shortPoss ! art ; - _ => qnt.s ! sg n2.gda ! Abs } ; - noun = case np.isPron of { - True => (pronTable ! np.a).sp ! Abs ; -- long subject pronoun - False => np.s ! Abs } - in noun ++ cn.s ! Def num ++ BIND ++ det ; - isPoss = True} ; + ComplN2 n2 np = genModCN (useN n2) np ; {- -- : N3 -> NP -> N2 ; -- distance from this city (to Paris) @@ -346,4 +332,22 @@ oper => "ee" ; _ => [] } ; + + genModCN : CN -> NP -> CN = \cn,np -> cn ** { + s = \\nf => + let num = case nf of { + Def n => n ; + Indef n => n ; + _ => Sg } ; + art = gda2da cn.gda ! num ; + qnt = PossPron (pronTable ! np.a) ; + det = case cn.shortPoss of { + True => qnt.shortPoss ! art ; + _ => qnt.s ! sg cn.gda ! Abs } ; + noun = case np.isPron of { + True => (pronTable ! np.a).sp ! Abs ; -- long subject pronoun + False => np.s ! Abs } + in noun ++ cn.s ! Def num ++ BIND ++ det ; + isPoss = True} ; + } From c2e0c709a764cf1bd10425943a80210dcb435c12 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Thu, 3 Oct 2019 17:59:00 +0200 Subject: [PATCH 54/85] (Som) Update FocusObj and UseSlash to new type of SSlash --- src/somali/ExtendSom.gf | 6 +----- src/somali/SentenceSom.gf | 6 +++++- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/somali/ExtendSom.gf b/src/somali/ExtendSom.gf index fdef37935..dd8266f77 100644 --- a/src/somali/ExtendSom.gf +++ b/src/somali/ExtendSom.gf @@ -11,11 +11,7 @@ lin GenModNP num np cn = DetCN (DetQuant IndefArt num) (genModCN cn np) ; -- : NP -> SSlash -> Utt ; -- her I love -- Saeed p. 189- - FocusObj np sslash = -- FIXME: preposition disappears in negative sentences - let ss = sslash.s ! False ; - ssSub = sslash.s ! True ; -- the negative particle is the same as subordinate, but verb forms come from main clause - obj = objpron np ! Abs ; - in {s = ssSub.beforeSTM ++ "waxa" ++ ssSub.stm ++ ss.afterSTM ++ obj} ; + FocusObj np sslash = {s = sslash.s ! False ++ objpron np ! Abs} ; -- FocusAdv : Adv -> S -> Utt ; -- today I will sleep -- FocusAdV : AdV -> S -> Utt ; -- never will I sleep diff --git a/src/somali/SentenceSom.gf b/src/somali/SentenceSom.gf index 27167f21f..3460e003f 100644 --- a/src/somali/SentenceSom.gf +++ b/src/somali/SentenceSom.gf @@ -28,7 +28,11 @@ lin -} -- : Temp -> Pol -> ClSlash -> SSlash ; -- (that) she had not seen UseSlash t p cls = { - s = \\isSubord => let cl = cl2sentence isSubord cls in + s = \\isSubord => + let cls' : ClSlash = cls ** { + stm = modSTM "waxa" "waxa aan" cls.stm -- Saeed p. 195 + } ; + cl : Clause = cl2sentence isSubord cls' in t.s ++ p.s ++ cl.s ! t.t ! t.a ! p.p } ; From 6a1ebffcee5d8d43cecd84a8c5b0af21331c1e37 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Thu, 3 Oct 2019 18:01:26 +0200 Subject: [PATCH 55/85] (Som) Implement remaining funs needed for ExtendSom + use ExtendFunctor --- src/somali/AdjectiveSom.gf | 4 +++- src/somali/ExtendSom.gf | 6 +++--- src/somali/IdiomSom.gf | 17 ++++++++--------- src/somali/SentenceSom.gf | 8 +++----- 4 files changed, 17 insertions(+), 18 deletions(-) diff --git a/src/somali/AdjectiveSom.gf b/src/somali/AdjectiveSom.gf index 19b4e6fd3..a971d7292 100644 --- a/src/somali/AdjectiveSom.gf +++ b/src/somali/AdjectiveSom.gf @@ -48,7 +48,9 @@ concrete AdjectiveSom of Adjective = CatSom ** open ResSom, Prelude in { -- phrases, although the semantics is only clear for some adjectives. -- : AP -> SC -> AP ; -- good that she is here - -- SentAP ap sc = ap ** { } ; + SentAP ap sc = ap ** { + s = \\af => ap.s ! af ++ sc.s -- TODO check + } ; -- An adjectival phrase can be modified by an *adadjective*, such as "very". diff --git a/src/somali/ExtendSom.gf b/src/somali/ExtendSom.gf index dd8266f77..d16c7b3a7 100644 --- a/src/somali/ExtendSom.gf +++ b/src/somali/ExtendSom.gf @@ -1,9 +1,9 @@ --# -path=.:../common:../abstract concrete ExtendSom of Extend = CatSom - -- ** ExtendFunctor -- Add this back when all relevant functions are implemented - -- with (Grammar=GrammarSom) - ** open Prelude, ResSom in { + ** ExtendFunctor - [GenModNP, FocusObj, ComplDirectVS, ComplDirectVQ] + with (Grammar=GrammarSom) + ** open Prelude, ResSom, NounSom in { lin diff --git a/src/somali/IdiomSom.gf b/src/somali/IdiomSom.gf index 01f7948fe..fdd132a55 100644 --- a/src/somali/IdiomSom.gf +++ b/src/somali/IdiomSom.gf @@ -1,27 +1,26 @@ --1 Idiom: Idiomatic Expressions -concrete IdiomSom of Idiom = CatSom ** open Prelude, ResSom, VerbSom in { +concrete IdiomSom of Idiom = CatSom ** open Prelude, ResSom, VerbSom, NounSom, StructuralSom in { -- This module defines constructions that are formed in fixed ways, -- often different even in closely related languages. lin - -- : VP -> Cl ; -- it is hot - --ImpersCl = ; - - -- : VP -> Cl ; -- one sleeps - GenericCl vp = predVP impersNP (passVP vp) ; + -- ImpersCl : VP -> Cl ; -- it is hot + -- GenericCl : VP -> Cl ; -- one sleeps + ImpersCl, + GenericCl = \vp -> predVP impersNP (passVP vp) ; {- CleftNP : NP -> RS -> Cl ; -- it is I who did it CleftAdv : Adv -> S -> Cl ; -- it is here she slept -} -- : NP -> Cl ; -- there is a house - -- ExistNP np = - -- let vp = UseComp (CompNP np) - -- in ; + ExistNP np = + let vp = UseComp (CompNP np) + in predVP impersNP vp ; {- ExistIP : IP -> QCl ; -- which houses are there diff --git a/src/somali/SentenceSom.gf b/src/somali/SentenceSom.gf index 3460e003f..4c044bb29 100644 --- a/src/somali/SentenceSom.gf +++ b/src/somali/SentenceSom.gf @@ -42,19 +42,17 @@ lin --2 Embedded sentences -{- -- : S -> SC ; - EmbedS s = { } ; + EmbedS s = {s = s.s ! True} ; -- choose subordinate -- : QS -> SC ; - EmbedQS qs = { } ; + -- EmbedQS qs = { } ; -- : VP -> SC ; - EmbedVP vp = { s = linVP vp } ; + EmbedVP vp = {s = infVP vp} ; --2 Sentences --} -- : Temp -> Pol -> Cl -> S ; UseCl t p cls = { s = \\isSubord => let cl = cl2sentence isSubord cls in From 0ef64ed77a031d3523bcfd1be2d7bd8829e35425 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Thu, 3 Oct 2019 18:01:43 +0200 Subject: [PATCH 56/85] (Som) Remove implemented funs from MissingSom --- src/somali/MissingSom.gf | 35 ----------------------------------- 1 file changed, 35 deletions(-) diff --git a/src/somali/MissingSom.gf b/src/somali/MissingSom.gf index 6d3ad2ee8..f99d8d6b6 100644 --- a/src/somali/MissingSom.gf +++ b/src/somali/MissingSom.gf @@ -21,43 +21,28 @@ oper AdvSlash : ClSlash -> Adv -> ClSlash = notYet "AdvSlash" ; oper ApposCN : CN -> NP -> CN = notYet "ApposCN" ; oper BaseAP : AP -> AP -> ListAP = notYet "BaseAP" ; oper BaseAdV : AdV -> AdV -> ListAdV = notYet "BaseAdV" ; -oper BaseAdv : Adv -> Adv -> ListAdv = notYet "BaseAdv" ; oper BaseCN : CN -> CN -> ListCN = notYet "BaseCN" ; oper BaseIAdv : IAdv -> IAdv -> ListIAdv = notYet "BaseIAdv" ; -oper BaseNP : NP -> NP -> ListNP = notYet "BaseNP" ; -oper BaseRS : RS -> RS -> ListRS = notYet "BaseRS" ; oper BaseS : S -> S -> ListS = notYet "BaseS" ; oper CAdvAP : CAdv -> AP -> NP -> AP = notYet "CAdvAP" ; oper CleftAdv : Adv -> S -> Cl = notYet "CleftAdv" ; oper CleftNP : NP -> RS -> Cl = notYet "CleftNP" ; -oper CompAdv : Adv -> Comp = notYet "CompAdv" ; -oper CompIAdv : IAdv -> IComp = notYet "CompIAdv" ; -oper CompIP : IP -> IComp = notYet "CompIP" ; -oper ComparA : A -> NP -> AP = notYet "ComparA" ; oper ComparAdvAdj : CAdv -> A -> NP -> Adv = notYet "ComparAdvAdj" ; oper ComparAdvAdjS : CAdv -> A -> S -> Adv = notYet "ComparAdvAdjS" ; oper ComplA2 : A2 -> NP -> AP = notYet "ComplA2" ; oper ComplN3 : N3 -> NP -> N2 = notYet "ComplN3" ; oper ComplSlashIP : VPSlash -> IP -> QVP = notYet "ComplSlashIP" ; -oper ComplVA : VA -> AP -> VP = notYet "ComplVA" ; oper ComplVQ : VQ -> QS -> VP = notYet "ComplVQ" ; -oper ComplVS : VS -> S -> VP = notYet "ComplVS" ; oper ConjAP : Conj -> ListAP -> AP = notYet "ConjAP" ; oper ConjAdV : Conj -> ListAdV -> AdV = notYet "ConjAdV" ; -oper ConjAdv : Conj -> ListAdv -> Adv = notYet "ConjAdv" ; oper ConjCN : Conj -> ListCN -> CN = notYet "ConjCN" ; oper ConjDet : Conj -> ListDAP -> Det = notYet "ConjDet" ; oper ConjIAdv : Conj -> ListIAdv -> IAdv = notYet "ConjIAdv" ; -oper ConjNP : Conj -> ListNP -> NP = notYet "ConjNP" ; -oper ConjRS : Conj -> ListRS -> RS = notYet "ConjRS" ; oper ConjS : Conj -> ListS -> S = notYet "ConjS" ; oper ConsAP : AP -> ListAP -> ListAP = notYet "ConsAP" ; oper ConsAdV : AdV -> ListAdV -> ListAdV = notYet "ConsAdV" ; -oper ConsAdv : Adv -> ListAdv -> ListAdv = notYet "ConsAdv" ; oper ConsCN : CN -> ListCN -> ListCN = notYet "ConsCN" ; oper ConsIAdv : IAdv -> ListIAdv -> ListIAdv = notYet "ConsIAdv" ; -oper ConsNP : NP -> ListNP -> ListNP = notYet "ConsNP" ; -oper ConsRS : RS -> ListRS -> ListRS = notYet "ConsRS" ; oper ConsS : S -> ListS -> ListS = notYet "ConsS" ; oper CountNP : Det -> NP -> NP = notYet "CountNP" ; oper DefArt : Quant = notYet "DefArt" ; @@ -68,23 +53,16 @@ oper DetNP : Det -> NP = notYet "DetNP" ; oper DetQuant : Quant -> Num -> Det = notYet "DetQuant" ; oper DetQuantOrd : Quant -> Num -> Ord -> Det = notYet "DetQuantOrd" ; oper EmbedQS : QS -> SC = notYet "EmbedQS" ; -oper EmbedS : S -> SC = notYet "EmbedS" ; -oper EmbedVP : VP -> SC = notYet "EmbedVP" ; oper ExistIP : IP -> QCl = notYet "ExistIP" ; oper ExistIPAdv : IP -> Adv -> QCl = notYet "ExistIPAdv" ; -oper ExistNP : NP -> Cl = notYet "ExistNP" ; oper ExistNPAdv : NP -> Adv -> Cl = notYet "ExistNPAdv" ; oper ExtAdvS : Adv -> S -> S = notYet "ExtAdvS" ; oper ExtAdvVP : VP -> Adv -> VP = notYet "ExtAdvVP" ; oper FunRP : Prep -> NP -> RP -> RP = notYet "FunRP" ; -oper GenericCl : VP -> Cl = notYet "GenericCl" ; oper IdRP : RP = notYet "IdRP" ; oper IdetIP : IDet -> IP = notYet "IdetIP" ; -oper IdetQuant : IQuant -> Num -> IDet = notYet "IdetQuant" ; oper ImpP3 : NP -> VP -> Utt = notYet "ImpP3" ; oper ImpPl1 : VP -> Utt = notYet "ImpPl1" ; -oper ImpVP : VP -> Imp = notYet "ImpVP" ; -oper ImpersCl : VP -> Cl = notYet "ImpersCl" ; oper NumCard : Card -> Num = notYet "NumCard" ; oper NumDigits : Digits -> Card = notYet "NumDigits" ; oper NumNumeral : Numeral -> Card = notYet "NumNumeral" ; @@ -102,21 +80,10 @@ oper PossPron : Pron -> Quant = notYet "PossPron" ; oper PredSCVP : SC -> VP -> Cl = notYet "PredSCVP" ; oper PredetNP : Predet -> NP -> NP = notYet "PredetNP" ; oper PrepIP : Prep -> IP -> IAdv = notYet "PrepIP" ; -oper ProgrVP : VP -> VP = notYet "ProgrVP" ; -oper QuestCl : Cl -> QCl = notYet "QuestCl" ; -oper QuestIAdv : IAdv -> Cl -> QCl = notYet "QuestIAdv" ; -oper QuestIComp : IComp -> NP -> QCl = notYet "QuestIComp" ; oper QuestQVP : IP -> QVP -> QCl = notYet "QuestQVP" ; -oper QuestSlash : IP -> ClSlash -> QCl = notYet "QuestSlash" ; -oper QuestVP : IP -> VP -> QCl = notYet "QuestVP" ; oper ReflA2 : A2 -> AP = notYet "ReflA2" ; -oper RelCN : CN -> RS -> CN = notYet "RelCN" ; oper RelCl : Cl -> RCl = notYet "RelCl" ; -oper RelNP : NP -> RS -> NP = notYet "RelNP" ; oper RelS : S -> RS -> S = notYet "RelS" ; -oper RelSlash : RP -> ClSlash -> RCl = notYet "RelSlash" ; -oper RelVP : RP -> VP -> RCl = notYet "RelVP" ; -oper SSubjS : S -> Subj -> S -> S = notYet "SSubjS" ; oper SelfAdVVP : VP -> VP = notYet "SelfAdVVP" ; oper SelfAdvVP : VP -> VP = notYet "SelfAdvVP" ; oper SelfNP : NP -> NP = notYet "SelfNP" ; @@ -125,10 +92,8 @@ oper SentCN : CN -> SC -> CN = notYet "SentCN" ; oper SlashPrep : Cl -> Prep -> ClSlash = notYet "SlashPrep" ; oper SlashV2A : V2A -> AP -> VPSlash = notYet "SlashV2A" ; oper SlashV2Q : V2Q -> QS -> VPSlash = notYet "SlashV2Q" ; -oper SlashV2S : V2S -> S -> VPSlash = notYet "SlashV2S" ; oper SlashV2V : V2V -> VP -> VPSlash = notYet "SlashV2V" ; oper SlashV2VNP : V2V -> NP -> VPSlash -> VPSlash = notYet "SlashV2VNP" ; -oper SlashVP : NP -> VPSlash -> ClSlash = notYet "SlashVP" ; oper SlashVS : NP -> VS -> SSlash -> ClSlash = notYet "SlashVS" ; oper SlashVV : VV -> VPSlash -> VPSlash = notYet "SlashVV" ; oper SubjS : Subj -> S -> Adv = notYet "SubjS" ; From a178f700f6b925845e4b84d0d1d1bb5cd74ed477 Mon Sep 17 00:00:00 2001 From: Herbert Lange Date: Sun, 13 Oct 2019 17:30:28 +0200 Subject: [PATCH 57/85] work on ordinal numbers --- src/latin/NounLat.gf | 6 +- src/latin/NumeralLat.gf | 136 ++++++++++++++++++++++++---------------- src/latin/ResLat.gf | 34 +++++----- 3 files changed, 102 insertions(+), 74 deletions(-) diff --git a/src/latin/NounLat.gf b/src/latin/NounLat.gf index b7d759e8e..7c0df4128 100644 --- a/src/latin/NounLat.gf +++ b/src/latin/NounLat.gf @@ -105,8 +105,10 @@ concrete NounLat of Noun = CatLat ** open ResLat, Prelude, ConjunctionLat in { -- OrdDigits n = {s = n.s ! NOrd} ; -- lin --- NumNumeral numeral = numeral.s ; --- OrdNumeral numeral = numeral.ord ; + -- NumNumeral : Numeral -> Card ; -- fifty-one + NumNumeral numeral = { s = numeral.s ; n = numeral.n } ; + -- OrdNumeral : Numeral -> Ord ; -- fifty-first + OrdNumeral numeral = { s = numeral.ord } ; -- -- AdNum adn num = {s = adn.s ++ num.s ; n = num.n} ; -- diff --git a/src/latin/NumeralLat.gf b/src/latin/NumeralLat.gf index 075915b62..0ed4fe40e 100644 --- a/src/latin/NumeralLat.gf +++ b/src/latin/NumeralLat.gf @@ -18,111 +18,136 @@ concrete NumeralLat of Numeral = CatLat, ParamX[Number] ** open ParadigmsLat, Pr 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 } ; + pot01 = { + s = n1.s ! one ; + d = { num, ord = n1.s } ; + n = singular ; + below8 = n1.below8 ; + ord = n1.ord ! one + } ; -- 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 - } ; + d = { num,ord = 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 + below8 = d.below8 ; + ord = d.ord ! one ; } ; -- 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 - } ; + d = { num, ord = 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 + below8 = Yes ; + ord = n1.ord ! ten } ; -- 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 - } ; + d = { num, ord = 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 + below8 = Ign ; + ord = n1.ord ! eleven } ; -- 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 - } ; + d = { num, ord = 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 + below8 = Yes ; + ord = d.ord ! ten } ; -- 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 ; + No8 => "duo" ++ Prelude.BIND ++ "de" ++ Prelude.BIND ++ d.tenNext ; + No9 => "un" ++ Prelude.BIND ++ "de" ++ 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 - } ; + d = { num, ord = table { + thousand => \\g,c => newS ! g ! c ++ n1.s ! thousand ! g ! c ; + u => \\g,c => n.d.num ! u ! g ! c + } + }; below8 = Ign ; - n = plural + n = plural ; + ord = \\_,_,_ => nonExist -- TODO } ; -- 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 - } ; + s = n.d.num ! hundred ; + d = { num, ord = table { + thousand => \\g,c => n.d.num ! hundred ! g ! c ++ n1.s ! thousand ! g ! c ; + u => \\g,c => n.d.num ! u ! g ! c + } + }; n = plural ; - below8 = Yes} ; + below8 = Yes ; + ord = \\_,_,_ => nonExist -- TODO + } ; -- d * 100 + n pot2plus d n = let - newS : Gender => Case => Str = \\g,c => d.d ! hundred ! g ! c ++ "et" ++ n.s ! g ! c + newS : Gender => Case => Str = \\g,c => d.d.num ! 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 - } ; + d = { num, ord = table { + thousand => \\g,c => newS ! g ! c ++ n1.s ! thousand ! g ! c ; + u => \\g,c => n.d.num ! u ! g ! c + } + }; below8 = Ign ; - n = plural + n = plural; + ord = \\_,_,_ => nonExist -- TODO } ; -- 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 + s = \\g,c => n.s ! g ! c ++ n.d.num ! thousand ! g ! c ; + d = { num,ord = table { + thousand => \\g,c => n.s ! g ! c ++ n.d.num ! thousand ! g ! c ; + u => \\g,c => n.d.num ! u ! g ! c + } } ; below8 = Ign ; - n = plural + n = plural ; + ord = \\_,_,_ => nonExist -- TODO } ; -- d * 1000 + n pot3plus d n = { - s = \\g,c => d.d ! thousand ! g ! c ++ "et" ++ n.s ! g ! c ; - d = n.d ; + s = \\g,c => d.d.num ! thousand ! g ! c ++ "et" ++ n.s ! g ! c ; + d = n.d ; -- ??? below8 = Ign ; - n = plural + n = plural ; + ord = \\_,_,_ => nonExist -- TODO } ; oper @@ -146,14 +171,15 @@ concrete NumeralLat of Numeral = CatLat, ParamX[Number] ** open ParadigmsLat, Pr 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 } ; + ord = + table { one => ordFlex ord1 ; + eleven => \\_,_,_ => nonExist ; + ten => ordFlex ord10 ; + hundred => ordFlex ord100 ; + thousand => \\_,_,_ => nonExist ; + ten_thousand => \\_,_,_ => nonExist ; + hundred_thousand => \\_,_,_ => nonExist + } ; tenNext = tenNext ; below8 = b8 } ; diff --git a/src/latin/ResLat.gf b/src/latin/ResLat.gf index 75a76ea3c..702e2bea9 100644 --- a/src/latin/ResLat.gf +++ b/src/latin/ResLat.gf @@ -1472,8 +1472,8 @@ oper Below8 = Yes | No8 | No9 | Ign ; oper -- 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 } ; + TDigit : Type = { s : Unit => Gender => Case => Str ; tenNext : Str ; below8 : Below8 ; ord : Unit => Gender => Number => Case => Str } ; + TNumeral : Type = { s : Gender => Case => Str ; d : { num, ord : Unit => Gender => Case => Str } ; n : Number ; below8 : Below8 ; ord : Gender => Number => Case => Str } ; -- Inflection for cardinal numbers cardFlex : Str -> Gender => Case => Str = @@ -1496,21 +1496,21 @@ oper } ; _ => \\_,_ => 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" - -- } + ordFlex : Str -> Gender => Number => Case => Str = + \o -> 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 } ; From d900d16dd908919aaa3b4d764b9ec8daa99c5f03 Mon Sep 17 00:00:00 2001 From: Herbert Lange Date: Tue, 29 Oct 2019 14:42:14 +0100 Subject: [PATCH 58/85] new version of extend --- src/latin/ExtendLat.gf | 255 +++++++++++++++++++++++++++++++++++++++-- 1 file changed, 247 insertions(+), 8 deletions(-) diff --git a/src/latin/ExtendLat.gf b/src/latin/ExtendLat.gf index 3fd492dee..d1babd834 100644 --- a/src/latin/ExtendLat.gf +++ b/src/latin/ExtendLat.gf @@ -1,9 +1,248 @@ -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 ; +--1 Extensions of core RGL syntax (the Grammar module) + +-- This module defines syntax rules that are not yet implemented in all +-- languages, and perhaps never implementable either. But all rules are given +-- a default implementation in common/ExtendFunctor.gf so that they can be included +-- in the library API. The default implementations are meant to be overridden in each +-- xxxxx/ExtendXxx.gf when the work proceeds. +-- +-- This module is aimed to replace the original Extra.gf, which is kept alive just +-- for backwardcommon compatibility. It will also replace translator/Extensions.gf +-- and thus eliminate the often duplicated work in those two modules. +-- +-- (c) Aarne Ranta 2017-08-20 under LGPL and BSD + + +concrete ExtendLat of Extend = CatLat ** open ResLat in { + 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 +-- GenNP : NP -> Quant ; -- this man's +-- GenIP : IP -> IQuant ; -- whose +-- GenRP : Num -> CN -> RP ; -- whose car + +-- -- In case the first two are not available, the following applications should in any case be. + +-- GenModNP : Num -> NP -> CN -> NP ; -- this man's car(s) +-- GenModIP : Num -> IP -> CN -> IP ; -- whose car(s) + +-- CompBareCN : CN -> Comp ; -- (is) teacher + +-- StrandQuestSlash : IP -> ClSlash -> QCl ; -- whom does John live with +-- StrandRelSlash : RP -> ClSlash -> RCl ; -- that he lives in +-- EmptyRelSlash : ClSlash -> RCl ; -- he lives in + + +-- -- $VP$ conjunction, separate categories for finite and infinitive forms (VPS and VPI, respectively) +-- -- covering both in the same category leads to spurious VPI parses because VPS depends on many more tenses + +-- cat +-- VPS ; -- finite VP's with tense and polarity +-- [VPS] {2} ; +-- VPI ; +-- [VPI] {2} ; -- infinitive VP's (TODO: with anteriority and polarity) + +-- fun +-- MkVPS : Temp -> Pol -> VP -> VPS ; -- hasn't slept +-- ConjVPS : Conj -> [VPS] -> VPS ; -- has walked and won't sleep +-- PredVPS : NP -> VPS -> S ; -- she [has walked and won't sleep] + +-- MkVPI : VP -> VPI ; -- to sleep (TODO: Ant and Pol) +-- ConjVPI : Conj -> [VPI] -> VPI ; -- to sleep and to walk +-- ComplVPIVV : VV -> VPI -> VP ; -- must sleep and walk + +-- -- the same for VPSlash, taking a complement with shared V2 verbs + +-- cat +-- VPS2 ; -- have loved (binary version of VPS) +-- [VPS2] {2} ; -- has loved, hates" +-- VPI2 ; -- to love (binary version of VPI) +-- [VPI2] {2} ; -- to love, to hate + +-- fun +-- MkVPS2 : Temp -> Pol -> VPSlash -> VPS2 ; -- has loved +-- ConjVPS2 : Conj -> [VPS2] -> VPS2 ; -- has loved and now hates +-- ComplVPS2 : VPS2 -> NP -> VPS ; -- has loved and now hates that person + +-- MkVPI2 : VPSlash -> VPI2 ; -- to love +-- ConjVPI2 : Conj -> [VPI2] -> VPI2 ; -- to love and hate +-- ComplVPI2 : VPI2 -> NP -> VPI ; -- to love and hate that person + +-- fun +-- ProDrop : Pron -> Pron ; -- unstressed subject pronoun becomes empty: "am tired" + +-- ICompAP : AP -> IComp ; -- "how old" +-- IAdvAdv : Adv -> IAdv ; -- "how often" + +-- CompIQuant : IQuant -> IComp ; -- which (is it) [agreement to NP] + +-- PrepCN : Prep -> CN -> Adv ; -- by accident [Prep + CN without article] + +-- -- fronted/focal constructions, only for main clauses + +-- fun +-- FocusObj : NP -> SSlash -> Utt ; -- her I love +-- FocusAdv : Adv -> S -> Utt ; -- today I will sleep +-- FocusAdV : AdV -> S -> Utt ; -- never will I sleep +-- FocusAP : AP -> NP -> Utt ; -- green was the tree + +-- -- participle constructions +-- PresPartAP : VP -> AP ; -- (the man) looking at Mary +-- EmbedPresPart : VP -> SC ; -- looking at Mary (is fun) + + -- PastPartAP : VPSlash -> AP ; -- lost (opportunity) ; (opportunity) lost in space + PastPartAP vp = { s = vp.part ! VPassPerf } ; +-- PastPartAgentAP : VPSlash -> NP -> AP ; -- (opportunity) lost by the company + +-- -- this is a generalization of Verb.PassV2 and should replace it in the future. + +-- PassVPSlash : VPSlash -> VP ; -- be forced to sleep + +-- -- the form with an agent may result in a different linearization +-- -- from an adverbial modification by an agent phrase. + +-- PassAgentVPSlash : VPSlash -> NP -> VP ; -- be begged by her to go + +-- -- publishing of the document + +-- NominalizeVPSlashNP : VPSlash -> NP -> NP ; + +-- -- counterpart to ProgrVP, for VPSlash + +-- ProgrVPSlash : VPSlash -> VPSlash; + +-- -- existential for mathematics + +-- ExistsNP : NP -> Cl ; -- there exists a number / there exist numbers + +-- -- existentials with a/no variation + +-- ExistCN : CN -> Cl ; -- there is a car / there is no car +-- ExistMassCN : CN -> Cl ; -- there is beer / there is no beer +-- ExistPluralCN : CN -> Cl ; -- there are trees / there are no trees + +-- -- generalisation of existential, with adverb as a parameter +-- AdvIsNP : Adv -> NP -> Cl ; -- here is the tree / here are the trees +-- AdvIsNPAP : Adv -> NP -> AP -> Cl ; -- here are the instructions documented + +-- -- infinitive for purpose AR 21/8/2013 + +-- PurposeVP : VP -> Adv ; -- to become happy + +-- -- object S without "that" + +-- ComplBareVS : VS -> S -> VP ; -- say she runs +-- SlashBareV2S : V2S -> S -> VPSlash ; -- answer (to him) it is good + +-- ComplDirectVS : VS -> Utt -> VP ; -- say: "today" +-- ComplDirectVQ : VQ -> Utt -> VP ; -- ask: "when" + +-- -- front the extraposed part + +-- FrontComplDirectVS : NP -> VS -> Utt -> Cl ; -- "I am here", she said +-- FrontComplDirectVQ : NP -> VQ -> Utt -> Cl ; -- "where", she asked + +-- -- proper structure of "it is AP to VP" + +-- PredAPVP : AP -> VP -> Cl ; -- it is good to walk + +-- -- to use an AP as CN or NP without CN + +-- AdjAsCN : AP -> CN ; -- a green one ; en grön (Swe) +-- AdjAsNP : AP -> NP ; -- green (is good) + +-- -- infinitive complement for IAdv + +-- PredIAdvVP : IAdv -> VP -> QCl ; -- how to walk? + +-- -- alternative to EmbedQS. For English, EmbedQS happens to work, +-- -- because "what" introduces question and relative. The default linearization +-- -- could be e.g. "the thing we did (was fun)". + +-- EmbedSSlash : SSlash -> SC ; -- what we did (was fun) + +-- -- reflexive noun phrases: a generalization of Verb.ReflVP, which covers just reflexive pronouns +-- -- This is necessary in languages like Swedish, which have special reflexive possessives. +-- -- However, it is also needed in application grammars that want to treat "brush one's teeth" as a one-place predicate. + +-- cat +-- RNP ; -- reflexive noun phrase, e.g. "my family and myself" +-- RNPList ; -- list of reflexives to be coordinated, e.g. "my family, myself, everyone" + +-- -- Notice that it is enough for one NP in RNPList to be RNP. + +-- fun +-- ReflRNP : VPSlash -> RNP -> VP ; -- love my family and myself + +-- ReflPron : RNP ; -- myself +-- ReflPoss : Num -> CN -> RNP ; -- my car(s) + +-- PredetRNP : Predet -> RNP -> RNP ; -- all my brothers + +-- ConjRNP : Conj -> RNPList -> RNP ; -- my family, John and myself + +-- Base_rr_RNP : RNP -> RNP -> RNPList ; -- my family, myself +-- Base_nr_RNP : NP -> RNP -> RNPList ; -- John, myself +-- Base_rn_RNP : RNP -> NP -> RNPList ; -- myself, John +-- Cons_rr_RNP : RNP -> RNPList -> RNPList ; -- my family, myself, John +-- Cons_nr_RNP : NP -> RNPList -> RNPList ; -- John, my family, myself +-- ---- Cons_rn_RNP : RNP -> ListNP -> RNPList ; -- myself, John, Mary + + +-- --- from Extensions + +-- ComplGenVV : VV -> Ant -> Pol -> VP -> VP ; -- want not to have slept +-- ---- SlashV2V : V2V -> Ant -> Pol -> VPS -> VPSlash ; -- force (her) not to have slept + +-- CompoundN : N -> N -> N ; -- control system / controls system / control-system +-- CompoundAP : N -> A -> AP ; -- language independent / language-independent + +-- GerundCN : VP -> CN ; -- publishing of the document (can get a determiner) +-- GerundNP : VP -> NP ; -- publishing the document (by nature definite) +-- GerundAdv : VP -> Adv ; -- publishing the document (prepositionless adverb) + +-- WithoutVP : VP -> Adv ; -- without publishing the document +-- ByVP : VP -> Adv ; -- by publishing the document +-- InOrderToVP : VP -> Adv ; -- (in order) to publish the document + +-- ApposNP : NP -> NP -> NP ; -- Mr Macron, the president of France, + +-- AdAdV : AdA -> AdV -> AdV ; -- almost always +-- UttAdV : AdV -> Utt ; -- always(!) +-- PositAdVAdj : A -> AdV ; -- (that she) positively (sleeps) + +-- CompS : S -> Comp ; -- (the fact is) that she sleeps +-- CompQS : QS -> Comp ; -- (the question is) who sleeps +-- CompVP : Ant -> Pol -> VP -> Comp ; -- (she is) to go + +-- -- very language-specific things + +-- -- Eng +-- UncontractedNeg : Pol ; -- do not, etc, as opposed to don't +-- UttVPShort : VP -> Utt ; -- have fun, as opposed to "to have fun" +-- ComplSlashPartLast : VPSlash -> NP -> VP ; -- set it apart, as opposed to "set apart it" + +-- -- Romance +-- DetNPMasc : Det -> NP ; +-- DetNPFem : Det -> NP ; + +-- UseComp_estar : Comp -> VP ; -- (Cat, Spa, Por) "está cheio" instead of "é cheio" + +-- SubjRelNP : NP -> RS -> NP ; -- Force RS in subjunctive: lo que les *resulte* mejor + +-- iFem_Pron : Pron ; -- I (Fem) +-- youFem_Pron : Pron ; -- you (Fem) +-- weFem_Pron : Pron ; -- we (Fem) +-- youPlFem_Pron : Pron ; -- you plural (Fem) +-- theyFem_Pron : Pron ; -- they (Fem) +-- youPolFem_Pron : Pron ; -- you polite (Fem) +-- youPolPl_Pron : Pron ; -- you polite plural (Masc) +-- youPolPlFem_Pron : Pron ; -- you polite plural (Fem) + +-- -- German +-- UttAccNP : NP -> Utt ; -- him (accusative) +-- UttDatNP : NP -> Utt ; -- him (dative) +-- UttAccIP : IP -> Utt ; -- whom (accusative) +-- UttDatIP : IP -> Utt ; -- whom (dative) + + +} From 4e8ecea403fc02911c6fa54345a14162587d0bde Mon Sep 17 00:00:00 2001 From: Herbert Lange Date: Tue, 29 Oct 2019 14:46:00 +0100 Subject: [PATCH 59/85] updated the large-scale dictionary --- src/latin/DictLat.gf | 21027 ++++++----- src/latin/DictLatAbs.gf | 74126 +++++++++++++++++++------------------- 2 files changed, 47574 insertions(+), 47579 deletions(-) diff --git a/src/latin/DictLat.gf b/src/latin/DictLat.gf index 403963d43..e0097effb 100644 --- a/src/latin/DictLat.gf +++ b/src/latin/DictLat.gf @@ -1,15 +1,15 @@ --# -path=.:..:latin -concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat in { +concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ResLat, ExtraLat in { -- extracted from http://archives.nd.edu/whitaker/dictpage.htm lin - A_N = constN "A." masculine ; -- [XXXCG] :: Aulus (Roman praenomen); (abb. A./Au.); [Absolvo, Antiquo => free, reject]; + 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); - 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...?); + 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); + 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...?); 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; Adonai_N = constN "Adonai" masculine ; -- [XEXFE] :: Lord, God; (Hebrew); @@ -18,7 +18,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat Adrumetum_N_N = mkN "Adrumetum" ; -- [XXAES] :: Andrumetum/Hadrumetum (city of Africa propria, capital of province Byzacene); Adrumetus_F_N = mkN "Adrumetus" ; -- [XXAES] :: Andrumetum/Hadrumetum (city of Africa propria, capital of province Byzacene); Aeduus_M_N = mkN "Aeduus" ; -- [XXFDO] :: Aedui (pl.); (also Haedui); (tribe of Cen. Gaul - in Caesar's Gallic War); - Aegides_M_N = mkN "Aegides" "Aegidae " masculine ; -- [XYXDO] :: son of Aegeus (i.e. Theseus); descendants of Aegeus (pl.); + Aegides_M_N = mkN "Aegides" "Aegidae" masculine ; -- [XYXDO] :: son of Aegeus (i.e. Theseus); descendants of Aegeus (pl.); Aegidius_M_N = mkN "Aegidius" ; -- [EXXEE] :: Giles; (St. Giles, patron of beggars/Edinburgh); (Giles of Rome, theologian); Aegyptiacus_A = mkA "Aegyptiacus" "Aegyptiaca" "Aegyptiacum" ; -- [XXEEO] :: Egyptian; of/connected with Egypt; Aegyptius_A = mkA "Aegyptius" "Aegyptia" "Aegyptium" ; -- [XXECO] :: Egyptian; of/connected with Egypt; @@ -30,7 +30,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat Aethiopicus_A = mkA "Aethiopicus" "Aethiopica" "Aethiopicum" ; -- [XXXCZ] :: Ethiopian; Aethiopissa_F_N = mkN "Aethiopissa" ; -- [XXAES] :: Ethiopian woman, female inhabitant of "Ethiopia"/Sudan; negro/black woman; Aethiops_A = mkA "Aethiops" "Aethiopis"; -- [XXAEO] :: Ethiopian, of/connected with "Ethiopia"/Sudan/central Africa; - Aethiops_M_N = mkN "Aethiops" "Aethiopis " masculine ; -- [XXACO] :: Ethiopian, inhabitant of "Ethiopia"/Sudan; negro/black man; black slave; + Aethiops_M_N = mkN "Aethiops" "Aethiopis" masculine ; -- [XXACO] :: Ethiopian, inhabitant of "Ethiopia"/Sudan; negro/black man; black slave; Afer_A = mkA "Afer" "Afra" "Afrum" ; -- [XXXBO] :: African; of/connected with Africa; Afer_M_N = mkN "Afer" ; -- [XXXBO] :: African; inhabitant of north coast of Africa (except Egypt); Carthaginian; Afranius_A = mkA "Afranius" "Afrania" "Afranium" ; -- [XXXCO] :: Afranius; (Roman gens name); (L. Afranius -> one of Pompey's generals); @@ -45,20 +45,20 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat Agrippa_M_N = mkN "Agrippa" ; -- [CLICC] :: Agrippa; (Roman cognomen); [Menenius A~ => fable of the belly and members]; Agrippina_F_N = mkN "Agrippina" ; -- [CLICC] :: Agrippina (Roman woman's name); (mother of Nero); [Colonia ~ => Cologne]; Alaricus_M_N = mkN "Alaricus" ; -- [DWXFS] :: Alaric; (Gothic king who sacked Rome in 410 AD); - Albion_F_N = mkN "Albion" "Albionis " feminine ; -- [XXBES] :: Britain (ancient name); - Albis_M_N = mkN "Albis" "Albis " masculine ; -- [XXGEO] :: Elbe; (river in Germany); + Albion_F_N = mkN "Albion" "Albionis" feminine ; -- [XXBES] :: Britain (ancient name); + Albis_M_N = mkN "Albis" "Albis" masculine ; -- [XXGEO] :: Elbe; (river in Germany); Alexander_M_N = mkN "Alexander" ; -- [BXHCO] :: Alexander; (common Greek name); (Alexander the Great - Macedonian king/general); Alexandrea_F_N = mkN "Alexandrea" ; -- [XXECO] :: Alexandria; (City in Egypt and others); Alexandria_F_N = mkN "Alexandria" ; -- [XXECO] :: Alexandria; (City in Egypt and others); Alexandrinus_A = mkA "Alexandrinus" "Alexandrina" "Alexandrinum" ; -- [XXECO] :: Alexandrian, of/belonging to Alexandria (City in Egypt and others); Alexandrinus_M_N = mkN "Alexandrinus" ; -- [XXEEE] :: Alexandrian, citizen/inhabitant of Alexandria (City in Egypt and others); Alleluia_Interj = ss "Alleluia" ; -- [EEQCE] :: Halleluia, cry of joy and praise to God; (praise ye Jehovah); - Allobrox_M_N = mkN "Allobrox" "Allobrogis " masculine ; -- [XXFES] :: Allobroges (pl.); (tribe of Gaul - in Caesar's Gallic War); + Allobrox_M_N = mkN "Allobrox" "Allobrogis" masculine ; -- [XXFES] :: Allobroges (pl.); (tribe of Gaul - in Caesar's Gallic War); Alpinus_A = mkA "Alpinus" "Alpina" "Alpinum" ; -- [XXXCO] :: Alpine; of the Alps; - Alpis_F_N = mkN "Alpis" "Alpis " feminine ; -- [XXXCO] :: Alps (usually pl.), mountains to the north of Italy; + Alpis_F_N = mkN "Alpis" "Alpis" feminine ; -- [XXXCO] :: Alps (usually pl.), mountains to the north of Italy; Amalechita_M_N = mkN "Amalechita" ; -- [EXQFW] :: Amalechite, one from the tribe of Amalech; (David slaughtered them - 2 Samuel); - Amazon_F_N = mkN "Amazon" "Amazonis " feminine ; -- [XYXCO] :: Amazon, member of race of legendary female warriors; woman as man's antagonist; - Ambiorix_M_N = mkN "Ambiorix" "Ambiorigis " masculine ; -- [XXXCO] :: Ambiorix, a chief of the Eburones, a tribe of Gaul, central Normandy - Caesar; + Amazon_F_N = mkN "Amazon" "Amazonis" feminine ; -- [XYXCO] :: Amazon, member of race of legendary female warriors; woman as man's antagonist; + Ambiorix_M_N = mkN "Ambiorix" "Ambiorigis" masculine ; -- [XXXCO] :: Ambiorix, a chief of the Eburones, a tribe of Gaul, central Normandy - Caesar; Amburbium_N_N = mkN "Amburbium" ; -- [CEIFO] :: Amburbia festival, annual expiatory procession round Rome; America_F_N = mkN "America" ; -- [HXXFE] :: America; Americanus_A = mkA "Americanus" "Americana" "Americanum" ; -- [HXXEZ] :: American; @@ -66,26 +66,26 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat Amineus_A = mkA "Amineus" "Aminea" "Amineum" ; -- [XAXCO] :: Aminean; (applied to vines/grapes/wine, myrrh); (of a region in eastern Italy); 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); + 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); 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); - Androgyne_F_N = mkN "Androgyne" "Androgynes " feminine ; -- [XXXFO] :: masculine heroic woman; (nickname given to a mannish woman/tomboy); + 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); + Androgyne_F_N = mkN "Androgyne" "Androgynes" feminine ; -- [XXXFO] :: masculine heroic woman; (nickname given to a mannish woman/tomboy); Anglia_F_N = mkN "Anglia" ; -- [EXBCE] :: England; Anglia, place of the Angles, area/kingdom in eastern England; Anglicanus_A = mkA "Anglicanus" "Anglicana" "Anglicanum" ; -- [GEBDE] :: Anglican (follower of the Church of England); Anglicanus_M_N = mkN "Anglicanus" ; -- [GEBDE] :: Anglican (follower of the Church of England); Anglice_Adv = mkAdv "Anglice" ; -- [EXBEE] :: in/into English; Anglicus_M_N = mkN "Anglicus" ; -- [FXBDE] :: Englishman; Anglus_M_N = mkN "Anglus" ; -- [EXBDX] :: Englishman; English (pl.); Angles (Low German invaders/colonizers of Britain); - Anticato_M_N = mkN "Anticato" "Anticatonis " masculine ; -- [XXXDO] :: title of books which Caesar wrote in reply to Cicero's panegyric Cato; + Anticato_M_N = mkN "Anticato" "Anticatonis" masculine ; -- [XXXDO] :: title of books which Caesar wrote in reply to Cicero's panegyric Cato; Antichristus_M_N = mkN "Antichristus" ; -- [EEXCS] :: Antichrist; man of sin (Souter); Antiochea_F_N = mkN "Antiochea" ; -- [XXQCO] :: Antioch; (city in Roman Syria/modern Turkey); - Antiochenesis_M_N = mkN "Antiochenesis" "Antiochenesis " masculine ; -- [XXQEO] :: Antiochian, person from Antioch; high official from Antioch (2 Maccabee 6:1); + Antiochenesis_M_N = mkN "Antiochenesis" "Antiochenesis" masculine ; -- [XXQEO] :: Antiochian, person from Antioch; high official from Antioch (2 Maccabee 6:1); Antiochensis_A = mkA "Antiochensis" "Antiochensis" "Antiochense" ; -- [XXQEO] :: Antiochian, of/from/pertaining to Antioch (city) or King Antiochus; - Antiochensis_M_N = mkN "Antiochensis" "Antiochensis " masculine ; -- [XXQEO] :: Antiochian, person from Antioch; high official from Antioch (2 Maccabee 6:1); + Antiochensis_M_N = mkN "Antiochensis" "Antiochensis" masculine ; -- [XXQEO] :: Antiochian, person from Antioch; high official from Antioch (2 Maccabee 6:1); Antiochenus_A = mkA "Antiochenus" "Antiochena" "Antiochenum" ; -- [XXQFS] :: Antiochian, of/from/pertaining to Antioch (city) or King Antiochus; Antiochenus_M_N = mkN "Antiochenus" ; -- [XXQFS] :: Antiochian, person from Antioch; high official from Antioch (2 Maccabee 6:1); Antiochia_F_N = mkN "Antiochia" ; -- [XXQCO] :: Antioch; (city in Roman Syria/modern Turkey); @@ -94,13 +94,13 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - Ap_N = constN "Ap." masculine ; -- [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); - App_N = constN "App." masculine ; -- [XXXCO] :: Appius (Roman praenomen); (abb. App.); + Apollo_M_N = mkN "Apollo" "Apollinis" masculine ; -- [XEXBO] :: Apollo; (Roman god of prophecy, music, poetry, archery, medicine); + 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; + Aprilis_M_N = mkN "Aprilis" "Aprilis" masculine ; -- [XXXEO] :: April; Aquileia_F_N = mkN "Aquileia" ; -- [XXIDO] :: Aquileia; (town in NE Italy); Aquilius_A = mkA "Aquilius" "Aquilia" "Aquilium" ; -- [XXXDO] :: Aquilius; (Roman gens); of/named after Aquilius; Aquilius_M_N = mkN "Aquilius" ; -- [XXXDO] :: Aquilius; (Roman gens name); of/named after Aquilius; @@ -109,28 +109,28 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat Aquitania_F_N = mkN "Aquitania" ; -- [XXFEO] :: Aquitania, one of the divisions of Gaul/France (southwest); Aquitanus_A = mkA "Aquitanus" "Aquitana" "Aquitanum" ; -- [XXFEO] :: of Aquitania (southwest Gaul/France); Arabia_F_N = mkN "Arabia" ; -- [XXXCO] :: Arabia; Aden; [~ Felix => Yemen]; - Arabs_M_N = mkN "Arabs" "Arabis " masculine ; -- [XXXCO] :: Arab, people of Arabia; - Arar_M_N = mkN "Arar" "Araris " masculine ; -- [XXFDO] :: Arar/Saone; (river in Gaul, tributary of the Rhone); - Araris_M_N = mkN "Araris" "Araris " masculine ; -- [XXFDO] :: Arar/Saone; (river in Gaul, tributary of the Rhone); + Arabs_M_N = mkN "Arabs" "Arabis" masculine ; -- [XXXCO] :: Arab, people of Arabia; + Arar_M_N = mkN "Arar" "Araris" masculine ; -- [XXFDO] :: Arar/Saone; (river in Gaul, tributary of the Rhone); + Araris_M_N = mkN "Araris" "Araris" masculine ; -- [XXFDO] :: Arar/Saone; (river in Gaul, tributary of the Rhone); Arbavalium_N_N = mkN "Arbavalium" ; -- [XEXFX] :: Arbarvalia festival (pl.); Archiacus_A = mkA "Archiacus" "Archiaca" "Archiacum" ; -- [XXXFS] :: made by Archius (cabinet maker, maker of plain/cheap couches); - Archias_M_N = mkN "Archias" "Archiae " masculine ; -- [XXXES] :: Archius; (cabinet maker, maker of plain couches); Greek poet defended by Cicero - Arcitenens_M_N = mkN "Arcitenens" "Arcitenentis " masculine ; -- [XEXDO] :: Apollo (who carries a bow), (constellation) Sagittarius, the Archer; - Arctos_F_N = mkN "Arctos" "Arcti " feminine ; -- [XSXCO] :: Big/Little Dipper/Bear, region of celestial pole; North lands/people/direction; + Archias_M_N = mkN "Archias" "Archiae" masculine ; -- [XXXES] :: Archius; (cabinet maker, maker of plain couches); Greek poet defended by Cicero + Arcitenens_M_N = mkN "Arcitenens" "Arcitenentis" masculine ; -- [XEXDO] :: Apollo (who carries a bow), (constellation) Sagittarius, the Archer; + Arctos_F_N = mkN "Arctos" "Arcti" feminine ; -- [XSXCO] :: Big/Little Dipper/Bear, region of celestial pole; North lands/people/direction; Arctous_A = mkA "Arctous" "Arctoa" "Arctoum" ; -- [XXXCO] :: northern, arctic, of the far north; occurring in/connected with the far north; Arcturus_M_N = mkN "Arcturus" ; -- [XXXCO] :: Acturus, brightest star in Bootes; the whole constellation; arction plant; Arctus_F_N = mkN "Arctus" ; -- [XSXCO] :: Big/Little Dipper/Bear, region of celestial pole; North lands/people/direction; Argentoratus_N_N = mkN "Argentoratus" ; -- [EXGFE] :: Strasbourg; - Argestes_M_N = mkN "Argestes" "Argestae " masculine ; -- [XXXES] :: west-southwest wind (acc. to Vitruvius); west-northwest wind (Plinius); + Argestes_M_N = mkN "Argestes" "Argestae" masculine ; -- [XXXES] :: west-southwest wind (acc. to Vitruvius); west-northwest wind (Plinius); Arianismus_M_N = mkN "Arianismus" ; -- [EEXEE] :: Arianism, heresy of Arius of Alexandria (Christ not same essence as God); Arianus_M_N = mkN "Arianus" ; -- [EEXEE] :: Arian, one holding to Arian heresy (Christ not same essence as God); Ariovistus_M_N = mkN "Ariovistus" ; -- [XXXCO] :: Ariovistus; (king of a German tribe - in Caesar's Gallic War); - Aristotoles_M_N = mkN "Aristotoles" "Aristotolis " masculine ; -- [BSHCS] :: Aristotle; famous learned Greek; + Aristotoles_M_N = mkN "Aristotoles" "Aristotolis" masculine ; -- [BSHCS] :: Aristotle; famous learned Greek; Arithmus_M_N = mkN "Arithmus" ; -- [DEXES] :: another name for the fourth book of the Bible, Numbers; Armenia_F_N = mkN "Armenia" ; -- [XXQCO] :: Armenia; (country lying north of Persia); Armenius_A = mkA "Armenius" "Armenia" "Armenium" ; -- [XXQCO] :: Armenian; [~ prunum => apricot]; Armilustrium_N_N = mkN "Armilustrium" ; -- [XWXEO] :: ceremony of purifying arms; place on Aventine Hill where performed; - Arquitenens_M_N = mkN "Arquitenens" "Arquitenentis " masculine ; -- [XEXEO] :: Apollo (who carries a bow), (constellation) Sagittarius, the Archer; + Arquitenens_M_N = mkN "Arquitenens" "Arquitenentis" masculine ; -- [XEXEO] :: Apollo (who carries a bow), (constellation) Sagittarius, the Archer; Arvernus_M_N = mkN "Arvernus" ; -- [XXXCO] :: Arverni (pl.); (tribe of SE Gaul - in Caesar's Gallic War); Asia_F_N = mkN "Asia" ; -- [XXQBO] :: Asia (Roman province formed from Pergamene); Asia Minor; the East; Asianus_A = mkA "Asianus" "Asiana" "Asianum" ; -- [XXXCO] :: Asian, of/from/belonging to Asia (Roman province)/Asia Minor/the East; florid; @@ -142,15 +142,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat Athena_F_N = mkN "Athena" ; -- [XXHCO] :: Athens (pl.); inhabitants of Athens, Athenians; Atheneus_A = mkA "Atheneus" "Athenea" "Atheneum" ; -- [XXHCO] :: Athenian, of Athens; of inhabitants of Athens/Athenians; Atheniensis_A = mkA "Atheniensis" "Atheniensis" "Atheniense" ; -- [XXHCO] :: Athenian, of Athens; of inhabitants of Athens/Athenians; - Atheniensis_M_N = mkN "Atheniensis" "Atheniensis " masculine ; -- [XXHCO] :: Athenian, inhabitant of Athens; + Atheniensis_M_N = mkN "Atheniensis" "Atheniensis" masculine ; -- [XXHCO] :: Athenian, inhabitant of Athens; 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; - Au_N = constN "Au." masculine ; -- [XXXCG] :: Aulus (Roman praenomen); (abb. A./Au.); + 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); + Augustalis_M_N = mkN "Augustalis" "Augustalis" masculine ; -- [EXXEE] :: member of imperial military/religious group; title of Prefect of Egypt (OED); Augustianismus_M_N = mkN "Augustianismus" ; -- [EEXFE] :: Augustinism, teaching of St Augustine (Bishop of Hippo, 354-430, City of God); Augustinus_M_N = mkN "Augustinus" ; -- [DEACF] :: Augustine; (St./Bishop of Hippo, 354-430, author of Confessions, City of God); Augustus_A = mkA "Augustus" "Augusta" "Augustum" ; -- [XXXCO] :: August (month) (mensis understood); abb. Aug.; renamed from Sextilis in 8 BC; @@ -168,7 +168,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); - Bacchanal_N_N = mkN "Bacchanal" "Bacchanalis " neuter ; -- [XEXDO] :: |shrine/site where the rites of Bacchus were celebrated; + Bacchanal_N_N = mkN "Bacchanal" "Bacchanalis" neuter ; -- [XEXDO] :: |shrine/site where the rites of Bacchus were celebrated; Bacchanalis_A = mkA "Bacchanalis" "Bacchanalis" "Bacchanale" ; -- [XEXDO] :: relating to Bacchus; Bacchanalian; Bacchanalium_N_N = mkN "Bacchanalium" ; -- [XEXCO] :: festival/rites (pl.) of Bacchus; Bacchanalian orgy; Bacchus_M_N = mkN "Bacchus" ; -- [XEXCO] :: Bacchus, god of wine/vine; the vine, wine; @@ -181,34 +181,34 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat Belgicus_A = mkA "Belgicus" "Belgica" "Belgicum" ; -- [XXFCO] :: of/connected with the Belgae; (tribe of N Gaul); Belgium_N_N = mkN "Belgium" ; -- [XXFEO] :: Belgium, country of Belgae; (tribe of N Gaul); Bellovacus_M_N = mkN "Bellovacus" ; -- [XXXDO] :: Bellovaci, tribe of Gallia Belgica (near Rouen in Normandy) - Caesar; - Bethleemites_M_N = mkN "Bethleemites" "Bethleemitae " masculine ; -- [EXQDW] :: inhabitant/citizen of Bethlehem; (town where Christ was born); + Bethleemites_M_N = mkN "Bethleemites" "Bethleemitae" masculine ; -- [EXQDW] :: inhabitant/citizen of Bethlehem; (town where Christ was born); Bethsames_A = mkA "Bethsames" "Bethsamitis"; -- [EXQEW] :: Bethsamite, of/from Bethsames (town in Palistine); - Bethsames_F_N = mkN "Bethsames" "Bethsamitae " feminine ; -- [EXQEW] :: Bethsames; (town in Palistine); + Bethsames_F_N = mkN "Bethsames" "Bethsamitae" feminine ; -- [EXQEW] :: Bethsames; (town in Palistine); Biblia_F_N = mkN "Biblia" ; -- [EEXCS] :: Bible (later and more common usage); Biblium_N_N = mkN "Biblium" ; -- [DEXCS] :: Bible (pl.) (early usage); - Bibrax_F_N = mkN "Bibrax" "Bibractis " feminine ; -- [CXFDX] :: Bibrax, a town of the Remi in central Gaul; + Bibrax_F_N = mkN "Bibrax" "Bibractis" feminine ; -- [CXFDX] :: Bibrax, a town of the Remi in central Gaul; Bicorniger_M_N = mkN "Bicorniger" ; -- [XEXCO] :: two-horned (god), epithet of Bacchus; - Biturig_M_N = mkN "Biturig" "Biturigis " masculine ; -- [CXFDX] :: Bituriges (pl.), a people of SW Gaul, Aquitania - in Caesar's "Gallic War"; + Biturig_M_N = mkN "Biturig" "Biturigis" masculine ; -- [CXFDX] :: Bituriges (pl.), a people of SW Gaul, Aquitania - in Caesar's "Gallic War"; Boius_M_N = mkN "Boius" ; -- [CXFDX] :: Boli (pl.), a people of Cisalpine Gaul - in Caesar's "Gallic War"; Bononia_F_N = mkN "Bononia" ; -- [GXIET] :: Bologna; - Boreas_M_N = mkN "Boreas" "Boreae " masculine ; -- [XXXCO] :: north wind; the_North; Boreas (god of the north wind); - Borras_M_N = mkN "Borras" "Borrae " masculine ; -- [XXXES] :: north wind; the North; Boreas (god of the north wind); - Breve_N_N = mkN "Breve" "Brevis " neuter ; -- [FEXET] :: Papal letter, Brief; + Boreas_M_N = mkN "Boreas" "Boreae" masculine ; -- [XXXCO] :: north wind; the_North; Boreas (god of the north wind); + Borras_M_N = mkN "Borras" "Borrae" masculine ; -- [XXXES] :: north wind; the North; Boreas (god of the north wind); + Breve_N_N = mkN "Breve" "Brevis" neuter ; -- [FEXET] :: Papal letter, Brief; Britannia_F_N = mkN "Britannia" ; -- [XXBDX] :: Britain; Britannicus_A = mkA "Britannicus" "Britannica" "Britannicum" ; -- [XXXCZ] :: British; Britannus_M_N = mkN "Britannus" ; -- [XXBBX] :: Britons (usu, pl.); - Brito_M_N = mkN "Brito" "Britonis " masculine ; -- [XXBDO] :: Briton, inhabitant of Britain; (usu. pl.); - Britto_M_N = mkN "Britto" "Brittonis " masculine ; -- [XXBFO] :: Briton, inhabitant of Britain; (usu. pl.); - Bronte_F_N = mkN "Bronte" "Brontes " feminine ; -- [XXXNO] :: thunder; name of picture of Apeiles; name of one of horses of Sun; - Brontes_M_N = mkN "Brontes" "Brontae " masculine ; -- [CEXIO] :: Thunderer, title of Jupiter; + Brito_M_N = mkN "Brito" "Britonis" masculine ; -- [XXBDO] :: Briton, inhabitant of Britain; (usu. pl.); + Britto_M_N = mkN "Britto" "Brittonis" masculine ; -- [XXBFO] :: Briton, inhabitant of Britain; (usu. pl.); + Bronte_F_N = mkN "Bronte" "Brontes" feminine ; -- [XXXNO] :: thunder; name of picture of Apeiles; name of one of horses of Sun; + Brontes_M_N = mkN "Brontes" "Brontae" masculine ; -- [CEXIO] :: Thunderer, title of Jupiter; 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); - C_N = constN "C." masculine ; -- [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]; + 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); - Caeso_M_N = mkN "Caeso" "Caesonis " masculine ; -- [XXXCO] :: Kaeso/Caeso (Roman praenomen); (abb. K.); + Caeso_M_N = mkN "Caeso" "Caesonis" masculine ; -- [XXXCO] :: Kaeso/Caeso (Roman praenomen); (abb. K.); Caledonia_F_N = mkN "Caledonia" ; -- [CXBFO] :: Caledonia, Scotland, northern part of Britain; Calenda_F_N = mkN "Calenda" ; -- [XXXCO] :: Kalends (pl.), 1st of month; abb. Kal./Kl.; day of proclamation, interest due; Caligula_M_N = mkN "Caligula" ; -- [CLIDO] :: Caligula (Gaius Claudius Caesar Germanicus, 37-41 AD); little soldier('s boot); @@ -228,30 +228,30 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat Carchedonius_A = mkA "Carchedonius" "Carchedonia" "Carchedonium" ; -- [XXAFE] :: Carthaginian; Carmelitus_C_N = mkN "Carmelitus" ; -- [EEXEE] :: Carmelite, White Friar; Carmelus_M_N = mkN "Carmelus" ; -- [EEQET] :: Carmel; (area/mountain range in north-west Palestine); beautiful hill (Isaiah); - Carnutes_M_N = mkN "Carnutes" "Carnutis " masculine ; -- [XXXCO] :: Carnutes, tribe of central Gaul, around Loire - Caesar; + Carnutes_M_N = mkN "Carnutes" "Carnutis" masculine ; -- [XXXCO] :: Carnutes, tribe of central Gaul, around Loire - Caesar; Carolus_M_N = mkN "Carolus" ; -- [EXFCF] :: Charles; (Charlemagne, 742-814, King of Franks, first Holy Roman Emperor); - Cartago_F_N = mkN "Cartago" "Cartaginis " feminine ; -- [XXACO] :: Carthage; + Cartago_F_N = mkN "Cartago" "Cartaginis" feminine ; -- [XXACO] :: Carthage; Carthaginiensis_A = mkA "Carthaginiensis" "Carthaginiensis" "Carthaginiense" ; -- [XXACO] :: of/belonging to Carthage, Carthaginian; (also of New Carthage in Spain); - Carthaginiensis_M_N = mkN "Carthaginiensis" "Carthaginiensis " masculine ; -- [XXACO] :: Carthaginian, inhabitant of Carthage; (also of New Carthage in Spain?); - Carthago_F_N = mkN "Carthago" "Carthaginis " feminine ; -- [XXACO] :: Carthage; + Carthaginiensis_M_N = mkN "Carthaginiensis" "Carthaginiensis" masculine ; -- [XXACO] :: Carthaginian, inhabitant of Carthage; (also of New Carthage in Spain?); + Carthago_F_N = mkN "Carthago" "Carthaginis" feminine ; -- [XXACO] :: Carthage; Carthusianus_M_N = mkN "Carthusianus" ; -- [FEXEE] :: Carthusian; Charterhouse monk; (order founded by St Bruno 1086); Carus_M_N = mkN "Carus" ; -- [DLIEO] :: Carus; (Emperor Marcus Aurelius Numerius Carus 282-283); Cassius_A = mkA "Cassius" "Cassia" "Cassium" ; -- [XXXCO] :: Cassius, Roman gens; (L. C~ Longinus defeated by Helvetii; C. C~ L~ assassin); Cassius_M_N = mkN "Cassius" ; -- [XXXCO] :: Cassius; (Roman gens name); (L. ~ Longinus defeated by Helvetii; Caesar killer); Cassivellaunus_M_N = mkN "Cassivellaunus" ; -- [XXXCO] :: Cassiveellaunus, Commander of forces of Britons - Caesar; - Castor_M_N = mkN "Castor" "Castoris " masculine ; -- [XYHCO] :: Castor; (twin to Pollux, brother to Helen); St Elmo's fire (pl.), corposant; + Castor_M_N = mkN "Castor" "Castoris" masculine ; -- [XYHCO] :: Castor; (twin to Pollux, brother to Helen); St Elmo's fire (pl.), corposant; Cathartarium_N_N = mkN "Cathartarium" ; -- [EEXFE] :: Purgatory; - Cato_M_N = mkN "Cato" "Catonis " masculine ; -- [XXICO] :: Cato; (Roman cognomen); [M. Porcius Cato => Censor]; - Celer_M_N = mkN "Celer" "Celeris " masculine ; -- [XXXDO] :: knights (pl.) (old name/precursor of equestrian order); Roman kings' bodyguard; + Cato_M_N = mkN "Cato" "Catonis" masculine ; -- [XXICO] :: Cato; (Roman cognomen); [M. Porcius Cato => Censor]; + 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; 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); + 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.); + 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; + Ceres_F_N = mkN "Ceres" "Cereris" feminine ; -- [XEXBO] :: Ceres (goddess of grain/fruits); wheat; bread; food; 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; @@ -263,36 +263,36 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; 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; + 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; Christiane_Adv = mkAdv "Christiane" ; -- [DEXES] :: Christian, in Christian manner; Christianismus_M_N = mkN "Christianismus" ; -- [DEXCS] :: Christianity; - Christianitas_F_N = mkN "Christianitas" "Christianitatis " feminine ; -- [DEXCS] :: Christianity; Christian religion; Christian clergy; + Christianitas_F_N = mkN "Christianitas" "Christianitatis" feminine ; -- [DEXCS] :: Christianity; Christian religion; Christian clergy; Christianizo_V = mkV "Christianizare" ; -- [DEXES] :: profess Christianity; 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; + 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.); Christifer_A = mkA "Christifer" "Christifera" "Christiferum" ; -- [FEXFE] :: Christ-bearing; Christifidelis_A = mkA "Christifidelis" "Christifidelis" "Christifidele" ; -- [FEXEE] :: faithful to Christ/Christianity; following Christ; - Christifidelis_F_N = mkN "Christifidelis" "Christifidelis " feminine ; -- [FEXEE] :: one of Christian faithful; follower of Christ; - Christifidelis_M_N = mkN "Christifidelis" "Christifidelis " masculine ; -- [FEXEE] :: one of Christian faithful; follower of Christ; + Christifidelis_F_N = mkN "Christifidelis" "Christifidelis" feminine ; -- [FEXEE] :: one of Christian faithful; follower of Christ; + Christifidelis_M_N = mkN "Christifidelis" "Christifidelis" masculine ; -- [FEXEE] :: one of Christian faithful; follower of Christ; Christigenus_A = mkA "Christigenus" "Christigena" "Christigenum" ; -- [DEXFS] :: of lineage of Christ; (i.e. posterity of Ruth/Jesse); Christipotens_A = mkA "Christipotens" "Christipotentis"; -- [DEXFS] :: strong in Christ; Christus_M_N = mkN "Christus" ; -- [XEXAO] :: Christ; Chuthenus_M_N = mkN "Chuthenus" ; -- [EXQFW] :: Chuthite, inhabitant of Chutha; (ancient tribe in Near East); - Cicero_M_N = mkN "Cicero" "Ciceronis " masculine ; -- [XXXCO] :: Cicero; (gens Tullia cognomen; M. Tullius Cicero, Roman orator and statesman); + Cicero_M_N = mkN "Cicero" "Ciceronis" masculine ; -- [XXXCO] :: Cicero; (gens Tullia cognomen; M. Tullius Cicero, Roman orator and statesman); Cimber_M_N = mkN "Cimber" ; -- [XXXCO] :: Cimberi (pl.), a German tribe, invaded Gaul - in Caesar's "Gallic War"; Cimbricus_A = mkA "Cimbricus" "Cimbrica" "Cimbricum" ; -- [XXXCZ] :: Cimbrian; of the Cimbri; - Cingetorix_M_N = mkN "Cingetorix" "Cingetorigis " masculine ; -- [CXFEO] :: Cingetorix; a Gaul of Treveri; a Briton king; + Cingetorix_M_N = mkN "Cingetorix" "Cingetorigis" masculine ; -- [CXFEO] :: Cingetorix; a Gaul of Treveri; a Briton king; Cisalpinus_A = mkA "Cisalpinus" "Cisalpina" "Cisalpinum" ; -- [XXXCO] :: lying on south side of Alps; [Cisalpine Gaul => Northern Italy]; Cisterciensis_A = mkA "Cisterciensis" "Cisterciensis" "Cisterciense" ; -- [FXXEE] :: Cistercian; of Citeaux; (order of monks founded 1098, stricter Benedictines); Claudius_A = mkA "Claudius" "Claudia" "Claudium" ; -- [CLICO] :: Claudius; Roman gens; (Ti. C. Nero Germanicus, Emperor, 41-54 AD); the_Lame; @@ -302,28 +302,28 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - 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); + 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); + Colossos_M_N = mkN "Colossos" "Colossi" masculine ; -- [XXXCO] :: Colossus of Rhodes (colossal statue in harbor); any large statue (Emperor); Colossus_M_N = mkN "Colossus" ; -- [XXXCO] :: Colossus of Rhodes (colossal statue in harbor); any large statue (Emperor); Commodus_M_N = mkN "Commodus" ; -- [DLIDO] :: Commodus; (Emperor Lucius Aurelius Commodus 180-192); - Competalis_M_N = mkN "Competalis" "Competalis " masculine ; -- [XEXEO] :: priest of the_Lares Compitales/rural gods (worshiped at crossroads); - Compitalis_M_N = mkN "Compitalis" "Compitalis " masculine ; -- [XEXEO] :: priest of the_Lares Compitales/rural gods (worshiped at crossroads); + Competalis_M_N = mkN "Competalis" "Competalis" masculine ; -- [XEXEO] :: priest of the_Lares Compitales/rural gods (worshiped at crossroads); + Compitalis_M_N = mkN "Compitalis" "Compitalis" masculine ; -- [XEXEO] :: priest of the_Lares Compitales/rural gods (worshiped at crossroads); Compitalium_N_N = mkN "Compitalium" ; -- [XEXCO] :: festival celebrated at cross-roads in honor of the_Lares/rural gods (pl.); - Conpetalis_M_N = mkN "Conpetalis" "Conpetalis " masculine ; -- [XEXEO] :: priest of the Lares Compitales/rural gods (worshiped at crossroads); - Conpitalis_M_N = mkN "Conpitalis" "Conpitalis " masculine ; -- [XEXEO] :: priest of the Lares Compitales/rural gods (worshiped at crossroads); + Conpetalis_M_N = mkN "Conpetalis" "Conpetalis" masculine ; -- [XEXEO] :: priest of the Lares Compitales/rural gods (worshiped at crossroads); + Conpitalis_M_N = mkN "Conpitalis" "Conpitalis" masculine ; -- [XEXEO] :: priest of the Lares Compitales/rural gods (worshiped at crossroads); Conpitalium_N_N = mkN "Conpitalium" ; -- [XEXCO] :: festival celebrated at the cross-roads in honor of the Lares/rural gods (pl.); Consens_A = mkA "Consens" "Consentis"; -- [CEXEO] :: consensus; [Dei ~ => the twelve major deities; (rites) connected with them]; - Consistens_M_N = mkN "Consistens" "Consistentis " masculine ; -- [EEXEE] :: class (pl.) of penitents in early Church; - Constans_M_N = mkN "Constans" "Constantis " masculine ; -- [DLIDZ] :: Constans; (Emperor Flavius Julius Constans I 337-350); - Constantinopolis_F_N = mkN "Constantinopolis" "Constantinopolis " feminine ; -- [DXHCS] :: Constantinople (elsewhen Byzantium or Istanbul); + Consistens_M_N = mkN "Consistens" "Consistentis" masculine ; -- [EEXEE] :: class (pl.) of penitents in early Church; + Constans_M_N = mkN "Constans" "Constantis" masculine ; -- [DLIDZ] :: Constans; (Emperor Flavius Julius Constans I 337-350); + Constantinopolis_F_N = mkN "Constantinopolis" "Constantinopolis" feminine ; -- [DXHCS] :: Constantinople (elsewhen Byzantium or Istanbul); Constantinus_M_N = mkN "Constantinus" ; -- [DLICZ] :: Constantine; (Emperor Constantine I 306-337; II 337-340; III 407-411); Constantius_M_N = mkN "Constantius" ; -- [DLIDZ] :: Constantius; (Emperor Constantius I 305-306; II 337-361; III 421); Consualium_N_N = mkN "Consualium" ; -- [AEICS] :: festival of Consus (ancient god); (21 August, buried altar at Circus uncovered); Consus_M_N = mkN "Consus" ; -- [AEICS] :: Consus, ancient Italian god (earth/fertility/agriculture/counsels/secret plans); - Conventualis_F_N = mkN "Conventualis" "Conventualis " feminine ; -- [FEXFE] :: Conventual Franciscan; - Conventualis_M_N = mkN "Conventualis" "Conventualis " masculine ; -- [FEXFE] :: Conventual Franciscan; + Conventualis_F_N = mkN "Conventualis" "Conventualis" feminine ; -- [FEXFE] :: Conventual Franciscan; + Conventualis_M_N = mkN "Conventualis" "Conventualis" masculine ; -- [FEXFE] :: Conventual Franciscan; Copta_M_N = mkN "Copta" ; -- [EEEEE] :: Copt, Egyptian Christian; Corduba_F_N = mkN "Corduba" ; -- [XXSEO] :: Cordova (town in Hispania Baetica on the river Baetis); Corintheus_A = mkA "Corintheus" "Corinthea" "Corintheum" ; -- [AXHCO] :: of/from/pertaining to Corinth, Corinthian; of Corinthian bronze/order; @@ -331,7 +331,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat Corinthienis_A = mkA "Corinthienis" "Corinthienis" "Corinthiene" ; -- [AXHCO] :: of/from/pertaining to Corinth, Corinthian; of Roman settlers at Corinth; Corinthium_N_N = mkN "Corinthium" ; -- [AXHCO] :: Corinthian bronze vessels (pl.); buildings of the Corinthian order/style; Corinthius_A = mkA "Corinthius" "Corinthia" "Corinthium" ; -- [AXHCO] :: of/from/pertaining to Corinth, Corinthian; of Corinthian bronze/order; - Corinthos_F_N = mkN "Corinthos" "Corinthi " feminine ; -- [AXHCO] :: Corinth; + Corinthos_F_N = mkN "Corinthos" "Corinthi" feminine ; -- [AXHCO] :: Corinth; Corinthus_F_N = mkN "Corinthus" ; -- [AXHCO] :: Corinth; Corsica_F_N = mkN "Corsica" ; -- [XXFEO] :: Corsica; (island); Cotta_M_N = mkN "Cotta" ; -- [XXXDX] :: Cotta; (Roman cognomen); @@ -339,65 +339,65 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat Cous_A = mkA "Cous" "Coa" "Coum" ; -- [XXXCO] :: of/from/belonging to Cos (island in Aegean, now Stanchio); (its wine/fine silk); Crassus_M_N = mkN "Crassus" ; -- [XXXDX] :: Crassus; (Roman cognomen); [M. Licinius Crassus Dives => triumvir]; Creta_F_N = mkN "Creta" ; -- [XXXCO] :: Crete, island of Crete; - Crete_F_N = mkN "Crete" "Cretes " feminine ; -- [XXXCO] :: Crete, island of Crete; - Cupido_M_N = mkN "Cupido" "Cupidinis " masculine ; -- [XEXCO] :: Cupid, son of Venus; personification of carnal desire; + Crete_F_N = mkN "Crete" "Cretes" feminine ; -- [XXXCO] :: Crete, island of Crete; + 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; + Curene_F_N = mkN "Curene" "Curenes" feminine ; -- [XXACO] :: Cyrenae (pl.), town in north-west Libia, associated district including Crete; 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; Cyprianus_M_N = mkN "Cyprianus" ; -- [DEAFF] :: Cyprian; (St./Bishop of Carthage, ?-258, first great Church organizer); - Cypris_F_N = mkN "Cypris" "Cypridis " feminine ; -- [EXQDE] :: Cyprus; (island); + Cypris_F_N = mkN "Cypris" "Cypridis" feminine ; -- [EXQDE] :: Cyprus; (island); Cyprius_A = mkA "Cyprius" "Cypria" "Cyprium" ; -- [XXQCO] :: Cyprian, of/belonging to Cyprus; (island); (plants/metals); of Cyprian copper; Cyprius_M_N = mkN "Cyprius" ; -- [XXQEO] :: Cypiran, inhabitant of Cyprus; (island); - Cypros_M_N = mkN "Cypros" "Cypri " masculine ; -- [XXQCO] :: Cyprus; (island); + Cypros_M_N = mkN "Cypros" "Cypri" masculine ; -- [XXQCO] :: Cyprus; (island); Cyprus_M_N = mkN "Cyprus" ; -- [XXQCO] :: Cyprus; (island); Cyrena_F_N = mkN "Cyrena" ; -- [XXACO] :: Cyrenae (pl.), town in north-west Libia, associated district including Crete; Cyrenaeus_A = mkA "Cyrenaeus" "Cyrenaea" "Cyrenaeum" ; -- [XXXEO] :: Cyrenean (of town in north-west Libia and associated district including Crete); Cyrenaeus_M_N = mkN "Cyrenaeus" ; -- [XXXEO] :: Cyrenean, inhabitant of Cyrenae (town in north-west Libia/district w/Crete); - Cyrene_F_N = mkN "Cyrene" "Cyrenes " feminine ; -- [XXACO] :: Cyrenae (pl.), town in north-west Libia, associated district including Crete; + Cyrene_F_N = mkN "Cyrene" "Cyrenes" feminine ; -- [XXACO] :: Cyrenae (pl.), town in north-west Libia, associated district including Crete; 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; - D_N = constN "D." masculine ; -- [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); + Damascos_M_N = mkN "Damascos" "Damasci" masculine ; -- [XXQEO] :: Damascus; (city in Syria); Damascus_M_N = mkN "Damascus" ; -- [XXQEO] :: Damascus; (city in Syria); Danicus_A = mkA "Danicus" "Danica" "Danicum" ; -- [FXXEM] :: Danish; - Daniel_M_N = mkN "Daniel" "Danielis " masculine ; -- [XEQEE] :: Daniel; prophet Daniel; book of Old Testament; + Daniel_M_N = mkN "Daniel" "Danielis" masculine ; -- [XEQEE] :: Daniel; prophet Daniel; book of Old Testament; Danus_M_N = mkN "Danus" ; -- [FXDEE] :: Dane; 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; + David_M_N = mkN "David" "Davidis" masculine ; -- [XEQDE] :: David; 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); - Decemprimatus_M_N = mkN "Decemprimatus" "Decemprimatus " masculine ; -- [ALXFS] :: office/dignity of the decemprimi/decaproti; (ten chief men in municipia); + December_M_N = mkN "December" "Decembris" masculine ; -- [XXXCO] :: December; (the 10th month of the old calender, 12th/last month after Caesar); + Decemprimatus_M_N = mkN "Decemprimatus" "Decemprimatus" masculine ; -- [ALXFS] :: office/dignity of the decemprimi/decaproti; (ten chief men in municipia); Decemprimus_M_N = mkN "Decemprimus" ; -- [ALXFO] :: municipal finance committee (pl.); ten chief men/magistrates in municipia; Decimus_M_N = mkN "Decimus" ; -- [XXXDX] :: Decimus (Roman praenomen); (abb. D.); Deipara_F_N = mkN "Deipara" ; -- [DEXFS] :: Mother of God, God-bearer, she who gives birth to God; (Mary); - Demosthenes_M_N = mkN "Demosthenes" "Demosthenis " masculine ; -- [AXHDO] :: Demosthenes; (Greek orator of 4th century BC); + Demosthenes_M_N = mkN "Demosthenes" "Demosthenis" masculine ; -- [AXHDO] :: Demosthenes; (Greek orator of 4th century BC); Deus_M_N = mkN "Deus" ; -- [XEXAO] :: God (Christian text); god; divine essence/being, supreme being; statue of god; Deuteronomium_N_N = mkN "Deuteronomium" ; -- [EEXES] :: Deuteronomy, fifth book of the Bible; copy of the law; - Diaconicon_N_N = mkN "Diaconicon" "Diaconici " neuter ; -- [FEHFE] :: Diaconicon, book for use of deacons in Greek rite; + Diaconicon_N_N = mkN "Diaconicon" "Diaconici" neuter ; -- [FEHFE] :: Diaconicon, book for use of deacons in Greek rite; Dialis_A = mkA "Dialis" "Dialis" "Diale" ; -- [XEXCO] :: of Jupiter; of flamen Dialis; heavenly/aerial; [flamen ~ => Roman chief priest]; Diana_F_N = mkN "Diana" ; -- [XEXCO] :: Diana (virgin goddess of light/moon/hunt); (identified w/Artimis); moon; Dianarius_A = mkA "Dianarius" "Dianaria" "Dianarium" ; -- [XEXFS] :: of Diana (virgin goddess of light/moon/hunt); [radix ~ => plant mugwort]; Dianium_N_N = mkN "Dianium" ; -- [XEXES] :: temple/place sacred to Diana (virgin goddess of light/moon/hunt); Dianius_A = mkA "Dianius" "Diania" "Dianium" ; -- [XEXEO] :: of Diana (virgin goddess of light/moon/hunt); - Dido_F_N = mkN "Dido" "Didonis " feminine ; -- [XXXEO] :: Dido; (queen and founder of Carthage); (lover of Aeneas); + Dido_F_N = mkN "Dido" "Didonis" feminine ; -- [XXXEO] :: Dido; (queen and founder of Carthage); (lover of Aeneas); Didymus_M_N = mkN "Didymus" ; -- [EEHEE] :: "twin", apostle Thomas; - Dijovis_M_N = mkN "Dijovis" "Dijovis " masculine ; -- [AEIES] :: Jupiter (old name); (Italian sky god); (supreme being); heavens/sky (poetic); + Dijovis_M_N = mkN "Dijovis" "Dijovis" masculine ; -- [AEIES] :: Jupiter (old name); (Italian sky god); (supreme being); heavens/sky (poetic); Diocletianus_M_N = mkN "Diocletianus" ; -- [DLIEE] :: Diocletian; (Emperor Gaius Aurelius Valerius Diocletian 284-305); Dionysius_M_N = mkN "Dionysius" ; -- [XXHDO] :: Dionysius (long y); (of Syracuse); Dennis (Ecc); St Dennis of Paris; Dionysus_M_N = mkN "Dionysus" ; -- [XEHDO] :: Dionysus (Greek long y); Bacchus (Roman); god of wine; - Diovis_M_N = mkN "Diovis" "Diovis " masculine ; -- [AEIEO] :: Jupiter/Jove; (Italian sky god); (supreme being); heavens/sky (poetic); - Dis_M_N = mkN "Dis" "Ditis " masculine ; -- [XEIDO] :: Dis (Roman ruler of the underworld); (originally) deity/godhead (L+S); Jupiter; + Diovis_M_N = mkN "Diovis" "Diovis" masculine ; -- [AEIEO] :: Jupiter/Jove; (Italian sky god); (supreme being); heavens/sky (poetic); + Dis_M_N = mkN "Dis" "Ditis" masculine ; -- [XEIDO] :: Dis (Roman ruler of the underworld); (originally) deity/godhead (L+S); Jupiter; Diviciacus_M_N = mkN "Diviciacus" ; -- [XXXDX] :: Diviciacus; an Aeduan Gaul chief in Caesar; a Suessiones king; Dolabella_M_N = mkN "Dolabella" ; -- [CXXDO] :: Dolabella; (cognomen of gens Cornelia); (P. Cornelius ~ -> Cicero's son-in-law); Dominica_F_N = mkN "Dominica" ; -- [EEXBE] :: Sunday, the Lord's day; @@ -411,23 +411,23 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat Donatista_M_N = mkN "Donatista" ; -- [EEXEE] :: Donatists (pl.), followers of Donat; (forgive not renouncers); Latin beginner; Dorius_A = mkA "Dorius" "Doria" "Dorium" ; -- [FXXEO] :: Dorian; (esp. designating Dorian mode); Druida_M_N = mkN "Druida" ; -- [XXXDX] :: druids (pl.), priests of the Gauls; - Druis_M_N = mkN "Druis" "Druidis " masculine ; -- [XXXDX] :: druids (pl.), priests of the Gauls; - Dryas_F_N = mkN "Dryas" "Dryadis " feminine ; -- [XAXDS] :: Dryad; wood-nymph; - Dumnorix_M_N = mkN "Dumnorix" "Dumnorigis " masculine ; -- [CXXCT] :: Dumnorix, name of a Gaul - in Caesar's Gallic War; + Druis_M_N = mkN "Druis" "Druidis" masculine ; -- [XXXDX] :: druids (pl.), priests of the Gauls; + Dryas_F_N = mkN "Dryas" "Dryadis" feminine ; -- [XAXDS] :: Dryad; wood-nymph; + Dumnorix_M_N = mkN "Dumnorix" "Dumnorigis" masculine ; -- [CXXCT] :: Dumnorix, name of a Gaul - in Caesar's Gallic War; 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; - Eccli_N = constN "Eccli." masculine ; -- [EEXDX] :: Ecclisiasties (abb.), Book of Bible/OT; + 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; + 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); 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; + Eosos_F_N = mkN "Eosos" "Eosi" feminine ; -- [XXXDX] :: dawn; Dawn (personified); the_Orient; Eous_A = mkA "Eous" "Eoa" "Eoum" ; -- [XXXDX] :: eastern; of the dawn; belonging to/of/set in the morning; Eous_M_N = mkN "Eous" ; -- [XXXDX] :: morning star; Oriental, dweller in the east; one of the horses of the Sun; Ephesius_A = mkA "Ephesius" "Ephesia" "Ephesium" ; -- [AXQCO] :: of/from/belonging to Ephesus (city in Asia Minor), Ephesian; - Ephesos_F_N = mkN "Ephesos" "Ephesi " feminine ; -- [AXQCO] :: Ephesus, city in Asia Minor (w/temple of Artemis/a 7 wonder); + Ephesos_F_N = mkN "Ephesos" "Ephesi" feminine ; -- [AXQCO] :: Ephesus, city in Asia Minor (w/temple of Artemis/a 7 wonder); Ephesus_F_N = mkN "Ephesus" ; -- [AXQCO] :: Ephesus, city in Asia Minor (w/temple of Artemis/a 7 wonder); Ephratheus_M_N = mkN "Ephratheus" ; -- [EXQEW] :: Ephramite, member of the Israel tribe of Ephraim; Epicureus_A = mkA "Epicureus" "Epicurea" "Epicureum" ; -- [XSHEO] :: Epicurean, belonging to the Epicureans, following philosopher Epicurus; @@ -436,22 +436,22 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat Epicurius_M_N = mkN "Epicurius" ; -- [XSHEO] :: Epicurean, one belonging to the Epicureans, follower philosopher Epicurus; 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); + Eporedorix_M_N = mkN "Eporedorix" "Eporedorigis" masculine ; -- [XXXDX] :: Eporedorix; (Aedui Gaul); 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; + Euhios_M_N = mkN "Euhios" "Euhii" masculine ; -- [XXXDX] :: Bacchus, title given to Bacchus; Euhius_M_N = mkN "Euhius" ; -- [XXXDX] :: Bacchus; title given to Bacchus; 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); + 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); Eva_F_N = mkN "Eva" ; -- [EEXDX] :: Eve; Evangelium_N_N = mkN "Evangelium" ; -- [EEXDX] :: Gospel, Good News; - 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); + 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); - FARES_V = constV "FARES" ; -- [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; @@ -463,7 +463,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat Favonius_M_N = mkN "Favonius" ; -- [XXXDX] :: west wind; 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.); + 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]; Flora_F_N = mkN "Flora" ; -- [XEXES] :: Flora; goddess of flowers; Frygia_F_N = mkN "Frygia" ; -- [XXQEO] :: Phrygia, country comprising center and west of Asia Minor; Troy (poetical); @@ -491,7 +491,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat Germanicus_A = mkA "Germanicus" "Germanica" "Germanicum" ; -- [XXXBZ] :: German; Germanicus_M_N = mkN "Germanicus" ; -- [XXXCZ] :: Germanicus; 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); + 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; 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); @@ -502,13 +502,13 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat Graecanicus_A = mkA "Graecanicus" "Graecanica" "Graecanicum" ; -- [GXHET] :: Greek, of Greek origin; (Erasmus); Graecatus_A = mkA "Graecatus" "Graecata" "Graecatum" ; -- [XXHFO] :: Greek, written in Greek; Graecia_F_N = mkN "Graecia" ; -- [XXHBX] :: Greece; - Graecitas_F_N = mkN "Graecitas" "Graecitatis " feminine ; -- [GXHET] :: Greek language; (Erasmus); + Graecitas_F_N = mkN "Graecitas" "Graecitatis" feminine ; -- [GXHET] :: Greek language; (Erasmus); Graeculus_A = mkA "Graeculus" "Graecula" "Graeculum" ; -- [XXXDX] :: Grecian, Greek (mostly in a contemptuous sense); Graeculus_M_N = mkN "Graeculus" ; -- [XXXCS] :: little Greek; contemptible Greek; 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); - HS_N = constN "HS." masculine ; -- [XXXDX] :: sesterce (abb.), 2 1/2 asses; (IIS/HS = one+one+semi); + 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; Haceldama_N = constN "Haceldama" neuter ; -- [XEQFE] :: Akeldama; field of blood (Aramaic); potter's field; @@ -520,31 +520,31 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat Hadrumetus_F_N = mkN "Hadrumetus" ; -- [XXAES] :: Andrumetum/Hadrumetum (city of Africa propria, capital of province Byzacene); Haeduus_M_N = mkN "Haeduus" ; -- [XXFDX] :: Haedui (pl.), also Aedui, a people of Cen. Gaul - in Caesar's "Gallic War"; Hallelujah_Interj = ss "Hallelujah" ; -- [EEQCE] :: Halleluia, cry of joy and praise to God; (praise ye Jehovah); - Hannibal_M_N = mkN "Hannibal" "Hannibalis " masculine ; -- [BXACO] :: Hannibal; (Carthaginian general in 2nd Punic War); - Hasdrubal_M_N = mkN "Hasdrubal" "Hasdrubalis " masculine ; -- [BXADO] :: Hasdrubal; (Carthaginian name, general brother of Hanninbal); + Hannibal_M_N = mkN "Hannibal" "Hannibalis" masculine ; -- [BXACO] :: Hannibal; (Carthaginian general in 2nd Punic War); + Hasdrubal_M_N = mkN "Hasdrubal" "Hasdrubalis" masculine ; -- [BXADO] :: Hasdrubal; (Carthaginian name, general brother of Hanninbal); Hebraea_F_N = mkN "Hebraea" ; -- [EEXEE] :: Hebrew/Jewish woman; Hebraeus_A = mkA "Hebraeus" "Hebraea" "Hebraeum" ; -- [XXQEO] :: Hebrew, Jewish; Hebraeus_M_N = mkN "Hebraeus" ; -- [EEQDS] :: Hebrew, Jew; the Hebrews (pl.); Hebraice_Adv = mkAdv "Hebraice" ; -- [EEQFS] :: Hebrew, in Hebrew, in Hebrew language; Hebraicis_A = mkA "Hebraicis" "Hebraicis" "Hebraice" ; -- [EXQEE] :: Hebrew, Jewish; Hebraicus_A = mkA "Hebraicus" "Hebraica" "Hebraicum" ; -- [EXQES] :: Hebrew, Jewish; - Hector_M_N = mkN "Hector" "Hectoris " masculine ; -- [AXQDO] :: Hector; (chief Trojan hero); - Hegumen_M_N = mkN "Hegumen" "Hegumenis " masculine ; -- [FEHFE] :: Hegumen, Basilian monastery superior; abbot (of second class abbey); prior; + Hector_M_N = mkN "Hector" "Hectoris" masculine ; -- [AXQDO] :: Hector; (chief Trojan hero); + Hegumen_M_N = mkN "Hegumen" "Hegumenis" masculine ; -- [FEHFE] :: Hegumen, Basilian monastery superior; abbot (of second class abbey); prior; Heli_Interj = ss "Heli" ; -- [EEQFW] :: My God; [~ ~ lemma sabacthani => My God, my God why hast thou forsaken me]; Helvetia_F_N = mkN "Helvetia" ; -- [GXFDT] :: Switzerland; Helvetius_A = mkA "Helvetius" "Helvetia" "Helvetium" ; -- [XXXDX] :: of/connected with the Helvetii (pl.), a people of Cen. Gaul (Switzerland); Helvetius_M_N = mkN "Helvetius" ; -- [XXFDX] :: Helvetii (pl.), tribe in Central Gaul (Switzerland); (Caesar's "Gallic War"); - Hercules_M_N = mkN "Hercules" "Herculis " masculine ; -- [XXXDX] :: Hercules (Greek hero of great strength); - Hermes_M_N = mkN "Hermes" "Hermae " masculine ; -- [XYICO] :: Hermes; (Greek god Hermes = Roman Mercury); herm (pillar with bust of Hermes); - Herodes_M_N = mkN "Herodes" "Herodis " masculine ; -- [XXQEO] :: Herod; (Greek name, used by ruling family of Judea); + Hercules_M_N = mkN "Hercules" "Herculis" masculine ; -- [XXXDX] :: Hercules (Greek hero of great strength); + Hermes_M_N = mkN "Hermes" "Hermae" masculine ; -- [XYICO] :: Hermes; (Greek god Hermes = Roman Mercury); herm (pillar with bust of Hermes); + Herodes_M_N = mkN "Herodes" "Herodis" masculine ; -- [XXQEO] :: Herod; (Greek name, used by ruling family of Judea); Hesperia_F_N = mkN "Hesperia" ; -- [XXIDX] :: Italy, the western land; Hesperus_M_N = mkN "Hesperus" ; -- [XXXDX] :: evening-star; Heva_F_N = mkN "Heva" ; -- [XXXEE] :: Eve; Hibernia_F_N = mkN "Hibernia" ; -- [XXBEO] :: Ireland; Hibernus_M_N = mkN "Hibernus" ; -- [EXBFE] :: Irishman; the Irish (pl.); - Hieremias_M_N = mkN "Hieremias" "Hieremiae " masculine ; -- [EEQFE] :: Jeremiah; (Hebrew prophet); book of Bible); + Hieremias_M_N = mkN "Hieremias" "Hieremiae" masculine ; -- [EEQFE] :: Jeremiah; (Hebrew prophet); book of Bible); Hiericuntinus_A = mkA "Hiericuntinus" "Hiericuntina" "Hiericuntinum" ; -- [EXQFW] :: of/from/pertaining to Jericho; (city in Palestine); (Hebrew); - Hiericus_F_N = mkN "Hiericus" "Hiericuntis " feminine ; -- [XXQES] :: Jericho; (city in Palestine); (Hebrew); + Hiericus_F_N = mkN "Hiericus" "Hiericuntis" feminine ; -- [XXQES] :: Jericho; (city in Palestine); (Hebrew); Hieronymus_M_N = mkN "Hieronymus" ; -- [DEICF] :: Jerome; (St., 340-420, Doctor of the Church, produced Vulgate Bible); Hierosolimitanus_A = mkA "Hierosolimitanus" "Hierosolimitana" "Hierosolimitanum" ; -- [XXQFE] :: of Jerusalem; Hierosolyma_F_N = mkN "Hierosolyma" ; -- [XXQDO] :: Jerusalem (Hebrew); @@ -554,7 +554,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - Hippo_M_N = mkN "Hippo" "Hipponis " masculine ; -- [XXAFE] :: Hippo (town in north Africa); + Hippo_M_N = mkN "Hippo" "Hipponis" masculine ; -- [XXAFE] :: Hippo (town in north Africa); Hipponensis_A = mkA "Hipponensis" "Hipponensis" "Hipponense" ; -- [XXAFE] :: of/from Hippo (town in north Africa); Hispane_Adv = mkAdv "Hispane" ; -- [XXSFO] :: in Spanish manner; Hispania_F_N = mkN "Hispania" ; -- [XXSCO] :: Spain; Spanish peninsula; @@ -566,44 +566,44 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + Hyas_F_N = mkN "Hyas" "Hyadis" feminine ; -- [XXXDX] :: five stars (pl.) in Taurus associated with rainy weather; 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; + 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; + 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; - INRI_N = constN "INRI." masculine ; -- [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; - Id_N = constN "Id." masculine ; -- [XXXDX] :: Ides (pl.), abb. Id.; 15th of month, March, May, July, Oct., 13th elsewhen; + 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; + 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; - Illustris_M_N = mkN "Illustris" "Illustris " masculine ; -- [DLXEQ] :: Illustrious, title of highest officers of late empire; (above Spectabiles); + Ilion_N_N = mkN "Ilion" "Ilii" neuter ; -- [XXXDX] :: Ilium, Troy; + Illustris_M_N = mkN "Illustris" "Illustris" masculine ; -- [DLXEQ] :: Illustrious, title of highest officers of late empire; (above Spectabiles); Illyricum_N_N = mkN "Illyricum" ; -- [XXXDX] :: Illyricum; territory NE of Adriatic; Slovenia/Croatia region, Dalmatia/Albania; India_F_N = mkN "India" ; -- [XXICO] :: India; (ill-defined region of Asia); Indicus_A = mkA "Indicus" "Indica" "Indicum" ; -- [XXXCZ] :: Indian; - Indiges_M_N = mkN "Indiges" "Indigetis " masculine ; -- [XYXCS] :: hero elevated to god after death as patron deity of country; Aeneas; - Indigis_M_N = mkN "Indigis" "Indigitis " masculine ; -- [XXXDX] :: deified heroes (pl.), tutelary/protective deities (local not foreign gods); + Indiges_M_N = mkN "Indiges" "Indigetis" masculine ; -- [XYXCS] :: hero elevated to god after death as patron deity of country; Aeneas; + Indigis_M_N = mkN "Indigis" "Indigitis" masculine ; -- [XXXDX] :: deified heroes (pl.), tutelary/protective deities (local not foreign gods); Indus_A = mkA "Indus" "Inda" "Indum" ; -- [XXXBX] :: Indian, from/of/belonging to India; of Indian ivory; [dens ~ => Indian ivory]; Indus_M_N = mkN "Indus" ; -- [XXIDO] :: Indus (river); 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; + Ion_F_N = mkN "Ion" "Ionis" feminine ; -- [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; - Isai_N = constN "Isai." masculine ; -- [EEXDX] :: Isaiah (abb.), Book of the Bible; + Iris_F_N = mkN "Iris" "Iris" feminine ; -- [XYXCO] :: Iris (messenger of the gods, goddess of the rainbow); rainbow; + 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; + Israel_M_N = mkN "Israel" "Israelis" masculine ; -- [DEQES] :: Israel/Jacob; Israelites, decedents of Israel; people of God; Israelita_M_N = mkN "Israelita" ; -- [DEQES] :: Israelite; - Israelitis_F_N = mkN "Israelitis" "Israelitidis " feminine ; -- [DEQES] :: Israelite woman; - Israhel_M_N = mkN "Israhel" "Israhelis " masculine ; -- [EEQEW] :: Israel/Jacob; Israelites, decedents of Israel; people of God; - Israheles_M_N = mkN "Israheles" "Israhelitis " masculine ; -- [EEQFW] :: Israel/Jacob; Israelites, decedents of Israel; people of God; + Israelitis_F_N = mkN "Israelitis" "Israelitidis" feminine ; -- [DEQES] :: Israelite woman; + Israhel_M_N = mkN "Israhel" "Israhelis" masculine ; -- [EEQEW] :: Israel/Jacob; Israelites, decedents of Israel; people of God; + Israheles_M_N = mkN "Israheles" "Israhelitis" masculine ; -- [EEQFW] :: Israel/Jacob; Israelites, decedents of Israel; people of God; Israhelita_M_N = mkN "Israhelita" ; -- [EEQEW] :: Israelite; - Israhelitis_F_N = mkN "Israhelitis" "Israhelitidis " feminine ; -- [EEQEW] :: Israelite woman; + Israhelitis_F_N = mkN "Israhelitis" "Israhelitidis" feminine ; -- [EEQEW] :: Israelite woman; Italia_F_N = mkN "Italia" ; -- [XXIAX] :: Italy; Italica_F_N = mkN "Italica" ; -- [FGXEK] :: italic print; Italicus_M_N = mkN "Italicus" ; -- [XXIDX] :: Italians (pl.); @@ -616,9 +616,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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); 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); @@ -626,40 +626,40 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat Judaicus_A = mkA "Judaicus" "Judaica" "Judaicum" ; -- [XXQEO] :: of/relating to the Jews, Jewish; of/originating/stationed in Judea (troops); Judaismus_M_N = mkN "Judaismus" ; -- [DEQFS] :: Judaism; 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; + 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; 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); 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); + 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); - 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.); - Kal_N = constN "Kal." masculine ; -- [XXXDX] :: Kalends (pl.), 1st of month; abb. Kal./Kl.; day of proclamation, interest due; + 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.); + 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; - Kl_N = constN "Kl." masculine ; -- [XXXDX] :: Kalends (pl.), 1st of month; abb. Kal./Kl.; day of proclamation, interest due; + Karthago_F_N = mkN "Karthago" "Karthaginis" feminine ; -- [XXACO] :: Carthage; + 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); + 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; + Lar_M_N = mkN "Lar" "Laris" masculine ; -- [XEIBO] :: Lares; (usu. pl.); tutelary god/gods of home/hearth/crossroads; home/dwelling; Latina_F_N = mkN "Latina" ; -- [XGIDO] :: Latin (lingua/language); Latin Way (via); (road between Rome and Beneventum); Latine_Adv = mkAdv "Latine" ; -- [XXXCO] :: in Latin; correctly, in good Latin; in plain Latin without circumlocution; - Latinitas_F_N = mkN "Latinitas" "Latinitatis " feminine ; -- [XXXDS] :: good Latin; L:Latin rights; + 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; 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; + 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; 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; @@ -667,41 +667,41 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + Lesbos_F_N = mkN "Lesbos" "Lesbi" feminine ; -- [XPHEO] :: Lesbos; (island in North Aegean, famous for lyric poetry of Sappho and wine); Lesbous_A = mkA "Lesbous" "Lesboa" "Lesboum" ; -- [XXHFO] :: Lesbian, of Lesbos (Aegean island); Lesbus_F_N = mkN "Lesbus" ; -- [XPHEO] :: Lesbos; (island in North Aegean, famous for lyric poetry of Sappho and wine); Lethaeus_A = mkA "Lethaeus" "Lethaea" "Lethaeum" ; -- [XXXDX] :: of Lethe; causing forgetfulness, of the underworld; Levita_M_N = mkN "Levita" ; -- [EEXDX] :: deacon; Levite; Leviticus_A = mkA "Leviticus" "Levitica" "Leviticum" ; -- [EXXFS] :: Levitical, of/belonging to Levi/Levites; Libitina_F_N = mkN "Libitina" ; -- [XEXDX] :: Libitina, goddess of funerals; - Libo_M_N = mkN "Libo" "Libonis " masculine ; -- [XXXEO] :: Libo; (Roman cognomen); + Libo_M_N = mkN "Libo" "Libonis" masculine ; -- [XXXEO] :: Libo; (Roman cognomen); Liburnicus_A = mkA "Liburnicus" "Liburnica" "Liburnicum" ; -- [XXKEO] :: of/belonging to the Liburian/Illyrian/Croatian people; Liburnus_M_N = mkN "Liburnus" ; -- [XXKFO] :: Liburian/Illyrian/Croatian (pl.) peoples; Libya_F_N = mkN "Libya" ; -- [XXACO] :: Libya (general term for North Africa); peoples (pl.) of Libya; Libycus_A = mkA "Libycus" "Libyca" "Libycum" ; -- [XXXES] :: Libyan; African; - Libye_F_N = mkN "Libye" "Libyes " feminine ; -- [XXACO] :: Libya (general term for North Africa); peoples (pl.) of Libya; + Libye_F_N = mkN "Libye" "Libyes" feminine ; -- [XXACO] :: Libya (general term for North Africa); peoples (pl.) of Libya; Licinius_A = mkA "Licinius" "Licinia" "Licinium" ; -- [XXXCS] :: Licinian; of Licenius gens; - Liger_M_N = mkN "Liger" "Ligeris " masculine ; -- [XXXDX] :: Liger; the Loire, river in western Gaul; - Lingon_M_N = mkN "Lingon" "Lingonis " masculine ; -- [XXXDX] :: Lingones (pl.), a people of W Cen. Gaul - in Caesar's "Gallic War"; + Liger_M_N = mkN "Liger" "Ligeris" masculine ; -- [XXXDX] :: Liger; the Loire, river in western Gaul; + Lingon_M_N = mkN "Lingon" "Lingonis" masculine ; -- [XXXDX] :: Lingones (pl.), a people of W Cen. Gaul - in Caesar's "Gallic War"; Litaviccus_M_N = mkN "Litaviccus" ; -- [XXXDX] :: Litaviccus; (Aedui Gaul, led forces against Caesar); Londinium_N_N = mkN "Londinium" ; -- [XXBES] :: London; Londinum_N_N = mkN "Londinum" ; -- [GXXET] :: London; Londonium_N_N = mkN "Londonium" ; -- [GXXET] :: London; - Lucas_M_N = mkN "Lucas" "Lucae " masculine ; -- [EEXDX] :: Luke; + Lucas_M_N = mkN "Lucas" "Lucae" masculine ; -- [EEXDX] :: Luke; Lucifer_M_N = mkN "Lucifer" ; -- [EEXDX] :: Lucifer, Satan; Lucina_F_N = mkN "Lucina" ; -- [XEXDX] :: Lucina, goddess of childbirth; childbirth; Lucius_M_N = mkN "Lucius" ; -- [XXXDX] :: Lucius (Roman praenomen); (abb. L.); Lugdunum_N_N = mkN "Lugdunum" ; -- [CXFEF] :: Lyons in France; Leyden (-Batava) in Belgium; - Lupercal_N_N = mkN "Lupercal" "Lupercalis " neuter ; -- [XXXDX] :: grotto on Palatine hill sacred to Lycean Pan; fertility festival of Lycean Pan; + Lupercal_N_N = mkN "Lupercal" "Lupercalis" neuter ; -- [XXXDX] :: grotto on Palatine hill sacred to Lycean Pan; fertility festival of Lycean Pan; Lupercus_M_N = mkN "Lupercus" ; -- [XXXDX] :: protector against wolves (Pan); priest in Lycean fertility festival (15 Feb); Lutetia_F_N = mkN "Lutetia" ; -- [EXFET] :: Paris; (city in Gaul/France); Lutheranismus_M_N = mkN "Lutheranismus" ; -- [GXXEK] :: Lutheranism; 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); - 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; + 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; @@ -713,23 +713,23 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat Madianitis_A = mkA "Madianitis" "Madianitidis"; -- [EXQFW] :: Madianite/Midianite, of/from Madian/Midian; Madianitish; 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; + Maenas_F_N = mkN "Maenas" "Maenadis" feminine ; -- [XXXDX] :: Bacchante, female votary of Bacchus; inspired/frenzied woman; Magdalena_F_N = mkN "Magdalena" ; -- [EEXDX] :: Magdalen; Mahometanus_M_N = mkN "Mahometanus" ; -- [GXXEK] :: Moslem; 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; - Mam_N = constN "Mam." masculine ; -- [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); + 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; Manlius_A = mkA "Manlius" "Manlia" "Manlium" ; -- [XXXCS] :: Manlian; of Manlius gens; Marcus_M_N = mkN "Marcus" ; -- [XXIDX] :: Marcus (Roman praenomen); (abb. M.); Maria_F_N = mkN "Maria" ; -- [EEXBX] :: Mary; Marius_A = mkA "Marius" "Maria" "Marium" ; -- [XXXDX] :: Marius, Roman gens; (C. Marius, consul around 100 BC); 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; + 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; 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; @@ -740,32 +740,32 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat Mauricius_A = mkA "Mauricius" "Mauricia" "Mauricium" ; -- [XXXES] :: Moorish; Mauretanian; Maurus_M_N = mkN "Maurus" ; -- [XXABO] :: Moor; (inhabitant of North Africa); Mauretanian; Mausoleum_N_N = mkN "Mausoleum" ; -- [XXXCO] :: Mausoleum (magnificent tomb of Mausolus); large/ornate tomb (esp. of Emperors); - Mavors_M_N = mkN "Mavors" "Mavortis " masculine ; -- [XXXDX] :: Mars, Roman god of war; warlike spirit, fighting, battle, army, force of arms; + Mavors_M_N = mkN "Mavors" "Mavortis" masculine ; -- [XXXDX] :: Mars, Roman god of war; warlike spirit, fighting, battle, army, force of arms; Melita_F_N = mkN "Melita" ; -- [XXIDO] :: Malta (island); Mljet/Meleda (Adriatic island); some cities (L+S); sea-nymph; - Melite_F_N = mkN "Melite" "Melites " feminine ; -- [XXIDO] :: Malta (island); Mljet/Meleda (Adriatic island); some cities (L+S); sea-nymph; + Melite_F_N = mkN "Melite" "Melites" feminine ; -- [XXIDO] :: Malta (island); Mljet/Meleda (Adriatic island); some cities (L+S); sea-nymph; Menapius_M_N = mkN "Menapius" ; -- [XXFDX] :: Menapii; Belgic (north Gallic) tribe; Mercuria_M_N = mkN "Mercuria" ; -- [XXXDX] :: Mercury, Roman god of commerce, luck; Mercurius_M_N = mkN "Mercurius" ; -- [XEXES] :: Mercury (god); Messala_M_N = mkN "Messala" ; -- [XXXDX] :: Messala/Messalla; (Roman cognomen); [M. Valerius ~ Corvinus => orator]; Messalla_M_N = mkN "Messalla" ; -- [XXXDX] :: Messala/Messalla; (Roman cognomen); [M. Valerius ~ Corvinus => orator]; Metropolitanus_M_N = mkN "Metropolitanus" ; -- [DEXFS] :: metropolitan, bishop in metropolis/chief city; bishop of a metropolitan church; - Milo_M_N = mkN "Milo" "Milonis " masculine ; -- [CLXDS] :: Milo; (tribune Milo 57 BC, killed Clodius, defended by Cicero); + Milo_M_N = mkN "Milo" "Milonis" masculine ; -- [CLXDS] :: Milo; (tribune Milo 57 BC, killed Clodius, defended by Cicero); Minerva_F_N = mkN "Minerva" ; -- [XEXDX] :: Minerva, Roman goddess of wisdom; - 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); + 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); 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; - Moses_M_N = mkN "Moses" "Mosis " masculine ; -- [EEQEE] :: Moses; - Moyses_M_N = mkN "Moyses" "Moysis " masculine ; -- [EEQEE] :: Moses; - Mulciber_M_N = mkN "Mulciber" "Mulciberis " masculine ; -- [XEXDO] :: surname of Vulcan; P:fire; + Moses_M_N = mkN "Moses" "Mosis" masculine ; -- [EEQEE] :: Moses; + Moyses_M_N = mkN "Moyses" "Moysis" masculine ; -- [EEQEE] :: Moses; + 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; - N_N = constN "N." masculine ; -- [XXXDX] :: Numerius (Roman praenomen); (abb. N./Num.); + 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; @@ -779,57 +779,57 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; Neptunus_M_N = mkN "Neptunus" ; -- [XEIDX] :: Neptune; sea; - Nero_M_N = mkN "Nero" "Neronis " masculine ; -- [CLIBO] :: Nero; (cognomen of Claudian gens); (Nero Claudius Caesar -> Emperor, 54-69); + Nero_M_N = mkN "Nero" "Neronis" masculine ; -- [CLIBO] :: Nero; (cognomen of Claudian gens); (Nero Claudius Caesar -> Emperor, 54-69); Nerva_M_N = mkN "Nerva" ; -- [CLIEO] :: Nerva; (Roman cognomen); [M. Cocceius Nerva => Emperor, 96-98 AD]; Nervius_M_N = mkN "Nervius" ; -- [XXXDX] :: Nervii (pl.); Belgic (north Gallic) tribe; Nicomedia_F_N = mkN "Nicomedia" ; -- [XXXES] :: Nicomedia (city), capital of Bithynia; (now Izmid/Izmit Turkey); - Nineve_F_N = mkN "Nineve" "Nineves " feminine ; -- [EXQEW] :: Nineveh; (ancient capital of Assyria); + Nineve_F_N = mkN "Nineve" "Nineves" feminine ; -- [EXQEW] :: Nineveh; (ancient capital of Assyria); Ninevita_M_N = mkN "Ninevita" ; -- [EXQFW] :: Ninivite, inhabitant of Nineveh (ancient capital of Assyria); Nineviticus_A = mkA "Nineviticus" "Ninevitica" "Nineviticum" ; -- [EXQFW] :: Ninivite, of/from Nineveh; (ancient capital of Assyria); Ninevitus_A = mkA "Ninevitus" "Ninevita" "Ninevitum" ; -- [EXQEW] :: Ninivite, of/from Nineveh; (ancient capital of Assyria); - Ninive_F_N = mkN "Ninive" "Ninives " feminine ; -- [EXQES] :: Nineveh; (ancient capital of Assyria); + Ninive_F_N = mkN "Ninive" "Ninives" feminine ; -- [EXQES] :: Nineveh; (ancient capital of Assyria); Ninivita_M_N = mkN "Ninivita" ; -- [EXQFS] :: Ninivite, inhabitant of Nineveh (ancient capital of Assyria); 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; - Non_N = constN "Non." masculine ; -- [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; 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.; + 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; - Num_N = constN "Num." masculine ; -- [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); 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.; - Odollames_M_N = mkN "Odollames" "Odollamitis " masculine ; -- [EEQFW] :: Adullamite; person from Adullam (in Judea, famous for refuge caves); + October_M_N = mkN "October" "Octobris" masculine ; -- [XXXCO] :: October; (8th month before Caesar, 10 th after); abb. Oct.; + Odollames_M_N = mkN "Odollames" "Odollamitis" masculine ; -- [EEQFW] :: Adullamite; person from Adullam (in Judea, famous for refuge caves); Olympia_F_N = mkN "Olympia" ; -- [XXHDS] :: Olympia; Olympus_M_N = mkN "Olympus" ; -- [XXHDS] :: Olympus; Mt Olympus in Greece; the gods; heaven; Orcus_M_N = mkN "Orcus" ; -- [XXXBX] :: god of the underworld, Dis; death; the underworld; - Orestes_M_N = mkN "Orestes" "Orestis " masculine ; -- [XYHCO] :: Orestes; son of Agamennon and Clytaemnestra; play by Euripides; book by Varro; - Orgetorix_M_N = mkN "Orgetorix" "Orgetorigis " masculine ; -- [XXXDX] :: Orgetorix, chief of Helvetii, hostile to Caesar - in Caesar's "Gallic War"; - Orientalis_F_N = mkN "Orientalis" "Orientalis " feminine ; -- [DXXES] :: Easterner, one from the East; Oriental; (F) wild beasts hunting/exhibition; - Orientalis_M_N = mkN "Orientalis" "Orientalis " masculine ; -- [DXXES] :: Easterner, one from the East; Oriental; (F) wild beasts hunting/exhibition; + Orestes_M_N = mkN "Orestes" "Orestis" masculine ; -- [XYHCO] :: Orestes; son of Agamennon and Clytaemnestra; play by Euripides; book by Varro; + Orgetorix_M_N = mkN "Orgetorix" "Orgetorigis" masculine ; -- [XXXDX] :: Orgetorix, chief of Helvetii, hostile to Caesar - in Caesar's "Gallic War"; + Orientalis_F_N = mkN "Orientalis" "Orientalis" feminine ; -- [DXXES] :: Easterner, one from the East; Oriental; (F) wild beasts hunting/exhibition; + Orientalis_M_N = mkN "Orientalis" "Orientalis" masculine ; -- [DXXES] :: Easterner, one from the East; Oriental; (F) wild beasts hunting/exhibition; Osanna_Interj = ss "Osanna" ; -- [DEQEE] :: Hosanna, "God save", a cry of praise (Hebrew); 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]; + 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; - P_N = constN "P." masculine ; -- [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; + 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; 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); + 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; + Panthus_M_N = mkN "Panthus" "Panthi" masculine ; -- [XXXCG] :: Panthus, a priest of Apollo at Troy; used as a pseudonym; Papa_M_N = mkN "Papa" ; -- [EEXBX] :: pope; Parca_F_N = mkN "Parca" ; -- [XEXDS] :: Fate; one of the goddesses of fate; Parthicus_A = mkA "Parthicus" "Parthica" "Parthicum" ; -- [XXXCZ] :: Parthian; @@ -839,44 +839,44 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat Pedius_A = mkA "Pedius" "Pedia" "Pedium" ; -- [XXXDO] :: Pedius, Roman gens; [Q ~ =>Caesar's nephew, lex ~ =>law trying Caesar's killer]; Pedius_M_N = mkN "Pedius" ; -- [XXXDO] :: Pedius; (gens name); any/fictitious name (law); [Q Pedius => Caesar's nephew]; Pelasgus_M_N = mkN "Pelasgus" ; -- [XXXDS] :: ancient Greek; - Penas_M_N = mkN "Penas" "Penatis " masculine ; -- [XEIBO] :: Penates; (usu. pl.); gods of home/larder/family; home/dwelling; family/line; + Penas_M_N = mkN "Penas" "Penatis" masculine ; -- [XEIBO] :: Penates; (usu. pl.); gods of home/larder/family; home/dwelling; family/line; Pentecostalis_A = mkA "Pentecostalis" "Pentecostalis" "Pentecostale" ; -- [EEXES] :: Pentecostal, belonging to Pentecost/Whitsuntide; - Pentecoste_F_N = mkN "Pentecoste" "Pentecostes " feminine ; -- [EEXES] :: Pentecost, Whit-Sunday, fiftieth day after Easter; + Pentecoste_F_N = mkN "Pentecoste" "Pentecostes" feminine ; -- [EEXES] :: Pentecost, Whit-Sunday, fiftieth day after Easter; Peripateticus_A = mkA "Peripateticus" "Peripatetica" "Peripateticum" ; -- [XSHEO] :: of/belonging to the Peripatetic (Aristotelian) school of philosophy; Peripateticus_M_N = mkN "Peripateticus" ; -- [XSHDO] :: philosopher of the Peripatetic (Aristotelian) school; Persa_M_N = mkN "Persa" ; -- [XXPCO] :: Persian, native of Persia; (sometimes for Parthian; Persian breed of dog); - Perses_M_N = mkN "Perses" "Persae " masculine ; -- [XXPCO] :: Persian, native of Persia; (sometimes for Parthian; Persian breed of dog); + Perses_M_N = mkN "Perses" "Persae" masculine ; -- [XXPCO] :: Persian, native of Persia; (sometimes for Parthian; Persian breed of dog); Persicus_A = mkA "Persicus" "Persica" "Persicum" ; -- [XXXCZ] :: Persian; Persis_A = mkA "Persis" "Persidos"; -- [XXPFO] :: Persian; - Pertinax_M_N = mkN "Pertinax" "Pertinacis " masculine ; -- [DLIDZ] :: Pertinax; (Emperor Publius Helvius Pertinax 193); + Pertinax_M_N = mkN "Pertinax" "Pertinacis" masculine ; -- [DLIDZ] :: Pertinax; (Emperor Publius Helvius Pertinax 193); Petrus_M_N = mkN "Petrus" ; -- [EEXBX] :: Peter; - Phaedo_M_N = mkN "Phaedo" "Phaedonis " masculine ; -- [XSHES] :: Phaedo (disciple of Socrates, friend of Plato, founder of school at Elis); - Phaedon_M_N = mkN "Phaedon" "Phaedonis " masculine ; -- [XSHEO] :: Phaedo (disciple of Socrates, friend of Plato, founder of school at Elis); + Phaedo_M_N = mkN "Phaedo" "Phaedonis" masculine ; -- [XSHES] :: Phaedo (disciple of Socrates, friend of Plato, founder of school at Elis); + 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; + Pharao_M_N = mkN "Pharao" "Pharaonis" masculine ; -- [EEXDX] :: Pharaoh, title of King of Egypt; 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; + Phoebe_F_N = mkN "Phoebe" "Phoebes" feminine ; -- [XEXDS] :: Diana; moon goddess; Phoenica_F_N = mkN "Phoenica" ; -- [XLQEO] :: Phoenicia; (coastal region of Syria); - Phoenice_F_N = mkN "Phoenice" "Phoenices " feminine ; -- [XLQEO] :: Phoenicia; (coast region of Syria); wild grass; rye grass/Lolium perenne?; + Phoenice_F_N = mkN "Phoenice" "Phoenices" feminine ; -- [XLQEO] :: Phoenicia; (coast region of Syria); wild grass; rye grass/Lolium perenne?; Phrigia_F_N = mkN "Phrigia" ; -- [XXQEO] :: Phrygia, country comprising center and west of Asia Minor; Troy (poetical); Phrigius_A = mkA "Phrigius" "Phrigia" "Phrigium" ; -- [XXQCO] :: Phrygian, of Phyrigia (center and west of Asia Minor); Trojan; Phrygia_F_N = mkN "Phrygia" ; -- [XXQEO] :: Phrygia, country comprising center and west of Asia Minor; Troy (poetical); Phrygius_A = mkA "Phrygius" "Phrygia" "Phrygium" ; -- [XXQCO] :: Phrygian, of Phyrigia (center and west of Asia Minor); Trojan; 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]; + 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; + Plato_M_N = mkN "Plato" "Platonis" masculine ; -- [XSHDS] :: Plato; Greek philosopher; 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); - Pluto_M_N = mkN "Pluto" "Plutonis " masculine ; -- [XEXDS] :: Pluto; king of underworld; + Pluto_M_N = mkN "Pluto" "Plutonis" masculine ; -- [XEXDS] :: Pluto; king of underworld; Poenus_A = mkA "Poenus" "Poena" "Poenum" ; -- [XXACO] :: Carthaginian, Punic; of/associated w/Carthage; Phoenician; scarlet, bright red; Poenus_M_N = mkN "Poenus" ; -- [XXACO] :: Carthaginian; Phoenician; (specifically Hannibal); Pol_Interj = ss "Pol" ; -- [XXXDX] :: by Pollux; truly; really; - Pollux_M_N = mkN "Pollux" "Pollucis " masculine ; -- [XYHCO] :: Pollux; (son of Tyndarus and Leda, twin of Castor); + Pollux_M_N = mkN "Pollux" "Pollucis" masculine ; -- [XYHCO] :: Pollux; (son of Tyndarus and Leda, twin of Castor); Pompeianus_A = mkA "Pompeianus" "Pompeiana" "Pompeianum" ; -- [XXXBO] :: Pompeian; of/belonging to member of Pompian gens; (esp. of triumvir Pompey); Pompeius_A = mkA "Pompeius" "Pompeia" "Pompeium" ; -- [XXXDX] :: Pompeius; Roman gens; (Cn. Pompeius Magnus (Pompey), triumvir); Pompeius_M_N = mkN "Pompeius" ; -- [XXXAX] :: Pompeius; (Roman gens name); (Cn. Pompeius Magnus (Pompey), triumvir); @@ -895,26 +895,26 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat Pyrenaeus_A = mkA "Pyrenaeus" "Pyrenaea" "Pyrenaeum" ; -- [XXXDX] :: Pyrenees (w/montes); 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; - Q_N = constN "Q." masculine ; -- [XXXDX] :: Quintus (Roman praenomen); (abb. Q.); + Python_M_N = mkN "Python" "Pythonis" masculine ; -- [XEXDS] :: familiar spirit/demon possessing soothsayer; soothsayer; snake slain at Delphi; + 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; + 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); 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); Quintus_M_N = mkN "Quintus" ; -- [XXIDX] :: Quintus (Roman praenomen); (abb. Q.); - 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; + 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; 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); Rhodanus_M_N = mkN "Rhodanus" ; -- [XXFDX] :: Rhone; (river in SW Gaul - in Caesar's Gallic War); - Rolvo_M_N = mkN "Rolvo" "Rolvonis " masculine ; -- [FXDDV] :: Rolf; + Rolvo_M_N = mkN "Rolvo" "Rolvonis" masculine ; -- [FXDDV] :: Rolf; Roma_F_N = mkN "Roma" ; -- [XXIAX] :: Rome; Romanicus_A = mkA "Romanicus" "Romanica" "Romanicum" ; -- [GXXEK] :: Roman (architectural style); Romulus_A = mkA "Romulus" "Romula" "Romulum" ; -- [XXIDO] :: of/pertaining to Romulus (legendary founder of Rome); Roman; @@ -925,20 +925,20 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat Rutilius_M_N = mkN "Rutilius" ; -- [XXICO] :: Rutilius; (Roman gens name); (P. ~ Rufus -> exiled historian); SELAH_V = constV "SELAH" ; -- [DEQEW] :: selah, musical pause (Psalms); sing loud; change pitch; (full meaning unknown); SIDa_F_N = mkN "SIDa" ; -- [GXXEK] :: AIDS, SIDA; - SPQR_N = constN "SPQR." masculine ; -- [XLIDX] :: Senate and People of Rome; (Senatus PopulusQue Romanus,logo of Rome, like USA); + 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.); + 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; - Salomon_M_N = mkN "Salomon" "Salomonis " masculine ; -- [XEQDE] :: David; + Salomon_M_N = mkN "Salomon" "Salomonis" masculine ; -- [XEQDE] :: David; Samaria_F_N = mkN "Samaria" ; -- [XXQNS] :: Samaria; (middle district of Palestine); Samaritanus_A = mkA "Samaritanus" "Samaritana" "Samaritanum" ; -- [DXQES] :: Samaritan, of/pertaining to Samaria; (middle district of Palestine); - Samarites_M_N = mkN "Samarites" "Samaritae " masculine ; -- [EXQES] :: Samaritan, inhabitant of Samaria; (middle district of Palestine); + Samarites_M_N = mkN "Samarites" "Samaritae" masculine ; -- [EXQES] :: Samaritan, inhabitant of Samaria; (middle district of Palestine); Samariticus_A = mkA "Samariticus" "Samaritica" "Samariticum" ; -- [DXQFS] :: Samaritan, of/pertaining to Samaria; (middle district of Palestine); - Samaritis_F_N = mkN "Samaritis" "Samaritidis " feminine ; -- [DXQFS] :: Samaritan woman, inhabitant of Samaria; (middle district of Palestine); + Samaritis_F_N = mkN "Samaritis" "Samaritidis" feminine ; -- [DXQFS] :: Samaritan woman, inhabitant of Samaria; (middle district of Palestine); Samius_A = mkA "Samius" "Samia" "Samium" ; -- [XXXCO] :: of/belonging to Samos; (cheap/brittle pottery); [testa ~ => shard for cutting]; Sardinia_F_N = mkN "Sardinia" ; -- [XXIDO] :: Sardinia; (large island west of Italy); Sardonius_A = mkA "Sardonius" "Sardonia" "Sardonium" ; -- [XXIEO] :: Sardinian; [~ herba => kind of acrid buttercup/poisonous plant, crowfoot (L+S)]; @@ -947,14 +947,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat Sarmata_M_N = mkN "Sarmata" ; -- [XXXDS] :: Sarmatian; people from south Russia/Iran; Sarmaticus_A = mkA "Sarmaticus" "Sarmatica" "Sarmaticum" ; -- [XXXDS] :: Sarmatian; of the Sarmatian people; 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); + 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); + Saul_M_N = mkN "Saul" "Saulis" masculine ; -- [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); + Scipio_M_N = mkN "Scipio" "Scipionis" masculine ; -- [XXICO] :: Scipio; (P. Cornelia ~ beat Hannibal, his grandson destroyed Carthage); Scotia_F_N = mkN "Scotia" ; -- [EXBCE] :: Scotland; Scotus_M_N = mkN "Scotus" ; -- [EXBDE] :: Scot, Scotsman, person from Scotland; Scots (pl.); Seia_F_N = mkN "Seia" ; -- [XEINO] :: Seia; (tutelary goddess of grain at time of sowing); @@ -964,18 +964,18 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat Sempronianus_A = mkA "Sempronianus" "Semproniana" "Sempronianum" ; -- [XXXFS] :: Sempronian; of gens Sempronia; (in title of laws by Ti./C. Gracchus); Sempronius_A = mkA "Sempronius" "Sempronia" "Sempronium" ; -- [XXXFS] :: Sempronian; of gens Sempronia; (in title of laws by Ti./C. Gracchus); Senatusconsultum_N_N = mkN "Senatusconsultum" ; -- [XLXCS] :: decree of the Senate; - Senatusconsultus_M_N = mkN "Senatusconsultus" "Senatusconsultus " masculine ; -- [DLXFS] :: decree of the Senate; + 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); + Senones_M_N = mkN "Senones" "Senonis" masculine ; -- [XXXDX] :: Senones; tribe of central Gaul (Seine valley); 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.; + 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"; Sequanus_A = mkA "Sequanus" "Sequana" "Sequanum" ; -- [XXXDX] :: of the Sequani, tribe in E. Gaul - in Caesar's "Gallic War"; 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; - Ser_N = constN "Ser." masculine ; -- [XXXDX] :: Servius (Roman praenomen); (abb. Ser.); + 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; + 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; @@ -984,7 +984,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); - Sex_N = constN "Sex." masculine ; -- [XXXDX] :: Sextus (Roman praenomen); (abb. Sex.); + 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]; @@ -996,25 +996,25 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat Sicilia_F_N = mkN "Sicilia" ; -- [XXICO] :: Sicily; (large island southwest of Italy); Siculus_A = mkA "Siculus" "Sicula" "Siculum" ; -- [XXICO] :: Sicilian, of/pertaining to Sicily (island southwest of Italy); cruel; luxurious; 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; + 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; 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; Sirius_M_N = mkN "Sirius" ; -- [DXXDX] :: Sirius, greater dog-star; - Socrates_M_N = mkN "Socrates" "Socratis " masculine ; -- [XSHCO] :: Socrates (Athenian philosopher 469-399 B.C.); + Socrates_M_N = mkN "Socrates" "Socratis" masculine ; -- [XSHCO] :: Socrates (Athenian philosopher 469-399 B.C.); Socraticus_A = mkA "Socraticus" "Socratica" "Socraticum" ; -- [XXXCZ] :: Socratic; of Socrates; 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); - Sp_N = constN "Sp." masculine ; -- [XXXDX] :: Spurius (Roman praenomen); (abb. Sp.); + Sophocles_M_N = mkN "Sophocles" "Sophoclis" masculine ; -- [BPHDS] :: Sophocles (Greek poet); + 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); - Spes_F_N = mkN "Spes" "Spei " feminine ; -- [XEXDO] :: ||Spes, goddess of hope; hope personified; - Sphinx_F_N = mkN "Sphinx" "Sphingis " feminine ; -- [XXXFS] :: Sphinx; + Spectabilis_M_N = mkN "Spectabilis" "Spectabilis" masculine ; -- [DLXES] :: Respectable, title of high officers of late empire; (below Illustres); + Spes_F_N = mkN "Spes" "Spei" feminine ; -- [XEXDO] :: ||Spes, goddess of hope; hope personified; + Sphinx_F_N = mkN "Sphinx" "Sphingis" feminine ; -- [XXXFS] :: Sphinx; Spurius_M_N = mkN "Spurius" ; -- [XXXDX] :: Spurius (Roman praenomen); (abb. Sp.); Stichus_M_N = mkN "Stichus" ; -- [XLXDO] :: common slave name; representative name in legal forms, Anyslave; Stoicus_A = mkA "Stoicus" "Stoica" "Stoicum" ; -- [XXXDX] :: Stoic; @@ -1032,20 +1032,20 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat Surus_A = mkA "Surus" "Sura" "Surum" ; -- [XXQCS] :: Syrian, of Syria; Surus_M_N = mkN "Surus" ; -- [XXQCO] :: Syrian, native of Syria; (esp. as a slave); (name of a slave); Susum_N_N = mkN "Susum" ; -- [XXXDS] :: Susum; Susa (ancient Persian capital, modern Soos); - Syracuses_F_N = mkN "Syracuses" "Syracusae " feminine ; -- [XXICO] :: Syracuse (pl.); (chief city of Sicily); + Syracuses_F_N = mkN "Syracuses" "Syracusae" feminine ; -- [XXICO] :: Syracuse (pl.); (chief city of Sicily); Syria_F_N = mkN "Syria" ; -- [XXQCO] :: Syria; (area between Asia Minor and Egypt including Phoenicia and Palestine); Syriacus_A = mkA "Syriacus" "Syriaca" "Syriacum" ; -- [XXQCO] :: Syrian, of/connected with Syria, produced/found in Syria; 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); - 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.); + 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; Tartarum_N_N = mkN "Tartarum" ; -- [XXXDX] :: infernal regions (pl.), the underworld; Tartarus_M_N = mkN "Tartarus" ; -- [XXXBX] :: infernal regions (pl.), the underworld; - Terminal_N_N = mkN "Terminal" "Terminalis " neuter ; -- [XXXDX] :: festival (pl.) of the god of boundaries (Terminus) on 23 February; + Terminal_N_N = mkN "Terminal" "Terminalis" neuter ; -- [XXXDX] :: festival (pl.) of the god of boundaries (Terminus) on 23 February; Tertullianus_M_N = mkN "Tertullianus" ; -- [DEXFZ] :: Tertullian; (c. 200, first Latin Christian writer); Tetrardus_M_N = mkN "Tetrardus" ; -- [FDXEZ] :: Tetrardus; fourth-voice antiphon; fourth note(?); Teucer_M_N = mkN "Teucer" ; -- [XWGES] :: Trojan; originally brother of Ajax; @@ -1059,52 +1059,52 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); Thraecius_A = mkA "Thraecius" "Thraecia" "Thraecium" ; -- [XXHCO] :: Thracian, of/belonging to Thrace; gem; [lapis ~ => combustible stone/lignite]; - Thraex_M_N = mkN "Thraex" "Threacis " masculine ; -- [XXHCO] :: Thracian, native of Thrace; gladiator armed with saber and short shield; - Thrax_M_N = mkN "Thrax" "Thracis " masculine ; -- [XXXDX] :: Thracian; gladiator with saber and short shield, gladiator; + Thraex_M_N = mkN "Thraex" "Threacis" masculine ; -- [XXHCO] :: Thracian, native of Thrace; gladiator armed with saber and short shield; + Thrax_M_N = mkN "Thrax" "Thracis" masculine ; -- [XXXDX] :: Thracian; gladiator with saber and short shield, gladiator; Threcia_F_N = mkN "Threcia" ; -- [XXHCO] :: Thrace; (vaguely defined country east of Macedon/north-east of Greece); 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; - Ti_N = constN "Ti." masculine ; -- [XXXDX] :: Tiberius, Roman praenomen; (abb. Ti./Tib.); - Tib_N = constN "Tib." masculine ; -- [XXXDX] :: Tiberius, Roman praenomen; (abb. Ti./Tib.); + Threx_M_N = mkN "Threx" "Threcis" masculine ; -- [XXHCO] :: Thracian, native of Thrace; gladiator armed with saber and short shield; + 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); + 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"; - Tim_N = constN "Tim." masculine ; -- [EEXEE] :: Timothy (abb.); (Book of the Bible); + 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; Titus_M_N = mkN "Titus" ; -- [CLIBO] :: Titus; Roman praenomen, abb. T.; (~ Flavius Vespasianus, Emperor, 79-81 AD); - Traex_M_N = mkN "Traex" "Treacis " masculine ; -- [XXHCO] :: Thracian, native of Thrace; gladiator armed with saber and short shield; + Traex_M_N = mkN "Traex" "Treacis" masculine ; -- [XXHCO] :: Thracian, native of Thrace; gladiator armed with saber and short shield; Trajanus_M_N = mkN "Trajanus" ; -- [CLIBO] :: Trajan; (Roman cognomen); [M. Ulpius Traianus => Emperor, 98-117 AD]; Trajectum_N_N = mkN "Trajectum" ; -- [EXNFZ] :: Utrecht, city in Holland; (river crossing/ferry); Transalpinus_A = mkA "Transalpinus" "Transalpina" "Transalpinum" ; -- [XXXCO] :: of/belonging to/situated in the region beyond the Alps (from Rome); Transalpinus_M_N = mkN "Transalpinus" ; -- [XXXCO] :: people (pl.) from the region beyond the Alps (from Rome); - Trax_M_N = mkN "Trax" "Tracis " masculine ; -- [XXXDX] :: Thracian; gladiator with saber and short shield, gladiator; + Trax_M_N = mkN "Trax" "Tracis" masculine ; -- [XXXDX] :: Thracian; gladiator with saber and short shield, gladiator; Treverus_M_N = mkN "Treverus" ; -- [XXGDX] :: Treveri, German tribe around Trier (Treves); - Trex_M_N = mkN "Trex" "Trecis " masculine ; -- [XXHCO] :: Thracian, native of Thrace; gladiator armed with saber and short shield; - Trinitas_F_N = mkN "Trinitas" "Trinitatis " feminine ; -- [XEXDS] :: number three; triad, trinity; the Holy/Blessed Trinity; - Trio_M_N = mkN "Trio" "Trionis " masculine ; -- [XXXCO] :: oxen (pl.) used for plowing; constellations Great/Little Bear (7 stars/oxen); + Trex_M_N = mkN "Trex" "Trecis" masculine ; -- [XXHCO] :: Thracian, native of Thrace; gladiator armed with saber and short shield; + Trinitas_F_N = mkN "Trinitas" "Trinitatis" feminine ; -- [XEXDS] :: number three; triad, trinity; the Holy/Blessed Trinity; + Trio_M_N = mkN "Trio" "Trionis" masculine ; -- [XXXCO] :: oxen (pl.) used for plowing; constellations Great/Little Bear (7 stars/oxen); Troiugena_M_N = mkN "Troiugena" ; -- [XXXDX] :: born of Trojan stock, descendent of Trojans; Trojan; the Romans (pl.); Trojanus_A = mkA "Trojanus" "Trojana" "Trojanum" ; -- [XXXFS] :: Trojan; - Tubero_F_N = mkN "Tubero" "Tuberonis " feminine ; -- [XXXDO] :: Tuber (surname of gens Aelia); + Tubero_F_N = mkN "Tubero" "Tuberonis" feminine ; -- [XXXDO] :: Tuber (surname of gens Aelia); Tubilustrium_N_N = mkN "Tubilustrium" ; -- [XXXDX] :: feast of trumpets (on the 23rd of March and 23rd of May); Tulingus_M_N = mkN "Tulingus" ; -- [XXGDX] :: Tulingi, German tribe north of the Helvetii - in Caesar's "Gallic War"; Tullianus_A = mkA "Tullianus" "Tulliana" "Tullianum" ; -- [XGICO] :: of/belonging to a Tullius; of/written by M Tullius Cicero or in his style; Tullius_A = mkA "Tullius" "Tullia" "Tullium" ; -- [XXXDX] :: Tullius, Roman gens; M. Tullius Cicero, orator; Tullius_M_N = mkN "Tullius" ; -- [XXXDX] :: Tullius; (Roman gens name); M. Tullius Cicero, orator; Tusculum_N_N = mkN "Tusculum" ; -- [XXIES] :: Tusculum; town in Latium/Italy; - Tyros_F_N = mkN "Tyros" "Tyri " feminine ; -- [XXQCO] :: Tyre; (city on the Phoenician coast); (famous for crimson dye Tyrian purple); + Tyros_F_N = mkN "Tyros" "Tyri" feminine ; -- [XXQCO] :: Tyre; (city on the Phoenician coast); (famous for crimson dye Tyrian purple); Tyrus_F_N = mkN "Tyrus" ; -- [XXQCO] :: Tyre; (city on the Phoenician coast); (famous for crimson dye Tyrian purple); Ubius_M_N = mkN "Ubius" ; -- [XXGEX] :: Ubii, German tribe, west of Rhine near Coblenz; - Ulixes_M_N = mkN "Ulixes" "Ulixis " masculine ; -- [XYHEO] :: Ulysses/Odysseus; (crafty hero of Trojan war and the Odyssey; King of Ithaca); + Ulixes_M_N = mkN "Ulixes" "Ulixis" masculine ; -- [XYHEO] :: Ulysses/Odysseus; (crafty hero of Trojan war and the Odyssey; King of Ithaca); Utica_F_N = mkN "Utica" ; -- [XXADO] :: Utica; (town in Africa west of Carthage); - Valens_M_N = mkN "Valens" "Valentis " masculine ; -- [ELIDS] :: Valens; (Emperor Flavius Julius Valens 364-378 lost at Adrianople); + Valens_M_N = mkN "Valens" "Valentis" masculine ; -- [ELIDS] :: Valens; (Emperor Flavius Julius Valens 364-378 lost at Adrianople); Valentinianus_M_N = mkN "Valentinianus" ; -- [ELIDZ] :: Valentinian; (Emperor Flavius Valentinian I 364-375; II 375-392); Valerianus_M_N = mkN "Valerianus" ; -- [DLIDZ] :: Valerian; (Emperor Publius Licinius Valerian 253-260); Valerius_A = mkA "Valerius" "Valeria" "Valerium" ; -- [XXXDX] :: of Valerius, Roman gens; P. V. Publicola, one of the first consuls (509 BC); @@ -1112,81 +1112,81 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat Veneri_A = mkA "Veneri" "Veneriis"; -- [XEIBO] :: of/sacred to/devoted to Venus, Roman goddess of love; of sexual love; erotic; Venetia_F_N = mkN "Venetia" ; -- [XXIDO] :: Venice; the region in northern Italy around Venice; Venetus_M_N = mkN "Venetus" ; -- [XXFDX] :: Veneti; tribe of W. Britiany; people inhabiting Veneti (Venice to Po) region; - Venus_F_N = mkN "Venus" "Veneris " feminine ; -- [XEIAO] :: |sexual activity/appetite/intercourse; [~ tali => best dice throw]; - Vercingetorix_M_N = mkN "Vercingetorix" "Vercingetorigis " masculine ; -- [XXXDX] :: Vercingetorix; a Gaul (Avernian). led revolt against Caesar in 52 BC; + Venus_F_N = mkN "Venus" "Veneris" feminine ; -- [XEIAO] :: |sexual activity/appetite/intercourse; [~ tali => best dice throw]; + Vercingetorix_M_N = mkN "Vercingetorix" "Vercingetorigis" masculine ; -- [XXXDX] :: Vercingetorix; a Gaul (Avernian). led revolt against Caesar in 52 BC; Vergilia_F_N = mkN "Vergilia" ; -- [XSXCO] :: Pleiades (pl.), constellation, seven sisters; (rises early May, sets late Oct.); Vergilius_A = mkA "Vergilius" "Vergilia" "Vergilium" ; -- [XXXCO] :: Vergilius; (Roman gens); [L. Verginius => killed daughter led to revolt 449 BC]; Vergilius_M_N = mkN "Vergilius" ; -- [XXXCO] :: Virgil; (Roman gens name); [P. Vergilius Maro => poet Virgil 70-19 BC]; - Verres_M_N = mkN "Verres" "Verris " masculine ; -- [XXXDO] :: Verres; (Roman gentile name); [C. ~ => of Sicily, prosecuted by Cicero]; + Verres_M_N = mkN "Verres" "Verris" masculine ; -- [XXXDO] :: Verres; (Roman gentile name); [C. ~ => of Sicily, prosecuted by Cicero]; Verus_M_N = mkN "Verus" ; -- [DLIDZ] :: Verus; (Emperor Lucius Verus 161-169); Vespasianus_M_N = mkN "Vespasianus" ; -- [CLIBO] :: Vespasian; (Tiberius Flavius Vespasianus, Emperor, 69-79 AD); Vesta_F_N = mkN "Vesta" ; -- [XEXDL] :: Vesta; (goddess of flocks/herds and of hearth/household); (child of Saturn+Ops); Vestalis_A = mkA "Vestalis" "Vestalis" "Vestale" ; -- [XEXEC] :: Vestal, of Vesta; (festival 9 June); - Vestalis_F_N = mkN "Vestalis" "Vestalis " feminine ; -- [XEXEC] :: Vestal, Vestal virgin, priestess of Vesta; - Vinal_N_N = mkN "Vinal" "Vinalis " neuter ; -- [XXXDX] :: wine-festivals (pl.) (on 22 April and 19-20 of August); + Vestalis_F_N = mkN "Vestalis" "Vestalis" feminine ; -- [XEXEC] :: Vestal, Vestal virgin, priestess of Vesta; + Vinal_N_N = mkN "Vinal" "Vinalis" neuter ; -- [XXXDX] :: wine-festivals (pl.) (on 22 April and 19-20 of August); Vincentius_M_N = mkN "Vincentius" ; -- [DEXFF] :: Vincent; (Bishop of Cartenna, friend of St. Augustine of Hippo); Vitellius_M_N = mkN "Vitellius" ; -- [CLIEO] :: Vitellius (Emperor, 69 AD, year of the 4 Emperors); Volcanus_M_N = mkN "Volcanus" ; -- [XXXDX] :: Vulcan, god of fire; fire; Vulcanus_M_N = mkN "Vulcanus" ; -- [XXXDX] :: Vulcan, god of fire; fire; Wormacia_F_N = mkN "Wormacia" ; -- [GXGET] :: Worms; - Xeres_M_N = mkN "Xeres" "Xeris " masculine ; -- [XXPCO] :: Xerxes; (son of Darius, King of Persia 485-465 BC); (invaded Greece 480 BC); - Xerxes_M_N = mkN "Xerxes" "Xerxis " masculine ; -- [XXPCO] :: Xerxes; (son of Darius, King of Persia 485-465 BC); (invaded Greece 480 BC); - 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); + Xeres_M_N = mkN "Xeres" "Xeris" masculine ; -- [XXPCO] :: Xerxes; (son of Darius, King of Persia 485-465 BC); (invaded Greece 480 BC); + Xerxes_M_N = mkN "Xerxes" "Xerxis" masculine ; -- [XXPCO] :: Xerxes; (son of Darius, King of Persia 485-465 BC); (invaded Greece 480 BC); + 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); - 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); + 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; + 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); - abactus_M_N = mkN "abactus" "abactus " masculine ; -- [XAXEO] :: cattle thieving, stealing of cattle, rustling; + abactus_M_N = mkN "abactus" "abactus" masculine ; -- [XAXEO] :: cattle thieving, stealing of cattle, rustling; abaculus_M_N = mkN "abaculus" ; -- [ETXFS] :: tessera/small cube of colored glass for ornamental pavements/wall mosaics; abacus_M_N = mkN "abacus" ; -- [XXXCO] :: |counting-board; side-board; slab table; panel; square stone on top of column; abaestuo_V = mkV "abaestuare" ; -- [DXXFS] :: wave down; hang down richly (poet.); abagmentum_N_N = mkN "abagmentum" ; -- [DBXFS] :: means for obtaining abortion?; - abalienatio_F_N = mkN "abalienatio" "abalienationis " feminine ; -- [XLXDO] :: transfer of property (legal), sale; cession; alienation; + abalienatio_F_N = mkN "abalienatio" "abalienationis" feminine ; -- [XLXDO] :: transfer of property (legal), sale; cession; alienation; abalienatus_A = mkA "abalienatus" "abalienata" "abalienatum" ; -- [XXXDO] :: unfriendly, estranged; dead/mortified (medical, of tissues); 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?; abavia_F_N = mkN "abavia" ; -- [XXXEO] :: ancestress; great-great grandmother; abavunculus_M_N = mkN "abavunculus" ; -- [XXXEO] :: great-great-great-great uncle; remote ancestor; abavus_M_N = mkN "abavus" ; -- [XXXCO] :: ancestor, forefather; great-great grandfather, grandfather's grandfather; - abax_M_N = mkN "abax" "abacis " masculine ; -- [DXXFS] :: counting-board; side-board; slab table; panel; square stone on top of column; - abbas_M_N = mkN "abbas" "abbatis " masculine ; -- [EEXCE] :: abbot; head of an ecclesiastical community; father; any respected monk (early); + abax_M_N = mkN "abax" "abacis" masculine ; -- [DXXFS] :: counting-board; side-board; slab table; panel; square stone on top of column; + abbas_M_N = mkN "abbas" "abbatis" masculine ; -- [EEXCE] :: abbot; head of an ecclesiastical community; father; any respected monk (early); abbatia_F_N = mkN "abbatia" ; -- [EEXCE] :: abbey, monastery; 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; 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; + 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; abbrevio_V2 = mkV2 (mkV "abbreviare") ; -- [EXXCE] :: shorten, cut off; abbreviate, abstract; epitomize (Souter); break off; weaken; abbrocamentum_N_N = mkN "abbrocamentum" ; -- [FXXEQ] :: abbrochment, forestalling market/fair (buying before fair then retailing OED); - abdicatio_F_N = mkN "abdicatio" "abdicationis " feminine ; -- [XLXDO] :: renunciation; disowning/disinheriting (son); resignation/abdication (office); + abdicatio_F_N = mkN "abdicatio" "abdicationis" feminine ; -- [XLXDO] :: renunciation; disowning/disinheriting (son); resignation/abdication (office); abdicative_Adv = mkAdv "abdicative" ; -- [DXXES] :: negatively; abdicativus_A = mkA "abdicativus" "abdicativa" "abdicativum" ; -- [DXXES] :: negative; - abdicatrix_F_N = mkN "abdicatrix" "abdicatricis " feminine ; -- [DXXFS] :: renouncer (female); she who renounces/disclaims something; + 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 "abdicere" "abdico" "abdixi" "abdictus ") ; -- [XLXEO] :: be against, reject; withhold (someone's right); forbid by unfavorable omen; + 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; + 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.); + 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; abecedarius_A = mkA "abecedarius" "abecedaria" "abecedarium" ; -- [DXXFS] :: alphabetical; belonging to the alphabet; @@ -1197,10 +1197,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat abeo_V = mkV "abire" ; -- [XXXAO] :: depart, go away; go off, go forth; pass away, die, disappear; be changed; abequito_V = mkV "abequitare" ; -- [XXXEO] :: ride away; aberceo_V2 = mkV2 (mkV "abercere") ; -- [XXXEO] :: keep away; forbid; - aberratio_F_N = mkN "aberratio" "aberrationis " feminine ; -- [XXXEO] :: diversion, relief; + 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); - abfluo_V = mkV "abfluere" "abfluo" "abfluxi" nonExist ; -- [XXXEO] :: flow/stream/issue (from); flow away; be abundant, abound (in w/ABL); + 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; @@ -1208,97 +1208,97 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; - abies_F_N = mkN "abies" "abietis " feminine ; -- [XAXBO] :: fir tree/wood; white/silver fir, spruce; thing of fir, ship, spear; sea weed; + abies_F_N = mkN "abies" "abietis" feminine ; -- [XAXBO] :: fir tree/wood; white/silver fir, spruce; thing of fir, ship, spear; sea weed; abietarius_A = mkA "abietarius" "abietaria" "abietarium" ; -- [XAXEO] :: of/pertaining to/concerned with timber or fir/deal; abietarius_M_N = mkN "abietarius" ; -- [XAXEO] :: timber merchant; carpenter, joiner; abiga_F_N = mkN "abiga" ; -- [DBXFS] :: plant which has the power of producing abortion; - abigeator_M_N = mkN "abigeator" "abigeatoris " masculine ; -- [DAXES] :: cattle stealer/thief, rustler; - abigeatus_M_N = mkN "abigeatus" "abigeatus " masculine ; -- [XAXEO] :: cattle stealing, rustling; + 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; + 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; + abitio_F_N = mkN "abitio" "abitionis" feminine ; -- [XXXDO] :: departure; going away, departing; abito_V = mkV "abitare" ; -- [XXXFC] :: go away, depart; - abitus_M_N = mkN "abitus" "abitus " masculine ; -- [XXXCO] :: departure, removal; going away; way out, exit, outlet, passage out, egress; + abitus_M_N = mkN "abitus" "abitus" masculine ; -- [XXXCO] :: departure, removal; going away; way out, exit, outlet, passage out, egress; 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; + 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; 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; + 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; + 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; - ablactatio_F_N = mkN "ablactatio" "ablactationis " feminine ; -- [DEXES] :: act/process of weaning a child; + ablactatio_F_N = mkN "ablactatio" "ablactationis" feminine ; -- [DEXES] :: act/process of weaning a child; ablacto_V = mkV "ablactare" ; -- [EXXCE] :: wean; ablacuo_V = mkV "ablacuare" ; -- [XAXEO] :: loosen/weed the soil at the roots (of trees); ablacuo_V2 = mkV2 (mkV "ablacuare") ; -- [XAXEO] :: loosen/weed the soil at the roots (of trees); - ablaqueatio_F_N = mkN "ablaqueatio" "ablaqueationis " feminine ; -- [XAXEO] :: act/process of loosening/weeding soil at base/roots of a tree; + ablaqueatio_F_N = mkN "ablaqueatio" "ablaqueationis" feminine ; -- [XAXEO] :: act/process of loosening/weeding soil at base/roots of a tree; ablaqueo_V2 = mkV2 (mkV "ablaqueare") ; -- [XAXEO] :: loosen/weed the soil at the roots (of trees); - ablatio_F_N = mkN "ablatio" "ablationis " feminine ; -- [DEXES] :: removal, taking away; + ablatio_F_N = mkN "ablatio" "ablationis" feminine ; -- [DEXES] :: removal, taking away; ablativus_A = mkA "ablativus" "ablativa" "ablativum" ; -- [XGXEO] :: ablative (gram.); ablativus_M_N = mkN "ablativus" ; -- [XGXEO] :: ablative case (with or without casus) (gram.); - ablator_M_N = mkN "ablator" "ablatoris " masculine ; -- [XXXEE] :: one who takes away/removes; - ablegatio_F_N = mkN "ablegatio" "ablegationis " feminine ; -- [XXXEO] :: dispatch, sending away/off; dispatch on a duty; + ablator_M_N = mkN "ablator" "ablatoris" masculine ; -- [XXXEE] :: one who takes away/removes; + 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; + 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; + 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; abmatertera_F_N = mkN "abmatertera" ; -- [XXXEO] :: great-great-great aunt (mother's side); abnato_V = mkV "abnatare" ; -- [XXXEO] :: swim away from; swim off; - abnegatio_F_N = mkN "abnegatio" "abnegationis " feminine ; -- [EXXCE] :: denial; + abnegatio_F_N = mkN "abnegatio" "abnegationis" feminine ; -- [EXXCE] :: denial; abnegativus_A = mkA "abnegativus" "abnegativa" "abnegativum" ; -- [EXXCE] :: negative; - abnegator_M_N = mkN "abnegator" "abnegatoris " masculine ; -- [EXXCE] :: denier, one who denies; + abnegator_M_N = mkN "abnegator" "abnegatoris" masculine ; -- [EXXCE] :: denier, one who denies; abnego_V2 = mkV2 (mkV "abnegare") ; -- [XXXCO] :: deny; decline (to), refuse, reject; refuse to give, withhold (what is due); - abnepos_M_N = mkN "abnepos" "abnepotis " masculine ; -- [XXXCO] :: great-great grandson; indefinitely distant descendent; - abneptis_F_N = mkN "abneptis" "abneptis " feminine ; -- [XXXEO] :: great-great granddaughter; indefinitely distant female descendent; + abnepos_M_N = mkN "abnepos" "abnepotis" masculine ; -- [XXXCO] :: great-great grandson; indefinitely distant descendent; + abneptis_F_N = mkN "abneptis" "abneptis" feminine ; -- [XXXEO] :: great-great granddaughter; indefinitely distant female descendent; abnocto_V = mkV "abnoctare" ; -- [XXXEO] :: spend the night out, stay away all night; spend the night away from Rome; abnodo_V2 = mkV2 (mkV "abnodare") ; -- [DAXFS] :: cut off knots; clear trees of knots; abnormalis_A = mkA "abnormalis" "abnormalis" "abnormale" ; -- [FXXEM] :: abnormal; abnormis_A = mkA "abnormis" "abnormis" "abnorme" ; -- [XSXEL] :: of/belonging to no school (of philosophy); deviating from the rule; irregular; 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; + 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; + 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; + 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; + 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; abominabilis_A = mkA "abominabilis" "abominabilis" "abominabile" ; -- [EXXCE] :: detestable, hateful, abominable; worthy of destruction; abominamentum_N_N = mkN "abominamentum" ; -- [DXXFS] :: abomination, detestable thing; abominandus_A = mkA "abominandus" "abominanda" "abominandum" ; -- [XXXCO] :: ill-omened, of evil omen; detestable, odious; execrable, abominable; abominanter_Adv = mkAdv "abominanter" ; -- [DXXFS] :: abominably, detestably; - abominatio_F_N = mkN "abominatio" "abominationis " feminine ; -- [EXXCE] :: aversion, detestation, loathing; + abominatio_F_N = mkN "abominatio" "abominationis" feminine ; -- [EXXCE] :: aversion, detestation, loathing; abominatus_A = mkA "abominatus" "abominata" "abominatum" ; -- [XXXES] :: abominated/detested; accursed; abomino_V2 = mkV2 (mkV "abominare") ; -- [BXXFS] :: avert; (seek to) avert (omen/eventuality) (by prayer); loathe, detest, abhor; 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); + 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_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; @@ -1306,86 +1306,86 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat abortivus_M_N = mkN "abortivus" ; -- [XBXCO] :: one prematurely born; one addled; aborto_V = mkV "abortare" ; -- [XAXFO] :: cast its young (beast) (give birth prematurely); abortum_N_N = mkN "abortum" ; -- [DBXES] :: miscarriage; premature/untimely birth; abortion; dead fetus; getting abortion; - abortus_M_N = mkN "abortus" "abortus " masculine ; -- [XBXCO] :: miscarriage; premature/untimely birth; abortion; dead fetus; getting abortion; + 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; + 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; + 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; + 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); + 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; + 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; + 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; + 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.); 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; + 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; + 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; 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; + 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; + absconsio_F_N = mkN "absconsio" "absconsionis" feminine ; -- [EXXCE] :: shelter; absconsus_A = mkA "absconsus" "absconsa" "absconsum" ; -- [EXXCE] :: hidden, secret, concealed, unknown; - absegmen_N_N = mkN "absegmen" "absegminis " neuter ; -- [XXXFO] :: piece/slice/hunk of meat, collop; morsel, portion, lump, mouthful, gobbet; + absegmen_N_N = mkN "absegmen" "absegminis" neuter ; -- [XXXFO] :: piece/slice/hunk of meat, collop; morsel, portion, lump, mouthful, gobbet; absens_A = mkA "absens" "absentis"; -- [XXXBO] :: absent, missing, away, gone; physically elsewhere (things), non-existent; absenthium_N_N = mkN "absenthium" ; -- [XXXEO] :: wormwood; absinthe, infusion/tincture of wormwood (often mixed with honey); absentia_F_N = mkN "absentia" ; -- [XXXCO] :: absence; absence form Rome/duty; non-appearance in court; lack; - absentio_F_N = mkN "absentio" "absentionis " feminine ; -- [DXXFS] :: holding back, restraining; + absentio_F_N = mkN "absentio" "absentionis" feminine ; -- [DXXFS] :: holding back, restraining; absentivus_A = mkA "absentivus" "absentiva" "absentivum" ; -- [XXXFS] :: long absent; absento_V2 = mkV2 (mkV "absentare") ; -- [XXXES] :: send away, cause one to be absent; be absent; absida_F_N = mkN "absida" ; -- [FEXDE] :: |apse, apsis; (arched/domed part of building, at end of choir/nave of church); 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); + 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; + 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; + 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); absolute_Adv =mkAdv "absolute" "absolutius" "absolutissime" ; -- [XXXCO] :: completely, absolutely; perfectly; without qualification, simply, unreservedly; - absolutio_F_N = mkN "absolutio" "absolutionis " feminine ; -- [XXXCO] :: finishing, completion; acquittal, release (obligat.); perfection; completeness; + absolutio_F_N = mkN "absolutio" "absolutionis" feminine ; -- [XXXCO] :: finishing, completion; acquittal, release (obligat.); perfection; completeness; absolutismus_M_N = mkN "absolutismus" ; -- [GXXEK] :: absolutism; 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; + 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; absonus_A = mkA "absonus" "absona" "absonum" ; -- [XXXCO] :: harsh/discordant/inharmonious; jarring; inconsistent; unsuitable, in bad taste; absorbeo_V2 = mkV2 (mkV "absorbere") ; -- [XXXDX] :: devour; overwhelm; swallow up/engulf, submerge; absorb, suck in; import; dry up; - absorptio_F_N = mkN "absorptio" "absorptionis " feminine ; -- [XXXFS] :: drink, beverage; swallowing (Latham); - absortio_F_N = mkN "absortio" "absortionis " feminine ; -- [EWXEP] :: victory, overwhelming; + 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; + 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; @@ -1393,68 +1393,68 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat abstinentia_F_N = mkN "abstinentia" ; -- [XXXBO] :: abstinence; fasting; moderation, self control, restraint; integrity; parsimony; abstineo_V = mkV "abstinere" ; -- [XXXAO] :: withhold, keep away/clear; abstain, fast; refrain (from); avoid; keep hands of; absto_V = mkV "abstare" ; -- [XXXCO] :: stand at a distance, stand off; keep at a distance; - abstractio_F_N = mkN "abstractio" "abstractionis " feminine ; -- [DXXFS] :: separation; + 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; + 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; + abstrusio_F_N = mkN "abstrusio" "abstrusionis" feminine ; -- [DXXFS] :: removing, concealing; 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; + 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; + absurditas_F_N = mkN "absurditas" "absurditatis" feminine ; -- [FXXEE] :: absurdity, incongruity, nonsense; absurdus_A = mkA "absurdus" "absurda" "absurdum" ; -- [XXXBO] :: out of tune, discordant; absurd, nonsensical, out of place; awkward, uncouth; absus_M_N = mkN "absus" ; -- [XXXEO] :: wad (of wool); absynthium_N_N = mkN "absynthium" ; -- [XXXEO] :: wormwood; absinthe, infusion/tincture of wormwood (often mixed with honey); abundans_A = mkA "abundans" "abundantis"; -- [XXXBO] :: abundant; overflowing; abounding, copious, in large measure; overdone; rich; abundanter_Adv =mkAdv "abundanter" "abundantius" "abundantissime" ; -- [XXXBO] :: abundantly; profusely, copiously; on a lavish scale; abundantia_F_N = mkN "abundantia" ; -- [XXXBO] :: abundance, plenty; riches; fullness; overflow, excess; discharge (of blood); - abundatio_F_N = mkN "abundatio" "abundationis " feminine ; -- [XXXEO] :: overflowing; abundance; overflow; + abundatio_F_N = mkN "abundatio" "abundationis" feminine ; -- [XXXEO] :: overflowing; abundance; overflow; abunde_Adv = mkAdv "abunde" ; -- [XXXBO] :: abundantly; in profusion/abundance; more than enough; amply, exceedingly, very; abundo_V = mkV "abundare" ; -- [XXXAO] :: abound (in), have in large measure; overdo, exceed; overflow; be rich/numerous; abundus_A = mkA "abundus" "abunda" "abundum" ; -- [XXXFO] :: having plenty of water; copious (L+S, Late Latin); - abusio_F_N = mkN "abusio" "abusionis " feminine ; -- [XGXCO] :: use of wrong synonym; catachresis, loose/improper use of a word/term/metaphor; + abusio_F_N = mkN "abusio" "abusionis" feminine ; -- [XGXCO] :: use of wrong synonym; catachresis, loose/improper use of a word/term/metaphor; 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; + 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_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; + 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 = 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); 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); + 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]; - acanthillis_F_N = mkN "acanthillis" "acanthillidis " feminine ; -- [XAXFS] :: wild asparagus; + acanthillis_F_N = mkN "acanthillis" "acanthillidis" feminine ; -- [XAXFS] :: wild asparagus; acanthinus_A = mkA "acanthinus" "acanthina" "acanthinum" ; -- [XAXDO] :: of/resembling bear's-foot/hellbore plant; (gum) arabic; of/made of cotton; - acanthion_N_N = mkN "acanthion" "acanthii " neuter ; -- [XAXNO] :: species of cotton plant or thistle; cotton thistle; - acanthis_F_N = mkN "acanthis" "acanthidis " feminine ; -- [XAXCO] :: small song-bird (thistle/gold finch L+S); groundsel (plant Senecio vulgaris); + acanthion_N_N = mkN "acanthion" "acanthii" neuter ; -- [XAXNO] :: species of cotton plant or thistle; cotton thistle; + acanthis_F_N = mkN "acanthis" "acanthidis" feminine ; -- [XAXCO] :: small song-bird (thistle/gold finch L+S); groundsel (plant Senecio vulgaris); acanthius_A = mkA "acanthius" "acanthia" "acanthium" ; -- [XAXFO] :: made from some species of cotton plant; - acanthos_M_N = mkN "acanthos" "acanthi " masculine ; -- [XAXCO] :: bear's-foot, (black) hellbore (plant); gum arabic tree/wood; + acanthos_M_N = mkN "acanthos" "acanthi" masculine ; -- [XAXCO] :: bear's-foot, (black) hellbore (plant); gum arabic tree/wood; acanthus_M_N = mkN "acanthus" ; -- [XAXCO] :: bear's-foot, (black) hellbore (plant); gum arabic tree/wood; - acanthyllis_F_N = mkN "acanthyllis" "acanthyllidis " feminine ; -- [XAXNO] :: small song-bird; + acanthyllis_F_N = mkN "acanthyllis" "acanthyllidis" feminine ; -- [XAXNO] :: small song-bird; acanus_M_N = mkN "acanus" ; -- [XAXNO] :: pine thistle; acapnos_A = mkA "acapnos" "acapnos" "acapnon" ; -- [XAXES] :: obtained without smoke (honey); burning without smoke (wood); smokeless; acapnus_A = mkA "acapnus" "acapna" "acapnum" ; -- [XAXEO] :: obtained without smoke (honey); burning without smoke (wood); smokeless; acarna_F_N = mkN "acarna" ; -- [XAXFO] :: edible sea fish; - acarne_F_N = mkN "acarne" "acarnes " feminine ; -- [XAXFO] :: edible sea fish; + acarne_F_N = mkN "acarne" "acarnes" feminine ; -- [XAXFO] :: edible sea fish; acarus_M_N = mkN "acarus" ; -- [GXXEK] :: mite; acatalecticus_A = mkA "acatalecticus" "acatalectica" "acatalecticum" ; -- [DPXFS] :: verse in which no syllable is wanting in the last foot (opp. catalecticus); acatalectus_A = mkA "acatalectus" "acatalecta" "acatalectum" ; -- [DPXFS] :: verse in which no syllable is wanting in the last foot (opp. catalectus); acatalepsia_F_N = mkN "acatalepsia" ; -- [FXXFM] :: scepticism; acatholice_Adv = mkAdv "acatholice" ; -- [FEXFE] :: non-catholicly, in non-catholic manner; acatholicus_A = mkA "acatholicus" "acatholica" "acatholicum" ; -- [FEXFE] :: non-catholic; - acation_N_N = mkN "acation" "acatii " neuter ; -- [XWHEO] :: kind of light Greek sailing boat; large sail; + acation_N_N = mkN "acation" "acatii" neuter ; -- [XWHEO] :: kind of light Greek sailing boat; large sail; acatium_N_N = mkN "acatium" ; -- [XWHES] :: kind of light Greek sailing boat; large sail; acatus_F_N = mkN "acatus" ; -- [XWXFS] :: light vessel/boat; acaunumarga_F_N = mkN "acaunumarga" ; -- [XXXNO] :: red marl (clayey limestone); (fertilizer used by Celts in Gaul/Britain); @@ -1462,134 +1462,134 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat acaustus_A = mkA "acaustus" "acausta" "acaustum" ; -- [XXXNS] :: incombustible; 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; + 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; + 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; + 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; + accensus_M_N = mkN "accensus" "accensus" masculine ; -- [XXXNO] :: lighting; kindling, setting on fire; accentiuncula_F_N = mkN "accentiuncula" ; -- [XGXFO] :: accent, intonation; 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; + 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; accepta_F_N = mkN "accepta" ; -- [XLXEO] :: allotment, portion of land assigned to one person; 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; + acceptator_M_N = mkN "acceptator" "acceptatoris" masculine ; -- [DEXFS] :: one who accepts/approves; avenue/access/passage for admittance of the people; 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; + 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; - acceptor_M_N = mkN "acceptor" "acceptoris " masculine ; -- [XXXFO] :: receiver; collector; believer, one who accepts as true; type of hawk; + acceptor_M_N = mkN "acceptor" "acceptoris" masculine ; -- [XXXFO] :: receiver; collector; believer, one who accepts as true; type of hawk; 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; + 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; 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; + 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 + 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; - accessio_F_N = mkN "accessio" "accessionis " feminine ; -- [XXXAO] :: approach; increase, bonus; accessory; attack, onset (fever, rage); fit; + accessibilitas_F_N = mkN "accessibilitas" "accessibilitatis" feminine ; -- [DXXES] :: accessibility; + accessio_F_N = mkN "accessio" "accessionis" feminine ; -- [XXXAO] :: approach; increase, bonus; accessory; attack, onset (fever, rage); fit; accessito_V = mkV "accessitare" ; -- [XXXFO] :: approach repeatedly; keep on coming; accessorie_Adv = mkAdv "accessorie" ; -- [FEXFE] :: assessorily, in assessory/supplementary/adjunct manner; accessorius_A = mkA "accessorius" "accessoria" "accessorium" ; -- [FEXEE] :: assessory, adjunct; - accessus_M_N = mkN "accessus" "accessus " masculine ; -- [XXXBO] :: approach, arrival; entry, admittance, audience; hostile approach/attack; onset; - accidens_N_N = mkN "accidens" "accidentis " neuter ; -- [XXXCO] :: accidental happening, chance event, contingency; accident, circumstance; + accessus_M_N = mkN "accessus" "accessus" masculine ; -- [XXXBO] :: approach, arrival; entry, admittance, audience; hostile approach/attack; onset; + 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; - accido_V2 = mkV2 (mkV "accidere" "accido" "accidi" "accisus ") ; -- [XXXCO] :: cut, cut into/down/up, hack, hew, fell; overthrow, destroy; cut short; weaken; + 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); - accingo_V2 = mkV2 (mkV "accingere" "accingo" "accinxi" "accinctus ") ; -- [XXXAO] :: gird on or about, surround; equip, provide (with); get ready, prepare (for); + 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); + 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; accipitro_V2 = mkV2 (mkV "accipitrare") ; -- [XAXFO] :: tear, rend (like a hawk); - accitio_F_N = mkN "accitio" "accitionis " feminine ; -- [DXXFS] :: calling, summoning; + accitio_F_N = mkN "accitio" "accitionis" feminine ; -- [DXXFS] :: calling, summoning; accitus_A = mkA "accitus" "accita" "accitum" ; -- [XXXEO] :: imported, brought from abroad; - accitus_M_N = mkN "accitus" "accitus " masculine ; -- [XXXEO] :: summons, call; - acclamatio_F_N = mkN "acclamatio" "acclamationis " feminine ; -- [XXXCO] :: acclamation, shout (of comment/approval/disapproval); crying against; brawling; + accitus_M_N = mkN "accitus" "accitus" masculine ; -- [XXXEO] :: summons, call; + acclamatio_F_N = mkN "acclamatio" "acclamationis" feminine ; -- [XXXCO] :: acclamation, shout (of comment/approval/disapproval); crying against; brawling; acclamo_V = mkV "acclamare" ; -- [XXXCO] :: shout (at), cry out against, protest; shout approval, applaud; acclaro_V2 = mkV2 (mkV "acclarare") ; -- [XXXFO] :: make clear, reveal, make manifest; acclinis_A = mkA "acclinis" "acclinis" "accline" ; -- [XXXCO] :: leaning/resting (on/against); sloping, inclined; disposed/inclined (to); acclino_V2 = mkV2 (mkV "acclinare") ; -- [XXXCO] :: lay down, rest (on) (w/DAT), lean against/towards, incline (to); - acclive_N_N = mkN "acclive" "acclivis " neuter ; -- [XXXEO] :: upward slope; + acclive_N_N = mkN "acclive" "acclivis" neuter ; -- [XXXEO] :: upward slope; acclivis_A = mkA "acclivis" "acclivis" "acclive" ; -- [XXXCO] :: rising, sloping/inclining upward, ascending, up hill; steep; - acclivitas_F_N = mkN "acclivitas" "acclivitatis " feminine ; -- [XXXEO] :: slope, ascent, upward inclination, steepness; + 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; + 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; + 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; + accommodatio_F_N = mkN "accommodatio" "accommodationis" feminine ; -- [XXXEO] :: adjustment, willingness to oblige, complaisance; fitting, adapting, adaptation; 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; + accomodatio_F_N = mkN "accomodatio" "accomodationis" feminine ; -- [XXXEO] :: adjustment, willingness to oblige, complaisance; fitting, adapting, adaptation; 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; - accordeon_N_N = mkN "accordeon" "accordei " neuter ; -- [GDXEK] :: accordion; + accordeon_N_N = mkN "accordeon" "accordei" neuter ; -- [GDXEK] :: accordion; 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 = 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; + 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; - accubitatio_F_N = mkN "accubitatio" "accubitationis " feminine ; -- [DXXFS] :: reclining (at meals), lying (at table); - accubitio_F_N = mkN "accubitio" "accubitionis " feminine ; -- [XXXEO] :: reclining (at meals), lying (at table); couch (L+S); + accubitatio_F_N = mkN "accubitatio" "accubitationis" feminine ; -- [DXXFS] :: reclining (at meals), lying (at table); + accubitio_F_N = mkN "accubitio" "accubitionis" feminine ; -- [XXXEO] :: reclining (at meals), lying (at table); couch (L+S); accubitorius_A = mkA "accubitorius" "accubitoria" "accubitorium" ; -- [DXXFS] :: pertaining to reclining (at table); accubitum_N_N = mkN "accubitum" ; -- [DXXFS] :: couch for large number of guests to recline at meals (triclinium/3 seats); - accubitus_M_N = mkN "accubitus" "accubitus " masculine ; -- [XXXEO] :: reclining (at meals), lying (at table); couch/seat; place for a couch (L+S); + 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; + 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; + 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; accumulatrum_N_N = mkN "accumulatrum" ; -- [GTXEK] :: accumulator; 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); + accuratio_F_N = mkN "accuratio" "accurationis" feminine ; -- [XXXEO] :: accuracy, preciseness, care; carefulness, painstakingness; treatment (medical); 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; + 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; + accusatio_F_N = mkN "accusatio" "accusationis" feminine ; -- [XLXBO] :: accusation, inditement; act/occasion of accusation; rebuke, reproof; accusativus_A = mkA "accusativus" "accusativa" "accusativum" ; -- [XGXEO] :: accusative/objective (applied to case); accusativus_M_N = mkN "accusativus" ; -- [XGXEO] :: accusative/objective case; - accusator_M_N = mkN "accusator" "accusatoris " masculine ; -- [XLXCO] :: accuser, prosecutor at trial; plaintiff; informer; + accusator_M_N = mkN "accusator" "accusatoris" masculine ; -- [XLXCO] :: accuser, prosecutor at trial; plaintiff; informer; accusatorie_Adv = mkAdv "accusatorie" ; -- [XLXEO] :: accusingly; in the manner of a prosecutor/accuser; accusatorius_A = mkA "accusatorius" "accusatoria" "accusatorium" ; -- [XLXCO] :: of/belonging to a public/professional prosecutor; accusatory, denunciatory; - accusatrix_F_N = mkN "accusatrix" "accusatricis " feminine ; -- [XLXEO] :: prosecutor at trial (female), accuser, plaintiff; + accusatrix_F_N = mkN "accusatrix" "accusatricis" feminine ; -- [XLXEO] :: prosecutor at trial (female), accuser, plaintiff; accusito_V2 = mkV2 (mkV "accusitare") ; -- [XLXFO] :: accuse repeatedly; go on accusing; accuso_V = mkV "accusare" ; -- [XXXBO] :: accuse, blame, find fault, impugn; reprimand; charge (w/crime/offense); accusso_V = mkV "accussare" ; -- [FXXEZ] :: accuse, blame, find fault, impugn; reprimand; charge (w/crime/offense); @@ -1601,11 +1601,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; 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; + 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; - acerbitas_F_N = mkN "acerbitas" "acerbitatis " feminine ; -- [XXXCO] :: harshness, severity; bitterness, sourness, ill feeling; anguish, hardship; - acerbitudo_F_N = mkN "acerbitudo" "acerbitudinis " feminine ; -- [XXXFO] :: harshness, severity; bitterness, sourness, ill feeling; anguish, hardship; + acerbitas_F_N = mkN "acerbitas" "acerbitatis" feminine ; -- [XXXCO] :: harshness, severity; bitterness, sourness, ill feeling; anguish, hardship; + 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; acerbus_A = mkA "acerbus" ; -- [XXXAO] :: harsh, strident, bitter, sour; unripe, green, unfinished; grievous; gloomy; @@ -1614,25 +1614,25 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat acernus_A = mkA "acernus" "acerna" "acernum" ; -- [XAXCO] :: maple, of maple (wood); belonging to the maple tree; acerosus_A = mkA "acerosus" "acerosa" "acerosum" ; -- [XAXEO] :: having husks included (of flour/bread); acerra_F_N = mkN "acerra" ; -- [XXXCO] :: box or casket for incense; - acersecomes_M_N = mkN "acersecomes" "acersecomae " masculine ; -- [XXXEL] :: long-haired/unshorn youth; one ever youthful; young favorite/"fair-haired boy"; - acertas_F_N = mkN "acertas" "acertatis " feminine ; -- [XXXIO] :: sharpness, keenness; vehemence, force; severity; + acersecomes_M_N = mkN "acersecomes" "acersecomae" masculine ; -- [XXXEL] :: long-haired/unshorn youth; one ever youthful; young favorite/"fair-haired boy"; + acertas_F_N = mkN "acertas" "acertatis" feminine ; -- [XXXIO] :: sharpness, keenness; vehemence, force; severity; acerus_A = mkA "acerus" "acera" "acerum" ; -- [XAXFS] :: without wax; [mel ~ => honey flowing spontaneously from the comb]; acervalis_A = mkA "acervalis" "acervalis" "acervale" ; -- [XXXFO] :: characterized by piling up; by accumulation; - acervalis_M_N = mkN "acervalis" "acervalis " masculine ; -- [XXXFL] :: conclusion by accumulation; a piling up (of facts); + acervalis_M_N = mkN "acervalis" "acervalis" masculine ; -- [XXXFL] :: conclusion by accumulation; a piling up (of facts); acervatim_Adv = mkAdv "acervatim" ; -- [XXXCO] :: in heaps/piles; in large quantities/scale; briefly; summarily, without order; - acervatio_F_N = mkN "acervatio" "acervationis " feminine ; -- [XXXEO] :: heaping/piling together; accumulation; amassing; + acervatio_F_N = mkN "acervatio" "acervationis" feminine ; -- [XXXEO] :: heaping/piling together; accumulation; amassing; 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; + 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); acetarum_N_N = mkN "acetarum" ; -- [XXXNO] :: salad prepared with vinegar; something that is prepared with vinegar; acetasco_V2 = mkV2 (mkV "acetascare") ; -- [DXXFS] :: become sour/vinegary; acetosus_A = mkA "acetosus" "acetosa" "acetosum" ; -- [FXXEK] :: vinegar; acetum_N_N = mkN "acetum" ; -- [XXXCO] :: vinegar, sour wine; tang of vinegar; sourness of disposition; sharpness of wit; - achaemenis_F_N = mkN "achaemenis" "achaemenidis " feminine ; -- [XAXNO] :: plant alleged to have magical properties; + achaemenis_F_N = mkN "achaemenis" "achaemenidis" feminine ; -- [XAXNO] :: plant alleged to have magical properties; achantum_N_N = mkN "achantum" ; -- [DAXFS] :: kind of frankincense; achanum_N_N = mkN "achanum" ; -- [DAXFS] :: mute, stupid; disease of animals; acharis_A = mkA "acharis" "acharis" "achare" ; -- [EXHEP] :: unpleasant, disagreeable; ungrateful; @@ -1640,100 +1640,100 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat acharistum_N_N = mkN "acharistum" ; -- [XBXEO] :: eye salve; achariter_Adv = mkAdv "achariter" ; -- [EXHEP] :: unpleasantly, disagreeably; acharna_F_N = mkN "acharna" ; -- [XAXEO] :: edible sea fish; - acharne_F_N = mkN "acharne" "acharnes " feminine ; -- [XAXEO] :: edible sea fish; - achates_F_N = mkN "achates" "achatae " feminine ; -- [XXXEO] :: agate; - achates_M_N = mkN "achates" "achatae " masculine ; -- [XXXEO] :: agate; + acharne_F_N = mkN "acharne" "acharnes" feminine ; -- [XAXEO] :: edible sea fish; + achates_F_N = mkN "achates" "achatae" feminine ; -- [XXXEO] :: agate; + achates_M_N = mkN "achates" "achatae" masculine ; -- [XXXEO] :: agate; acheta_M_N = mkN "acheta" ; -- [XAXNO] :: male cicada, the "chirper"; - achetas_M_N = mkN "achetas" "achetae " masculine ; -- [XAXNO] :: male cicada, the "chirper"; - achilleos_F_N = mkN "achilleos" "achillei " feminine ; -- [XAXNS] :: medicinal plant (said to be discovered by Achilles); milfoil, yarrow; - achlis_F_N = mkN "achlis" "achlis " feminine ; -- [XAXNO] :: elk; moose; wild beast of the North; - achor_M_N = mkN "achor" "achoris " masculine ; -- [DBXFS] :: scab/scald (on the head); - achras_F_N = mkN "achras" "achradis " feminine ; -- [XAXFO] :: wild pear tree (Pirus amygdaliformis); - achynops_M_N = mkN "achynops" "achynopis " masculine ; -- [XAXNO] :: plant (species of Plantago?); + achetas_M_N = mkN "achetas" "achetae" masculine ; -- [XAXNO] :: male cicada, the "chirper"; + achilleos_F_N = mkN "achilleos" "achillei" feminine ; -- [XAXNS] :: medicinal plant (said to be discovered by Achilles); milfoil, yarrow; + achlis_F_N = mkN "achlis" "achlis" feminine ; -- [XAXNO] :: elk; moose; wild beast of the North; + achor_M_N = mkN "achor" "achoris" masculine ; -- [DBXFS] :: scab/scald (on the head); + achras_F_N = mkN "achras" "achradis" feminine ; -- [XAXFO] :: wild pear tree (Pirus amygdaliformis); + achynops_M_N = mkN "achynops" "achynopis" masculine ; -- [XAXNO] :: plant (species of Plantago?); acia_F_N = mkN "acia" ; -- [XXXEO] :: thread, yarn; acicula_F_N = mkN "acicula" ; -- [DXXFS] :: small pin (for a head-dress); - acidatas_F_N = mkN "acidatas" "acidatatis " feminine ; -- [DBXFS] :: sourness/acidity (of the stomach); + acidatas_F_N = mkN "acidatas" "acidatatis" feminine ; -- [DBXFS] :: sourness/acidity (of the stomach); acide_Adv =mkAdv "acide" "acidius" "acidissime" ; -- [XXXFO] :: unpleasantly; - aciditas_F_N = mkN "aciditas" "aciditatis " feminine ; -- [GXXEK] :: acidity; + 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; 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; + 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); + acinaces_M_N = mkN "acinaces" "acinacis" masculine ; -- [XWXEO] :: short sword (Persian); short saber; scimitar; (contrary to gender rule OLD); acinarius_A = mkA "acinarius" "acinaria" "acinarium" ; -- [XXXFO] :: designed for holding grapes; acinaticius_A = mkA "acinaticius" "acinaticia" "acinaticium" ; -- [XAXFO] :: prepared from dried grapes/raisins; - acinos_F_N = mkN "acinos" "acini " feminine ; -- [XAXNO] :: kind of basil; + acinos_F_N = mkN "acinos" "acini" feminine ; -- [XAXNO] :: kind of basil; acinosus_A = mkA "acinosus" "acinosa" "acinosum" ; -- [XAXNO] :: like/resembling grapes, of the vine; acinum_N_N = mkN "acinum" ; -- [XAXCO] :: grape; ivyberry or other small berry; pip, (grape) pit/seed; acinus_M_N = mkN "acinus" ; -- [XAXCO] :: grape; ivyberry or other small berry; pip, (grape) pit/seed; - acipenser_M_N = mkN "acipenser" "acipenseris " masculine ; -- [XAXCO] :: fish (sturgeon?) (esteemed dainty dish); - acipensis_M_N = mkN "acipensis" "acipensis " masculine ; -- [XAXES] :: fish (sturgeon?) (esteemed dainty dish); + acipenser_M_N = mkN "acipenser" "acipenseris" masculine ; -- [XAXCO] :: fish (sturgeon?) (esteemed dainty dish); + acipensis_M_N = mkN "acipensis" "acipensis" masculine ; -- [XAXES] :: fish (sturgeon?) (esteemed dainty dish); aciscularius_M_N = mkN "aciscularius" ; -- [XXXEO] :: worker with an adze; stone-cutter?; acistarium_N_N = mkN "acistarium" ; -- [EEXEE] :: monastery; acisulus_M_N = mkN "acisulus" ; -- [DXXFS] :: little adze; - aclassis_F_N = mkN "aclassis" "aclassis " feminine ; -- [XXXFO] :: tunic (over the shoulders, unstitched); + aclassis_F_N = mkN "aclassis" "aclassis" feminine ; -- [XXXFO] :: tunic (over the shoulders, unstitched); aclouthia_F_N = mkN "aclouthia" ; -- [FEXFE] :: Divine Office (in Eastern Rite Churches), liturgical rite; - aclys_F_N = mkN "aclys" "aclydis " feminine ; -- [XWXEL] :: small javelin with a strap; + aclys_F_N = mkN "aclys" "aclydis" feminine ; -- [XWXEL] :: small javelin with a strap; acna_F_N = mkN "acna" ; -- [XAXFS] :: measure/piece of land (120 feet square); acnua_F_N = mkN "acnua" ; -- [XAXEO] :: square actus, a measure of land 120 yards square; acoenonetus_A = mkA "acoenonetus" "acoenoneta" "acoenonetum" ; -- [XXXFS] :: lacking in common feelings; without common sense; acoenonoetus_A = mkA "acoenonoetus" "acoenonoeta" "acoenonoetum" ; -- [XXXFO] :: lacking in common feelings; without common sense; - acoetis_F_N = mkN "acoetis" "acoetis " feminine ; -- [XXXFO] :: wife; bed-fellow (L+S); + acoetis_F_N = mkN "acoetis" "acoetis" feminine ; -- [XXXFO] :: wife; bed-fellow (L+S); acolitus_M_N = mkN "acolitus" ; -- [EEXFV] :: acolyte; cleric in minor orders; (ostiarius/exorcista/subdiaconus/diaconus); acoluthus_M_N = mkN "acoluthus" ; -- [EEXFV] :: acolyte; cleric in minor orders; (ostiarius/exorcista/subdiaconus/diaconus); acolythus_M_N = mkN "acolythus" ; -- [EEXEE] :: acolyte; cleric in minor orders; (ostiarius/exorcista/subdiaconus/diaconus); acolytus_M_N = mkN "acolytus" ; -- [EEXEV] :: acolyte; cleric in minor orders; (ostiarius/exorcista/subdiaconus/diaconus); acona_F_N = mkN "acona" ; -- [XXXFS] :: pointed stones (pl.); aconiti_Adv = mkAdv "aconiti" ; -- [XXXFS] :: without labor, effortlessly; without dust (literally); - aconiton_N_N = mkN "aconiton" "aconiti " neuter ; -- [XAXCO] :: wolfbane, aconite (gnus Aconitum) (poisonous plant); aconite as a poison; + aconiton_N_N = mkN "aconiton" "aconiti" neuter ; -- [XAXCO] :: wolfbane, aconite (gnus Aconitum) (poisonous plant); aconite as a poison; aconitum_N_N = mkN "aconitum" ; -- [XAXCO] :: wolfbane, aconite (gnus Aconitum) (poisonous plant); aconite as a poison; - acontias_M_N = mkN "acontias" "acontiae " masculine ; -- [XXXNO] :: meteor resembling a dart in flight; quick-darting snake (L+S); + acontias_M_N = mkN "acontias" "acontiae" masculine ; -- [XXXNO] :: meteor resembling a dart in flight; quick-darting snake (L+S); acontizo_V = mkV "acontizare" ; -- [DWXFS] :: shoot a dart; spout/gush forth (blood); - acopos_F_N = mkN "acopos" "acopi " feminine ; -- [XBXNO] :: stone used to treat fatigue; + acopos_F_N = mkN "acopos" "acopi" feminine ; -- [XBXNO] :: stone used to treat fatigue; acopum_N_N = mkN "acopum" ; -- [XBXEO] :: salve used to treat fatigue or pain; - acor_M_N = mkN "acor" "acoris " masculine ; -- [XXXCO] :: bitter or tart flavor; sourness; tart/sour substance; - acorion_N_N = mkN "acorion" "acorii " neuter ; -- [XAXDO] :: sweet/yellow flag/iris or its root; butchers's broom/reed/rush or its root; + acor_M_N = mkN "acor" "acoris" masculine ; -- [XXXCO] :: bitter or tart flavor; sourness; tart/sour substance; + acorion_N_N = mkN "acorion" "acorii" neuter ; -- [XAXDO] :: sweet/yellow flag/iris or its root; butchers's broom/reed/rush or its root; acorna_F_N = mkN "acorna" ; -- [XAXNO] :: kind of thistle; - acoron_N_N = mkN "acoron" "acori " neuter ; -- [XAXDO] :: sweet/yellow flag/iris or its root; butchers's broom/reed/rush or its root; - acoros_F_N = mkN "acoros" "acori " feminine ; -- [XAXFS] :: sweet/yellow flag/iris or its root; butchers's broom/reed/rush or its root; + acoron_N_N = mkN "acoron" "acori" neuter ; -- [XAXDO] :: sweet/yellow flag/iris or its root; butchers's broom/reed/rush or its root; + acoros_F_N = mkN "acoros" "acori" feminine ; -- [XAXFS] :: sweet/yellow flag/iris or its root; butchers's broom/reed/rush or its root; 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); + 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; acra_F_N = mkN "acra" ; -- [XXXFS] :: promontory/headland; acratophorum_N_N = mkN "acratophorum" ; -- [XXXEO] :: vessel for scented/unmixed wine; - acredo_F_N = mkN "acredo" "acredinis " feminine ; -- [DXXFS] :: sharp/pungent taste; + acredo_F_N = mkN "acredo" "acredinis" feminine ; -- [DXXFS] :: sharp/pungent taste; acredula_F_N = mkN "acredula" ; -- [XAXFO] :: unknown bird/beast/animal; (thrush or owl? L+S); acriculus_A = mkA "acriculus" "acricula" "acriculum" ; -- [XXXFO] :: shrewd, acute; irritable, sharp, testy; acridium_N_N = mkN "acridium" ; -- [DAQFS] :: scammony (Convolvulus Scammonia); purgative resin from its tuber root; acrifolium_N_N = mkN "acrifolium" ; -- [DAXFS] :: unknown tree of ill omen; acrimonia_F_N = mkN "acrimonia" ; -- [XXXCO] :: acrimony; briskness; caustic/corrosive/pungent quality; indigestion; vigor; - acritas_F_N = mkN "acritas" "acritatis " feminine ; -- [XXXFO] :: sharpness, keenness; vehemence, force; severity; + acritas_F_N = mkN "acritas" "acritatis" feminine ; -- [XXXFO] :: sharpness, keenness; vehemence, force; severity; acriter_Adv =mkAdv "acriter" "acrius" "acerrime" ; -- [XXXBO] :: sharply, vigilantly, fiercely; severely, steadfastly; keenly, accurately; - acritudo_F_N = mkN "acritudo" "acritudinis " feminine ; -- [XXXDO] :: pungency, bitterness; keenness, energy, vigor; harshness, cruelty, fierceness; - acro_M_N = mkN "acro" "acronis " masculine ; -- [DXXFS] :: extremity; member of the body; stem of a plant; - acroama_N_N = mkN "acroama" "acroamatis " neuter ; -- [XXXDL] :: entertainment at table/reading/music, act; reader, actor, singer, clown; + acritudo_F_N = mkN "acritudo" "acritudinis" feminine ; -- [XXXDO] :: pungency, bitterness; keenness, energy, vigor; harshness, cruelty, fierceness; + acro_M_N = mkN "acro" "acronis" masculine ; -- [DXXFS] :: extremity; member of the body; stem of a plant; + acroama_N_N = mkN "acroama" "acroamatis" neuter ; -- [XXXDL] :: entertainment at table/reading/music, act; reader, actor, singer, clown; acroamatarius_A = mkA "acroamatarius" "acroamataria" "acroamatarium" ; -- [DDXFS] :: of/belonging/pertaining to a musical/reading entertainment; acroamaticus_A = mkA "acroamaticus" "acroamatica" "acroamaticum" ; -- [DDXFS] :: of/belonging/pertaining to a musical/reading entertainment; - acroasis_F_N = mkN "acroasis" "acroasis " feminine ; -- [XXXDO] :: public lecture; + acroasis_F_N = mkN "acroasis" "acroasis" feminine ; -- [XXXDO] :: public lecture; acroaticus_A = mkA "acroaticus" "acroatica" "acroaticum" ; -- [XXXEO] :: of/for lectures only; esoteric; - acrobates_M_N = mkN "acrobates" "acrobatae " masculine ; -- [XXXFO] :: acrobat; + 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; + acrochordon_F_N = mkN "acrochordon" "acrochordonis" feminine ; -- [XBXFS] :: 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); acrolithus_A = mkA "acrolithus" "acrolitha" "acrolithum" ; -- [XXXEO] :: having extremities of marble (statues - the rest in wood L+S); - acron_M_N = mkN "acron" "acronis " masculine ; -- [DXXFS] :: extremity; member of the body; stem of a plant; + acron_M_N = mkN "acron" "acronis" masculine ; -- [DXXFS] :: extremity; member of the body; stem of a plant; acropodium_N_N = mkN "acropodium" ; -- [XXXFO] :: base/pedestal of a statue; - acror_M_N = mkN "acror" "acroris " masculine ; -- [DXXES] :: pungency, bitterness; keenness, energy, vigor; harshness, cruelty, fierceness; + acror_M_N = mkN "acror" "acroris" masculine ; -- [DXXES] :: pungency, bitterness; keenness, energy, vigor; harshness, cruelty, fierceness; acroterium_N_N = mkN "acroterium" ; -- [XXXEO] :: projection; ornament at angle of a pediment; projection acting as breakwater; acrozymus_A = mkA "acrozymus" "acrozyma" "acrozymum" ; -- [DXXFS] :: slightly leavened; acrufolius_A = mkA "acrufolius" "acrufolia" "acrufolium" ; -- [XAXFO] :: having prickly leaves; made of holly/holly-wood; @@ -1742,22 +1742,22 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - acte_F_N = mkN "acte" "actes " feminine ; -- [XAXNO] :: dwarf-elder (Sambucus ebulus); - actinophoros_M_N = mkN "actinophoros" "actinophori " masculine ; -- [XAXNO] :: ray-bearing kind of shellfish; + acte_F_N = mkN "acte" "actes" feminine ; -- [XAXNO] :: dwarf-elder (Sambucus ebulus); + actinophoros_M_N = mkN "actinophoros" "actinophori" masculine ; -- [XAXNO] :: ray-bearing kind of shellfish; actinosus_A = mkA "actinosus" "actinosa" "actinosum" ; -- [DEXFS] :: glorious; (full of rays); - actio_F_N = mkN "actio" "actionis " feminine ; -- [XXXAO] :: act, action, activity, deed; incident;, plot (play); legal process, suit; plea; + actio_F_N = mkN "actio" "actionis" feminine ; -- [XXXAO] :: act, action, activity, deed; incident;, plot (play); legal process, suit; plea; actionarius_M_N = mkN "actionarius" ; -- [GXXEK] :: shareholder; actito_V2 = mkV2 (mkV "actitare") ; -- [XDXCO] :: act/plead frequently/repeatedly; take parts in play as actor, be actor in; actiuncula_F_N = mkN "actiuncula" ; -- [XLXFS] :: short judicial harangue; unimportant speech; active_Adv = mkAdv "active" ; -- [DGXFS] :: actively; (gram. like active verb); - activitas_F_N = mkN "activitas" "activitatis " feminine ; -- [FXXEE] :: activity, movement, action; + activitas_F_N = mkN "activitas" "activitatis" feminine ; -- [FXXEE] :: activity, movement, action; activus_A = mkA "activus" "activa" "activum" ; -- [XXXEO] :: active; practical; active (gram. mood); - actor_M_N = mkN "actor" "actoris " masculine ; -- [XAXCO] :: |drover, herdsman; wielder; [actor habenae => slinger]; + actor_M_N = mkN "actor" "actoris" masculine ; -- [XAXCO] :: |drover, herdsman; wielder; [actor habenae => slinger]; actorius_A = mkA "actorius" "actoria" "actorium" ; -- [DXXFS] :: active; practical; active (mood) (gram.); - actrix_F_N = mkN "actrix" "actricis " feminine ; -- [XXXFO] :: stewardess; agent (female); plaintiff (female) (L+S); + actrix_F_N = mkN "actrix" "actricis" feminine ; -- [XXXFO] :: stewardess; agent (female); plaintiff (female) (L+S); actu_Adv = mkAdv "actu" ; -- [FXXFE] :: actually; actualis_A = mkA "actualis" "actualis" "actuale" ; -- [DXXFS] :: active, practical; actual; - actualitas_F_N = mkN "actualitas" "actualitatis " feminine ; -- [FXXFM] :: actuality; reality (Ecc); existence; + actualitas_F_N = mkN "actualitas" "actualitatis" feminine ; -- [FXXFM] :: actuality; reality (Ecc); existence; actualiter_Adv = mkAdv "actualiter" ; -- [DXXFS] :: actively; actuaria_F_N = mkN "actuaria" ; -- [XXXEO] :: fast passenger vessel with sails and oars; actuariola_F_N = mkN "actuariola" ; -- [XXXEO] :: small fast vessel (with sails and oars); row boat; barge; @@ -1769,77 +1769,77 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat actum_N_N = mkN "actum" ; -- [XLXBO] :: act, deed, transaction; acts (pl.), exploits; chronicles, (official) record; actuo_V2 = mkV2 (mkV "actuare") ; -- [FXXEE] :: implement; actuate; actuose_Adv = mkAdv "actuose" ; -- [XXXFO] :: actively, busily, energetically; passionately, eagerly; - actuositas_F_N = mkN "actuositas" "actuositatis " feminine ; -- [FXXFE] :: activity, movement, action; + actuositas_F_N = mkN "actuositas" "actuositatis" feminine ; -- [FXXFE] :: activity, movement, action; actuosus_A = mkA "actuosus" "actuosa" "actuosum" ; -- [XXXCO] :: active, busy, energetic, full of life; acting with extravagant gesture; - actus_M_N = mkN "actus" "actus " masculine ; -- [XAXBO] :: |right of way/road for cattle; path, cart-track; land measure (120 ft.); + actus_M_N = mkN "actus" "actus" masculine ; -- [XAXBO] :: |right of way/road for cattle; path, cart-track; land measure (120 ft.); actutum_Adv = mkAdv "actutum" ; -- [XXXCO] :: immediately, instantly; forthwith, without delay; acuarius_M_N = mkN "acuarius" ; -- [XXXIO] :: maker/seller of needles/pins; acueo_V = mkV "acuere" ; -- [FXXEK] :: accentuate; - acuitas_F_N = mkN "acuitas" "acuitatis " feminine ; -- [FXXDE] :: insight; sharpness, perception; + acuitas_F_N = mkN "acuitas" "acuitatis" feminine ; -- [FXXDE] :: insight; sharpness, perception; acula_F_N = mkN "acula" ; -- [XXXEO] :: small amount of water; small stream; little needle (L+S); aculeatus_A = mkA "aculeatus" "aculeata" "aculeatum" ; -- [XXXCO] :: prickly; stinging/sharp/barbed; subtle; inflicted by/having sting/spine/points; aculeolus_M_N = mkN "aculeolus" ; -- [XXXFS] :: little needle/pin; aculeus_M_N = mkN "aculeus" ; -- [XXXBO] :: sting, spine, thorn, prickle, point, spike; barb; pang, prick; sarcasm; - aculos_F_N = mkN "aculos" "aculi " feminine ; -- [XAXNO] :: acorn/fruit of the ilex (holm oak or evergreen oak) (poss. holly); - acumen_N_N = mkN "acumen" "acuminis " neuter ; -- [XXXBO] :: sharpened point, spur; sting; peak, promontory; sharpness/cunning/acumen; fraud; + aculos_F_N = mkN "aculos" "aculi" feminine ; -- [XAXNO] :: acorn/fruit of the ilex (holm oak or evergreen oak) (poss. holly); + acumen_N_N = mkN "acumen" "acuminis" neuter ; -- [XXXBO] :: sharpened point, spur; sting; peak, promontory; sharpness/cunning/acumen; fraud; acuminarius_A = mkA "acuminarius" "acuminaria" "acuminarium" ; -- [XXXFS] :: good for sharpening; [mola ~ => stone for sharpening weapons]; 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); + 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); + 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); acupictura_F_N = mkN "acupictura" ; -- [FXXEE] :: embroidery; acupunctura_F_N = mkN "acupunctura" ; -- [GBXEK] :: acupuncture; - acus_F_N = mkN "acus" "acus " feminine ; -- [XXXBO] :: needle, pin; hair-pin; pipefish, needlefish; detail; husks/chaff (pl.); - acus_N_N = mkN "acus" "aceris " neuter ; -- [XAXCO] :: husks of grain/beans, chaff; + acus_F_N = mkN "acus" "acus" feminine ; -- [XXXBO] :: needle, pin; hair-pin; pipefish, needlefish; detail; husks/chaff (pl.); + acus_N_N = mkN "acus" "aceris" neuter ; -- [XAXCO] :: husks of grain/beans, chaff; acusticus_A = mkA "acusticus" "acustica" "acusticum" ; -- [GDXEK] :: acoustic; acutale_Adv = mkAdv "acutale" ; -- [FXXFE] :: somewhat sharply; pointedly; acutalis_A = mkA "acutalis" "acutalis" "acutale" ; -- [XXXFS] :: pointed; acutarus_A = mkA "acutarus" "acutara" "acutarum" ; -- [DXXFS] :: that sharpens instruments; acutatus_A = mkA "acutatus" "acutata" "acutatum" ; -- [DXXFS] :: sharpened; acute_Adv =mkAdv "acute" "acutius" "acutissime" ; -- [XXXCO] :: acutely, with intellectual penetration; shrilly; clearly (seeing), distinctly; - acutor_M_N = mkN "acutor" "acutoris " masculine ; -- [XXXFS] :: whetter, sharpener, one that sharpens; + acutor_M_N = mkN "acutor" "acutoris" masculine ; -- [XXXFS] :: whetter, sharpener, one that sharpens; acutule_Adv = mkAdv "acutule" ; -- [DXXFS] :: somewhat sharply; acutulus_A = mkA "acutulus" "acutula" "acutulum" ; -- [XXXEO] :: smart, clever; somewhat pointed; somewhat subtle (Cas); acutus_A = mkA "acutus" "acuta" "acutum" ; -- [XSXCO] :: of small radius; acute (angle); - acylos_F_N = mkN "acylos" "acyli " feminine ; -- [XAXNS] :: acorn of the holm-oak; + 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; - adadunephros_M_N = mkN "adadunephros" "adadunephri " masculine ; -- [XXXNS] :: precious stone; (Adad's - supreme god of Assyrians - kidney); + 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; + adadunephros_M_N = mkN "adadunephros" "adadunephri" masculine ; -- [XXXNS] :: precious stone; (Adad's - supreme god of Assyrians - kidney); adaequate_Adv = mkAdv "adaequate" ; -- [FXXEE] :: equally, to same extent; likewise; adequately; - adaequatio_F_N = mkN "adaequatio" "adaequationis " feminine ; -- [DXXFS] :: adjusting, adapting, making equal; + adaequatio_F_N = mkN "adaequatio" "adaequationis" feminine ; -- [DXXFS] :: adjusting, adapting, making equal; adaequatus_A = mkA "adaequatus" "adaequata" "adaequatum" ; -- [FXXEE] :: equal; adequate; adaeque_Adv = mkAdv "adaeque" ; -- [XXXCO] :: equally, to same extent; so much; also, likewise, in a like manner; adaequo_V = mkV "adaequare" ; -- [XXXBO] :: equalize, make equal in height, come up to level; compare (to); be equal; raze; - adaeratio_F_N = mkN "adaeratio" "adaerationis " feminine ; -- [XAXFO] :: calculation of the area of a piece of land; valuing, appraising (L+S); + adaeratio_F_N = mkN "adaeratio" "adaerationis" feminine ; -- [XAXFO] :: calculation of the area of a piece of land; valuing, appraising (L+S); adaero_V = mkV "adaerare" ; -- [XAXFO] :: calculate the area of a piece of land, appraise, value (in money), estimate; adaestuo_V = mkV "adaestuare" ; -- [XXXFS] :: rush, roar, boil up; adaggero_V2 = mkV2 (mkV "adaggerare") ; -- [XXXDO] :: heap (earth, etc.) up around/over; seethe, foam up; - adagio_F_N = mkN "adagio" "adagionis " feminine ; -- [XXXFO] :: proverb; adage; + adagio_F_N = mkN "adagio" "adagionis" feminine ; -- [XXXFO] :: proverb; adage; adagium_N_N = mkN "adagium" ; -- [XXXEO] :: proverb; adage; - adagnitio_F_N = mkN "adagnitio" "adagnitionis " feminine ; -- [DXXFS] :: knowledge; + adagnitio_F_N = mkN "adagnitio" "adagnitionis" feminine ; -- [DXXFS] :: knowledge; adalgidus_A = mkA "adalgidus" "adalgida" "adalgidum" ; -- [XXXES] :: chilly, very cold (climate); 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; 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; + 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; adamo_V2 = mkV2 (mkV "adamare") ; -- [XXXBO] :: fall in love/lust with; love passionately/adulterously; admire greatly; covet; 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; + 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); + adapertio_F_N = mkN "adapertio" "adapertionis" feminine ; -- [DXXFS] :: uncovering, revealing, disclosure; opening (of eyes/mouth) (Souter); adapertivus_A = mkA "adapertivus" "adapertiva" "adapertivum" ; -- [EXXFP] :: opening; adaptertus_A = mkA "adaptertus" "adapterta" "adaptertum" ; -- [XXXDO] :: open (doors, flowers), expanded; not sealed off (honey cells); adapto_V2 = mkV2 (mkV "adaptare") ; -- [XXXEO] :: adjust, modify; fit (to) (w/DAT); @@ -1847,259 +1847,259 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat adaquor_V = mkV "adaquari" ; -- [XXXFS] :: bring/procure water (for one's self); fetch water; 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; + 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; + 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; + adaugmen_N_N = mkN "adaugmen" "adaugminis" neuter ; -- [XXXFO] :: increase, additional quantity; augmentation; adbello_V2 = mkV2 (mkV "adbellare") ; -- [DWXFS] :: make war upon; 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; + 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; adbreviatus_A = mkA "adbreviatus" "adbreviata" "adbreviatum" ; -- [EXXCW] :: abridged, shortened, cut off; straitened, contracted, narrowed; abbreviated; 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; + 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; - adcessibilitas_F_N = mkN "adcessibilitas" "adcessibilitatis " feminine ; -- [DXXES] :: accessibility; - adcessio_F_N = mkN "adcessio" "adcessionis " feminine ; -- [XXXAO] :: approach; increase, bonus; accessory; attack, onset (fever, rage); fit; - adcessitio_F_N = mkN "adcessitio" "adcessitionis " feminine ; -- [DXXFS] :: summons, sending for; [dies ~ => day of death]; - adcessitor_M_N = mkN "adcessitor" "adcessitoris " masculine ; -- [XLXEO] :: one who comes to summon/call/fetch another; accuser; - adcessitus_M_N = mkN "adcessitus" "adcessitus " masculine ; -- [XXXEO] :: summons, sending for; - adcessus_M_N = mkN "adcessus" "adcessus " masculine ; -- [XXXBO] :: approach, arrival; entry, admittance, audience; hostile approach/attack; onset; - adclamatio_F_N = mkN "adclamatio" "adclamationis " feminine ; -- [XXXCO] :: acclamation, shout (of comment/approval/disapproval); crying against; brawling; + adcessibilitas_F_N = mkN "adcessibilitas" "adcessibilitatis" feminine ; -- [DXXES] :: accessibility; + adcessio_F_N = mkN "adcessio" "adcessionis" feminine ; -- [XXXAO] :: approach; increase, bonus; accessory; attack, onset (fever, rage); fit; + adcessitio_F_N = mkN "adcessitio" "adcessitionis" feminine ; -- [DXXFS] :: summons, sending for; [dies ~ => day of death]; + adcessitor_M_N = mkN "adcessitor" "adcessitoris" masculine ; -- [XLXEO] :: one who comes to summon/call/fetch another; accuser; + adcessitus_M_N = mkN "adcessitus" "adcessitus" masculine ; -- [XXXEO] :: summons, sending for; + adcessus_M_N = mkN "adcessus" "adcessus" masculine ; -- [XXXBO] :: approach, arrival; entry, admittance, audience; hostile approach/attack; onset; + adclamatio_F_N = mkN "adclamatio" "adclamationis" feminine ; -- [XXXCO] :: acclamation, shout (of comment/approval/disapproval); crying against; brawling; adclamo_V = mkV "adclamare" ; -- [XXXCO] :: shout (at), cry out against, protest; shout approval, applaud; adclaro_V2 = mkV2 (mkV "adclarare") ; -- [XXXFO] :: make clear, reveal, make manifest; adclinis_A = mkA "adclinis" "adclinis" "adcline" ; -- [XXXCO] :: leaning/resting (on/against); sloping, inclined; disposed/inclined (to); adclino_V2 = mkV2 (mkV "adclinare") ; -- [XXXCO] :: lay down, rest (on) (w/DAT), lean against/towards, incline (to); - adclive_N_N = mkN "adclive" "adclivis " neuter ; -- [XXXEO] :: upward slope; + adclive_N_N = mkN "adclive" "adclivis" neuter ; -- [XXXEO] :: upward slope; adclivis_A = mkA "adclivis" "adclivis" "adclive" ; -- [XXXCO] :: rising, sloping upward; - adclivitas_F_N = mkN "adclivitas" "adclivitatis " feminine ; -- [XXXEO] :: slope, ascent, upward inclination, steepness; + 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; + 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; + 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; + adcommodatio_F_N = mkN "adcommodatio" "adcommodationis" feminine ; -- [XXXEO] :: adjustment, willingness to oblige, complaisance; fitting, adapting, adaptation; 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 = 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; + 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; + 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; + 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; + 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; + 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); + adcuratio_F_N = mkN "adcuratio" "adcurationis" feminine ; -- [XXXEO] :: accuracy, preciseness, care; carefulness, painstakingness; treatment (medical); 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); + 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; addecimo_V = mkV "addecimare" ; -- [DEXES] :: take the tenth part/a tenth; tithe; 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; + 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); + addictio_F_N = mkN "addictio" "addictionis" feminine ; -- [XLXEO] :: adjudication (disputed property), assignment (of debtor to custody/creditor); 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; + 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; + 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; + 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; + 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; + adductor_M_N = mkN "adductor" "adductoris" masculine ; -- [XXXFS] :: procurer; 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; + 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_1_V = mkV "adire" "adeo" "adivi" "aditus" ; -- [XXXAO] :: approach; attack; visit, address; undertake; take possession (inheritance); + adeo_2_V = mkV "adire" "adeo" "adiii" "aditus" ; -- [XXXAO] :: approach; attack; visit, address; undertake; take possession (inheritance); adeo_Adv = mkAdv "adeo" ; -- [XXXAO] :: to such a degree/pass/point; precisely, exactly; thus far; indeed, truly, even; - 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; - adeptus_M_N = mkN "adeptus" "adeptus " masculine ; -- [DXXFS] :: attainment, an obtaining; + 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; + adeptus_M_N = mkN "adeptus" "adeptus" masculine ; -- [DXXFS] :: attainment, an obtaining; adequito_V = mkV "adequitare" ; -- [XXXCO] :: ride up to/towards/near, gallop up; - aderator_M_N = mkN "aderator" "aderatoris " masculine ; -- [DEXES] :: worshiper, one who adores; + 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; + 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); - adfabilitas_F_N = mkN "adfabilitas" "adfabilitatis " feminine ; -- [XXXEO] :: affability, friendliness, courtesy; + adfabilitas_F_N = mkN "adfabilitas" "adfabilitatis" feminine ; -- [XXXEO] :: affability, friendliness, courtesy; adfabiliter_Adv =mkAdv "adfabiliter" "adfabilitius" "adfabilitissime" ; -- [XXXEO] :: conversationally, in informal/friendly discourse; adfabre_Adv = mkAdv "adfabre" ; -- [XXXEO] :: skillfully, ingeniously, artistically; adfabricatus_A = mkA "adfabricatus" "adfabricata" "adfabricatum" ; -- [XXXFS] :: fitted/added to by art; - adfamen_N_N = mkN "adfamen" "adfaminis " neuter ; -- [XXXEO] :: greeting, salutation, address; + adfamen_N_N = mkN "adfamen" "adfaminis" neuter ; -- [XXXEO] :: greeting, salutation, address; adfania_F_N = mkN "adfania" ; -- [XXXES] :: trifling talk (pl.), chatter; idle jests; adfatim_Adv = mkAdv "adfatim" ; -- [XXXCO] :: sufficiently, amply, with complete satisfaction; - adfatus_M_N = mkN "adfatus" "adfatus " masculine ; -- [XXXCO] :: address, speech, converse with; pronouncement, utterance (of); - adfectatio_F_N = mkN "adfectatio" "adfectationis " feminine ; -- [XXXCO] :: seeking/striving for, aspiration to; affectation, straining for; claiming; + adfatus_M_N = mkN "adfatus" "adfatus" masculine ; -- [XXXCO] :: address, speech, converse with; pronouncement, utterance (of); + adfectatio_F_N = mkN "adfectatio" "adfectationis" feminine ; -- [XXXCO] :: seeking/striving for, aspiration to; affectation, straining for; claiming; adfectato_Adv = mkAdv "adfectato" ; -- [DXXES] :: studiously, zealously; - adfectator_M_N = mkN "adfectator" "adfectatoris " masculine ; -- [XXXDO] :: aspirant, zealous seeker (of), one who strives to obtain/produce; + adfectator_M_N = mkN "adfectator" "adfectatoris" masculine ; -- [XXXDO] :: aspirant, zealous seeker (of), one who strives to obtain/produce; adfectatus_A = mkA "adfectatus" "adfectata" "adfectatum" ; -- [XXXEO] :: studied, artificial, affected; adfecte_Adv = mkAdv "adfecte" ; -- [DXXES] :: deeply, with (strong) affection; - adfectio_F_N = mkN "adfectio" "adfectionis " feminine ; -- [XXXAO] :: mental condition, mood, feeling, disposition; affection, love; purpose; + adfectio_F_N = mkN "adfectio" "adfectionis" feminine ; -- [XXXAO] :: mental condition, mood, feeling, disposition; affection, love; purpose; adfectiose_Adv =mkAdv "adfectiose" "adfectiosius" "adfectiosissime" ; -- [EXXFP] :: feelingly; with (kindly) feeling; adfectiosus_A = mkA "adfectiosus" "adfectiosa" "adfectiosum" ; -- [DXXES] :: full of affection/attachment; adfecto_V2 = mkV2 (mkV "adfectare") ; -- [XXXBO] :: aim at, desire, aspire, try, lay claim to; try to control; feign, pretend; adfector_V = mkV "adfectari" ; -- [XXXCO] :: aim at, desire, aspire, try, lay claim to; try to control; feign, pretend; - adfectrix_F_N = mkN "adfectrix" "adfectricis " feminine ; -- [DXXFS] :: aspirant (female); she who seeks/strives for (thing); + adfectrix_F_N = mkN "adfectrix" "adfectricis" feminine ; -- [DXXFS] :: aspirant (female); she who seeks/strives for (thing); adfectualis_A = mkA "adfectualis" "adfectualis" "adfectuale" ; -- [EXXEP] :: depending on a temporary condition; adfectuose_Adv =mkAdv "adfectuose" "adfectuosius" "adfectuosissime" ; -- [EXXFP] :: feelingly; with (kindly) feeling; adfectuosus_A = mkA "adfectuosus" "adfectuosa" "adfectuosum" ; -- [DXXES] :: affectionate, kind, full of inclination/affection/love; 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; + 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; + 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; + 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; + 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; - adfinitas_F_N = mkN "adfinitas" "adfinitatis " feminine ; -- [XXXBO] :: relation(ship) by marriage; relationship (man+wife), bond/union; neighborhood; + 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; + adfinitas_F_N = mkN "adfinitas" "adfinitatis" feminine ; -- [XXXBO] :: relation(ship) by marriage; relationship (man+wife), bond/union; neighborhood; adfirmanter_Adv = mkAdv "adfirmanter" ; -- [XXXES] :: certainly, assuredly, with assurance; adfirmate_Adv = mkAdv "adfirmate" ; -- [XXXEO] :: with definite affirmation/solemn assertion, positively, certainly, assuredly; - adfirmatio_F_N = mkN "adfirmatio" "adfirmationis " feminine ; -- [XXXCO] :: affirmation, strengthening of belief; assertion, dogmatic/positive statement; + adfirmatio_F_N = mkN "adfirmatio" "adfirmationis" feminine ; -- [XXXCO] :: affirmation, strengthening of belief; assertion, dogmatic/positive statement; adfirmativus_A = mkA "adfirmativus" "adfirmativa" "adfirmativum" ; -- [DXXFS] :: affirming, affirmative; - adfirmator_M_N = mkN "adfirmator" "adfirmatoris " masculine ; -- [XXXEO] :: one who makes a definite assertion/affirmation; + adfirmator_M_N = mkN "adfirmator" "adfirmatoris" masculine ; -- [XXXEO] :: one who makes a definite assertion/affirmation; adfirmo_V = mkV "adfirmare" ; -- [XXXBO] :: affirm/assert (dogmatically/positively); confirm, ratify, restore; emphasize; - adfixio_F_N = mkN "adfixio" "adfixionis " feminine ; -- [DXXES] :: joining/fastening to; an addition to; + adfixio_F_N = mkN "adfixio" "adfixionis" feminine ; -- [DXXES] :: joining/fastening to; an addition to; adfixum_N_N = mkN "adfixum" ; -- [XXXFO] :: fixtures (pl.) pertaining thereto;, permanent fittings/appendages/appurtenances; adfixus_A = mkA "adfixus" "adfixa" "adfixum" ; -- [XXXES] :: fastened/joined to (person/thing); impressed on, fixed to; situated close to; adflagrans_A = mkA "adflagrans" "adflagrantis"; -- [DXXFS] :: flaming/blazing up; turbulent, unquiet; - adflator_M_N = mkN "adflator" "adflatoris " masculine ; -- [DXXES] :: one who blows on/breathes into; - adflatus_M_N = mkN "adflatus" "adflatus " masculine ; -- [XXXBO] :: breath, snorting; breeze, wind, draught, (hot) blast; stench; inspiration; + adflator_M_N = mkN "adflator" "adflatoris" masculine ; -- [DXXES] :: one who blows on/breathes into; + adflatus_M_N = mkN "adflatus" "adflatus" masculine ; -- [XXXBO] :: breath, snorting; breeze, wind, draught, (hot) blast; stench; inspiration; adflecto_V2 = mkV2 (mkV "adflectare") ; -- [XXXFO] :: affect, move, influence (to a course of action); adfleo_V = mkV "adflere" ; -- [XXXFO] :: weep/cry at; weep as an accompaniment; - adflictatio_F_N = mkN "adflictatio" "adflictationis " feminine ; -- [XXXEO] :: grievous suffering, torment, affliction; - adflictator_M_N = mkN "adflictator" "adflictatoris " masculine ; -- [DXXES] :: one who causes pain/suffering/torment/torture; tormenter; - adflictio_F_N = mkN "adflictio" "adflictionis " feminine ; -- [XXXFS] :: pain, suffering, torment; + adflictatio_F_N = mkN "adflictatio" "adflictationis" feminine ; -- [XXXEO] :: grievous suffering, torment, affliction; + adflictator_M_N = mkN "adflictator" "adflictatoris" masculine ; -- [DXXES] :: one who causes pain/suffering/torment/torture; tormenter; + adflictio_F_N = mkN "adflictio" "adflictionis" feminine ; -- [XXXFS] :: pain, suffering, torment; adflicto_V2 = mkV2 (mkV "adflictare") ; -- [XXXAO] :: shatter, damage, strike repeatedly, buffet, wreck; oppress, afflict; vex; - adflictor_M_N = mkN "adflictor" "adflictoris " masculine ; -- [XXXFO] :: one who strikes against/down/overthrows; + adflictor_M_N = mkN "adflictor" "adflictoris" masculine ; -- [XXXFO] :: one who strikes against/down/overthrows; adflictrix_A = mkA "adflictrix" "adflictricis"; -- [XXXFO] :: that strikes against/down/overthrows or collides with; - adflictrix_F_N = mkN "adflictrix" "adflictricis " feminine ; -- [XXXFO] :: one (female) who strikes against/down/overthrows; + 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; + 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; + 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; + 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; + 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); + 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; + 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 "adgerere" "adgero" "adgessi" "adgestus ") ; -- [XXXBO] :: heap/cover up over, pile/build up, erect; accumulate; intensify, exaggerate; + adgeratio_F_N = mkN "adgeratio" "adgerationis" feminine ; -- [XXXFO] :: heaped/piled up material; + 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); + 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; + 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; + 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; + adgnatio_F_N = mkN "adgnatio" "adgnationis" feminine ; -- [XXXCO] :: birth after father's will; blood relationship through father/male ancestor; adgnatum_N_N = mkN "adgnatum" ; -- [XAXNO] :: offshoot, side-shoot; adgnatus_A = mkA "adgnatus" "adgnata" "adgnatum" ; -- [XXXFO] :: related, cognate; adgnatus_M_N = mkN "adgnatus" ; -- [XXXCO] :: male blood relation (father's side); one born after father made his will; - adgnitio_F_N = mkN "adgnitio" "adgnitionis " feminine ; -- [XXXCO] :: recognition, knowledge; perception of nature/identity; avowal, acknowledgement; - adgnitor_M_N = mkN "adgnitor" "adgnitoris " masculine ; -- [XLXFO] :: one who acknowledges or vouches for (seal); - 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; + adgnitio_F_N = mkN "adgnitio" "adgnitionis" feminine ; -- [XXXCO] :: recognition, knowledge; perception of nature/identity; avowal, acknowledgement; + adgnitor_M_N = mkN "adgnitor" "adgnitoris" masculine ; -- [XLXFO] :: one who acknowledges or vouches for (seal); + 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; + 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; + 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; + 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; adgressura_F_N = mkN "adgressura" ; -- [XXXEO] :: attack, assault; - adgressus_M_N = mkN "adgressus" "adgressus " masculine ; -- [XXXFO] :: attack, assault; + 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; + adhaesio_F_N = mkN "adhaesio" "adhaesionis" feminine ; -- [XXXEO] :: adhesion; linkage; adhaesiona_F_N = mkN "adhaesiona" ; -- [FXXFZ] :: adhesion; linkage; adhaesivus_A = mkA "adhaesivus" "adhaesiva" "adhaesivum" ; -- [GXXEK] :: adhesive; - adhaesus_M_N = mkN "adhaesus" "adhaesus " masculine ; -- [XXXDO] :: adhesion; act/fact of adhering/combining; + adhaesus_M_N = mkN "adhaesus" "adhaesus" masculine ; -- [XXXDO] :: adhesion; act/fact of adhering/combining; 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; + 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; + 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; - adhortatio_F_N = mkN "adhortatio" "adhortationis " feminine ; -- [XXXCO] :: exhortation, (words of) encouragement; persuasive speech/discourse/appeal; + adhortamen_N_N = mkN "adhortamen" "adhortaminis" neuter ; -- [XXXFO] :: encouragement, exhortation; incentive; + adhortatio_F_N = mkN "adhortatio" "adhortationis" feminine ; -- [XXXCO] :: exhortation, (words of) encouragement; persuasive speech/discourse/appeal; adhortativus_A = mkA "adhortativus" "adhortativa" "adhortativum" ; -- [DXXFS] :: of/belonging to encouragement/exhortation; [~ modus => encouraging mood]; - adhortator_M_N = mkN "adhortator" "adhortatoris " masculine ; -- [XXXDO] :: encourager, one who encourages/exhorts; - adhortatus_M_N = mkN "adhortatus" "adhortatus " masculine ; -- [XXXEO] :: act of urging; encouragement, exhortation, persuasion; + adhortator_M_N = mkN "adhortator" "adhortatoris" masculine ; -- [XXXDO] :: encourager, one who encourages/exhorts; + adhortatus_M_N = mkN "adhortatus" "adhortatus" masculine ; -- [XXXEO] :: act of urging; encouragement, exhortation, persuasion; adhortor_V = mkV "adhortari" ; -- [XXXBO] :: encourage, urge on; rally; exhort; adhospito_V2 = mkV2 (mkV "adhospitare") ; -- [DXXES] :: entertain as guest; propitiate; adhuc_Adv = mkAdv "adhuc" ; -- [XXXAO] :: thus far, till now, to this point; hitherto; yet, as yet; still; besides; @@ -2107,252 +2107,252 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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); + 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; + 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); 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; + 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; adinvicem_Adv = mkAdv "adinvicem" ; -- [DXXES] :: in turn, by turns, on after the other, alternately; mutually, reciprocally; 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; - adipsatheos_M_N = mkN "adipsatheos" "adipsathei " masculine ; -- [XAXNO] :: thorny shrub which produces fragrant oil; - adipson_N_N = mkN "adipson" "adipsi " neuter ; -- [XAXNO] :: licorice; - adipsos_F_N = mkN "adipsos" "adipsi " feminine ; -- [XAXNO] :: kind of Egyptian date; licorice (?); + 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; + adipsatheos_M_N = mkN "adipsatheos" "adipsathei" masculine ; -- [XAXNO] :: thorny shrub which produces fragrant oil; + adipson_N_N = mkN "adipson" "adipsi" neuter ; -- [XAXNO] :: licorice; + adipsos_F_N = mkN "adipsos" "adipsi" feminine ; -- [XAXNO] :: kind of Egyptian date; licorice (?); aditialis_A = mkA "aditialis" "aditialis" "aditiale" ; -- [XLXEO] :: inaugural; (of a banquet) given by a magistrate upon entering office; - aditio_F_N = mkN "aditio" "aditionis " feminine ; -- [XLXCO] :: act/right of approaching (person); taking possession of an inheritance; + aditio_F_N = mkN "aditio" "aditionis" feminine ; -- [XLXCO] :: act/right of approaching (person); taking possession of an inheritance; adito_V = mkV "aditare" ; -- [XXXFO] :: approach often/frequently/habitually; - aditus_M_N = mkN "aditus" "aditus " masculine ; -- [XXXAO] :: approach, access; attack; entrance; chance, opportunity, means, way; beginning; + aditus_M_N = mkN "aditus" "aditus" masculine ; -- [XXXAO] :: approach, access; attack; entrance; chance, opportunity, means, way; beginning; adiumentum_N_N = mkN "adiumentum" ; -- [XXXCO] :: help, assistance, support, means of aid; adjacens_A = mkA "adjacens" "adjacentis"; -- [XXXCO] :: adjacent, neighboring; - adjacens_N_N = mkN "adjacens" "adjacentis " neuter ; -- [XXXDO] :: adjacent/neighboring areas/regions/parts (pl.); adjoining country; + adjacens_N_N = mkN "adjacens" "adjacentis" neuter ; -- [XXXDO] :: adjacent/neighboring areas/regions/parts (pl.); adjoining country; adjaceo_V2 = mkV2 (mkV "adjacere") Dat_Prep ; -- [XXXCO] :: lie near to, lie beside; be adjacent/contiguous to, neighbor on; live near; adjaculatus_A = mkA "adjaculatus" "adjaculata" "adjaculatum" ; -- [XXXFS] :: thrown/cast at; adjectamentum_N_N = mkN "adjectamentum" ; -- [XXXFO] :: appendage, appurtenance, attachment; addition, increase; adjecticius_A = mkA "adjecticius" "adjecticia" "adjecticium" ; -- [DXXES] :: added besides; - adjectio_F_N = mkN "adjectio" "adjectionis " feminine ; -- [XXXBO] :: addition; act of adding, infliction in addition; repetition; price increase; + adjectio_F_N = mkN "adjectio" "adjectionis" feminine ; -- [XXXBO] :: addition; act of adding, infliction in addition; repetition; price increase; 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; + 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); - adjunctio_F_N = mkN "adjunctio" "adjunctionis " feminine ; -- [XXXCO] :: union, association; admixture, combination; (limiting) addition, qualification; + adjunctio_F_N = mkN "adjunctio" "adjunctionis" feminine ; -- [XXXCO] :: union, association; admixture, combination; (limiting) addition, qualification; 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 ...); + 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; 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; + 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; + 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; adjuratorius_A = mkA "adjuratorius" "adjuratoria" "adjuratorium" ; -- [DLXES] :: pertaining to swearing; adjuro_V2 = mkV2 (mkV "adjurare") ; -- [XXXCO] :: swear by/solemnly; affirm with oath; charge/entreat/urge (as under oath/curse); adjutabilis_A = mkA "adjutabilis" "adjutabilis" "adjutabile" ; -- [XXXFO] :: helpful; adjuto_V = mkV "adjutare" ; -- [XXXCO] :: help (w/burden/activity); help realize a program/purpose; - adjutor_M_N = mkN "adjutor" "adjutoris " masculine ; -- [XXXBO] :: assistant, deputy; accomplice; supporter; secretary; assistant schoolmaster; + adjutor_M_N = mkN "adjutor" "adjutoris" masculine ; -- [XXXBO] :: assistant, deputy; accomplice; supporter; secretary; assistant schoolmaster; adjutor_V = mkV "adjutari" ; -- [XXXDO] :: help (w/burden/activity); help realize a program/purpose; adjutorium_N_N = mkN "adjutorium" ; -- [XXXCO] :: help, assistance, support; argumentation; - adjutrix_F_N = mkN "adjutrix" "adjutricis " feminine ; -- [XXXCO] :: female assistant/helper/accomplice; feminine nouns; as title of a legion; - adjutus_M_N = mkN "adjutus" "adjutus " masculine ; -- [DXXES] :: help, aid; + adjutrix_F_N = mkN "adjutrix" "adjutricis" feminine ; -- [XXXCO] :: female assistant/helper/accomplice; feminine nouns; as title of a legion; + adjutus_M_N = mkN "adjutus" "adjutus" masculine ; -- [DXXES] :: help, aid; 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); + 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; + 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; adlaudo_V2 = mkV2 (mkV "adlaudare") ; -- [XXXFO] :: praise, commend; adlavo_V2 = mkV2 (mkV "adlavare") ; -- [XXXFO] :: flow up to (water), wash; - adlectatio_F_N = mkN "adlectatio" "adlectationis " feminine ; -- [XXXFO] :: coaxing, enticing, encouragement, invitation; - adlectator_M_N = mkN "adlectator" "adlectatoris " masculine ; -- [XXXFO] :: one who coaxes/entices/attracts/invites/encourages; + adlectatio_F_N = mkN "adlectatio" "adlectationis" feminine ; -- [XXXFO] :: coaxing, enticing, encouragement, invitation; + adlectator_M_N = mkN "adlectator" "adlectatoris" masculine ; -- [XXXFO] :: one who coaxes/entices/attracts/invites/encourages; adlecto_V2 = mkV2 (mkV "adlectare") ; -- [XXXDO] :: entice, allure, encourage, invite; - adlector_M_N = mkN "adlector" "adlectoris " masculine ; -- [XXXIO] :: official of a collegium (concerned with dues or admission); + adlector_M_N = mkN "adlector" "adlectoris" masculine ; -- [XXXIO] :: official of a collegium (concerned with dues or admission); adlectura_F_N = mkN "adlectura" ; -- [XXXIO] :: office of collector of revenues (colligium allector); 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 "adlegere" "adlego" "adlegi" "adlectus ") ; -- [XXXCO] :: choose, admit, elect, recruit, select, appoint; + 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 "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; - adlevator_M_N = mkN "adlevator" "adlevatoris " masculine ; -- [DXXFS] :: one who lifts/raises up; + adlevatio_F_N = mkN "adlevatio" "adlevationis" feminine ; -- [XXXEO] :: alleviation, easing; relief; lifting up, raising; + adlevator_M_N = mkN "adlevator" "adlevatoris" masculine ; -- [DXXFS] :: one who lifts/raises up; 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; + 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; + 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; + 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; + 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; + 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; + 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; + 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; + 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); + 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; + adminiculator_M_N = mkN "adminiculator" "adminiculatoris" masculine ; -- [XXXFO] :: assistant, supporter; one who supports; 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; administer_M_N = mkN "administer" ; -- [XXXCO] :: assistant, helper, supporter; one at hand to help, attendant; priest, minister; administra_F_N = mkN "administra" ; -- [XXXEO] :: assistant (female), helper, supporter, servant; handmaiden, attendant; - administratio_F_N = mkN "administratio" "administrationis " feminine ; -- [XXXBO] :: administration; assistance; execution, operation, management, care of affairs; + administratio_F_N = mkN "administratio" "administrationis" feminine ; -- [XXXBO] :: administration; assistance; execution, operation, management, care of affairs; administrativus_A = mkA "administrativus" "administrativa" "administrativum" ; -- [XXXFO] :: practical; suitable for the administration of; administrative; - administrator_M_N = mkN "administrator" "administratoris " masculine ; -- [XXXEO] :: director, administrator, manager; one in charge of operation; + administrator_M_N = mkN "administrator" "administratoris" masculine ; -- [XXXEO] :: director, administrator, manager; one in charge of operation; administratorius_A = mkA "administratorius" "administratoria" "administratorium" ; -- [DXXES] :: performing the duties of an assistant/helper; serving, ministering; administro_V = mkV "administrare" ; -- [XXXBO] :: administer, manage, direct; assist; operate, conduct; maneuver (ship); bestow; admirabilis_A = mkA "admirabilis" "admirabilis" "admirabile" ; -- [XXXCO] :: admirable, wonderful; strange, astonishing, remarkable; paradoxical, contrary; - admirabilitas_F_N = mkN "admirabilitas" "admirabilitatis " feminine ; -- [XXXEO] :: wonderful character, remarkableness; admiration, wonder; + admirabilitas_F_N = mkN "admirabilitas" "admirabilitatis" feminine ; -- [XXXEO] :: wonderful character, remarkableness; admiration, wonder; admirabiliter_Adv = mkAdv "admirabiliter" ; -- [XXXEO] :: admirably, astonishingly, in a wonderful/wondrous manner; paradoxically; - admiralis_M_N = mkN "admiralis" "admiralis " masculine ; -- [GWXEK] :: admiral; + admiralis_M_N = mkN "admiralis" "admiralis" masculine ; -- [GWXEK] :: admiral; admiralius_M_N = mkN "admiralius" ; -- [GXXEK] :: emir; admirandus_A = mkA "admirandus" "admiranda" "admirandum" ; -- [XXXCO] :: wonderful, admirable; astonishing, remarkable, extraordinary; admiranter_Adv = mkAdv "admiranter" ; -- [EXXCV] :: admiringly, with admiration; - admiratio_F_N = mkN "admiratio" "admirationis " feminine ; -- [XXXBO] :: wonder, surprise, astonishment; admiration, veneration, regard; marvel; - admirator_M_N = mkN "admirator" "admiratoris " masculine ; -- [XXXCO] :: admirer; one who venerates; + admiratio_F_N = mkN "admiratio" "admirationis" feminine ; -- [XXXBO] :: wonder, surprise, astonishment; admiration, veneration, regard; marvel; + admirator_M_N = mkN "admirator" "admiratoris" masculine ; -- [XXXCO] :: admirer; one who venerates; admiror_V = mkV "admirari" ; -- [XXXBO] :: admire, respect; regard with wonder, wonder at; be surprised at, be astonished; admisceo_V2 = mkV2 (mkV "admiscere") ; -- [XXXBO] :: mix, mix together; involve; add an ingredient to; contaminate; confuse, mix up; admissarius_A = mkA "admissarius" "admissaria" "admissarium" ; -- [XAXEO] :: kept for breeding (male animals), on stud; admissarius_M_N = mkN "admissarius" ; -- [XAXDO] :: stallion/he-ass, stud; sodomite; - admissio_F_N = mkN "admissio" "admissionis " feminine ; -- [XXXCO] :: admission/entrance/audience/interview; application (medical); mating (animals); - admissionalis_M_N = mkN "admissionalis" "admissionalis " masculine ; -- [DXXES] :: one who introduces/announces at audience; privy chamber usher; seneschal; + admissio_F_N = mkN "admissio" "admissionis" feminine ; -- [XXXCO] :: admission/entrance/audience/interview; application (medical); mating (animals); + admissionalis_M_N = mkN "admissionalis" "admissionalis" masculine ; -- [DXXES] :: one who introduces/announces at audience; privy chamber usher; seneschal; admissivus_A = mkA "admissivus" "admissiva" "admissivum" ; -- [XEXFS] :: permitting/favorable (birds of omen approving of action in question); - admissor_M_N = mkN "admissor" "admissoris " masculine ; -- [DXXES] :: perpetrator; one who allows himself to do a thing; + admissor_M_N = mkN "admissor" "admissoris" masculine ; -- [DXXES] :: perpetrator; one who allows himself to do a thing; admissum_N_N = mkN "admissum" ; -- [XXXDO] :: crime, offense; admissura_F_N = mkN "admissura" ; -- [XAXDO] :: breeding, generation; copulation/mating of domestic animals, service; - 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; + 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; + admixtus_M_N = mkN "admixtus" "admixtus" masculine ; -- [DXXES] :: mixture, admixture, mingling; admoderate_Adv = mkAdv "admoderate" ; -- [XXXFO] :: comfortably; suitably; 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; + 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; - admonitor_M_N = mkN "admonitor" "admonitoris " masculine ; -- [XXXEO] :: admonisher; exhorter; one who reminds; + admonitio_F_N = mkN "admonitio" "admonitionis" feminine ; -- [XXXBO] :: act of reminding; reminder, recurring symptom; warning, advice; rebuke; + admonitor_M_N = mkN "admonitor" "admonitoris" masculine ; -- [XXXEO] :: admonisher; exhorter; one who reminds; admonitorium_N_N = mkN "admonitorium" ; -- [XXXFS] :: admonition; - admonitrix_F_N = mkN "admonitrix" "admonitricis " feminine ; -- [XXXFS] :: monitor (female); she that admonishers/reminds; + admonitrix_F_N = mkN "admonitrix" "admonitricis" feminine ; -- [XXXFS] :: monitor (female); she that admonishers/reminds; admonitum_N_N = mkN "admonitum" ; -- [XXXES] :: warning; reminder; reminding; advice; admonition; - admonitus_M_N = mkN "admonitus" "admonitus " masculine ; -- [XXXCO] :: advice, recommendation; admonition, warning; command (animal); reminder; reproof + admonitus_M_N = mkN "admonitus" "admonitus" masculine ; -- [XXXCO] :: advice, recommendation; admonition, warning; command (animal); reminder; reproof admordeo_V2 = mkV2 (mkV "admordere") ; -- [XXXDO] :: bite at/into, gnaw; extract money from; fleece; get possession of their property admorsus_A = mkA "admorsus" "admorsa" "admorsum" ; -- [XXXEL] :: bitten, gnawed; - 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; + 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; + admurmuratio_F_N = mkN "admurmuratio" "admurmurationis" feminine ; -- [XXXEO] :: murmur of comment; murmuring; admurmuro_V = mkV "admurmurare" ; -- [XXXDO] :: murmur in protest or approval; murmur at; admurmuror_V = mkV "admurmurari" ; -- [XXXFS] :: murmur in protest or approval; murmur at; admutilo_V2 = mkV2 (mkV "admutilare") ; -- [XXXEO] :: cut/clip close; shave; fleece, cheat, defraud; 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; + 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; - adnexio_F_N = mkN "adnexio" "adnexionis " feminine ; -- [DXXFS] :: tying/binding to, connecting; annexation; + adnepos_M_N = mkN "adnepos" "adnepotis" masculine ; -- [XXXEO] :: great-great-great grandson; + adneptis_F_N = mkN "adneptis" "adneptis" feminine ; -- [XXXFO] :: great-great-great granddaughter; + adnexio_F_N = mkN "adnexio" "adnexionis" feminine ; -- [DXXFS] :: tying/binding to, connecting; annexation; adnexus_A = mkA "adnexus" "adnexa" "adnexum" ; -- [XXXFO] :: attached, linked, joined; contiguous (to); related by blood; concerned; - adnexus_M_N = mkN "adnexus" "adnexus " masculine ; -- [XXXEO] :: tying/binding/fastening/attaching (to), connecting; connection; annexation; + adnexus_M_N = mkN "adnexus" "adnexus" masculine ; -- [XXXEO] :: tying/binding/fastening/attaching (to), connecting; connection; annexation; 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; + 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); adnodo_V2 = mkV2 (mkV "adnodare") ; -- [XAXFO] :: cut (shoot) right back, cut flush; cut off knots, cut away suckers; adnomentum_N_N = mkN "adnomentum" ; -- [XXXFS] :: nickname, an additional name denoting an achievement/characteristic; - adnominatio_F_N = mkN "adnominatio" "adnominationis " feminine ; -- [XGXFO] :: punning/pun; linking two words of different meaning but like sound, paronomasia; + adnominatio_F_N = mkN "adnominatio" "adnominationis" feminine ; -- [XGXFO] :: punning/pun; linking two words of different meaning but like sound, paronomasia; adnotamentum_N_N = mkN "adnotamentum" ; -- [XXXEO] :: note, comment, remark, annotation; - adnotatio_F_N = mkN "adnotatio" "adnotationis " feminine ; -- [XXXCO] :: note or comment; writing/making notes; notice; rescript of emperor by his hand; + adnotatio_F_N = mkN "adnotatio" "adnotationis" feminine ; -- [XXXCO] :: note or comment; writing/making notes; notice; rescript of emperor by his hand; adnotatiuncula_F_N = mkN "adnotatiuncula" ; -- [XXXEO] :: short note/comment; brief annotation; - adnotator_M_N = mkN "adnotator" "adnotatoris " masculine ; -- [XXXFO] :: one who makes notes, note taker; observer; L:controller of the annual income; - adnotatus_M_N = mkN "adnotatus" "adnotatus " masculine ; -- [XXXFO] :: notice, noting, remark, mention; + adnotator_M_N = mkN "adnotator" "adnotatoris" masculine ; -- [XXXFO] :: one who makes notes, note taker; observer; L:controller of the annual income; + adnotatus_M_N = mkN "adnotatus" "adnotatus" masculine ; -- [XXXFO] :: notice, noting, remark, mention; adnoto_V2 = mkV2 (mkV "adnotare") ; -- [XXXBO] :: note/jot down, notice, become aware; mark, annotate; record, state; designate; adnubilo_V = mkV "adnubilare" ; -- [XXXFO] :: bring up clouds (against); adnullo_V2 = mkV2 (mkV "adnullare") ; -- [DXXCS] :: annihilate, obliterate, destroy; annul (eccl.); - adnumeratio_F_N = mkN "adnumeratio" "adnumerationis " feminine ; -- [XXXES] :: numbering, counting, enumeration; + adnumeratio_F_N = mkN "adnumeratio" "adnumerationis" feminine ; -- [XXXES] :: numbering, counting, enumeration; adnumero_V2 = mkV2 (mkV "adnumerare") ; -- [XXXBO] :: count (in/out), pay; reckon (time); enumerate, run through; classify as; add; adnuntialis_A = mkA "adnuntialis" "adnuntialis" "adnuntiale" ; -- [EXXEP] :: proclamatory; - adnuntiatio_F_N = mkN "adnuntiatio" "adnuntiationis " feminine ; -- [DEXES] :: annunciation/announcement, declaration; message; prediction/prophecy; preaching; - adnuntiator_M_N = mkN "adnuntiator" "adnuntiatoris " masculine ; -- [DEXES] :: announcer, herald, one who announces; prophet (Souter); preacher; - adnuntiatrix_F_N = mkN "adnuntiatrix" "adnuntiatricis " feminine ; -- [EEXEP] :: announcer, preacher, one who announces; prophetess (Souter); + adnuntiatio_F_N = mkN "adnuntiatio" "adnuntiationis" feminine ; -- [DEXES] :: annunciation/announcement, declaration; message; prediction/prophecy; preaching; + adnuntiator_M_N = mkN "adnuntiator" "adnuntiatoris" masculine ; -- [DEXES] :: announcer, herald, one who announces; prophet (Souter); preacher; + 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; + 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; + 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; adolescens_A = mkA "adolescens" "adolescentis"; -- [XXXCO] :: young, youthful; "minor" (in reference to the younger of two having same name); - adolescens_F_N = mkN "adolescens" "adolescentis " feminine ; -- [XXXCO] :: young man, youth; youthful person; young woman/girl; - adolescens_M_N = mkN "adolescens" "adolescentis " masculine ; -- [XXXCO] :: young man, youth; youthful person; young woman/girl; + adolescens_F_N = mkN "adolescens" "adolescentis" feminine ; -- [XXXCO] :: young man, youth; youthful person; young woman/girl; + adolescens_M_N = mkN "adolescens" "adolescentis" masculine ; -- [XXXCO] :: young man, youth; youthful person; young woman/girl; adolescentia_F_N = mkN "adolescentia" ; -- [XXXBO] :: youth, young manhood; characteristic of being young, youthfulness; the young; adolescentior_V = mkV "adolescentiari" ; -- [XXXFO] :: behave in a youthful manner; 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; + 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; + 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; + 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; @@ -2361,25 +2361,25 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat adoptaticia_F_N = mkN "adoptaticia" ; -- [XXXEO] :: adopted daughter; adoptaticius_A = mkA "adoptaticius" "adoptaticia" "adoptaticium" ; -- [XXXEO] :: adopted (into a family); (as a son/daughter); adoptaticius_M_N = mkN "adoptaticius" ; -- [XXXEO] :: adopted son; - adoptatio_F_N = mkN "adoptatio" "adoptationis " feminine ; -- [XXXDO] :: adoption of a child; adoption into family (Roman custom); - adoptator_M_N = mkN "adoptator" "adoptatoris " masculine ; -- [XXXEO] :: one who adopts child; + adoptatio_F_N = mkN "adoptatio" "adoptationis" feminine ; -- [XXXDO] :: adoption of a child; adoption into family (Roman custom); + adoptator_M_N = mkN "adoptator" "adoptatoris" masculine ; -- [XXXEO] :: one who adopts child; adoptatus_M_N = mkN "adoptatus" ; -- [XXXEO] :: adopted son; - adoptio_F_N = mkN "adoptio" "adoptionis " feminine ; -- [XXXCO] :: adoption of child; adoption into family; grafting (plant); + adoptio_F_N = mkN "adoptio" "adoptionis" feminine ; -- [XXXCO] :: adoption of child; adoption into family; grafting (plant); adoptionismus_M_N = mkN "adoptionismus" ; -- [EEXFE] :: heresy of adoptionism (that Christ is Son of God by adoption only); adoptivus_A = mkA "adoptivus" "adoptiva" "adoptivum" ; -- [XXXCO] :: adoptive, obtained by adoption; formed by grafting; adopto_V2 = mkV2 (mkV "adoptare") ; -- [XXXBO] :: adopt, select, secure, pick out; wish/name for oneself; adopt legally; - ador_N_N = mkN "ador" "adoris " neuter ; -- [XXXEO] :: coarse grain; emmer wheat; spelt; + ador_N_N = mkN "ador" "adoris" neuter ; -- [XXXEO] :: coarse grain; emmer wheat; spelt; adorabilis_A = mkA "adorabilis" "adorabilis" "adorabile" ; -- [XXXFO] :: adorable, worthy of adoration/veneration; adorandus_A = mkA "adorandus" "adoranda" "adorandum" ; -- [FXXFE] :: adorable, worthy of adoration/veneration; - adoratio_F_N = mkN "adoratio" "adorationis " feminine ; -- [XEXEO] :: act of worship or prayer; - adorator_M_N = mkN "adorator" "adoratoris " masculine ; -- [EEXDP] :: worshipper, adorer, one who worships/prays/reverences; + adoratio_F_N = mkN "adoratio" "adorationis" feminine ; -- [XEXEO] :: act of worship or prayer; + adorator_M_N = mkN "adorator" "adoratoris" masculine ; -- [EEXDP] :: worshipper, adorer, one who worships/prays/reverences; adordino_V2 = mkV2 (mkV "adordinare") ; -- [XXXES] :: set in order, arrange; adorea_F_N = mkN "adorea" ; -- [XXXDL] :: prize of value; (anciently, gift of grain); 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; + 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; @@ -2388,200 +2388,200 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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); + adparatrix_F_N = mkN "adparatrix" "adparatricis" feminine ; -- [DXXFS] :: she who prepares (sacrifices); 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; + 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; + 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); adparitura_F_N = mkN "adparitura" ; -- [XLXFO] :: attendance on a magistrate, (civil) service; adparo_V2 = mkV2 (mkV "adparare") ; -- [XXXBO] :: prepare, fit out, make ready, equip, provide; attempt; organize (project); adpectoro_V2 = mkV2 (mkV "adpectorare") ; -- [DXXFS] :: press/clasp to the breast; - adpellatio_F_N = mkN "adpellatio" "adpellationis " feminine ; -- [XXXBO] :: appeal (to higher authority); name, term; noun; title, rank; pronunciation; + adpellatio_F_N = mkN "adpellatio" "adpellationis" feminine ; -- [XXXBO] :: appeal (to higher authority); name, term; noun; title, rank; pronunciation; adpellativus_A = mkA "adpellativus" "adpellativa" "adpellativum" ; -- [XGXFO] :: of the nature of a noun, nominal; appellative, belonging to a species (L+S); - adpellator_M_N = mkN "adpellator" "adpellatoris " masculine ; -- [XXXCO] :: appellant, one who appeals; + 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 "adpellere" "adpello" "adpuli" "adpulsus ") ; -- [XXXBO] :: drive to, move up, bring along, force towards; put ashore at, land (ship); + 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; + 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; + 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; + 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; + 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); + 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; + 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; + 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; + 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; + adpositio_F_N = mkN "adpositio" "adpositionis" feminine ; -- [XXXFO] :: comparison, action of comparing; adpositum_N_N = mkN "adpositum" ; -- [XGXFO] :: adjective, epithet; 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); + 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; + 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; + 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); + 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; + 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; adprobe_Adv = mkAdv "adprobe" ; -- [XXXEO] :: excellently; 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; + 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; + adpropinquatio_F_N = mkN "adpropinquatio" "adpropinquationis" feminine ; -- [XXXEO] :: approach, drawing near; adpropinquo_V = mkV "adpropinquare" ; -- [XXXCO] :: approach (w/DAT or ad+ACC); come near to, draw near/nigh (space/time); be close; adpropio_V = mkV "adpropiare" ; -- [DXXCB] :: approach (w/DAT or ad+ACC); come near to, draw near/nigh (space/time); be close; - adpropriatio_F_N = mkN "adpropriatio" "adpropriationis " feminine ; -- [DXXES] :: appropriation, making one's own; [~ ciborum => making flesh/blood of food]; + adpropriatio_F_N = mkN "adpropriatio" "adpropriationis" feminine ; -- [DXXES] :: appropriation, making one's own; [~ ciborum => making flesh/blood of food]; adproprio_V = mkV "adpropriare" ; -- [DXXFS] :: appropriate, make one's own; 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; + adpulsus_M_N = mkN "adpulsus" "adpulsus" masculine ; -- [XXXCO] :: bringing/driving to (cattle) (/right to); landing; approach; influence, impact; 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; + 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 = 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); + 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]; + 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; 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); + 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 "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); + 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; - adrogatio_F_N = mkN "adrogatio" "adrogationis " feminine ; -- [XLXEO] :: act of adopting a adult as son homo sui juris (vs. in potestate parentis); - adrogator_M_N = mkN "adrogator" "adrogatoris " masculine ; -- [XLXEO] :: one who adopts a adult as son by arrogatio (homo sui juris); + adrogatio_F_N = mkN "adrogatio" "adrogationis" feminine ; -- [XLXEO] :: act of adopting a adult as son homo sui juris (vs. in potestate parentis); + adrogator_M_N = mkN "adrogator" "adrogatoris" masculine ; -- [XLXEO] :: one who adopts a adult as son by arrogatio (homo sui juris); adrogo_V2 = mkV2 (mkV "adrogare") ; -- [XXXCO] :: |adopt (an adult) as one's son (esp. at his instance); adroro_V = mkV "adrorare" ; -- [DXXFS] :: moisten, bedew; - adrosor_M_N = mkN "adrosor" "adrosoris " masculine ; -- [XXXFO] :: one who nibbles/gnaws at; + 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; + 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; + 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; + 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; + 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; + 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; - adscriptor_M_N = mkN "adscriptor" "adscriptoris " masculine ; -- [XXXEO] :: seconder, supporter, countersigner, one adding name to document as approving; + adscriptor_M_N = mkN "adscriptor" "adscriptoris" masculine ; -- [XXXEO] :: seconder, supporter, countersigner, one adding name to document as approving; adsecla_M_N = mkN "adsecla" ; -- [XXXCO] :: follower; attendant, servant; hanger-on, sycophant, creature; - adsectatio_F_N = mkN "adsectatio" "adsectationis " feminine ; -- [XXXEO] :: waiting on, (respectful) attendance; support (in canvassing); study, research; - adsectator_M_N = mkN "adsectator" "adsectatoris " masculine ; -- [XXXCO] :: follower, companion, attendant; disciple; researcher, student, one who seeks; + adsectatio_F_N = mkN "adsectatio" "adsectationis" feminine ; -- [XXXEO] :: waiting on, (respectful) attendance; support (in canvassing); study, research; + adsectator_M_N = mkN "adsectator" "adsectatoris" masculine ; -- [XXXCO] :: follower, companion, attendant; disciple; researcher, student, one who seeks; adsector_V = mkV "adsectari" ; -- [XXXCO] :: accompany, attend, escort; support, be an adherent, follow; court (fame); adsecue_Adv = mkAdv "adsecue" ; -- [XXXFO] :: attentively, closely; adsecula_M_N = mkN "adsecula" ; -- [XXXCO] :: follower; attendant, servant; hanger-on, sycophant, creature; - 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; + 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; - adsentatio_F_N = mkN "adsentatio" "adsentationis " feminine ; -- [XXXCO] :: assent, agreement; flattery, toadyism, flattering agreement/compliance; + 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; + adsentatio_F_N = mkN "adsentatio" "adsentationis" feminine ; -- [XXXCO] :: assent, agreement; flattery, toadyism, flattering agreement/compliance; adsentatiuncula_F_N = mkN "adsentatiuncula" ; -- [XXXEO] :: piece of flattery; petty/trivial flattery; (L+S); - adsentator_M_N = mkN "adsentator" "adsentatoris " masculine ; -- [XXXCO] :: yes-man, flatterer, toady; + 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); + 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; + 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 = mkV2 (mkV "adservire" "adservio" "adservivi" "adservitus ") Dat_Prep ; -- [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; + 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; adsessorium_N_N = mkN "adsessorium" ; -- [XLXFO] :: title of a legal textbook (sg/pl.); adsessorius_A = mkA "adsessorius" "adsessoria" "adsessorium" ; -- [DLXFS] :: of/pertaining to an assessor; adsessura_F_N = mkN "adsessura" ; -- [XLXFO] :: assistance as a legal advisor; - adsessus_M_N = mkN "adsessus" "adsessus " masculine ; -- [XLXFO] :: sitting beside one (in court); - adsestrix_F_N = mkN "adsestrix" "adsestricis " feminine ; -- [XLXFO] :: assessor (female), counselor, one who sits by to give advice; + adsessus_M_N = mkN "adsessus" "adsessus" masculine ; -- [XLXFO] :: sitting beside one (in court); + adsestrix_F_N = mkN "adsestrix" "adsestricis" feminine ; -- [XLXFO] :: assessor (female), counselor, one who sits by to give advice; adseveranter_Adv = mkAdv "adseveranter" ; -- [XXXEO] :: earnestly, emphatically; adseverate_Adv = mkAdv "adseverate" ; -- [XXXEO] :: earnestly, emphatically; - adseveratio_F_N = mkN "adseveratio" "adseverationis " feminine ; -- [XXXCO] :: affirmation, (confident/earnest) assertion; seriousness/earnestness, gravity; + 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; @@ -2589,128 +2589,128 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; 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; + 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); + 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 + 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; adsimilis_A = mkA "adsimilis" "adsimilis" "adsimile" ; -- [XXXCO] :: similar, like; close; closely resembling, very like; adsimiliter_Adv = mkAdv "adsimiliter" ; -- [XXXFO] :: similarly, in much the same manner/fashion; adsimilo_V2 = mkV2 (mkV "adsimilare") ; -- [XXXAO] :: make like; compare; counterfeit, simulate, imitate, pretend, feign, act a part; adsimulanter_Adv = mkAdv "adsimulanter" ; -- [XXXEO] :: similarly, analogically; adsimulaticius_A = mkA "adsimulaticius" "adsimulaticia" "adsimulaticium" ; -- [DLXES] :: imitated, counterfeit, not real; nominal, titular; - adsimulatio_F_N = mkN "adsimulatio" "adsimulationis " feminine ; -- [XXXDO] :: likeness, similarity in form; comparison; deceit, pretense; + adsimulatio_F_N = mkN "adsimulatio" "adsimulationis" feminine ; -- [XXXDO] :: likeness, similarity in form; comparison; deceit, pretense; 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; + 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; + adsociatio_F_N = mkN "adsociatio" "adsociationis" feminine ; -- [FXXEE] :: association; accompaniment; escort; adsocio_V = mkV "adsociare" ; -- [XXXFO] :: join (to), associate (with); adsocius_A = mkA "adsocius" "adsocia" "adsocium" ; -- [DXXFS] :: associated with; adsoleo_V = mkV "adsolere" ; -- [XXXCO] :: be accustomed/in the habit of; be customary accompaniment, go with; be usual; adsolet_V0 = mkV0 "adsolet" ; -- [XXXCO] :: it is usual/wont; it is the custom/practice; it is the habit; 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; - adspargo_V2 = mkV2 (mkV "adspargere" "adspargo" "adsparsi" "adsparsus ") ; -- [XXXAO] :: sprinkle/strew on, splatter, splash; defile, stain; cast (slur); inflict (harm); + adspargo_F_N = mkN "adspargo" "adsparginis" feminine ; -- [XXXBO] :: spray, sprinkling/scattering; moisture in form of drops; water damage; staining; + 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; + 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); + 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; + 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; + 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; + 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; + 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; 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; + 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); 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; + 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; + 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; + 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; + 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); + 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); + 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; + 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?; + 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; + 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; + 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; 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); + adtenuatio_F_N = mkN "adtenuatio" "adtenuationis" feminine ; -- [XXXEO] :: diminution, act of lessening, attenuation; plainness (of style); 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; + 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; + 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; + 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?; + 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; @@ -2720,40 +2720,40 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat adtonitus_A = mkA "adtonitus" "adtonita" "adtonitum" ; -- [XXXBO] :: astonished, fascinated; lightning/thunder-struck, stupefied, dazed; inspired; adtono_V2 = mkV2 (mkV "adtonare") ; -- [XXXEO] :: strike with lightning, blast; drive crazy, distract; adtorqueo_V2 = mkV2 (mkV "adtorquere") ; -- [XXXEO] :: whirl at; hurl upwards; - adtractio_F_N = mkN "adtractio" "adtractionis " feminine ; -- [XXXFS] :: contraction, drawing together; + 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; 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; + 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; + 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; + adtritio_F_N = mkN "adtritio" "adtritionis" feminine ; -- [DXXES] :: rubbing/grinding against/on (something); friction, abrasion; 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; + 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; - adulatio_F_N = mkN "adulatio" "adulationis " feminine ; -- [XXXCO] :: flattery, adulation; prostrating oneself; fawning (dogs), (pigeon) courtship; - adulator_M_N = mkN "adulator" "adulatoris " masculine ; -- [XXXCO] :: servile flatterer, sycophant; + adulatio_F_N = mkN "adulatio" "adulationis" feminine ; -- [XXXCO] :: flattery, adulation; prostrating oneself; fawning (dogs), (pigeon) courtship; + adulator_M_N = mkN "adulator" "adulatoris" masculine ; -- [XXXCO] :: servile flatterer, sycophant; adulatorie_Adv = mkAdv "adulatorie" ; -- [XXXES] :: falteringly, fawningly, ingratiatingly; adulatorius_A = mkA "adulatorius" "adulatoria" "adulatorium" ; -- [XXXFO] :: flattering, adulatory; of/connected with flattery/adulation; - adulatrix_F_N = mkN "adulatrix" "adulatricis " feminine ; -- [DXXES] :: flatterer (female); + adulatrix_F_N = mkN "adulatrix" "adulatricis" feminine ; -- [DXXES] :: flatterer (female); adulescens_A = mkA "adulescens" "adulescentis"; -- [XXXCO] :: young, youthful; "minor" (in reference to the younger of two having same name); - adulescens_F_N = mkN "adulescens" "adulescentis " feminine ; -- [XXXCO] :: young man, youth; youthful person; young woman/girl; - adulescens_M_N = mkN "adulescens" "adulescentis " masculine ; -- [XXXCO] :: young man, youth; youthful person; young woman/girl; + adulescens_F_N = mkN "adulescens" "adulescentis" feminine ; -- [XXXCO] :: young man, youth; youthful person; young woman/girl; + adulescens_M_N = mkN "adulescens" "adulescentis" masculine ; -- [XXXCO] :: young man, youth; youthful person; young woman/girl; adulescentia_F_N = mkN "adulescentia" ; -- [XXXBO] :: youth, young manhood; characteristic of being young, youthfulness; the young; adulescentior_V = mkV "adulescentiari" ; -- [XXXFO] :: behave in a youthful manner; adulescentula_F_N = mkN "adulescentula" ; -- [XXXCO] :: young woman; very young woman; "my child"; @@ -2765,54 +2765,54 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat adulter_A = mkA "adulter" "adultera" "adulterum" ; -- [XXXCO] :: |forged/counterfeit; debased (coinage); [~ clavis => skeleton/false key]; adulter_M_N = mkN "adulter" ; -- [XXXCO] :: adulterer; illicit lover, paramour; offspring of unlawful love, bastard (eccl.); adultera_F_N = mkN "adultera" ; -- [XXXCO] :: adulteress; mistress; unchaste woman; - adulteratio_F_N = mkN "adulteratio" "adulterationis " feminine ; -- [XXXNO] :: adulteration; corruption/debasement by spurious admixture/crossbreeding; - adulterator_M_N = mkN "adulterator" "adulteratoris " masculine ; -- [XXXFO] :: one who counterfeits or debases (the coinage); + adulteratio_F_N = mkN "adulteratio" "adulterationis" feminine ; -- [XXXNO] :: adulteration; corruption/debasement by spurious admixture/crossbreeding; + adulterator_M_N = mkN "adulterator" "adulteratoris" masculine ; -- [XXXFO] :: one who counterfeits or debases (the coinage); adulteratus_A = mkA "adulteratus" "adulterata" "adulteratum" ; -- [XXXEO] :: mixed, adulterated; produced by crossbreeding; of mixed decent/origin; adulterinus_A = mkA "adulterinus" "adulterina" "adulterinum" ; -- [XXXCO] :: counterfeit, forged, false; impure, mixed, crossbred; adulterous, illicit; - adulteritas_F_N = mkN "adulteritas" "adulteritatis " feminine ; -- [XXXES] :: adultery; blending/mixing of different strains/ingredients; contamination; + adulteritas_F_N = mkN "adulteritas" "adulteritatis" feminine ; -- [XXXES] :: adultery; blending/mixing of different strains/ingredients; contamination; adulterium_N_N = mkN "adulterium" ; -- [XXXBO] :: adultery; blending/mixing of different strains/ingredients; contamination; 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; + adultrix_F_N = mkN "adultrix" "adultricis" feminine ; -- [XXXES] :: adulteress; mistress; unchaste woman; 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; + adumbratio_F_N = mkN "adumbratio" "adumbrationis" feminine ; -- [XXXEO] :: sketch, outline; sketching in light and shade; false show, pretense; adumbratus_A = mkA "adumbratus" "adumbrata" "adumbratum" ; -- [XXXCO] :: sketchy, shadowy, unsubstantial, obscure; outline; pretended, feigned, spurious; adumbro_V2 = mkV2 (mkV "adumbrare") ; -- [XXXCO] :: sketch out, silhouette, outline, represent; shade, screen, obscure; feign; - adunatio_F_N = mkN "adunatio" "adunationis " feminine ; -- [DXXES] :: union, uniting, making into one; - aduncitas_F_N = mkN "aduncitas" "aduncitatis " feminine ; -- [XXXEO] :: hookedness, hooked shape; inward curvature; + adunatio_F_N = mkN "adunatio" "adunationis" feminine ; -- [DXXES] :: union, uniting, making into one; + aduncitas_F_N = mkN "aduncitas" "aduncitatis" feminine ; -- [XXXEO] :: hookedness, hooked shape; inward curvature; 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; - 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); + 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; + 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); adustus_A = mkA "adustus" "adusta" "adustum" ; -- [XXXCO] :: burned by the sun; torrid; browned/scorched/charred/burned; dusky/swarthy/dark; advecticius_A = mkA "advecticius" "advecticia" "advecticium" ; -- [XXXFO] :: imported, foreign (merchandise/goods); - advectio_F_N = mkN "advectio" "advectionis " feminine ; -- [XXXNO] :: transportation (of merchandise/goods), carriage; + advectio_F_N = mkN "advectio" "advectionis" feminine ; -- [XXXNO] :: transportation (of merchandise/goods), carriage; advectius_A = mkA "advectius" "advectia" "advectium" ; -- [DXXES] :: imported, foreign (merchandise/goods); advecto_V2 = mkV2 (mkV "advectare") ; -- [XXXEO] :: import, bring (merchandise/goods) from abroad; - advector_M_N = mkN "advector" "advectoris " masculine ; -- [XXXES] :: carrier, one who conveys/carries a thing to a place; importer; + 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 (?); + 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; + 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); advento_V = mkV "adventare" ; -- [XXXBO] :: approach, come to, draw near; arrive, "turn up"; come in (tide); approximate; - adventor_M_N = mkN "adventor" "adventoris " masculine ; -- [XXXCO] :: visitor, newcomer, stranger; customer, incoming tenant; + adventor_M_N = mkN "adventor" "adventoris" masculine ; -- [XXXCO] :: visitor, newcomer, stranger; customer, incoming tenant; adventoria_F_N = mkN "adventoria" ; -- [XXXES] :: banquet given on one's arrival; adventorius_A = mkA "adventorius" "adventoria" "adventorium" ; -- [XXXFS] :: pertaining to an arrival/guest; - adventus_M_N = mkN "adventus" "adventus " masculine ; -- [XXXAO] :: arrival, approach; visit, appearance, advent; ripening; invasion, incursion; + adventus_M_N = mkN "adventus" "adventus" masculine ; -- [XXXAO] :: arrival, approach; visit, appearance, advent; ripening; invasion, incursion; advenus_A = mkA "advenus" "advena" "advenum" ; -- [XXXCS] :: foreign, alien; migrant; recently arrived; unskilled, inexperienced, ignorant; adverbero_V2 = mkV2 (mkV "adverberare") ; -- [XXXFO] :: beat upon; strike against; adverbialis_A = mkA "adverbialis" "adverbialis" "adverbiale" ; -- [DGXES] :: adverbial, pertaining to an adverb; derived from adverb(s); @@ -2825,78 +2825,78 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat adversarium_N_N = mkN "adversarium" ; -- [XXXEO] :: temporary memorandum/account/day book (pl.); opponent's arguments/assertions; adversarius_A = mkA "adversarius" "adversaria" "adversarium" ; -- [XXXCO] :: opposed (to), hostile, inimical, adverse; harmful, injurious, prejudicial; adversarius_C_N = mkN "adversarius" ; -- [XXXBO] :: enemy, adversary, antagonist, opponent, rival, foe; of an opposing party; - adversatio_F_N = mkN "adversatio" "adversationis " feminine ; -- [DXXES] :: opposition, opposing; + adversatio_F_N = mkN "adversatio" "adversationis" feminine ; -- [DXXES] :: opposition, opposing; adversativus_A = mkA "adversativus" "adversativa" "adversativum" ; -- [DGXES] :: adversative; (conjunctions like although, even if, yet, nevertheless); - adversator_M_N = mkN "adversator" "adversatoris " masculine ; -- [XXXFO] :: antagonist, opponent; - adversatrix_F_N = mkN "adversatrix" "adversatricis " feminine ; -- [XXXEO] :: female antagonist/opponent/enemy; + adversator_M_N = mkN "adversator" "adversatoris" masculine ; -- [XXXFO] :: antagonist, opponent; + adversatrix_F_N = mkN "adversatrix" "adversatricis" feminine ; -- [XXXEO] :: female antagonist/opponent/enemy; adverse_Adv = mkAdv "adverse" ; -- [XXXFO] :: in a self contradictory manner, inconsistently; - adversio_F_N = mkN "adversio" "adversionis " feminine ; -- [DXXES] :: turning/directing (one thing towards another); - adversipes_F_N = mkN "adversipes" "adversipedis " feminine ; -- [DXXFS] :: antipodes (pl.); - adversitas_F_N = mkN "adversitas" "adversitatis " feminine ; -- [FXXEZ] :: adversity; power of counteracting, efficacy as an antidote (Pliny); - adversitor_M_N = mkN "adversitor" "adversitoris " masculine ; -- [XXXFS] :: one who goes to meet another; slave who went to meet/accompany master home; + adversio_F_N = mkN "adversio" "adversionis" feminine ; -- [DXXES] :: turning/directing (one thing towards another); + adversipes_F_N = mkN "adversipes" "adversipedis" feminine ; -- [DXXFS] :: antipodes (pl.); + adversitas_F_N = mkN "adversitas" "adversitatis" feminine ; -- [FXXEZ] :: adversity; power of counteracting, efficacy as an antidote (Pliny); + 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; 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_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); + 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; + 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; - advocator_M_N = mkN "advocator" "advocatoris " masculine ; -- [DEXES] :: advocate; + advocatio_F_N = mkN "advocatio" "advocationis" feminine ; -- [XXXCO] :: legal support/advisors; delay, adjournment, postponement; pleading in courts; + advocator_M_N = mkN "advocator" "advocatoris" masculine ; -- [DEXES] :: advocate; advocatus_M_N = mkN "advocatus" ; -- [XXXBO] :: counselor, advocate, professional pleader; witness, supporter, mediator; advoco_V2 = mkV2 (mkV "advocare") ; -- [XXXAO] :: call, summon, invite, convoke, call for; call in as counsel; invoke the Gods; - advolatus_M_N = mkN "advolatus" "advolatus " masculine ; -- [XXXFO] :: flying towards/against; + 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; + 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; advorsarium_N_N = mkN "advorsarium" ; -- [BXXEX] :: temporary memorandum book (pl.), the opponent's arguments; advorsarius_A = mkA "advorsarius" "advorsaria" "advorsarium" ; -- [BXXDX] :: opposed (to), hostile, inimical, adverse; harmful, injurious, prejudicial; advorsarius_C_N = mkN "advorsarius" ; -- [BXXBX] :: enemy, adversary, antagonist, opponent, rival, foe; of an opposing party; - advorsator_M_N = mkN "advorsator" "advorsatoris " masculine ; -- [BXXFX] :: antagonist, opponent; - advorsatrix_F_N = mkN "advorsatrix" "advorsatricis " feminine ; -- [BXXEX] :: female antagonist/opponent/enemy; + advorsator_M_N = mkN "advorsator" "advorsatoris" masculine ; -- [BXXFX] :: antagonist, opponent; + advorsatrix_F_N = mkN "advorsatrix" "advorsatricis" feminine ; -- [BXXEX] :: female antagonist/opponent/enemy; advorse_Adv = mkAdv "advorse" ; -- [BXXFO] :: in a self contradictory manner, inconsistently; - advorsitas_F_N = mkN "advorsitas" "advorsitatis " feminine ; -- [BXXNO] :: power of counteracting, efficacy as an antidote; - advorsitor_M_N = mkN "advorsitor" "advorsitoris " masculine ; -- [BXXFS] :: one who goes to meet another; slave who went to meet/accompany master home; + advorsitas_F_N = mkN "advorsitas" "advorsitatis" feminine ; -- [BXXNO] :: power of counteracting, efficacy as an antidote; + 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); 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_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); + 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; aecclesia_F_N = mkN "aecclesia" ; -- [FEXEZ] :: church; assembly, meeting of the assembly (Greek); the (Universal) Church (Dif); aeclesia_F_N = mkN "aeclesia" ; -- [FEXEX] :: church; assembly, meeting of the assembly (Greek); the (Universal) Church (Dif); aeclesiasticus_A = mkA "aeclesiasticus" "aeclesiastica" "aeclesiasticum" ; -- [FEXFM] :: ecclesiastical; spiritual; (=ecclesiasticus); - aecor_N_N = mkN "aecor" "aecoris " neuter ; -- [XXXBO] :: level/smooth surface, plain; surface of the sea; sea, ocean; + 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; 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; + 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); + 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); aedificatiuncula_F_N = mkN "aedificatiuncula" ; -- [XTXFO] :: little building; construction; - aedificator_M_N = mkN "aedificator" "aedificatoris " masculine ; -- [XTXCO] :: builder, contractor, one who has buildings erected; architect, maker, creator; + aedificator_M_N = mkN "aedificator" "aedificatoris" masculine ; -- [XTXCO] :: builder, contractor, one who has buildings erected; architect, maker, creator; aedificatoria_F_N = mkN "aedificatoria" ; -- [DTXES] :: architecture; aedificatorius_A = mkA "aedificatorius" "aedificatoria" "aedificatorium" ; -- [DTXES] :: pertaining to building/construction; aedificatus_A = mkA "aedificatus" "aedificata" "aedificatum" ; -- [XXXDE] :: built, erected, constructed, made; created; established; improved; @@ -2907,77 +2907,77 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat aedifio_V = mkV "aediferi" ; -- [DXXES] :: be build/erected/constructed/made/created/established; (aedifacio PASS); aedilicius_A = mkA "aedilicius" "aedilicia" "aedilicium" ; -- [XLXCO] :: of an aedile (magistrate - police, fire, market); of aedile rank/ex-aedile; aedilicius_M_N = mkN "aedilicius" ; -- [XLXCO] :: ex-aedile (magistrate - police, fire, market); one who has been an aedile; - aedilis_M_N = mkN "aedilis" "aedilis " masculine ; -- [XLXBO] :: aedile - commissioner (magistrate) of police/fire/markets/games; sacristan; - aedilitas_F_N = mkN "aedilitas" "aedilitatis " feminine ; -- [XLXCO] :: aedileship, the office of an aedile; the tenure of the aedileship; - aedis_F_N = mkN "aedis" "aedis " feminine ; -- [XEXBO] :: temple, shrine; tomb; apartment, room; house (pl.), abode/dwelling; household; + aedilis_M_N = mkN "aedilis" "aedilis" masculine ; -- [XLXBO] :: aedile - commissioner (magistrate) of police/fire/markets/games; sacristan; + aedilitas_F_N = mkN "aedilitas" "aedilitatis" feminine ; -- [XLXCO] :: aedileship, the office of an aedile; the tenure of the aedileship; + aedis_F_N = mkN "aedis" "aedis" feminine ; -- [XEXBO] :: temple, shrine; tomb; apartment, room; house (pl.), abode/dwelling; household; aeditimor_V = mkV "aeditimari" ; -- [BEXFO] :: act as sacristan, be in charge/take care of temple; aeditimus_M_N = mkN "aeditimus" ; -- [BEXCO] :: sacristan, one who has charge of a temple; custodian of a temple; aeditua_F_N = mkN "aeditua" ; -- [XEXIO] :: female sacristan, one who has charge of a temple; custodian of a temple; aeditualis_A = mkA "aeditualis" "aeditualis" "aedituale" ; -- [DEXFS] :: pertaining to a temple-keeper/sacristan; - aedituens_M_N = mkN "aedituens" "aedituentis " masculine ; -- [DEXFS] :: temple-keeper/sacristan; + aedituens_M_N = mkN "aedituens" "aedituentis" masculine ; -- [DEXFS] :: temple-keeper/sacristan; aeditumor_V = mkV "aeditumari" ; -- [XEXFO] :: act as sacristan, be in charge/take care of temple; aeditumus_M_N = mkN "aeditumus" ; -- [BEXDX] :: sacristan, one who has charge of a temple; custodian of a temple; aedituo_V = mkV "aedituare" ; -- [XEXIO] :: act as sacristan, be in charge/take care of temple; aedituus_M_N = mkN "aedituus" ; -- [XEXCO] :: sacristan, one who has charge of a temple; custodian of a temple; priest; - aedo_F_N = mkN "aedo" "aedonis " feminine ; -- [XAXEO] :: nightingale; - aedon_F_N = mkN "aedon" "aedonis " feminine ; -- [XAXEO] :: nightingale; + aedo_F_N = mkN "aedo" "aedonis" feminine ; -- [XAXEO] :: nightingale; + aedon_F_N = mkN "aedon" "aedonis" feminine ; -- [XAXEO] :: nightingale; aedonius_A = mkA "aedonius" "aedonia" "aedonium" ; -- [XAXFO] :: of the nightingale; 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; + 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; 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; - aegilops_F_N = mkN "aegilops" "aegilopis " feminine ; -- [XXXDO] :: name of some plants (turkey oak, grass); ulcer of the eye, lachrymal fistula; - aegis_F_N = mkN "aegis" "aegidis " feminine ; -- [XXXCO] :: aegis (Minerva's shield); shield, defense; wood nearest pith, heartwood; + aegilops_F_N = mkN "aegilops" "aegilopis" feminine ; -- [XXXDO] :: name of some plants (turkey oak, grass); ulcer of the eye, lachrymal fistula; + aegis_F_N = mkN "aegis" "aegidis" feminine ; -- [XXXCO] :: aegis (Minerva's shield); shield, defense; wood nearest pith, heartwood; 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?); 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; - aegonychos_F_N = mkN "aegonychos" "aegonychi " feminine ; -- [XAXNS] :: plant, lithospermon; (goat's hoof); - aegophthalmos_M_N = mkN "aegophthalmos" "aegophthalmi " masculine ; -- [XXXNO] :: precious stone; + 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; + aegonychos_F_N = mkN "aegonychos" "aegonychi" feminine ; -- [XAXNS] :: plant, lithospermon; (goat's hoof); + 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; - aegror_M_N = mkN "aegror" "aegroris " masculine ; -- [XXXFO] :: sickness, disease; - aegrotas_F_N = mkN "aegrotas" "aegrotatis " feminine ; -- [EBXEP] :: illness, sickness; + 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; + aegror_M_N = mkN "aegror" "aegroris" masculine ; -- [XXXFO] :: sickness, disease; + aegrotas_F_N = mkN "aegrotas" "aegrotatis" feminine ; -- [EBXEP] :: illness, sickness; aegrotaticius_A = mkA "aegrotaticius" "aegrotaticia" "aegrotaticium" ; -- [DBXFS] :: that is often ill; sickly; - aegrotatio_F_N = mkN "aegrotatio" "aegrotationis " feminine ; -- [XBXCO] :: sickness, disease; morbid desire/passion, unhealthy moral condition; - aegrotitas_F_N = mkN "aegrotitas" "aegrotitatis " feminine ; -- [EBXFP] :: illness, sickness; + aegrotatio_F_N = mkN "aegrotatio" "aegrotationis" feminine ; -- [XBXCO] :: sickness, disease; morbid desire/passion, unhealthy moral condition; + aegrotitas_F_N = mkN "aegrotitas" "aegrotitatis" feminine ; -- [EBXFP] :: illness, sickness; aegroto_V = mkV "aegrotare" ; -- [XXXCO] :: be sick; be distressed/mentally/morally ill, be afflicted, languish, grieve; aegrotus_A = mkA "aegrotus" "aegrota" "aegrotum" ; -- [XXXCO] :: sick, diseased; love-sick, pining; aegrotus_M_N = mkN "aegrotus" ; -- [XXXDO] :: sick/diseased person, invalid, patient; aegrum_N_N = mkN "aegrum" ; -- [XXXDO] :: diseased part of the body; diseased state; grief, feeling of distress; pain; aegyptilla_F_N = mkN "aegyptilla" ; -- [XXENO] :: precious stone found in Egypt; (saronyx and nicolo); aelinon_Interj = ss "aelinon" ; -- [XXXFO] :: exclamation of sorrow; "alas for Linus"; - aelinos_M_N = mkN "aelinos" "aelini " masculine ; -- [XXXFS] :: dirge, song of lament; + aelinos_M_N = mkN "aelinos" "aelini" masculine ; -- [XXXFS] :: dirge, song of lament; aelurus_M_N = mkN "aelurus" ; -- [XAXEO] :: cat; aemula_F_N = mkN "aemula" ; -- [XXXCO] :: rival (female); woman who strives to equal/exceed; rival in love; rival city; aemulanter_Adv = mkAdv "aemulanter" ; -- [DXXFS] :: emulously; enviously, jealously; - aemulatio_F_N = mkN "aemulatio" "aemulationis " feminine ; -- [XXXBO] :: rivalry, ambition; unfriendly rivalry; (envious) emulation, imitation; - aemulator_M_N = mkN "aemulator" "aemulatoris " masculine ; -- [XXXCO] :: imitator, rival; - aemulatrix_F_N = mkN "aemulatrix" "aemulatricis " feminine ; -- [DXXES] :: rival (female); woman who strives to equal/exceed; emulator (female); - aemulatus_M_N = mkN "aemulatus" "aemulatus " masculine ; -- [XXXFO] :: emulation, envy, rivalry; + aemulatio_F_N = mkN "aemulatio" "aemulationis" feminine ; -- [XXXBO] :: rivalry, ambition; unfriendly rivalry; (envious) emulation, imitation; + aemulator_M_N = mkN "aemulator" "aemulatoris" masculine ; -- [XXXCO] :: imitator, rival; + aemulatrix_F_N = mkN "aemulatrix" "aemulatricis" feminine ; -- [DXXES] :: rival (female); woman who strives to equal/exceed; emulator (female); + aemulatus_M_N = mkN "aemulatus" "aemulatus" masculine ; -- [XXXFO] :: emulation, envy, rivalry; aemulo_V2 = mkV2 (mkV "aemulare") ; -- [XXXCS] :: ape, imitate, emulate; be envious, jealous of, vie with a rival; copy (book); aemulor_V = mkV "aemulari" ; -- [XXXBO] :: ape, imitate, emulate; be envious, jealous of, vie with a rival; copy (book); aemulus_A = mkA "aemulus" "aemula" "aemulum" ; -- [XXXBO] :: envious, jealous, grudging, (things) comparable/equal (with/to); aemulus_M_N = mkN "aemulus" ; -- [XXXCO] :: rival, competitor, love rival; diligent imitator/follower; equal/peer; aena_F_N = mkN "aena" ; -- [XXXNO] :: card/comb used in treating of cloth/fibers; - aenator_M_N = mkN "aenator" "aenatoris " masculine ; -- [XXXDO] :: trumpeter; - aeneator_M_N = mkN "aeneator" "aeneatoris " masculine ; -- [XXXDO] :: trumpeter; + aenator_M_N = mkN "aenator" "aenatoris" masculine ; -- [XXXDO] :: trumpeter; + aeneator_M_N = mkN "aeneator" "aeneatoris" masculine ; -- [XXXDO] :: trumpeter; aeneolus_A = mkA "aeneolus" "aeneola" "aeneolum" ; -- [XXXEO] :: bronze, made of bronze; aeneum_N_N = mkN "aeneum" ; -- [XXXCO] :: vessel made of copper/bronze; brazen vessel; kettle, pot, cauldron; aeneus_A = mkA "aeneus" "aenea" "aeneum" ; -- [XXXCO] :: copper, of copper (alloy); bronze, made of bronze, bronze-colored; brazen; - aeniator_M_N = mkN "aeniator" "aeniatoris " masculine ; -- [XXXDO] :: trumpeter; - aenigma_N_N = mkN "aenigma" "aenigmatis " neuter ; -- [XXXCO] :: puzzle, enigma, riddle, obscure expression/saying; + aeniator_M_N = mkN "aeniator" "aeniatoris" masculine ; -- [XXXDO] :: trumpeter; + aenigma_N_N = mkN "aenigma" "aenigmatis" neuter ; -- [XXXCO] :: puzzle, enigma, riddle, obscure expression/saying; aenigmaticus_A = mkA "aenigmaticus" "aenigmatica" "aenigmaticum" ; -- [DXXES] :: enigmatic, like an enigma; obscure; puzzling; aenigmatista_M_N = mkN "aenigmatista" ; -- [DXXFS] :: enigmatist; one that proposes/speaks in riddles; aeniolus_A = mkA "aeniolus" "aeniola" "aeniolum" ; -- [EXXEW] :: bronze, made of bronze; @@ -2987,29 +2987,29 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat aenum_N_N = mkN "aenum" ; -- [XXXCO] :: vessel made of copper/bronze; brazen vessel; kettle, pot, cauldron; 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); + aeon_M_N = mkN "aeon" "aeonis" masculine ; -- [DXXFS] :: age; eternity; the Thirty Aeons (gods); 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; + 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; 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; + 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; - aequalitas_F_N = mkN "aequalitas" "aequalitatis " feminine ; -- [XXXBO] :: evenness; equality (of age/status/merit/distribution), uniformity, symmetry; + aequalitas_F_N = mkN "aequalitas" "aequalitatis" feminine ; -- [XXXBO] :: evenness; equality (of age/status/merit/distribution), uniformity, symmetry; aequaliter_Adv =mkAdv "aequaliter" "aequalitius" "aequalitissime" ; -- [XXXBO] :: evenly, alike, uniformly; equally, to an equal measure/extent; symmetrically; - aequamen_N_N = mkN "aequamen" "aequaminis " neuter ; -- [XXXFO] :: instrument for leveling; + aequamen_N_N = mkN "aequamen" "aequaminis" neuter ; -- [XXXFO] :: instrument for leveling; aequamentum_N_N = mkN "aequamentum" ; -- [DXXFS] :: equaling, requiting; aequanimis_A = mkA "aequanimis" "aequanimis" "aequanime" ; -- [XXXFS] :: kind, mild, calm; - aequanimitas_F_N = mkN "aequanimitas" "aequanimitatis " feminine ; -- [XXXDO] :: calmness of mind, patience, tranquility, equanimity; goodwill, favor; + aequanimitas_F_N = mkN "aequanimitas" "aequanimitatis" feminine ; -- [XXXDO] :: calmness of mind, patience, tranquility, equanimity; goodwill, favor; aequanimiter_Adv = mkAdv "aequanimiter" ; -- [DXXFS] :: calmly; with equanimity; aequanimus_A = mkA "aequanimus" "aequanima" "aequanimum" ; -- [XXXIO] :: mentally calm, composed, tranquil; - aequatio_F_N = mkN "aequatio" "aequationis " feminine ; -- [XXXEO] :: equal division/distribution; equalizing, equality; + aequatio_F_N = mkN "aequatio" "aequationis" feminine ; -- [XXXEO] :: equal division/distribution; equalizing, equality; aequationum_N_N = mkN "aequationum" ; -- [GSXEZ] :: equation, (mathematical relation); equality; - aequator_M_N = mkN "aequator" "aequatoris " masculine ; -- [XXXIO] :: one who equalizes; [aequator monetae => assayer]; + aequator_M_N = mkN "aequator" "aequatoris" masculine ; -- [XXXIO] :: one who equalizes; [aequator monetae => assayer]; aeque_Adv =mkAdv "aeque" "aequius" "aequissime" ; -- [XXXAO] :: equally, justly, fairly; in same/like manner/degree, just as; likewise, also; aequicrurius_A = mkA "aequicrurius" "aequicruria" "aequicrurium" ; -- [DSXFS] :: of equal legs; isosceles (triangle); - aequidiale_N_N = mkN "aequidiale" "aequidialis " neuter ; -- [BSXFS] :: equinox; + aequidiale_N_N = mkN "aequidiale" "aequidialis" neuter ; -- [BSXFS] :: equinox; aequidianus_A = mkA "aequidianus" "aequidiana" "aequidianum" ; -- [XXXFO] :: equinoctial, at the time of the equinox; aequidicus_M_N = mkN "aequidicus" ; -- [DPXES] :: verses (pl.) containing corresponding words or expressions; aequidistans_A = mkA "aequidistans" "aequidistantis"; -- [XXXFO] :: equidistant; parallel; @@ -3018,51 +3018,51 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat aequidisto_V = mkV "aequidistare" ; -- [GXXEK] :: be at equal distance; aequiformis_A = mkA "aequiformis" "aequiformis" "aequiforme" ; -- [DPXFS] :: uniform (connected words); aequilanx_A = mkA "aequilanx" "aequilancis"; -- [DXXFS] :: with equal scale; of equal weight; - aequilatatio_F_N = mkN "aequilatatio" "aequilatationis " feminine ; -- [XXXFO] :: area of uniform width, space between parallel lines; + aequilatatio_F_N = mkN "aequilatatio" "aequilatationis" feminine ; -- [XXXFO] :: area of uniform width, space between parallel lines; aequilateralis_A = mkA "aequilateralis" "aequilateralis" "aequilaterale" ; -- [DSXFS] :: equilateral, equal sides; aequilaterus_A = mkA "aequilaterus" "aequilatera" "aequilaterum" ; -- [DSXFS] :: equilateral, equal sides; aequilatus_A = mkA "aequilatus" "aequilata" "aequilatum" ; -- [ESXEP] :: equilateral, with equal sides; aequilavium_N_N = mkN "aequilavium" ; -- [XXXFS] :: half, a half of a whole; (wool when half the weight remains after washing); aequilibratus_A = mkA "aequilibratus" "aequilibrata" "aequilibratum" ; -- [DXXFS] :: level, on a level; horizontal; in perfect equilibrium (L+S); aequilibris_A = mkA "aequilibris" "aequilibris" "aequilibre" ; -- [XXXFO] :: level, on a level; horizontal; in perfect equilibrium (L+S); - aequilibritas_F_N = mkN "aequilibritas" "aequilibritatis " feminine ; -- [XXXFO] :: equal proportion, equilibrium; + aequilibritas_F_N = mkN "aequilibritas" "aequilibritatis" feminine ; -- [XXXFO] :: equal proportion, equilibrium; aequilibrium_N_N = mkN "aequilibrium" ; -- [XXXEO] :: state of equilibrium; reciprocity, equivalence; level/horizontal position (L+S); aequilibro_V2 = mkV2 (mkV "aequilibrare") ; -- [XXXFO] :: keep in a state of equilibrium/balance; aequiliter_Adv = mkAdv "aequiliter" ; -- [FXXEE] :: equally, evenly, uniformly; aequimanus_A = mkA "aequimanus" "aequimana" "aequimanum" ; -- [DXXES] :: ambidextrous, can use both hands equally; equal in two pursuits/departments; - aequinoctiale_N_N = mkN "aequinoctiale" "aequinoctialis " neuter ; -- [XSXFS] :: equinox; + aequinoctiale_N_N = mkN "aequinoctiale" "aequinoctialis" neuter ; -- [XSXFS] :: equinox; aequinoctialis_A = mkA "aequinoctialis" "aequinoctialis" "aequinoctiale" ; -- [XSXCO] :: equinoctial, of/connected with the equinox; [~ circulus => celestial equator]; aequinoctium_N_N = mkN "aequinoctium" ; -- [XSXCO] :: equinox; aequipar_A = mkA "aequipar" "aequiparis"; -- [XXXFO] :: equal; exactly/perfectly alike; aequiparabilis_A = mkA "aequiparabilis" "aequiparabilis" "aequiparabile" ; -- [XXXEO] :: comparable, that may be compared/equated; aequiparantia_F_N = mkN "aequiparantia" ; -- [DXXFS] :: comparison; - aequiparatio_F_N = mkN "aequiparatio" "aequiparationis " feminine ; -- [XXXFS] :: comparable qualities/quantities; equality of status/strength; comparison; + aequiparatio_F_N = mkN "aequiparatio" "aequiparationis" feminine ; -- [XXXFS] :: comparable qualities/quantities; equality of status/strength; comparison; aequiparo_V2 = mkV2 (mkV "aequiparare") Dat_Prep ; -- [XXXCO] :: become/put on a equal/level with/to, rival, equal; equalize; compare, liken; aequipedus_A = mkA "aequipedus" "aequipeda" "aequipedum" ; -- [DSXES] :: isosceles (triangle); having equal feet; aequiperabilis_A = mkA "aequiperabilis" "aequiperabilis" "aequiperabile" ; -- [XXXEO] :: comparable, that may be compared/equated; aequiperantia_F_N = mkN "aequiperantia" ; -- [DXXES] :: comparison; - aequiperatio_F_N = mkN "aequiperatio" "aequiperationis " feminine ; -- [XXXFO] :: comparable qualities/quantities; equality of status/strength; comparison; + aequiperatio_F_N = mkN "aequiperatio" "aequiperationis" feminine ; -- [XXXFO] :: comparable qualities/quantities; equality of status/strength; comparison; aequipero_V2 = mkV2 (mkV "aequiperare") Dat_Prep ; -- [XXXCO] :: become/put on a equal/level with/to, rival, equal; equalize; compare, liken; aequipes_A = mkA "aequipes" "aequipedis"; -- [DSXES] :: isosceles (triangle); having equal feet; aequipollens_A = mkA "aequipollens" "aequipollentis"; -- [XGXES] :: equivalent, of equal value/significance; aequipondium_N_N = mkN "aequipondium" ; -- [XXXFO] :: equal/counterbalancing weight; aequisonantius_A = mkA "aequisonantius" "aequisonantia" "aequisonantium" ; -- [FDXEZ] :: equal-sounding; - aequitas_F_N = mkN "aequitas" "aequitatis " feminine ; -- [XXXBO] :: justice, equity, fairness, impartiality; symmetry, conformity; evenness; + aequitas_F_N = mkN "aequitas" "aequitatis" feminine ; -- [XXXBO] :: justice, equity, fairness, impartiality; symmetry, conformity; evenness; aequiter_Adv = mkAdv "aequiter" ; -- [XXXEO] :: in equal proportions, evenly, fairly; aequiternus_A = mkA "aequiternus" "aequiterna" "aequiternum" ; -- [DEXES] :: equally eternal, coeternal; - aequivalens_M_N = mkN "aequivalens" "aequivalentis " masculine ; -- [FXXEE] :: equivalent, of equal value or significance; + aequivalens_M_N = mkN "aequivalens" "aequivalentis" masculine ; -- [FXXEE] :: equivalent, of equal value or significance; aequivaleo_V2 = mkV2 (mkV "aequivalere") ; -- [XXXFS] :: have equal power, be equivalent; aequivocus_A = mkA "aequivocus" "aequivoca" "aequivocum" ; -- [XXXES] :: equivocal, ambiguous; of like significations; aequo_V2 = mkV2 (mkV "aequare") ; -- [XXXAO] :: level, make even/straight; equal; compare; reach as high or deep as; - aequor_N_N = mkN "aequor" "aequoris " neuter ; -- [XXXBO] :: level/smooth surface, plain; surface of the sea; sea, ocean; + 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; 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; + 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; aeracius_A = mkA "aeracius" "aeracia" "aeracium" ; -- [XXXFO] :: of copper/bronze; - aeramen_N_N = mkN "aeramen" "aeraminis " neuter ; -- [DXXES] :: copper, bronze (late form for aes); + aeramen_N_N = mkN "aeramen" "aeraminis" neuter ; -- [DXXES] :: copper, bronze (late form for aes); aeramentum_N_N = mkN "aeramentum" ; -- [XXXDO] :: prepared copper/bronze; a strip of copper/bronze; copper/bronze vessels (pl.); aeraria_F_N = mkN "aeraria" ; -- [XXXEO] :: copper mine; copper refinery/works; aerarium_N_N = mkN "aerarium" ; -- [XXXBO] :: treasury, its funds; part of Temple of Saturn in Rome holding public treasury; @@ -3075,25 +3075,25 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat aericrepitans_A = mkA "aericrepitans" "aericrepitantis"; -- [XXXFO] :: clanging/sounding with bronze/brass; aerifer_A = mkA "aerifer" "aerifera" "aeriferum" ; -- [XXXFO] :: carrying/bearing bronze (i.e., cymbals of the attendants of Bacchus); aerifice_Adv = mkAdv "aerifice" ; -- [XXXFO] :: with art/skill of the bronze worker; - aerinavigatio_F_N = mkN "aerinavigatio" "aerinavigationis " feminine ; -- [HXXEK] :: aviation; - aerinavis_F_N = mkN "aerinavis" "aerinavis " feminine ; -- [HXXEK] :: dirigible; + aerinavigatio_F_N = mkN "aerinavigatio" "aerinavigationis" feminine ; -- [HXXEK] :: aviation; + aerinavis_F_N = mkN "aerinavis" "aerinavis" feminine ; -- [HXXEK] :: dirigible; aerinus_A = mkA "aerinus" "aerina" "aerinum" ; -- [XXXNO] :: connected with/of darnel (weed found with wheat); of air, aerial; aeripes_A = mkA "aeripes" "aeripedis"; -- [XXXDO] :: brazen-footed; having/with feet of bronze; - aeriportus_M_N = mkN "aeriportus" "aeriportus " masculine ; -- [HXXEK] :: airport; + aeriportus_M_N = mkN "aeriportus" "aeriportus" masculine ; -- [HXXEK] :: airport; aerisonus_A = mkA "aerisonus" "aerisona" "aerisonum" ; -- [XXXDO] :: sounding with bronze/brass (instruments); aerius_A = mkA "aerius" "aeria" "aerium" ; -- [XXXBO] :: of/produced in/existing in/flying in air, airborne/aerial; towering, airy; blue; aerizusa_F_N = mkN "aerizusa" ; -- [XXXNO] :: kind of jasper; - aero_M_N = mkN "aero" "aeronis " masculine ; -- [XXXEO] :: kind of basket made with plaited reeds; hamper; + aero_M_N = mkN "aero" "aeronis" masculine ; -- [XXXEO] :: kind of basket made with plaited reeds; hamper; aerodromus_M_N = mkN "aerodromus" ; -- [HXXEK] :: airfield; aerodynamicus_A = mkA "aerodynamicus" "aerodynamica" "aerodynamicum" ; -- [HXXEK] :: aerodynamic; aeroides_A = mkA "aeroides" "aeroides" "aeroides" ; -- [XXXNO] :: cloudy; sky-blue (L+S); [beryllus aeroides => sapphire]; - aeroides_M_N = mkN "aeroides" "aeroidae " masculine ; -- [XXXNS] :: sky-blue; the color of air; (may only be ADJ); + aeroides_M_N = mkN "aeroides" "aeroidae" masculine ; -- [XXXNS] :: sky-blue; the color of air; (may only be ADJ); aerolithus_M_N = mkN "aerolithus" ; -- [HXXEK] :: aerolithe; aeromantia_F_N = mkN "aeromantia" ; -- [DEXFS] :: aeromancy, divination from the state of the air; aeronauticus_A = mkA "aeronauticus" "aeronautica" "aeronauticum" ; -- [HXXEK] :: aeronautic; aeronauticus_M_N = mkN "aeronauticus" ; -- [HXXEK] :: aircrew; - aeronavigans_F_N = mkN "aeronavigans" "aeronavigantis " feminine ; -- [HXXFE] :: airline personnel; - aeronavigans_M_N = mkN "aeronavigans" "aeronavigantis " masculine ; -- [HXXFE] :: airline personnel; + aeronavigans_F_N = mkN "aeronavigans" "aeronavigantis" feminine ; -- [HXXFE] :: airline personnel; + aeronavigans_M_N = mkN "aeronavigans" "aeronavigantis" masculine ; -- [HXXFE] :: airline personnel; aerophobus_M_N = mkN "aerophobus" ; -- [DBXFS] :: one who fears the air; aeroplaniga_M_N = mkN "aeroplaniga" ; -- [HXXEK] :: aviator, pilot of plane; aeroplanigera_F_N = mkN "aeroplanigera" ; -- [HXXEK] :: aircraft carrier; @@ -3105,17 +3105,17 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat aerugineus_A = mkA "aerugineus" "aeruginea" "aerugineum" ; -- [GXXEK] :: verdigris-colored; bluish-green/greenish-blue; aerugino_V = mkV "aeruginare" ; -- [DEXES] :: rust, become rusty; become cankered; aeruginosus_A = mkA "aeruginosus" "aeruginosa" "aeruginosum" ; -- [XXXEO] :: covered with verdigis; rusty; - aerugo_F_N = mkN "aerugo" "aeruginis " feminine ; -- [XXXCO] :: rust of copper, verdigris; canker of the mind, envy, ill-will, avarice; + aerugo_F_N = mkN "aerugo" "aeruginis" feminine ; -- [XXXCO] :: rust of copper, verdigris; canker of the mind, envy, ill-will, avarice; aerumna_F_N = mkN "aerumna" ; -- [XXXCO] :: toil, task, labor; hardship, trouble, affliction, distress, calamity; aerumnabilis_A = mkA "aerumnabilis" "aerumnabilis" "aerumnabile" ; -- [XXXEO] :: causing misery/trouble/hardship; distressing; aerumnosus_A = mkA "aerumnosus" "aerumnosa" "aerumnosum" ; -- [XXXCO] :: full of/afflicted with trouble/suffering, wretched; causing distress; aerumnula_F_N = mkN "aerumnula" ; -- [XXXFS] :: traveler's stick for carrying a bundle/bindle; - aeruscator_M_N = mkN "aeruscator" "aeruscatoris " masculine ; -- [XXXFO] :: beggar; itinerant juggler/entertainer (L+S); + aeruscator_M_N = mkN "aeruscator" "aeruscatoris" masculine ; -- [XXXFO] :: beggar; itinerant juggler/entertainer (L+S); aerusco_V = mkV "aeruscare" ; -- [XXXEO] :: beg; go begging; get money traveling and practicing juggling/legerdemain (L+S); - aes_N_N = mkN "aes" "aeris " neuter ; -- [XXXAO] :: money, pay, fee, fare; copper/bronze/brass, base metal; (w/alienum) debt; gong; - aesalon_M_N = mkN "aesalon" "aesalonis " masculine ; -- [XAXNS] :: species of hawk/falcon; + aes_N_N = mkN "aes" "aeris" neuter ; -- [XXXAO] :: money, pay, fee, fare; copper/bronze/brass, base metal; (w/alienum) debt; gong; + aesalon_M_N = mkN "aesalon" "aesalonis" masculine ; -- [XAXNS] :: species of hawk/falcon; aeschrologia_F_N = mkN "aeschrologia" ; -- [DGXFS] :: expression improper because of its ambiguity; - aeschynomene_F_N = mkN "aeschynomene" "aeschynomenes " feminine ; -- [XAXNS] :: plant which shrinks when touched (Mimosa pudica); sensitive plant; + aeschynomene_F_N = mkN "aeschynomene" "aeschynomenes" feminine ; -- [XAXNS] :: plant which shrinks when touched (Mimosa pudica); sensitive plant; aesculanus_A = mkA "aesculanus" "aesculana" "aesculanum" ; -- [FLXEE] :: pertaining to copper or money; aesculetum_N_N = mkN "aesculetum" ; -- [XXXDO] :: forest of durmast or Hungarian or Italian oak; district of Rome; aesculeus_A = mkA "aesculeus" "aesculea" "aesculeum" ; -- [XXXFO] :: of a variety of oak tree/wood, perhaps durmast or Hungarian or Italian oak; @@ -3124,15 +3124,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat aesculus_F_N = mkN "aesculus" ; -- [XXXCO] :: variety of oak tree, perhaps durmast or Hungarian oak, or Italian oak; aesnescia_F_N = mkN "aesnescia" ; -- [FLXFJ] :: seniority; aessomus_A = mkA "aessomus" "aessoma" "aessomum" ; -- [XXXFO] :: sleeveless; - aestas_F_N = mkN "aestas" "aestatis " feminine ; -- [XXXBO] :: summer; summer heat/weather; a year; + aestas_F_N = mkN "aestas" "aestatis" feminine ; -- [XXXBO] :: summer; summer heat/weather; a year; aesthetica_F_N = mkN "aesthetica" ; -- [FSXEE] :: esthetics; aestifer_A = mkA "aestifer" "aestifera" "aestiferum" ; -- [XXXCO] :: producing/causing/bringing heat; hot, sultry; aestimabilis_A = mkA "aestimabilis" "aestimabilis" "aestimabile" ; -- [XXXFO] :: having worth or value; - aestimatio_F_N = mkN "aestimatio" "aestimationis " feminine ; -- [XLXAO] :: valuation, estimation of money value; value, price; assessment of damages; - aestimator_M_N = mkN "aestimator" "aestimatoris " masculine ; -- [XXXCO] :: appraiser, valuer; judge; + aestimatio_F_N = mkN "aestimatio" "aestimationis" feminine ; -- [XLXAO] :: valuation, estimation of money value; value, price; assessment of damages; + aestimator_M_N = mkN "aestimator" "aestimatoris" masculine ; -- [XXXCO] :: appraiser, valuer; judge; aestimatorius_A = mkA "aestimatorius" "aestimatoria" "aestimatorium" ; -- [XXXEO] :: of/concerning the valuation of property; aestimatus_A = mkA "aestimatus" "aestimata" "aestimatum" ; -- [XXXEO] :: valuated (price/worth), assessed/estimated (the cost/situation); esteemed; - aestimatus_M_N = mkN "aestimatus" "aestimatus " masculine ; -- [XXXFO] :: valuation (of property), estimation of money value; value, price; + aestimatus_M_N = mkN "aestimatus" "aestimatus" masculine ; -- [XXXFO] :: valuation (of property), estimation of money value; value, price; aestimia_F_N = mkN "aestimia" ; -- [DXXFS] :: assessment; valuation, estimate; aestimium_N_N = mkN "aestimium" ; -- [DXXES] :: assessment; valuation, estimate; aestimo_V2 = mkV2 (mkV "aestimare") ; -- [XXXAO] :: value, assess; estimate; reckon; consider, judge (situation); esteem; @@ -3144,150 +3144,150 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat aestuabundus_A = mkA "aestuabundus" "aestuabunda" "aestuabundum" ; -- [DXXFS] :: foaming, fermenting; aestuarium_N_N = mkN "aestuarium" ; -- [XXXCO] :: tidal marsh/inlet/opening, marsh; (river) estuary; air shaft, vent; aestuarius_A = mkA "aestuarius" "aestuaria" "aestuarium" ; -- [GXXEK] :: agitated; - aestumatio_F_N = mkN "aestumatio" "aestumationis " feminine ; -- [XLXAS] :: valuation, estimation of money value; value, price; assessment of damages; + aestumatio_F_N = mkN "aestumatio" "aestumationis" feminine ; -- [XLXAS] :: valuation, estimation of money value; value, price; assessment of damages; 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; 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; + 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; + aetas_F_N = mkN "aetas" "aetatis" feminine ; -- [XXXAO] :: lifetime, age, generation; period; stage, period of life, time, era; aetatula_F_N = mkN "aetatula" ; -- [XXXCO] :: tender age of childhood; early time of life; youth; person of tender age; aeternabilis_A = mkA "aeternabilis" "aeternabilis" "aeternabile" ; -- [XXXFO] :: eternal, everlasting; aeternalis_A = mkA "aeternalis" "aeternalis" "aeternale" ; -- [XXXIO] :: eternal, everlasting; aeternaliter_Adv = mkAdv "aeternaliter" ; -- [DXXES] :: forever; - aeternitas_F_N = mkN "aeternitas" "aeternitatis " feminine ; -- [XXXBO] :: eternity, infinite time; immortality; permanence, durability; + aeternitas_F_N = mkN "aeternitas" "aeternitatis" feminine ; -- [XXXBO] :: eternity, infinite time; immortality; permanence, durability; 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; 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; + aether_M_N = mkN "aether" "aetheris" masculine ; -- [XXXBO] :: upper air; ether; heaven, sky; sky (as a god); space surrounding a deity; aethereus_A = mkA "aethereus" "aetherea" "aethereum" ; -- [XXXBO] :: ethereal, heavenly, divine, celestial; of the upper atmosphere; aloft; lofty; aetherius_A = mkA "aetherius" "aetheria" "aetherium" ; -- [XXXBO] :: ethereal, heavenly, divine, celestial; of the upper atmosphere; aloft; lofty; - aethiopis_F_N = mkN "aethiopis" "aethiopidis " feminine ; -- [XAXEO] :: species of sage (Salvia Aethiopis?); another plant; + aethiopis_F_N = mkN "aethiopis" "aethiopidis" feminine ; -- [XAXEO] :: species of sage (Salvia Aethiopis?); another plant; aethon_A = mkA "aethon" "aethonis"; -- [XXXFO] :: red-brown; tawny; aethra_F_N = mkN "aethra" ; -- [XXXCO] :: brightness, splendor (of heavenly bodies); clear/bright sky; heavens; pure air; aethylicus_A = mkA "aethylicus" "aethylica" "aethylicum" ; -- [GXXEK] :: ethyl; aetiologia_F_N = mkN "aetiologia" ; -- [DGXFS] :: bringing of proofs, allegation of reasons; inquiry into/explanation of causes; - aetites_F_N = mkN "aetites" "aetitae " feminine ; -- [XXXNO] :: aetites, eagle-stone (w/lapis) (stone, hollow with another substance within); - aetitis_F_N = mkN "aetitis" "aetitidis " feminine ; -- [XXXNO] :: precious stone; aetites, eagle-stone (hollow with another substance within); + aetites_F_N = mkN "aetites" "aetitae" feminine ; -- [XXXNO] :: aetites, eagle-stone (w/lapis) (stone, hollow with another substance within); + aetitis_F_N = mkN "aetitis" "aetitidis" feminine ; -- [XXXNO] :: precious stone; aetites, eagle-stone (hollow with another substance within); 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; + 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; 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; + aex_F_N = mkN "aex" "aegis" feminine ; -- [XXXEO] :: craggy rocks (pl.); rock (sg.) situated between islands of Tenedos and Chios; afa_F_N = mkN "afa" ; -- [DXXEZ] :: dust; afanna_F_N = mkN "afanna" ; -- [XXXEO] :: shifty excuses (pl.), evasive talk; affaber_A = mkA "affaber" "affabra" "affabrum" ; -- [XXXFS] :: made/prepared ingeniously/skillfully/with art; ingenious, skilled in art; affabilis_A = mkA "affabilis" "affabilis" "affabile" ; -- [XXXCO] :: easy of access/to talk to, affable, friendly, courteous; sympathetic (words); - affabilitas_F_N = mkN "affabilitas" "affabilitatis " feminine ; -- [XXXEO] :: affability, friendliness, courtesy; + affabilitas_F_N = mkN "affabilitas" "affabilitatis" feminine ; -- [XXXEO] :: affability, friendliness, courtesy; affabiliter_Adv =mkAdv "affabiliter" "affabilitius" "affabilitissime" ; -- [XXXEO] :: conversationally, in informal/friendly discourse; affabre_Adv = mkAdv "affabre" ; -- [XXXEO] :: skillfully, ingeniously, artistically; affabricatus_A = mkA "affabricatus" "affabricata" "affabricatum" ; -- [XXXFS] :: fitted/added to by art; - affamen_N_N = mkN "affamen" "affaminis " neuter ; -- [XXXEO] :: greeting, salutation, address; accosting; + affamen_N_N = mkN "affamen" "affaminis" neuter ; -- [XXXEO] :: greeting, salutation, address; accosting; affania_F_N = mkN "affania" ; -- [XXXES] :: trifling talk (pl.), chatter; idle jests; affatim_Adv = mkAdv "affatim" ; -- [XXXCO] :: sufficiently, amply, with complete satisfaction; - affatus_M_N = mkN "affatus" "affatus " masculine ; -- [XXXCO] :: address, speech, converse with; pronouncement, utterance (of); - affectatio_F_N = mkN "affectatio" "affectationis " feminine ; -- [XXXCO] :: seeking/striving for, aspiration to; affectation, straining for; claiming; + affatus_M_N = mkN "affatus" "affatus" masculine ; -- [XXXCO] :: address, speech, converse with; pronouncement, utterance (of); + affectatio_F_N = mkN "affectatio" "affectationis" feminine ; -- [XXXCO] :: seeking/striving for, aspiration to; affectation, straining for; claiming; affectato_Adv = mkAdv "affectato" ; -- [DXXES] :: studiously, zealously; - affectator_M_N = mkN "affectator" "affectatoris " masculine ; -- [XXXDO] :: aspirant, zealous seeker (of), one who strives to obtain/produce; + affectator_M_N = mkN "affectator" "affectatoris" masculine ; -- [XXXDO] :: aspirant, zealous seeker (of), one who strives to obtain/produce; affectatus_A = mkA "affectatus" "affectata" "affectatum" ; -- [XXXEO] :: studied, artificial, affected; affecte_Adv = mkAdv "affecte" ; -- [DXXES] :: deeply, with (strong) affection; - affectio_F_N = mkN "affectio" "affectionis " feminine ; -- [XXXAO] :: mental condition, mood, feeling, disposition; affection, love; purpose; + affectio_F_N = mkN "affectio" "affectionis" feminine ; -- [XXXAO] :: mental condition, mood, feeling, disposition; affection, love; purpose; affectiose_Adv =mkAdv "affectiose" "affectiosius" "affectiosissime" ; -- [EXXFP] :: feelingly; with (kindly) feeling; affectiosus_A = mkA "affectiosus" "affectiosa" "affectiosum" ; -- [DXXES] :: full of affection/attachment; affectivus_A = mkA "affectivus" "affectiva" "affectivum" ; -- [EXXEP] :: affective; of willing/desiring; affecto_V2 = mkV2 (mkV "affectare") ; -- [XXXBO] :: aim at, desire, aspire, try, lay claim to; try to control; feign, pretend; affector_V = mkV "affectari" ; -- [XXXCO] :: aim at, desire, aspire, try, lay claim to; try to control; feign, pretend; - affectrix_F_N = mkN "affectrix" "affectricis " feminine ; -- [DXXFS] :: aspirant (female); she who seeks/strives for (thing); + affectrix_F_N = mkN "affectrix" "affectricis" feminine ; -- [DXXFS] :: aspirant (female); she who seeks/strives for (thing); affectualis_A = mkA "affectualis" "affectualis" "affectuale" ; -- [EXXEP] :: depending on a temporary condition; affectuose_Adv =mkAdv "affectuose" "affectuosius" "affectuosissime" ; -- [EXXFP] :: feelingly; with (kindly) feeling; affectuosus_A = mkA "affectuosus" "affectuosa" "affectuosum" ; -- [DXXES] :: affectionate, kind, full of inclination/affection/love; 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; + 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; + 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; + 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; + 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; - affinitas_F_N = mkN "affinitas" "affinitatis " feminine ; -- [XXXBO] :: relation(ship) by marriage; relationship (man+wife), bond/union; neighborhood; + 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; + affinitas_F_N = mkN "affinitas" "affinitatis" feminine ; -- [XXXBO] :: relation(ship) by marriage; relationship (man+wife), bond/union; neighborhood; affirmanter_Adv = mkAdv "affirmanter" ; -- [XXXES] :: certainly, assuredly, with assurance; affirmate_Adv = mkAdv "affirmate" ; -- [XXXEO] :: with definite affirmation/solemn assertion, positively, certainly, assuredly; - affirmatio_F_N = mkN "affirmatio" "affirmationis " feminine ; -- [XXXCO] :: affirmation, strengthening of belief; assertion, dogmatic/positive statement; + affirmatio_F_N = mkN "affirmatio" "affirmationis" feminine ; -- [XXXCO] :: affirmation, strengthening of belief; assertion, dogmatic/positive statement; affirmativus_A = mkA "affirmativus" "affirmativa" "affirmativum" ; -- [DXXFS] :: affirming, affirmative; - affirmator_M_N = mkN "affirmator" "affirmatoris " masculine ; -- [XXXEO] :: one who makes a definite assertion/affirmation; + affirmator_M_N = mkN "affirmator" "affirmatoris" masculine ; -- [XXXEO] :: one who makes a definite assertion/affirmation; affirmo_V = mkV "affirmare" ; -- [XXXBO] :: affirm/assert (dogmatically/positively); confirm, ratify, restore; emphasize; - affixio_F_N = mkN "affixio" "affixionis " feminine ; -- [DXXES] :: joining/fastening to; an addition to; + affixio_F_N = mkN "affixio" "affixionis" feminine ; -- [DXXES] :: joining/fastening to; an addition to; affixum_N_N = mkN "affixum" ; -- [XXXFO] :: fixtures (pl.) pertaining thereto;, permanent fittings/appendages/appurtenances; affixus_A = mkA "affixus" "affixa" "affixum" ; -- [XXXES] :: fastened/joined to (person/thing); impressed on, fixed to; situated close to; - afflagrans_F_N = mkN "afflagrans" "afflagrantis " feminine ; -- [DXXFS] :: flaming/blazing up; turbulent, unquiet; - afflator_M_N = mkN "afflator" "afflatoris " masculine ; -- [DXXES] :: one who blows on/breathes into; - afflatus_M_N = mkN "afflatus" "afflatus " masculine ; -- [XXXBO] :: breath, snorting; breeze, wind, draught, (hot) blast; stench; inspiration, flash + afflagrans_F_N = mkN "afflagrans" "afflagrantis" feminine ; -- [DXXFS] :: flaming/blazing up; turbulent, unquiet; + afflator_M_N = mkN "afflator" "afflatoris" masculine ; -- [DXXES] :: one who blows on/breathes into; + afflatus_M_N = mkN "afflatus" "afflatus" masculine ; -- [XXXBO] :: breath, snorting; breeze, wind, draught, (hot) blast; stench; inspiration, flash afflecto_V2 = mkV2 (mkV "afflectare") ; -- [XXXFO] :: affect, move, influence (to a course of action); affleo_V = mkV "afflere" ; -- [XXXFO] :: weep/cry at; weep as an accompaniment; afflexus_A = mkA "afflexus" "afflexa" "afflexum" ; -- [XXXEO] :: bent/turned (towards); - afflictatio_F_N = mkN "afflictatio" "afflictationis " feminine ; -- [XXXEO] :: grievous suffering, torment, affliction; pain, torture; - afflictator_M_N = mkN "afflictator" "afflictatoris " masculine ; -- [DXXES] :: one who causes pain/suffering/torment/torture; tormenter; - afflictio_F_N = mkN "afflictio" "afflictionis " feminine ; -- [XXXFS] :: pain, suffering, torment; + afflictatio_F_N = mkN "afflictatio" "afflictationis" feminine ; -- [XXXEO] :: grievous suffering, torment, affliction; pain, torture; + afflictator_M_N = mkN "afflictator" "afflictatoris" masculine ; -- [DXXES] :: one who causes pain/suffering/torment/torture; tormenter; + afflictio_F_N = mkN "afflictio" "afflictionis" feminine ; -- [XXXFS] :: pain, suffering, torment; afflicto_V2 = mkV2 (mkV "afflictare") ; -- [XXXAO] :: shatter, damage, strike repeatedly, buffet, wreck; oppress, afflict; vex; - afflictor_M_N = mkN "afflictor" "afflictoris " masculine ; -- [XXXFO] :: one who strikes against/down/overthrows; + afflictor_M_N = mkN "afflictor" "afflictoris" masculine ; -- [XXXFO] :: one who strikes against/down/overthrows; afflictrix_A = mkA "afflictrix" "afflictricis"; -- [XXXFO] :: that strikes against/down/overthrows or collides with (female); - afflictrix_F_N = mkN "afflictrix" "afflictricis " feminine ; -- [XXXFO] :: one (female) who strikes against/down/overthrows; + 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; + 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; + 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; + 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; + 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); + 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; - agalmate_N_N = mkN "agalmate" "agalmatis " neuter ; -- [FXXEN] :: effigy; depiction of ruler on seal; + agalmate_N_N = mkN "agalmate" "agalmatis" neuter ; -- [FXXEN] :: effigy; depiction of ruler on seal; agamus_A = mkA "agamus" "agama" "agamum" ; -- [DXXES] :: unmarried; - agape_F_N = mkN "agape" "agapes " feminine ; -- [DEXES] :: Christian love/charity; love feast of early Christians; + agape_F_N = mkN "agape" "agapes" feminine ; -- [DEXES] :: Christian love/charity; love feast of early Christians; agaricum_N_N = mkN "agaricum" ; -- [XAXEO] :: agaric, species of corky tree (larch) fungus used as styptic/tinder/in dyeing; - agaso_M_N = mkN "agaso" "agasonis " masculine ; -- [XXXCO] :: driver, groom, stableboy; lackey, serving-man; - agathodaemon_M_N = mkN "agathodaemon" "agathodaemonis " masculine ; -- [XAEFS] :: Egyptian serpent to which healing power was ascribed; + agaso_M_N = mkN "agaso" "agasonis" masculine ; -- [XXXCO] :: driver, groom, stableboy; lackey, serving-man; + agathodaemon_M_N = mkN "agathodaemon" "agathodaemonis" masculine ; -- [XAEFS] :: Egyptian serpent to which healing power was ascribed; agathum_N_N = mkN "agathum" ; -- [FXXFV] :: notable/distinguished/characteristic thing; precious thing, one of great value; age_Interj = ss "age" ; -- [XXXCS] :: come!, go to!, well!, all right!; let come; agea_F_N = mkN "agea" ; -- [XWXFO] :: gangway between the rowers in a ship; agedum_Interj = ss "agedum" ; -- [XXXCO] :: come!, go to!, well!, all right!; agellulus_M_N = mkN "agellulus" ; -- [XAXEO] :: very small plot of land, very small field; agellus_M_N = mkN "agellus" ; -- [XAXCO] :: little field, small plot of land, farm, small estate; - agema_N_N = mkN "agema" "agematis " neuter ; -- [XWHEO] :: special division of the Macedonian army, royal bodyguard; + agema_N_N = mkN "agema" "agematis" neuter ; -- [XWHEO] :: special division of the Macedonian army, royal bodyguard; agenda_F_N = mkN "agenda" ; -- [FXXDE] :: ritual; what must be done; agenda; agens_A = mkA "agens" "agentis"; -- [XXXES] :: efficient, effective, powerful; - agens_M_N = mkN "agens" "agentis " masculine ; -- [XLXEO] :: advocate, pleader; secret police (pl.) (frumentarii/curiosi); land surveyors; + agens_M_N = mkN "agens" "agentis" masculine ; -- [XLXEO] :: advocate, pleader; secret police (pl.) (frumentarii/curiosi); land surveyors; 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?); + 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; @@ -3295,58 +3295,58 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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 "aggerere" "aggero" "aggessi" "aggestus ") ; -- [XXXBO] :: heap/cover up over, pile/build up, erect; accumulate; intensify, exaggerate; + aggeratio_F_N = mkN "aggeratio" "aggerationis" feminine ; -- [XXXFO] :: heaped/piled up material; + 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); + 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; - aggestus_M_N = mkN "aggestus" "aggestus " masculine ; -- [XXXDO] :: piling up; act of bringing; earthen bank, terrace; sprinkling earth over body; + aggestus_M_N = mkN "aggestus" "aggestus" masculine ; -- [XXXDO] :: piling up; act of bringing; earthen bank, terrace; sprinkling earth over body; 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; + 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; - aggressio_F_N = mkN "aggressio" "aggressionis " feminine ; -- [XXXDO] :: attack; action of setting about/undertaking (task); - aggressivitas_F_N = mkN "aggressivitas" "aggressivitatis " feminine ; -- [GXXEK] :: aggressiveness; - aggressor_M_N = mkN "aggressor" "aggressoris " masculine ; -- [XXXEO] :: attacker, assailant; + aggressio_F_N = mkN "aggressio" "aggressionis" feminine ; -- [XXXDO] :: attack; action of setting about/undertaking (task); + aggressivitas_F_N = mkN "aggressivitas" "aggressivitatis" feminine ; -- [GXXEK] :: aggressiveness; + aggressor_M_N = mkN "aggressor" "aggressoris" masculine ; -- [XXXEO] :: attacker, assailant; aggressura_F_N = mkN "aggressura" ; -- [XXXEO] :: attack, assault; - aggressus_M_N = mkN "aggressus" "aggressus " masculine ; -- [XXXFO] :: attack, assault; + 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; + agiaspis_M_N = mkN "agiaspis" "agiaspidis" masculine ; -- [XWXFS] :: soldiers with glittering/bright (brazen?) shields; 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; + 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; - aginator_M_N = mkN "aginator" "aginatoris " masculine ; -- [DXXFS] :: one stirred by small gain; + aginator_M_N = mkN "aginator" "aginatoris" masculine ; -- [DXXFS] :: one stirred by small gain; agino_V = mkV "aginare" ; -- [XXXFO] :: move heaven and earth, do one's best by hook or crook; agios_A = mkA "agios" "agia" "agion" ; -- [FXHFE] :: holy (Greek); - agipes_M_N = mkN "agipes" "agipedis " masculine ; -- [CLXFS] :: senator who silently passes over to him; senator for/with he intends to vote; + agipes_M_N = mkN "agipes" "agipedis" masculine ; -- [CLXFS] :: senator who silently passes over to him; senator for/with he intends to vote; agitabilis_A = mkA "agitabilis" "agitabilis" "agitabile" ; -- [XXXFO] :: easily moved, mobile; - 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); + 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); agitatus_A = mkA "agitatus" ; -- [XXXDO] :: agile, animated, brisk; - agitatus_M_N = mkN "agitatus" "agitatus " masculine ; -- [XXXEO] :: movement, activity, state of motion; + 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; - aglaophotis_F_N = mkN "aglaophotis" "aglaophotidis " feminine ; -- [XAXNS] :: magic herb of brilliant color; peony (Paeonia officinalis); - aglaspis_M_N = mkN "aglaspis" "aglaspidis " masculine ; -- [XWXFS] :: soldiers with bright/brazen shields; - agma_N_N = mkN "agma" "agmatis " neuter ; -- [XGXFO] :: nasalized G; - agmen_N_N = mkN "agmen" "agminis " neuter ; -- [XXXAO] :: stream; herd, flock, troop, crowd; marching army, column, line; procession; + aglaophotis_F_N = mkN "aglaophotis" "aglaophotidis" feminine ; -- [XAXNS] :: magic herb of brilliant color; peony (Paeonia officinalis); + aglaspis_M_N = mkN "aglaspis" "aglaspidis" masculine ; -- [XWXFS] :: soldiers with bright/brazen shields; + agma_N_N = mkN "agma" "agmatis" neuter ; -- [XGXFO] :: nasalized G; + agmen_N_N = mkN "agmen" "agminis" neuter ; -- [XXXAO] :: stream; herd, flock, troop, crowd; marching army, column, line; procession; 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; + 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; + agnatio_F_N = mkN "agnatio" "agnationis" feminine ; -- [XLXCO] :: birth after father's will/death; consanguinity through father/male ancestor; agnatum_N_N = mkN "agnatum" ; -- [XAXNO] :: offshoot, side-shoot; agnatus_A = mkA "agnatus" "agnata" "agnatum" ; -- [XXXFO] :: related, cognate; agnatus_M_N = mkN "agnatus" ; -- [XLXCO] :: male blood relation (father's side); one born after father made his will; @@ -3356,27 +3356,27 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat agniculus_M_N = mkN "agniculus" ; -- [XAXFS] :: little lamb, lambkin; agnina_F_N = mkN "agnina" ; -- [XXXEO] :: meat/flesh of lamb, "lamb"; agninus_A = mkA "agninus" "agnina" "agninum" ; -- [XXXCO] :: of/connected with a lamb, lamb's; - agnitio_F_N = mkN "agnitio" "agnitionis " feminine ; -- [XXXCO] :: recognition, knowledge; perception of nature/identity; avowal, acknowledgement; + agnitio_F_N = mkN "agnitio" "agnitionis" feminine ; -- [XXXCO] :: recognition, knowledge; perception of nature/identity; avowal, acknowledgement; agnitionalis_A = mkA "agnitionalis" "agnitionalis" "agnitionale" ; -- [DGXES] :: that can be recognized/known, cognizable; - agnitor_M_N = mkN "agnitor" "agnitoris " masculine ; -- [XLXFO] :: one who acknowledges or vouches for (seal); - agnitus_M_N = mkN "agnitus" "agnitus " masculine ; -- [XDXFO] :: "recognition" (drama); - agnomen_N_N = mkN "agnomen" "agnominis " neuter ; -- [XXXDO] :: nickname, an additional name denoting an achievement/characteristic; + agnitor_M_N = mkN "agnitor" "agnitoris" masculine ; -- [XLXFO] :: one who acknowledges or vouches for (seal); + agnitus_M_N = mkN "agnitus" "agnitus" masculine ; -- [XDXFO] :: "recognition" (drama); + agnomen_N_N = mkN "agnomen" "agnominis" neuter ; -- [XXXDO] :: nickname, an additional name denoting an achievement/characteristic; agnomentum_N_N = mkN "agnomentum" ; -- [XXXFS] :: nickname, an additional name denoting an achievement/characteristic; - agnominatio_F_N = mkN "agnominatio" "agnominationis " feminine ; -- [XGXES] :: linking two words different in meaning but similar in sound, paronomasia; + agnominatio_F_N = mkN "agnominatio" "agnominationis" feminine ; -- [XGXES] :: linking two words different in meaning but similar in sound, paronomasia; 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; + 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; + 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); + 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); + agoge_F_N = mkN "agoge" "agoges" feminine ; -- [XTXNO] :: channel for drawing off water (mining); agolum_N_N = mkN "agolum" ; -- [XAXFS] :: shepherd's staff/crook; 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.); + 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); agonio_V2 = mkV2 (mkV "agoniare") ; -- [EXXEW] :: struggle/fight (against); strive unto death (Vulgate Sirach 4:33); @@ -3387,7 +3387,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat agonizo_V2 = mkV2 (mkV "agonizare") ; -- [FXXEV] :: dispute; struggle/fight (against); agonosticus_A = mkA "agonosticus" "agonostica" "agonosticum" ; -- [EEXEE] :: pertaining to a contest or struggle; agonotheta_M_N = mkN "agonotheta" ; -- [XLXIO] :: superintendent of public games; - agonothetes_M_N = mkN "agonothetes" "agonothetae " masculine ; -- [XLXFS] :: superintendent of public games; + agonothetes_M_N = mkN "agonothetes" "agonothetae" masculine ; -- [XLXFS] :: superintendent of public games; agonotheticus_A = mkA "agonotheticus" "agonothetica" "agonotheticum" ; -- [XLXFO] :: of/connected with a superintendent of public games; agoranomus_M_N = mkN "agoranomus" ; -- [XLHFS] :: market inspector, Grecian magistrate who inspected provisions/regulated market; agralis_A = mkA "agralis" "agralis" "agrale" ; -- [DAXFS] :: agrarian, of redistribution of public land; of/connected with land/estate; @@ -3395,23 +3395,23 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat agrarius_A = mkA "agrarius" "agraria" "agrarium" ; -- [XAXCO] :: agrarian; of redistribution of public land; of/connected with land/estate; agrarius_M_N = mkN "agrarius" ; -- [XLXES] :: those who advocated agrarian reform laws/sought possession of public lands; agraticum_N_N = mkN "agraticum" ; -- [DAXFS] :: land-tax; revenue from land; - agravitas_F_N = mkN "agravitas" "agravitatis " feminine ; -- [GXXEK] :: zero gravity; + agravitas_F_N = mkN "agravitas" "agravitatis" feminine ; -- [GXXEK] :: zero gravity; agrestis_A = mkA "agrestis" "agrestis" "agreste" ; -- [XAXAO] :: rustic, inhabiting countryside; rude, wild, savage; of/passing through fields; - agrestis_M_N = mkN "agrestis" "agrestis " masculine ; -- [XAXCO] :: countryman, peasant; rube, rustic, bumpkin; + agrestis_M_N = mkN "agrestis" "agrestis" masculine ; -- [XAXCO] :: countryman, peasant; rube, rustic, bumpkin; agricola_M_N = mkN "agricola" ; -- [XAXBO] :: farmer, cultivator, gardener, agriculturist; plowman, countryman, peasant; agricolaris_A = mkA "agricolaris" "agricolaris" "agricolare" ; -- [XAXES] :: farmer-; relating to farmers; - agricolatio_F_N = mkN "agricolatio" "agricolationis " feminine ; -- [XAXFO] :: agriculture, husbandry; + agricolatio_F_N = mkN "agricolatio" "agricolationis" feminine ; -- [XAXFO] :: agriculture, husbandry; agricolor_V = mkV "agricolari" ; -- [DAXFS] :: farm, cultivate land, pursue agriculture; - agricultio_F_N = mkN "agricultio" "agricultionis " feminine ; -- [XAXES] :: husbandry; - agricultor_M_N = mkN "agricultor" "agricultoris " masculine ; -- [XAXFS] :: farmer, husbandman; + agricultio_F_N = mkN "agricultio" "agricultionis" feminine ; -- [XAXES] :: husbandry; + agricultor_M_N = mkN "agricultor" "agricultoris" masculine ; -- [XAXFS] :: farmer, husbandman; agricultura_F_N = mkN "agricultura" ; -- [XAXCO] :: agriculture, husbandry; - agrimensor_M_N = mkN "agrimensor" "agrimensoris " masculine ; -- [XAXIO] :: land surveyor; - agriophyllon_N_N = mkN "agriophyllon" "agriophylli " neuter ; -- [XAXFS] :: herb (peucedanum), hog's foot, sulphurwort; + agrimensor_M_N = mkN "agrimensor" "agrimensoris" masculine ; -- [XAXIO] :: land surveyor; + agriophyllon_N_N = mkN "agriophyllon" "agriophylli" neuter ; -- [XAXFS] :: herb (peucedanum), hog's foot, sulphurwort; agripeta_M_N = mkN "agripeta" ; -- [XAXEO] :: settler, one who searches for land; land-grabber, squatter, one who seizes it; agrius_A = mkA "agrius" "agria" "agrium" ; -- [XAXEO] :: wild (of plants/other natural products); [staphis ~ => stavesacre]; agronomia_F_N = mkN "agronomia" ; -- [GXXEK] :: agronomy; agrosius_A = mkA "agrosius" "agrosia" "agrosium" ; -- [XAXFO] :: possessing land (?); - agrostis_F_N = mkN "agrostis" "agrostis " feminine ; -- [XAXFS] :: couch-grass, quitch grass; + agrostis_F_N = mkN "agrostis" "agrostis" feminine ; -- [XAXFS] :: couch-grass, quitch grass; agrosus_A = mkA "agrosus" "agrosa" "agrosum" ; -- [XAXFS] :: rich in land; agrypnia_F_N = mkN "agrypnia" ; -- [DXXFS] :: sleeplessness; aguna_F_N = mkN "aguna" ; -- [XAXEO] :: square actus (120 feet square) (measure of land); @@ -3426,35 +3426,35 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat aientia_F_N = mkN "aientia" ; -- [DXXFS] :: affirmation; aigilps_A = mkA "aigilps" "aigilpis"; -- [XXXFO] :: steep, sheer; 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); +-- TODO aio_V : V1 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); 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); + 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); ala_F_N = mkN "ala" ; -- [XXXAO] :: wing; upper arm/foreleg/fin; armpit; squadron (cavalry), flank, army's wing; alabaster_M_N = mkN "alabaster" ; -- [XXXDO] :: conical box for perfume (made of alabaster); antimony; - alabastrites_M_N = mkN "alabastrites" "alabastritae " masculine ; -- [XXXEO] :: stalagmite (variegated alabaster, calcium carbonate); (for unguents); onyx; - alabastritis_F_N = mkN "alabastritis" "alabastritidis " feminine ; -- [XXXEO] :: precious stone; + alabastrites_M_N = mkN "alabastrites" "alabastritae" masculine ; -- [XXXEO] :: stalagmite (variegated alabaster, calcium carbonate); (for unguents); onyx; + alabastritis_F_N = mkN "alabastritis" "alabastritidis" feminine ; -- [XXXEO] :: precious stone; 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; + alabetes_M_N = mkN "alabetes" "alabetae" masculine ; -- [XAENO] :: fish common in the Nile; 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; + alacritas_F_N = mkN "alacritas" "alacritatis" feminine ; -- [XXXCO] :: eagerness, enthusiasm, ardor, alacrity; cheerfulness, liveliness; alacriter_Adv = mkAdv "alacriter" ; -- [XXXEO] :: eagerly, briskly; alapa_F_N = mkN "alapa" ; -- [XXXDO] :: blow (with the flat of the hand), slap, smack; box on the ear; alaris_A = mkA "alaris" "alaris" "alare" ; -- [XWXDO] :: of/consisting of auxiliary cavalry or other troops; - alaris_M_N = mkN "alaris" "alaris " masculine ; -- [XWXCO] :: auxiliary cavalry (pl.) or other troops; + alaris_M_N = mkN "alaris" "alaris" masculine ; -- [XWXCO] :: auxiliary cavalry (pl.) or other troops; alarius_A = mkA "alarius" "alaria" "alarium" ; -- [XWXDO] :: of the wing (of an army); pertaining to the auxiliary cavalry; alarius_M_N = mkN "alarius" ; -- [XWXDO] :: auxiliary troops (pl.), posted on the wings of the army; alaternus_F_N = mkN "alaternus" ; -- [XAXEO] :: evergreen shrub, Buckthorn (used for pigments (e.g., sap-green)/cathartic); alatus_A = mkA "alatus" "alata" "alatum" ; -- [XXXEO] :: winged, having/furnished with wings; alauda_F_N = mkN "alauda" ; -- [XXXDO] :: crested lark; legion raised by Caesar in Gaul; soldiers (pl.) of this legion; alausa_F_N = mkN "alausa" ; -- [DAFFS] :: small fish in the Moselle, shad (Culpea alusa); - alazon_M_N = mkN "alazon" "alazonis " masculine ; -- [XXXFS] :: braggart, boaster; + alazon_M_N = mkN "alazon" "alazonis" masculine ; -- [XXXFS] :: braggart, boaster; alba_F_N = mkN "alba" ; -- [DXXFS] :: |white precious stone; pearl; albamentum_N_N = mkN "albamentum" ; -- [XXXES] :: white (of an egg); albaris_A = mkA "albaris" "albaris" "albare" ; -- [DTXFS] :: of stucco, stucco; pertaining to the whitening of walls (L+S); @@ -3462,7 +3462,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat albarius_A = mkA "albarius" "albaria" "albarium" ; -- [XTXEO] :: of stucco, stucco; pertaining to the whitening of walls (L+S); albatus_A = mkA "albatus" "albata" "albatum" ; -- [XXXDO] :: clothed in white; albatus_M_N = mkN "albatus" ; -- [XXXNO] :: White team/faction in chariot racing; - albedo_F_N = mkN "albedo" "albedinis " feminine ; -- [DEXES] :: white color, whiteness; + 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; @@ -3479,28 +3479,28 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + albitudo_F_N = mkN "albitudo" "albitudinis" feminine ; -- [XXXFO] :: whiteness; albo_V2 = mkV2 (mkV "albare") ; -- [DXXFS] :: make white; albogalerus_M_N = mkN "albogalerus" ; -- [CEXFO] :: white cap of the priest/flamen Dialis; albogilvus_A = mkA "albogilvus" "albogilva" "albogilvum" ; -- [DXXFS] :: whitish yellow; - albor_M_N = mkN "albor" "alboris " masculine ; -- [DXXES] :: egg white; whiteness, white color (eccl.); + albor_M_N = mkN "albor" "alboris" masculine ; -- [DXXES] :: egg white; whiteness, white color (eccl.); albucum_N_N = mkN "albucum" ; -- [XAXNO] :: variety of asphodel/its stalk/reeds; (immortal lily, covered Elysian fields); albucus_M_N = mkN "albucus" ; -- [XAXES] :: bulb of the asphodel; the plant itself; - albuelis_F_N = mkN "albuelis" "albuelis " feminine ; -- [XAXNO] :: variety of vine; - albugo_F_N = mkN "albugo" "albuginis " feminine ; -- [XBXEO] :: white opaque spot on the eye; disorder of the scalp; + albuelis_F_N = mkN "albuelis" "albuelis" feminine ; -- [XAXNO] :: variety of vine; + albugo_F_N = mkN "albugo" "albuginis" feminine ; -- [XBXEO] :: white opaque spot on the eye; disorder of the scalp; albulus_A = mkA "albulus" "albula" "albulum" ; -- [XXXDO] :: white, pale, whitish; album_N_N = mkN "album" ; -- [GXXEK] :: |projection-screen; - albumen_N_N = mkN "albumen" "albuminis " neuter ; -- [XXXNS] :: egg white, albumen; + albumen_N_N = mkN "albumen" "albuminis" neuter ; -- [XXXNS] :: egg white, albumen; 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?); 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; + 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); - alcedo_F_N = mkN "alcedo" "alcedinis " feminine ; -- [XAXEO] :: halcyon; kingfisher; sea birds (pl.); + alcedo_F_N = mkN "alcedo" "alcedinis" feminine ; -- [XAXEO] :: halcyon; kingfisher; sea birds (pl.); alcedonium_N_N = mkN "alcedonium" ; -- [XXXES] :: halcyon (breeding) days (pl.), winter calm; deep/profound calm/tranquility; - alces_F_N = mkN "alces" "alcis " feminine ; -- [XXXEO] :: moose, elk; + alces_F_N = mkN "alces" "alcis" feminine ; -- [XXXEO] :: moose, elk; alchemia_F_N = mkN "alchemia" ; -- [GSXEK] :: alchemy; alchimia_F_N = mkN "alchimia" ; -- [GSXEK] :: alchemy; alchimista_M_N = mkN "alchimista" ; -- [GSXEK] :: alchemist; @@ -3508,12 +3508,12 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat alcima_F_N = mkN "alcima" ; -- [XAXNO] :: water plantain; alcinus_A = mkA "alcinus" "alcina" "alcinum" ; -- [XAXIO] :: of an elk; alcmanius_A = mkA "alcmanius" "alcmania" "alcmanium" ; -- [XPXES] :: Alcmanian (type of verse); (like Greek poet Alcman); - alcohol_N_N = mkN "alcohol" "alcoholis " neuter ; -- [GSXEK] :: alcohol; + alcohol_N_N = mkN "alcohol" "alcoholis" neuter ; -- [GSXEK] :: alcohol; alcoholicus_A = mkA "alcoholicus" "alcoholica" "alcoholicum" ; -- [GXXEK] :: alcoholic; alcoholismus_M_N = mkN "alcoholismus" ; -- [GXXEK] :: alcoholism; alcoranus_M_N = mkN "alcoranus" ; -- [GXXEK] :: Koran; - alcyon_F_N = mkN "alcyon" "alcyonis " feminine ; -- [XAXCO] :: halcyon; kingfisher; sea birds (pl.); - alcyone_F_N = mkN "alcyone" "alcyones " feminine ; -- [XAXEO] :: halcyon; kingfisher; sea birds (pl.); + alcyon_F_N = mkN "alcyon" "alcyonis" feminine ; -- [XAXCO] :: halcyon; kingfisher; sea birds (pl.); + alcyone_F_N = mkN "alcyone" "alcyones" feminine ; -- [XAXEO] :: halcyon; kingfisher; sea birds (pl.); alcyoneum_N_N = mkN "alcyoneum" ; -- [XAXEO] :: kind of floating sponge, believed to be nest of halcyon; medicine from it; alcyoneus_A = mkA "alcyoneus" "alcyonea" "alcyoneum" ; -- [XXXFO] :: halcyon (days w/dies), time around the winter solstice when the halcyon breed; alcyonidus_A = mkA "alcyonidus" "alcyonida" "alcyonidum" ; -- [XXXFO] :: halcyon (days w/dies), time around the winter solstice when halcyon breed; @@ -3521,27 +3521,27 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat alea_F_N = mkN "alea" ; -- [XXXBO] :: game of dice; die; dice-play; gambling, risking; chance, venture, risk, stake; alearis_A = mkA "alearis" "alearis" "aleare" ; -- [DXXFS] :: of/pertaining to a game of chance; alearius_A = mkA "alearius" "alearia" "alearium" ; -- [DXXES] :: of/pertaining to a game of chance; (friendships) formed at the gaming table; - aleator_M_N = mkN "aleator" "aleatoris " masculine ; -- [XXXCO] :: dice-player, gambler; + aleator_M_N = mkN "aleator" "aleatoris" masculine ; -- [XXXCO] :: dice-player, gambler; aleatorium_N_N = mkN "aleatorium" ; -- [DXXES] :: gaming house, place where games of chance are played; aleatorius_A = mkA "aleatorius" "aleatoria" "aleatorium" ; -- [XXXEO] :: of dice/gambling; of gambler/gamester; [aleatoria damna => losses at gambling]; - alebre_N_N = mkN "alebre" "alebris " neuter ; -- [DXXFS] :: nourishing food (pl.); + alebre_N_N = mkN "alebre" "alebris" neuter ; -- [DXXFS] :: nourishing food (pl.); alebris_A = mkA "alebris" "alebris" "alebre" ; -- [XXXFO] :: nutritious; - alec_N_N = mkN "alec" "alecis " neuter ; -- [XXXFS] :: herrings; a fish sauce; pickle; + alec_N_N = mkN "alec" "alecis" neuter ; -- [XXXFS] :: herrings; a fish sauce; pickle; alectoria_F_N = mkN "alectoria" ; -- [XXXNO] :: precious stone, said to be found in gizzards of cocks; alectorios_A = mkA "alectorios" "alectorios" "alectorion" ; -- [XXXNO] :: of/pertaining to a cock; [alectoros lophos => cock's comb., yellow rattle]; alectorius_A = mkA "alectorius" "alectoria" "alectorium" ; -- [XXXNS] :: of/pertaining to a cock; [alectoros lophos => cock's comb., yellow rattle]; alecula_F_N = mkN "alecula" ; -- [XXXES] :: fish sauce; alembicum_N_N = mkN "alembicum" ; -- [GXXEK] :: still; - aleo_M_N = mkN "aleo" "aleonis " masculine ; -- [XXXEO] :: gambler; + aleo_M_N = mkN "aleo" "aleonis" masculine ; -- [XXXEO] :: gambler; 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]; + 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; + 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; alga_F_N = mkN "alga" ; -- [XXXCO] :: sea-weed; rubbish, uncountable stuff; water plants; algebra_F_N = mkN "algebra" ; -- [GSXEK] :: algebra; algens_A = mkA "algens" "algentis"; -- [XXXCO] :: cold (weather), chilly (insufficient clothing); cold (of things normally hot); @@ -3550,11 +3550,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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.); + algor_M_N = mkN "algor" "algoris" masculine ; -- [XXXCO] :: cold, coldness; chilliness; a fit of shivering; cold weather (pl.); algorithmus_M_N = mkN "algorithmus" ; -- [GSXEK] :: algorithm; algosus_A = mkA "algosus" "algosa" "algosum" ; -- [XAXEO] :: abounding in/covered with seaweed; - algu_N_N = mkN "algu" "algus " neuter ; -- [DXXES] :: feeling of cold; coldness; - algus_M_N = mkN "algus" "algus " masculine ; -- [DXXES] :: feeling of cold; coldness; + algu_N_N = mkN "algu" "algus" neuter ; -- [DXXES] :: feeling of cold; coldness; + algus_M_N = mkN "algus" "algus" masculine ; -- [DXXES] :: feeling of cold; coldness; alia_Adv = mkAdv "alia" ; -- [XXXCO] :: by another/different way/route; alias_Adv = mkAdv "alias" ; -- [XXXAO] :: at/in another time/place; previously, subsequently; elsewhere; otherwise; aliatum_N_N = mkN "aliatum" ; -- [XXXFO] :: food made with garlic; @@ -3569,11 +3569,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat alicubi_Adv = mkAdv "alicubi" ; -- [XXXCO] :: somewhere, anywhere; elsewhere; occasionally; alicula_F_N = mkN "alicula" ; -- [XXXEO] :: light coat/cloak/hunting dress; child's coat; alicunde_Adv = mkAdv "alicunde" ; -- [XXXCO] :: from some place/somewhere, from some source or other; - alienatio_F_N = mkN "alienatio" "alienationis " feminine ; -- [XXXCO] :: transference of ownership, the right to; aversion, dislike; numbness, stupor; + alienatio_F_N = mkN "alienatio" "alienationis" feminine ; -- [XXXCO] :: transference of ownership, the right to; aversion, dislike; numbness, stupor; alienigena_M_N = mkN "alienigena" ; -- [XXXCO] :: stranger, foreigner, alien; something imported/exotic; foreign-born; alienigenus_A = mkA "alienigenus" "alienigena" "alienigenum" ; -- [XXXCO] :: different, foreign, alien; of/born in another country; imported, exotic; mixed; alieniloquium_N_N = mkN "alieniloquium" ; -- [DXXES] :: talk of crazy persons; crazy talk; - alienitas_F_N = mkN "alienitas" "alienitatis " feminine ; -- [DBXES] :: external causes of disease; + alienitas_F_N = mkN "alienitas" "alienitatis" feminine ; -- [DBXES] :: external causes of disease; 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.); @@ -3582,7 +3582,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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 = mkConj "alii" "alii" plural missing ; -- [XXXCC] :: some ... others (alii ... alii); + alii_Conj = mkConj "alii" 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; @@ -3596,10 +3596,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat aliovorsum_Adv = mkAdv "aliovorsum" ; -- [XXXDO] :: to another place/direction/person, elsewhere; different context/manner/sense; aliovorsus_Adv = mkAdv "aliovorsus" ; -- [XXXES] :: to another place/direction/person, elsewhere; different context/manner/sense; alipes_A = mkA "alipes" "alipedis"; -- [XXXFO] :: |without grease/fat, greaseless, fatless; - alipes_M_N = mkN "alipes" "alipedis " masculine ; -- [XXXCO] :: Mercury, the wing-footed god; + alipes_M_N = mkN "alipes" "alipedis" masculine ; -- [XXXCO] :: Mercury, the wing-footed god; alipilus_M_N = mkN "alipilus" ; -- [XXXES] :: slave who plucked the hair from armpits of bathers; alipta_M_N = mkN "alipta" ; -- [XXXES] :: one who anoints; manager of school of wrestlers; master of wrestlers/the ring; - aliptes_M_N = mkN "aliptes" "aliptae " masculine ; -- [XXXES] :: one who anoints; manager of school of wrestlers; master of wrestlers/the ring; + aliptes_M_N = mkN "aliptes" "aliptae" masculine ; -- [XXXES] :: one who anoints; manager of school of wrestlers; master of wrestlers/the ring; aliqua_Adv = mkAdv "aliqua" ; -- [XXXCO] :: somehow, in some way or another, by some means or other; to some extent; aliquam_Adv = mkAdv "aliquam" ; -- [XXXDO] :: largely, to a large extent, a lot of; [~ multi/multum => fair number/amount]; aliquamdiu_Adv = mkAdv "aliquamdiu" ; -- [XXXCO] :: for some time, for a considerable time/distance (travel), for a while; @@ -3632,39 +3632,39 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat aliquoties_Adv = mkAdv "aliquoties" ; -- [XXXCO] :: number of times, several times; aliquovorsum_Adv = mkAdv "aliquovorsum" ; -- [XXXFO] :: in some direction/quarter; -- BLACKLISTED alisalius_A : A2 alisalius, alisalia, alisaliud -- blacklisted -- [EXXEW] :: one another; [alisalios/in alisalio => against one another - Vulgate 4 Ezra]; - alisma_N_N = mkN "alisma" "alismatis " neuter ; -- [XAXNS] :: aquatic plant, water plantain (Alisma plantago); + alisma_N_N = mkN "alisma" "alismatis" neuter ; -- [XAXNS] :: aquatic plant, water plantain (Alisma plantago); aliter_Adv = mkAdv "aliter" ; -- [XXXAO] :: otherwise, differently; in any other way [aliter ac => otherwise than]; - alitudo_F_N = mkN "alitudo" "alitudinis " feminine ; -- [XXXFS] :: nourishment; + alitudo_F_N = mkN "alitudo" "alitudinis" feminine ; -- [XXXFS] :: nourishment; alitura_F_N = mkN "alitura" ; -- [XXXFO] :: feeding, nourishing; nature, rearing; aliturgicus_A = mkA "aliturgicus" "aliturgica" "aliturgicum" ; -- [EEXEE] :: without liturgy; - alitus_M_N = mkN "alitus" "alitus " masculine ; -- [DXXES] :: nourishment, sustenance; support; + alitus_M_N = mkN "alitus" "alitus" masculine ; -- [DXXES] :: nourishment, sustenance; support; aliubei_Adv = mkAdv "aliubei" ; -- [XXXCO] :: in (an)other place/places; in one place..in another; in some cases, sometimes; aliubi_Adv = mkAdv "aliubi" ; -- [EXXEZ] :: elsewhere, in another place; in other respects , otherwise; in another matter; 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 = mkConj "alius" "alius" singular missing ; -- [XXXCO] :: the_one ... the_other (alius ... alius); + alius_Conj = mkConj "alius" 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); + 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; + 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; allaudo_V2 = mkV2 (mkV "allaudare") ; -- [XXXFO] :: praise, commend; allavo_V2 = mkV2 (mkV "allavare") ; -- [XXXFO] :: flow up to (water), wash; - allec_N_N = mkN "allec" "allecis " neuter ; -- [XXXCO] :: herrings; a fish sauce; pickle; - allectatio_F_N = mkN "allectatio" "allectationis " feminine ; -- [XXXFO] :: coaxing, enticing, encouragement, invitation; - allectator_M_N = mkN "allectator" "allectatoris " masculine ; -- [XXXFO] :: one who coaxes/entices/attracts/invites/encourages; + allec_N_N = mkN "allec" "allecis" neuter ; -- [XXXCO] :: herrings; a fish sauce; pickle; + allectatio_F_N = mkN "allectatio" "allectationis" feminine ; -- [XXXFO] :: coaxing, enticing, encouragement, invitation; + allectator_M_N = mkN "allectator" "allectatoris" masculine ; -- [XXXFO] :: one who coaxes/entices/attracts/invites/encourages; allecto_V2 = mkV2 (mkV "allectare") ; -- [XXXDO] :: entice, allure, encourage, invite; - allector_M_N = mkN "allector" "allectoris " masculine ; -- [XXXIO] :: official of a collegium (concerned with dues or admission); + allector_M_N = mkN "allector" "allectoris" masculine ; -- [XXXIO] :: official of a collegium (concerned with dues or admission); allectura_F_N = mkN "allectura" ; -- [XXXIO] :: office of collector of revenues (colligium allector); - allegatio_F_N = mkN "allegatio" "allegationis " feminine ; -- [XXXEO] :: allegation, charge; intercession; representation made on behalf of another; + 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 "allegere" "allego" "allegi" "allectus ") ; -- [XXXCO] :: choose, admit, elect, recruit, select, appoint; + allegatus_M_N = mkN "allegatus" "allegatus" masculine ; -- [XXXEO] :: instigation, prompting; + 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; @@ -3674,50 +3674,50 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat allergia_F_N = mkN "allergia" ; -- [GBXEK] :: allergy; allergicus_A = mkA "allergicus" "allergica" "allergicum" ; -- [GBXEK] :: allergic; allevamentum_N_N = mkN "allevamentum" ; -- [XXXEL] :: mitigation; relief, alleviation; - allevatio_F_N = mkN "allevatio" "allevationis " feminine ; -- [XXXEO] :: alleviation, easing; relief; lifting up, raising; elevation; - allevator_M_N = mkN "allevator" "allevatoris " masculine ; -- [DXXFS] :: one who lifts/raises up; - alleviatio_F_N = mkN "alleviatio" "alleviationis " feminine ; -- [FXXEE] :: alleviation, easing; relief; lifting up, raising; elevation; + allevatio_F_N = mkN "allevatio" "allevationis" feminine ; -- [XXXEO] :: alleviation, easing; relief; lifting up, raising; elevation; + allevator_M_N = mkN "allevator" "allevatoris" masculine ; -- [DXXFS] :: one who lifts/raises up; + alleviatio_F_N = mkN "alleviatio" "alleviationis" feminine ; -- [FXXEE] :: alleviation, easing; relief; lifting up, raising; elevation; allevio_V2 = mkV2 (mkV "alleviare") ; -- [DXXES] :: lighten, make light; deal lightly/leniently with; raise up, relieve; allevo_V2 = mkV2 (mkV "allevare") ; -- [XXXDO] :: |smooth, smooth off, make smooth; polish; depilate; - allex_N_N = mkN "allex" "allecis " neuter ; -- [XXXCO] :: herrings; a fish sauce; pickle; + 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; + 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; + 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); + 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; + 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; - allocutio_F_N = mkN "allocutio" "allocutionis " feminine ; -- [EXXER] :: satisfaction; comfort; (Vulgate); + allocutio_F_N = mkN "allocutio" "allocutionis" feminine ; -- [EXXER] :: satisfaction; comfort; (Vulgate); 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; + 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; + 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; + 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; - alluvio_F_N = mkN "alluvio" "alluvionis " feminine ; -- [XXXCO] :: flood, overflow; addition made to land by deposition of slit; superabundance; + allusio_F_N = mkN "allusio" "allusionis" feminine ; -- [DXXFS] :: playing/frolicking/sporting with; + alluvies_F_N = mkN "alluvies" "alluviei" feminine ; -- [XXXCL] :: |inundation, flood; overflow; superabundance; + alluvio_F_N = mkN "alluvio" "alluvionis" feminine ; -- [XXXCO] :: flood, overflow; addition made to land by deposition of slit; superabundance; alluvius_A = mkA "alluvius" "alluvia" "alluvium" ; -- [XXXFS] :: alluvial, from river overflow/deposit; almarium_N_N = mkN "almarium" ; -- [FEXEE] :: sacristy; - almitas_F_N = mkN "almitas" "almitatis " feminine ; -- [EEXCN] :: nurture, kindness; bounty; title/epithet for a bishop; - almities_F_N = mkN "almities" "almitiei " feminine ; -- [DXXFS] :: kind behavior; + almitas_F_N = mkN "almitas" "almitatis" feminine ; -- [EEXCN] :: nurture, kindness; bounty; title/epithet for a bishop; + almities_F_N = mkN "almities" "almitiei" feminine ; -- [DXXFS] :: kind behavior; almonium_N_N = mkN "almonium" ; -- [FXXEE] :: nourishment, food; almucia_F_N = mkN "almucia" ; -- [FEXFE] :: amice; (oblong white shawl draped over shoulders of priest, worn w/alb); almus_A = mkA "almus" "alma" "almum" ; -- [XXXCO] :: nourishing, kind, propitious; of a nurse/breast, providing nurture, fostering; @@ -3725,41 +3725,41 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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); alopecia_F_N = mkN "alopecia" ; -- [XBXEO] :: bald patch on head (from mange); fox mange (usu. pl.) (L+S); - 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); + 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); 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); + alphos_M_N = mkN "alphos" "alphi" masculine ; -- [XBXFO] :: skin disease (psoriasis gutlata?); white spot on the skin (L+S); alphus_M_N = mkN "alphus" ; -- [XBXFS] :: skin disease (psoriasis gutlata?); white spot on the skin (L+S); alsidena_F_N = mkN "alsidena" ; -- [XAXNS] :: kind of onion; - alsine_F_N = mkN "alsine" "alsines " feminine ; -- [XAXNO] :: plant of the genus Partietaris, pellitory (used in medicine); + alsine_F_N = mkN "alsine" "alsines" feminine ; -- [XAXNO] :: plant of the genus Partietaris, pellitory (used in medicine); alsiosus_A = mkA "alsiosus" "alsiosa" "alsiosum" ; -- [XXXEO] :: liable to be injured by the cold; 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; 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; + 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.; - altare_N_N = mkN "altare" "altaris " neuter ; -- [XXXCO] :: altar (usu. pl.), fitting for burnt offerings; burnt offering; high altar; + altare_N_N = mkN "altare" "altaris" neuter ; -- [XXXCO] :: altar (usu. pl.), fitting for burnt offerings; burnt offering; high altar; altarista_M_N = mkN "altarista" ; -- [FEXEE] :: assistant priest; 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 = mkConj "alter" "alter" singular missing ; -- [XXXCO] :: the_one ... the_other (alter ... alter); otherwise; + alter_Conj = mkConj "alter" 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; + alteratio_F_N = mkN "alteratio" "alterationis" feminine ; -- [FXXDE] :: alteration, change; altercabilis_A = mkA "altercabilis" "altercabilis" "altercabile" ; -- [DXXFS] :: quarrelsome, contentious; - altercatio_F_N = mkN "altercatio" "altercationis " feminine ; -- [XLXCO] :: contention, dispute, wrangle, altercation; debate, argument (law), repartee; - altercator_M_N = mkN "altercator" "altercatoris " masculine ; -- [XLXEO] :: disputant, one who conducts exchanges with opponent in law-court; + altercatio_F_N = mkN "altercatio" "altercationis" feminine ; -- [XLXCO] :: contention, dispute, wrangle, altercation; debate, argument (law), repartee; + altercator_M_N = mkN "altercator" "altercatoris" masculine ; -- [XLXEO] :: disputant, one who conducts exchanges with opponent in law-court; alterco_V = mkV "altercare" ; -- [XLXCO] :: argue/bicker/dispute/wrangle/quarrel; dispute in court; exchange conversation; altercor_V = mkV "altercari" ; -- [XLXCO] :: argue/bicker/dispute/wrangle/quarrel; dispute in court; exchange conversation; alterculum_N_N = mkN "alterculum" ; -- [DAXFS] :: henbane, plant of genus Hyoscyamus; @@ -3767,7 +3767,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat alterinsecus_Adv = mkAdv "alterinsecus" ; -- [XXXFO] :: on the other side; alterius_Adv = mkAdv "alterius" ; -- [FXXEE] :: of one another; alternatim_Adv = mkAdv "alternatim" ; -- [XXXFO] :: by turns, alternately; - alternatio_F_N = mkN "alternatio" "alternationis " feminine ; -- [XXXCO] :: alternation, alternate movement; alternative; ambivalence; + alternatio_F_N = mkN "alternatio" "alternationis" feminine ; -- [XXXCO] :: alternation, alternate movement; alternative; ambivalence; alternatus_A = mkA "alternatus" "alternata" "alternatum" ; -- [XXXDO] :: alternate, succeeding each in turn; alternative; alterne_Adv = mkAdv "alterne" ; -- [XXXFS] :: by turns, alternately; alternis_Adv = mkAdv "alternis" ; -- [XXXCO] :: alternately; one after the other in turn, by turns; every other day/year; @@ -3787,39 +3787,39 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat altilaneus_A = mkA "altilaneus" "altilanea" "altilaneum" ; -- [XAXIO] :: having long/thick wool; altiliarius_M_N = mkN "altiliarius" ; -- [XAXIO] :: keeper of fowls, poultry farmer/fattener; altilis_A = mkA "altilis" "altilis" "altile" ; -- [XAXCO] :: fattened, fat, raised/fed up for eating; rich (dowry); well-fed, pampered; - altilis_F_N = mkN "altilis" "altilis " feminine ; -- [XAXCO] :: table bird, fattened bird/fowl; + altilis_F_N = mkN "altilis" "altilis" feminine ; -- [XAXCO] :: table bird, fattened bird/fowl; altilium_N_N = mkN "altilium" ; -- [FEXFE] :: fatlings (pl.); altipendulus_A = mkA "altipendulus" "altipendula" "altipendulum" ; -- [XXXFO] :: high-hanging, hanging high; altipotens_A = mkA "altipotens" "altipotentis"; -- [DXXES] :: very mighty, of high/great power; altisonus_A = mkA "altisonus" "altisona" "altisonum" ; -- [XXXDO] :: of lofty sound, that sounds high up/in the heavens; sublime; high-sounding; - altispex_M_N = mkN "altispex" "altispicis " masculine ; -- [DXXES] :: looking down from on high; + altispex_M_N = mkN "altispex" "altispicis" masculine ; -- [DXXES] :: looking down from on high; altistria_F_N = mkN "altistria" ; -- [GDXEK] :: alto; altithronus_M_N = mkN "altithronus" ; -- [FEXEN] :: one enthroned on high; seated in heaven; altitonans_A = mkA "altitonans" "altitonantis"; -- [XXXEO] :: thundering from on high; that which thunders high in the sky; altitonus_A = mkA "altitonus" "altitona" "altitonum" ; -- [XXXFS] :: of the fiery zone; - altitudo_F_N = mkN "altitudo" "altitudinis " feminine ; -- [XXXAO] :: height, altitude; depth; loftiness, profundity, noblemindedness, secrecy; + altitudo_F_N = mkN "altitudo" "altitudinis" feminine ; -- [XXXAO] :: height, altitude; depth; loftiness, profundity, noblemindedness, secrecy; altiuscule_Adv = mkAdv "altiuscule" ; -- [XXXEO] :: at fairly high level, rather high; altiusculus_A = mkA "altiusculus" "altiuscula" "altiusculum" ; -- [XXXFO] :: rather higher than normal; altivolans_A = mkA "altivolans" "altivolantis"; -- [XXXEO] :: high flying; soaring; flying high; altivolus_A = mkA "altivolus" "altivola" "altivolum" ; -- [XXXNO] :: high flying; soaring; flying high; alto_V2 = mkV2 (mkV "altare") ; -- [DXXFS] :: raise, make high, elevate; - altor_M_N = mkN "altor" "altoris " masculine ; -- [XXXCO] :: nourisher, sustainer; foster father, one who raises another's child; + altor_M_N = mkN "altor" "altoris" masculine ; -- [XXXCO] :: nourisher, sustainer; foster father, one who raises another's child; altrimsecus_Adv = mkAdv "altrimsecus" ; -- [XXXDO] :: on the other side; altrinsecus_Adv = mkAdv "altrinsecus" ; -- [XXXDO] :: on the other side; - altrix_F_N = mkN "altrix" "altricis " feminine ; -- [XXXCO] :: nourisher, sustainer; wet nurse, nurse; foster mother; motherland, homeland; + altrix_F_N = mkN "altrix" "altricis" feminine ; -- [XXXCO] :: nourisher, sustainer; wet nurse, nurse; foster mother; motherland, homeland; altrovorsum_Adv = mkAdv "altrovorsum" ; -- [XXXFO] :: on the other hand; 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; 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; + 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; alucinogenus_A = mkA "alucinogenus" "alucinogena" "alucinogenum" ; -- [GBXEK] :: hallucinogenic; alucinor_V = mkV "alucinari" ; -- [XXXCO] :: wander in mind, talk idly/unreasonably, ramble, dream; wander; alucita_F_N = mkN "alucita" ; -- [XAXFO] :: gnat; alum_N_N = mkN "alum" ; -- [XAXEO] :: species of comfrey plant; garlic; - alumen_N_N = mkN "alumen" "aluminis " neuter ; -- [XXXCO] :: alum; astringent substance (sulfates of aluminum), potash alum; + alumen_N_N = mkN "alumen" "aluminis" neuter ; -- [XXXCO] :: alum; astringent substance (sulfates of aluminum), potash alum; alumentarius_A = mkA "alumentarius" "alumentaria" "alumentarium" ; -- [XXXEO] :: of maintenance by (public) charity, welfare; charity supported; alumentarius_M_N = mkN "alumentarius" ; -- [XXXEO] :: person whose maintenance is provided by (public/private) charity/alms; alumentum_N_N = mkN "alumentum" ; -- [XXXCO] :: food, fuel; nourishment, provisions; sustenance, maintenance, livelihood, alms; @@ -3843,7 +3843,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat alutacius_A = mkA "alutacius" "alutacia" "alutacium" ; -- [DXXES] :: pertaining to soft leather; alutarius_A = mkA "alutarius" "alutaria" "alutarium" ; -- [DXXFS] :: made of soft leather; alvarium_N_N = mkN "alvarium" ; -- [XAXDO] :: beehive; apiary, bee-house; - alveare_N_N = mkN "alveare" "alvearis " neuter ; -- [XAXEO] :: beehive; + alveare_N_N = mkN "alveare" "alvearis" neuter ; -- [XAXEO] :: beehive; alvearium_N_N = mkN "alvearium" ; -- [XAXFO] :: beehive; apiary; alveatus_A = mkA "alveatus" "alveata" "alveatum" ; -- [XXXFO] :: hollowed-out like a trough, trough-shaped; alveolatus_A = mkA "alveolatus" "alveolata" "alveolatum" ; -- [XXXFO] :: hollowed-out like a trough, trough-shaped; @@ -3851,23 +3851,23 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat alveum_N_N = mkN "alveum" ; -- [XXXIO] :: bath, bath-tub; alveus_M_N = mkN "alveus" ; -- [XWXBO] :: |hold (ship), ship, boat; channel, bed (river), trench; alvus_C_N = mkN "alvus" ; -- [XBXAO] :: belly/paunch/stomach; womb; bowel; bowel movement; hull (ship); beehive; cavity; - alypon_N_N = mkN "alypon" "alypi " neuter ; -- [XAXNO] :: turpeth (globularia alypum); (extract acts as active, gentle purgative); - alysson_N_N = mkN "alysson" "alyssi " neuter ; -- [XAXNO] :: kind of madder; (plant used for red dye, also medicine); + alypon_N_N = mkN "alypon" "alypi" neuter ; -- [XAXNO] :: turpeth (globularia alypum); (extract acts as active, gentle purgative); + alysson_N_N = mkN "alysson" "alyssi" neuter ; -- [XAXNO] :: kind of madder; (plant used for red dye, also medicine); alytharcha_M_N = mkN "alytharcha" ; -- [XEXFS] :: magistrate who superintended religious exhibitions; - alytharches_M_N = mkN "alytharches" "alytharchae " masculine ; -- [XEXFS] :: magistrate who superintended religious exhibitions; + 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); 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; + 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; + amandatio_F_N = mkN "amandatio" "amandationis" feminine ; -- [XXXFO] :: dismissal, banishment, sending away; regulation; amando_V2 = mkV2 (mkV "amandare") ; -- [XXXCO] :: send away, dismiss, banish; regulate; amans_A = mkA "amans" "amantis"; -- [XXXCO] :: loving/fond/affectionate; beloved/dear to; friendly/kind; having love/affection; - amans_F_N = mkN "amans" "amantis " feminine ; -- [XXXCO] :: lover, sweetheart; mistress; one who is fond/affectionate; - amans_M_N = mkN "amans" "amantis " masculine ; -- [XXXCO] :: lover, sweetheart; mistress; one who is fond/affectionate; + amans_F_N = mkN "amans" "amantis" feminine ; -- [XXXCO] :: lover, sweetheart; mistress; one who is fond/affectionate; + amans_M_N = mkN "amans" "amantis" masculine ; -- [XXXCO] :: lover, sweetheart; mistress; one who is fond/affectionate; amanter_Adv =mkAdv "amanter" "amantius" "amantissime" ; -- [XXXDO] :: lovingly, affectionately; with love/affection; - amanuensis_F_N = mkN "amanuensis" "amanuensis " feminine ; -- [XXXEO] :: secretary, clerk; - amanuensis_M_N = mkN "amanuensis" "amanuensis " masculine ; -- [XXXEO] :: secretary, clerk; + amanuensis_F_N = mkN "amanuensis" "amanuensis" feminine ; -- [XXXEO] :: secretary, clerk; + amanuensis_M_N = mkN "amanuensis" "amanuensis" masculine ; -- [XXXEO] :: secretary, clerk; amaracinum_N_N = mkN "amaracinum" ; -- [XXXEO] :: perfume/ointment of marjoram; amaracinus_A = mkA "amaracinus" "amaracina" "amaracinum" ; -- [XAXNO] :: made with/of marjoram; amaracum_N_N = mkN "amaracum" ; -- [XAXCO] :: marjoram; feverfew (pyrethrum parthenium); @@ -3877,11 +3877,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + amaritas_F_N = mkN "amaritas" "amaritatis" feminine ; -- [XXXFO] :: bitterness (of taste), harshness; amariter_Adv = mkAdv "amariter" ; -- [XXXFS] :: with bitterness, acidly, spitefully, bitterly; - amarities_F_N = mkN "amarities" "amaritiei " feminine ; -- [XXXFO] :: bitterness (of experience), harshness; - amaritudo_F_N = mkN "amaritudo" "amaritudinis " feminine ; -- [XXXCO] :: bitterness (taste/feelings/mind); sharpness, tang, pungency; harshness (sound); - amaror_M_N = mkN "amaror" "amaroris " masculine ; -- [XXXEO] :: bitter taste; bitterness; + amarities_F_N = mkN "amarities" "amaritiei" feminine ; -- [XXXFO] :: bitterness (of experience), harshness; + amaritudo_F_N = mkN "amaritudo" "amaritudinis" feminine ; -- [XXXCO] :: bitterness (taste/feelings/mind); sharpness, tang, pungency; harshness (sound); + amaror_M_N = mkN "amaror" "amaroris" masculine ; -- [XXXEO] :: bitter taste; bitterness; amarulentia_F_N = mkN "amarulentia" ; -- [GXXET] :: bitterness; (Erasmus); 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; @@ -3889,32 +3889,32 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + amasio_M_N = mkN "amasio" "amasionis" masculine ; -- [XXXEO] :: lover; amasiuncula_F_N = mkN "amasiuncula" ; -- [XXXFO] :: loved one, darling, sweetheart; fond lover; amasiunculus_M_N = mkN "amasiunculus" ; -- [XXXFS] :: lover, paramour; fond lover; amasius_M_N = mkN "amasius" ; -- [XXXEO] :: lover; amata_F_N = mkN "amata" ; -- [XXXFO] :: loved one, beloved (woman); - amatio_F_N = mkN "amatio" "amationis " feminine ; -- [XXXES] :: love, caressing, fondling; (romantic) intrigue; - amator_M_N = mkN "amator" "amatoris " masculine ; -- [GXXEK] :: |amateur, dilettante; + amatio_F_N = mkN "amatio" "amationis" feminine ; -- [XXXES] :: love, caressing, fondling; (romantic) intrigue; + amator_M_N = mkN "amator" "amatoris" masculine ; -- [GXXEK] :: |amateur, dilettante; amatorculus_M_N = mkN "amatorculus" ; -- [XXXFO] :: little lover; sorry lover (L+S); amatorie_Adv = mkAdv "amatorie" ; -- [XXXEO] :: in a loving manner; amatorium_N_N = mkN "amatorium" ; -- [XXXEO] :: love potion/charm/philter; anything which stimulates sexual passion; 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; + 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; + amaxites_M_N = mkN "amaxites" "amaxitae" masculine ; -- [XXXFO] :: waggoner, carter, teamster; ambactus_M_N = mkN "ambactus" ; -- [XXXEO] :: vassal, dependent; retainer, servant; ambadedo_V2 = mkV2 (mkV "ambadesse") ; -- [XXXES] :: eat/gnaw around; eat up entirely; - ambages_F_N = mkN "ambages" "ambagis " feminine ; -- [XXXBO] :: circuit; roundabout way; long story, details; riddle; ambiguity; lie; mystery; + ambages_F_N = mkN "ambages" "ambagis" feminine ; -- [XXXBO] :: circuit; roundabout way; long story, details; riddle; ambiguity; lie; mystery; ambagiosus_A = mkA "ambagiosus" "ambagiosa" "ambagiosum" ; -- [XXXFO] :: circuitous, indirect, roundabout; - ambago_F_N = mkN "ambago" "ambaginis " feminine ; -- [XXXFO] :: confusion, uncertainty, obscurity; + ambago_F_N = mkN "ambago" "ambaginis" feminine ; -- [XXXFO] :: confusion, uncertainty, obscurity; ambarvalis_A = mkA "ambarvalis" "ambarvalis" "ambarvale" ; -- [XXXFO] :: concerned with circumambulation of fields (e.g., ceremony of Ambarvallia); - ambecisus_M_N = mkN "ambecisus" "ambecisus " masculine ; -- [XXXFO] :: incision on both sides; + ambecisus_M_N = mkN "ambecisus" "ambecisus" masculine ; -- [XXXFO] :: incision on both sides; ambedo_V2 = mkV2 (mkV "ambesse") ; -- [XXXCO] :: eat/gnaw around the edge; erode (water); waste; eat, consume, devour; char; - ambestrix_F_N = mkN "ambestrix" "ambestricis " feminine ; -- [XXXFO] :: gluttonous woman; female consumer/waster (L+S); - ambidens_M_N = mkN "ambidens" "ambidentis " masculine ; -- [DAXFS] :: sheep which has both upper and lower teeth; + ambestrix_F_N = mkN "ambestrix" "ambestricis" feminine ; -- [XXXFO] :: gluttonous woman; female consumer/waster (L+S); + ambidens_M_N = mkN "ambidens" "ambidentis" masculine ; -- [DAXFS] :: sheep which has both upper and lower teeth; ambienter_Adv = mkAdv "ambienter" ; -- [DXXFS] :: eagerly, with zeal; ambifariam_Adv = mkAdv "ambifariam" ; -- [XGXEO] :: in a way placing opponent in dilemma/proving his arguments self-contradictory; ambifarie_Adv = mkAdv "ambifarie" ; -- [DGXFS] :: ambiguously; on two sides; in two ways; @@ -3922,23 +3922,23 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat ambiga_F_N = mkN "ambiga" ; -- [DXXES] :: cap of a still; 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; + 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; + 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; 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; + 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; ambivalentia_F_N = mkN "ambivalentia" ; -- [GXXEK] :: ambivalence; ambivium_N_N = mkN "ambivium" ; -- [XXXFO] :: road junction, meeting of two roads; ambligonius_A = mkA "ambligonius" "ambligonia" "ambligonium" ; -- [XSXFO] :: obtuse-angled; amblygonius_A = mkA "amblygonius" "amblygonia" "amblygonium" ; -- [XSXFO] :: obtuse-angled; ambolagium_N_N = mkN "ambolagium" ; -- [FEXFE] :: amice; (oblong white shawl draped over shoulders of priest, worn w/alb); - ambon_M_N = mkN "ambon" "ambonis " masculine ; -- [FEXEE] :: pulpit; - ambro_M_N = mkN "ambro" "ambronis " masculine ; -- [FXXFY] :: glutton; spendthrift; + ambon_M_N = mkN "ambon" "ambonis" masculine ; -- [FEXEE] :: pulpit; + ambro_M_N = mkN "ambro" "ambronis" masculine ; -- [FXXFY] :: glutton; spendthrift; ambroscus_A = mkA "ambroscus" "ambrosca" "ambroscum" ; -- [XYXCO] :: immortal, divine, of things belonging to the gods; ambrosial; ambrosia_F_N = mkN "ambrosia" ; -- [XYXCO] :: food of the gods, ambrosia; fabulous healing plant/juice; antidote (to poison); ambrosiacus_A = mkA "ambrosiacus" "ambrosiaca" "ambrosiacum" ; -- [XYXFS] :: ambrosial; @@ -3949,32 +3949,32 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat ambufariam_Adv = mkAdv "ambufariam" ; -- [XGXFO] :: in a way placing opponent in dilemma/proving his arguments self-contradictory; ambulacrum_N_N = mkN "ambulacrum" ; -- [XXXEO] :: promenade, walk; place for walking; lounge; ambulatilis_A = mkA "ambulatilis" "ambulatilis" "ambulatile" ; -- [XXXFO] :: moving, walking about; movable; - ambulatio_F_N = mkN "ambulatio" "ambulationis " feminine ; -- [XXXCO] :: walking about, stroll; place for promenading, covered/uncovered walk, portico; + ambulatio_F_N = mkN "ambulatio" "ambulationis" feminine ; -- [XXXCO] :: walking about, stroll; place for promenading, covered/uncovered walk, portico; ambulatiuncula_F_N = mkN "ambulatiuncula" ; -- [XXXEO] :: short/little walk/stroll; small place for walking, little portico; ambulativum_N_N = mkN "ambulativum" ; -- [XXXIO] :: procession (pl.); - ambulator_M_N = mkN "ambulator" "ambulatoris " masculine ; -- [XXXEO] :: one who walks about (idly/for pleasure); itinerant trader, peddler; + ambulator_M_N = mkN "ambulator" "ambulatoris" masculine ; -- [XXXEO] :: one who walks about (idly/for pleasure); itinerant trader, peddler; ambulatorius_A = mkA "ambulatorius" "ambulatoria" "ambulatorium" ; -- [XXXCO] :: movable, which can be moved; transferable; liable to change; for/while walking; ambulatrix_A = mkA "ambulatrix" "ambulatricis"; -- [XXXFO] :: movable, which can be moved; transferable; liable to change; ambulatura_F_N = mkN "ambulatura" ; -- [DAXES] :: walking, pace, step, amble (of horses); ambulo_V = mkV "ambulare" ; -- [XXXBO] :: walk, take a walk, go on foot; travel, march; go about, gad; parade, strut; - 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); + 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; + 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; amellus_M_N = mkN "amellus" ; -- [XAXEO] :: kind of aster; (purple) Italian starwort (Aster amellus); amen_Adv = mkAdv "amen" ; -- [DEXBS] :: amen; (from Hebrew); truly/verily/so be it; true/faithful; truth/faithfulness; - amendator_M_N = mkN "amendator" "amendatoris " masculine ; -- [XLXFO] :: one who suborns accusers; + amendator_M_N = mkN "amendator" "amendatoris" masculine ; -- [XLXFO] :: one who suborns accusers; amens_A = mkA "amens" "amentis"; -- [XXXCO] :: insane, demented, out of one's mind; very excited, frantic, distracted; foolish; amentia_F_N = mkN "amentia" ; -- [XXXCO] :: madness; extreme folly, infatuation, stupidity; frenzy, violent excitement; amentius_Adv = mkAdv "amentius" ; -- [XXXFO] :: more madly/wildly; amento_V2 = mkV2 (mkV "amentare") ; -- [XXXDO] :: fit with a throwing strap; give impetus with a throwing strap; speed on; amentum_N_N = mkN "amentum" ; -- [XXXCO] :: throwing-strap, thong/loop attached to spear for throwing; (shoe) thong/strap; amercio_V = mkV "amerciare" ; -- [FLXEM] :: fine, penalize; - amerimnon_N_N = mkN "amerimnon" "amerimni " neuter ; -- [XAXNO] :: houseleek; - ames_M_N = mkN "ames" "amitis " masculine ; -- [XXXEO] :: pole/fork for supporting/spreading birdnets; fence rail, cross bar; + amerimnon_N_N = mkN "amerimnon" "amerimni" neuter ; -- [XAXNO] :: houseleek; + ames_M_N = mkN "ames" "amitis" masculine ; -- [XXXEO] :: pole/fork for supporting/spreading birdnets; fence rail, cross bar; amethystinatus_A = mkA "amethystinatus" "amethystinata" "amethystinatum" ; -- [XXXFO] :: wearing a dress the color of amethyst (violet-blue)/adorned with amethysts; amethystinus_A = mkA "amethystinus" "amethystina" "amethystinum" ; -- [XXXDO] :: of the color of amethyst (violet-blue); set/adorned with amethysts; amethystizon_A = mkA "amethystizon" "amethystizontos"; -- [XXXNO] :: resembling the color of the amethyst (violet-blue); @@ -3983,11 +3983,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat ametor_A = mkA "ametor" "ametoris"; -- [DXXFS] :: motherless; 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; + amfractus_M_N = mkN "amfractus" "amfractus" masculine ; -- [XXXBO] :: bend, curvature; circuit, (annual) round, orbit; spiral, coil; circumlocution; 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; + amias_M_N = mkN "amias" "amiae" masculine ; -- [XAXFO] :: small tunny, bonito; amica_F_N = mkN "amica" ; -- [XXXCO] :: female friend; girl friend, sweetheart; patron; mistress, concubine; courtesan; amicabilis_A = mkA "amicabilis" "amicabilis" "amicabile" ; -- [DXXFS] :: friendly, amicable; amicabiliter_Adv = mkAdv "amicabiliter" ; -- [DXXFS] :: in a friendly/amicable manner; @@ -3995,17 +3995,17 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat amicarius_M_N = mkN "amicarius" ; -- [DXXFS] :: procurer; one that procures a mistress/woman; amice_Adv =mkAdv "amice" "amicius" "amicissime" ; -- [XXXCO] :: in a friendly manner/spirit; with goodwill; amicicia_F_N = mkN "amicicia" ; -- [FXXEO] :: friendship, bond between friends; alliance, association; friendly relations; - amicimen_N_N = mkN "amicimen" "amiciminis " neuter ; -- [XXXFO] :: clothing, garment; + 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; + 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; + amicities_F_N = mkN "amicities" "amicitiei" feminine ; -- [XXXFO] :: friendship; amico_V2 = mkV2 (mkV "amicare") ; -- [XXXFO] :: propitiate, make friendly to oneself; amicosus_A = mkA "amicosus" "amicosa" "amicosum" ; -- [DXXFS] :: rich/abounding in friends; amictorium_N_N = mkN "amictorium" ; -- [XXXEO] :: scarf, wrap; amictorius_A = mkA "amictorius" "amictoria" "amictorium" ; -- [XXXES] :: suitable for throwing about one (wrap, scarf); - amictus_M_N = mkN "amictus" "amictus " masculine ; -- [XXXBO] :: cloak, mantle; outer garment; clothing, garb; fashion; manner of dress; drapery; + amictus_M_N = mkN "amictus" "amictus" masculine ; -- [XXXBO] :: cloak, mantle; outer garment; clothing, garb; fashion; manner of dress; drapery; 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; @@ -4014,134 +4014,134 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat amigro_V = mkV "amigrare" ; -- [XXXFO] :: go away, remove; amilum_N_N = mkN "amilum" ; -- [XXXDO] :: fine meal, starch, gruel; amissibilis_A = mkA "amissibilis" "amissibilis" "amissibile" ; -- [DEXES] :: that may be lost (eccl.); - amissio_F_N = mkN "amissio" "amissionis " feminine ; -- [XXXCO] :: loss (possessions/faculty/quality/persons/town/military force), deprivation; - amissus_M_N = mkN "amissus" "amissus " masculine ; -- [XXXFO] :: loss; fact of losing; + amissio_F_N = mkN "amissio" "amissionis" feminine ; -- [XXXCO] :: loss (possessions/faculty/quality/persons/town/military force), deprivation; + amissus_M_N = mkN "amissus" "amissus" masculine ; -- [XXXFO] :: loss; fact of losing; amita_F_N = mkN "amita" ; -- [XXXCO] :: paternal aunt, father's sister; [~ magna/maior/maxima=>great/g-g/g-g-g-aunt]; 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; + 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; - ammetior_V = mkV "ammetiri" "ammetior" "ammensus sum " ; -- [XXXCO] :: measure out (to); + 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; + amminiculator_M_N = mkN "amminiculator" "amminiculatoris" masculine ; -- [XXXFO] :: assistant, supporter; one who supports; 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; amminister_M_N = mkN "amminister" ; -- [XXXCO] :: assistant, helper, supporter; one at hand to help, attendant; priest, minister; amministra_F_N = mkN "amministra" ; -- [XXXEO] :: assistant (female), helper, supporter, servant; handmaiden, attendant; - amministratio_F_N = mkN "amministratio" "amministrationis " feminine ; -- [XXXBO] :: administration; assistance; execution, operation, management, care of affairs; + amministratio_F_N = mkN "amministratio" "amministrationis" feminine ; -- [XXXBO] :: administration; assistance; execution, operation, management, care of affairs; amministrativus_A = mkA "amministrativus" "amministrativa" "amministrativum" ; -- [XXXFO] :: practical; suitable for the administration of; - amministrator_M_N = mkN "amministrator" "amministratoris " masculine ; -- [XXXEO] :: director, manager; one who is in charge of an operation; + amministrator_M_N = mkN "amministrator" "amministratoris" masculine ; -- [XXXEO] :: director, manager; one who is in charge of an operation; amministratorius_A = mkA "amministratorius" "amministratoria" "amministratorium" ; -- [DXXES] :: performing the duties of an assistant/helper; serving, ministering; amministro_V = mkV "amministrare" ; -- [XXXBO] :: administer, manage, direct; assist; operate, conduct; maneuver (ship); bestow; ammirabilis_A = mkA "ammirabilis" "ammirabilis" "ammirabile" ; -- [XXXCO] :: admirable, wonderful; strange, astonishing, remarkable; paradoxical, contrary; - ammirabilitas_F_N = mkN "ammirabilitas" "ammirabilitatis " feminine ; -- [XXXEO] :: wonderful character, remarkableness; admiration, wonder; + ammirabilitas_F_N = mkN "ammirabilitas" "ammirabilitatis" feminine ; -- [XXXEO] :: wonderful character, remarkableness; admiration, wonder; ammirabiliter_Adv = mkAdv "ammirabiliter" ; -- [XXXEO] :: admirably, astonishingly, in a wonderful/wondrous manner; paradoxically; ammirandus_A = mkA "ammirandus" "ammiranda" "ammirandum" ; -- [XXXCO] :: wonderful, admirable; astonishing, remarkable, extraordinary; ammiranter_Adv = mkAdv "ammiranter" ; -- [EXXCV] :: admiringly, with admiration; - ammiratio_F_N = mkN "ammiratio" "ammirationis " feminine ; -- [XXXBO] :: wonder, surprise, astonishment; admiration, veneration, regard; marvel; - ammirator_M_N = mkN "ammirator" "ammiratoris " masculine ; -- [XXXCO] :: admirer; one who venerates; + ammiratio_F_N = mkN "ammiratio" "ammirationis" feminine ; -- [XXXBO] :: wonder, surprise, astonishment; admiration, veneration, regard; marvel; + ammirator_M_N = mkN "ammirator" "ammiratoris" masculine ; -- [XXXCO] :: admirer; one who venerates; ammiror_V = mkV "ammirari" ; -- [XXXBO] :: admire, respect; regard with wonder, wonder at; be surprised at, be astonished; ammisceo_V2 = mkV2 (mkV "ammiscere") ; -- [XXXBO] :: mix, mix together; involve; add an ingredient to; contaminate; confuse, mix up; ammissarius_A = mkA "ammissarius" "ammissaria" "ammissarium" ; -- [XAXEO] :: kept for breeding (male animals), on stud; ammissarius_M_N = mkN "ammissarius" ; -- [XAXDO] :: stallion/he-ass, stud; sodomite; - ammissio_F_N = mkN "ammissio" "ammissionis " feminine ; -- [XXXCO] :: getting in, audience, interview; application (medical); mating (animals); - ammissionalis_M_N = mkN "ammissionalis" "ammissionalis " masculine ; -- [DXXES] :: one who introduces/announces at audience; privy chamber usher; seneschal; + ammissio_F_N = mkN "ammissio" "ammissionis" feminine ; -- [XXXCO] :: getting in, audience, interview; application (medical); mating (animals); + ammissionalis_M_N = mkN "ammissionalis" "ammissionalis" masculine ; -- [DXXES] :: one who introduces/announces at audience; privy chamber usher; seneschal; ammissivus_A = mkA "ammissivus" "ammissiva" "ammissivum" ; -- [XEXFS] :: permitting/favorable (birds of omen approving of action in question); - ammissor_M_N = mkN "ammissor" "ammissoris " masculine ; -- [DXXES] :: perpetrator; one who allows himself to do a thing; + ammissor_M_N = mkN "ammissor" "ammissoris" masculine ; -- [DXXES] :: perpetrator; one who allows himself to do a thing; ammissum_N_N = mkN "ammissum" ; -- [XXXDO] :: crime, offense; ammissura_F_N = mkN "ammissura" ; -- [XAXDO] :: breeding, generation; copulation/mating of domestic animals, service; - 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; + 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; + ammixtio_F_N = mkN "ammixtio" "ammixtionis" feminine ; -- [XXXEO] :: mixture, admixture, mingling; ammixtus_A = mkA "ammixtus" "ammixta" "ammixtum" ; -- [XXXES] :: mixed; contaminated; not simple; confused; - ammixtus_M_N = mkN "ammixtus" "ammixtus " masculine ; -- [DXXES] :: mixture, admixture, mingling; + ammixtus_M_N = mkN "ammixtus" "ammixtus" masculine ; -- [DXXES] :: mixture, admixture, mingling; ammochrysus_M_N = mkN "ammochrysus" ; -- [XXXNS] :: precious stone (golden mica?); ammoderate_Adv = mkAdv "ammoderate" ; -- [XXXFO] :: comfortably; suitably; ammoderor_V = mkV "ammoderari" ; -- [XXXFO] :: control (w/DAT); keep within limits; moderate; ammodo_Adv = mkAdv "ammodo" ; -- [EXXEB] :: henceforth, from this time forward; from now (on); in the future; 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; + 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; ammoniacus_A = mkA "ammoniacus" "ammoniaca" "ammoniacum" ; -- [XXXFZ] :: of Ammon (Egyptian god) (Collins); - ammonitio_F_N = mkN "ammonitio" "ammonitionis " feminine ; -- [XXXBO] :: act of reminding; reminder, recurring symptom; warning, advice; rebuke; - ammonitor_M_N = mkN "ammonitor" "ammonitoris " masculine ; -- [XXXEO] :: admonisher; exhorter; one who reminds; + ammonitio_F_N = mkN "ammonitio" "ammonitionis" feminine ; -- [XXXBO] :: act of reminding; reminder, recurring symptom; warning, advice; rebuke; + ammonitor_M_N = mkN "ammonitor" "ammonitoris" masculine ; -- [XXXEO] :: admonisher; exhorter; one who reminds; ammonitorium_N_N = mkN "ammonitorium" ; -- [XXXFS] :: admonition; - ammonitrix_F_N = mkN "ammonitrix" "ammonitricis " feminine ; -- [XXXFS] :: monitor (female); she that admonishers/reminds; + ammonitrix_F_N = mkN "ammonitrix" "ammonitricis" feminine ; -- [XXXFS] :: monitor (female); she that admonishers/reminds; ammonitrum_N_N = mkN "ammonitrum" ; -- [XXENS] :: natron (sesquicarbonate of soda) mingled with sand; ammonitum_N_N = mkN "ammonitum" ; -- [XXXEL] :: warning; reminder; reminding; advice; admonition (L+S); - ammonitus_M_N = mkN "ammonitus" "ammonitus " masculine ; -- [XXXCO] :: advice, recommendation; admonition/warning; command (animal); reminder; reproof; + ammonitus_M_N = mkN "ammonitus" "ammonitus" masculine ; -- [XXXCO] :: advice, recommendation; admonition/warning; command (animal); reminder; reproof; ammordeo_V2 = mkV2 (mkV "ammordere") ; -- [XXXDO] :: bite at/into, gnaw; extract money from; fleece; get possession of his property; ammorsus_A = mkA "ammorsus" "ammorsa" "ammorsum" ; -- [XXXEL] :: bitten, gnawed; - 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; + 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; + ammurmuratio_F_N = mkN "ammurmuratio" "ammurmurationis" feminine ; -- [XXXEO] :: murmur of comment; murmuring; ammurmuro_V = mkV "ammurmurare" ; -- [XXXDO] :: murmur in protest or approval; murmur at; ammurmuror_V = mkV "ammurmurari" ; -- [XXXFS] :: murmur in protest or approval; murmur at; ammutilo_V2 = mkV2 (mkV "ammutilare") ; -- [XXXEO] :: cut/clip close; shave; fleece, cheat, defraud; amnacum_N_N = mkN "amnacum" ; -- [XAXNS] :: herbaceous plant, pellitory; - amnensis_F_N = mkN "amnensis" "amnensis " feminine ; -- [DXXFS] :: river town; towns (pl.) situated near a river; - amnesis_F_N = mkN "amnesis" "amnesis " feminine ; -- [DXXFS] :: river town; towns (pl.) situated near a river; + amnensis_F_N = mkN "amnensis" "amnensis" feminine ; -- [DXXFS] :: river town; towns (pl.) situated near a river; + amnesis_F_N = mkN "amnesis" "amnesis" feminine ; -- [DXXFS] :: river town; towns (pl.) situated near a river; amnestia_F_N = mkN "amnestia" ; -- [XXXFO] :: amnesty, general pardon; amnicolus_A = mkA "amnicolus" "amnicola" "amnicolum" ; -- [XXXFO] :: growing beside a river (-a, -ae for M/F); dwelling beside a river (L+S); amniculus_M_N = mkN "amniculus" ; -- [XXXFO] :: small brook, rivulet; amnicus_A = mkA "amnicus" "amnica" "amnicum" ; -- [XXXEO] :: of/connected with a river, situated in a river; amnigenus_A = mkA "amnigenus" "amnigena" "amnigenum" ; -- [XXXFO] :: that is the son/descendent of a river (-a, -ae for M/F); - amnis_M_N = mkN "amnis" "amnis " masculine ; -- [XXXBO] :: river (real/personified), stream; current; (running) water; the river Ocean; + amnis_M_N = mkN "amnis" "amnis" masculine ; -- [XXXBO] :: river (real/personified), stream; current; (running) water; the river Ocean; amo_V = mkV "amare" ; -- [XXXAO] :: love, like; fall in love with; be fond of; have a tendency to; amodo_Adv = mkAdv "amodo" ; -- [DXXES] :: henceforth, from this time forward; from now (on); in the future; amoebaeus_A = mkA "amoebaeus" "amoebaea" "amoebaeum" ; -- [DXXES] :: alternate; [amoebaeum carmen => responsive song]; amoene_Adv =mkAdv "amoene" "amoenius" "amoenissime" ; -- [XXXDO] :: in a pleasant/attractive manner, agreeably; - amoenitas_F_N = mkN "amoenitas" "amoenitatis " feminine ; -- [XXXCO] :: pleasantness, attractiveness, attraction, charm; delight, comfort, luxury; + amoenitas_F_N = mkN "amoenitas" "amoenitatis" feminine ; -- [XXXCO] :: pleasantness, attractiveness, attraction, charm; delight, comfort, luxury; 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.); 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; + 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; amomum_N_N = mkN "amomum" ; -- [XAQCO] :: amonum, eastern spice-plant; spice from the plant; unguent/balm with this spice; - amor_M_N = mkN "amor" "amoris " masculine ; -- [XXXAO] :: love; affection; the beloved; Cupid; affair; sexual/illicit/homosexual passion; + amor_M_N = mkN "amor" "amoris" masculine ; -- [XXXAO] :: love; affection; the beloved; Cupid; affair; sexual/illicit/homosexual passion; amorabundus_A = mkA "amorabundus" "amorabunda" "amorabundum" ; -- [XXXFO] :: loving, amorous; amorifer_A = mkA "amorifer" "amorifera" "amoriferum" ; -- [DXXFS] :: producing/causing/awakening love; amorificus_A = mkA "amorificus" "amorifica" "amorificum" ; -- [DXXFS] :: producing/causing/awakening love; - amortizatio_F_N = mkN "amortizatio" "amortizationis " feminine ; -- [HLXFE] :: amortization; liquidation of a debt; - amos_M_N = mkN "amos" "amoris " masculine ; -- [BPXDS] :: love, affection; the beloved; Cupid; affair; sexual/illicit/homosexual passion; + amortizatio_F_N = mkN "amortizatio" "amortizationis" feminine ; -- [HLXFE] :: amortization; liquidation of a debt; + amos_M_N = mkN "amos" "amoris" masculine ; -- [BPXDS] :: love, affection; the beloved; Cupid; affair; sexual/illicit/homosexual passion; amothystinatus_A = mkA "amothystinatus" "amothystinata" "amothystinatum" ; -- [XXXFS] :: that wears a dress the color of amethyst; amotibilis_A = mkA "amotibilis" "amotibilis" "amotibile" ; -- [FXXFM] :: removable; - amotio_F_N = mkN "amotio" "amotionis " feminine ; -- [XXXEO] :: removal; deprivation; process of removing; + amotio_F_N = mkN "amotio" "amotionis" feminine ; -- [XXXEO] :: removal; deprivation; process of removing; amoveo_V2 = mkV2 (mkV "amovere") ; -- [XXXAO] :: move/take/put away, remove, steal; banish, cause to go away; withdraw, retire; amovibilis_A = mkA "amovibilis" "amovibilis" "amovibile" ; -- [GXXFE] :: removable; movable; - amovibilitas_F_N = mkN "amovibilitas" "amovibilitatis " feminine ; -- [GXXFE] :: removability; + amovibilitas_F_N = mkN "amovibilitas" "amovibilitatis" feminine ; -- [GXXFE] :: removability; ampelinus_A = mkA "ampelinus" "ampelina" "ampelinum" ; -- [XAXFO] :: vine-colored/covered; made of vines; - ampelitis_F_N = mkN "ampelitis" "ampelitidis " feminine ; -- [XAXEO] :: vineyard, vineland; pitch/asphalt (used to preserve vines from insects); - ampelodesmos_M_N = mkN "ampelodesmos" "ampelodesmi " masculine ; -- [XAXNO] :: plant used to tie up vines, esparto/Spanish grass; - ampeloeuce_F_N = mkN "ampeloeuce" "ampeloeuces " feminine ; -- [XAXNS] :: bryony (white vine) (Bryonia alba); - ampeloprason_N_N = mkN "ampeloprason" "ampeloprasi " neuter ; -- [XAXNO] :: species of wild leek, vine-leek? field-garlic?; - ampelos_F_N = mkN "ampelos" "ampeli " feminine ; -- [XAXNO] :: vine; - ampendix_M_N = mkN "ampendix" "ampendicis " masculine ; -- [BXXFS] :: appendix, supplement, annex; appendage, adjunct; hanger on; barberry bush/fruit; + ampelitis_F_N = mkN "ampelitis" "ampelitidis" feminine ; -- [XAXEO] :: vineyard, vineland; pitch/asphalt (used to preserve vines from insects); + ampelodesmos_M_N = mkN "ampelodesmos" "ampelodesmi" masculine ; -- [XAXNO] :: plant used to tie up vines, esparto/Spanish grass; + ampeloeuce_F_N = mkN "ampeloeuce" "ampeloeuces" feminine ; -- [XAXNS] :: bryony (white vine) (Bryonia alba); + ampeloprason_N_N = mkN "ampeloprason" "ampeloprasi" neuter ; -- [XAXNO] :: species of wild leek, vine-leek? field-garlic?; + ampelos_F_N = mkN "ampelos" "ampeli" feminine ; -- [XAXNO] :: vine; + ampendix_M_N = mkN "ampendix" "ampendicis" masculine ; -- [BXXFS] :: appendix, supplement, annex; appendage, adjunct; hanger on; barberry bush/fruit; amperium_N_N = mkN "amperium" ; -- [GSXEK] :: ampere; amphemerinos_A = mkA "amphemerinos" "amphemerinos" "amphemerinon" ; -- [XXXNO] :: recurring every day, daily, quotidian, pertaining to everyday; amphibalus_M_N = mkN "amphibalus" ; -- [FEXEE] :: chasuble; (sleeveless mantle worn over alb and stole by priest at Mass); @@ -4150,21 +4150,21 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat amphibologia_F_N = mkN "amphibologia" ; -- [DXXFS] :: ambiguity; double meaning; amphibolus_A = mkA "amphibolus" "amphibola" "amphibolum" ; -- [DXXFS] :: amphibious; amphibrachus_M_N = mkN "amphibrachus" ; -- [DPXFS] :: poetical foot short-long-short, amphibrach; - amphibrachysos_M_N = mkN "amphibrachysos" "amphibrachi " masculine ; -- [XPXFS] :: poetical foot short-long-short, amphibrach; - amphibrevis_M_N = mkN "amphibrevis" "amphibrevis " masculine ; -- [DPXFS] :: poetical foot short-long-short, amphibrach; - amphicomos_M_N = mkN "amphicomos" "amphicomi " masculine ; -- [XXXNO] :: precious stone; - amphidane_F_N = mkN "amphidane" "amphidanes " feminine ; -- [XXXNO] :: precious stone also called chrysocolla (magnetic pyrite? L+S); - amphimacros_M_N = mkN "amphimacros" "amphimacri " masculine ; -- [XPXEO] :: metrical foot, a short syllable between two long ones, amphimacer, cretic; + amphibrachysos_M_N = mkN "amphibrachysos" "amphibrachi" masculine ; -- [XPXFS] :: poetical foot short-long-short, amphibrach; + amphibrevis_M_N = mkN "amphibrevis" "amphibrevis" masculine ; -- [DPXFS] :: poetical foot short-long-short, amphibrach; + amphicomos_M_N = mkN "amphicomos" "amphicomi" masculine ; -- [XXXNO] :: precious stone; + amphidane_F_N = mkN "amphidane" "amphidanes" feminine ; -- [XXXNO] :: precious stone also called chrysocolla (magnetic pyrite? L+S); + amphimacros_M_N = mkN "amphimacros" "amphimacri" masculine ; -- [XPXEO] :: metrical foot, a short syllable between two long ones, amphimacer, cretic; amphimacrus_M_N = mkN "amphimacrus" ; -- [XPXES] :: metrical foot, a short syllable between two long ones, amphimacer, cretic; amphimallium_N_N = mkN "amphimallium" ; -- [XXXEO] :: cloak that is woolly inside and out; amphimallum_N_N = mkN "amphimallum" ; -- [XXXEO] :: cloak that is woolly inside and out; - amphiprostylos_F_N = mkN "amphiprostylos" "amphiprostyli " feminine ; -- [XTXFO] :: temple having portico/pillars front and rear but not sides, amphiprostyle; + amphiprostylos_F_N = mkN "amphiprostylos" "amphiprostyli" feminine ; -- [XTXFO] :: temple having portico/pillars front and rear but not sides, amphiprostyle; amphisbaena_F_N = mkN "amphisbaena" ; -- [XXAEO] :: species of Libyan serpent supposed to have a head at both ends, amphisbaena; amphisporum_N_N = mkN "amphisporum" ; -- [XAXIO] :: boundary land the right to sow which is in dispute between two peoples; amphistomus_A = mkA "amphistomus" "amphistoma" "amphistomum" ; -- [XXXFO] :: having double mouth/entrance; - amphitane_F_N = mkN "amphitane" "amphitanes " feminine ; -- [XXXNS] :: precious stone also called chrysocolla (magnetic pyrite? L+S); - amphitapos_M_N = mkN "amphitapos" "amphitapi " masculine ; -- [XXXEO] :: rug with pile on both sides; - amphithalamos_M_N = mkN "amphithalamos" "amphithalami " masculine ; -- [XXHFO] :: bedroom on north of Greek house opposite the thalamus (inner/marriage chamber); + amphitane_F_N = mkN "amphitane" "amphitanes" feminine ; -- [XXXNS] :: precious stone also called chrysocolla (magnetic pyrite? L+S); + amphitapos_M_N = mkN "amphitapos" "amphitapi" masculine ; -- [XXXEO] :: rug with pile on both sides; + amphithalamos_M_N = mkN "amphithalamos" "amphithalami" masculine ; -- [XXHFO] :: bedroom on north of Greek house opposite the thalamus (inner/marriage chamber); amphitheatralis_A = mkA "amphitheatralis" "amphitheatralis" "amphitheatrale" ; -- [XXXEO] :: of/in the amphitheater; worthy of the amphitheater; amphitheatricus_A = mkA "amphitheatricus" "amphitheatrica" "amphitheatricum" ; -- [XXXEO] :: made near the amphitheater; cheap, of little value (L+S); amphitheatriticus_A = mkA "amphitheatriticus" "amphitheatritica" "amphitheatriticum" ; -- [XXXNO] :: made near the amphitheater; cheap, of little value (L+S); @@ -4174,28 +4174,28 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; - ampliatio_F_N = mkN "ampliatio" "ampliationis " feminine ; -- [XXXEO] :: enlargement, augmentation; deferral/reserve of judgment, trial postponement; - ampliator_M_N = mkN "ampliator" "ampliatoris " masculine ; -- [XXXFO] :: one who increases the number (of something), augmenter; - amplificatio_F_N = mkN "amplificatio" "amplificationis " feminine ; -- [XXXCO] :: enlargement, amplification, augmentation, increasing, making greater; - amplificator_M_N = mkN "amplificator" "amplificatoris " masculine ; -- [XXXEO] :: enlarger, amplifier, augmenter, increaser, extender, developer; + amplexus_M_N = mkN "amplexus" "amplexus" masculine ; -- [XXXCO] :: clasp, embrace, surrounding; sexual embrace; coil (snake); circumference; + ampliatio_F_N = mkN "ampliatio" "ampliationis" feminine ; -- [XXXEO] :: enlargement, augmentation; deferral/reserve of judgment, trial postponement; + ampliator_M_N = mkN "ampliator" "ampliatoris" masculine ; -- [XXXFO] :: one who increases the number (of something), augmenter; + amplificatio_F_N = mkN "amplificatio" "amplificationis" feminine ; -- [XXXCO] :: enlargement, amplification, augmentation, increasing, making greater; + amplificator_M_N = mkN "amplificator" "amplificatoris" masculine ; -- [XXXEO] :: enlarger, amplifier, augmenter, increaser, extender, developer; amplificatrum_N_N = mkN "amplificatrum" ; -- [GXXEK] :: amplifier; amplifice_Adv = mkAdv "amplifice" ; -- [XXXFO] :: magnificently, splendidly; amplifico_V2 = mkV2 (mkV "amplificare") ; -- [XXXBO] :: enlarge, extend, increase; develop; magnify, amplify; praise loudly, exalt; amplificus_A = mkA "amplificus" "amplifica" "amplificum" ; -- [XXXFO] :: magnificent, splendid; 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); + amplitudo_F_N = mkN "amplitudo" "amplitudinis" feminine ; -- [XXXBO] :: greatness; extent, breadth, width, bulk; importance; fullness (of expression); 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); 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; - amploctor_V = mkV "amplocti" "amploctor" "amploxus sum " ; -- [BXXAS] :: surround, encircle, embrace, clasp; esteem; cherish; surround, include, grasp; + 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; @@ -4204,7 +4204,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat ampullaceus_A = mkA "ampullaceus" "ampullacea" "ampullaceum" ; -- [XXXEO] :: of/used for an ampulla/jar/bottle; shaped like an ampulla, big-bellied; ampullarius_M_N = mkN "ampullarius" ; -- [XXXEO] :: dealer/maker of flasks/bottles/jars/ampulla; ampullor_V = mkV "ampullari" ; -- [XGXFO] :: use bombast, make use of a bombastic form of discourse; - amputatio_F_N = mkN "amputatio" "amputationis " feminine ; -- [XAXCO] :: pruning, lopping off; amputation; twigs removed by pruning, cuttings; + amputatio_F_N = mkN "amputatio" "amputationis" feminine ; -- [XAXCO] :: pruning, lopping off; amputation; twigs removed by pruning, cuttings; amputo_V2 = mkV2 (mkV "amputare") ; -- [XXXBO] :: lop/cut off, prune, shorten; amputate; eradicate, exclude, take away; castrate; amtruo_V = mkV "amtruare" ; -- [XEXFS] :: dance around (at Salian religious festivals); amula_F_N = mkN "amula" ; -- [EXXDW] :: basin; small/shallow bucket/vessel; @@ -4216,46 +4216,46 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat amusia_F_N = mkN "amusia" ; -- [XDXFO] :: boorishness, lack of refinement; ignorance of music (L+S); amusium_N_N = mkN "amusium" ; -- [XTXEO] :: leveled slab for testing flat surface; horizontal wheel to show wind direction; amusos_A = mkA "amusos" "amusos" "amuson" ; -- [XDXFO] :: ignorant of music; - amussis_F_N = mkN "amussis" "amussis " feminine ; -- [XTXDO] :: ruler/straight edge (mason's/carpenter's); precision [ad ~ => with precision]; + amussis_F_N = mkN "amussis" "amussis" feminine ; -- [XTXDO] :: ruler/straight edge (mason's/carpenter's); precision [ad ~ => with precision]; amussito_V2 = mkV2 (mkV "amussitare") ; -- [XXXFS] :: make according to ruler/accurately/exactly/nicely; amussium_N_N = mkN "amussium" ; -- [XTXEO] :: leveled slab for testing flat surface; horizontal wheel to show wind direction; amycticus_A = mkA "amycticus" "amyctica" "amycticum" ; -- [DBXFS] :: scratching; sharp/biting (of medical remedies); amydalinus_A = mkA "amydalinus" "amydalina" "amydalinum" ; -- [EXXEE] :: almond-, of almonds; amygdala_F_N = mkN "amygdala" ; -- [XAXDO] :: almond tree; almond; [~ amarum => bitter almond; ~ dulce => sweet almond]; amygdalaceus_A = mkA "amygdalaceus" "amygdalacea" "amygdalaceum" ; -- [XAXNS] :: similar to the almond tree/almond; - amygdale_F_N = mkN "amygdale" "amygdales " feminine ; -- [XAXDO] :: almond tree; almond; [~ amarum => bitter almond; ~ dulce => sweet almond]; + amygdale_F_N = mkN "amygdale" "amygdales" feminine ; -- [XAXDO] :: almond tree; almond; [~ amarum => bitter almond; ~ dulce => sweet almond]; amygdaleus_A = mkA "amygdaleus" "amygdalea" "amygdaleum" ; -- [XAXNS] :: of/pertaining to an almond tree; amygdalinus_A = mkA "amygdalinus" "amygdalina" "amygdalinum" ; -- [XAXNO] :: of/made of almonds; grafted on an almond tree; - amygdalites_M_N = mkN "amygdalites" "amygdalitae " masculine ; -- [XAXNO] :: kind of euphorbia, broad-leaved spurge; tree like the almond tree (L+S); + amygdalites_M_N = mkN "amygdalites" "amygdalitae" masculine ; -- [XAXNO] :: kind of euphorbia, broad-leaved spurge; tree like the almond tree (L+S); amygdalum_N_N = mkN "amygdalum" ; -- [XAXDO] :: almond (nut); [~ amarum => bitter almond; ~ dulce => sweet almond]; amygdalus_F_N = mkN "amygdalus" ; -- [XAXFS] :: almond tree; almond; [~ amarum => bitter almond; ~ dulce => sweet almond]; 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; + amystis_F_N = mkN "amystis" "amystidis" feminine ; -- [XXXFO] :: drink taken in one draught; 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); + anabasis_F_N = mkN "anabasis" "anabasis" feminine ; -- [XAXNO] :: plant name applied by Pliny to any equisetum (e.g., horsetail, mare's tail); anabathrum_N_N = mkN "anabathrum" ; -- [XXXFO] :: raised/elevated seat (in a theater); elevator; anaboladium_N_N = mkN "anaboladium" ; -- [XXXFO] :: kind of cloak; shawl; scarf; anabolagium_N_N = mkN "anabolagium" ; -- [FEXFE] :: veil, head covering; amice (oblong white shawl on shoulders of priest); anabolarium_N_N = mkN "anabolarium" ; -- [FEXFE] :: veil, head covering; amice (oblong white shawl on shoulders of priest); anabolium_N_N = mkN "anabolium" ; -- [DBXFS] :: surgical instrument; - anacampserox_F_N = mkN "anacampserox" "anacampserotis " feminine ; -- [XAXNS] :: plant (unidentified); (said to bring back lost love by its touch); - anachites_F_N = mkN "anachites" "anachitae " feminine ; -- [XXXNS] :: precious stone (unknown, diamond?) (as remedy for sadness); - anachoresis_F_N = mkN "anachoresis" "anachoresis " feminine ; -- [DEXFS] :: retirement, life of a ermite/hermit; + anacampserox_F_N = mkN "anacampserox" "anacampserotis" feminine ; -- [XAXNS] :: plant (unidentified); (said to bring back lost love by its touch); + anachites_F_N = mkN "anachites" "anachitae" feminine ; -- [XXXNS] :: precious stone (unknown, diamond?) (as remedy for sadness); + anachoresis_F_N = mkN "anachoresis" "anachoresis" feminine ; -- [DEXFS] :: retirement, life of a ermite/hermit; anachoreta_M_N = mkN "anachoreta" ; -- [FEXEE] :: hermit, anchorite; anachoreticus_A = mkA "anachoreticus" "anachoretica" "anachoreticum" ; -- [FEXFE] :: eremitical, anchoritic, of a hermit anachorita_M_N = mkN "anachorita" ; -- [FEXEE] :: hermit, anchorite; anachronismus_M_N = mkN "anachronismus" ; -- [GXXEK] :: anachronism; 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; + 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; + anadiplosis_F_N = mkN "anadiplosis" "anadiplosis" feminine ; -- [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"); + 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; anaglyphus_A = mkA "anaglyphus" "anaglypha" "anaglyphum" ; -- [DTXFS] :: carved in low/bas relief; anaglyptarius_A = mkA "anaglyptarius" "anaglyptaria" "anaglyptarium" ; -- [XTXIO] :: that works/carves in relief; @@ -4264,35 +4264,35 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat anaglyptus_A = mkA "anaglyptus" "anaglypta" "anaglyptum" ; -- [XTXEO] :: carved in low/bas relief; 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; + 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); + 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); + analectris_F_N = mkN "analectris" "analectridis" feminine ; -- [XAXEL] :: pad worn under the shoulder blades; shoulder pad (to improve the figure); 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); + 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); analogicus_A = mkA "analogicus" "analogica" "analogicum" ; -- [XGXFO] :: analogous; of grammatical analogy/similarity (word inflections/derivations); analogium_N_N = mkN "analogium" ; -- [FEXEE] :: lectern; pulpit; reader's desk; analogus_A = mkA "analogus" "analoga" "analogum" ; -- [XGXFO] :: proportional; analogous; analphabetismus_M_N = mkN "analphabetismus" ; -- [GXXFE] :: illiteracy; analphabetus_A = mkA "analphabetus" "analphabeta" "analphabetum" ; -- [GXXEK] :: illiterate; - analysis_F_N = mkN "analysis" "analysis " feminine ; -- [GSXEE] :: analysis + analysis_F_N = mkN "analysis" "analysis" feminine ; -- [GSXEE] :: analysis analyzo_V = mkV "analyzare" ; -- [GXXEK] :: analyze; - anamnesis_F_N = mkN "anamnesis" "anamnesis " feminine ; -- [GEXFE] :: commemoration; (Greek); + anamnesis_F_N = mkN "anamnesis" "anamnesis" feminine ; -- [GEXFE] :: commemoration; (Greek); ananasa_F_N = mkN "ananasa" ; -- [GAXEK] :: pineapple; anancaeum_N_N = mkN "anancaeum" ; -- [XXXEO] :: large drinking vessel which had to be emptied in a single draught; - anancites_M_N = mkN "anancites" "anancitae " masculine ; -- [XXXNO] :: hardest of substances (adamas); steel; diamond (as remedy for sadness L+S); - anancitis_F_N = mkN "anancitis" "anancitidis " feminine ; -- [XXXNS] :: precious stone (diamond?) (used in hydromancy/divination from water signs); + anancites_M_N = mkN "anancites" "anancitae" masculine ; -- [XXXNO] :: hardest of substances (adamas); steel; diamond (as remedy for sadness L+S); + anancitis_F_N = mkN "anancitis" "anancitidis" feminine ; -- [XXXNS] :: precious stone (diamond?) (used in hydromancy/divination from water signs); anapaesticum_N_N = mkN "anapaesticum" ; -- [XPXEO] :: anapaestic verse (pl.), (using metrical foot, two shorts followed by long); anapaesticus_A = mkA "anapaesticus" "anapaestica" "anapaesticum" ; -- [XPXFO] :: anapaestic, referring to anapaest (metrical foot, two shorts followed by long); anapaestum_N_N = mkN "anapaestum" ; -- [XPXEO] :: anapaestic line/passage (metrical foot, two shorts followed by long); anapaestus_A = mkA "anapaestus" "anapaesta" "anapaestum" ; -- [XPXCO] :: anapaestic (consisting of two shorts followed by a long); anapaestus_M_N = mkN "anapaestus" ; -- [XPXEO] :: anapaest (metrical foot, two shorts followed by long); - anapauomene_F_N = mkN "anapauomene" "anapauomenes " feminine ; -- [XXXNO] :: woman resting (as title of painting); - anapauomenos_M_N = mkN "anapauomenos" "anapauomeni " masculine ; -- [XXXFO] :: man resting (as title of painting); + anapauomene_F_N = mkN "anapauomene" "anapauomenes" feminine ; -- [XXXNO] :: woman resting (as title of painting); + 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; anaphysema_1_N = mkN "anaphysema" "anaphysematis" neuter ; -- [XXXFO] :: upward blast; @@ -4301,18 +4301,18 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat anarchia_F_N = mkN "anarchia" ; -- [FXXEM] :: anarchy; lawlessness; lack of a leader/commander; anarchista_M_N = mkN "anarchista" ; -- [GXXEK] :: anarchist; anarchos_A = mkA "anarchos" "anarchos" "anarchon" ; -- [FXXEN] :: without beginning; without a leader; - anarrinon_N_N = mkN "anarrinon" "anarrini " neuter ; -- [XAXNO] :: snapdragon, antirrhinum; - anas_F_N = mkN "anas" "anitis " feminine ; -- [XAXEO] :: duck; - anasceue_F_N = mkN "anasceue" "anasceues " feminine ; -- [XGXFO] :: refutation of arguments; - anastasis_F_N = mkN "anastasis" "anastasis " feminine ; -- [FEXEE] :: Resurrection; + anarrinon_N_N = mkN "anarrinon" "anarrini" neuter ; -- [XAXNO] :: snapdragon, antirrhinum; + anas_F_N = mkN "anas" "anitis" feminine ; -- [XAXEO] :: duck; + anasceue_F_N = mkN "anasceue" "anasceues" feminine ; -- [XGXFO] :: refutation of arguments; + anastasis_F_N = mkN "anastasis" "anastasis" feminine ; -- [FEXEE] :: Resurrection; anastomoticus_A = mkA "anastomoticus" "anastomotica" "anastomoticum" ; -- [XBXFO] :: relaxing (medicine, to open/widen vessels for blood flow); aperient, laxative; anataria_F_N = mkN "anataria" ; -- [XAXNO] :: species of eagle; duck eagle? (Falco haliactus); anatarius_A = mkA "anatarius" "anataria" "anatarium" ; -- [XAXNS] :: pertaining to a duck; [~a aquila => duck eagle (Falco haliactus)]; - anathema_N_N = mkN "anathema" "anathematis " neuter ; -- [DEXDX] :: offering; sacrificial victim; curse; cursed thing; excommunication, anathema; + anathema_N_N = mkN "anathema" "anathematis" neuter ; -- [DEXDX] :: offering; sacrificial victim; curse; cursed thing; excommunication, anathema; anathematismus_M_N = mkN "anathematismus" ; -- [FEXDE] :: anathema; curse/ban/denunciation; evil thing; curse of excommunication; anathematizo_V2 = mkV2 (mkV "anathematizare") ; -- [DEXCS] :: anathemize, put under ban; curse; detest; anathemo_V2 = mkV2 (mkV "anathemare") ; -- [DEXFS] :: anathematize, anathemize, put under ban; curse; detest; - anathymiasis_F_N = mkN "anathymiasis" "anathymiasidis " feminine ; -- [XBXFO] :: rising of "vapors" (to the head); + anathymiasis_F_N = mkN "anathymiasis" "anathymiasidis" feminine ; -- [XBXFO] :: rising of "vapors" (to the head); anaticula_F_N = mkN "anaticula" ; -- [XAXEO] :: duckling; term of endearment, duckie; anatina_F_N = mkN "anatina" ; -- [XAXFO] :: duck's flesh/meat, duck; anatinus_A = mkA "anatinus" "anatina" "anatinum" ; -- [XAXFO] :: of/from/concerning a duck, duck's; @@ -4321,35 +4321,35 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat anatomica_F_N = mkN "anatomica" ; -- [DBXFS] :: anatomy; anatomicus_A = mkA "anatomicus" "anatomica" "anatomicum" ; -- [GBXEK] :: anatomical; anatomicus_M_N = mkN "anatomicus" ; -- [DBXFS] :: anatomist; - anatomie_F_N = mkN "anatomie" "anatomies " feminine ; -- [DBXFS] :: anatomy; + anatomie_F_N = mkN "anatomie" "anatomies" feminine ; -- [DBXFS] :: anatomy; anatonus_A = mkA "anatonus" "anatona" "anatonum" ; -- [XWXFO] :: longstrung (length of tight skein propelling catapult); extending upward (L+S); - anatresis_F_N = mkN "anatresis" "anatresis " feminine ; -- [DXXFS] :: boring through; + anatresis_F_N = mkN "anatresis" "anatresis" feminine ; -- [DXXFS] :: boring through; anaudia_F_N = mkN "anaudia" ; -- [DBXES] :: loss of speech, dumbness; anca_C_N = mkN "anca" ; -- [FAXDT] :: goose; ancaesum_N_N = mkN "ancaesum" ; -- [BTXFS] :: embossed/engraved work (usu pl.) (esp. in gold/silver); ancala_F_N = mkN "ancala" ; -- [DBXFS] :: knee; bend of the knee; - ancale_F_N = mkN "ancale" "ancales " feminine ; -- [DBXFS] :: knee; bend of the knee; - ancele_N_N = mkN "ancele" "ancelis " neuter ; -- [CXXCS] :: ancele; (12 waisted shields fell from heaven, copies in Salii shrine of Mars); + ancale_F_N = mkN "ancale" "ancales" feminine ; -- [DBXFS] :: knee; bend of the knee; + ancele_N_N = mkN "ancele" "ancelis" neuter ; -- [CXXCS] :: ancele; (12 waisted shields fell from heaven, copies in Salii shrine of Mars); anceps_A = mkA "anceps" "ancipitis"; -- [XXXAO] :: |||doubtful/undecided/wavering; untrustworthy/unreliable/unpredictable; anchora_F_N = mkN "anchora" ; -- [XWXCO] :: anchor; grappling iron/hook; [in/ad ~is => at anchor]; anchusa_F_N = mkN "anchusa" ; -- [XAXNO] :: Dyer's bugloss (Anchusa tinctoria) (alkanet) or similar plant (ox-tongue); - ancile_N_N = mkN "ancile" "ancilis " neuter ; -- [CXXCO] :: ancele; (12 waisted shields fell from heaven, copies in Salii shrine of Mars); + ancile_N_N = mkN "ancile" "ancilis" neuter ; -- [CXXCO] :: ancele; (12 waisted shields fell from heaven, copies in Salii shrine of Mars); ancilla_F_N = mkN "ancilla" ; -- [XXXCO] :: slave girl; maid servant; handmaid; (opprobrious of man); nun (selfdescribed); ancillariolus_M_N = mkN "ancillariolus" ; -- [XXXEO] :: pursuer of slave girls; lover of maid-servants (L+S); ancillaris_A = mkA "ancillaris" "ancillaris" "ancillare" ; -- [XXXEO] :: of/having status of female slave; appropriate/characteristic to that position; - ancillatus_M_N = mkN "ancillatus" "ancillatus " masculine ; -- [XXXFS] :: service of a (female) slave; + ancillatus_M_N = mkN "ancillatus" "ancillatus" masculine ; -- [XXXFS] :: service of a (female) slave; ancillor_V = mkV "ancillari" ; -- [XXXDO] :: act as handmaid, wait on, serve hand and foot; be subservient/at beck and call; ancillula_F_N = mkN "ancillula" ; -- [XXXCO] :: little serving-maid, young female slave; slave girl; ancips_A = mkA "ancips" "acipitis"; -- [BXXCS] :: two headed/fold/edged/meanings; faces two directions/fronts; doubtful; double; ancisus_A = mkA "ancisus" "ancisa" "ancisum" ; -- [XXXFO] :: cut up, chopped up; cut around/away; - anclabre_N_N = mkN "anclabre" "anclabris " neuter ; -- [XEXFS] :: vessels on a sacrificial table (called an anclabris); + anclabre_N_N = mkN "anclabre" "anclabris" neuter ; -- [XEXFS] :: vessels on a sacrificial table (called an anclabris); anclabris_A = mkA "anclabris" "anclabris" "anclabre" ; -- [XEXEO] :: sacrificial; - anclabris_F_N = mkN "anclabris" "anclabris " feminine ; -- [XEXFS] :: sacrificial table (vessels on it called anclabria); + anclabris_F_N = mkN "anclabris" "anclabris" feminine ; -- [XEXFS] :: sacrificial table (vessels on it called anclabria); anclo_V2 = mkV2 (mkV "anclare") ; -- [XXXEO] :: serve (wine); bring as a servant; have the care of (L+S); - ancon_M_N = mkN "ancon" "anconis " masculine ; -- [XXXCO] :: projecting arm/crosspiece; clamp; bracket; piston rod; drinking vessel; armrest; + ancon_M_N = mkN "ancon" "anconis" masculine ; -- [XXXCO] :: projecting arm/crosspiece; clamp; bracket; piston rod; drinking vessel; armrest; ancora_F_N = mkN "ancora" ; -- [XWXCO] :: anchor; grappling iron/hook; [in/ad ~is => at anchor]; - ancorago_M_N = mkN "ancorago" "ancoraginis " masculine ; -- [DAGFS] :: fish in the Rhine (unknown); - ancorale_N_N = mkN "ancorale" "ancoralis " neuter ; -- [XXXEO] :: anchor cable; + ancorago_M_N = mkN "ancorago" "ancoraginis" masculine ; -- [DAGFS] :: fish in the Rhine (unknown); + ancorale_N_N = mkN "ancorale" "ancoralis" neuter ; -- [XXXEO] :: anchor cable; 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; @@ -4363,21 +4363,21 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat ancyloblepharos_A = mkA "ancyloblepharos" "ancyloblepharos" "ancyloblepharon" ; -- [XBXFO] :: having eyelid adhering to eye; andabata_M_N = mkN "andabata" ; -- [XXXEO] :: gladiator who fought blindfolded; andena_F_N = mkN "andena" ; -- [GXXEK] :: firedog; - 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); + 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); 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); - androsaces_N_N = mkN "androsaces" "androsacis " neuter ; -- [XAXNO] :: marine plant (zoophyte?) (OLD says N, not F); - androsaemon_N_N = mkN "androsaemon" "androsaemi " neuter ; -- [XAXNO] :: variety of St John's wort (Hypericum perforatum and perfoliatum); + 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); + androsaces_N_N = mkN "androsaces" "androsacis" neuter ; -- [XAXNO] :: marine plant (zoophyte?) (OLD says N, not F); + androsaemon_N_N = mkN "androsaemon" "androsaemi" neuter ; -- [XAXNO] :: variety of St John's wort (Hypericum perforatum and perfoliatum); andruo_V = mkV "andruare" ; -- [XEXFS] :: run back; (dance around at Salian religious festivals); aneclogistus_A = mkA "aneclogistus" "aneclogista" "aneclogistum" ; -- [XXXFO] :: discretionary, not required to give an account of one's doings; anellus_M_N = mkN "anellus" ; -- [XXXDO] :: little ring, esp. finger ring; anemometrum_N_N = mkN "anemometrum" ; -- [GTXEK] :: wind gauge; - anemone_F_N = mkN "anemone" "anemones " feminine ; -- [XAXEO] :: one or other of species of anemone/wind-flower; the plant othonna; + anemone_F_N = mkN "anemone" "anemones" feminine ; -- [XAXEO] :: one or other of species of anemone/wind-flower; the plant othonna; anesum_N_N = mkN "anesum" ; -- [XAXDO] :: anise (Pimpinella anisum); anethum_N_N = mkN "anethum" ; -- [XAXCO] :: dill (Anethum graveolens); anise (L+S); aneticula_F_N = mkN "aneticula" ; -- [XAXEO] :: duckling; term of endearment; @@ -4388,7 +4388,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat anfractum_N_N = mkN "anfractum" ; -- [XXXEO] :: winding passage; curved/crooked part; bend; anfractuosus_A = mkA "anfractuosus" "anfractuosa" "anfractuosum" ; -- [DGXES] :: roundabout, convoluted; prolix, protracted, wordy; anfractus_A = mkA "anfractus" "anfracta" "anfractum" ; -- [XXXFO] :: curving, curved, bent; - anfractus_M_N = mkN "anfractus" "anfractus " masculine ; -- [XXXBO] :: bend, curvature; circuit, (annual) round, orbit; spiral, coil; circumlocution; + anfractus_M_N = mkN "anfractus" "anfractus" masculine ; -- [XXXBO] :: bend, curvature; circuit, (annual) round, orbit; spiral, coil; circumlocution; angaria_F_N = mkN "angaria" ; -- [DXXES] :: service of the public courier; service to a lord, villeinage; angarialis_A = mkA "angarialis" "angarialis" "angariale" ; -- [DXXFS] :: of/pertaining to service; angario_V2 = mkV2 (mkV "angariare") ; -- [XXXEO] :: press, requisition, commandeer; exact villeinage; compel, constrain (eccl.); @@ -4401,11 +4401,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat angelus_M_N = mkN "angelus" ; -- [EEXAE] :: angel; messenger; angina_F_N = mkN "angina" ; -- [GBXEK] :: |angina; angiportum_N_N = mkN "angiportum" ; -- [XXXDO] :: narrow street, alley; lane; - angiportus_M_N = mkN "angiportus" "angiportus " masculine ; -- [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; + 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 + angor_M_N = mkN "angor" "angoris" masculine ; -- [XBXCO] :: suffocation, choking, strangulation; mental distress, anxiety, anguish, vexation angorio_V2 = mkV2 (mkV "angoriare") ; -- [FXXEE] :: compel; force; angueus_A = mkA "angueus" "anguea" "angueum" ; -- [DAXFS] :: of/pertaining to a serpent; anguicomus_A = mkA "anguicomus" "anguicoma" "anguicomum" ; -- [XXXEO] :: with snakes for hair; @@ -4414,19 +4414,19 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat anguigena_M_N = mkN "anguigena" ; -- [XXXFO] :: offspring of a serpent/dragon; (pl. as epithet of Thebans); anguilla_F_N = mkN "anguilla" ; -- [XXXCO] :: eel; hard skin of an eel used as a whip in school; slippery fellow; anguimanus_A = mkA "anguimanus" "anguimana" "anguimanum" ; -- [XAXFS] :: with snaky hands/serpent-handed/tentacled; epithet of the elephant; - anguimanus_F_N = mkN "anguimanus" "anguimanus " feminine ; -- [XAXFO] :: one with snaky hands/serpent-handed/tentacled; elephant (L+S); - anguimanus_M_N = mkN "anguimanus" "anguimanus " masculine ; -- [XAXFO] :: one with snaky hands/serpent-handed/tentacled; elephant (L+S); + anguimanus_F_N = mkN "anguimanus" "anguimanus" feminine ; -- [XAXFO] :: one with snaky hands/serpent-handed/tentacled; elephant (L+S); + anguimanus_M_N = mkN "anguimanus" "anguimanus" masculine ; -- [XAXFO] :: one with snaky hands/serpent-handed/tentacled; elephant (L+S); anguineus_A = mkA "anguineus" "anguinea" "anguineum" ; -- [XAXEO] :: of a snake, snaky, snake; consisting of snakes; anguinum_N_N = mkN "anguinum" ; -- [XAXNS] :: snake's egg; anguinus_A = mkA "anguinus" "anguina" "anguinum" ; -- [XAXCO] :: of a snake/snakes, snaky, snake; consisting of snakes; resembling a snake; anguipes_A = mkA "anguipes" "anguipedis"; -- [XYXEO] :: snake/serpent footed; epithet of giants; - anguipes_M_N = mkN "anguipes" "anguipedis " masculine ; -- [XYXFO] :: giants (pl.) (serpent footed); - anguis_F_N = mkN "anguis" "anguis " feminine ; -- [XAXAO] :: snake, serpent; dragon; (constellations) Draco, Serpens, Hydra; - anguis_M_N = mkN "anguis" "anguis " masculine ; -- [XAXAO] :: snake, serpent; dragon; (constellations) Draco, Serpens, Hydra; + anguipes_M_N = mkN "anguipes" "anguipedis" masculine ; -- [XYXFO] :: giants (pl.) (serpent footed); + anguis_F_N = mkN "anguis" "anguis" feminine ; -- [XAXAO] :: snake, serpent; dragon; (constellations) Draco, Serpens, Hydra; + anguis_M_N = mkN "anguis" "anguis" masculine ; -- [XAXAO] :: snake, serpent; dragon; (constellations) Draco, Serpens, Hydra; anguitenens_A = mkA "anguitenens" "anguitenentis"; -- [XXXES] :: serpent-bearing; - anguitenens_M_N = mkN "anguitenens" "anguitenentis " masculine ; -- [XXXES] :: serpent-bearer (constellation Ophiuchus); + anguitenens_M_N = mkN "anguitenens" "anguitenentis" masculine ; -- [XXXES] :: serpent-bearer (constellation Ophiuchus); angularis_A = mkA "angularis" "angularis" "angulare" ; -- [XXXDO] :: placed at corners, corner; having angles or corners, square; - angularis_M_N = mkN "angularis" "angularis " masculine ; -- [XXXFS] :: angular vessel; + angularis_M_N = mkN "angularis" "angularis" masculine ; -- [XXXFS] :: angular vessel; angulariter_Adv = mkAdv "angulariter" ; -- [FXXFM] :: at an angle; angularius_A = mkA "angularius" "angularia" "angularium" ; -- [XXXIO] :: occurring or placed at a corner; angulatim_Adv = mkAdv "angulatim" ; -- [XXXEO] :: from corner to corner, in every nook and cranny; @@ -4435,22 +4435,22 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat angulosus_A = mkA "angulosus" "angulosa" "angulosum" ; -- [XXXDO] :: having an angle or angles, angular; angulus_M_N = mkN "angulus" ; -- [XXXAO] :: angle, apex; corner, nook, niche, recess, out-of-the-way spot; angusta_F_N = mkN "angusta" ; -- [FXXEE] :: small/confined/narrow space/place/passage, strait, channel; crisis, extremities - angustas_F_N = mkN "angustas" "angustatis " feminine ; -- [XXXEO] :: narrowness of space, confined position, closeness; + angustas_F_N = mkN "angustas" "angustatis" feminine ; -- [XXXEO] :: narrowness of space, confined position, closeness; anguste_Adv =mkAdv "anguste" "angustius" "angustissime" ; -- [XXXBO] :: closely, in close quarters/narrow limits, cramped, crowded; sparingly, scantily; angustia_F_N = mkN "angustia" ; -- [XXXAO] :: narrow passage/place/space (pl.), defile; strait, pass; difficulties; meanness; angusticlavius_A = mkA "angusticlavius" "angusticlavia" "angusticlavium" ; -- [XXXFO] :: having/wearing a narrow purple band (sign of equestrian rank); angustio_V2 = mkV2 (mkV "angustiare") ; -- [DXXES] :: narrow, reduce width/size/amount, constrict, limit; choke, crowd together/hamper angustior_V = mkV "angustiari" ; -- [FXXEB] :: be disturbed, be distressed; be crowded/pushed around; - angustitas_F_N = mkN "angustitas" "angustitatis " feminine ; -- [XXXEO] :: narrowness of space, confined position, closeness; + 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; 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; + 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; anhelo_V = mkV "anhelare" ; -- [XXXBO] :: pant, gasp; breathe/gasp out, belch forth, exhale; utter breathlessly; anhelus_A = mkA "anhelus" "anhela" "anhelum" ; -- [XXXBO] :: panting, puffing, gasping; breath-taking; that emits hot blast/vapor, steaming; - anhydros_F_N = mkN "anhydros" "anhydri " feminine ; -- [DAXFS] :: narcissus (plant thriving in dry regions); + anhydros_F_N = mkN "anhydros" "anhydri" feminine ; -- [DAXFS] :: narcissus (plant thriving in dry regions); aniatrologetus_A = mkA "aniatrologetus" "aniatrologeta" "aniatrologetum" ; -- [XBXFO] :: untrained in medicine; ignorant of medicine; anicetum_N_N = mkN "anicetum" ; -- [XBXIO] :: unsurpassable/sovereign remedy; (name for anise); anicetus_A = mkA "anicetus" "aniceta" "anicetum" ; -- [XXXIO] :: unconquered, unconquerable; @@ -4459,35 +4459,35 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat anicula_F_N = mkN "anicula" ; -- [XXXCO] :: (little) old woman; anicularis_A = mkA "anicularis" "anicularis" "aniculare" ; -- [DXXFS] :: old-womanish; of an old woman; inflicted by an old woman; old wives tale; anilis_A = mkA "anilis" "anilis" "anile" ; -- [XXXCO] :: old-womanish; of an old woman; inflicted by an old woman; old wives tale; - anilitas_F_N = mkN "anilitas" "anilitatis " feminine ; -- [XXXFO] :: old age (in women); the old age of a woman; + anilitas_F_N = mkN "anilitas" "anilitatis" feminine ; -- [XXXFO] :: old age (in women); the old age of a woman; aniliter_Adv = mkAdv "aniliter" ; -- [XXXEO] :: in the manner of an old woman; with superstitious credulity; anilito_V2 = mkV2 (mkV "anilitare") ; -- [XXXFO] :: to produce the feebleness of old age in (female); anilitor_V = mkV "anilitari" ; -- [DXXFS] :: become an old woman; anima_F_N = mkN "anima" ; -- [XXXAO] :: soul, spirit, vital principle; life; breathing; wind, breeze; air (element); 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; + 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; + animal_N_N = mkN "animal" "animalis" neuter ; -- [XXXBO] :: animal, living thing/offspring; creature, beast, brute; insect; animalculum_N_N = mkN "animalculum" ; -- [GAXFM] :: lowly animal; animalis_A = mkA "animalis" "animalis" "animale" ; -- [XXXCO] :: made of air; animal, of living creatures, living, live, animate; vital; - animalis_F_N = mkN "animalis" "animalis " feminine ; -- [XXXEO] :: animal, living creature; - animalitas_F_N = mkN "animalitas" "animalitatis " feminine ; -- [FAXFM] :: animal nature; animal form; + animalis_F_N = mkN "animalis" "animalis" feminine ; -- [XXXEO] :: animal, living creature; + animalitas_F_N = mkN "animalitas" "animalitatis" feminine ; -- [FAXFM] :: animal nature; animal form; animaliter_Adv = mkAdv "animaliter" ; -- [DXXFS] :: like an animal; animans_A = mkA "animans" "animantis"; -- [XXXCO] :: living, having life; - animans_F_N = mkN "animans" "animantis " feminine ; -- [XXXCO] :: animate/living being/organism (not man), creature; animal/plant; (also N, OLD); - animans_M_N = mkN "animans" "animantis " masculine ; -- [XXXCO] :: animate/living being/organism (not man), creature; animal/plant; (also N, OLD); - animatio_F_N = mkN "animatio" "animationis " feminine ; -- [XXXFO] :: form of life; - animatrix_F_N = mkN "animatrix" "animatricis " feminine ; -- [DXXFS] :: she who quickens/animates; + animans_F_N = mkN "animans" "animantis" feminine ; -- [XXXCO] :: animate/living being/organism (not man), creature; animal/plant; (also N, OLD); + animans_M_N = mkN "animans" "animantis" masculine ; -- [XXXCO] :: animate/living being/organism (not man), creature; animal/plant; (also N, OLD); + animatio_F_N = mkN "animatio" "animationis" feminine ; -- [XXXFO] :: form of life; + animatrix_F_N = mkN "animatrix" "animatricis" feminine ; -- [DXXFS] :: she who quickens/animates; animatus_A = mkA "animatus" "animata" "animatum" ; -- [XXXCO] :: endowed with spirit, animated, spirited; inclined, minded; live, growing, fresh; - animatus_M_N = mkN "animatus" "animatus " masculine ; -- [XBXNO] :: breathing; + animatus_M_N = mkN "animatus" "animatus" masculine ; -- [XBXNO] :: breathing; animax_A = mkA "animax" "animacis"; -- [XXXFO] :: showing signs of life, alive; animismus_M_N = mkN "animismus" ; -- [GXXEK] :: animism; animo_V2 = mkV2 (mkV "animare") ; -- [XXXBO] :: animate, give/bring life; revive, refresh; rouse, animate; inspire; blow; animose_Adv =mkAdv "animose" "animosius" "animosissime" ; -- [XXXCO] :: courageously, boldly, nobly, ardently, energetically; in high minded manner; - animositas_F_N = mkN "animositas" "animositatis " feminine ; -- [DXXES] :: boldness, courage, spirit; vehemence, impetuosity, ardor; wrath (eccl.); + animositas_F_N = mkN "animositas" "animositatis" feminine ; -- [DXXES] :: boldness, courage, spirit; vehemence, impetuosity, ardor; wrath (eccl.); animosus_A = mkA "animosus" "animosa" "animosum" ; -- [XXXBO] :: courageous, bold, strong, ardent, energetic, noble; stormy (wind/sea), furious; animula_F_N = mkN "animula" ; -- [XXXCO] :: little life; animulus_M_N = mkN "animulus" ; -- [XXXEO] :: heart, soul (only VOC as term of endearment); @@ -4495,25 +4495,25 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - 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; + 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 = 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; + 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; + 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; - annexus_M_N = mkN "annexus" "annexus " masculine ; -- [XXXEO] :: fastening, attaching, connection; tying/binding to, connecting; annexation; + annexus_M_N = mkN "annexus" "annexus" masculine ; -- [XXXEO] :: fastening, attaching, connection; tying/binding to, connecting; annexation; annicto_V = mkV "annictare" ; -- [XXXEO] :: wink to/at; blink at; 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; + 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); anniversarius_A = mkA "anniversarius" "anniversaria" "anniversarium" ; -- [XXXCO] :: annual; employed/engaged/renewed/occurring/arising/growing annually/every year; @@ -4521,17 +4521,17 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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_PConj = ss "annon" ; -- [XXXCO] :: can it be that (introducing a question expecting a positive answer); + annon_Conj = mkConj "annon" missing ; -- [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; - annositas_F_N = mkN "annositas" "annositatis " feminine ; -- [DXXES] :: fullness of years; old age; + annositas_F_N = mkN "annositas" "annositatis" feminine ; -- [DXXES] :: fullness of years; old age; annosus_A = mkA "annosus" "annosa" "annosum" ; -- [XXXCO] :: aged, old, full of years; long-lived; immemorial; annotamentum_N_N = mkN "annotamentum" ; -- [XXXFO] :: note, comment, remark, annotation; - annotatio_F_N = mkN "annotatio" "annotationis " feminine ; -- [XXXCO] :: note or comment; writing/making notes; notice; rescript of emperor by his hand; + annotatio_F_N = mkN "annotatio" "annotationis" feminine ; -- [XXXCO] :: note or comment; writing/making notes; notice; rescript of emperor by his hand; annotatiuncula_F_N = mkN "annotatiuncula" ; -- [XXXFO] :: short note/comment; brief annotation; - annotator_M_N = mkN "annotator" "annotatoris " masculine ; -- [XXXFO] :: one who makes notes, note taker; observer; L:controller of the annual income; - annotatus_M_N = mkN "annotatus" "annotatus " masculine ; -- [XXXFO] :: notice, noting, remark, mention; + annotator_M_N = mkN "annotator" "annotatoris" masculine ; -- [XXXFO] :: one who makes notes, note taker; observer; L:controller of the annual income; + annotatus_M_N = mkN "annotatus" "annotatus" masculine ; -- [XXXFO] :: notice, noting, remark, mention; annotinus_A = mkA "annotinus" "annotina" "annotinum" ; -- [XXXDO] :: of last year, of the preceding/previous year; annoto_V2 = mkV2 (mkV "annotare") ; -- [XXXBO] :: note/jot down, notice, become aware; mark, annotate; record, state; designate; annualis_A = mkA "annualis" "annualis" "annuale" ; -- [DXXES] :: one year old; @@ -4544,80 +4544,80 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat annulus_A = mkA "annulus" "annula" "annulum" ; -- [DXXES] :: one year old; annulus_M_N = mkN "annulus" ; -- [EXXEE] :: ring; (anulus variant); [~ Piscatoris => Pope's ring w/St. Peter casting net]; annumerabilis_A = mkA "annumerabilis" "annumerabilis" "annumerabile" ; -- [FXXFE] :: able to be added to; - annumeratio_F_N = mkN "annumeratio" "annumerationis " feminine ; -- [XXXES] :: numbering, counting, enumeration; + annumeratio_F_N = mkN "annumeratio" "annumerationis" feminine ; -- [XXXES] :: numbering, counting, enumeration; annumero_V2 = mkV2 (mkV "annumerare") ; -- [XXXBO] :: count (in/out), pay; reckon (time); enumerate, run through; classify as; add; - annunciator_M_N = mkN "annunciator" "annunciatoris " masculine ; -- [EXXEE] :: announcer, herald, one who announces; prophet (Souter); preacher; + annunciator_M_N = mkN "annunciator" "annunciatoris" masculine ; -- [EXXEE] :: announcer, herald, one who announces; prophet (Souter); preacher; annuntialis_A = mkA "annuntialis" "annuntialis" "annuntiale" ; -- [EXXEP] :: proclamatory; - annuntiatio_F_N = mkN "annuntiatio" "annuntiationis " feminine ; -- [DEXES] :: annunciation/announcement, declaration; message; prediction/prophecy; preaching; - annuntiator_M_N = mkN "annuntiator" "annuntiatoris " masculine ; -- [DEXES] :: announcer, herald, one who announces; prophet (Souter); preacher; - annuntiatrix_F_N = mkN "annuntiatrix" "annuntiatricis " feminine ; -- [EEXEP] :: announcer, preacher, one who announces; prophetess (Souter); + annuntiatio_F_N = mkN "annuntiatio" "annuntiationis" feminine ; -- [DEXES] :: annunciation/announcement, declaration; message; prediction/prophecy; preaching; + annuntiator_M_N = mkN "annuntiator" "annuntiatoris" masculine ; -- [DEXES] :: announcer, herald, one who announces; prophet (Souter); preacher; + 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; + 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; + anodynon_N_N = mkN "anodynon" "anodyni" neuter ; -- [DXXES] :: painkiller, anodyne, that which soothes; anodynos_A = mkA "anodynos" "anodyna" "anodynon" ; -- [DXXES] :: that allays pain, anodyne; anodynum_N_N = mkN "anodynum" ; -- [XXXEO] :: painkiller, anodyne, that which soothes; anodynus_A = mkA "anodynus" "anodyna" "anodynum" ; -- [XXXEO] :: that allays pain, anodyne; anomalia_F_N = mkN "anomalia" ; -- [XGXEO] :: irregularity, anomaly; (gram.); anomalus_A = mkA "anomalus" "anomala" "anomalum" ; -- [DGXFS] :: irregular, anomalous, deviating from the general rule; - anonis_F_N = mkN "anonis" "anonidis " feminine ; -- [XAXNO] :: rest-hollow plant (Ononis antiquorum); + anonis_F_N = mkN "anonis" "anonidis" feminine ; -- [XAXNO] :: rest-hollow plant (Ononis antiquorum); anonomastos_A = mkA "anonomastos" "anonomastos" "anonomaston" ; -- [DEXES] :: designation of one of the aeons (unnamed); anonymia_F_N = mkN "anonymia" ; -- [GXXEK] :: anonymity; - anonymos_F_N = mkN "anonymos" "anonymi " feminine ; -- [XARNO] :: Scythian plant; + 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; + 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; ansatus_A = mkA "ansatus" "ansata" "ansatum" ; -- [XXXDO] :: having/provided with handle/handles; equipped with a thong for throwing; - anser_F_N = mkN "anser" "anseris " feminine ; -- [XAXCO] :: goose; [anser masculus => gander]; - anser_M_N = mkN "anser" "anseris " masculine ; -- [XAXCO] :: goose; [anser masculus => gander]; + anser_F_N = mkN "anser" "anseris" feminine ; -- [XAXCO] :: goose; [anser masculus => gander]; + 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; + 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; + antachates_M_N = mkN "antachates" "antachatae" masculine ; -- [XXXNO] :: variety of agate; antagonista_M_N = mkN "antagonista" ; -- [DXXFS] :: adversary, opponent, antagonist; antamoebaeus_A = mkA "antamoebaeus" "antamoebaea" "antamoebaeum" ; -- [DPXES] :: composed of two short two long one short syllable; antapocha_F_N = mkN "antapocha" ; -- [DLXFS] :: document by which a debtor shows he paid; - antapodosis_F_N = mkN "antapodosis" "antapodosis " feminine ; -- [XSXFO] :: parallelism in comparisons, application of similitude; + 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; + 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; + 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.); - antecedo_V2 = mkV2 (mkV "antecedere" "antecedo" "antecessi" "antecessus ") ; -- [XXXAO] :: precede, go before/ahead/in front of, attain before; excel, surpass, outstrip; + antecedente_N_N = mkN "antecedente" "antecedentis" neuter ; -- [XXXCO] :: what precedes; premises for reasoning; antecedent matters (pl.); + 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; - 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; + 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; + anteeo_1_V = mkV "anteire" "anteeo" "anteivi" "anteitus" ; -- [XXXAO] :: go/walk before/ahead, precede, antedate; surpass; anticipate; prevent; + anteeo_2_V = mkV "anteire" "anteeo" "anteiii" "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; + 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; @@ -4630,79 +4630,79 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat anteludium_N_N = mkN "anteludium" ; -- [XDXFO] :: advance tableau or show; prelude; antemeridialis_A = mkA "antemeridialis" "antemeridialis" "antemeridiale" ; -- [DXXFS] :: before noon, morning; occurring/done before noon; 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; + 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; + 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; - 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; + anteo_1_V = mkV "antire" "anteo" "antivi" "antitus" ; -- [XXXAO] :: go before, go ahead, precede; surpass; anticipate; prevent; (anteeo drop e); + anteo_2_V = mkV "antire" "anteo" "antiii" "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; antepagmentum_N_N = mkN "antepagmentum" ; -- [XTXEO] :: facing of door/window frame; mantel; thing used to garnish house exterior (L+S); antepartum_N_N = mkN "antepartum" ; -- [XLXEO] :: property acquired in the past; - antepassio_F_N = mkN "antepassio" "antepassionis " feminine ; -- [DXXES] :: presentiment/expectation/anticipation of pain/suffering; + antepassio_F_N = mkN "antepassio" "antepassionis" feminine ; -- [DXXES] :: presentiment/expectation/anticipation of pain/suffering; antependium_N_N = mkN "antependium" ; -- [FEXFE] :: frontal, a hanging in front of the altar; antependulus_A = mkA "antependulus" "antependula" "antependulum" ; -- [XXXFO] :: hanging down in front (of the head); antepertum_N_N = mkN "antepertum" ; -- [XLXEO] :: property acquired in the past; - antepes_M_N = mkN "antepes" "antepedis " masculine ; -- [XAXFO] :: forefoot, forepaw; + 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; + 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 = mkConj "antequam" missing ; -- [XXXAO] :: before, sooner than; until; - anteridion_N_N = mkN "anteridion" "anteridii " neuter ; -- [XTXFS] :: little prop/support; + 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; - anteris_F_N = mkN "anteris" "anteridis " feminine ; -- [XTXFO] :: prop, support, pillar; counterprops (pl.) supporting a wall, buttress; + anterioritas_F_N = mkN "anterioritas" "anterioritatis" feminine ; -- [GXXEK] :: antecedence; + anteris_F_N = mkN "anteris" "anteridis" feminine ; -- [XTXFO] :: prop, support, pillar; counterprops (pl.) supporting a wall, buttress; antescholanus_M_N = mkN "antescholanus" ; -- [XGXFO] :: assistant master/teacher; antescholarius_M_N = mkN "antescholarius" ; -- [XXXIO] :: attendant; antescolanus_M_N = mkN "antescolanus" ; -- [DXXIS] :: assistant master/teacher; antesignanus_M_N = mkN "antesignanus" ; -- [XWXCO] :: skirmisher; leader; troops (pl.) in front rank of legion/before the standard; - antestes_F_N = mkN "antestes" "antestitis " feminine ; -- [XEXBO] :: (high) priest/priestess; mouthpiece of god; master/authority (w/GEN); protector; - antestes_M_N = mkN "antestes" "antestitis " masculine ; -- [XEXBO] :: (high) priest/priestess; mouthpiece of god; master/authority (w/GEN); protector; + antestes_F_N = mkN "antestes" "antestitis" feminine ; -- [XEXBO] :: (high) priest/priestess; mouthpiece of god; master/authority (w/GEN); protector; + antestes_M_N = mkN "antestes" "antestitis" masculine ; -- [XEXBO] :: (high) priest/priestess; mouthpiece of god; master/authority (w/GEN); protector; antesto_V = mkV "antestare" ; -- [XXXCW] :: surpass, excel, be superior to; stand before; antestor_V = mkV "antestari" ; -- [XXXCO] :: call as a witness (before the opening of the cause); 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; + 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; + 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); anthedon_A = mkA "anthedon" "anthedonis"; -- [XAXNO] :: thorn-tree; [(mespilus) anthedon => oriental thorn (Crataegus orientalis)]; - anthedon_F_N = mkN "anthedon" "anthedonis " feminine ; -- [XAHNS] :: species of medlar-tree, Greek medlar (Mespilus tanacet); - anthemis_F_N = mkN "anthemis" "anthemidis " feminine ; -- [XAXNO] :: plant (chamomile?); + anthedon_F_N = mkN "anthedon" "anthedonis" feminine ; -- [XAHNS] :: species of medlar-tree, Greek medlar (Mespilus tanacet); + anthemis_F_N = mkN "anthemis" "anthemidis" feminine ; -- [XAXNO] :: plant (chamomile?); anthemum_N_N = mkN "anthemum" ; -- [XAXNS] :: herb good for calculi (bladder/kidney stones); anthera_F_N = mkN "anthera" ; -- [XBXEO] :: salve/medicament made with flower petals; - anthericos_M_N = mkN "anthericos" "antherici " masculine ; -- [XAXNS] :: flowering stem of the asphodel; + anthericos_M_N = mkN "anthericos" "antherici" masculine ; -- [XAXNS] :: flowering stem of the asphodel; anthericus_M_N = mkN "anthericus" ; -- [XAXNO] :: flowering stem of the asphodel; - anthias_M_N = mkN "anthias" "anthiae " masculine ; -- [XAXNO] :: sea fish (difficult to catch L+S); + anthias_M_N = mkN "anthias" "anthiae" masculine ; -- [XAXNO] :: sea fish (difficult to catch L+S); anthinus_A = mkA "anthinus" "anthina" "anthinum" ; -- [XAXNO] :: made from flowers, flower-; - anthologicon_N_N = mkN "anthologicon" "anthologici " neuter ; -- [XGXNO] :: writings (pl.) on flowers; anthology; collected thoughts/proverbs/poems (L+S); + anthologicon_N_N = mkN "anthologicon" "anthologici" neuter ; -- [XGXNO] :: writings (pl.) on flowers; anthology; collected thoughts/proverbs/poems (L+S); anthophoros_A = mkA "anthophoros" "anthophoros" "anthophoron" ; -- [XAXNO] :: flowering; - anthracias_F_N = mkN "anthracias" "anthraciae " feminine ; -- [DXXFS] :: kind of carbuncle, the coal-carbuncle; (garnet?); + anthracias_F_N = mkN "anthracias" "anthraciae" feminine ; -- [DXXFS] :: kind of carbuncle, the coal-carbuncle; (garnet?); anthracinum_N_N = mkN "anthracinum" ; -- [XXXFO] :: coal-black garments (pl.); anthracinus_A = mkA "anthracinus" "anthracina" "anthracinum" ; -- [XXXFS] :: coal-black; - anthracites_F_N = mkN "anthracites" "anthracitae " feminine ; -- [XXXNO] :: precious stone (unknown); kind of bloodstone (L+S); - anthracitis_F_N = mkN "anthracitis" "anthracitidis " feminine ; -- [XXXNS] :: kind of carbuncle, the coal-carbuncle; (garnet?); - anthrax_M_N = mkN "anthrax" "anthracis " masculine ; -- [XXXFS] :: natural cinnabar (HgS); a virulent ulcer; + anthracites_F_N = mkN "anthracites" "anthracitae" feminine ; -- [XXXNO] :: precious stone (unknown); kind of bloodstone (L+S); + anthracitis_F_N = mkN "anthracitis" "anthracitidis" feminine ; -- [XXXNS] :: kind of carbuncle, the coal-carbuncle; (garnet?); + anthrax_M_N = mkN "anthrax" "anthracis" masculine ; -- [XXXFS] :: natural cinnabar (HgS); a virulent ulcer; anthriscum_N_N = mkN "anthriscum" ; -- [XAXNS] :: southern chervil (Scandix australis); anthriscus_F_N = mkN "anthriscus" ; -- [XAXNS] :: southern chervil (Scandix australis); anthropocentricus_A = mkA "anthropocentricus" "anthropocentrica" "anthropocentricum" ; -- [GXXEK] :: anthropocentric; anthropocentrismus_M_N = mkN "anthropocentrismus" ; -- [GXXEK] :: anthropocentrism; - anthropographos_M_N = mkN "anthropographos" "anthropographi " masculine ; -- [XXXNO] :: portrait painter; + anthropographos_M_N = mkN "anthropographos" "anthropographi" masculine ; -- [XXXNO] :: portrait painter; anthropolatra_M_N = mkN "anthropolatra" ; -- [DLXFS] :: man-worshiper; anthropologia_F_N = mkN "anthropologia" ; -- [GXXEK] :: anthropology; anthropologicus_A = mkA "anthropologicus" "anthropologica" "anthropologicum" ; -- [HXXFE] :: anthropological; @@ -4712,68 +4712,68 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat anthropomorphitus_A = mkA "anthropomorphitus" "anthropomorphita" "anthropomorphitum" ; -- [DEXFS] :: professing the heresy of attributing to God a human form; anthropomorphus_A = mkA "anthropomorphus" "anthropomorpha" "anthropomorphum" ; -- [GXXEK] :: anthropoid; anthropophagia_F_N = mkN "anthropophagia" ; -- [GXXEK] :: cannibalism; - anthropophagos_M_N = mkN "anthropophagos" "anthropophagi " masculine ; -- [XXXEO] :: cannibals (pl.), man-eaters; + anthropophagos_M_N = mkN "anthropophagos" "anthropophagi" masculine ; -- [XXXEO] :: cannibals (pl.), man-eaters; anthropophagus_M_N = mkN "anthropophagus" ; -- [XXXES] :: cannibals (pl.), man-eaters; anthus_M_N = mkN "anthus" ; -- [XAXNO] :: bird (heron?); small bird (yellow wagtail? Motacilla flava) (L+S); - anthyllion_N_N = mkN "anthyllion" "anthyllii " neuter ; -- [XAXNO] :: two plants (species of Afuga?; Cressa cretica?); - anthyllis_F_N = mkN "anthyllis" "anthyllidis " feminine ; -- [XAXNO] :: two plants (species of Afuga?; Cressa cretica?); musk ivy (Teucrium iva) + anthyllion_N_N = mkN "anthyllion" "anthyllii" neuter ; -- [XAXNO] :: two plants (species of Afuga?; Cressa cretica?); + anthyllis_F_N = mkN "anthyllis" "anthyllidis" feminine ; -- [XAXNO] :: two plants (species of Afuga?; Cressa cretica?); musk ivy (Teucrium iva) anthyllium_N_N = mkN "anthyllium" ; -- [XAXNO] :: two plants (species of Afuga?; Cressa cretica?); anthyllum_N_N = mkN "anthyllum" ; -- [XAXNO] :: two plants (species of Afuga?; Cressa cretica?); anthypophora_F_N = mkN "anthypophora" ; -- [XGXFO] :: reply to a supposed objection; anticipating and refuting opponents arguments; antia_F_N = mkN "antia" ; -- [XXXFO] :: locks (pl.) of hair that hang down in front, forelock; antiaerius_A = mkA "antiaerius" "antiaeria" "antiaerium" ; -- [HWXEK] :: anti-aircraft; - antias_F_N = mkN "antias" "antiadis " feminine ; -- [XBXFO] :: tonsil covered with a pellicle as a result of tonsillitis; + antias_F_N = mkN "antias" "antiadis" feminine ; -- [XBXFO] :: tonsil covered with a pellicle as a result of tonsillitis; antibacchus_M_N = mkN "antibacchus" ; -- [XPXFO] :: metrical foot short-long-long; verse composed of this meter; - antibasis_F_N = mkN "antibasis" "antibasis " feminine ; -- [XWXFO] :: rear prop of a ballista, hindmost small pillar at pedestal of ballista; + antibasis_F_N = mkN "antibasis" "antibasis" feminine ; -- [XWXFO] :: rear prop of a ballista, hindmost small pillar at pedestal of ballista; antibioticum_N_N = mkN "antibioticum" ; -- [HBXEK] :: antibiotic; antiboreum_N_N = mkN "antiboreum" ; -- [XSXFO] :: type of sundial (turned toward the north); antiboreus_A = mkA "antiboreus" "antiborea" "antiboreum" ; -- [XSXFS] :: turned toward the north (sundial); antibrachium_N_N = mkN "antibrachium" ; -- [FBXFE] :: forearm; anticategoria_F_N = mkN "anticategoria" ; -- [XLXFO] :: counter-plea; recrimination (L+S); - anticessus_M_N = mkN "anticessus" "anticessus " masculine ; -- [XLXCO] :: payments in advance; - antichthonis_M_N = mkN "antichthonis" "antichthonis " masculine ; -- [XXXEO] :: people (pl.) of the southern hemisphere; antipodes (L+S); - anticipale_N_N = mkN "anticipale" "anticipalis " neuter ; -- [XXXFO] :: preliminaries (pl.); anticipatory actions; (preconceptions?); + anticessus_M_N = mkN "anticessus" "anticessus" masculine ; -- [XLXCO] :: payments in advance; + antichthonis_M_N = mkN "antichthonis" "antichthonis" masculine ; -- [XXXEO] :: people (pl.) of the southern hemisphere; antipodes (L+S); + anticipale_N_N = mkN "anticipale" "anticipalis" neuter ; -- [XXXFO] :: preliminaries (pl.); anticipatory actions; (preconceptions?); anticipalis_A = mkA "anticipalis" "anticipalis" "anticipale" ; -- [XXXEO] :: preliminary, anticipatory; - anticipatio_F_N = mkN "anticipatio" "anticipationis " feminine ; -- [XXXEO] :: preconception, previous notion; anticipation; idea before receiving instruction; + anticipatio_F_N = mkN "anticipatio" "anticipationis" feminine ; -- [XXXEO] :: preconception, previous notion; anticipation; idea before receiving instruction; anticipo_V = mkV "anticipare" ; -- [XXXCO] :: occupy beforehand; anticipate, get the lead, get ahead of; have preconception; - anticoagulans_N_N = mkN "anticoagulans" "anticoagulantis " neuter ; -- [HBXEK] :: anticoagulant; - anticonceptio_F_N = mkN "anticonceptio" "anticonceptionis " feminine ; -- [HBXEK] :: contraception; + anticoagulans_N_N = mkN "anticoagulans" "anticoagulantis" neuter ; -- [HBXEK] :: anticoagulant; + anticonceptio_F_N = mkN "anticonceptio" "anticonceptionis" feminine ; -- [HBXEK] :: contraception; anticonceptivus_A = mkA "anticonceptivus" "anticonceptiva" "anticonceptivum" ; -- [HBXEK] :: contraceptive; anticonvulsivum_N_N = mkN "anticonvulsivum" ; -- [HBXEK] :: antispasmodic; - anticorpus_N_N = mkN "anticorpus" "anticorporis " neuter ; -- [HSXEK] :: antibody; - anticthonis_M_N = mkN "anticthonis" "anticthonis " masculine ; -- [XXXEO] :: people (pl.) of the southern hemisphere; antipodes (L+S); - antictonis_M_N = mkN "antictonis" "antictonis " masculine ; -- [XXXEO] :: people (pl.) of the southern hemisphere; antipodes (L+S); + anticorpus_N_N = mkN "anticorpus" "anticorporis" neuter ; -- [HSXEK] :: antibody; + anticthonis_M_N = mkN "anticthonis" "anticthonis" masculine ; -- [XXXEO] :: people (pl.) of the southern hemisphere; antipodes (L+S); + 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; 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; - 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); + antideo_1_V = mkV "antidire" "antideo" "antidivi" "antiditus" ; -- [XXXCO] :: go before, go ahead, precede; surpass; anticipate; prevent; (anteeo drop e); + antideo_2_V = mkV "antidire" "antideo" "antidiii" "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 - antidotos_F_N = mkN "antidotos" "antidoti " feminine ; -- [XBXCO] :: antidote, remedy; + antidoron_N_N = mkN "antidoron" "antidori" neuter ; -- [FEHFE] :: blessed bread distributed after the liturgy in the Greek rite + antidotos_F_N = mkN "antidotos" "antidoti" feminine ; -- [XBXCO] :: antidote, remedy; antidotum_N_N = mkN "antidotum" ; -- [XBXCO] :: antidote, remedy; antidotus_F_N = mkN "antidotus" ; -- [XBXCO] :: antidote, remedy; antigelidum_N_N = mkN "antigelidum" ; -- [HXXEK] :: antifreeze; antigerio_Adv = mkAdv "antigerio" ; -- [XXXEO] :: greatly, very; vigorously, strongly, energetically; - antigradus_M_N = mkN "antigradus" "antigradus " masculine ; -- [XXXIO] :: front steps; + antigradus_M_N = mkN "antigradus" "antigradus" masculine ; -- [XXXIO] :: front steps; antihistaminicum_N_N = mkN "antihistaminicum" ; -- [HBXEK] :: anti-histamine; antihypertensivum_N_N = mkN "antihypertensivum" ; -- [HBXEK] :: anti-hypertensive; antiinfectiosus_A = mkA "antiinfectiosus" "antiinfectiosa" "antiinfectiosum" ; -- [GBXEK] :: anti-infectious; - antilope_F_N = mkN "antilope" "antilopes " feminine ; -- [GXXEK] :: antelope; + antilope_F_N = mkN "antilope" "antilopes" feminine ; -- [GXXEK] :: antelope; antilucanus_A = mkA "antilucanus" "antilucana" "antilucanum" ; -- [XXXCO] :: before daybreak, that precedes the dawn; of the hours before daybreak; antimensium_N_N = mkN "antimensium" ; -- [FEXFE] :: consecrated cloth used for an altar; - antimetabole_F_N = mkN "antimetabole" "antimetaboles " feminine ; -- [XGXFS] :: reciprocal interchange; + antimetabole_F_N = mkN "antimetabole" "antimetaboles" feminine ; -- [XGXFS] :: reciprocal interchange; antineuralgicum_N_N = mkN "antineuralgicum" ; -- [GBXEK] :: neuralgic; antinomia_F_N = mkN "antinomia" ; -- [XLXFO] :: contradiction between two laws; antioxydativus_A = mkA "antioxydativus" "antioxydativa" "antioxydativum" ; -- [GSXEK] :: anti-oxidant; antipagmentum_N_N = mkN "antipagmentum" ; -- [XTXFS] :: facing of a door/window frame; anything used to garnish house exterior (L+S); - antipascha_N_N = mkN "antipascha" "antipaschatis " neuter ; -- [FEHFE] :: Low Sunday in the Greek rite; + antipascha_N_N = mkN "antipascha" "antipaschatis" neuter ; -- [FEHFE] :: Low Sunday in the Greek rite; antipastus_M_N = mkN "antipastus" ; -- [DPXFS] :: antipast, foot in verse short-long-long-short; verse consisting of antipasts; - antipathes_F_N = mkN "antipathes" "antipathis " feminine ; -- [XXXFO] :: precious stone supposed to act as a charm against witchcraft (black coral L+S); - antipathes_N_N = mkN "antipathes" "antipathis " neuter ; -- [XXXFS] :: charm (for arousing mutual love?) (against pain L+S); + antipathes_F_N = mkN "antipathes" "antipathis" feminine ; -- [XXXFO] :: precious stone supposed to act as a charm against witchcraft (black coral L+S); + antipathes_N_N = mkN "antipathes" "antipathis" neuter ; -- [XXXFS] :: charm (for arousing mutual love?) (against pain L+S); antipathia_F_N = mkN "antipathia" ; -- [XXXNO] :: antipathy, aversion; counteraction; antipendium_N_N = mkN "antipendium" ; -- [FEXFE] :: frontal, a hanging in front of the altar; antiphernum_N_N = mkN "antiphernum" ; -- [DLXFS] :: return-present (pl.) which the bridegroom brought to the bride (Cod. Just.); @@ -4785,15 +4785,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat antiphone_Adv = mkAdv "antiphone" ; -- [FDXEE] :: antiphonally; (of verse sung in response by choir); antiphonum_N_N = mkN "antiphonum" ; -- [FDHFB] :: antiphon, response (pl.); (verse/sentence by one choir in response to another); antiphonus_A = mkA "antiphonus" "antiphona" "antiphonum" ; -- [FXXFE] :: antiphonal; (of verse sung in response by choir); - antiphrasis_F_N = mkN "antiphrasis" "antiphrasis " feminine ; -- [DGXFS] :: use of a word in a sense opposite to its proper meaning; - antipodis_M_N = mkN "antipodis" "antipodis " masculine ; -- [XXXDO] :: people (pl.) who live on the opposite side of the earth; (keeping late hours); - antiptosis_F_N = mkN "antiptosis" "antiptosis " feminine ; -- [DGXFS] :: putting of one case for another; (grammar); + antiphrasis_F_N = mkN "antiphrasis" "antiphrasis" feminine ; -- [DGXFS] :: use of a word in a sense opposite to its proper meaning; + antipodis_M_N = mkN "antipodis" "antipodis" masculine ; -- [XXXDO] :: people (pl.) who live on the opposite side of the earth; (keeping late hours); + antiptosis_F_N = mkN "antiptosis" "antiptosis" feminine ; -- [DGXFS] :: putting of one case for another; (grammar); 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; + antiquatio_F_N = mkN "antiquatio" "antiquationis" feminine ; -- [DLXFS] :: abrogating, annulling; 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; + antiquitas_F_N = mkN "antiquitas" "antiquitatis" feminine ; -- [XXXBO] :: antiquity, the good old days; the ancients; virtues of olden times; being old; 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; @@ -4801,43 +4801,43 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + antirrhinon_N_N = mkN "antirrhinon" "antirrhini" neuter ; -- [XAXNO] :: snapdragon, antirrhinum; antirrinum_N_N = mkN "antirrinum" ; -- [XAXNO] :: snapdragon, antirrhinum; - antis_M_N = mkN "antis" "antis " masculine ; -- [XXXDS] :: rows (pl.) (vines/plants); ranks (soldiers); files (cavalry); - antisagoge_F_N = mkN "antisagoge" "antisagoges " feminine ; -- [DGXFS] :: figure of speech one thing adduced is opposed to another, counter-assertion; + antis_M_N = mkN "antis" "antis" masculine ; -- [XXXDS] :: rows (pl.) (vines/plants); ranks (soldiers); files (cavalry); + antisagoge_F_N = mkN "antisagoge" "antisagoges" feminine ; -- [DGXFS] :: figure of speech one thing adduced is opposed to another, counter-assertion; antiscius_M_N = mkN "antiscius" ; -- [DSXFS] :: people (pl.) on other side of equator with shadows in the opposite direction; antisemitismus_M_N = mkN "antisemitismus" ; -- [HXXEE] :: anti-Semitism; antisepticum_N_N = mkN "antisepticum" ; -- [GXXEK] :: disinfectant; antisepticus_A = mkA "antisepticus" "antiseptica" "antisepticum" ; -- [HBXEK] :: antiseptic; antisophista_M_N = mkN "antisophista" ; -- [XGXFS] :: one who seeks to refute another, opponent in argument; counter-sophist; - antisophistes_M_N = mkN "antisophistes" "antisophistae " masculine ; -- [XGXEO] :: one who seeks to refute another, opponent in argument; counter-sophist; + antisophistes_M_N = mkN "antisophistes" "antisophistae" masculine ; -- [XGXEO] :: one who seeks to refute another, opponent in argument; counter-sophist; antispasmodicum_N_N = mkN "antispasmodicum" ; -- [HBXEK] :: antispasmodic; - antispodon_N_N = mkN "antispodon" "antispodi " neuter ; -- [XAXNO] :: vegetable/wood ash (as substitute for mineral ash); + antispodon_N_N = mkN "antispodon" "antispodi" neuter ; -- [XAXNO] :: vegetable/wood ash (as substitute for mineral ash); antista_F_N = mkN "antista" ; -- [FEXEE] :: mother superior, head of convent; superioress; - antistatus_M_N = mkN "antistatus" "antistatus " masculine ; -- [DXXFS] :: superiority in rank, rank; - antistes_F_N = mkN "antistes" "antistitis " feminine ; -- [XEXBO] :: (high) priest/priestess; mouthpiece of god; master/authority (w/GEN); protector; - antistes_M_N = mkN "antistes" "antistitis " masculine ; -- [EEXCB] :: bishop, abbot, prelate; master; occasionally applied to those of inferior rank; - antistigma_N_N = mkN "antistigma" "antistigmatis " neuter ; -- [DGXFS] :: character proposed for "ps"; critical mark before a verse to be transposed; + antistatus_M_N = mkN "antistatus" "antistatus" masculine ; -- [DXXFS] :: superiority in rank, rank; + antistes_F_N = mkN "antistes" "antistitis" feminine ; -- [XEXBO] :: (high) priest/priestess; mouthpiece of god; master/authority (w/GEN); protector; + antistes_M_N = mkN "antistes" "antistitis" masculine ; -- [EEXCB] :: bishop, abbot, prelate; master; occasionally applied to those of inferior rank; + antistigma_N_N = mkN "antistigma" "antistigmatis" neuter ; -- [DGXFS] :: character proposed for "ps"; critical mark before a verse to be transposed; antistita_F_N = mkN "antistita" ; -- [XEXCO] :: (high) priestess (of a temple/deity, w/GEN); antistitium_N_N = mkN "antistitium" ; -- [DEXFS] :: office of antistes (high priest); - antistitor_M_N = mkN "antistitor" "antistitoris " masculine ; -- [XXXFO] :: supervisor; + antistitor_M_N = mkN "antistitor" "antistitoris" masculine ; -- [XXXFO] :: supervisor; antisto_V = mkV "antistare" ; -- [XXXCO] :: stand before; surpass, excel, be superior to; antisto_V2 = mkV2 (mkV "antistare") Dat_Prep ; -- [XXXCQ] :: surpass, excel, be superior to; stand before; antistoechum_N_N = mkN "antistoechum" ; -- [XGXFO] :: substitution of one letter for another; - antistrophe_F_N = mkN "antistrophe" "antistrophes " feminine ; -- [XGXFS] :: |rhetorical figure when several parts of a period end with the same word; - antithesis_F_N = mkN "antithesis" "antithesis " feminine ; -- [DGXFS] :: substitution of one letter for another; - antitheton_N_N = mkN "antitheton" "antitheti " neuter ; -- [XGXEO] :: antithesis, opposition; + antistrophe_F_N = mkN "antistrophe" "antistrophes" feminine ; -- [XGXFS] :: |rhetorical figure when several parts of a period end with the same word; + antithesis_F_N = mkN "antithesis" "antithesis" feminine ; -- [DGXFS] :: substitution of one letter for another; + antitheton_N_N = mkN "antitheton" "antitheti" neuter ; -- [XGXEO] :: antithesis, opposition; antitheus_M_N = mkN "antitheus" ; -- [DEXFS] :: one who pretends to be God; the devil; - antizeugmenon_N_N = mkN "antizeugmenon" "antizeugmeni " neuter ; -- [DGXFS] :: grammatical figure by which several clauses are referred to the same verb; + antizeugmenon_N_N = mkN "antizeugmenon" "antizeugmeni" neuter ; -- [DGXFS] :: grammatical figure by which several clauses are referred to the same verb; antlia_F_N = mkN "antlia" ; -- [XTXEO] :: pump, mechanism for raising water, foot pump; (prison activity) treadmill; - antoecumene_F_N = mkN "antoecumene" "antoecumenes " feminine ; -- [XSXFO] :: opposite quarter of the earth, southern half of hemisphere; + antoecumene_F_N = mkN "antoecumene" "antoecumenes" feminine ; -- [XSXFO] :: opposite quarter of the earth, southern half of hemisphere; antomasivus_A = mkA "antomasivus" "antomasiva" "antomasivum" ; -- [DGXFS] :: pertaining to forming an antonomasia/epithet; antonomasia_F_N = mkN "antonomasia" ; -- [XGXEO] :: use of an epithet/appellative as substitute for proper name, antonomasia; antoo_V2 = mkV2 (mkV "antoare") ; -- [DXXFS] :: requite; antrum_N_N = mkN "antrum" ; -- [XXXBO] :: cave; cavern; hollow place with overarching foliage; cavity, hollow; tomb; antruo_V = mkV "antruare" ; -- [XEXFS] :: dance around (at Salian religious festivals); anucella_F_N = mkN "anucella" ; -- [XXXFO] :: (little) old woman; - anulare_N_N = mkN "anulare" "anularis " neuter ; -- [XXXNO] :: kind of white paint (prepared with chalk mixed with glass beads L+S); + anulare_N_N = mkN "anulare" "anularis" neuter ; -- [XXXNO] :: kind of white paint (prepared with chalk mixed with glass beads L+S); anularis_A = mkA "anularis" "anularis" "anulare" ; -- [XXXNS] :: relating to (signet) ring; anularium_N_N = mkN "anularium" ; -- [XWXIO] :: payment to veterans on discharge; anularius_A = mkA "anularius" "anularia" "anularium" ; -- [XXXEO] :: connected with (signet) ring-makers; used in making rings; of rings; @@ -4845,62 +4845,62 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat anulatus_A = mkA "anulatus" "anulata" "anulatum" ; -- [XXXEO] :: provided with a ring, ringed; fitted with a fetter, fettered; anulus_M_N = mkN "anulus" ; -- [XXXFS] :: |posterior, fundament; anus; anus_A = mkA "anus" "ana" "anum" ; -- [XXXBO] :: old (of female persons and things), aged; - anus_F_N = mkN "anus" "anus " feminine ; -- [XXXBO] :: old woman; hag; matron; old maid; sibyl, sorceress; foolish/cringing person; + anus_F_N = mkN "anus" "anus" feminine ; -- [XXXBO] :: old woman; hag; matron; old maid; sibyl, sorceress; foolish/cringing person; anus_M_N = mkN "anus" ; -- [XXXEO] :: |year (astronomical/civil); age, time of life; year's produce; anxie_Adv = mkAdv "anxie" ; -- [XXXCO] :: anxiously, meticulously, over-carefully; with distress/chagrin; troublesomely; - anxietas_F_N = mkN "anxietas" "anxietatis " feminine ; -- [XXXCO] :: anxiety, worry, solicitude; carefulness, extreme care; - anxietudo_F_N = mkN "anxietudo" "anxietudinis " feminine ; -- [DXXES] :: worry, anxiety, anguish, trouble; mental distress; + anxietas_F_N = mkN "anxietas" "anxietatis" feminine ; -- [XXXCO] :: anxiety, worry, solicitude; carefulness, extreme care; + anxietudo_F_N = mkN "anxietudo" "anxietudinis" feminine ; -- [DXXES] :: worry, anxiety, anguish, trouble; mental distress; anxifer_A = mkA "anxifer" "anxifera" "anxiferum" ; -- [XXXEO] :: bringing/causing mental anguish/anxiety, harassing, worrying; anxio_V2 = mkV2 (mkV "anxiare") ; -- [DXXES] :: make uneasy/anxious/nervous; worry; anxior_V = mkV "anxiari" ; -- [FXXEE] :: be in anguish; be troubled; worry; anxiosus_A = mkA "anxiosus" "anxiosa" "anxiosum" ; -- [DXXFS] :: anxious, full of anxiety, uneasy; causing anxiety/pain/uneasiness; - anxitudo_F_N = mkN "anxitudo" "anxitudinis " feminine ; -- [XXXEO] :: worry, anxiety, anguish, trouble; mental distress; + anxitudo_F_N = mkN "anxitudo" "anxitudinis" feminine ; -- [XXXEO] :: worry, anxiety, anguish, trouble; mental distress; anxius_A = mkA "anxius" "anxia" "anxium" ; -- [XXXBO] :: anxious, uneasy, disturbed; concerned; careful; prepared with care; troublesome; apage_Interj = ss "apage" ; -- [XXXCO] :: be off!; nonsense!, get away with you!; - apalocrocodes_N_N = mkN "apalocrocodes" "apalocrodis " neuter ; -- [XBXIO] :: kind of eye salve; + apalocrocodes_N_N = mkN "apalocrocodes" "apalocrodis" neuter ; -- [XBXIO] :: kind of eye salve; apalus_A = mkA "apalus" "apala" "apalum" ; -- [XXXEO] :: soft-boiled (egg). soft, tender; - aparctias_M_N = mkN "aparctias" "aparctiae " masculine ; -- [XXXEO] :: north wind; - aparine_F_N = mkN "aparine" "aparines " feminine ; -- [XAXNO] :: plant, cleavers (Galium aparine); + aparctias_M_N = mkN "aparctias" "aparctiae" masculine ; -- [XXXEO] :: north wind; + aparine_F_N = mkN "aparine" "aparines" feminine ; -- [XAXNO] :: plant, cleavers (Galium aparine); 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); + 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; + 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; aperte_Adv =mkAdv "aperte" "apertius" "apertissime" ; -- [XXXBO] :: openly, publicly; manifestly; w/o disguise/reserve; plainly, clearly, frankly; apertibilis_A = mkA "apertibilis" "apertibilis" "apertibile" ; -- [DXXES] :: opening; - apertio_F_N = mkN "apertio" "apertionis " feminine ; -- [XXXEO] :: opening; act of making (building, etc.) accessible; grand/solemn opening; + apertio_F_N = mkN "apertio" "apertionis" feminine ; -- [XXXEO] :: opening; act of making (building, etc.) accessible; grand/solemn opening; aperto_V2 = mkV2 (mkV "apertare") ; -- [XXXFO] :: bare, expose, lay bare; - apertor_M_N = mkN "apertor" "apertoris " masculine ; -- [DXXES] :: he who opens/begins, opener; + 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; 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; + 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; aphaca_F_N = mkN "aphaca" ; -- [XAXNO] :: kind of vetch/tare; pulse, field/chick peas (Lathyrus alphca) (L+S); dandelion; - aphaerema_N_N = mkN "aphaerema" "aphaerematis " neuter ; -- [XAXNO] :: spelt bran, grits, sharps; - aphaeresis_F_N = mkN "aphaeresis" "aphaeresis " feminine ; -- [DGXFS] :: dropping a letter or syllable at the beginning of a word; - apharce_F_N = mkN "apharce" "apharces " feminine ; -- [XAXNO] :: evergreen tree (Arbutus hybrida); - apheliotes_F_N = mkN "apheliotes" "apheliotae " feminine ; -- [XXXDO] :: east wind; + aphaerema_N_N = mkN "aphaerema" "aphaerematis" neuter ; -- [XAXNO] :: spelt bran, grits, sharps; + aphaeresis_F_N = mkN "aphaeresis" "aphaeresis" feminine ; -- [DGXFS] :: dropping a letter or syllable at the beginning of a word; + apharce_F_N = mkN "apharce" "apharces" feminine ; -- [XAXNO] :: evergreen tree (Arbutus hybrida); + apheliotes_F_N = mkN "apheliotes" "apheliotae" feminine ; -- [XXXDO] :: east wind; aphorisma_F_N = mkN "aphorisma" ; -- [FXXFM] :: aphorism; pithy sentence; aphorismus_M_N = mkN "aphorismus" ; -- [FGXFM] :: aphorism; aphractum_N_N = mkN "aphractum" ; -- [XXXEO] :: undecked boat; open ship; aphractus_F_N = mkN "aphractus" ; -- [XXXEO] :: undecked boat; open ship; aphrodes_A = mkA "aphrodes" "aphrodes" "aphrodes" ; -- [XXXNS] :: foaming, like foam; [~ mecon => wild poppy]; - aphrodisas_F_N = mkN "aphrodisas" "aphrodisae " feminine ; -- [DAXFS] :: sweet flag/iris?; calamus?; + aphrodisas_F_N = mkN "aphrodisas" "aphrodisae" feminine ; -- [DAXFS] :: sweet flag/iris?; calamus?; aphrodisiaca_F_N = mkN "aphrodisiaca" ; -- [XXXNO] :: unknown precious stone (reddish-white L+S); - aphrodisiace_F_N = mkN "aphrodisiace" "aphrodisiaces " feminine ; -- [XXXNS] :: unknown precious stone (reddish-white L+S); + aphrodisiace_F_N = mkN "aphrodisiace" "aphrodisiaces" feminine ; -- [XXXNS] :: unknown precious stone (reddish-white L+S); aphronitrum_N_N = mkN "aphronitrum" ; -- [XXXDO] :: sodium carbonate, washing soda; spuma nitri; efflorescence of saltpeter (L+S); aphtha_F_N = mkN "aphtha" ; -- [XBXFO] :: parasitic stomatitis, thrush, aphthous ulcers (pl.) (fungal disease); aphya_F_N = mkN "aphya" ; -- [XAXNS] :: small fish (regarded by Pliny as a separate species); anchovy? (L+S); - aphye_F_N = mkN "aphye" "aphyes " feminine ; -- [XAXNO] :: small fish (regarded by Pliny as a separate species); anchovy? (L+S); + aphye_F_N = mkN "aphye" "aphyes" feminine ; -- [XAXNO] :: small fish (regarded by Pliny as a separate species); anchovy? (L+S); apiacius_A = mkA "apiacius" "apiacia" "apiacium" ; -- [XAXFO] :: of parsley or celery; apiacus_A = mkA "apiacus" "apiaca" "apiacum" ; -- [XAXFO] :: of parsley; similar to parsley (L+S); apiana_F_N = mkN "apiana" ; -- [DAXES] :: chamomile; @@ -4917,146 +4917,146 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; apluda_F_N = mkN "apluda" ; -- [XAXDO] :: chaff; bran (L+S); kind of drink?; - aplustre_N_N = mkN "aplustre" "aplustris " neuter ; -- [XWXCO] :: ornamented stern-post of a ship; (also plural for a single) ship (pl.); + 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; + 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); + apocalypsis_F_N = mkN "apocalypsis" "apocalypsis" feminine ; -- [DEXES] :: 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); + 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); apocatastaticus_A = mkA "apocatastaticus" "apocatastatica" "apocatastaticum" ; -- [DSXFS] :: restoring, returning; (stars/planets to position of previous year); apocatus_A = mkA "apocatus" "apocata" "apocatum" ; -- [XLXIO] :: in respect of which a receipt for payment has been given; apocha_F_N = mkN "apocha" ; -- [XLXEO] :: receipt for payment; apochatus_A = mkA "apochatus" "apochata" "apochatum" ; -- [XLXIO] :: in respect of which a receipt for payment has been given; - apocolocyntosis_F_N = mkN "apocolocyntosis" "apocolocyntosis " feminine ; -- [XXXFO] :: transformation into a gourd or pumpkin; "Metamorphosis of a Pumpkin" by Seneca; - apocope_F_N = mkN "apocope" "apocopes " feminine ; -- [XGXCS] :: dropping of a letter/syllable at the end of a word; + apocolocyntosis_F_N = mkN "apocolocyntosis" "apocolocyntosis" feminine ; -- [XXXFO] :: transformation into a gourd or pumpkin; "Metamorphosis of a Pumpkin" by Seneca; + apocope_F_N = mkN "apocope" "apocopes" feminine ; -- [XGXCS] :: dropping of a letter/syllable at the end of a word; apocrisiarius_M_N = mkN "apocrisiarius" ; -- [DEXES] :: delegate/deputy who performs a duty in place of another, envoy, nuncio; apocryphum_N_N = mkN "apocryphum" ; -- [DEXCE] :: apocryphal/non canonical writings (pl.) (not included in the Bible); apocryphus_A = mkA "apocryphus" "apocrypha" "apocryphum" ; -- [DEXCS] :: spurious, not genuine/canonical, apocryphal; 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; + 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); 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; + 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); - apographon_N_N = mkN "apographon" "apographi " neuter ; -- [XXXNO] :: copy; transcript (L+S); + apographon_N_N = mkN "apographon" "apographi" neuter ; -- [XXXNO] :: copy; transcript (L+S); apographum_N_N = mkN "apographum" ; -- [FXXEE] :: copy; transcript (L+S); apolactizo_V2 = mkV2 (mkV "apolactizare") ; -- [XXXFO] :: kick away, spurn; apolectus_A = mkA "apolectus" "apolecta" "apolectum" ; -- [XAXNS] :: |kind of tunny fish not a year old; pieces for salting cut from that tunny; apoliticus_A = mkA "apoliticus" "apolitica" "apoliticum" ; -- [GXXEK] :: apolitical; apollinaria_F_N = mkN "apollinaria" ; -- [DAXFS] :: plant (commonly called strychnos); - apollinaris_F_N = mkN "apollinaris" "apollinaris " feminine ; -- [XAXNS] :: herb (commonly called hyoscyamus); species of solanum; - apologatio_F_N = mkN "apologatio" "apologationis " feminine ; -- [XXXFO] :: fable or apologue; narration in the manner of Aesop; + apollinaris_F_N = mkN "apollinaris" "apollinaris" feminine ; -- [XAXNS] :: herb (commonly called hyoscyamus); species of solanum; + apologatio_F_N = mkN "apologatio" "apologationis" feminine ; -- [XXXFO] :: fable or apologue; narration in the manner of Aesop; apologeticus_A = mkA "apologeticus" "apologetica" "apologeticum" ; -- [FXXEE] :: apologetic; apologia_F_N = mkN "apologia" ; -- [DXXES] :: apology; defense; apologo_V2 = mkV2 (mkV "apologare") ; -- [XXXFO] :: spurn, reject; apologus_M_N = mkN "apologus" ; -- [XXXDO] :: narrative, story; fable, tale; apopempeus_M_N = mkN "apopempeus" ; -- [FEXFM] :: averter of evil; aversion/carrying away (of evil); - apophasis_F_N = mkN "apophasis" "apophasis " feminine ; -- [DGXFS] :: denial, rhetorical device where one answers himself; - apophegmatismos_M_N = mkN "apophegmatismos" "apophegmatismi " masculine ; -- [DBXFS] :: remedy for expelling phlegm, expectorant; + apophasis_F_N = mkN "apophasis" "apophasis" feminine ; -- [DGXFS] :: denial, rhetorical device where one answers himself; + 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); 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; + apoplexis_F_N = mkN "apoplexis" "apoplexis" feminine ; -- [DBXES] :: apoplexy, stroke; apopompaeus_M_N = mkN "apopompaeus" ; -- [FEXFM] :: averter of evil; aversion/carrying away (of evil); apopompeus_M_N = mkN "apopompeus" ; -- [FEXFM] :: averter of evil; aversion/carrying away (of evil); - apoproegmenon_N_N = mkN "apoproegmenon" "apoproegmeni " neuter ; -- [XGXFS] :: things (pl.) that have been rejected; + apoproegmenon_N_N = mkN "apoproegmenon" "apoproegmeni" neuter ; -- [XGXFS] :: things (pl.) that have been rejected; apoproegmenum_N_N = mkN "apoproegmenum" ; -- [XGXFO] :: things (pl.) that have been rejected; - apopsis_F_N = mkN "apopsis" "apopsis " feminine ; -- [XTXFO] :: belvedere? (summer house/gazebo, raised turret/lantern atop house with view); + apopsis_F_N = mkN "apopsis" "apopsis" feminine ; -- [XTXFO] :: belvedere? (summer house/gazebo, raised turret/lantern atop house with view); aporia_F_N = mkN "aporia" ; -- [DXXES] :: doubt, perplexity; embarrassment, disorder; - aporiatio_F_N = mkN "aporiatio" "aporiationis " feminine ; -- [DXXES] :: vacillation of mind, uncertainty, doubt; + aporiatio_F_N = mkN "aporiatio" "aporiationis" feminine ; -- [DXXES] :: vacillation of mind, uncertainty, doubt; aporio_V = mkV "aporiare" ; -- [EXXFW] :: be uncertain/in doubt, vacillate, waver, doubt, be perplexed/distressed/in need; aporior_V = mkV "aporiari" ; -- [DXXCS] :: be uncertain/in doubt, vacillate, waver, doubt, be perplexed/distressed/in need; - aposcopeuon_M_N = mkN "aposcopeuon" "aposcopeuontis " masculine ; -- [XXXNO] :: looking into the distance; - aposiopesis_F_N = mkN "aposiopesis" "aposiopesis " feminine ; -- [XGXFO] :: breaking off in the middle of speech, aposiosesis; - aposphragisma_N_N = mkN "aposphragisma" "aposphragismatis " neuter ; -- [XXXFO] :: device on a signet ring; - aposplenos_F_N = mkN "aposplenos" "apospleni " feminine ; -- [DAXFS] :: rosemary; + aposcopeuon_M_N = mkN "aposcopeuon" "aposcopeuontis" masculine ; -- [XXXNO] :: looking into the distance; + aposiopesis_F_N = mkN "aposiopesis" "aposiopesis" feminine ; -- [XGXFO] :: breaking off in the middle of speech, aposiosesis; + aposphragisma_N_N = mkN "aposphragisma" "aposphragismatis" neuter ; -- [XXXFO] :: device on a signet ring; + aposplenos_F_N = mkN "aposplenos" "apospleni" feminine ; -- [DAXFS] :: rosemary; apostasia_F_N = mkN "apostasia" ; -- [DEXES] :: apostasy, departure from one's religion, repudiation of one's faith; apostata_M_N = mkN "apostata" ; -- [DEXCS] :: apostate; bad/wicked man; apostaticus_A = mkA "apostaticus" "apostatica" "apostaticum" ; -- [DEXEE] :: apostate, rebel; apostato_V = mkV "apostatare" ; -- [DEXFE] :: fall away (from), apostatize, forsake one's religion; - apostatrix_F_N = mkN "apostatrix" "apostatricis " feminine ; -- [DEXFE] :: apostate (female); - apostema_N_N = mkN "apostema" "apostematis " neuter ; -- [XBXEO] :: abscess; ulcer; + apostatrix_F_N = mkN "apostatrix" "apostatricis" feminine ; -- [DEXFE] :: apostate (female); + apostema_N_N = mkN "apostema" "apostematis" neuter ; -- [XBXEO] :: abscess; ulcer; apostola_F_N = mkN "apostola" ; -- [DEXFE] :: apostle (female); - apostolatus_M_N = mkN "apostolatus" "apostolatus " masculine ; -- [DEXFS] :: apostlate, office/position of an apostle, apostleship; - apostolicitas_F_N = mkN "apostolicitas" "apostolicitatis " feminine ; -- [FEXFE] :: apostlate, office/position of an apostle, apostleship; + apostolatus_M_N = mkN "apostolatus" "apostolatus" masculine ; -- [DEXFS] :: apostlate, office/position of an apostle, apostleship; + apostolicitas_F_N = mkN "apostolicitas" "apostolicitatis" feminine ; -- [FEXFE] :: apostlate, office/position of an apostle, apostleship; apostolicus_A = mkA "apostolicus" "apostolica" "apostolicum" ; -- [DEXCS] :: apostolic; of/concerning/belonging to an Apostle; title applied to Pope; apostolicus_M_N = mkN "apostolicus" ; -- [DEXDS] :: saying of an Apostle; book of Epistles; pupils/friends of the Apostles (pl.); apostolus_M_N = mkN "apostolus" ; -- [DLXCS] :: notice/statement of the case sent to a higher tribunal on an appeal (Roman law); apostrapha_F_N = mkN "apostrapha" ; -- [FDXFE] :: apostrophe; small mark or note (especially in music); apostropha_F_N = mkN "apostropha" ; -- [EDXEE] :: small mark/note (esp. in music); apostrophe; - apostrophe_F_N = mkN "apostrophe" "apostrophes " feminine ; -- [XGXDS] :: rhetorical figure when speaker turns away to address others; apostrophy; - apostrophos_F_N = mkN "apostrophos" "apostrophi " feminine ; -- [DGXES] :: mark of elision, apostrophe; + apostrophe_F_N = mkN "apostrophe" "apostrophes" feminine ; -- [XGXDS] :: rhetorical figure when speaker turns away to address others; apostrophy; + apostrophos_F_N = mkN "apostrophos" "apostrophi" feminine ; -- [DGXES] :: mark of elision, apostrophe; apostrophus_F_N = mkN "apostrophus" ; -- [DGXES] :: mark of elision, apostrophe; - apotelesma_N_N = mkN "apotelesma" "apotelesmatis " neuter ; -- [DXXFS] :: influence of the stars on human destiny; + apotelesma_N_N = mkN "apotelesma" "apotelesmatis" neuter ; -- [DXXFS] :: influence of the stars on human destiny; apotheca_F_N = mkN "apotheca" ; -- [XXXCO] :: store-house, store-room, repository; wine-cellar; 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); + apotheosis_F_N = mkN "apotheosis" "apotheosis" feminine ; -- [DEXES] :: deification, transformation into a god; (by extension) canonization (saint); 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; + 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; + 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; + 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); + apparatrix_F_N = mkN "apparatrix" "apparatricis" feminine ; -- [DXXFS] :: she who prepares (sacrifices); 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; + 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; + 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); apparitura_F_N = mkN "apparitura" ; -- [XLXFO] :: attendance on a magistrate, (civil) service; apparo_V2 = mkV2 (mkV "apparare") ; -- [XXXBO] :: prepare, fit out, make ready, equip, provide; attempt; organize (project); appectoro_V2 = mkV2 (mkV "appectorare") ; -- [DXXFS] :: press/clasp to the breast; - appellans_M_N = mkN "appellans" "appellantis " masculine ; -- [FLXFJ] :: appellant; appellor; one who appeals; - appellatio_F_N = mkN "appellatio" "appellationis " feminine ; -- [XXXBO] :: appeal (to higher authority); name, term; noun; title, rank; pronunciation; + appellans_M_N = mkN "appellans" "appellantis" masculine ; -- [FLXFJ] :: appellant; appellor; one who appeals; + appellatio_F_N = mkN "appellatio" "appellationis" feminine ; -- [XXXBO] :: appeal (to higher authority); name, term; noun; title, rank; pronunciation; appellativus_A = mkA "appellativus" "appellativa" "appellativum" ; -- [XGXFO] :: of the nature of a noun, nominal; appellative, belonging to a species (L+S); - appellator_M_N = mkN "appellator" "appellatoris " masculine ; -- [XXXCO] :: appellant, one who appeals; + appellator_M_N = mkN "appellator" "appellatoris" masculine ; -- [XXXCO] :: appellant, one who appeals; 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 "appellere" "appello" "appuli" "appulsus ") ; -- [XXXBO] :: drive to, move up, bring along, force towards; put ashore at, land (ship); + 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; + 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); appetens_A = mkA "appetens" "appetentis"; -- [XXXCO] :: eager/greedy/having appetite for (w/GEN), desirous; avaricious/greedy/covetous; @@ -5064,79 +5064,79 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; + 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; applicabilis_A = mkA "applicabilis" "applicabilis" "applicabile" ; -- [EXXFE] :: applicable; - applicatio_F_N = mkN "applicatio" "applicationis " feminine ; -- [XXXCO] :: application, inclination; joining, attaching; attachment of client to patron; + applicatio_F_N = mkN "applicatio" "applicationis" feminine ; -- [XXXCO] :: application, inclination; joining, attaching; attachment of client to patron; 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); + 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; + 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; + 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; + 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; + appositio_F_N = mkN "appositio" "appositionis" feminine ; -- [XXXFO] :: comparison, action of comparing; appositum_N_N = mkN "appositum" ; -- [XGXFO] :: adjective, epithet; 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); + 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; appreciatamentum_N_N = mkN "appreciatamentum" ; -- [FXXFM] :: appraisal, valuing; - appreciatio_F_N = mkN "appreciatio" "appreciationis " feminine ; -- [FXXEM] :: appraisal, valuing; + appreciatio_F_N = mkN "appreciatio" "appreciationis" feminine ; -- [FXXEM] :: appraisal, valuing; 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; + 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; + 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; + 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); + 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; + 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; approbe_Adv = mkAdv "approbe" ; -- [XXXEO] :: excellently; 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; + 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; + appropinquatio_F_N = mkN "appropinquatio" "appropinquationis" feminine ; -- [XXXEO] :: approach, drawing near; appropinquo_V = mkV "appropinquare" ; -- [XXXBO] :: approach (w/DAT or ad+ACC); come near to, draw near/nigh (space/time); be close; appropio_V = mkV "appropiare" ; -- [DXXCB] :: approach (w/DAT or ad+ACC); come near to, draw near/nigh (space/time); be close; - appropriatio_F_N = mkN "appropriatio" "appropriationis " feminine ; -- [DXXES] :: appropriation, making one's own; [~ ciborum => making flesh/blood of food]; + appropriatio_F_N = mkN "appropriatio" "appropriationis" feminine ; -- [DXXES] :: appropriation, making one's own; [~ ciborum => making flesh/blood of food]; approprio_V = mkV "appropriare" ; -- [DXXFS] :: appropriate, make one's own; approximo_V2 = mkV2 (mkV "approximare") ; -- [DXXFS] :: be/draw/come close/near to, approach; appugno_V2 = mkV2 (mkV "appugnare") ; -- [XXXCO] :: attack, assault; - appulsus_M_N = mkN "appulsus" "appulsus " masculine ; -- [XXXCO] :: landing; approach; influence, impact; bringing/driving to (cattle) (/right to); + appulsus_M_N = mkN "appulsus" "appulsus" masculine ; -- [XXXCO] :: landing; approach; influence, impact; bringing/driving to (cattle) (/right to); apra_F_N = mkN "apra" ; -- [BAXNO] :: wild sow (old feminine of aper - wild boar); aprarius_A = mkA "aprarius" "apraria" "aprarium" ; -- [XXXFO] :: for hunting boar, boar-; - apricatio_F_N = mkN "apricatio" "apricationis " feminine ; -- [XXXEO] :: basking, sitting in the sun, sunning oneself; - apricitas_F_N = mkN "apricitas" "apricitatis " feminine ; -- [XXXEO] :: sunniness, property of having much sunshine; warmth of the sun, sunshine; + apricatio_F_N = mkN "apricatio" "apricationis" feminine ; -- [XXXEO] :: basking, sitting in the sun, sunning oneself; + apricitas_F_N = mkN "apricitas" "apricitatis" feminine ; -- [XXXEO] :: sunniness, property of having much sunshine; warmth of the sun, sunshine; aprico_V = mkV "apricare" ; -- [FXXEK] :: tan; aprico_V2 = mkV2 (mkV "apricare") ; -- [DXXES] :: warm in the sun; apricor_V = mkV "apricari" ; -- [XXXDO] :: bask in the sun, sun oneself; @@ -5147,66 +5147,66 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); - aproxis_F_N = mkN "aproxis" "aproxis " feminine ; -- [XAXNS] :: plant whose root takes fire at a distance (ignites easily?); - apruco_F_N = mkN "apruco" "apruconis " feminine ; -- [DAXFS] :: plant (commonly called saxifrage - dwarf herbs usually rooting in rocks); + aproxis_F_N = mkN "aproxis" "aproxis" feminine ; -- [XAXNS] :: plant whose root takes fire at a distance (ignites easily?); + apruco_F_N = mkN "apruco" "apruconis" feminine ; -- [DAXFS] :: plant (commonly called saxifrage - dwarf herbs usually rooting in rocks); aprugineus_A = mkA "aprugineus" "apruginea" "aprugineum" ; -- [DAXFS] :: of wild boar, boar's; aprugna_F_N = mkN "aprugna" ; -- [DAXES] :: flesh/meat of the wild boar; 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; + 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; + 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; 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; + 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; + apsconsio_F_N = mkN "apsconsio" "apsconsionis" feminine ; -- [EXXCE] :: shelter; apsconsus_A = mkA "apsconsus" "apsconsa" "apsconsum" ; -- [EXXCE] :: hidden, secret, concealed, unknown; - apsegmen_N_N = mkN "apsegmen" "apsegminis " neuter ; -- [XXXFO] :: piece/slice/hunk of meat, collop; morsel, portion, lump, mouthful, gobbet; + apsegmen_N_N = mkN "apsegmen" "apsegminis" neuter ; -- [XXXFO] :: piece/slice/hunk of meat, collop; morsel, portion, lump, mouthful, gobbet; apsens_A = mkA "apsens" "apsentis"; -- [XXXBO] :: absent, missing, away, gone; physically elsewhere (things), non-existent; apsenthium_N_N = mkN "apsenthium" ; -- [XXXEO] :: wormwood; infusion/tincture of wormwood; apsentia_F_N = mkN "apsentia" ; -- [XXXCO] :: absence; absence form Rome/duty; non-appearance in court; lack; - apsentio_F_N = mkN "apsentio" "apsentionis " feminine ; -- [DXXFS] :: holding back, restraining; + apsentio_F_N = mkN "apsentio" "apsentionis" feminine ; -- [DXXFS] :: holding back, restraining; apsentivus_A = mkA "apsentivus" "apsentiva" "apsentivum" ; -- [XXXFS] :: long absent; 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; + 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; + 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); apsolute_Adv =mkAdv "apsolute" "apsolutius" "apsolutissime" ; -- [XXXCO] :: completely, absolutely; perfectly; without qualification, simply, unreservedly; - apsolutio_F_N = mkN "apsolutio" "apsolutionis " feminine ; -- [XXXCO] :: finishing, completion; acquittal, release (obligat.); perfection; completeness; + 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; 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; + 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); + 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); 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; + 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; @@ -5214,34 +5214,34 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat apstinentia_F_N = mkN "apstinentia" ; -- [XXXBO] :: abstinence; fasting; moderation, self control, restraint; integrity; parsimony; 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; + 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; + apstrusio_F_N = mkN "apstrusio" "apstrusionis" feminine ; -- [DXXFS] :: removing, concealing; 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; + 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; - apsyctos_F_N = mkN "apsyctos" "apsycti " feminine ; -- [XXXNO] :: precious stone; - aptatio_F_N = mkN "aptatio" "aptationis " feminine ; -- [FXXFE] :: adaption; accommodation, adjustment; + apsyctos_F_N = mkN "apsyctos" "apsycti" feminine ; -- [XXXNO] :: precious stone; + aptatio_F_N = mkN "aptatio" "aptationis" feminine ; -- [FXXFE] :: adaption; accommodation, adjustment; apte_Adv =mkAdv "apte" "aptius" "aptissime" ; -- [XXXBO] :: closely, snugly, so to fit tightly/exactly; neatly, aptly; suitably; fittingly; apterus_A = mkA "apterus" "aptera" "apterum" ; -- [GXXEK] :: aptly; aptha_F_N = mkN "aptha" ; -- [XBXFO] :: parasitic stomatitis, thrush, aphthous ulcers (fungal disease); - aptitudo_F_N = mkN "aptitudo" "aptitudinis " feminine ; -- [FXXEE] :: aptitude; + aptitudo_F_N = mkN "aptitudo" "aptitudinis" feminine ; -- [FXXEE] :: aptitude; 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.)?; 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; + 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; 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; @@ -5249,15 +5249,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat apyrinus_A = mkA "apyrinus" "apyrina" "apyrinum" ; -- [XAXEO] :: lacking a hard kernel (of fruit); with soft kernel/seeds; apyros_A = mkA "apyros" "apyros" "apyron" ; -- [XTXEO] :: that has not been treated with fire; unsmelted (gold); native (sulfur); aqua_F_N = mkN "aqua" ; -- [XXXAO] :: water; sea, lake; river, stream; rain, rainfall (pl.), rainwater; spa; urine; - aquaductus_M_N = mkN "aquaductus" "aquaductus " masculine ; -- [FXXCE] :: aqueduct; watercourse; conduit; - aquaeductus_M_N = mkN "aquaeductus" "aquaeductus " masculine ; -- [XXXCO] :: aqueduct; + aquaductus_M_N = mkN "aquaductus" "aquaductus" masculine ; -- [FXXCE] :: aqueduct; watercourse; conduit; + aquaeductus_M_N = mkN "aquaeductus" "aquaeductus" masculine ; -- [XXXCO] :: aqueduct; aquaelicium_N_N = mkN "aquaelicium" ; -- [XXXFO] :: rain-making; means/sacrifice to produce rain; aquagium_N_N = mkN "aquagium" ; -- [XXXDO] :: channel, artificial watercourse; aqueduct, conveyer of water; aqualiculus_M_N = mkN "aqualiculus" ; -- [XXXFO] :: paunch, pot-belly; small pot/vessel for water (L+S); aqualis_A = mkA "aqualis" "aqualis" "aquale" ; -- [XXXEO] :: watery, rainy; for water (of vessels); - aqualis_M_N = mkN "aqualis" "aqualis " masculine ; -- [XXXEO] :: water/wash basin; ewer; - aquamanile_N_N = mkN "aquamanile" "aquamanilis " neuter ; -- [FEXFE] :: basin (for use at Lavabo/ceremonial hand washing in liturgy); - aquamanus_M_N = mkN "aquamanus" "aquamanus " masculine ; -- [FEXFE] :: dish/basin for hand washing; + aqualis_M_N = mkN "aqualis" "aqualis" masculine ; -- [XXXEO] :: water/wash basin; ewer; + aquamanile_N_N = mkN "aquamanile" "aquamanilis" neuter ; -- [FEXFE] :: basin (for use at Lavabo/ceremonial hand washing in liturgy); + aquamanus_M_N = mkN "aquamanus" "aquamanus" masculine ; -- [FEXFE] :: dish/basin for hand washing; aquariolus_M_N = mkN "aquariolus" ; -- [XXXEO] :: servant who supplied washing water for prostitutes; aquarium_N_N = mkN "aquarium" ; -- [XXXFO] :: watering place. water hole (for cattle); source of water; aquarius_A = mkA "aquarius" "aquaria" "aquarium" ; -- [XXXCO] :: of/for water; requiring water (tools/instruments); [res ~ => water supply]; @@ -5265,10 +5265,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat aquate_Adv =mkAdv "aquate" "aquatius" "aquatissime" ; -- [XXXES] :: with water, by use of water; aquaticum_N_N = mkN "aquaticum" ; -- [XAXNO] :: well-watered/marshy places/ground; aquaticus_A = mkA "aquaticus" "aquatica" "aquaticum" ; -- [XXXEO] :: aquatic, of/belonging to the water, growing/living in/by water; rainy; watery; - aquatile_N_N = mkN "aquatile" "aquatilis " neuter ; -- [XAXNO] :: aquatic animals/plants (pl.); disease of cattle, watery vesicles (L+S); + aquatile_N_N = mkN "aquatile" "aquatilis" neuter ; -- [XAXNO] :: aquatic animals/plants (pl.); disease of cattle, watery vesicles (L+S); aquatilis_A = mkA "aquatilis" "aquatilis" "aquatile" ; -- [XXXCO] :: of/resembling water, watery; aquatic (animals/plants); - 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; + 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; 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; @@ -5283,18 +5283,18 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat aquila_F_N = mkN "aquila" ; -- [XWXCO] :: silver eagle on pole, standard of a legion; legion; post of standard-bearer; aquilegus_A = mkA "aquilegus" "aquilega" "aquilegum" ; -- [DXXES] :: water-drawing; aquilentus_A = mkA "aquilentus" "aquilenta" "aquilentum" ; -- [XXXFO] :: watery, full of water; wet, humid; - aquilex_M_N = mkN "aquilex" "aquilegis " masculine ; -- [XXXFO] :: water-diviner, man used to find water sources; conduit/water master/inspector; + aquilex_M_N = mkN "aquilex" "aquilegis" masculine ; -- [XXXFO] :: water-diviner, man used to find water sources; conduit/water master/inspector; aquilicium_N_N = mkN "aquilicium" ; -- [XXXFS] :: rain-making; means/sacrifice to produce rain; aquilifer_M_N = mkN "aquilifer" ; -- [XWXDO] :: standard bearer of a legion, officer who carried the eagle standard; aquilifera_M_N = mkN "aquilifera" ; -- [FWXFV] :: standard bearer of a legion, officer who carried the eagle standard; aquilinus_A = mkA "aquilinus" "aquilina" "aquilinum" ; -- [XAXEO] :: eagle's, like that of an eagle; - aquilo_M_N = mkN "aquilo" "aquilonis " masculine ; -- [XXXCO] :: north wind; NNE/NE wind (for Rome); north; Boreas (personified); + aquilo_M_N = mkN "aquilo" "aquilonis" masculine ; -- [XXXCO] :: north wind; NNE/NE wind (for Rome); north; Boreas (personified); aquilonalis_A = mkA "aquilonalis" "aquilonalis" "aquilonale" ; -- [XXXFO] :: northerly, northern; aquilonaris_A = mkA "aquilonaris" "aquilonaris" "aquilonare" ; -- [XXXFS] :: northerly, northern; aquilonium_N_N = mkN "aquilonium" ; -- [XSXNO] :: northerly regions (pl.); the north; regions facing/exposed to the north; aquilonius_A = mkA "aquilonius" "aquilonia" "aquilonium" ; -- [XXXCO] :: northern, northerly; facing north; subject to north winds; of Boreas; aquilus_A = mkA "aquilus" "aquila" "aquilum" ; -- [XXXDO] :: dark colored/hued, swarthy; - aquiminale_N_N = mkN "aquiminale" "aquiminalis " neuter ; -- [XXXFO] :: wash-basin/bowl, vessel for washing the hands; + aquiminale_N_N = mkN "aquiminale" "aquiminalis" neuter ; -- [XXXFO] :: wash-basin/bowl, vessel for washing the hands; aquiminalis_A = mkA "aquiminalis" "aquiminalis" "aquiminale" ; -- [XXXES] :: of/pertaining to water for washing the hands; aquiminarium_N_N = mkN "aquiminarium" ; -- [XXXEO] :: wash-basin/bowl, vessel for washing the hands; aquimolina_F_N = mkN "aquimolina" ; -- [GXXEK] :: watermill; @@ -5304,19 +5304,19 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + arabarches_M_N = mkN "arabarches" "arabarchae" masculine ; -- [XLEEO] :: Egyptian tax/customs collector; contemptuously of Pompey for raising taxes; arabarchia_F_N = mkN "arabarchia" ; -- [DLEFS] :: kind of Egyptian customs duty/tax; arabica_F_N = mkN "arabica" ; -- [XXXNO] :: some precious stone; arabice_Adv = mkAdv "arabice" ; -- [XXQEO] :: in Arabic fashion; arabilis_A = mkA "arabilis" "arabilis" "arabile" ; -- [XAXNO] :: that can be plowed, fit for tillage, arable; [bos ~ => plow ox]; arachidna_F_N = mkN "arachidna" ; -- [XAXNS] :: leguminous plant (kind), (ground peas, Lathyrus amphicarpus?); checking vetch; - arachidne_F_N = mkN "arachidne" "arachidnes " feminine ; -- [XAXNO] :: leguminous plant (kind), (ground peas, Lathyrus amphicarpus?); checking vetch; - arachis_F_N = mkN "arachis" "arachidis " feminine ; -- [GAXEK] :: peanut; + arachidne_F_N = mkN "arachidne" "arachidnes" feminine ; -- [XAXNO] :: leguminous plant (kind), (ground peas, Lathyrus amphicarpus?); checking vetch; + arachis_F_N = mkN "arachis" "arachidis" feminine ; -- [GAXEK] :: peanut; arachnoides_A = mkA "arachnoides" "arachnoides" "arachnoides" ; -- [XBXFO] :: web-like; [tunica arachnoides => retina of the eye]; aracia_F_N = mkN "aracia" ; -- [XAXNS] :: kind of white fig tree; island in the Persian Gulf now called Karek; - aracos_M_N = mkN "aracos" "araci " masculine ; -- [XAXNO] :: kind of leguminous plant; + aracos_M_N = mkN "aracos" "araci" masculine ; -- [XAXNO] :: kind of leguminous plant; aracostylos_A = mkA "aracostylos" "aracostylos" "aracostylon" ; -- [XTXFO] :: with columns widely spaced (archit.); - arale_N_N = mkN "arale" "aralis " neuter ; -- [XEXIO] :: structure/base/foundation on which an altar could be set up; + arale_N_N = mkN "arale" "aralis" neuter ; -- [XEXIO] :: structure/base/foundation on which an altar could be set up; aranciata_F_N = mkN "aranciata" ; -- [GXXEK] :: orange drink; arancium_N_N = mkN "arancium" ; -- [GAXEK] :: orange (fruit); aranea_F_N = mkN "aranea" ; -- [XAXCO] :: spider's web, cobweb; mass of threads resembling a spider web; spider; @@ -5332,11 +5332,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat arantium_N_N = mkN "arantium" ; -- [GAXFM] :: orange (fruit); arantius_A = mkA "arantius" "arantia" "arantium" ; -- [GAXFM] :: orange (color); orange-colored; tawny; arater_M_N = mkN "arater" ; -- [XAXES] :: plow; - aratio_F_N = mkN "aratio" "arationis " feminine ; -- [XAXCO] :: plowing; tilled ground; an estate of arable land (esp. one farmed on shares); + aratio_F_N = mkN "aratio" "arationis" feminine ; -- [XAXCO] :: plowing; tilled ground; an estate of arable land (esp. one farmed on shares); aratiuncula_F_N = mkN "aratiuncula" ; -- [XAXFO] :: small estate of arable land; aratius_A = mkA "aratius" "aratia" "aratium" ; -- [XAXNO] :: variety of fig; arator_A = mkA "arator" "aratoris"; -- [XAXEO] :: plowing, plow-; (of oxen); - arator_M_N = mkN "arator" "aratoris " masculine ; -- [XAXCO] :: plowman; farmer (esp. farming on shares); cultivators of public land on tenths; + arator_M_N = mkN "arator" "aratoris" masculine ; -- [XAXCO] :: plowman; farmer (esp. farming on shares); cultivators of public land on tenths; aratorius_A = mkA "aratorius" "aratoria" "aratorium" ; -- [XAXIO] :: of/for plowing, plow-; aratro_V = mkV "aratrare" ; -- [XAXNS] :: plow in (young grain to improve the yield), plow (after sowing); aratrum_N_N = mkN "aratrum" ; -- [XAXCO] :: plow; @@ -5348,24 +5348,24 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat arbitralis_A = mkA "arbitralis" "arbitralis" "arbitrale" ; -- [DLXCS] :: of/pertaining to a judge/umpire; arbitrario_Adv = mkAdv "arbitrario" ; -- [XXXFO] :: thoughtfully; arbitrarius_A = mkA "arbitrarius" "arbitraria" "arbitrarium" ; -- [XLXCO] :: at discretion of arbiter; done by arbitration; arbitrary; voluntary/optional; - arbitratio_F_N = mkN "arbitratio" "arbitrationis " feminine ; -- [BLXEX] :: arbitration; choice; judgment, capacity for decisions; jurisdiction, power; - arbitrator_M_N = mkN "arbitrator" "arbitratoris " masculine ; -- [DLXES] :: master, ruler, lord (Pentapylon Jovis arbitratoris - place in Rome 10th); - arbitratrix_F_N = mkN "arbitratrix" "arbitratricis " feminine ; -- [DLXFS] :: ruler (female); mistress; - arbitratus_M_N = mkN "arbitratus" "arbitratus " masculine ; -- [CLXDX] :: arbitration; choice; judgment, capacity for decisions; jurisdiction, power; + arbitratio_F_N = mkN "arbitratio" "arbitrationis" feminine ; -- [BLXEX] :: arbitration; choice; judgment, capacity for decisions; jurisdiction, power; + arbitrator_M_N = mkN "arbitrator" "arbitratoris" masculine ; -- [DLXES] :: master, ruler, lord (Pentapylon Jovis arbitratoris - place in Rome 10th); + arbitratrix_F_N = mkN "arbitratrix" "arbitratricis" feminine ; -- [DLXFS] :: ruler (female); mistress; + arbitratus_M_N = mkN "arbitratus" "arbitratus" masculine ; -- [CLXDX] :: arbitration; choice; judgment, capacity for decisions; jurisdiction, power; arbitrium_N_N = mkN "arbitrium" ; -- [XLXAO] :: arbitration; choice, judgment, decision; sentence; will, mastery, authority; - arbitrix_F_N = mkN "arbitrix" "arbitricis " feminine ; -- [XLXIO] :: female arbitrator; + arbitrix_F_N = mkN "arbitrix" "arbitricis" feminine ; -- [XLXIO] :: female arbitrator; arbitro_V = mkV "arbitrare" ; -- [XLXCO] :: think, judge; consider; be settled/decided on (PASS); arbitror_V = mkV "arbitrari" ; -- [XLXBO] :: observe, witness; testify; decide, judge, sentence; believe, think, imagine; arbitum_N_N = mkN "arbitum" ; -- [XAXDS] :: abrutus (evergreen strawberry) tree/fruit; its leaves/branches (animal feed); - arbor_F_N = mkN "arbor" "arboris " feminine ; -- [XAXBO] :: tree; tree trunk; mast; oar; ship; gallows; spearshaft; beam; squid?; + 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; + 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); arborius_A = mkA "arborius" "arboria" "arborium" ; -- [XAXCO] :: of a tree(s), tree-; resembling a tree, branching; wooden; - arbos_F_N = mkN "arbos" "arbosis " feminine ; -- [BAXDO] :: tree; tree trunk; mast; oar; ship; gallows; spearshaft; beam; squid?; + arbos_F_N = mkN "arbos" "arbosis" feminine ; -- [BAXDO] :: tree; tree trunk; mast; oar; ship; gallows; spearshaft; beam; squid?; arbuscula_F_N = mkN "arbuscula" ; -- [XAXCO] :: small/young tree, sapling, bush, shrub; thing like a small tree; axe bearing; arbustivus_A = mkA "arbustivus" "arbustiva" "arbustivum" ; -- [XAXEO] :: of/with trees/orchards; of vines trained on trees/wines produced from them; arbusto_V2 = mkV2 (mkV "arbustare") ; -- [XAXNO] :: plant (with trees), forest, reforest; @@ -5383,7 +5383,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat arcarius_A = mkA "arcarius" "arcaria" "arcarium" ; -- [XXXFO] :: of/concerned with ready money, cash; arcarius_M_N = mkN "arcarius" ; -- [XXXDO] :: treasurer; controller of the public monies; arcatura_F_N = mkN "arcatura" ; -- [DTXFS] :: square landmark for surveyors; - arcebion_N_N = mkN "arcebion" "arcebii " neuter ; -- [XAXNS] :: plant (commonly called onochiles or amchusa); kind of ox-tongue; + arcebion_N_N = mkN "arcebion" "arcebii" neuter ; -- [XAXNS] :: plant (commonly called onochiles or amchusa); kind of ox-tongue; arcelacus_A = mkA "arcelacus" "arcelaca" "arcelacum" ; -- [XAXFO] :: variety of vine (arcelacae vites); arcella_F_N = mkN "arcella" ; -- [DTXFO] :: square landmark for surveyors; arcellacus_A = mkA "arcellacus" "arcellaca" "arcellacum" ; -- [XAXFS] :: variety of vine (arcelacae vites); @@ -5391,27 +5391,27 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; archaeologus_M_N = mkN "archaeologus" ; -- [GXXEK] :: archaeologist; archaicus_A = mkA "archaicus" "archaica" "archaicum" ; -- [GXXEK] :: archaic; archangelus_M_N = mkN "archangelus" ; -- [EEXDX] :: archangel; - arche_F_N = mkN "arche" "arches " feminine ; -- [DXXFS] :: one of Aeons; one of the four muses; - archebion_N_N = mkN "archebion" "archebii " neuter ; -- [XAXNO] :: plant (Echium creticum?); + arche_F_N = mkN "arche" "arches" feminine ; -- [DXXFS] :: one of Aeons; one of the four muses; + archebion_N_N = mkN "archebion" "archebii" neuter ; -- [XAXNO] :: plant (Echium creticum?); archeota_M_N = mkN "archeota" ; -- [XXXFS] :: keeper of the archives; a recorder; - archetypon_N_N = mkN "archetypon" "archetypi " neuter ; -- [XXXEO] :: original, pattern, model; + archetypon_N_N = mkN "archetypon" "archetypi" neuter ; -- [XXXEO] :: original, pattern, model; archetypum_N_N = mkN "archetypum" ; -- [XXXEO] :: original, pattern, model; archetypus_A = mkA "archetypus" "archetypa" "archetypum" ; -- [XXXDO] :: first made; genuine; original; in the author's hand/autograph; taken from life; - archezostis_F_N = mkN "archezostis" "archezostis " feminine ; -- [XAXNO] :: kind of bryony plant (Bryonia alba L+S); + archezostis_F_N = mkN "archezostis" "archezostis" feminine ; -- [XAXNO] :: kind of bryony plant (Bryonia alba L+S); archiater_M_N = mkN "archiater" ; -- [XBXIO] :: official/court physician; archiatia_F_N = mkN "archiatia" ; -- [DBXFS] :: rank of chief physician; archiatrus_M_N = mkN "archiatrus" ; -- [XBXFS] :: official/court physician; chief physician and personal doctor of the emperor; @@ -5419,41 +5419,41 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat archibucolus_M_N = mkN "archibucolus" ; -- [XEXFS] :: chief priest of Bacchus; archibuculus_M_N = mkN "archibuculus" ; -- [XEXFS] :: chief priest of Bacchus; archibugius_M_N = mkN "archibugius" ; -- [FEXFZ] :: ARCHIBUGI; arch-head (of Bugella community?); - archicantor_M_N = mkN "archicantor" "archicantoris " masculine ; -- [FEXFE] :: archicantor, leader of choir of cantors; + archicantor_M_N = mkN "archicantor" "archicantoris" masculine ; -- [FEXFE] :: archicantor, leader of choir of cantors; archicapellanus_M_N = mkN "archicapellanus" ; -- [FEXFE] :: almoner; chief chaplain; archidendrophorus_M_N = mkN "archidendrophorus" ; -- [EEXIO] :: chief of the college of dendrophori (tree-bearers associated with Cybele); - archidiaconatus_M_N = mkN "archidiaconatus" "archidiaconatus " masculine ; -- [FEXFE] :: deanery; office of archdeacon; + archidiaconatus_M_N = mkN "archidiaconatus" "archidiaconatus" masculine ; -- [FEXFE] :: deanery; office of archdeacon; archidiaconus_M_N = mkN "archidiaconus" ; -- [DEXES] :: archdeacon; archidictus_A = mkA "archidictus" "archidicta" "archidictum" ; -- [EXXEN] :: extremely eloquent; - archidiocesis_F_N = mkN "archidiocesis" "archidiocesis " feminine ; -- [FEXEE] :: archdiocese; + archidiocesis_F_N = mkN "archidiocesis" "archidiocesis" feminine ; -- [FEXEE] :: archdiocese; archielectus_M_N = mkN "archielectus" ; -- [EEXEX] :: archbishop elect (but not confirmed); archiepiscopalis_A = mkA "archiepiscopalis" "archiepiscopalis" "archiepiscopale" ; -- [EEXCE] :: archepiscopal, archbishopal; pertaining to an archbishop; - archiepiscopatus_M_N = mkN "archiepiscopatus" "archiepiscopatus " masculine ; -- [EEXCE] :: archbishopric; + archiepiscopatus_M_N = mkN "archiepiscopatus" "archiepiscopatus" masculine ; -- [EEXCE] :: archbishopric; archiepiscopus_M_N = mkN "archiepiscopus" ; -- [EEXBX] :: archbishop; archiereus_M_N = mkN "archiereus" ; -- [XEXIO] :: chief priest; archierosyna_F_N = mkN "archierosyna" ; -- [DEXES] :: office of chief priest; archigallus_M_N = mkN "archigallus" ; -- [XEXEO] :: chief of the Galli (priests of Cybele); - archigeron_M_N = mkN "archigeron" "archigerontis " masculine ; -- [DLXFS] :: chief of the old men (title under the emperors); + archigeron_M_N = mkN "archigeron" "archigerontis" masculine ; -- [DLXFS] :: chief of the old men (title under the emperors); archigubernus_M_N = mkN "archigubernus" ; -- [XWXEO] :: chief pilot/navigator/helmsman; archimagirus_M_N = mkN "archimagirus" ; -- [XXXEO] :: chief cook; archimandrita_M_N = mkN "archimandrita" ; -- [DEXES] :: chief/principal monk; abbot (Russian or Oriental monastery); archimima_F_N = mkN "archimima" ; -- [XDXIO] :: chief mimic actress; archimimus_M_N = mkN "archimimus" ; -- [XDXEO] :: chief mimic actor, chief of troop of mimics/actors; leading actor/player, lead; archiparaphonista_F_N = mkN "archiparaphonista" ; -- [FEXFE] :: fourth in rank in scholar cantorum; - archipater_M_N = mkN "archipater" "archipatris " masculine ; -- [FEXEM] :: chief priest; X:great ancestor; + archipater_M_N = mkN "archipater" "archipatris" masculine ; -- [FEXEM] :: chief priest; X:great ancestor; archipirata_M_N = mkN "archipirata" ; -- [XXXDO] :: pirate chief; archipresbyter_M_N = mkN "archipresbyter" ; -- [DEXES] :: arch-priest, chief of presbytari; - archipresbyteratus_M_N = mkN "archipresbyteratus" "archipresbyteratus " masculine ; -- [GEXFE] :: archpresbyterate; domain of archpresbyter; - archipresul_M_N = mkN "archipresul" "archipresulis " masculine ; -- [EEXEV] :: archbishop; - archisacerdos_M_N = mkN "archisacerdos" "archisacerdontis " masculine ; -- [DEXFS] :: chief priest; - archisodalitas_F_N = mkN "archisodalitas" "archisodalitatis " feminine ; -- [FEXFE] :: archconfraternity/archisodality; (confraternity empowered to aggregate others); + archipresbyteratus_M_N = mkN "archipresbyteratus" "archipresbyteratus" masculine ; -- [GEXFE] :: archpresbyterate; domain of archpresbyter; + archipresul_M_N = mkN "archipresul" "archipresulis" masculine ; -- [EEXEV] :: archbishop; + archisacerdos_M_N = mkN "archisacerdos" "archisacerdontis" masculine ; -- [DEXFS] :: chief priest; + archisodalitas_F_N = mkN "archisodalitas" "archisodalitatis" feminine ; -- [FEXFE] :: archconfraternity/archisodality; (confraternity empowered to aggregate others); archisodalitium_N_N = mkN "archisodalitium" ; -- [FEXFE] :: archconfraternity/archisodality; (confraternity empowered to aggregate others); archisterium_N_N = mkN "archisterium" ; -- [EEXEE] :: monastery; archisynagogus_M_N = mkN "archisynagogus" ; -- [XEXIO] :: head/ruler of synagogue; archisynagogue; architecta_F_N = mkN "architecta" ; -- [XTXES] :: architect (female), master-builder; inventor, designer, maker, author, deviser; architecto_V2 = mkV2 (mkV "architectare") ; -- [XTXEO] :: design (building), practice architecture; - architecton_M_N = mkN "architecton" "architectonis " masculine ; -- [XTXEO] :: architect, master-builder; master in cunning, crafty man; - architectonice_F_N = mkN "architectonice" "architectonices " feminine ; -- [XTXFO] :: architecture, art of building; + architecton_M_N = mkN "architecton" "architectonis" masculine ; -- [XTXEO] :: architect, master-builder; master in cunning, crafty man; + architectonice_F_N = mkN "architectonice" "architectonices" feminine ; -- [XTXFO] :: architecture, art of building; architectonicus_A = mkA "architectonicus" "architectonica" "architectonicum" ; -- [XTXFO] :: architectural, relating to architecture; architector_V = mkV "architectari" ; -- [XTXDO] :: design/construct (building); design, plan; architectura_F_N = mkN "architectura" ; -- [XTXEO] :: architecture, art of building; @@ -5462,11 +5462,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat archium_N_N = mkN "archium" ; -- [XLXEO] :: public records office; archives; archivium_N_N = mkN "archivium" ; -- [FLXEE] :: public records office; archives; archivum_N_N = mkN "archivum" ; -- [XLXEO] :: public records office; archives; - archon_M_N = mkN "archon" "archontis " masculine ; -- [XLHEO] :: archon, one of the highest magistrates in Athens; + archon_M_N = mkN "archon" "archontis" masculine ; -- [XLHEO] :: archon, one of the highest magistrates in Athens; archontium_N_N = mkN "archontium" ; -- [XLHIO] :: office of archon (high Athenian magistrate); arcifinalis_A = mkA "arcifinalis" "arcifinalis" "arcifinale" ; -- [XLXEO] :: of conquered land not yet surveyed/assigned but built on (irregular boundaries); arcifinius_A = mkA "arcifinius" "arcifinia" "arcifinium" ; -- [XLXEO] :: of conquered land not yet surveyed/assigned but built on (irregular boundaries); - arcion_N_N = mkN "arcion" "arcii " neuter ; -- [XAXNO] :: plant (burdock?) (persolata/brown mullen L+S); + arcion_N_N = mkN "arcion" "arcii" neuter ; -- [XAXNO] :: plant (burdock?) (persolata/brown mullen L+S); arcipotens_A = mkA "arcipotens" "arcipotentis"; -- [XEXFO] :: mighty with the bow (Apollo); arcirma_F_N = mkN "arcirma" ; -- [XXXFO] :: kind of covered carriage; arcisellium_N_N = mkN "arcisellium" ; -- [XXXFO] :: chair with rounded back; @@ -5474,11 +5474,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat arcitenens_A = mkA "arcitenens" "arcitenentis"; -- [XEXCO] :: carries/holding a bow (epithet of Apollo/Artimis), (constellation) the Archer; 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; + 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; arcticos_A = mkA "arcticos" "arctice" "arcticon" ; -- [XXXFO] :: initial, that constitutes the beginning (of a syllable, etc.); arcticus_A = mkA "arcticus" "arctica" "arcticum" ; -- [XXXFO] :: initial, that constitutes the beginning (of a syllable, etc.); - arction_N_N = mkN "arction" "arctii " neuter ; -- [XAXNS] :: plant; (also called arcturus); + arction_N_N = mkN "arction" "arctii" neuter ; -- [XAXNS] :: plant; (also called arcturus); arcto_V2 = mkV2 (mkV "arctare") ; -- [XXXBO] :: wedge in, fit/close firmly; tighten/compress/abridge/contract; pack/limit/cramp; arctophyllum_N_N = mkN "arctophyllum" ; -- [XAXFS] :: chervil; arctous_A = mkA "arctous" "arctoa" "arctoum" ; -- [XPXFS] :: pertaining to the Big/Little Dipper/Bear; northern; @@ -5487,7 +5487,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat arcuarius_M_N = mkN "arcuarius" ; -- [XXXFO] :: maker of bows; arcuatilis_A = mkA "arcuatilis" "arcuatilis" "arcuatile" ; -- [DXXFS] :: bow-formed, bow shaped, bowed; arcuatim_Adv = mkAdv "arcuatim" ; -- [XTXEO] :: in the form of a bow/arch; - arcuatio_F_N = mkN "arcuatio" "arcuationis " feminine ; -- [XTXFO] :: arch; structure consisting of arches (pl.), arcade; + arcuatio_F_N = mkN "arcuatio" "arcuationis" feminine ; -- [XTXFO] :: arch; structure consisting of arches (pl.), arcade; arcuatura_F_N = mkN "arcuatura" ; -- [XTXEO] :: arch; structure consisting of arches (pl.), arcade; arcuatus_A = mkA "arcuatus" "arcuata" "arcuatum" ; -- [XBXEO] :: |rainbow colored, jaundiced; [morbus ~ => jaundice/rainbow colored disease]; arcuatus_M_N = mkN "arcuatus" ; -- [XBXEO] :: one having jaundice/the rainbow colored disease; @@ -5501,10 +5501,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat arculum_N_N = mkN "arculum" ; -- [DEXFS] :: roll/hoop placed on the head for carrying vessels at public sacrifice; arcuma_F_N = mkN "arcuma" ; -- [DXXFS] :: kind of covered carriage; arcuo_V2 = mkV2 (mkV "arcuare") ; -- [XXXNO] :: bend into the shape of a bow/arch; - arcus_M_N = mkN "arcus" "arcus " masculine ; -- [XXXAO] :: bow, arc, coil, arch; rainbow; anything arched or curved; - ardalio_M_N = mkN "ardalio" "ardalionis " masculine ; -- [XXXFO] :: busybody, fusser; + arcus_M_N = mkN "arcus" "arcus" masculine ; -- [XXXAO] :: bow, arc, coil, arch; rainbow; anything arched or curved; + ardalio_M_N = mkN "ardalio" "ardalionis" masculine ; -- [XXXFO] :: busybody, fusser; ardea_F_N = mkN "ardea" ; -- [XAXEO] :: heron; - ardelio_M_N = mkN "ardelio" "ardelionis " masculine ; -- [XXXEC] :: busybody; + ardelio_M_N = mkN "ardelio" "ardelionis" masculine ; -- [XXXEC] :: busybody; ardens_A = mkA "ardens" "ardentis"; -- [XXXBO] :: burning, flaming, glowing, fiery; shining, brilliant; eager, ardent, passionate; 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; @@ -5513,22 +5513,22 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; 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; 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; + 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; arenarium_N_N = mkN "arenarium" ; -- [XXXES] :: sand-pit; arenarius_A = mkA "arenarius" "arenaria" "arenarium" ; -- [DXXES] :: of/pertaining to sand; or to the arena/amphitheater; [~ lapis => sandstone]; arenarius_M_N = mkN "arenarius" ; -- [DXXES] :: combatant in the arena, gladiator; teacher of mathematics (figures in sand); - arenatio_F_N = mkN "arenatio" "arenationis " feminine ; -- [XTXES] :: sanding, plastering with sand; plastering, cementing; + arenatio_F_N = mkN "arenatio" "arenationis" feminine ; -- [XTXES] :: sanding, plastering with sand; plastering, cementing; arenatum_N_N = mkN "arenatum" ; -- [XTXFS] :: sand mortar; arenatus_A = mkA "arenatus" "arenata" "arenatum" ; -- [XTXFS] :: sanded, covered/mixed with sand; arenga_F_N = mkN "arenga" ; -- [FXXFY] :: meeting; assembly; @@ -5540,17 +5540,17 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat arenula_F_N = mkN "arenula" ; -- [XXXNS] :: fine sand; a grain of sand; 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); + 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?; - argema_N_N = mkN "argema" "argematis " neuter ; -- [XBXNS] :: small ulcer in the eye; - argemon_N_N = mkN "argemon" "argemi " neuter ; -- [XAXNO] :: plant (Lappa canaria); small white spots (pl.) on the cornea of the eye; - argemone_F_N = mkN "argemone" "argemones " feminine ; -- [XAXNO] :: wind-rose plant (Papaver argemone); (inguinalis L+S); + argema_N_N = mkN "argema" "argematis" neuter ; -- [XBXNS] :: small ulcer in the eye; + argemon_N_N = mkN "argemon" "argemi" neuter ; -- [XAXNO] :: plant (Lappa canaria); small white spots (pl.) on the cornea of the eye; + argemone_F_N = mkN "argemone" "argemones" feminine ; -- [XAXNO] :: wind-rose plant (Papaver argemone); (inguinalis L+S); argemonia_F_N = mkN "argemonia" ; -- [XAXFO] :: wind-rose plant (Papaver argemone); (inguinalis L+S); - argemonion_N_N = mkN "argemonion" "argemonii " neuter ; -- [XAXNO] :: plant (prob. Aster amellus); - argennon_N_N = mkN "argennon" "argenni " neuter ; -- [DAXFS] :: brilliant white silver; + argemonion_N_N = mkN "argemonion" "argemonii" neuter ; -- [XAXNO] :: plant (prob. Aster amellus); + argennon_N_N = mkN "argennon" "argenni" neuter ; -- [DAXFS] :: brilliant white silver; argentaria_F_N = mkN "argentaria" ; -- [XXXCO] :: bank; banking-house, banking business; silver-mine; argentarium_N_N = mkN "argentarium" ; -- [XXXFO] :: silver-chest; store/box/vault for silver; argentarius_A = mkA "argentarius" "argentaria" "argentarium" ; -- [XXXCO] :: pertaining to silver or money, silver-; monetary, financial; banker's, banking-; @@ -5569,22 +5569,22 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat argillosus_A = mkA "argillosus" "argillosa" "argillosum" ; -- [XXXEO] :: full of/abounding in clay, clayey; argimonia_F_N = mkN "argimonia" ; -- [XAXNO] :: wind-rose plant (Papaver argemone); argitis_A = mkA "argitis" "argitidis"; -- [XAXEO] :: kind of white grapes; - argitis_F_N = mkN "argitis" "argitidis " feminine ; -- [XAXES] :: kind of vine with clusters of white grapes; + argitis_F_N = mkN "argitis" "argitidis" feminine ; -- [XAXES] :: kind of vine with clusters of white grapes; argumentabilis_A = mkA "argumentabilis" "argumentabilis" "argumentabile" ; -- [DSXES] :: that may be proved; argumentalis_A = mkA "argumentalis" "argumentalis" "argumentale" ; -- [DSXES] :: containing proof; argumentaliter_Adv = mkAdv "argumentaliter" ; -- [XGXFO] :: as proof; by way of proof; - argumentatio_F_N = mkN "argumentatio" "argumentationis " feminine ; -- [XGXCO] :: arguing, presentation of arguments; line of argument, particular proof; + argumentatio_F_N = mkN "argumentatio" "argumentationis" feminine ; -- [XGXCO] :: arguing, presentation of arguments; line of argument, particular proof; argumentativus_A = mkA "argumentativus" "argumentativa" "argumentativum" ; -- [ESXDX] :: argumentative; worthy of argument/discussion, sets out to prove something; - argumentator_M_N = mkN "argumentator" "argumentatoris " masculine ; -- [DSXFS] :: he who brings forward/cites arguments/reasons/proofs, arguer, disputant; - argumentatrix_F_N = mkN "argumentatrix" "argumentatricis " feminine ; -- [DSXFS] :: she who brings forward/cites arguments/reasons/proofs, arguer, disputant; + argumentator_M_N = mkN "argumentator" "argumentatoris" masculine ; -- [DSXFS] :: he who brings forward/cites arguments/reasons/proofs, arguer, disputant; + argumentatrix_F_N = mkN "argumentatrix" "argumentatricis" feminine ; -- [DSXFS] :: she who brings forward/cites arguments/reasons/proofs, arguer, disputant; 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; + 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); - argutatrix_F_N = mkN "argutatrix" "argutatricis " feminine ; -- [XXXFS] :: garrulous/talkative woman; + argutatrix_F_N = mkN "argutatrix" "argutatricis" feminine ; -- [XXXFS] :: garrulous/talkative woman; argute_Adv =mkAdv "argute" "argutius" "argutissime" ; -- [XXXCO] :: shrewdly, cleverly, artfully; argutia_F_N = mkN "argutia" ; -- [XXXBO] :: clever use of words (pl.), verbal trickery, sophistry; wit, jesting; refinement; argutiola_F_N = mkN "argutiola" ; -- [XXXEO] :: sophistry, verbal quibble; @@ -5592,55 +5592,55 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); 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); + 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; - argyritis_F_N = mkN "argyritis" "argyritidis " feminine ; -- [XXXNO] :: kind of litharge; (lead oxide/PbO, formed when air hits melted lead refining); + argyraspis_M_N = mkN "argyraspis" "argyraspidis" masculine ; -- [BWHEO] :: corps (pl.) in army of Alexander and successors, Silver Shields; + argyritis_F_N = mkN "argyritis" "argyritidis" feminine ; -- [XXXNO] :: kind of litharge; (lead oxide/PbO, formed when air hits melted lead refining); argyrocorinthus_A = mkA "argyrocorinthus" "argyrocorintha" "argyrocorinthum" ; -- [XTXIO] :: of the silver colored, Corinthian bronze; - argyrodamas_M_N = mkN "argyrodamas" "argyrodamantis " masculine ; -- [XXXNO] :: silver-colored stone (similar to diamond L+S); - argyros_F_N = mkN "argyros" "argyri " feminine ; -- [DAXFS] :: plant (mercurialis); + argyrodamas_M_N = mkN "argyrodamas" "argyrodamantis" masculine ; -- [XXXNO] :: silver-colored stone (similar to diamond L+S); + argyros_F_N = mkN "argyros" "argyri" feminine ; -- [DAXFS] :: plant (mercurialis); arhythmatus_A = mkA "arhythmatus" "arhythmata" "arhythmatum" ; -- [DXXFS] :: of unequal measure; inharmonious; arhythmus_A = mkA "arhythmus" "arhythma" "arhythmum" ; -- [DXXFS] :: of unequal measure; inharmonious; aria_F_N = mkN "aria" ; -- [XXXIO] :: open space; park, playground; plot; threshing floor; courtyard; site; bald spot; - arianis_F_N = mkN "arianis" "arianidis " feminine ; -- [XAPNS] :: plant growing wild in Ariana (western Persia); + arianis_F_N = mkN "arianis" "arianidis" feminine ; -- [XAPNS] :: plant growing wild in Ariana (western Persia); aricolor_V = mkV "aricolari" ; -- [XEXCO] :: speak by divine inspiration/with second sight, prophesy, divine; (facetious?); arida_F_N = mkN "arida" ; -- [EXXEE] :: dry land; dry place; dry surface; dryness; aride_Adv = mkAdv "aride" ; -- [XXXFO] :: dryly, austerely, without embellishment; - ariditas_F_N = mkN "ariditas" "ariditatis " feminine ; -- [XXXEO] :: dryness; drought; scanty food; anything (pl.) dry/withered/parched; + 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; 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; + 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; - arietatio_F_N = mkN "arietatio" "arietationis " feminine ; -- [XXXFO] :: collision; butting like a ram; + arietatio_F_N = mkN "arietatio" "arietationis" feminine ; -- [XXXFO] :: collision; butting like a ram; arietillus_A = mkA "arietillus" "arietilla" "arietillum" ; -- [XAXFO] :: like a ram, shameless; a variety of chick-pea; arietinus_A = mkA "arietinus" "arietina" "arietinum" ; -- [XAXDO] :: of/from a ram, ram's; a variety of chick-pea; arieto_V = mkV "arietare" ; -- [XXXCO] :: butt like a ram, batter/buffet, harass; strike violently; collide; stumble/trip; arificus_A = mkA "arificus" "arifica" "arificum" ; -- [DXXFS] :: drying, making dry; - arilator_M_N = mkN "arilator" "arilatoris " masculine ; -- [XXXES] :: broker, dealer; huckster, haggler, bargainer; - arillator_M_N = mkN "arillator" "arillatoris " masculine ; -- [XXXEO] :: broker, dealer; huckster, haggler, bargainer; + arilator_M_N = mkN "arilator" "arilatoris" masculine ; -- [XXXES] :: broker, dealer; huckster, haggler, bargainer; + arillator_M_N = mkN "arillator" "arillatoris" masculine ; -- [XXXEO] :: broker, dealer; huckster, haggler, bargainer; arinca_F_N = mkN "arinca" ; -- [XAXNO] :: kind of grain (olyra - which resembles spelt L+S); ariola_F_N = mkN "ariola" ; -- [XXXIO] :: open courtyard; garden plot, seed bed; ariolo_V = mkV "ariolare" ; -- [EXXCW] :: divine; foretell, prophesy; use divination; ariolus_M_N = mkN "ariolus" ; -- [EXXCW] :: diviner; seer; - aris_F_N = mkN "aris" "aridis " feminine ; -- [XAXNO] :: plant resembling arum; dragon-root, green dragon (L+S); + aris_F_N = mkN "aris" "aridis" feminine ; -- [XAXNO] :: plant resembling arum; dragon-root, green dragon (L+S); arista_F_N = mkN "arista" ; -- [XAXCO] :: awn, beard of an ear of grain; ear of grain; grain crop; harvest; aristatus_A = mkA "aristatus" "aristata" "aristatum" ; -- [XAXFO] :: having awn or beard (of ear of grain); - ariste_F_N = mkN "ariste" "aristes " feminine ; -- [XXXNS] :: precious stone (encardia/unknown stone with figure of a heart); - aristereon_F_N = mkN "aristereon" "aristereonis " feminine ; -- [XAXNO] :: variety of vervain; + ariste_F_N = mkN "ariste" "aristes" feminine ; -- [XXXNS] :: precious stone (encardia/unknown stone with figure of a heart); + aristereon_F_N = mkN "aristereon" "aristereonis" feminine ; -- [XAXNO] :: variety of vervain; aristifer_A = mkA "aristifer" "aristifera" "aristiferum" ; -- [DAXES] :: bearing ears of grain, ear-bearing; epithet of Ceres as goddess of grain; aristiger_A = mkA "aristiger" "aristigera" "aristigerum" ; -- [DAXES] :: bearing ears of grain, ear-bearing; epithet of Ceres as goddess of grain; - aristis_F_N = mkN "aristis" "aristidis " feminine ; -- [XAXNO] :: vegetable; green vegetable; vegetables (usu. pl.), pot-herbs; + aristis_F_N = mkN "aristis" "aristidis" feminine ; -- [XAXNO] :: vegetable; green vegetable; vegetables (usu. pl.), pot-herbs; aristolochia_F_N = mkN "aristolochia" ; -- [XAXDO] :: genus of medicinal plant useful in childbirth; aristolchia, birthwort; aristolocia_F_N = mkN "aristolocia" ; -- [XAXDO] :: genus of medicinal plant useful in childbirth; aristolchia, birthwort; aristosus_A = mkA "aristosus" "aristosa" "aristosum" ; -- [XAXFS] :: covered with beards/awns; arithmetica_F_N = mkN "arithmetica" ; -- [XSXEO] :: arithmetic, the science of arithmetic; - arithmetice_F_N = mkN "arithmetice" "arithmetices " feminine ; -- [XSXEO] :: arithmetic, the science of arithmetic; + arithmetice_F_N = mkN "arithmetice" "arithmetices" feminine ; -- [XSXEO] :: arithmetic, the science of arithmetic; arithmeticum_N_N = mkN "arithmeticum" ; -- [XSXEO] :: arithmetic/the science of arithmetic (pl.); arithmeticus_A = mkA "arithmeticus" "arithmetica" "arithmeticum" ; -- [XSXEO] :: arithmetical; - aritudo_F_N = mkN "aritudo" "aritudinis " feminine ; -- [XXXDO] :: drought; dryness; + aritudo_F_N = mkN "aritudo" "aritudinis" feminine ; -- [XXXDO] :: drought; dryness; armamaxa_F_N = mkN "armamaxa" ; -- [XXPFO] :: kind of covered wagon used by the Persians; armamentarium_N_N = mkN "armamentarium" ; -- [XWXCO] :: arsenal, armory; dockyard; storehouse for military equipment; armamentarius_A = mkA "armamentarius" "armamentaria" "armamentarium" ; -- [XWXIO] :: of/concerned with armaments or military equipment; @@ -5649,7 +5649,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat armarium_N_N = mkN "armarium" ; -- [FXXEK] :: cupboard; armatura_F_N = mkN "armatura" ; -- [XWXCO] :: equipment, armor; troop (of gladiators); [levis ~ pedites => light infantry]; 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]; + 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; armeniacus_A = mkA "armeniacus" "armeniaca" "armeniacum" ; -- [GXXEK] :: apricot-colored; @@ -5662,8 +5662,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - armidoctor_M_N = mkN "armidoctor" "armidoctoris " masculine ; -- [XWXFO] :: teacher of the use of arms; + armicustos_M_N = mkN "armicustos" "armicustodis" masculine ; -- [XWXIO] :: armorer, keeper of arms; + armidoctor_M_N = mkN "armidoctor" "armidoctoris" masculine ; -- [XWXFO] :: teacher of the use of arms; armifer_A = mkA "armifer" "armifera" "armiferum" ; -- [XWXBO] :: bearing arms, armed; warlike, martial, of war/fighting; producing armed men; armiger_A = mkA "armiger" "armigera" "armigerum" ; -- [XWXCO] :: bearing arms, armed; warlike, martial, of war/fighting; producing armed men; armiger_M_N = mkN "armiger" ; -- [XWXCO] :: armor bearer; squire; [Iovis armiger => Jupiter's armor-bearer = the eagle]; @@ -5680,7 +5680,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat armonia_F_N = mkN "armonia" ; -- [FXXCO] :: harmony/concord; (between parts of body); melody, order of notes; coupling; armoniacus_A = mkA "armoniacus" "armoniaca" "armoniacum" ; -- [FSXEM] :: ammoniac; (sal ammoniac is ammonium chloride); armonica_F_N = mkN "armonica" ; -- [FDXEO] :: theory of music/harmony; - armonice_F_N = mkN "armonice" "armonices " feminine ; -- [FDXEO] :: theory of music/harmony; + armonice_F_N = mkN "armonice" "armonices" feminine ; -- [FDXEO] :: theory of music/harmony; armonicus_A = mkA "armonicus" "armonica" "armonicum" ; -- [XDXEO] :: relating/according to harmony/natural proportion; in unison (Souter); armoracea_F_N = mkN "armoracea" ; -- [XAXEO] :: wild radish; armoracia_F_N = mkN "armoracia" ; -- [XAXEO] :: wild radish; @@ -5688,32 +5688,32 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat armum_N_N = mkN "armum" ; -- [XWXAO] :: arms (pl.), weapons, armor, shield; close fighting weapons; equipment; force; armus_M_N = mkN "armus" ; -- [XAXCO] :: forequarter (of an animal), shoulder; upper arm; side, flank; shoulder cut meat; arna_F_N = mkN "arna" ; -- [DAXFS] :: lamb; - arnacis_F_N = mkN "arnacis" "arnacidis " feminine ; -- [XXXES] :: garment for maidens; coat of sheepskin; + arnacis_F_N = mkN "arnacis" "arnacidis" feminine ; -- [XXXES] :: garment for maidens; coat of sheepskin; arnoglossa_F_N = mkN "arnoglossa" ; -- [DAXES] :: plant, sheep's-tongue/plantain (Plantago major); arnus_M_N = mkN "arnus" ; -- [XAXFO] :: lamb; aro_V2 = mkV2 (mkV "arare") ; -- [XAXBO] :: plow, till, cultivate; produce by plowing, grow; furrow, wrinkle; - aroma_N_N = mkN "aroma" "aromatis " neuter ; -- [XXXEO] :: spice, aromatic substance; sweet odors (Bee); + aroma_N_N = mkN "aroma" "aromatis" neuter ; -- [XXXEO] :: spice, aromatic substance; sweet odors (Bee); aromatarius_M_N = mkN "aromatarius" ; -- [DXXFS] :: dealer in spices; aromaticum_N_N = mkN "aromaticum" ; -- [XXXIO] :: aromatic ointment; aromaticus_A = mkA "aromaticus" "aromatica" "aromaticum" ; -- [DXXFS] :: composed of spice(s); aromatic, fragrant; - aromatites_M_N = mkN "aromatites" "aromatitae " masculine ; -- [XXXNO] :: spiced/aromatic wine; aromatic stone/amber (smell + color of myrrh) (L+S); - aromatitis_F_N = mkN "aromatitis" "aromatitidis " feminine ; -- [XXXNO] :: aromatic stone, amber; + aromatites_M_N = mkN "aromatites" "aromatitae" masculine ; -- [XXXNO] :: spiced/aromatic wine; aromatic stone/amber (smell + color of myrrh) (L+S); + aromatitis_F_N = mkN "aromatitis" "aromatitidis" feminine ; -- [XXXNO] :: aromatic stone, amber; aromatizans_A = mkA "aromatizans" "aromatizantis"; -- [EXXEE] :: fragrant, aromatic; sweet smelling, smelling of spice; aromatizo_V = mkV "aromatizare" ; -- [DXXFS] :: smell of spice; make aromatic/fragrant/sweet smelling (Ecc); aromatopola_M_N = mkN "aromatopola" ; -- [GXXEK] :: hardware; aromatopolium_N_N = mkN "aromatopolium" ; -- [GXXEK] :: hardware store; - aron_N_N = mkN "aron" "ari " neuter ; -- [XAXNO] :: plants of genus arum; - aros_F_N = mkN "aros" "ari " feminine ; -- [XAXNO] :: plants of genus arum; - arpaston_N_N = mkN "arpaston" "arpasti " neuter ; -- [XBXIO] :: kind of eye-salve; + aron_N_N = mkN "aron" "ari" neuter ; -- [XAXNO] :: plants of genus arum; + aros_F_N = mkN "aros" "ari" feminine ; -- [XAXNO] :: plants of genus arum; + arpaston_N_N = mkN "arpaston" "arpasti" neuter ; -- [XBXIO] :: kind of eye-salve; arquatura_F_N = mkN "arquatura" ; -- [XTXEO] :: structure consisting of arches (pl.), arcade; arquatus_A = mkA "arquatus" "arquata" "arquatum" ; -- [XBXCO] :: |rainbow colored, jaundiced; [morbus ~ => jaundice/rainbow colored disease]; arquatus_M_N = mkN "arquatus" ; -- [XBXCO] :: one having jaundice/the rainbow colored disease; arquipotens_A = mkA "arquipotens" "arquipotentis"; -- [XEXFO] :: mighty with the bow (Apollo); arquitenens_A = mkA "arquitenens" "arquitenentis"; -- [XEXCO] :: carries/holding a bow (epithet of Apollo/Artimis), (constellation) the Archer; - arquitis_M_N = mkN "arquitis" "arquitis " masculine ; -- [XWXFS] :: bowmen (pl.), archers; - arquus_M_N = mkN "arquus" "arquus " masculine ; -- [XXXAO] :: bow, arc, coil, arch; rainbow; anything arched or curved; + arquitis_M_N = mkN "arquitis" "arquitis" masculine ; -- [XWXFS] :: bowmen (pl.), archers; + arquus_M_N = mkN "arquus" "arquus" masculine ; -- [XXXAO] :: bow, arc, coil, arch; rainbow; anything arched or curved; arra_F_N = mkN "arra" ; -- [XLXDO] :: token payment on account, earnest money, deposit, pledge; (also of love); - arrabo_F_N = mkN "arrabo" "arrabonis " feminine ; -- [XLXCO] :: token payment on account, earnest money, deposit, pledge; (also of love); + arrabo_F_N = mkN "arrabo" "arrabonis" feminine ; -- [XLXCO] :: token payment on account, earnest money, deposit, pledge; (also of love); arralis_A = mkA "arralis" "arralis" "arrale" ; -- [DLXFS] :: of a pledge/security; arramio_V = mkV "arramiare" ; -- [FLXFJ] :: arraign; indict, accuse; arrectarium_N_N = mkN "arrectarium" ; -- [XTXFO] :: vertical post, upright; @@ -5721,80 +5721,80 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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; arreptivus_A = mkA "arreptivus" "arreptiva" "arreptivum" ; -- [DXXFZ] :: seized/possessed (in mind), inspired; raving, delirious; (Bianchi); arresto_V = mkV "arrestare" ; -- [FLXEM] :: arrest; seize; arrha_F_N = mkN "arrha" ; -- [XLXES] :: deposit, down payment, earnest money; pledge; (of love); wedding gift (Ecc); - arrhabo_F_N = mkN "arrhabo" "arrhabonis " feminine ; -- [XLXES] :: deposit, down payment, earnest money; pledge; (of love); wedding gift (Ecc); + arrhabo_F_N = mkN "arrhabo" "arrhabonis" feminine ; -- [XLXES] :: deposit, down payment, earnest money; pledge; (of love); wedding gift (Ecc); arrhalis_A = mkA "arrhalis" "arrhalis" "arrhale" ; -- [DLXFS] :: of a pledge/security; arrhenicum_N_N = mkN "arrhenicum" ; -- [XXXNO] :: yellow arsenic, orpiment (arsenic trisulphide); 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; + 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 "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); + 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; - arrogatio_F_N = mkN "arrogatio" "arrogationis " feminine ; -- [XLXEO] :: act of adopting a adult as son homo sui juris (vs. in potestate parentis); - arrogator_M_N = mkN "arrogator" "arrogatoris " masculine ; -- [XLXEO] :: one who adopts a adult as son by arrogatio (homo sui juris); + arrogatio_F_N = mkN "arrogatio" "arrogationis" feminine ; -- [XLXEO] :: act of adopting a adult as son homo sui juris (vs. in potestate parentis); + arrogator_M_N = mkN "arrogator" "arrogatoris" masculine ; -- [XLXEO] :: one who adopts a adult as son by arrogatio (homo sui juris); arrogo_V2 = mkV2 (mkV "arrogare") ; -- [XXXCO] :: |adopt (an adult) as one's son (esp. at his instance); arroro_V = mkV "arrorare" ; -- [DXXFS] :: moisten, bedew; - arrosor_M_N = mkN "arrosor" "arrosoris " masculine ; -- [XXXFO] :: one who nibbles/gnaws at; + 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.); + 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); 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); + 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?); + arsenogonon_N_N = mkN "arsenogonon" "arsenogoni" neuter ; -- [XAXNO] :: plant (genus Mercurialis?); arsineum_N_N = mkN "arsineum" ; -- [XEXFO] :: kind of head-dress; (woman's L+S); - arsis_F_N = mkN "arsis" "arsis " feminine ; -- [XPXFO] :: metrical term indicating the raising of voice on an emphatic syllable; + arsis_F_N = mkN "arsis" "arsis" feminine ; -- [XPXFO] :: metrical term indicating the raising of voice on an emphatic syllable; artaba_F_N = mkN "artaba" ; -- [DXEFS] :: Egyptian dry measure (= 3.5 Roman modii); artaena_F_N = mkN "artaena" ; -- [XXXEO] :: ladle; vessel for taking up liquids (L+S); artatus_A = mkA "artatus" "artata" "artatum" ; -- [XXXES] :: contracted into a small space; narrow, close; short (time); arte_Adv =mkAdv "arte" "artius" "artissime" ; -- [XXXBO] :: closely/tightly (bound/filled/holding); briefly, in a confined space, compactly; artemisia_F_N = mkN "artemisia" ; -- [XAXEO] :: species of Artemisia, wormwood, mugwort; similar plants, ambrosia, botrys; - artemon_M_N = mkN "artemon" "artemonis " masculine ; -- [XWXEO] :: main block of a tackle; jib/foresail; top-sail (L+S); + artemon_M_N = mkN "artemon" "artemonis" masculine ; -- [XWXEO] :: main block of a tackle; jib/foresail; top-sail (L+S); arteria_F_N = mkN "arteria" ; -- [XBXCO] :: windpipe, trachea, breathing tubes/passages; artery; ureter/other ducts; - arteriace_F_N = mkN "arteriace" "arteriaces " feminine ; -- [XBXDO] :: medicine for the air passages/windpipe/trachea/bronchi; + arteriace_F_N = mkN "arteriace" "arteriaces" feminine ; -- [XBXDO] :: medicine for the air passages/windpipe/trachea/bronchi; arteriacos_A = mkA "arteriacos" "arteriace" "arteriacon" ; -- [XBXDO] :: of/affecting the air passages/windpipe; arteriacus_A = mkA "arteriacus" "arteriaca" "arteriacum" ; -- [XBXEO] :: of/affecting the air passages/windpipe/trachea/bronchi; arteriotomia_F_N = mkN "arteriotomia" ; -- [DBXFS] :: opening/incision in an artery/windpipe; tracheotomy (Whitaker); arteriotonia_F_N = mkN "arteriotonia" ; -- [GBXEK] :: arterial tension; arterium_N_N = mkN "arterium" ; -- [XBXCO] :: windpipe, trachea, breathing tubes/passages; artery; ureter/other ducts; arthriticus_A = mkA "arthriticus" "arthritica" "arthriticum" ; -- [XBXEO] :: gouty; arthritic; affected with rheumatism; - arthritis_F_N = mkN "arthritis" "arthritidis " feminine ; -- [XBXES] :: arthritis; gout; lameness in the joints; - arthrosis_F_N = mkN "arthrosis" "arthrosis " feminine ; -- [GBXEK] :: osteoarthritis; + arthritis_F_N = mkN "arthritis" "arthritidis" feminine ; -- [XBXES] :: arthritis; gout; lameness in the joints; + arthrosis_F_N = mkN "arthrosis" "arthrosis" feminine ; -- [GBXEK] :: osteoarthritis; articlus_M_N = mkN "articlus" ; -- [XXXAO] :: joint; portion of limb/finger between joints; part; (critical) moment; crisis; articulamentum_N_N = mkN "articulamentum" ; -- [XBXEO] :: joint of the body; articularis_A = mkA "articularis" "articularis" "articulare" ; -- [XBXEO] :: of/affecting the joints; arthritis, rheumatism; articularius_A = mkA "articularius" "articularia" "articularium" ; -- [XBXFO] :: of/affecting the joints; arthritis, rheumatism; articulate_Adv = mkAdv "articulate" ; -- [XXXFO] :: distinctly; articulatim_Adv = mkAdv "articulatim" ; -- [XXXCO] :: limb-by-limb, limb-from-limb; syllable-by-syllable; point-by-point, in detail; - articulatio_F_N = mkN "articulatio" "articulationis " feminine ; -- [XAXNO] :: jointed structure, division into joints; disease of the joints of vines; + articulatio_F_N = mkN "articulatio" "articulationis" feminine ; -- [XAXNO] :: jointed structure, division into joints; disease of the joints of vines; articulatus_A = mkA "articulatus" "articulata" "articulatum" ; -- [DXXES] :: distinct; (furnished with joints); articulo_V2 = mkV2 (mkV "articulare") ; -- [XXXEO] :: divide into distinct parts, articulate; articulosus_A = mkA "articulosus" "articulosa" "articulosum" ; -- [XXXEO] :: full of joints, jointed; subdivided; articulus_M_N = mkN "articulus" ; -- [EXXER] :: |point of time; (Vulgate); artifex_A = mkA "artifex" "artificis"; -- [XXXBO] :: skilled, artistic; expert, practiced; cunning, artful; creative, productive; - artifex_F_N = mkN "artifex" "artificis " feminine ; -- [XXXAO] :: artist, actor; craftsman; master of an art; author, maker; mastermind, schemer; - artifex_M_N = mkN "artifex" "artificis " masculine ; -- [XXXAO] :: artist, actor; craftsman; master of an art; author, maker; mastermind, schemer; - artificiale_N_N = mkN "artificiale" "artificialis " neuter ; -- [XTXEO] :: technicalities (pl.); things conformable to the rules of the art; + artifex_F_N = mkN "artifex" "artificis" feminine ; -- [XXXAO] :: artist, actor; craftsman; master of an art; author, maker; mastermind, schemer; + artifex_M_N = mkN "artifex" "artificis" masculine ; -- [XXXAO] :: artist, actor; craftsman; master of an art; author, maker; mastermind, schemer; + artificiale_N_N = mkN "artificiale" "artificialis" neuter ; -- [XTXEO] :: technicalities (pl.); things conformable to the rules of the art; artificialis_A = mkA "artificialis" "artificialis" "artificiale" ; -- [XXXEO] :: artificial; furnished/contrived by art; devised by speaker (based on deduction); artificialiter_Adv = mkAdv "artificialiter" ; -- [XTXFO] :: with trained skill, scientifically; 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; + artificiositas_F_N = mkN "artificiositas" "artificiositatis" feminine ; -- [GXXEK] :: art, manner of that made with art; 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; @@ -5807,83 +5807,83 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; artopta_M_N = mkN "artopta" ; -- [DXXFS] :: baker; artopticius_A = mkA "artopticius" "artopticia" "artopticium" ; -- [XXXNO] :: baked in a pan/tin (bread); artro_V = mkV "artrare" ; -- [XAXNO] :: plow in young grain to improve the yield; artuatim_Adv = mkAdv "artuatim" ; -- [DXXFS] :: limb-by-limb; limb-from-limb; artuatus_A = mkA "artuatus" "artuata" "artuatum" ; -- [DXXFS] :: torn in/to pieces; - 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; + 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; 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; + 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; arum_N_N = mkN "arum" ; -- [XAXEO] :: plants of genus arum; aruncus_M_N = mkN "aruncus" ; -- [XAXNO] :: goat's beard; arundinetum_N_N = mkN "arundinetum" ; -- [FAXCE] :: reed-bed; thicket/jungle/growth of reeds/rushes (L+S); stubble (Vulgate); arundineus_A = mkA "arundineus" "arundinea" "arundineum" ; -- [XAXCO] :: of reeds; reedy; made of a reed; consisting of reeds; - arundo_F_N = mkN "arundo" "arundinis " feminine ; -- [XXXCO] :: reed; fishing rod; arrowshaft; arrow; pen; shepherd's pipe; + arundo_F_N = mkN "arundo" "arundinis" feminine ; -- [XXXCO] :: reed; fishing rod; arrowshaft; arrow; pen; shepherd's pipe; arura_F_N = mkN "arura" ; -- [DAXFS] :: field, grain-field; - aruspex_M_N = mkN "aruspex" "aruspicis " masculine ; -- [XXXCO] :: soothsayer, diviner, inspector of entrails of victims; prophet; + aruspex_M_N = mkN "aruspex" "aruspicis" masculine ; -- [XXXCO] :: soothsayer, diviner, inspector of entrails of victims; prophet; 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]; + 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; + arvix_F_N = mkN "arvix" "arvigis" feminine ; -- [XEXFS] :: ram for offering/sacrifice; arvum_N_N = mkN "arvum" ; -- [XBXFD] :: |female external genitalia (rude); arvus_A = mkA "arvus" "arva" "arvum" ; -- [XAXEO] :: arable (land); cultivated, plowed; - arx_F_N = mkN "arx" "arcis " feminine ; -- [XWXAO] :: citadel, stronghold, city; height, hilltop; Capitoline hill; defense, refuge; + arx_F_N = mkN "arx" "arcis" feminine ; -- [XWXAO] :: citadel, stronghold, city; height, hilltop; Capitoline hill; defense, refuge; arytaena_F_N = mkN "arytaena" ; -- [XXXEO] :: ladle; vessel for taking up liquids (L+S); - as_M_N = mkN "as" "assis " masculine ; -- [XLXAO] :: penny, copper coin; a pound; one, whole, unit; circular flap/valve; round slice; + as_M_N = mkN "as" "assis" masculine ; -- [XLXAO] :: penny, copper coin; a pound; one, whole, unit; circular flap/valve; round slice; asa_F_N = mkN "asa" ; -- [XXXEO] :: altar, structure for sacrifice, pyre; sanctuary; home; refuge, shelter; asarotos_A = mkA "asarotos" "asarotos" "asaroton" ; -- [XXXEO] :: unswept; paved in mosaic to imitate refuse from the table (of a room); asarotum_N_N = mkN "asarotum" ; -- [XXXFS] :: floor laid/paved in mosaic; (imitating refuse from the table OLD); asarotus_A = mkA "asarotus" "asarota" "asarotum" ; -- [XXXFS] :: of/pertaining to mosaic; asarum_N_N = mkN "asarum" ; -- [XAXEO] :: asarabacca or hazelwort (Asarum europeaum); wild-spikenard (L+S); - asbestinon_N_N = mkN "asbestinon" "asbestini " neuter ; -- [XXXFO] :: noncombustible material/cloth; (asbestos?); - 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); + asbestinon_N_N = mkN "asbestinon" "asbestini" neuter ; -- [XXXFO] :: noncombustible material/cloth; (asbestos?); + 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); + 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; + 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; + ascesis_F_N = mkN "ascesis" "ascesis" feminine ; -- [EXXEE] :: 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 "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; + 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; + ascitus_M_N = mkN "ascitus" "ascitus" masculine ; -- [XXXFS] :: acceptance, reception; ascius_A = mkA "ascius" "ascia" "ascium" ; -- [XSXNO] :: shadowless; (said of countries near the equator L+S); - asclepias_F_N = mkN "asclepias" "asclepiadis " feminine ; -- [XAXNO] :: swallow-wort?; (Vincetoxicum officinale); - asclepion_N_N = mkN "asclepion" "asclepii " neuter ; -- [XAXNS] :: medicinal herb (named after Aesculapius); + asclepias_F_N = mkN "asclepias" "asclepiadis" feminine ; -- [XAXNO] :: swallow-wort?; (Vincetoxicum officinale); + 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; + 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; + 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; - ascriptor_M_N = mkN "ascriptor" "ascriptoris " masculine ; -- [XXXEO] :: seconder, supporter, countersigner, one adding name to document as approving; - ascyroides_N_N = mkN "ascyroides" "ascyrodis " neuter ; -- [XAXNS] :: variety of St John's wort; (declension uncertain, even in the Greek); - ascyron_N_N = mkN "ascyron" "ascyri " neuter ; -- [XAXNO] :: St John's wort (Hypericum perforatum); + ascriptor_M_N = mkN "ascriptor" "ascriptoris" masculine ; -- [XXXEO] :: seconder, supporter, countersigner, one adding name to document as approving; + ascyroides_N_N = mkN "ascyroides" "ascyrodis" neuter ; -- [XAXNS] :: variety of St John's wort; (declension uncertain, even in the Greek); + ascyron_N_N = mkN "ascyron" "ascyri" neuter ; -- [XAXNO] :: St John's wort (Hypericum perforatum); asella_F_N = mkN "asella" ; -- [XAXES] :: small/little she-ass; asellulus_F_N = mkN "asellulus" ; -- [DAXFS] :: small/little young ass; asellus_M_N = mkN "asellus" ; -- [XAXCO] :: (small/young) ass, donkey; fish of the cod family, hake?; Asses/stars in Cancer; @@ -5899,123 +5899,123 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat asinus_A = mkA "asinus" "asina" "asinum" ; -- [XAXCO] :: of/connected with an ass/donkey, ass's; stupid, asinine; asinus_M_N = mkN "asinus" ; -- [XAXCO] :: ass, donkey; blockhead, fool, dolt; asinusca_F_N = mkN "asinusca" ; -- [XAXNO] :: inferior type of grape; - asio_M_N = mkN "asio" "asionis " masculine ; -- [XAXNS] :: little horned owl; + asio_M_N = mkN "asio" "asionis" masculine ; -- [XAXNS] :: little horned owl; asomatus_A = mkA "asomatus" "asomata" "asomatum" ; -- [DXXFS] :: incorporeal; asotia_F_N = mkN "asotia" ; -- [XXXFO] :: dissipation, profligacy. dissolution; sensuality; asotus_A = mkA "asotus" "asota" "asotum" ; -- [XXXDO] :: debauched, dissipated, profligate; asotus_M_N = mkN "asotus" ; -- [XXXEO] :: debaucher, dissolute man; - aspalathos_M_N = mkN "aspalathos" "aspalathi " masculine ; -- [XAXEO] :: thorny shrub from which fragrant oil was obtained; camel thorn (Vulgate); + aspalathos_M_N = mkN "aspalathos" "aspalathi" masculine ; -- [XAXEO] :: thorny shrub from which fragrant oil was obtained; camel thorn (Vulgate); aspalathus_M_N = mkN "aspalathus" ; -- [XAXEO] :: thorny shrub from which fragrant oil was obtained; camel thorn (Vulgate); aspalatus_M_N = mkN "aspalatus" ; -- [EAXFW] :: thorny shrub from which fragrant oil was obtained; camel thorn (Vulgate); - aspalax_M_N = mkN "aspalax" "aspalacis " masculine ; -- [XAXNS] :: herb (unknown); + aspalax_M_N = mkN "aspalax" "aspalacis" masculine ; -- [XAXNS] :: herb (unknown); 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; - aspargo_V2 = mkV2 (mkV "aspargere" "aspargo" "asparsi" "asparsus ") ; -- [XXXAO] :: sprinkle/strew on, splatter, splash; defile, stain; cast (slur); inflict (harm); + aspargo_F_N = mkN "aspargo" "asparginis" feminine ; -- [XXXBO] :: spray, sprinkling/scattering; moisture in form of drops; water damage; staining; + 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; + 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; + 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; + aspendios_M_N = mkN "aspendios" "aspendii" masculine ; -- [XAXNS] :: kind of vine; 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; + 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; aspernamentum_N_N = mkN "aspernamentum" ; -- [DXXFS] :: despising, loathing, hatred; aspernanter_Adv =mkAdv "aspernanter" "aspernantius" "aspernantissime" ; -- [DXXES] :: with contempt, contemptuously; - aspernatio_F_N = mkN "aspernatio" "aspernationis " feminine ; -- [XXXEO] :: contempt; spurning; rejection of; aversion to; - aspernator_M_N = mkN "aspernator" "aspernatoris " masculine ; -- [DXXFS] :: despiser, hater; scorner; + aspernatio_F_N = mkN "aspernatio" "aspernationis" feminine ; -- [XXXEO] :: contempt; spurning; rejection of; aversion to; + aspernator_M_N = mkN "aspernator" "aspernatoris" masculine ; -- [DXXFS] :: despiser, hater; scorner; aspernor_V = mkV "aspernari" ; -- [XXXAO] :: despise, scorn, disdain; spurn, push away, repel, reject; refuse, decline; aspero_V2 = mkV2 (mkV "asperare") ; -- [XXXBO] :: roughen; sharpen, point, tip; enrage, make fierce/violent; grate on; aggravate; - aspersio_F_N = mkN "aspersio" "aspersionis " feminine ; -- [XXXEO] :: sprinkling on/upon; sprinkle; - aspersus_M_N = mkN "aspersus" "aspersus " masculine ; -- [XXXNO] :: sprinkling on/upon; sprinkle; - asperugo_F_N = mkN "asperugo" "asperuginis " feminine ; -- [XAXNO] :: plant (with prickly leaves); kind of bur; + aspersio_F_N = mkN "aspersio" "aspersionis" feminine ; -- [XXXEO] :: sprinkling on/upon; sprinkle; + aspersus_M_N = mkN "aspersus" "aspersus" masculine ; -- [XXXNO] :: sprinkling on/upon; sprinkle; + asperugo_F_N = mkN "asperugo" "asperuginis" feminine ; -- [XAXNO] :: plant (with prickly leaves); kind of bur; asperum_N_N = mkN "asperum" ; -- [XXXCS] :: uneven/rough/harsh place/land; adversity, difficulties (esp. pl.); - asphaltion_N_N = mkN "asphaltion" "asphaltii " neuter ; -- [XAXNO] :: treacle clover (Psoralea bituminosa); + asphaltion_N_N = mkN "asphaltion" "asphaltii" neuter ; -- [XAXNO] :: treacle clover (Psoralea bituminosa); 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"; - aspirator_M_N = mkN "aspirator" "aspiratoris " masculine ; -- [EXXEN] :: inciter; inspirer; + 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"; + aspirator_M_N = mkN "aspirator" "aspiratoris" masculine ; -- [EXXEN] :: inciter; inspirer; 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; - 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); + aspis_F_N = mkN "aspis" "aspidis" feminine ; -- [EXAEW] :: 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); asplenum_N_N = mkN "asplenum" ; -- [XAXNS] :: fern (Ceterach officinarum?); miltwort, spleenwort (L+S); - asportatio_F_N = mkN "asportatio" "asportationis " feminine ; -- [XXXFO] :: removal, carrying away; + asportatio_F_N = mkN "asportatio" "asportationis" feminine ; -- [XXXFO] :: removal, carrying away; asporto_V2 = mkV2 (mkV "asportare") ; -- [XXXCO] :: carry/take away, remove; aspratilis_A = mkA "aspratilis" "aspratilis" "aspratile" ; -- [XXXNS] :: rough (of a stone), with rough scales; - aspredo_F_N = mkN "aspredo" "aspredinis " feminine ; -- [XXXFS] :: roughness; + aspredo_F_N = mkN "aspredo" "aspredinis" feminine ; -- [XXXFS] :: roughness; 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); + 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; assatura_F_N = mkN "assatura" ; -- [DXXES] :: roasted meat; assecla_M_N = mkN "assecla" ; -- [XXXCO] :: follower; attendant, servant; hanger-on, sycophant, creature; - assectatio_F_N = mkN "assectatio" "assectationis " feminine ; -- [XXXEO] :: waiting on, (respectful) attendance; support (in canvassing); study, research; - assectator_M_N = mkN "assectator" "assectatoris " masculine ; -- [XXXCO] :: follower, companion, attendant; disciple; researcher, student, one who seeks; + assectatio_F_N = mkN "assectatio" "assectationis" feminine ; -- [XXXEO] :: waiting on, (respectful) attendance; support (in canvassing); study, research; + assectator_M_N = mkN "assectator" "assectatoris" masculine ; -- [XXXCO] :: follower, companion, attendant; disciple; researcher, student, one who seeks; assector_V = mkV "assectari" ; -- [XXXCO] :: accompany, attend, escort; support, be an adherent, follow; court (fame); assecue_Adv = mkAdv "assecue" ; -- [XXXFO] :: attentively, closely; assecula_M_N = mkN "assecula" ; -- [XXXCO] :: follower; attendant, servant; hanger-on, sycophant, creature; - assecuratio_F_N = mkN "assecuratio" "assecurationis " feminine ; -- [FXXFE] :: insurance; - assecutio_F_N = mkN "assecutio" "assecutionis " feminine ; -- [FXXEE] :: perception, comprehension, understanding; knowledge; - assecutor_M_N = mkN "assecutor" "assecutoris " masculine ; -- [DXXFS] :: attendant; - assedo_M_N = mkN "assedo" "assedonis " masculine ; -- [XLXES] :: assessor, counselor, one who sits by to give advice; + assecuratio_F_N = mkN "assecuratio" "assecurationis" feminine ; -- [FXXFE] :: insurance; + assecutio_F_N = mkN "assecutio" "assecutionis" feminine ; -- [FXXEE] :: perception, comprehension, understanding; knowledge; + assecutor_M_N = mkN "assecutor" "assecutoris" masculine ; -- [DXXFS] :: attendant; + 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; - assentatio_F_N = mkN "assentatio" "assentationis " feminine ; -- [XXXCO] :: assent, agreement; flattery, toadyism, flattering agreement/compliance; + 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; + assentatio_F_N = mkN "assentatio" "assentationis" feminine ; -- [XXXCO] :: assent, agreement; flattery, toadyism, flattering agreement/compliance; assentatiuncula_F_N = mkN "assentatiuncula" ; -- [XXXEO] :: piece of flattery; petty/trivial flattery; (L+S); - assentator_M_N = mkN "assentator" "assentatoris " masculine ; -- [XXXCO] :: yes-man, flatterer, toady; + 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); + 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; + 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; + 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 = mkV2 (mkV "asservire" "asservio" "asservivi" "asservitus ") Dat_Prep ; -- [XXXFO] :: devote/apply oneself to (w/DAT); aid, help, assist; + asservatio_F_N = mkN "asservatio" "asservationis" feminine ; -- [FXXFE] :: keeping, preservation; reservation; + 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); - assessor_M_N = mkN "assessor" "assessoris " masculine ; -- [XLXDO] :: assessor, counselor, one who sits by to give advice; + 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); + assessor_M_N = mkN "assessor" "assessoris" masculine ; -- [XLXDO] :: assessor, counselor, one who sits by to give advice; assessorium_N_N = mkN "assessorium" ; -- [XLXFO] :: title of a legal textbook (sg/pl.); assessorius_A = mkA "assessorius" "assessoria" "assessorium" ; -- [DLXFS] :: of/pertaining to an assessor; assessura_F_N = mkN "assessura" ; -- [XLXFO] :: assistance as a legal advisor; office of assessor, assessorship (L+S); - assessus_M_N = mkN "assessus" "assessus " masculine ; -- [XLXFO] :: sitting beside one (in court); - assestrix_F_N = mkN "assestrix" "assestricis " feminine ; -- [XLXFO] :: assessor (female), counselor, one who sits by to give advice; + assessus_M_N = mkN "assessus" "assessus" masculine ; -- [XLXFO] :: sitting beside one (in court); + assestrix_F_N = mkN "assestrix" "assestricis" feminine ; -- [XLXFO] :: assessor (female), counselor, one who sits by to give advice; asseveranter_Adv = mkAdv "asseveranter" ; -- [XXXEO] :: earnestly, emphatically; asseverate_Adv = mkAdv "asseverate" ; -- [XXXEO] :: earnestly, emphatically; - asseveratio_F_N = mkN "asseveratio" "asseverationis " feminine ; -- [XXXCO] :: affirmation, (confident/earnest) assertion; seriousness/earnestness, gravity; + 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; @@ -6024,19 +6024,19 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; 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; + 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); + 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 + 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; assimilis_A = mkA "assimilis" "assimilis" "assimile" ; -- [XXXCO] :: similar, like; close; closely resembling, very like; assimiliter_Adv = mkAdv "assimiliter" ; -- [XXXFO] :: similarly, in much the same manner/fashion; @@ -6044,20 +6044,20 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat assimilor_V = mkV "assimilari" ; -- [FXXDE] :: become like; be compared to; assimulanter_Adv = mkAdv "assimulanter" ; -- [XXXEO] :: similarly, analogically; assimulaticius_A = mkA "assimulaticius" "assimulaticia" "assimulaticium" ; -- [DLXES] :: imitated, counterfeit, not real; nominal, titular; - assimulatio_F_N = mkN "assimulatio" "assimulationis " feminine ; -- [XXXDO] :: likeness, similarity in form; comparison; deceit, pretense, feigning, pretending + assimulatio_F_N = mkN "assimulatio" "assimulationis" feminine ; -- [XXXDO] :: likeness, similarity in form; comparison; deceit, pretense, feigning, pretending assimulatus_A = mkA "assimulatus" "assimulata" "assimulatum" ; -- [XXXES] :: similar, like, made similar; imitated, feigned, pretended. dissembled; assimuliter_Adv = mkAdv "assimuliter" ; -- [XXXFS] :: similarly, in much the same manner/fashion; assimulo_V2 = mkV2 (mkV "assimulare") ; -- [XXXAO] :: make like; compare; counterfeit, simulate, imitate, pretend, feign, act a part; assipondium_N_N = mkN "assipondium" ; -- [XLXEO] :: sum or weight of one as (penny), a pound (as was originally a pound of copper); assiratum_N_N = mkN "assiratum" ; -- [XXXFS] :: drink composed of wine and blood; - assis_M_N = mkN "assis" "assis " masculine ; -- [XXXEO] :: plank, board; + 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; + 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; - associatio_F_N = mkN "associatio" "associationis " feminine ; -- [FXXEE] :: association; accompaniment; escort; + associatio_F_N = mkN "associatio" "associationis" feminine ; -- [FXXEE] :: association; accompaniment; escort; associo_V = mkV "associare" ; -- [XXXFO] :: join/attach (to), associate/work (with); unite with; attend upon; escort (Ecc); associus_A = mkA "associus" "associa" "associum" ; -- [DXXFS] :: associated with; assoleo_V = mkV "assolere" ; -- [XXXCO] :: be accustomed/in the habit of; be customary accompaniment, go with; be usual; @@ -6067,68 +6067,68 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; 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; + 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; assultim_Adv = mkAdv "assultim" ; -- [XXXNO] :: by leaps, by hops; by leaps and bounds; assulto_V = mkV "assultare" ; -- [XWXCO] :: jump/leap at/towards/upon; dash against; attack, assault, make an attack (on); - assultus_M_N = mkN "assultus" "assultus " masculine ; -- [XWXEO] :: attack, assault, charge; leap/leaping to/at/against; + assultus_M_N = mkN "assultus" "assultus" masculine ; -- [XWXEO] :: attack, assault, charge; leap/leaping to/at/against; assum_N_N = mkN "assum" ; -- [XXXEO] :: sudatorium (pl.), sweating-bath, sauna; - assum_V = mkV "adesse" "assum" "affui" "affuturus " ; -- Comment: [XXXAO] :: be near, be present, be in attendance, arrive, appear; aid (w/DAT); + assum_V = mkV "adesse" "assum" "affui" "affuturus" ; -- Comment: [XXXAO] :: be near, be present, be in attendance, arrive, appear; aid (w/DAT); 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); + 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; + 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 = 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); - astator_M_N = mkN "astator" "astatoris " masculine ; -- [XXXIO] :: aide, helper, assister; + astaphis_F_N = mkN "astaphis" "astaphidis" feminine ; -- [XAXNO] :: stavesacre (Delphinium staphisagria); + astator_M_N = mkN "astator" "astatoris" masculine ; -- [XXXIO] :: aide, helper, assister; astatus_A = mkA "astatus" "astata" "astatum" ; -- [XWXDO] :: armed with a spear/spears; astatus_M_N = mkN "astatus" ; -- [XWXCO] :: spearman; soldier in unit in front of Roman battle-formation; its centurion; - asteismos_M_N = mkN "asteismos" "asteismi " masculine ; -- [DGXES] :: more refined style of speaking, urbanity; - aster_M_N = mkN "aster" "asteris " masculine ; -- [XAXNO] :: plant (Aster amellus?); kind of Samian clay; star (= astrum), destiny (?); + asteismos_M_N = mkN "asteismos" "asteismi" masculine ; -- [DGXES] :: more refined style of speaking, urbanity; + aster_M_N = mkN "aster" "asteris" masculine ; -- [XAXNO] :: plant (Aster amellus?); kind of Samian clay; star (= astrum), destiny (?); astercum_N_N = mkN "astercum" ; -- [XAXNO] :: plant pellitory-of-the-wall; (in pure Latin urceolaris L+S); asteria_F_N = mkN "asteria" ; -- [XXXNO] :: precious stone, either asteriated (star) sapphire or cymophane (cats-eye)?; - asteriace_F_N = mkN "asteriace" "asteriaces " feminine ; -- [XBXES] :: simple medicine; - asterias_M_N = mkN "asterias" "asteriae " masculine ; -- [XAXNO] :: bird like heron; kind of heron (L+S); + asteriace_F_N = mkN "asteriace" "asteriaces" feminine ; -- [XBXES] :: simple medicine; + asterias_M_N = mkN "asterias" "asteriae" masculine ; -- [XAXNO] :: bird like heron; kind of heron (L+S); astericum_N_N = mkN "astericum" ; -- [XAXNS] :: plant pellitory-of-the-wall; (in pure Latin urceolaris L+S); - asterion_N_N = mkN "asterion" "asterii " neuter ; -- [XAXNO] :: venomous spider; + 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); + 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; + 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; asticus_A = mkA "asticus" "astica" "asticum" ; -- [XXXEO] :: of/located in a city, city, urban; - astipulatio_F_N = mkN "astipulatio" "astipulationis " feminine ; -- [XXXEO] :: confirmation, confirmatory statement; - astipulator_M_N = mkN "astipulator" "astipulatoris " masculine ; -- [XLXDO] :: associate in a stipulation; one who supports an opinion, adherent; - astipulatus_M_N = mkN "astipulatus" "astipulatus " masculine ; -- [XXXNO] :: assent, agreement in a command; + astipulatio_F_N = mkN "astipulatio" "astipulationis" feminine ; -- [XXXEO] :: confirmation, confirmatory statement; + astipulator_M_N = mkN "astipulator" "astipulatoris" masculine ; -- [XLXDO] :: associate in a stipulation; one who supports an opinion, adherent; + 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; + 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; + 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; astralis_A = mkA "astralis" "astralis" "astrale" ; -- [DSXFS] :: relating to the stars; revealed by the stars; astrangulo_V2 = mkV2 (mkV "astrangulare") ; -- [XXXFS] :: strangle; astrapaea_F_N = mkN "astrapaea" ; -- [XXXNO] :: precious stone; - astrapias_M_N = mkN "astrapias" "astrapiae " masculine ; -- [XXXNS] :: precious stone (black in color with gleams of light crossing the middle); + 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; 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; + 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); 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; @@ -6140,10 +6140,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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?); + 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?); astrolabium_N_N = mkN "astrolabium" ; -- [HSXEK] :: astrolabe; astrologia_F_N = mkN "astrologia" ; -- [XSXCO] :: astronomy, astrology, science/study of the heavenly bodies; book on astronomy; astrologus_M_N = mkN "astrologus" ; -- [XSXCO] :: astronomer, one who studies the heavens/predicts from the stars; astrologer; @@ -6154,28 +6154,28 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat astronomus_M_N = mkN "astronomus" ; -- [DSXCS] :: astronomer; astrologer (Bee); astrophysica_F_N = mkN "astrophysica" ; -- [HSXEK] :: astrophysics; astrosus_A = mkA "astrosus" "astrosa" "astrosum" ; -- [XXXIO] :: born under evil star, ill-starred; - 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; + 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; - astruo_V2 = mkV2 (mkV "astruere" "astruo" "astruxi" "astructus ") ; -- [XXXBO] :: build on/additional structure; heap/pile (on); add to/on, contribute, provide; + 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; - asturco_M_N = mkN "asturco" "asturconis " masculine ; -- [XAXFW] :: Nero's favorite horse; a horse from Asturia in Hispania Tarraconensis; - astus_M_N = mkN "astus" "astus " masculine ; -- [XXXCO] :: craft, cunning, guile; cunning procedure/method, trick, stratagem; + astur_M_N = mkN "astur" "asturis" masculine ; -- [DAXES] :: species of hawk; inhabitant of Asturia in Hispania Tarraconensis; + asturco_M_N = mkN "asturco" "asturconis" masculine ; -- [XAXFW] :: Nero's favorite horse; a horse from Asturia in Hispania Tarraconensis; + astus_M_N = mkN "astus" "astus" masculine ; -- [XXXCO] :: craft, cunning, guile; cunning procedure/method, trick, stratagem; 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; 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; + 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; asylum_N_N = mkN "asylum" ; -- [XXXCO] :: place of refuge, asylum, sanctuary; place for relaxation/recuperation, retreat; asymbolus_A = mkA "asymbolus" "asymbola" "asymbolum" ; -- [XXXEO] :: without paying a contribution, contributing nothing to entertainment, scot-free; asymptota_F_N = mkN "asymptota" ; -- [GXXEK] :: asymptote (math.); - asyndeton_N_N = mkN "asyndeton" "asyndeti " neuter ; -- [DGXFS] :: rhetorical omission of connecting particle; (pure Latin dissolutio); + 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 = 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; @@ -6194,7 +6194,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat atheismus_M_N = mkN "atheismus" ; -- [FEXEE] :: atheism; atheista_M_N = mkN "atheista" ; -- [GEXEK] :: atheistic; athenaeum_N_N = mkN "athenaeum" ; -- [FGXEE] :: school, atheneum; place of study; (athenaeum maius => university); - atheos_M_N = mkN "atheos" "athei " masculine ; -- [XEXES] :: atheist, one who does not believe in God; (as nickname); + atheos_M_N = mkN "atheos" "athei" masculine ; -- [XEXES] :: atheist, one who does not believe in God; (as nickname); athera_F_N = mkN "athera" ; -- [XBXNO] :: variety of gruel used in medicine; prepared from arinca/spelt (L+S); atheroma_F_N = mkN "atheroma" ; -- [XBXFO] :: tumor occurring on the head containing gruel-like matter; atheus_M_N = mkN "atheus" ; -- [XEXES] :: atheist, one who does not believe in God; (as nickname); @@ -6204,24 +6204,24 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat athletice_Adv = mkAdv "athletice" ; -- [XXXEO] :: athletically, like an athlete; athleticus_A = mkA "athleticus" "athletica" "athleticum" ; -- [XXXEO] :: athletic, sporty; of/proper for an athlete; [ars athletica => athletics]; athletismus_M_N = mkN "athletismus" ; -- [GDXEK] :: athletics; - athlon_N_N = mkN "athlon" "athli " neuter ; -- [XXXDS] :: labor/task/struggle, pains; athletic contest; the 12 points of celestial circle; + athlon_N_N = mkN "athlon" "athli" neuter ; -- [XXXDS] :: labor/task/struggle, pains; athletic contest; the 12 points of celestial circle; athlum_N_N = mkN "athlum" ; -- [XXXDS] :: labor/task/struggle, pains; athletic contest; the 12 points of celestial circle; - atizoe_F_N = mkN "atizoe" "atizoes " feminine ; -- [XXXNO] :: precious stone; (of silver luster L+S); - atlas_M_N = mkN "atlas" "atlantis " masculine ; -- [GXXEK] :: atlas (of geography); + atizoe_F_N = mkN "atizoe" "atizoes" feminine ; -- [XXXNO] :: precious stone; (of silver luster L+S); + atlas_M_N = mkN "atlas" "atlantis" masculine ; -- [GXXEK] :: atlas (of geography); atmosphaera_F_N = mkN "atmosphaera" ; -- [GXXEK] :: atmosphere; atmosphaericus_A = mkA "atmosphaericus" "atmosphaerica" "atmosphaericum" ; -- [GXXEK] :: atmospheric; atnatus_M_N = mkN "atnatus" ; -- [XXXCO] :: male blood relation (father's side); one born after father made his will; atocium_N_N = mkN "atocium" ; -- [FXXEK] :: contraceptive; atomicus_A = mkA "atomicus" "atomica" "atomicum" ; -- [HSXEK] :: atomic; atomismus_M_N = mkN "atomismus" ; -- [HXXEK] :: atomism; - atomos_F_N = mkN "atomos" "atomi " feminine ; -- [XXXCO] :: atom, ultimate component of matter, particle incapable of being divided; + atomos_F_N = mkN "atomos" "atomi" feminine ; -- [XXXCO] :: atom, ultimate component of matter, particle incapable of being divided; 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 = 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); + 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]; atratus_A = mkA "atratus" "atrata" "atratum" ; -- [XXXCO] :: darkened, blackened, dingy; clothed in black, in/wearing mourning; @@ -6229,15 +6229,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat atricapilla_F_N = mkN "atricapilla" ; -- [XXXFO] :: bird of black plumage (black-cap?); atricapillus_A = mkA "atricapillus" "atricapilla" "atricapillum" ; -- [XXXFS] :: black-haired; atricolor_A = mkA "atricolor" "atricoloris"; -- [XXXFO] :: black, dark colored; letters written in (black) ink (L+S); - atriensis_M_N = mkN "atriensis" "atriensis " masculine ; -- [XXXCO] :: steward; servant in charge of household administration, major-domo; house-slave; + atriensis_M_N = mkN "atriensis" "atriensis" masculine ; -- [XXXCO] :: steward; servant in charge of household administration, major-domo; house-slave; atriolum_N_N = mkN "atriolum" ; -- [XXXEO] :: small hall/ante-room; - atriplex_F_N = mkN "atriplex" "atriplicis " feminine ; -- [XAXFS] :: orach-vegetable; - atriplex_N_N = mkN "atriplex" "atriplicis " neuter ; -- [XAXNO] :: kitchen herb, orach; + atriplex_F_N = mkN "atriplex" "atriplicis" feminine ; -- [XAXFS] :: orach-vegetable; + 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; + atritas_F_N = mkN "atritas" "atritatis" feminine ; -- [BAXFO] :: blackness; 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; + 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; atrophia_F_N = mkN "atrophia" ; -- [DBXES] :: atrophy; wasting consumption; (pure Latin tabes); atrophus_A = mkA "atrophus" "atropha" "atrophum" ; -- [XBXNO] :: affected by lack of nutrition; state of atrophy; consumptive; @@ -6247,10 +6247,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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); + attagen_M_N = mkN "attagen" "attagenis" masculine ; -- [XAXDO] :: bird resembling partridge, francolin? hazel-hen/heath-cock (L+S); attagena_F_N = mkN "attagena" ; -- [XAXDO] :: bird resembling partridge, francolin?; attagus_M_N = mkN "attagus" ; -- [DAXFS] :: he-goat; attamen_Adv = mkAdv "attamen" ; -- [XXXCO] :: but yet, but however, nevertheless; @@ -6263,37 +6263,37 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat attegro_V2 = mkV2 (mkV "attegrare") ; -- [DEXFS] :: pour out wine in sacrifices; attelebus_M_N = mkN "attelebus" ; -- [XAXNO] :: kind of wingless locust; attemperate_Adv = mkAdv "attemperate" ; -- [XXXFO] :: opportunely, at a convenient moment; - attemperatio_F_N = mkN "attemperatio" "attemperationis " feminine ; -- [EXXFE] :: accommodation; adjusting, adjustment, fitting; + 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; + 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; + 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; 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); + attenuatio_F_N = mkN "attenuatio" "attenuationis" feminine ; -- [XXXEO] :: diminution, act of lessening, attenuation; plainness (of style); 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; + 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; + 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; + 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; + 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?; + 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; @@ -6306,27 +6306,27 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat attorno_V = mkV "attornare" ; -- [FLXFJ] :: attorn; attribute; ordain, decree; turn to; attorqueo_V2 = mkV2 (mkV "attorquere") ; -- [XXXFO] :: whirl at; hurl upwards; attorreo_V2 = mkV2 (mkV "attorrere") ; -- [XXXFS] :: bake, roast; - attractio_F_N = mkN "attractio" "attractionis " feminine ; -- [XXXFS] :: contraction, drawing together; + attractio_F_N = mkN "attractio" "attractionis" feminine ; -- [XXXFS] :: contraction, drawing together; 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; 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; + 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; + 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; + attritio_F_N = mkN "attritio" "attritionis" feminine ; -- [DXXES] :: rubbing/grinding against/on (something); friction, abrasion; 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; + 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; @@ -6336,51 +6336,51 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat au_Interj = ss "au" ; -- [XXXFS] :: oh! ow! oh dear! goodness gracious! (used by women to express consternation); aucella_F_N = mkN "aucella" ; -- [XAXES] :: little bird; auceo_V2 = mkV2 (mkV "aucere") ; -- [DXXFS] :: observe attentively; - auceps_M_N = mkN "auceps" "aucupis " masculine ; -- [XXXCO] :: bird-catcher, fowler; bird seller, poulterer; spy, eavesdropper; + auceps_M_N = mkN "auceps" "aucupis" masculine ; -- [XXXCO] :: bird-catcher, fowler; bird seller, poulterer; spy, eavesdropper; aucilla_F_N = mkN "aucilla" ; -- [XAXES] :: little bird; auctarium_N_N = mkN "auctarium" ; -- [XXXEO] :: something in addition to the proper measure, lagniappe; addition, augmentation; - aucthorizatio_F_N = mkN "aucthorizatio" "aucthorizationis " feminine ; -- [FXXEM] :: authorization; + aucthorizatio_F_N = mkN "aucthorizatio" "aucthorizationis" feminine ; -- [FXXEM] :: authorization; auctifer_A = mkA "auctifer" "auctifera" "auctiferum" ; -- [XAXFO] :: productive, fruitful, fertile; fruit-bearing (L+S); auctifico_V2 = mkV2 (mkV "auctificare") ; -- [DXXES] :: enlarge, increase; honor by offerings/sacrifices; auctificus_A = mkA "auctificus" "auctifica" "auctificum" ; -- [XXXFO] :: giving/causing increase/growth; increasing, enlarging; - auctio_F_N = mkN "auctio" "auctionis " feminine ; -- [XXXBO] :: auction; public sale; property put up for sale at auction/the catalog/proceeds; - auctionale_N_N = mkN "auctionale" "auctionalis " neuter ; -- [XXXFO] :: catalogs/lists (pl.) of auction sales; + auctio_F_N = mkN "auctio" "auctionis" feminine ; -- [XXXBO] :: auction; public sale; property put up for sale at auction/the catalog/proceeds; + auctionale_N_N = mkN "auctionale" "auctionalis" neuter ; -- [XXXFO] :: catalogs/lists (pl.) of auction sales; auctionalis_A = mkA "auctionalis" "auctionalis" "auctionale" ; -- [XXXFS] :: of/pertaining to an auction, auction-; auctionarius_A = mkA "auctionarius" "auctionaria" "auctionarium" ; -- [XXXCO] :: of/pertaining to an auction, auction-; auctiono_V2 = mkV2 (mkV "auctionare") ; -- [XXXES] :: buy goods at an auction/public sale; buy at auction; auctionor_V = mkV "auctionari" ; -- [XXXEO] :: put up goods to auction/public sale; hold an auction; auctito_V2 = mkV2 (mkV "auctitare") ; -- [XXXFO] :: keep increasing/augmenting; honor by offerings (L+S); aucto_V2 = mkV2 (mkV "auctare") ; -- [XXXEO] :: increase/enlarge (much), grow; prosper/bless (with) (w/ABL); - auctor_F_N = mkN "auctor" "auctoris " feminine ; -- [XXXAO] :: seller, vendor; originator; historian; authority; proposer, supporter; founder; - auctor_M_N = mkN "auctor" "auctoris " masculine ; -- [XXXAO] :: seller, vendor; originator; historian; authority; proposer, supporter; founder; + auctor_F_N = mkN "auctor" "auctoris" feminine ; -- [XXXAO] :: seller, vendor; originator; historian; authority; proposer, supporter; founder; + auctor_M_N = mkN "auctor" "auctoris" masculine ; -- [XXXAO] :: seller, vendor; originator; historian; authority; proposer, supporter; founder; auctorabilis_A = mkA "auctorabilis" "auctorabilis" "auctorabile" ; -- [FXXEM] :: authoritative; auctoralis_A = mkA "auctoralis" "auctoralis" "auctorale" ; -- [FXXEM] :: authoritative; auctoramentum_N_N = mkN "auctoramentum" ; -- [XXXCO] :: wages, pay, fee; reward; terms of employment (esp. gladiators), contract; auctoratus_M_N = mkN "auctoratus" ; -- [XXXFO] :: hired gladiator; auctorita_F_N = mkN "auctorita" ; -- [EXXEN] :: authority, power; one in charge; - auctoritas_F_N = mkN "auctoritas" "auctoritatis " feminine ; -- [XXXAO] :: |authority, influence; responsibility; prestige, reputation; opinion, judgment; + auctoritas_F_N = mkN "auctoritas" "auctoritatis" feminine ; -- [XXXAO] :: |authority, influence; responsibility; prestige, reputation; opinion, judgment; auctoritativus_A = mkA "auctoritativus" "auctoritativa" "auctoritativum" ; -- [FXXEM] :: authoritative; auctorizabilis_A = mkA "auctorizabilis" "auctorizabilis" "auctorizabile" ; -- [FXXEM] :: authoritative; - auctorizatio_F_N = mkN "auctorizatio" "auctorizationis " feminine ; -- [FXXEM] :: authorization; + auctorizatio_F_N = mkN "auctorizatio" "auctorizationis" feminine ; -- [FXXEM] :: authorization; auctorizo_V2 = mkV2 (mkV "auctorizare") ; -- [EXXCN] :: authorize, authenticate; approve, confirm; bind one's self; auctoro_V2 = mkV2 (mkV "auctorare") ; -- [XXXCO] :: bind/pledge/oblige/engage oneself, hire oneself out; purchase (w/sibi), secure; 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; + 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.); + 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; 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; + 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; - aucupatio_F_N = mkN "aucupatio" "aucupationis " feminine ; -- [XAXEO] :: hunting after, searching for; bird catching, fowling; + aucupatio_F_N = mkN "aucupatio" "aucupationis" feminine ; -- [XAXEO] :: hunting after, searching for; bird catching, fowling; aucupatorius_A = mkA "aucupatorius" "aucupatoria" "aucupatorium" ; -- [XAXEO] :: suitable for bird catching/fowling/hunting; - aucupatus_M_N = mkN "aucupatus" "aucupatus " masculine ; -- [DAXFS] :: bird-catching, fowling; + aucupatus_M_N = mkN "aucupatus" "aucupatus" masculine ; -- [DAXFS] :: bird-catching, fowling; aucupium_N_N = mkN "aucupium" ; -- [XAXCO] :: bird-catching, fowling; taking (bee swarm); game/wild fowl; sly angling for; aucupo_V2 = mkV2 (mkV "aucupare") ; -- [XAXBO] :: catch, take (swarm of bees); hunt after, seek, be on the lookout for; aucupor_V = mkV "aucupari" ; -- [XAXBO] :: go fowling; lie in wait/lay a trap for, keep a watch on; seek to deal with; @@ -6394,43 +6394,43 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; - auditor_M_N = mkN "auditor" "auditoris " masculine ; -- [XXXBO] :: listener, hearer; disciple (w/GEN), pupil, student; + auditor_M_N = mkN "auditor" "auditoris" masculine ; -- [XXXBO] :: listener, hearer; disciple (w/GEN), pupil, student; auditorialis_A = mkA "auditorialis" "auditorialis" "auditoriale" ; -- [DXXES] :: of/pertaining to a school; auditorium_N_N = mkN "auditorium" ; -- [GXXEK] :: auditorium; auditorius_A = mkA "auditorius" "auditoria" "auditorium" ; -- [DXXES] :: relating to a hearer or hearing; - auditus_M_N = mkN "auditus" "auditus " masculine ; -- [XXXCO] :: hearing; listening; act/sense of hearing; hearsay; + auditus_M_N = mkN "auditus" "auditus" masculine ; -- [XXXCO] :: hearing; listening; act/sense of hearing; hearsay; 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; 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; + 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; - augmen_N_N = mkN "augmen" "augminis " neuter ; -- [XXXEO] :: addition, increase, increment; bulk, total mass, the result of increase; - augmentatio_F_N = mkN "augmentatio" "augmentationis " feminine ; -- [EXXEE] :: increase, waxing (moon); increment; sustenance; advancement (Ecc); + auginos_F_N = mkN "auginos" "augini" feminine ; -- [DAXFS] :: plant; (also called hyoscyamos); + augitis_F_N = mkN "augitis" "augitidis" feminine ; -- [XXXNO] :: precious stone; + augmen_N_N = mkN "augmen" "augminis" neuter ; -- [XXXEO] :: addition, increase, increment; bulk, total mass, the result of increase; + augmentatio_F_N = mkN "augmentatio" "augmentationis" feminine ; -- [EXXEE] :: increase, waxing (moon); increment; sustenance; advancement (Ecc); augmento_V2 = mkV2 (mkV "augmentare") ; -- [DXXFS] :: increase; augmentum_N_N = mkN "augmentum" ; -- [XXXCO] :: increase, waxing (moon); increment; sustenance; advancement (Ecc); - augur_F_N = mkN "augur" "auguris " feminine ; -- [XEXCO] :: augur, one who interprets behavior of birds; diviner, seer, prophet, soothsayer; - augur_M_N = mkN "augur" "auguris " masculine ; -- [XEXCO] :: augur, one who interprets behavior of birds; diviner, seer, prophet, soothsayer; + augur_F_N = mkN "augur" "auguris" feminine ; -- [XEXCO] :: augur, one who interprets behavior of birds; diviner, seer, prophet, soothsayer; + augur_M_N = mkN "augur" "auguris" masculine ; -- [XEXCO] :: augur, one who interprets behavior of birds; diviner, seer, prophet, soothsayer; auguraculum_N_N = mkN "auguraculum" ; -- [XEXEO] :: place where auguries are observed, hence the citadel of Rome; - augurale_N_N = mkN "augurale" "auguralis " neuter ; -- [XEXEO] :: general's HQ/tent in Roman camp where he took auguries; augur's staff/wand; + augurale_N_N = mkN "augurale" "auguralis" neuter ; -- [XEXEO] :: general's HQ/tent in Roman camp where he took auguries; augur's staff/wand; auguralis_A = mkA "auguralis" "auguralis" "augurale" ; -- [XEXCO] :: of/pertaining to augurs, augural; relating to soothsaying; - auguratio_F_N = mkN "auguratio" "augurationis " feminine ; -- [XEXDO] :: prediction by means of augury; + auguratio_F_N = mkN "auguratio" "augurationis" feminine ; -- [XEXDO] :: prediction by means of augury; augurato_Adv = mkAdv "augurato" ; -- [XEXEO] :: after due taking of the auguries; auguratorium_N_N = mkN "auguratorium" ; -- [XEXIO] :: place/building where auguries were observed; - auguratrix_F_N = mkN "auguratrix" "auguratricis " feminine ; -- [DEXES] :: soothsayer/diviner (female); + auguratrix_F_N = mkN "auguratrix" "auguratricis" feminine ; -- [DEXES] :: soothsayer/diviner (female); auguratus_A = mkA "auguratus" "augurata" "auguratum" ; -- [XEXEO] :: instituted after due observance of auguries; - auguratus_M_N = mkN "auguratus" "auguratus " masculine ; -- [XEXCO] :: office of augur; augury; + auguratus_M_N = mkN "auguratus" "auguratus" masculine ; -- [XEXCO] :: office of augur; augury; augurialis_A = mkA "augurialis" "augurialis" "auguriale" ; -- [DEXES] :: of/pertaining to augurs, augural; relating to soothsaying; augurium_N_N = mkN "augurium" ; -- [XEXBO] :: augury (act/profession); divination, prediction; omen, portent/sign; foreboding; augurius_A = mkA "augurius" "auguria" "augurium" ; -- [XEXEO] :: of the augurs/augury, augural; @@ -6444,7 +6444,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - aulax_F_N = mkN "aulax" "aulacis " feminine ; -- [DAXES] :: furrow; + aulax_F_N = mkN "aulax" "aulacis" feminine ; -- [DAXES] :: furrow; auleticos_A = mkA "auleticos" "auletice" "auleticon" ; -- [XAXNO] :: used for making reed pipes/flutes; auleticus_A = mkA "auleticus" "auletica" "auleticum" ; -- [XAXNS] :: used for making reed pipes/flutes; aulicocius_A = mkA "aulicocius" "aulicocia" "aulicocium" ; -- [XXXEO] :: boiled, cooked in a pot; @@ -6452,11 +6452,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat aulicoquius_A = mkA "aulicoquius" "aulicoquia" "aulicoquium" ; -- [XXXEO] :: boiled, cooked in a pot; aulicus_A = mkA "aulicus" "aulica" "aulicum" ; -- [DDXFS] :: of/pertaining to the pipe/flute; aulicus_M_N = mkN "aulicus" ; -- [XLXEO] :: courtier (of the imperial/a prince's household); - aulix_F_N = mkN "aulix" "aulicis " feminine ; -- [DAXES] :: furrow; + aulix_F_N = mkN "aulix" "aulicis" feminine ; -- [DAXES] :: furrow; auloedus_M_N = mkN "auloedus" ; -- [XDXFO] :: person who sings to a reed pipe; - aulon_M_N = mkN "aulon" "aulonis " masculine ; -- [XXXNO] :: waterspout; - aulopoios_M_N = mkN "aulopoios" "aulopoii " masculine ; -- [XXXFO] :: maker of reed pipes; - aulos_M_N = mkN "aulos" "auli " masculine ; -- [XAXNO] :: kind of bivalve; razorshell clam; flute-shaped scallop (L+S); + aulon_M_N = mkN "aulon" "aulonis" masculine ; -- [XXXNO] :: waterspout; + aulopoios_M_N = mkN "aulopoios" "aulopoii" masculine ; -- [XXXFO] :: maker of reed pipes; + aulos_M_N = mkN "aulos" "auli" masculine ; -- [XAXNO] :: kind of bivalve; razorshell clam; flute-shaped scallop (L+S); aulula_F_N = mkN "aulula" ; -- [DXXES] :: small pipkin/pot; aumatium_N_N = mkN "aumatium" ; -- [XDXFO] :: latrine in a theater/circus; private place in the theater (L+S); aunculus_M_N = mkN "aunculus" ; -- [XXXCO] :: maternal uncle, mother's brother, mother's sister's husband; great uncle; @@ -6470,12 +6470,12 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat aurarius_M_N = mkN "aurarius" ; -- [DTXES] :: worker in gold, goldsmith; patron (L+S); aurata_F_N = mkN "aurata" ; -- [XAXDO] :: kind of fish, gilthead, dorado; auratilis_A = mkA "auratilis" "auratilis" "auratile" ; -- [DXXFS] :: gold-colored; - aurator_M_N = mkN "aurator" "auratoris " masculine ; -- [DTXFS] :: gilder, one who gilds (covers with gold leaf) metal/wood/plaster; + aurator_M_N = mkN "aurator" "auratoris" masculine ; -- [DTXFS] :: gilder, one who gilds (covers with gold leaf) metal/wood/plaster; auratura_F_N = mkN "auratura" ; -- [XXXFO] :: gilding, gilt, thin coating of gold; auratus_A = mkA "auratus" "aurata" "auratum" ; -- [XXXBO] :: gilded, overlaid/adorned with gold, golden, gold mounted/embroidered/bearing; aurea_F_N = mkN "aurea" ; -- [XAXDO] :: bridle of a horse; aureatus_A = mkA "aureatus" "aureata" "aureatum" ; -- [DXXFS] :: adorned/decorated with gold; - aureax_M_N = mkN "aureax" "aureacis " masculine ; -- [XXXCO] :: charioteer, driver; groom, ostler; helmsman; the Waggoner (constellation); + aureax_M_N = mkN "aureax" "aureacis" masculine ; -- [XXXCO] :: charioteer, driver; groom, ostler; helmsman; the Waggoner (constellation); aureficina_F_N = mkN "aureficina" ; -- [XTXIO] :: goldsmith's workshop; 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; @@ -6487,7 +6487,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat auricalcum_N_N = mkN "auricalcum" ; -- [EXXFW] :: brass, golden metal; yellow copper ore, "mountain copper"; brass objects (pl.); aurichalcinus_A = mkA "aurichalcinus" "aurichalcina" "aurichalcinum" ; -- [XXXIO] :: made of brass, brass-; of a gold-colored metal; aurichalcum_N_N = mkN "aurichalcum" ; -- [XXXCO] :: brass, golden metal; yellow copper ore, "mountain copper"; brass objects (pl.); - auricoctor_M_N = mkN "auricoctor" "auricoctoris " masculine ; -- [XTXFS] :: smelter/melter/refiner of gold; + auricoctor_M_N = mkN "auricoctor" "auricoctoris" masculine ; -- [XTXFS] :: smelter/melter/refiner of gold; auricolor_A = mkA "auricolor" "auricoloris"; -- [DXXFS] :: golden, of the color of gold; auricomans_A = mkA "auricomans" "auricomantis"; -- [DXXES] :: golden-haired, with golden hair; flaxen-haired; with golden foliage/leaves; auricomus_A = mkA "auricomus" "auricoma" "auricomum" ; -- [XXXEO] :: golden-haired, with golden hair; flaxen-haired; with golden foliage/leaves; @@ -6496,7 +6496,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat auricularius_A = mkA "auricularius" "auricularia" "auricularium" ; -- [XBXEO] :: of/for the ear/ears; [medicus auricularius => ear specialist]; auricularius_M_N = mkN "auricularius" ; -- [DBXES] :: ear doctor/specialist, aurist; counselor; listener, secret advisor (Ecc); aurifer_A = mkA "aurifer" "aurifera" "auriferum" ; -- [XXXCO] :: gold-bearing, producing/yielding gold (mine/country); bearing golden fruit; - aurifex_M_N = mkN "aurifex" "aurificis " masculine ; -- [XXXCO] :: goldsmith; + aurifex_M_N = mkN "aurifex" "aurificis" masculine ; -- [XXXCO] :: goldsmith; aurificina_F_N = mkN "aurificina" ; -- [XTXIO] :: goldsmith's workshop; aurifluus_A = mkA "aurifluus" "auriflua" "aurifluum" ; -- [XXXFS] :: flowing with gold; aurifodina_F_N = mkN "aurifodina" ; -- [XTXEO] :: gold mine; @@ -6506,8 +6506,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat aurigalis_A = mkA "aurigalis" "aurigalis" "aurigale" ; -- [DXXFS] :: of/pertaining to a charioteer/driver; aurigans_A = mkA "aurigans" "aurigantis"; -- [DXXES] :: glittering with gold; aurigarius_M_N = mkN "aurigarius" ; -- [XXXFO] :: owner of a racing chariot; charioteer in the races in the circus (L+S); - aurigatio_F_N = mkN "aurigatio" "aurigationis " feminine ; -- [XXXEO] :: chariot driving; - aurigator_M_N = mkN "aurigator" "aurigatoris " masculine ; -- [XXXES] :: chariot racer/race driver; + aurigatio_F_N = mkN "aurigatio" "aurigationis" feminine ; -- [XXXEO] :: chariot driving; + aurigator_M_N = mkN "aurigator" "aurigatoris" masculine ; -- [XXXES] :: chariot racer/race driver; aurigena_M_N = mkN "aurigena" ; -- [XYXFO] :: one born of gold, the gold-begotten (i.e., Perseus); aurigenus_A = mkA "aurigenus" "aurigena" "aurigenum" ; -- [XYXFO] :: born of gold, gold-begotten (i.e., Perseus); auriger_A = mkA "auriger" "aurigera" "aurigerum" ; -- [XXXEO] :: bearing gold (e.g., with gilded horns; bearing the Golden Fleece); @@ -6520,7 +6520,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat auriphrygiatus_A = mkA "auriphrygiatus" "auriphrygiata" "auriphrygiatum" ; -- [EXXFE] :: gold-embroidered, embroidered with gold; auriphrygius_A = mkA "auriphrygius" "auriphrygia" "auriphrygium" ; -- [EXXFE] :: gold-embroidered, embroidered with gold; auripigmentum_N_N = mkN "auripigmentum" ; -- [XXXDO] :: yellow/trisulphide of arsenic, bright yellow dye mineral, yellow orpiment; - auris_F_N = mkN "auris" "auris " feminine ; -- [XXXAO] :: ear; hearing; a discriminating sense of hearing, "ear" (for); pin on plow; + auris_F_N = mkN "auris" "auris" feminine ; -- [XXXAO] :: ear; hearing; a discriminating sense of hearing, "ear" (for); pin on plow; auriscalpium_N_N = mkN "auriscalpium" ; -- [XBXEO] :: ear-pick (medical instrument), probe; auritulus_M_N = mkN "auritulus" ; -- [XXXFO] :: long-eared animal, ass; auritus_A = mkA "auritus" "aurita" "auritum" ; -- [XXXCO] :: with/having ears; longeared, w/large ears; hearing well, listening, attentive; @@ -6529,40 +6529,40 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat aurora_F_N = mkN "aurora" ; -- [XXXBO] :: dawn, daybreak, sunrise; goddess of the dawn; Orient/East, peoples of the East; auroro_V = mkV "aurorare" ; -- [XXXFO] :: shine like the sunrise; aurosus_A = mkA "aurosus" "aurosa" "aurosum" ; -- [XXXNO] :: containing gold, gold-bearing; of the color of gold, like gold (L+S); - aurufex_M_N = mkN "aurufex" "auruficis " masculine ; -- [XXXCO] :: goldsmith; + aurufex_M_N = mkN "aurufex" "auruficis" masculine ; -- [XXXCO] :: goldsmith; aurugineus_A = mkA "aurugineus" "auruginea" "aurugineum" ; -- [DBXFS] :: golden/yellow (of color); jaundiced; aurugino_V = mkV "auruginare" ; -- [DBXFS] :: have jaundice, be affected with jaundice; auruginosus_A = mkA "auruginosus" "auruginosa" "auruginosum" ; -- [DBXFS] :: golden/yellow (of color); jaundiced; - aurugo_F_N = mkN "aurugo" "auruginis " feminine ; -- [XBXEO] :: jaundice; pale/sickly look; mildew (plants) (L+S); + aurugo_F_N = mkN "aurugo" "auruginis" feminine ; -- [XBXEO] :: jaundice; pale/sickly look; mildew (plants) (L+S); aurula_F_N = mkN "aurula" ; -- [DXXES] :: gentle breeze; whiff (of); aurulentus_A = mkA "aurulentus" "aurulenta" "aurulentum" ; -- [DXXFS] :: of the color of gold, golden; aurum_N_N = mkN "aurum" ; -- [XXXAO] :: gold (metal/color), gold money, riches; - ausculatio_F_N = mkN "ausculatio" "ausculationis " feminine ; -- [BXXEO] :: kissing; action of kissing; - ausculator_M_N = mkN "ausculator" "ausculatoris " masculine ; -- [FXXEE] :: listener; + ausculatio_F_N = mkN "ausculatio" "ausculationis" feminine ; -- [BXXEO] :: kissing; action of kissing; + ausculator_M_N = mkN "ausculator" "ausculatoris" masculine ; -- [FXXEE] :: listener; ausculor_V = mkV "ausculari" ; -- [BXXDX] :: kiss; exchange kisses; auscultabulum_N_N = mkN "auscultabulum" ; -- [GTXEK] :: earphone, telephone receiver; - auscultatio_F_N = mkN "auscultatio" "auscultationis " feminine ; -- [XXXEO] :: eavesdropping, secret listening; paying heed, obeying; - auscultator_M_N = mkN "auscultator" "auscultatoris " masculine ; -- [XXXEO] :: listener; one who heeds/obeys; - auscultatus_M_N = mkN "auscultatus" "auscultatus " masculine ; -- [XXXFO] :: act of listening/hearing; + auscultatio_F_N = mkN "auscultatio" "auscultationis" feminine ; -- [XXXEO] :: eavesdropping, secret listening; paying heed, obeying; + auscultator_M_N = mkN "auscultator" "auscultatoris" masculine ; -- [XXXEO] :: listener; one who heeds/obeys; + auscultatus_M_N = mkN "auscultatus" "auscultatus" masculine ; -- [XXXFO] :: act of listening/hearing; ausculto_V = mkV "auscultare" ; -- [XXXCO] :: listen (to); overhear, listen secretly; heed, obey; ausculum_N_N = mkN "ausculum" ; -- [BXXDX] :: kiss; mouth; lips; orifice; mouthpiece (of a pipe); - auspex_F_N = mkN "auspex" "auspicis " feminine ; -- [XEXCO] :: diviner by birds, augur; soothsayer; patron, supporter; wedding functionary; - auspex_M_N = mkN "auspex" "auspicis " masculine ; -- [XEXCO] :: diviner by birds, augur; soothsayer; patron, supporter; wedding functionary; + auspex_F_N = mkN "auspex" "auspicis" feminine ; -- [XEXCO] :: diviner by birds, augur; soothsayer; patron, supporter; wedding functionary; + auspex_M_N = mkN "auspex" "auspicis" masculine ; -- [XEXCO] :: diviner by birds, augur; soothsayer; patron, supporter; wedding functionary; auspicabilis_A = mkA "auspicabilis" "auspicabilis" "auspicabile" ; -- [DXXES] :: auspicious, of favorable omen; 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; 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; + 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); 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); + 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; + 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; 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; @@ -6573,8 +6573,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - 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.); +-- TODO ausum_V : V1 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 = 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; @@ -6584,33 +6584,33 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat authemerus_A = mkA "authemerus" "authemera" "authemerum" ; -- [XXXEO] :: acting/operating on the same day; providing/with same day service; authenta_M_N = mkN "authenta" ; -- [DLXFS] :: chief prince, head; authentice_Adv = mkAdv "authentice" ; -- [FXXFE] :: authentically; - authenticitas_F_N = mkN "authenticitas" "authenticitatis " feminine ; -- [EXXFE] :: genuineness, authenticity; + authenticitas_F_N = mkN "authenticitas" "authenticitatis" feminine ; -- [EXXFE] :: genuineness, authenticity; authentico_V2 = mkV2 (mkV "authenticare") ; -- [EXXFE] :: verify, authenticate; authenticum_N_N = mkN "authenticum" ; -- [XXXFO] :: original/authentic document, the original; document certifying relic genuine; authenticus_A = mkA "authenticus" "authentica" "authenticum" ; -- [XXXEO] :: original (document), genuine, authentic; that comes from the author; authentus_M_N = mkN "authentus" ; -- [FLXES] :: chief prince, head; authepsa_F_N = mkN "authepsa" ; -- [XXXFO] :: cooker with its own heating compartment; - author_F_N = mkN "author" "authoris " feminine ; -- [DXXCS] :: seller, vendor; originator; historian; authority; proposer, supporter; founder; - author_M_N = mkN "author" "authoris " masculine ; -- [DXXCS] :: seller, vendor; originator; historian; authority; proposer, supporter; founder; + author_F_N = mkN "author" "authoris" feminine ; -- [DXXCS] :: seller, vendor; originator; historian; authority; proposer, supporter; founder; + author_M_N = mkN "author" "authoris" masculine ; -- [DXXCS] :: seller, vendor; originator; historian; authority; proposer, supporter; founder; authoramentum_N_N = mkN "authoramentum" ; -- [DXXES] :: wages, pay, fee; reward; terms of employment (esp. gladiators), contract; authoratus_M_N = mkN "authoratus" ; -- [DXXFS] :: hired gladiator; authorita_F_N = mkN "authorita" ; -- [EXXFS] :: authority, power; one in charge; - authoritas_F_N = mkN "authoritas" "authoritatis " feminine ; -- [DXXCS] :: |authority, influence; responsibility; prestige, reputation; opinion, judgment; + authoritas_F_N = mkN "authoritas" "authoritatis" feminine ; -- [DXXCS] :: |authority, influence; responsibility; prestige, reputation; opinion, judgment; authorizo_V2 = mkV2 (mkV "authorizare") ; -- [EXXES] :: authorize, authenticate; approve, confirm; bind one's self; authoro_V2 = mkV2 (mkV "authorare") ; -- [DXXES] :: bind/pledge/oblige/engage oneself, hire oneself out; purchase (w/sibi), secure; authoror_V = mkV "authorari" ; -- [DXXFS] :: hire out, sell; give authorization (guardian on behalf of ward); authorize; - authrix_F_N = mkN "authrix" "authricis " feminine ; -- [DXXES] :: seller, vendor; originator; historian; authority; proposer, supporter; founder; + authrix_F_N = mkN "authrix" "authricis" feminine ; -- [DXXES] :: seller, vendor; originator; historian; authority; proposer, supporter; founder; autobiographia_F_N = mkN "autobiographia" ; -- [EXXEE] :: autobiography; autobirota_F_N = mkN "autobirota" ; -- [GTXEK] :: motorcycle; autobirotarius_M_N = mkN "autobirotarius" ; -- [GXXEK] :: motorcyclist; autocarrum_N_N = mkN "autocarrum" ; -- [GTXEK] :: truck; - autochthon_M_N = mkN "autochthon" "autochthonis " masculine ; -- [XXXEE] :: original inhabitant, native; + autochthon_M_N = mkN "autochthon" "autochthonis" masculine ; -- [XXXEE] :: original inhabitant, native; autochthonus_A = mkA "autochthonus" "autochthona" "autochthonum" ; -- [XXXFE] :: indigenous, native; innate; autocineticus_A = mkA "autocineticus" "autocinetica" "autocineticum" ; -- [GXXEK] :: car-; of a car; autocinetista_M_N = mkN "autocinetista" ; -- [GXXEK] :: driver; autocinetum_N_N = mkN "autocinetum" ; -- [GTXEK] :: car; autocratus_A = mkA "autocratus" "autocrata" "autocratum" ; -- [XXXIO] :: self-blended (wine) (i.e., of medium sweetness); - autocthon_M_N = mkN "autocthon" "autocthonis " masculine ; -- [XXXEO] :: original inhabitant, native; + autocthon_M_N = mkN "autocthon" "autocthonis" masculine ; -- [XXXEO] :: original inhabitant, native; autocthonus_A = mkA "autocthonus" "autocthona" "autocthonum" ; -- [XXXFO] :: indigenous, native; innate; autographum_N_N = mkN "autographum" ; -- [DXXFS] :: holograph, document written in one's own hand; autographus_A = mkA "autographus" "autographa" "autographum" ; -- [XXXEO] :: written with one's own hand, holograph; @@ -6618,11 +6618,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat automatarius_A = mkA "automatarius" "automataria" "automatarium" ; -- [XTXIO] :: automatic, of automata/automatic mechanisms; automatarius_M_N = mkN "automatarius" ; -- [XTXFS] :: maker of automata/automatic mechanisms; automaticus_A = mkA "automaticus" "automatica" "automaticum" ; -- [GXXEK] :: automatic; - automatio_F_N = mkN "automatio" "automationis " feminine ; -- [HTXFE] :: automation; + automatio_F_N = mkN "automatio" "automationis" feminine ; -- [HTXFE] :: automation; automatismus_M_N = mkN "automatismus" ; -- [GXXEK] :: automatic device; - automatizatio_F_N = mkN "automatizatio" "automatizationis " feminine ; -- [GXXEK] :: automation; + automatizatio_F_N = mkN "automatizatio" "automatizationis" feminine ; -- [GXXEK] :: automation; automatizo_V = mkV "automatizare" ; -- [GXXEK] :: automate; - automaton_N_N = mkN "automaton" "automati " neuter ; -- [XTXEO] :: automaton, automatic/self-moving mechanism; automatic/puppet-like movements; + automaton_N_N = mkN "automaton" "automati" neuter ; -- [XTXEO] :: automaton, automatic/self-moving mechanism; automatic/puppet-like movements; automatopoetus_A = mkA "automatopoetus" "automatopoeta" "automatopoetum" ; -- [XTXFO] :: automatic; automatum_N_N = mkN "automatum" ; -- [GXXEK] :: |ATM, automatic teller; automatus_A = mkA "automatus" "automata" "automatum" ; -- [XTXES] :: voluntary, spontaneous, self-moving; @@ -6631,7 +6631,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat autonomus_A = mkA "autonomus" "autonoma" "autonomum" ; -- [FXXEM] :: autonomous; autopsia_F_N = mkN "autopsia" ; -- [GBXEK] :: autopsy; autopyros_A = mkA "autopyros" "autopyros" "autopyron" ; -- [XAXEO] :: made of unbolted/unsifted wheat meal, whole-wheat; - autopyros_M_N = mkN "autopyros" "autopyri " masculine ; -- [XAXEO] :: coarse bread made of unbolted/unsifted wheaten meal, whole-wheat bread; + autopyros_M_N = mkN "autopyros" "autopyri" masculine ; -- [XAXEO] :: coarse bread made of unbolted/unsifted wheaten meal, whole-wheat bread; autopyrus_A = mkA "autopyrus" "autopyra" "autopyrum" ; -- [XAXEO] :: made of unbolted/unsifted wheat meal, whole-wheat; autopyrus_M_N = mkN "autopyrus" ; -- [XAXEO] :: coarse bread made of unbolted/unsifted wheaten meal, whole-wheat bread; autoraeda_F_N = mkN "autoraeda" ; -- [GTXEK] :: car; @@ -6640,7 +6640,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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.); + 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; autumnus_M_N = mkN "autumnus" ; -- [XXXAO] :: autumn; autumn fruits, harvest; @@ -6649,13 +6649,13 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat autus_M_N = mkN "autus" ; -- [FXXEN] :: increase, enlargement; growth; auxiliabundus_A = mkA "auxiliabundus" "auxiliabunda" "auxiliabundum" ; -- [XXXFO] :: bringing aid, helping; auxiliaris_A = mkA "auxiliaris" "auxiliaris" "auxiliare" ; -- [XXXCO] :: assisting, succoring, help-bringing; auxiliary (troops); - auxiliaris_M_N = mkN "auxiliaris" "auxiliaris " masculine ; -- [XWXDO] :: auxiliary troops (pl.); allies; + auxiliaris_M_N = mkN "auxiliaris" "auxiliaris" masculine ; -- [XWXDO] :: auxiliary troops (pl.); allies; auxiliarius_M_N = mkN "auxiliarius" ; -- [XWXDO] :: auxiliary troops (pl.); assistants; allies; auxiliarus_A = mkA "auxiliarus" "auxiliara" "auxiliarum" ; -- [XXXES] :: assisting, succoring, help-bringing; auxiliary (troops); - auxiliatio_F_N = mkN "auxiliatio" "auxiliationis " feminine ; -- [XXXFS] :: help, aid; - auxiliator_M_N = mkN "auxiliator" "auxiliatoris " masculine ; -- [XXXDO] :: helper, one who gives aid; aide, assistant (L+S); - auxiliatrix_F_N = mkN "auxiliatrix" "auxiliatricis " feminine ; -- [DXXFS] :: helper (female), assistant, aide; - auxiliatus_M_N = mkN "auxiliatus" "auxiliatus " masculine ; -- [XXXFO] :: help, aid; + auxiliatio_F_N = mkN "auxiliatio" "auxiliationis" feminine ; -- [XXXFS] :: help, aid; + auxiliator_M_N = mkN "auxiliator" "auxiliatoris" masculine ; -- [XXXDO] :: helper, one who gives aid; aide, assistant (L+S); + auxiliatrix_F_N = mkN "auxiliatrix" "auxiliatricis" feminine ; -- [DXXFS] :: helper (female), assistant, aide; + auxiliatus_M_N = mkN "auxiliatus" "auxiliatus" masculine ; -- [XXXFO] :: help, aid; auxilio_V2 = mkV2 (mkV "auxiliare") ; -- [XXXES] :: help (w/DAT); give help/aid; assist; be helpful, be of use/avail; remedy, heal; auxilior_V = mkV "auxiliari" ; -- [XXXCO] :: help (w/DAT); give help/aid; assist; be helpful, be of use/avail; remedy, heal; auxilium_N_N = mkN "auxilium" ; -- [XXXAO] :: help, assistance; remedy/antidote; supporting resource/force; auxiliaries (pl.); @@ -6665,13 +6665,13 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat avare_Adv =mkAdv "avare" "avarius" "avarissime" ; -- [XXXCO] :: greedily, avariciously, rapaciously; thriftily, economically, stingily, miserly; 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; + avarities_F_N = mkN "avarities" "avaritiei" feminine ; -- [DXXFS] :: greed, avarice; rapacity; miserliness, stinginess, meanness; 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; + 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; + 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-; @@ -6680,21 +6680,21 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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); - aversator_M_N = mkN "aversator" "aversatoris " masculine ; -- [DXXFS] :: apostate, he who abominates/turns away from; rebel, he who rebels/oppresses; - aversatrix_F_N = mkN "aversatrix" "aversatricis " feminine ; -- [DXXFS] :: apostate, she who abominates/turns away from; rebel, she who rebels/oppresses; + aversatio_F_N = mkN "aversatio" "aversationis" feminine ; -- [XXXDO] :: aversion, feeling of dislike (for); + aversator_M_N = mkN "aversator" "aversatoris" masculine ; -- [DXXFS] :: apostate, he who abominates/turns away from; rebel, he who rebels/oppresses; + aversatrix_F_N = mkN "aversatrix" "aversatricis" feminine ; -- [DXXFS] :: apostate, she who abominates/turns away from; rebel, she who rebels/oppresses; aversim_Adv = mkAdv "aversim" ; -- [DXXFS] :: sidewise, sideways; avertedly; - aversio_F_N = mkN "aversio" "aversionis " feminine ; -- [XXXDO] :: loathing, abhorrence; distraction (of attention/from the point); (for) lump sum; - aversor_M_N = mkN "aversor" "aversoris " masculine ; -- [XXXFO] :: embezzler; pilferer, thief; + aversio_F_N = mkN "aversio" "aversionis" feminine ; -- [XXXDO] :: loathing, abhorrence; distraction (of attention/from the point); (for) lump sum; + 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; 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; + 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-; @@ -6703,43 +6703,43 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat avicula_F_N = mkN "avicula" ; -- [XAXDO] :: small bird; avicularius_M_N = mkN "avicularius" ; -- [XAXFS] :: bird keeper, one who has charge of poultry; 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; + 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; 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; + avis_F_N = mkN "avis" "avis" feminine ; -- [XAXBO] :: bird; sign, omen, portent; avite_Adv = mkAdv "avite" ; -- [DXXFS] :: from ancient times, of old; avitium_N_N = mkN "avitium" ; -- [XAXFO] :: birds collectively, the bird family; avitus_A = mkA "avitus" "avita" "avitum" ; -- [XXXCO] :: ancestral, of one's ancestors, family; of/belonging to a grandfather; avium_N_N = mkN "avium" ; -- [XXXCO] :: pathless region (pl.), wild waste, wilderness, desert; lonely/solitary places; avius_A = mkA "avius" "avia" "avium" ; -- [XXXBO] :: out of the way, unfrequented, remote; pathless, trackless, untrodden; straying; avocamentum_N_N = mkN "avocamentum" ; -- [XXXDO] :: distraction, diversion, recreation, relaxation; - avocatio_F_N = mkN "avocatio" "avocationis " feminine ; -- [XXXEO] :: process of diverting the attention; distraction, diversion; - avocator_M_N = mkN "avocator" "avocatoris " masculine ; -- [DEXES] :: one who calls off/away, one who diverts; - avocatrix_F_N = mkN "avocatrix" "avocatricis " feminine ; -- [DEXES] :: she who calls off/away, she who diverts; + avocatio_F_N = mkN "avocatio" "avocationis" feminine ; -- [XXXEO] :: process of diverting the attention; distraction, diversion; + avocator_M_N = mkN "avocator" "avocatoris" masculine ; -- [DEXES] :: one who calls off/away, one who diverts; + avocatrix_F_N = mkN "avocatrix" "avocatricis" feminine ; -- [DEXES] :: she who calls off/away, she who diverts; avoco_V2 = mkV2 (mkV "avocare") ; -- [XXXBO] :: call/summon away; dissuade, divert, distract; remove, take away (property); avolo_V = mkV "avolare" ; -- [XXXCO] :: fly/rush away/off; hasten away, flee, vanish; fly away (missile); - 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; + 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); + 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; 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; + 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; avunculus_M_N = mkN "avunculus" ; -- [XXXCO] :: maternal uncle, mother's brother, mother's sister's husband; great uncle; avus_M_N = mkN "avus" ; -- [XXXBO] :: grandfather; forefather, ancestor; axamentum_N_N = mkN "axamentum" ; -- [XEXFS] :: religious hymns (pl.) in Saturnian measure annually sung by the Salii; - axedo_M_N = mkN "axedo" "axedonis " masculine ; -- [DXXFS] :: board, plank; + axedo_M_N = mkN "axedo" "axedonis" masculine ; -- [DXXFS] :: board, plank; axicia_F_N = mkN "axicia" ; -- [XXXFS] :: pair of shears; axiculus_M_N = mkN "axiculus" ; -- [XXXEO] :: small axle; small plank, slat; small beam/pole, pin (L+S); axilla_F_N = mkN "axilla" ; -- [XBXEE] :: side; armpit; axinomantia_F_N = mkN "axinomantia" ; -- [XEXNO] :: divination by means of axes; - axio_F_N = mkN "axio" "axionis " feminine ; -- [XAXNO] :: little horned owl; - axioma_N_N = mkN "axioma" "axiomatis " neuter ; -- [XSXFO] :: axiom, fundamental preposition; principle (L+S); - axis_M_N = mkN "axis" "axis " masculine ; -- [XXXCO] :: plank, board; + axio_F_N = mkN "axio" "axionis" feminine ; -- [XAXNO] :: little horned owl; + axioma_N_N = mkN "axioma" "axiomatis" neuter ; -- [XSXFO] :: axiom, fundamental preposition; principle (L+S); + 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); axon_1_N = mkN "axon" "axonis" masculine ; -- [XWXEO] :: axis of a sundial; axis/roller of a ballista; line on a sundial (L+S); @@ -6766,22 +6766,22 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat bacalia_F_N = mkN "bacalia" ; -- [XAXNO] :: berry-bearer; female laurel regarded as a variety; bacalis_A = mkA "bacalis" "bacalis" "bacale" ; -- [XAXNO] :: berry-bearing (designation of the female laurel); bacalusia_F_N = mkN "bacalusia" ; -- [XXXFO] :: stupid guesses? (pl.); kind of sweetmeat? (L+S); - bacar_N_N = mkN "bacar" "bacaris " neuter ; -- [XXXFO] :: vessel with a long handle (like bacrio); wine glass (L+S); + bacar_N_N = mkN "bacar" "bacaris" neuter ; -- [XXXFO] :: vessel with a long handle (like bacrio); wine glass (L+S); bacatus_A = mkA "bacatus" "bacata" "bacatum" ; -- [XXXEO] :: set with pearls; bacca_F_N = mkN "bacca" ; -- [XAXES] :: berry, fruit of tree/shrub; olive; pearl; piece/bead of coral; baccalarius_M_N = mkN "baccalarius" ; -- [GXXEK] :: bachelor; - baccalaureatus_M_N = mkN "baccalaureatus" "baccalaureatus " masculine ; -- [GXXEK] :: final exam; + baccalaureatus_M_N = mkN "baccalaureatus" "baccalaureatus" masculine ; -- [GXXEK] :: final exam; baccalaureus_M_N = mkN "baccalaureus" ; -- [GXXEK] :: bachelor; baccalia_F_N = mkN "baccalia" ; -- [XAXNS] :: berry-bearer; female laurel regarded as a variety; baccalis_A = mkA "baccalis" "baccalis" "baccale" ; -- [XAXNS] :: berry-bearing (designation of the female laurel); - baccar_N_N = mkN "baccar" "baccaris " neuter ; -- [XAXEO] :: unidentified plant (cyclamen?, sowbread); another plant; w/fragrant root w/oil; - baccaris_F_N = mkN "baccaris" "baccaris " feminine ; -- [XAXNO] :: unidentified plant (cyclamen?, sowbread); another plant; w/fragrant root w/oil; + baccar_N_N = mkN "baccar" "baccaris" neuter ; -- [XAXEO] :: unidentified plant (cyclamen?, sowbread); another plant; w/fragrant root w/oil; + baccaris_F_N = mkN "baccaris" "baccaris" feminine ; -- [XAXNO] :: unidentified plant (cyclamen?, sowbread); another plant; w/fragrant root w/oil; bacchabundus_A = mkA "bacchabundus" "bacchabunda" "bacchabundum" ; -- [XEXEO] :: reveling in the manner of Bacchantes, raving; - bacchans_F_N = mkN "bacchans" "bacchantis " feminine ; -- [XXXCO] :: votaries (pl.) of Bacchus, Bacchantes; - bacchar_N_N = mkN "bacchar" "baccharis " neuter ; -- [XAXNS] :: unidentified plant (cyclamen?, sowbread); another plant; w/fragrant root w/oil; - baccharis_F_N = mkN "baccharis" "baccharis " feminine ; -- [XAXNS] :: unidentified plant (cyclamen?, sowbread); another plant; w/fragrant root w/oil; + bacchans_F_N = mkN "bacchans" "bacchantis" feminine ; -- [XXXCO] :: votaries (pl.) of Bacchus, Bacchantes; + bacchar_N_N = mkN "bacchar" "baccharis" neuter ; -- [XAXNS] :: unidentified plant (cyclamen?, sowbread); another plant; w/fragrant root w/oil; + baccharis_F_N = mkN "baccharis" "baccharis" feminine ; -- [XAXNS] :: unidentified plant (cyclamen?, sowbread); another plant; w/fragrant root w/oil; bacchatim_Adv = mkAdv "bacchatim" ; -- [XXXFO] :: in the manner of Bacchantes, riotously, wildly; - bacchatio_F_N = mkN "bacchatio" "bacchationis " feminine ; -- [XEXEO] :: celebration of rites of Bacchus; orgy, debauch; reveling Bacchanalian fashion; + bacchatio_F_N = mkN "bacchatio" "bacchationis" feminine ; -- [XEXEO] :: celebration of rites of Bacchus; orgy, debauch; reveling Bacchanalian fashion; bacchia_F_N = mkN "bacchia" ; -- [DXXFS] :: kind of drinking goblet/bowl; bacchiacus_A = mkA "bacchiacus" "bacchiaca" "bacchiacum" ; -- [XPXFO] :: name for the choriambic meter; bacchius_M_N = mkN "bacchius" ; -- [XPXEO] :: metrical foot of three syllables, either long-long-short or short-long-long; @@ -6794,11 +6794,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat baccor_V = mkV "baccari" ; -- [EXXEW] :: run riot/wild/crazy, dash in a frenzy; be frenzied; baceolus_A = mkA "baceolus" "baceola" "baceolum" ; -- [XXXFO] :: stupid, slow-witted, unintelligent, inept; foolish, silly; (used by Augustus); bacifer_A = mkA "bacifer" "bacifera" "baciferum" ; -- [XXXDO] :: berry-bearing; - bacile_N_N = mkN "bacile" "bacilis " neuter ; -- [FXXFE] :: basin; + bacile_N_N = mkN "bacile" "bacilis" neuter ; -- [FXXFE] :: basin; bacilis_A = mkA "bacilis" "bacilis" "bacile" ; -- [FXXFE] :: low, base; bacillum_N_N = mkN "bacillum" ; -- [XXXCO] :: stick (small), walking stick, staff; shaft/handle (weapon/tool); lictor's staff; bacillus_M_N = mkN "bacillus" ; -- [DXXFS] :: stick (small), walking stick, staff; shaft/handle (weapon/tool); lictor's staff; - bacrio_M_N = mkN "bacrio" "bacrionis " masculine ; -- [XXXFO] :: vessel with long handle, ladle; + bacrio_M_N = mkN "bacrio" "bacrionis" masculine ; -- [XXXFO] :: vessel with long handle, ladle; bacterialis_A = mkA "bacterialis" "bacterialis" "bacteriale" ; -- [GSXEK] :: bacterial; bactericidus_A = mkA "bactericidus" "bactericida" "bactericidum" ; -- [GSXEK] :: bactericidal; bacteriologus_M_N = mkN "bacteriologus" ; -- [GSXEK] :: bacteriologist; @@ -6808,10 +6808,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat baculum_N_N = mkN "baculum" ; -- [XXXCO] :: stick, walking stick, staff; lictor's rod/staff (not fascas); scepter; crozier; baculus_M_N = mkN "baculus" ; -- [DXXFS] :: stick, walking stick, staff; lictor's rod/staff (not fascas); scepter; crozier; badisso_V = mkV "badissare" ; -- [BXXFS] :: go, proceed; walk; - baditis_F_N = mkN "baditis" "baditidis " feminine ; -- [DAXFS] :: plant (nymphaea); + baditis_F_N = mkN "baditis" "baditidis" feminine ; -- [DAXFS] :: plant (nymphaea); badius_A = mkA "badius" "badia" "badium" ; -- [XAXEO] :: bay, reddish-brown, chestnut; (color, esp. applied to horses); 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; + 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; @@ -6820,8 +6820,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat baijulus_M_N = mkN "baijulus" ; -- [XXXDO] :: porter, pall-bearer, carrier of a burden; steward; letter-carrier (L+S); baillium_N_N = mkN "baillium" ; -- [FWXEM] :: castle-bailey; L:bail, security; bajolus_M_N = mkN "bajolus" ; -- [XXXDO] :: porter, pall-bearer, carrier of a burden; steward; letter-carrier (L+S); - bajulatio_F_N = mkN "bajulatio" "bajulationis " feminine ; -- [DXXFS] :: carrying/bearing of burdens/loads; - bajulator_M_N = mkN "bajulator" "bajulatoris " masculine ; -- [DXXFS] :: carrier, porter, one carrying/bearing burdens/loads; + bajulatio_F_N = mkN "bajulatio" "bajulationis" feminine ; -- [DXXFS] :: carrying/bearing of burdens/loads; + bajulator_M_N = mkN "bajulator" "bajulatoris" masculine ; -- [DXXFS] :: carrier, porter, one carrying/bearing burdens/loads; bajulatorius_A = mkA "bajulatorius" "bajulatoria" "bajulatorium" ; -- [DXXES] :: of/belonging to carrier/porter (e.g., a sedan chair); bajulo_V2 = mkV2 (mkV "bajulare") ; -- [XXXDO] :: carry, bear (load); bajulus_M_N = mkN "bajulus" ; -- [XXXDO] :: porter, pall-bearer, carrier of a burden; steward; letter-carrier (L+S); @@ -6829,18 +6829,18 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat balaenaceus_A = mkA "balaenaceus" "balaenacea" "balaenaceum" ; -- [XAXFO] :: made of whalebone; balanatus_A = mkA "balanatus" "balanata" "balanatum" ; -- [XAXFO] :: perfumed with oil of Ben (winged Horse-radish tree seeds Moringa pterygosperms); balaninus_A = mkA "balaninus" "balanina" "balaninum" ; -- [XAXNO] :: of ben-nut (winged seeds of the Horse-radish tree, Moringa pterygosperms); - balanites_M_N = mkN "balanites" "balanitae " masculine ; -- [XXXNO] :: precious stone; - balanitis_F_N = mkN "balanitis" "balanitidis " feminine ; -- [XAXNO] :: species of chestnut; (shaped like an acorn L+S); + balanites_M_N = mkN "balanites" "balanitae" masculine ; -- [XXXNO] :: precious stone; + balanitis_F_N = mkN "balanitis" "balanitidis" feminine ; -- [XAXNO] :: species of chestnut; (shaped like an acorn L+S); balans_A = mkA "balans" "balantis"; -- [XAXFO] :: bleating as proper epithet of sheep; - balans_M_N = mkN "balans" "balantis " masculine ; -- [XAXEO] :: bleater; sheep (pl.); + balans_M_N = mkN "balans" "balantis" masculine ; -- [XAXEO] :: bleater; sheep (pl.); balantus_A = mkA "balantus" "balanta" "balantum" ; -- [XXXES] :: anointed/perfumed with balsam; embalmed; balanus_F_N = mkN "balanus" ; -- [XXXCO] :: acorn; other nuts, chestnut, ben-nut; date; balsam; shell-fish; suppository; - balatro_M_N = mkN "balatro" "balatronis " masculine ; -- [XXXEO] :: buffoon, fool; jester, joker; bleater, babbler; - balatus_M_N = mkN "balatus" "balatus " masculine ; -- [XAXCO] :: bleating (of sheep/goats); + balatro_M_N = mkN "balatro" "balatronis" masculine ; -- [XXXEO] :: buffoon, fool; jester, joker; bleater, babbler; + balatus_M_N = mkN "balatus" "balatus" masculine ; -- [XAXCO] :: bleating (of sheep/goats); balaustium_N_N = mkN "balaustium" ; -- [XAXEO] :: flower of the pomegranate; 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); + balbuties_F_N = mkN "balbuties" "balbutiei" feminine ; -- [FXXFM] :: stammering; (balbuties); 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; @@ -6848,18 +6848,18 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat balena_F_N = mkN "balena" ; -- [XAXES] :: whale; balenaceus_A = mkA "balenaceus" "balenacea" "balenaceum" ; -- [XAXFS] :: made of whalebone; balinea_F_N = mkN "balinea" ; -- [XXXCO] :: baths (pl.); - balineare_N_N = mkN "balineare" "balinearis " neuter ; -- [XXXEO] :: bath utensils (pl.); + balineare_N_N = mkN "balineare" "balinearis" neuter ; -- [XXXEO] :: bath utensils (pl.); balinearis_A = mkA "balinearis" "balinearis" "balineare" ; -- [XXXEO] :: pertaining/belonging to baths/bathhouse; bathhouse; balinearium_N_N = mkN "balinearium" ; -- [XXXCO] :: baths (pl.), bathhouses, places for bathing; balinearius_A = mkA "balinearius" "balinearia" "balinearium" ; -- [XXXDO] :: pertaining/relating to baths/bathhouse; bathhouse; balineaticum_N_N = mkN "balineaticum" ; -- [XXXFS] :: bath money, piece of money to be paid for bath; - balineator_M_N = mkN "balineator" "balineatoris " masculine ; -- [XXXCO] :: bath-attendant; keeper of a bathhouse; + balineator_M_N = mkN "balineator" "balineatoris" masculine ; -- [XXXCO] :: bath-attendant; keeper of a bathhouse; balineatorius_A = mkA "balineatorius" "balineatoria" "balineatorium" ; -- [DXXES] :: of/pertaining/related to a bath; - balineatrix_F_N = mkN "balineatrix" "balineatricis " feminine ; -- [XXXFO] :: bath attendant (female); + balineatrix_F_N = mkN "balineatrix" "balineatricis" feminine ; -- [XXXFO] :: bath attendant (female); balineolum_N_N = mkN "balineolum" ; -- [XXXEO] :: small bath; balineum_N_N = mkN "balineum" ; -- [XXXBO] :: bath; bathroom, (public) bath place/rooms (esp. pl.); bathtub; act of bathing; baliolus_A = mkA "baliolus" "baliola" "baliolum" ; -- [DXXFS] :: dark, swarthy, chestnut-colored?; - balis_F_N = mkN "balis" "balis " feminine ; -- [XAXNO] :: unidentified plant; (vine?); + balis_F_N = mkN "balis" "balis" feminine ; -- [XAXNO] :: unidentified plant; (vine?); baliscus_A = mkA "baliscus" "balisca" "baliscum" ; -- [XAXNO] :: kind of vine?; baliscus_M_N = mkN "baliscus" ; -- [XXXFO] :: bath?; balista_F_N = mkN "balista" ; -- [XWXCO] :: ballista, large military engine for throwing stones and missiles; @@ -6869,8 +6869,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat balito_V = mkV "balitare" ; -- [XAXFO] :: bleat; ballaena_F_N = mkN "ballaena" ; -- [XAXDO] :: whale; ballaenaceus_A = mkA "ballaenaceus" "ballaenacea" "ballaenaceum" ; -- [XAXFO] :: made of whalebone; - ballatio_F_N = mkN "ballatio" "ballationis " feminine ; -- [GDXEK] :: dance; - ballator_M_N = mkN "ballator" "ballatoris " masculine ; -- [XDXIS] :: dancer?; + ballatio_F_N = mkN "ballatio" "ballationis" feminine ; -- [GDXEK] :: dance; + ballator_M_N = mkN "ballator" "ballatoris" masculine ; -- [XDXIS] :: dancer?; ballematicus_A = mkA "ballematicus" "ballematica" "ballematicum" ; -- [DDXFS] :: accompanying the dance; ballena_F_N = mkN "ballena" ; -- [XAXDO] :: whale; ballista_F_N = mkN "ballista" ; -- [XWXCO] :: ballista, large military engine for throwing stones and missiles; @@ -6880,18 +6880,18 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat ballium_N_N = mkN "ballium" ; -- [FLXEM] :: bail; security; ballivus_M_N = mkN "ballivus" ; -- [FLXFJ] :: bailiff; ballo_V = mkV "ballare" ; -- [DDXES] :: dance; - ballote_F_N = mkN "ballote" "ballotes " feminine ; -- [XAXNO] :: plant, black horehound?; + ballote_F_N = mkN "ballote" "ballotes" feminine ; -- [XAXNO] :: plant, black horehound?; balluca_F_N = mkN "balluca" ; -- [DXSES] :: gold-dust, gold-sand; - ballux_F_N = mkN "ballux" "ballucis " feminine ; -- [DXSES] :: gold-dust, gold-sand; + ballux_F_N = mkN "ballux" "ballucis" feminine ; -- [DXSES] :: gold-dust, gold-sand; balnea_F_N = mkN "balnea" ; -- [XXXBO] :: baths (pl.); - balneare_N_N = mkN "balneare" "balnearis " neuter ; -- [XXXEO] :: bath utensils (pl.); + balneare_N_N = mkN "balneare" "balnearis" neuter ; -- [XXXEO] :: bath utensils (pl.); balnearis_A = mkA "balnearis" "balnearis" "balneare" ; -- [XXXEO] :: pertaining/belonging to baths/bathhouse; bathhouse; balnearium_N_N = mkN "balnearium" ; -- [XXXCO] :: baths (pl.), bathhouses, places for bathing; balnearius_A = mkA "balnearius" "balnearia" "balnearium" ; -- [XXXDO] :: pertaining/relating to baths/bathhouse; bathhouse; balneaticum_N_N = mkN "balneaticum" ; -- [XXXFS] :: bath money, piece of money to be paid for bath; - balneator_M_N = mkN "balneator" "balneatoris " masculine ; -- [XXXCO] :: bath-attendant; keeper of a bathhouse; + balneator_M_N = mkN "balneator" "balneatoris" masculine ; -- [XXXCO] :: bath-attendant; keeper of a bathhouse; balneatorius_A = mkA "balneatorius" "balneatoria" "balneatorium" ; -- [DXXES] :: of/pertaining/related to a bath; - balneatrix_F_N = mkN "balneatrix" "balneatricis " feminine ; -- [XXXFO] :: bath attendant (female); + balneatrix_F_N = mkN "balneatrix" "balneatricis" feminine ; -- [XXXFO] :: bath attendant (female); balneolum_N_N = mkN "balneolum" ; -- [XXXEO] :: small bathroom; balneum_N_N = mkN "balneum" ; -- [XXXBO] :: bath; bathtub; act of bathing; bathroom, (public) bath place/rooms (esp. pl.); balo_V = mkV "balare" ; -- [XAXCO] :: bleat, baa (like a sheep); talk foolishly; @@ -6903,12 +6903,12 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat balteum_N_N = mkN "balteum" ; -- [XXXBO] :: belt; shoulder-band/baldric; woman's girdle; band around neck/breast of horse; balteus_M_N = mkN "balteus" ; -- [XXXBO] :: belt; shoulder-band/baldric; woman's girdle; band around neck/breast of horse; baluca_F_N = mkN "baluca" ; -- [DXSES] :: gold-dust, gold-sand; - balux_F_N = mkN "balux" "balucis " feminine ; -- [XXSEO] :: gold-dust, gold-sand; + balux_F_N = mkN "balux" "balucis" feminine ; -- [XXSEO] :: gold-dust, gold-sand; bambusa_F_N = mkN "bambusa" ; -- [GAXEK] :: bamboo; banana_F_N = mkN "banana" ; -- [GAXEK] :: banana; bananicus_A = mkA "bananicus" "bananica" "bananicum" ; -- [XAXNO] :: variety of vine (w/vitis); banca_F_N = mkN "banca" ; -- [FXXDM] :: bank/mound; bench/shelf, tradesman's stall/counter; money-changer's table; - bancale_N_N = mkN "bancale" "bancalis " neuter ; -- [FXXFE] :: cushion; + bancale_N_N = mkN "bancale" "bancalis" neuter ; -- [FXXFE] :: cushion; bancarius_M_N = mkN "bancarius" ; -- [GXXEK] :: banker; banchus_M_N = mkN "banchus" ; -- [DAXFS] :: species of fish; bancus_M_N = mkN "bancus" ; -- [DAXFS] :: species of fish; @@ -6919,15 +6919,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat bapheum_N_N = mkN "bapheum" ; -- [DXXES] :: dye-house; bapheus_M_N = mkN "bapheus" ; -- [DXXES] :: dyer; baphium_N_N = mkN "baphium" ; -- [DXXES] :: dye-house; - baptes_M_N = mkN "baptes" "baptae " masculine ; -- [XXXNO] :: precious stone; - baptisma_N_N = mkN "baptisma" "baptismatis " neuter ; -- [XEXCS] :: baptism; dipping in/under, washing, ablution; + baptes_M_N = mkN "baptes" "baptae" masculine ; -- [XXXNO] :: precious stone; + baptisma_N_N = mkN "baptisma" "baptismatis" neuter ; -- [XEXCS] :: baptism; dipping in/under, washing, ablution; baptismalis_A = mkA "baptismalis" "baptismalis" "baptismale" ; -- [EEXDE] :: baptismal; baptismum_N_N = mkN "baptismum" ; -- [EEXCE] :: baptism; washing, sprinkling; baptismus_M_N = mkN "baptismus" ; -- [EEXCE] :: baptism; washing, sprinkling; baptista_M_N = mkN "baptista" ; -- [EEXDX] :: baptizer; baptist; baptisterium_N_N = mkN "baptisterium" ; -- [XXXFO] :: plunge-bath, place for bathing/swimming; baptistery; baptismal font; - baptizatio_F_N = mkN "baptizatio" "baptizationis " feminine ; -- [DEXFS] :: baptizing, baptism; - baptizator_M_N = mkN "baptizator" "baptizatoris " masculine ; -- [DEXES] :: baptizer, baptist; minister of baptism; + baptizatio_F_N = mkN "baptizatio" "baptizationis" feminine ; -- [DEXFS] :: baptizing, baptism; + baptizator_M_N = mkN "baptizator" "baptizatoris" masculine ; -- [DEXES] :: baptizer, baptist; minister of baptism; baptizo_V2 = mkV2 (mkV "baptizare") ; -- [EEXDX] :: baptize; immerse; barathrum_N_N = mkN "barathrum" ; -- [XXXCO] :: abyss, chasm, pit; the infernal region, the underworld; baratrum_N_N = mkN "baratrum" ; -- [EEXEV] :: infernal region, hell; @@ -6940,7 +6940,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat barbaricum_Adv = mkAdv "barbaricum" ; -- [DXXES] :: barbarously, uncouthly, rudely; like a foreigner, in a foreign language; barbaricum_N_N = mkN "barbaricum" ; -- [DXXCS] :: foreign land/country; 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; + 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; 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; @@ -6953,25 +6953,25 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; - barbitos_F_N = mkN "barbitos" "barbiti " feminine ; -- [XXXEO] :: lyre (properly of a lower pitch); lute (Ecc); - barbitos_M_N = mkN "barbitos" "barbiti " masculine ; -- [XXXEO] :: lyre (properly of a lower pitch); lute (Ecc); + 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; + barbitos_F_N = mkN "barbitos" "barbiti" feminine ; -- [XXXEO] :: lyre (properly of a lower pitch); lute (Ecc); + barbitos_M_N = mkN "barbitos" "barbiti" masculine ; -- [XXXEO] :: lyre (properly of a lower pitch); lute (Ecc); barbo_V2 = mkV2 (mkV "barbare") ; -- [XXXFO] :: supply with a beard (or perhaps a nonsense word); barbula_F_N = mkN "barbula" ; -- [XXXCO] :: little beard (as worn by young Romans L+S); barbus_M_N = mkN "barbus" ; -- [DAXFS] :: barbel, river barbel (Cyprinus barbus); barca_F_N = mkN "barca" ; -- [XXXIO] :: small boat; bark, barge; barcala_M_N = mkN "barcala" ; -- [XXXFO] :: fool, simpleton; - barditus_M_N = mkN "barditus" "barditus " masculine ; -- [XWXEO] :: trumpeting (of an elephant); war-cry, battle-cry (of the Germans); + barditus_M_N = mkN "barditus" "barditus" masculine ; -- [XWXEO] :: trumpeting (of an elephant); war-cry, battle-cry (of the Germans); bardocucullus_M_N = mkN "bardocucullus" ; -- [XXFEO] :: cloak/overcoat (Gallic); (with hood/cowl, of woolen stuff L+S); bardus_A = mkA "bardus" "barda" "bardum" ; -- [XXXDO] :: stupid, slow, dull; - barile_N_N = mkN "barile" "barilis " neuter ; -- [FXXFE] :: cask; - baripe_F_N = mkN "baripe" "baripes " feminine ; -- [XXXNO] :: precious stone; - baris_F_N = mkN "baris" "baridis " feminine ; -- [XXEFO] :: flat-bottomed boat used on the Nile; - baritus_M_N = mkN "baritus" "baritus " masculine ; -- [XWXEO] :: trumpeting (of an elephant); war-cry, battle-cry (of the Germans); - baro_M_N = mkN "baro" "baronis " masculine ; -- [XXXCO] :: block-head, lout, dunce, simpleton; slave (Latham); + barile_N_N = mkN "barile" "barilis" neuter ; -- [FXXFE] :: cask; + baripe_F_N = mkN "baripe" "baripes" feminine ; -- [XXXNO] :: precious stone; + baris_F_N = mkN "baris" "baridis" feminine ; -- [XXEFO] :: flat-bottomed boat used on the Nile; + baritus_M_N = mkN "baritus" "baritus" masculine ; -- [XWXEO] :: trumpeting (of an elephant); war-cry, battle-cry (of the Germans); + baro_M_N = mkN "baro" "baronis" masculine ; -- [XXXCO] :: block-head, lout, dunce, simpleton; slave (Latham); barocus_A = mkA "barocus" "baroca" "barocum" ; -- [GXXEK] :: baroque; odd; barometrum_N_N = mkN "barometrum" ; -- [GTXEK] :: barometer; baronia_F_N = mkN "baronia" ; -- [FLXFJ] :: barony; @@ -6979,31 +6979,31 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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); barycus_A = mkA "barycus" "baryca" "barycum" ; -- [XXXFS] :: top-heavy; with low walls and broad roofs (L+S); - barypicron_N_N = mkN "barypicron" "barypicri " neuter ; -- [DAHFS] :: Greek epithet for wormwood (very bitter); - barython_M_N = mkN "barython" "barythonis " masculine ; -- [DAXFS] :: plant; (also called Sabina); + barypicron_N_N = mkN "barypicron" "barypicri" neuter ; -- [DAHFS] :: Greek epithet for wormwood (very bitter); + 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; 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; + 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); basella_F_N = mkN "basella" ; -- [DTXFS] :: small pedestal/base; - basiatio_F_N = mkN "basiatio" "basiationis " feminine ; -- [XXXEO] :: kiss; - basiator_M_N = mkN "basiator" "basiatoris " masculine ; -- [XXXFO] :: kisser, one who kisses; + basiatio_F_N = mkN "basiatio" "basiationis" feminine ; -- [XXXEO] :: kiss; + basiator_M_N = mkN "basiator" "basiatoris" masculine ; -- [XXXFO] :: kisser, one who kisses; basicula_F_N = mkN "basicula" ; -- [XXXFO] :: small pedestal/base; basileum_N_N = mkN "basileum" ; -- [XXEIO] :: crown (on statue of Isis); royal/princely ornament; an eye salve; - basileus_M_N = mkN "basileus" "basileus " masculine ; -- [XXXFO] :: king; + basileus_M_N = mkN "basileus" "basileus" masculine ; -- [XXXFO] :: king; basilica_F_N = mkN "basilica" ; -- [XXXCO] :: basilica; oblong hall with colonnade as law court/exchange; church (medieval); basilicanus_M_N = mkN "basilicanus" ; -- [XXXFO] :: haunter of basilicas; one doing/soliciting business in cathedral/public place; basilice_Adv = mkAdv "basilice" ; -- [XXXEO] :: royally, in a princely fashion/a magnificent manner; wholly, completely (L+S); - basilice_F_N = mkN "basilice" "basilices " feminine ; -- [XXXFO] :: black plaster; an eye salve; + basilice_F_N = mkN "basilice" "basilices" feminine ; -- [XXXFO] :: black plaster; an eye salve; basilicola_F_N = mkN "basilicola" ; -- [DEXES] :: small/little church/chapel; - basilicon_N_N = mkN "basilicon" "basilici " neuter ; -- [XXXDO] :: black plaster; an eye salve; + basilicon_N_N = mkN "basilicon" "basilici" neuter ; -- [XXXDO] :: black plaster; an eye salve; basilicum_N_N = mkN "basilicum" ; -- [XXXEO] :: best throw in dice; (royal/king's throw); princely robe; best kind of nuts; basilicus_A = mkA "basilicus" "basilica" "basilicum" ; -- [XXXCO] :: royal, princely, magnificent, splendid; kind of vine; basilicus_M_N = mkN "basilicus" ; -- [XXXES] :: best throw in dice; (royal/king's throw); (also called Venereus); @@ -7039,23 +7039,23 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat batillus_M_N = mkN "batillus" ; -- [DXXES] :: shovel; fire/coal/dirt/dung shovel; chafing dish, fire/fumigating/incense pan; batioca_F_N = mkN "batioca" ; -- [XXXFO] :: drinking vessel, cup, goblet; batiola_F_N = mkN "batiola" ; -- [XXXFO] :: drinking vessel, cup, goblet; - batis_F_N = mkN "batis" "batis " feminine ; -- [XAXEO] :: plant (prob. samphire, Crithmum maritimum and sim. species); - batrachion_N_N = mkN "batrachion" "batrachii " neuter ; -- [XAXEO] :: plant of genus Ranunculus; - batrachites_M_N = mkN "batrachites" "batrachitae " masculine ; -- [XXXNO] :: precious stone (frog-green L+S); + batis_F_N = mkN "batis" "batis" feminine ; -- [XAXEO] :: plant (prob. samphire, Crithmum maritimum and sim. species); + batrachion_N_N = mkN "batrachion" "batrachii" neuter ; -- [XAXEO] :: plant of genus Ranunculus; + batrachites_M_N = mkN "batrachites" "batrachitae" masculine ; -- [XXXNO] :: precious stone (frog-green L+S); batrachium_N_N = mkN "batrachium" ; -- [XAXEO] :: plant of genus Ranunculus; 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); + battis_F_N = mkN "battis" "battis" feminine ; -- [XAXEO] :: plant (prob. samphire, Crithmum maritimum and sim. species); 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; + battuens_M_N = mkN "battuens" "battuentis" masculine ; -- [GXXEK] :: fencer; 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); 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; + baubatus_M_N = mkN "baubatus" "baubatus" masculine ; -- [GXXEK] :: barking; baubo_V = mkV "baubare" ; -- [FXXEK] :: bark; baubor_V = mkV "baubari" ; -- [XXXEO] :: bark (of dogs), bay, howl; baxa_F_N = mkN "baxa" ; -- [XXXES] :: kind of sandal; (woven, worn on comic stage and by philosophers L+S); @@ -7066,11 +7066,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat bdellium_N_N = mkN "bdellium" ; -- [XAXEO] :: aromatic gum; tree (prob. of genus Balsamodendron); be_Interj = ss "be" ; -- [XAXFO] :: baa (sound made by sheep); beate_Adv =mkAdv "beate" "beatius" "beatissime" ; -- [XXXCO] :: happily; excellently, felicitously; lavishly, abundantly; - beatificatio_F_N = mkN "beatificatio" "beatificationis " feminine ; -- [FEXEE] :: beatification, act of beatifying; (first step to sainthood); + beatificatio_F_N = mkN "beatificatio" "beatificationis" feminine ; -- [FEXEE] :: beatification, act of beatifying; (first step to sainthood); beatifico_V2 = mkV2 (mkV "beatificare") ; -- [DEXCS] :: bless; make happy; beatificus_A = mkA "beatificus" "beatifica" "beatificum" ; -- [XXXFO] :: making happy or blessed, blessing; - beatitas_F_N = mkN "beatitas" "beatitatis " feminine ; -- [XXXEO] :: supreme happiness, blessedness, a blessed condition, beatitude; - beatitudo_F_N = mkN "beatitudo" "beatitudinis " feminine ; -- [XXXDO] :: supreme happiness, blessedness, a blessed condition, beatitude; + beatitas_F_N = mkN "beatitas" "beatitatis" feminine ; -- [XXXEO] :: supreme happiness, blessedness, a blessed condition, beatitude; + beatitudo_F_N = mkN "beatitudo" "beatitudinis" feminine ; -- [XXXDO] :: supreme happiness, blessedness, a blessed condition, beatitude; beatulus_A = mkA "beatulus" "beatula" "beatulum" ; -- [XXXFO] :: blessed (said of a deceased person); beatulus_M_N = mkN "beatulus" ; -- [DXXFS] :: sainted/happy fellow; (ironic/of the dead); beatum_N_N = mkN "beatum" ; -- [XXXES] :: happiness, blessedness; good fortune; good circumstances; @@ -7082,22 +7082,22 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat bebrinus_A = mkA "bebrinus" "bebrina" "bebrinum" ; -- [DAXES] :: of/pertaining to beaver, beaver-; beccus_M_N = mkN "beccus" ; -- [DAXES] :: bill, beak; (esp. of cock); 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); + 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; 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"); 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?); + 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; bellarium_N_N = mkN "bellarium" ; -- [XXXCO] :: dessert; sweetmeats (pl.), dainties, sweets; bellator_A = mkA "bellator" "bellatoris"; -- [XXXCO] :: warlike, martial; of war [~ equus => war horse]; - bellator_M_N = mkN "bellator" "bellatoris " masculine ; -- [XWXCO] :: warrior, fighter; soldier; + bellator_M_N = mkN "bellator" "bellatoris" masculine ; -- [XWXCO] :: warrior, fighter; soldier; bellatorius_A = mkA "bellatorius" "bellatoria" "bellatorium" ; -- [XWXFO] :: warlike, pugnacious; useful in war; martial; bellatorus_A = mkA "bellatorus" "bellatora" "bellatorum" ; -- [XWXCS] :: war-like, martial, ready to fight, valorous; spirited/war/battle (horse); bellatrix_A = mkA "bellatrix" "bellatricis"; -- [XWXCO] :: warlike, martial; skilled/useful in war; of animals/things used in war; - bellatrix_F_N = mkN "bellatrix" "bellatricis " feminine ; -- [XWXFS] :: female warrior; + bellatrix_F_N = mkN "bellatrix" "bellatricis" feminine ; -- [XWXFS] :: female warrior; bellatulus_A = mkA "bellatulus" "bellatula" "bellatulum" ; -- [XXXFS] :: pretty, neat; bellax_A = mkA "bellax" "bellacis"; -- [XWXFO] :: warlike; martial; belle_Adv =mkAdv "belle" "bellius" "bellissime" ; -- [XXXBO] :: |well; [w/esse => have a nice time; w/habere => be well; w/est => all is well]; @@ -7109,14 +7109,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat bellicus_A = mkA "bellicus" "bellica" "bellicum" ; -- [XWXCO] :: of war, military; warlike; [~um canere => sound attack horn/begin hostilities]; bellifer_A = mkA "bellifer" "bellifera" "belliferum" ; -- [XWXFS] :: waging war, warring; warlike, martial; war-, battle-; belliger_A = mkA "belliger" "belligera" "belligerum" ; -- [XWXCO] :: waging war, warring; warlike, martial; war-, battle-; - belligerator_M_N = mkN "belligerator" "belligeratoris " masculine ; -- [DWXFS] :: warrior, combatant; + belligerator_M_N = mkN "belligerator" "belligeratoris" masculine ; -- [DWXFS] :: warrior, combatant; belligero_V = mkV "belligerare" ; -- [XWXCO] :: wage or carry on war; be at war; belligeror_V = mkV "belligerari" ; -- [XWXEO] :: wage or carry on war; be at war; - bellio_F_N = mkN "bellio" "bellionis " feminine ; -- [XAXNO] :: meadow flower (unidentified); (yellow ox-eye daisy - L+S); + bellio_F_N = mkN "bellio" "bellionis" feminine ; -- [XAXNO] :: meadow flower (unidentified); (yellow ox-eye daisy - L+S); bellipotens_A = mkA "bellipotens" "bellipotentis"; -- [XWXDS] :: powerful/mighty/valiant in war; (often of gods); - bellis_F_N = mkN "bellis" "bellis " feminine ; -- [XAXNO] :: flower (perh. daisy); (white daisy, ox-eye - L+S); + bellis_F_N = mkN "bellis" "bellis" feminine ; -- [XAXNO] :: flower (perh. daisy); (white daisy, ox-eye - L+S); bellisonus_A = mkA "bellisonus" "bellisona" "bellisonum" ; -- [DWXFS] :: sounding of/like war/battle; - bellitudo_F_N = mkN "bellitudo" "bellitudinis " feminine ; -- [XXXEO] :: elegance; beauty, loveliness; + bellitudo_F_N = mkN "bellitudo" "bellitudinis" feminine ; -- [XXXEO] :: elegance; beauty, loveliness; bello_V = mkV "bellare" ; -- [XWXBO] :: fight, wage war, struggle; take part in war/battle/fight (also animals/games); bellonaria_F_N = mkN "bellonaria" ; -- [DAXFS] :: plant (solanum) used by priests at festival of Bellona (goddess of war); bellor_V = mkV "bellari" ; -- [XWXCO] :: fight, wage war, struggle; take part in war/battle/fight (also animals/games); @@ -7131,9 +7131,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat bellum_N_N = mkN "bellum" ; -- [XWXAO] :: war, warfare; battle, combat, fight; (at/in) (the) war(s); military force, arms; 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; - belotocos_M_N = mkN "belotocos" "belotoci " masculine ; -- [DAXFS] :: plant; (also called dictamnus); + 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; + belotocos_M_N = mkN "belotocos" "belotoci" masculine ; -- [DAXFS] :: plant; (also called dictamnus); belua_F_N = mkN "belua" ; -- [XAXBO] :: beast, wild animal (incl. sea creature); monster, brute (great size/ferocity); belualis_A = mkA "belualis" "belualis" "beluale" ; -- [DAXES] :: bestial, brutish; brutal; beluatus_A = mkA "beluatus" "beluata" "beluatum" ; -- [XAXFO] :: provided with beasts (real or on embroidery); @@ -7141,25 +7141,25 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat beluinus_A = mkA "beluinus" "beluina" "beluinum" ; -- [XAXFO] :: proper/pertaining to beasts, bestial; beluosus_A = mkA "beluosus" "beluosa" "beluosum" ; -- [XAXFO] :: that abounds/abounding in beasts/monsters; beluus_A = mkA "beluus" "belua" "beluum" ; -- [XAXFO] :: proper/pertaining to beasts, bestial; - bema_N_N = mkN "bema" "bematis " neuter ; -- [EEXEE] :: sanctuary; bishop's chair; pulpit; + 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; + 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; + 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.); benefice_Adv = mkAdv "benefice" ; -- [XXXFO] :: beneficently; beneficentia_F_N = mkN "beneficentia" ; -- [XXXDO] :: beneficence, kindness; honorable treatment; beneficiarius_A = mkA "beneficiarius" "beneficiaria" "beneficiarium" ; -- [XXXFO] :: that is given as a favor; pertaining to a favor; beneficiarius_M_N = mkN "beneficiarius" ; -- [FEXEE] :: prebendary, holder of benefice; - beneficiatus_M_N = mkN "beneficiatus" "beneficiatus " masculine ; -- [XXXIO] :: status of beneficiarius, privileged soldier (exempt from certain duties); + 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; beneficus_A = mkA "beneficus" ; -- [XXXCO] :: beneficent, kind, generous, liberal, serviceable; @@ -7176,21 +7176,21 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat benesuadus_A = mkA "benesuadus" "benesuada" "benesuadum" ; -- [XXXFO] :: advising well; benevole_Adv = mkAdv "benevole" ; -- [XXXDO] :: in a spirit of good will, in a friendly manner; benevolens_A = mkA "benevolens" "benevolentis"; -- [XXXCO] :: kind, friendly, benevolent, well-wishing, kind-hearted; - benevolens_F_N = mkN "benevolens" "benevolentis " feminine ; -- [XXXCO] :: friend, well-wisher, kind-heart; - benevolens_M_N = mkN "benevolens" "benevolentis " masculine ; -- [XXXCO] :: friend, well-wisher, kind-heart; + benevolens_F_N = mkN "benevolens" "benevolentis" feminine ; -- [XXXCO] :: friend, well-wisher, kind-heart; + benevolens_M_N = mkN "benevolens" "benevolentis" masculine ; -- [XXXCO] :: friend, well-wisher, kind-heart; benevolentia_F_N = mkN "benevolentia" ; -- [XXXCO] :: benevolence, kindness, goodwill; favor; endearments; benevolus_A = mkA "benevolus" "benevola" "benevolum" ; -- [XXXCO] :: well-wishing, kind, benevolent, friendly, devoted; benevolus_M_N = mkN "benevolus" ; -- [XXXCO] :: well-wisher, friend; benificium_N_N = mkN "benificium" ; -- [XXXEO] :: kindness/favor/benefit/service/help; privilege/right; sacred office+revenues; benigne_Adv =mkAdv "benigne" "benignius" "benignissime" ; -- [XXXCO] :: kindly, benevolently, obligingly; courteously, cheerfully; freely, generously; - benignitas_F_N = mkN "benignitas" "benignitatis " feminine ; -- [XXXCO] :: kindness, courtesy; friendliness, benevolence; liberality, favor; bounty; mercy; + 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); 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; - benivolens_M_N = mkN "benivolens" "benivolentis " masculine ; -- [XXXCO] :: friend, well-wisher, kind-heart; + benivolens_F_N = mkN "benivolens" "benivolentis" feminine ; -- [XXXCO] :: friend, well-wisher, kind-heart; + benivolens_M_N = mkN "benivolens" "benivolentis" masculine ; -- [XXXCO] :: friend, well-wisher, kind-heart; benivolentia_F_N = mkN "benivolentia" ; -- [XXXCO] :: benevolence, kindness, goodwill; favor; endearments; benivolus_A = mkA "benivolus" "benivola" "benivolum" ; -- [XXXCO] :: well-wishing, kind, benevolent, friendly, devoted; benivolus_M_N = mkN "benivolus" ; -- [XXXCO] :: well-wisher, friend; @@ -7199,22 +7199,22 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat benzinarius_M_N = mkN "benzinarius" ; -- [GXXEK] :: pump-attendant; benzinum_N_N = mkN "benzinum" ; -- [GXXEK] :: petrol; beo_V2 = mkV2 (mkV "beare") ; -- [XXXCO] :: bless, make happy, gladden, delight; enrich (with); - berbex_M_N = mkN "berbex" "berbecis " masculine ; -- [XXXCO] :: wether (castrated male sheep); stupid/sluggish person; + berbex_M_N = mkN "berbex" "berbecis" masculine ; -- [XXXCO] :: wether (castrated male sheep); stupid/sluggish person; bergomagister_M_N = mkN "bergomagister" ; -- [ELXEM] :: bergomeister; mayor; berillus_M_N = mkN "berillus" ; -- [XXXCS] :: beryl; [berylius aeroides => sapphire (L+S)]; berna_M_N = mkN "berna" ; -- [FLXFM] :: slave; servant; bernus_M_N = mkN "bernus" ; -- [FLXFM] :: serf; berula_F_N = mkN "berula" ; -- [DAXFS] :: herb (also called cardamine); berullus_M_N = mkN "berullus" ; -- [XXXCO] :: beryl; [berylius aeroides => sapphire (L+S)]; - bervex_M_N = mkN "bervex" "bervecis " masculine ; -- [XXXCO] :: wether (castrated male sheep); stupid/sluggish person; - beryllos_M_N = mkN "beryllos" "berylli " masculine ; -- [XXXCO] :: beryl; [berylius aeroides => sapphire (L+S)]; + bervex_M_N = mkN "bervex" "bervecis" masculine ; -- [XXXCO] :: wether (castrated male sheep); stupid/sluggish person; + beryllos_M_N = mkN "beryllos" "berylli" masculine ; -- [XXXCO] :: beryl; [berylius aeroides => sapphire (L+S)]; beryllus_M_N = mkN "beryllus" ; -- [XXXCO] :: beryl; [berylius aeroides => sapphire (L+S)]; - bes_M_N = mkN "bes" "bessis " masculine ; -- [XXXDX] :: two thirds of any whole; [ex bese => in ratio of 2:3; or 8, 2/3 of 12]; + bes_M_N = mkN "bes" "bessis" masculine ; -- [XXXDX] :: two thirds of any whole; [ex bese => in ratio of 2:3; or 8, 2/3 of 12]; besalis_A = mkA "besalis" "besalis" "besale" ; -- [XXXEO] :: two thirds; of small value; (often means eight, as 2/3 of 12 mos. L+S); bessalis_A = mkA "bessalis" "bessalis" "bessale" ; -- [XXXEO] :: two thirds; of small value; (often means eight, as 2/3 of 12 mos. L+S); bestia_F_N = mkN "bestia" ; -- [XAXBO] :: beast, animal, creature; wild beast/animal, beast of prey in arena; bestialis_A = mkA "bestialis" "bestialis" "bestiale" ; -- [DAXFS] :: bestial, like a beast; fierce; - bestialitas_F_N = mkN "bestialitas" "bestialitatis " feminine ; -- [FEXFE] :: bestiality; + bestialitas_F_N = mkN "bestialitas" "bestialitatis" feminine ; -- [FEXFE] :: bestiality; bestiarius_A = mkA "bestiarius" "bestiaria" "bestiarium" ; -- [DAXFS] :: of/with/pertaining to beasts; bestiarius_M_N = mkN "bestiarius" ; -- [XXXDO] :: fighter with wild beasts at public shows; bestiola_F_N = mkN "bestiola" ; -- [XAXCO] :: little creature, insect; @@ -7223,7 +7223,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat betaceus_A = mkA "betaceus" "betacea" "betaceum" ; -- [XAXEO] :: of/from/pertaining to a beet; betaceus_M_N = mkN "betaceus" ; -- [XAXES] :: beetroot; 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; + 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; @@ -7232,12 +7232,12 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat biaeothanatus_A = mkA "biaeothanatus" "biaeothanata" "biaeothanatum" ; -- [DXXFS] :: dying by violence; that dies a violent death; biarchia_F_N = mkN "biarchia" ; -- [DXXES] :: office of biarchus, commissaryship; biarchus_M_N = mkN "biarchus" ; -- [DXXES] :: commissary, superintendent of provisions; - bibale_N_N = mkN "bibale" "bibalis " neuter ; -- [GXXEK] :: gratuity; + bibale_N_N = mkN "bibale" "bibalis" neuter ; -- [GXXEK] :: gratuity; bibax_A = mkA "bibax" "bibacis"; -- [XXXFO] :: that is given to drinking, given to drink; biberarius_M_N = mkN "biberarius" ; -- [XXXFO] :: drink seller; bibilis_A = mkA "bibilis" "bibilis" "bibile" ; -- [DXXFS] :: drinkable, potable; - bibio_M_N = mkN "bibio" "bibionis " masculine ; -- [EAXES] :: small insect generated in wine; - bibitor_M_N = mkN "bibitor" "bibitoris " masculine ; -- [XXXIO] :: drinker; tippler; + bibio_M_N = mkN "bibio" "bibionis" masculine ; -- [EAXES] :: small insect generated in wine; + bibitor_M_N = mkN "bibitor" "bibitoris" masculine ; -- [XXXIO] :: drinker; tippler; biblicus_A = mkA "biblicus" "biblica" "biblicum" ; -- [EEXEE] :: biblical; biblinus_A = mkA "biblinus" "biblina" "biblinum" ; -- [DXEFS] :: made of Egyptian papyrus; bibliographia_F_N = mkN "bibliographia" ; -- [GXXEK] :: bibliography; @@ -7249,22 +7249,22 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat bibliotheca_F_N = mkN "bibliotheca" ; -- [XXXCO] :: library (either collection of books or the building, also person in charge); bibliothecalis_A = mkA "bibliothecalis" "bibliothecalis" "bibliothecale" ; -- [DXXFS] :: of/belonging to a library (either collection of books or the building); bibliothecarius_M_N = mkN "bibliothecarius" ; -- [XXXFO] :: librarian; - bibliothece_F_N = mkN "bibliothece" "bibliotheces " feminine ; -- [XXXCO] :: library (either collection of books or the building, also person in charge); + bibliothece_F_N = mkN "bibliothece" "bibliotheces" feminine ; -- [XXXCO] :: library (either collection of books or the building, also person in charge); 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; + 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; bibulus_A = mkA "bibulus" "bibula" "bibulum" ; -- [XXXCO] :: fond of drinking, ever thirsty; soaking, sodden; spongy, absorbent, porous; - bicallis_M_N = mkN "bicallis" "bicallis " masculine ; -- [FXXEN] :: foot-path, path; + bicallis_M_N = mkN "bicallis" "bicallis" masculine ; -- [FXXEN] :: foot-path, path; bicameratum_N_N = mkN "bicameratum" ; -- [DTXES] :: receptacle with two compartments; bicameratus_A = mkA "bicameratus" "bicamerata" "bicameratum" ; -- [DTXES] :: double vaulted/arched; bicaps_A = mkA "bicaps" "bicapitis"; -- [XXXIO] :: two-headed; with two summits; having two parts, two-fold; biceps_A = mkA "biceps" "bicipitis"; -- [XXXCO] :: two-headed; with two summits; having two parts, two-fold; bicepsos_A = mkA "bicepsos" "bicepsos" "bicepson" ; -- [XXXFS] :: two-headed; with two summits; having two parts, two-fold; - bicessis_M_N = mkN "bicessis" "bicessis " masculine ; -- [XXXES] :: twenty asses (money); + bicessis_M_N = mkN "bicessis" "bicessis" masculine ; -- [XXXES] :: twenty asses (money); bicinium_N_N = mkN "bicinium" ; -- [DDXFS] :: duet; bicips_A = mkA "bicips" "bicipitis"; -- [BXXDS] :: two-headed; with two summits; having two parts, two-fold; biclinium_N_N = mkN "biclinium" ; -- [XXXEO] :: dining couch for two persons; @@ -7273,7 +7273,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat bicolorus_A = mkA "bicolorus" "bicolora" "bicolorum" ; -- [DXXCS] :: of two colors; bicomis_A = mkA "bicomis" "bicomis" "bicome" ; -- [DAXFS] :: with hair/bristles down on both sides of neck, with double mane (horses); bicornis_A = mkA "bicornis" "bicornis" "bicorne" ; -- [XXXCO] :: two-horned; two-pronged; having two points; having two peaks (mountain); - bicornis_M_N = mkN "bicornis" "bicornis " masculine ; -- [XEXFS] :: horned animals (pl.) sacrifice; + bicornis_M_N = mkN "bicornis" "bicornis" masculine ; -- [XEXFS] :: horned animals (pl.) sacrifice; bicorpor_A = mkA "bicorpor" "bicorporis"; -- [XXXEO] :: double-bodied, having two bodies; bicors_A = mkA "bicors" "bicordis"; -- [DXXES] :: having two hearts; dissembling, false, treacherous; bicoxus_A = mkA "bicoxus" "bicoxa" "bicoxum" ; -- [XXXFS] :: having two thighs/hips; having two haunches; @@ -7281,11 +7281,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat bicubitalis_A = mkA "bicubitalis" "bicubitalis" "bicubitale" ; -- [DXXES] :: of two cubits length; bicubitalus_A = mkA "bicubitalus" "bicubitala" "bicubitalum" ; -- [DXXES] :: of two cubits length; bidens_A = mkA "bidens" "bidentis"; -- [XAXCO] :: two-pronged; with two teeth; two bladed; having two permanent teeth; - bidens_F_N = mkN "bidens" "bidentis " feminine ; -- [XEXCO] :: animal for sacrifice (esp. sheep); - bidens_M_N = mkN "bidens" "bidentis " masculine ; -- [XAXCO] :: heavy hoe, mattock with two iron teeth; - bidental_N_N = mkN "bidental" "bidentalis " neuter ; -- [XEXCO] :: place struck by lightning where forbidden to tread; sacrifice offered there; + bidens_F_N = mkN "bidens" "bidentis" feminine ; -- [XEXCO] :: animal for sacrifice (esp. sheep); + bidens_M_N = mkN "bidens" "bidentis" masculine ; -- [XAXCO] :: heavy hoe, mattock with two iron teeth; + bidental_N_N = mkN "bidental" "bidentalis" neuter ; -- [XEXCO] :: place struck by lightning where forbidden to tread; sacrifice offered there; bidentalis_A = mkA "bidentalis" "bidentalis" "bidentale" ; -- [XEXIO] :: of sacred place (place struck by lightning) or of sacrifice offered there; - bidentatio_F_N = mkN "bidentatio" "bidentationis " feminine ; -- [XAXFS] :: harrowing; (working ground with bidens, heavy mattock); breaking/tearing up; + bidentatio_F_N = mkN "bidentatio" "bidentationis" feminine ; -- [XAXFS] :: harrowing; (working ground with bidens, heavy mattock); breaking/tearing up; biduanus_A = mkA "biduanus" "biduana" "biduanum" ; -- [FXXFE] :: continuing for two days, for a period of two days; of/for two days; biduum_N_N = mkN "biduum" ; -- [XXXCO] :: two days (period of ...); biduus_A = mkA "biduus" "bidua" "biduum" ; -- [XXXFS] :: continuing for two days, of/for two days; @@ -7306,7 +7306,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat biforis_A = mkA "biforis" "biforis" "bifore" ; -- [XXXDO] :: having two leaves/casements (door/window)/openings, folding; from a double pipe; biformatus_A = mkA "biformatus" "biformata" "biformatum" ; -- [XXXFO] :: of double form, two formed; consisting of two parts/forms; biformis_A = mkA "biformis" "biformis" "biforme" ; -- [XXXCO] :: of double form, two formed; consisting of two parts/forms; two-faced (Janus); - biformitas_F_N = mkN "biformitas" "biformitatis " feminine ; -- [FXXEZ] :: double-fullness; + biformitas_F_N = mkN "biformitas" "biformitatis" feminine ; -- [FXXEZ] :: double-fullness; biforus_A = mkA "biforus" "bifora" "biforum" ; -- [XXXDO] :: having two leaves/casements (door/window)/openings, folding; from a double pipe; bifrons_A = mkA "bifrons" "bifrontis"; -- [XXXFO] :: two-faced, with/having two faces; having two foreheads; having two sides; bifurcum_N_N = mkN "bifurcum" ; -- [XXXEO] :: fork; point at which anything forks; fork of thighs, crotch; @@ -7325,7 +7325,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat bigna_F_N = mkN "bigna" ; -- [XXXFO] :: twins (pl.) (female); bigus_A = mkA "bigus" "biga" "bigum" ; -- [XXXFS] :: yoked two together; (contraction of biiugus); bijugis_A = mkA "bijugis" "bijugis" "bijuge" ; -- [XXXCO] :: two horsed; yoked two abreast; from a chariot; - bijugis_M_N = mkN "bijugis" "bijugis " masculine ; -- [XXXEO] :: horses (pl.) yoked two abreast; two brothers; consuls from same family (L+S); + bijugis_M_N = mkN "bijugis" "bijugis" masculine ; -- [XXXEO] :: horses (pl.) yoked two abreast; two brothers; consuls from same family (L+S); bijugus_A = mkA "bijugus" "bijuga" "bijugum" ; -- [XXXCO] :: two horsed; yoked two abreast; double, a pair of; for two horse chariots; bijugus_M_N = mkN "bijugus" ; -- [XXXEO] :: horses (pl.) yoked two abreast; two brothers; consuls from same family (L+S); bikinianus_A = mkA "bikinianus" "bikiniana" "bikinianum" ; -- [GXXEK] :: bikini-like; @@ -7337,9 +7337,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat bilibris_A = mkA "bilibris" "bilibris" "bilibre" ; -- [XSXDO] :: two-pound, weighing/containing two pounds; (2 Roman pounds = one and a half US); bilinguis_A = mkA "bilinguis" "bilinguis" "bilingue" ; -- [XXXCO] :: two-tongued, speaking two/jumbled languages; treacherous, false, hypocritical; biliosus_A = mkA "biliosus" "biliosa" "biliosum" ; -- [XXXCO] :: full of bile, bilious; - bilis_F_N = mkN "bilis" "bilis " feminine ; -- [XXXBO] :: gall, bile; wrath, anger, indignation; madness, melancholy, folly; + bilis_F_N = mkN "bilis" "bilis" feminine ; -- [XXXBO] :: gall, bile; wrath, anger, indignation; madness, melancholy, folly; bilix_A = mkA "bilix" "bilicis"; -- [XXXFO] :: having two threads; with a double thread, double/two threaded; - bilocatio_F_N = mkN "bilocatio" "bilocationis " feminine ; -- [FXXFE] :: bilocation, fact/power of being in two places at once; + bilocatio_F_N = mkN "bilocatio" "bilocationis" feminine ; -- [FXXFE] :: bilocation, fact/power of being in two places at once; bilongus_A = mkA "bilongus" "bilonga" "bilongum" ; -- [XPXFS] :: doubly long; [~ pes => consisting of two long syllables]; bilustris_A = mkA "bilustris" "bilustris" "bilustre" ; -- [XXXFO] :: lasting two lustres, lasting 10 years; bilychnis_A = mkA "bilychnis" "bilychnis" "bilychne" ; -- [XXXEO] :: having two lights/wicks; @@ -7349,9 +7349,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat bimater_A = mkA "bimater" "bimatris"; -- [XXXEO] :: having two mothers; twice born (of Bacchus); bimatris_A = mkA "bimatris" "bimatris" "bimatre" ; -- [XXXES] :: having two mothers; twice born (of Bacchus); bimatus_A = mkA "bimatus" "bimata" "bimatum" ; -- [XXXIO] :: two years old; - bimatus_M_N = mkN "bimatus" "bimatus " masculine ; -- [XXXEO] :: two years of age; (of animals); + bimatus_M_N = mkN "bimatus" "bimatus" masculine ; -- [XXXEO] :: two years of age; (of animals); bimembris_A = mkA "bimembris" "bimembris" "bimembre" ; -- [XXXCO] :: having limbs of two kinds, part man part beast; - bimembris_M_N = mkN "bimembris" "bimembris " masculine ; -- [XXXEO] :: Centaurs (pl.); part man part beast; + bimembris_M_N = mkN "bimembris" "bimembris" masculine ; -- [XXXEO] :: Centaurs (pl.); part man part beast; bimenstris_A = mkA "bimenstris" "bimenstris" "bimenstre" ; -- [XXXCO] :: two months old; of/for/lasting two months; bimenstruus_A = mkA "bimenstruus" "bimenstrua" "bimenstruum" ; -- [XXXES] :: two months old; of/for/lasting two months; bimestre_Adv = mkAdv "bimestre" ; -- [EXXFE] :: bimestrially, every two months; @@ -7361,8 +7361,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat bimulus_A = mkA "bimulus" "bimula" "bimulum" ; -- [XXXEO] :: two years old (only/a mere); bimus_A = mkA "bimus" "bima" "bimum" ; -- [XXXBO] :: two years old; for/lasting two years; binarius_A = mkA "binarius" "binaria" "binarium" ; -- [DXXES] :: consisting of/containing two; [~ formae => coins of value 2 gold pieces]; - binatio_F_N = mkN "binatio" "binationis " feminine ; -- [FXXFE] :: duplication; - binio_M_N = mkN "binio" "binionis " masculine ; -- [DXXES] :: number two; a deuce; + binatio_F_N = mkN "binatio" "binationis" feminine ; -- [FXXFE] :: duplication; + binio_M_N = mkN "binio" "binionis" masculine ; -- [DXXES] :: number two; a deuce; bino_V2 = mkV2 (mkV "binare") ; -- [FEXFE] :: duplicate; binate (offer two masses in one day); binoctium_N_N = mkN "binoctium" ; -- [XXXFO] :: period of two nights; binoculum_N_N = mkN "binoculum" ; -- [GXXEK] :: binoculars; @@ -7377,7 +7377,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat biometria_F_N = mkN "biometria" ; -- [HSXEK] :: biometry; biometricus_A = mkA "biometricus" "biometrica" "biometricum" ; -- [HSXEK] :: biometric; biopsia_F_N = mkN "biopsia" ; -- [GBXEK] :: biopsy; - bios_M_N = mkN "bios" "bii " masculine ; -- [XAHNS] :: wine (celebrated and wholesome Greek wine L+S); + bios_M_N = mkN "bios" "bii" masculine ; -- [XAHNS] :: wine (celebrated and wholesome Greek wine L+S); biosphaera_F_N = mkN "biosphaera" ; -- [GSXEK] :: biosphere; biotechnicus_M_N = mkN "biotechnicus" ; -- [HSXEK] :: biotechnician; biothanatus_A = mkA "biothanatus" "biothanata" "biothanatum" ; -- [DXXFS] :: dying by violence; that dies a violent death; @@ -7386,34 +7386,34 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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); bipatens_A = mkA "bipatens" "bipatentis"; -- [XXXEO] :: opening two ways; open in two directions; having both leaves open, wide open; bipeda_F_N = mkN "bipeda" ; -- [DTXFS] :: tile/flagstone two feet long (for pavements); - bipedale_N_N = mkN "bipedale" "bipedalis " neuter ; -- [DTXFS] :: tile/flagstone two feet long (for pavements); + bipedale_N_N = mkN "bipedale" "bipedalis" neuter ; -- [DTXFS] :: tile/flagstone two feet long (for pavements); bipedalis_A = mkA "bipedalis" "bipedalis" "bipedale" ; -- [XXXCO] :: two feet long, wide or thick, measuring two feet; bipedalium_N_N = mkN "bipedalium" ; -- [XXXFO] :: distance/depth of two feet, two feet; bipedaneus_A = mkA "bipedaneus" "bipedanea" "bipedaneum" ; -- [XXXDO] :: two feet long, wide or thick, measuring two feet; bipennifer_A = mkA "bipennifer" "bipennifera" "bipenniferum" ; -- [XXXEO] :: bearing a two edged axe; 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; + 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; + 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); bipes_A = mkA "bipes" "bipedis"; -- [XXXCO] :: two-footed; bipedal; on two feet (of quadrupeds); bipinnis_A = mkA "bipinnis" "bipinnis" "bipinne" ; -- [XXXDO] :: two-edged; having two wings; - bipinnis_F_N = mkN "bipinnis" "bipinnis " feminine ; -- [XWXCO] :: two edged ax; battle ax; + bipinnis_F_N = mkN "bipinnis" "bipinnis" feminine ; -- [XWXCO] :: two edged ax; battle ax; biplex_A = mkA "biplex" "biplicis"; -- [DXXFS] :: twofold, double; divided; two-faced; biprorus_A = mkA "biprorus" "biprora" "biprorum" ; -- [XWXFO] :: having two prows (ship), double-ended; biprosopum_N_N = mkN "biprosopum" ; -- [XBXIO] :: kind of salve or plaster; biprosopus_M_N = mkN "biprosopus" ; -- [XBXIO] :: kind of salve or plaster; bipunctum_N_N = mkN "bipunctum" ; -- [GGXEK] :: colon; biremis_A = mkA "biremis" "biremis" "bireme" ; -- [XWXEO] :: two-oared; having two oars to each bench/banks of oars; having two oars (L+S); - biremis_F_N = mkN "biremis" "biremis " feminine ; -- [XWXCO] :: bireme, vessel having 2 oars to each bench/2 banks of oars; 2-oared boat (L+S); + biremis_F_N = mkN "biremis" "biremis" feminine ; -- [XWXCO] :: bireme, vessel having 2 oars to each bench/2 banks of oars; 2-oared boat (L+S); biretum_N_N = mkN "biretum" ; -- [FEXEE] :: biretta/square Catholic clergy hat; (priest=black; bishop=purple; cardinal=red); birota_F_N = mkN "birota" ; -- [DXXES] :: two-wheeled vehicle, cabriolet; bicycle (Cal); birotarius_M_N = mkN "birotarius" ; -- [GXXEK] :: bicyclist; @@ -7425,7 +7425,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat bisacutus_A = mkA "bisacutus" "bisacuta" "bisacutum" ; -- [FXXEM] :: two-edged; twibill; bisacutus_M_N = mkN "bisacutus" ; -- [FXXEM] :: two-edged axe; bisaetus_A = mkA "bisaetus" "bisaeta" "bisaetum" ; -- [XAXFO] :: with hair/bristles down on both sides of neck, with double mane (horses); - bisbellio_F_N = mkN "bisbellio" "bisbellionis " feminine ; -- [DXXFS] :: man with two skins; cunning man; + bisbellio_F_N = mkN "bisbellio" "bisbellionis" feminine ; -- [DXXFS] :: man with two skins; cunning man; biscoctus_M_N = mkN "biscoctus" ; -- [GXXEK] :: toast; biselliarius_M_N = mkN "biselliarius" ; -- [XXXIO] :: one entitled to sit on bisellium seat (honor awarded for services in provinces); biselliatus_M_N = mkN "biselliatus" ; -- [XXXIO] :: right/honor to sit on bisellium seat (honor awarded for services in provinces); @@ -7439,11 +7439,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat bisolis_A = mkA "bisolis" "bisolis" "bisole" ; -- [DXXFS] :: having two soles (foot); bisomum_N_N = mkN "bisomum" ; -- [DXXFS] :: sarcophagus for two persons; bisomus_A = mkA "bisomus" "bisoma" "bisomum" ; -- [DXXFE] :: for/having two bodies; (of sarcophagus for two persons); - bison_M_N = mkN "bison" "bisontis " masculine ; -- [XAXEO] :: bison; wild ox; + bison_M_N = mkN "bison" "bisontis" masculine ; -- [XAXEO] :: bison; wild ox; bisonus_A = mkA "bisonus" "bisona" "bisonum" ; -- [DXXES] :: sounding twice; - bispellio_F_N = mkN "bispellio" "bispellionis " feminine ; -- [DXXFS] :: man with two skins; cunning man; + bispellio_F_N = mkN "bispellio" "bispellionis" feminine ; -- [DXXFS] :: man with two skins; cunning man; bissa_F_N = mkN "bissa" ; -- [FAXEM] :: female deer; - bisse_N = constN "bisse." neuter ; -- [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); @@ -7455,7 +7455,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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); bitumino_V2 = mkV2 (mkV "bituminare") ; -- [DTXES] :: cover/impregnate with bitumen/tar; tar; @@ -7467,7 +7467,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat bivirga_F_N = mkN "bivirga" ; -- [FDXFE] :: two square and tailed musical notes; bivium_N_N = mkN "bivium" ; -- [XXXCO] :: meet of 2 roads, crossroad; fork in road; 2 alternatives; [~ portae=> gateway]; bivius_A = mkA "bivius" "bivia" "bivium" ; -- [XXXFO] :: traversable both ways; having two approaches; - blachnon_N_N = mkN "blachnon" "blachni " neuter ; -- [XAXNO] :: male fern; + blachnon_N_N = mkN "blachnon" "blachni" neuter ; -- [XAXNO] :: male fern; blactero_V = mkV "blacterare" ; -- [XAXNS] :: bleat (of a ram/sheep); bladium_N_N = mkN "bladium" ; -- [FABFM] :: grain; (esp. wheat); bladum_N_N = mkN "bladum" ; -- [FABEM] :: grain; (esp. wheat); @@ -7478,7 +7478,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat blandicellum_N_N = mkN "blandicellum" ; -- [XXXFO] :: flattering words (pl.); blandicule_Adv = mkAdv "blandicule" ; -- [XXXFO] :: charmingly; blandidicus_A = mkA "blandidicus" "blandidica" "blandidicum" ; -- [XXXFO] :: using fair/flattering words, smooth spoken/talking; - blandiens_M_N = mkN "blandiens" "blandientis " masculine ; -- [XXXFS] :: flatterer; sweet talker; + blandiens_M_N = mkN "blandiens" "blandientis" masculine ; -- [XXXFS] :: flatterer; sweet talker; blandificus_A = mkA "blandificus" "blandifica" "blandificum" ; -- [XXXFS] :: flattering; soothing; blandifluus_A = mkA "blandifluus" "blandiflua" "blandifluum" ; -- [XXXFS] :: flowing/diffusing sweetly/pleasantly (odor); blandiloquens_A = mkA "blandiloquens" "blandiloquentis"; -- [XXXFO] :: charming/persuasive (of speech), smooth talking; @@ -7487,13 +7487,13 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + blandities_F_N = mkN "blandities" "blanditiei" feminine ; -- [XXXCO] :: flattery, caress, compliment; charm (pl.), flatteries, enticement, courtship; blanditim_Adv = mkAdv "blanditim" ; -- [XXXFS] :: in a flattering/caressing manner; - blanditor_M_N = mkN "blanditor" "blanditoris " masculine ; -- [DXXES] :: flatterer; + blanditor_M_N = mkN "blanditor" "blanditoris" masculine ; -- [DXXES] :: flatterer; blanditus_A = mkA "blanditus" "blandita" "blanditum" ; -- [XXXFS] :: pleasant, agreeable, charming; blando_Adv = mkAdv "blando" ; -- [XXXFO] :: in coaxing/winning manner, charmingly, persuasively, seductively; blandulus_A = mkA "blandulus" "blandula" "blandulum" ; -- [XXXEO] :: charming; pleasant; @@ -7501,14 +7501,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + blasphematio_F_N = mkN "blasphematio" "blasphemationis" feminine ; -- [DEXES] :: censure, reproach, reviling; blasphemia_F_N = mkN "blasphemia" ; -- [EEXCS] :: blasphemy (against God); slander; reviling; blasphemo_V = mkV "blasphemare" ; -- [EEXCS] :: blaspheme (against God); revile; reproach; blasphemus_A = mkA "blasphemus" "blasphema" "blasphemum" ; -- [DEXCS] :: reviling, defaming; blasphemus_M_N = mkN "blasphemus" ; -- [DEXCS] :: blasphemer; - blateratio_F_N = mkN "blateratio" "blaterationis " feminine ; -- [DXXES] :: babbling, prattle; - blateratus_M_N = mkN "blateratus" "blateratus " masculine ; -- [DXXES] :: babbling, prattle; - blatero_M_N = mkN "blatero" "blateronis " masculine ; -- [XXXFO] :: prater, babbler; + blateratio_F_N = mkN "blateratio" "blaterationis" feminine ; -- [DXXES] :: babbling, prattle; + 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); 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; @@ -7516,7 +7516,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat blattaria_F_N = mkN "blattaria" ; -- [XAXNO] :: species of Verbasceum (moth mullein?); blattarius_A = mkA "blattarius" "blattaria" "blattarium" ; -- [XAXFO] :: connected with/suitable for moths; blattea_F_N = mkN "blattea" ; -- [DXXFS] :: purple, (color of a blood); - blattero_M_N = mkN "blattero" "blatteronis " masculine ; -- [XXXFO] :: prater, blabber; + blattero_M_N = mkN "blattero" "blatteronis" masculine ; -- [XXXFO] :: prater, blabber; blattero_V = mkV "blatterare" ; -- [XXXCO] :: prate, babble; utter in a babbling way; (applied to sounds of certain animals); blatteus_A = mkA "blatteus" "blattea" "blatteum" ; -- [DXXES] :: purple, purple colored; blattiarius_M_N = mkN "blattiarius" ; -- [DXXES] :: dyer in purple; @@ -7526,8 +7526,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat blavetum_N_N = mkN "blavetum" ; -- [FXXEM] :: bluet, blue cloth/garment; blavius_A = mkA "blavius" "blavia" "blavium" ; -- [FXXEM] :: blue; blavus_A = mkA "blavus" "blava" "blavum" ; -- [FXXEM] :: blue; - blechnon_F_N = mkN "blechnon" "blechnonis " feminine ; -- [XAXNS] :: wild pennyroyal; - blechon_F_N = mkN "blechon" "blechonis " feminine ; -- [XAXNO] :: wild pennyroyal; + blechnon_F_N = mkN "blechnon" "blechnonis" feminine ; -- [XAXNS] :: wild pennyroyal; + blechon_F_N = mkN "blechon" "blechonis" feminine ; -- [XAXNO] :: wild pennyroyal; bleium_N_N = mkN "bleium" ; -- [FABFM] :: grain; (esp. wheat); blendea_F_N = mkN "blendea" ; -- [XAXNS] :: small sea-fish, blenny; blendium_N_N = mkN "blendium" ; -- [XAXNO] :: small sea-fish, blenny; @@ -7535,7 +7535,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat blennius_M_N = mkN "blennius" ; -- [XAXNS] :: small sea-fish, blenny; blennus_A = mkA "blennus" "blenna" "blennum" ; -- [XXXEO] :: driveling, slavering, dribbling; silly, childish, idiotic; blennus_M_N = mkN "blennus" ; -- [DXXES] :: blockhead, dolt, simpleton, imbecile; driveling idiot; - blepharon_N_N = mkN "blepharon" "blephari " neuter ; -- [XXXNO] :: eyelid (? Greek); [Chariton blepharon => kind of coral?]; + blepharon_N_N = mkN "blepharon" "blephari" neuter ; -- [XXXNO] :: eyelid (? Greek); [Chariton blepharon => kind of coral?]; blevetum_N_N = mkN "blevetum" ; -- [FXXEM] :: bluet, blue cloth/garment; bliteum_N_N = mkN "bliteum" ; -- [XXXFO] :: tasteless/worthless/useless stuff, trash; bliteus_A = mkA "bliteus" "blitea" "bliteum" ; -- [XXXFO] :: tasteless, insipid; worthless, useless; @@ -7545,26 +7545,26 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat blovius_A = mkA "blovius" "blovia" "blovium" ; -- [FXXEM] :: blue; boa_F_N = mkN "boa" ; -- [XAXNO] :: large Italian snake; water serpent; disease with pustules (measles/smallpox); boarius_A = mkA "boarius" "boaria" "boarium" ; -- [XXXCO] :: of oxen/cattle; [forum boarium => cattle market at Rome]; - boatus_M_N = mkN "boatus" "boatus " masculine ; -- [XXXFO] :: shouting, roaring, bellowing, loud crying; + boatus_M_N = mkN "boatus" "boatus" masculine ; -- [XXXFO] :: shouting, roaring, bellowing, loud crying; bobsequa_M_N = mkN "bobsequa" ; -- [DAXES] :: herdsman, cow-herd; boca_F_N = mkN "boca" ; -- [XAXNO] :: fish (bogue or boce) (Box vulgaris); - bocas_F_N = mkN "bocas" "bocae " feminine ; -- [XAXFO] :: fish (bogue or boce) (Box vulgaris); + bocas_F_N = mkN "bocas" "bocae" feminine ; -- [XAXFO] :: fish (bogue or boce) (Box vulgaris); boethus_M_N = mkN "boethus" ; -- [DLXES] :: aid/assistant of a scribe; boia_F_N = mkN "boia" ; -- [XXXEO] :: collar/yoke word by criminals (usu. pl. L+S); boicotizo_V = mkV "boicotizare" ; -- [GXXEK] :: boycott; bolarium_N_N = mkN "bolarium" ; -- [XXXFO] :: little lump (e.g., in paint); - bolbine_F_N = mkN "bolbine" "bolbines " feminine ; -- [XAXNO] :: kind of bulbous plant; - bolbiton_N_N = mkN "bolbiton" "bolbiti " neuter ; -- [XAXNO] :: cow dung; - boletar_N_N = mkN "boletar" "boletaris " neuter ; -- [XXXFO] :: vessel for holding mushrooms (usu. pl.); vessel for cooking/eating (L+S); - boletatio_F_N = mkN "boletatio" "boletationis " feminine ; -- [XXXFO] :: surfeit of mushrooms; + bolbine_F_N = mkN "bolbine" "bolbines" feminine ; -- [XAXNO] :: kind of bulbous plant; + bolbiton_N_N = mkN "bolbiton" "bolbiti" neuter ; -- [XAXNO] :: cow dung; + boletar_N_N = mkN "boletar" "boletaris" neuter ; -- [XXXFO] :: vessel for holding mushrooms (usu. pl.); vessel for cooking/eating (L+S); + boletatio_F_N = mkN "boletatio" "boletationis" feminine ; -- [XXXFO] :: surfeit of mushrooms; boletus_M_N = mkN "boletus" ; -- [XAXCS] :: mushroom (best kind); bolet; - bolis_F_N = mkN "bolis" "bolidis " feminine ; -- [XSXNO] :: kind of meteor (large, fiery); - bolites_M_N = mkN "bolites" "bolitae " masculine ; -- [XAXNS] :: root of lychnis plant; - boloe_F_N = mkN "boloe" "boloes " feminine ; -- [XXXNS] :: precious stone; - boloe_M_N = mkN "boloe" "boloes " masculine ; -- [XXXNS] :: precious stone; + bolis_F_N = mkN "bolis" "bolidis" feminine ; -- [XSXNO] :: kind of meteor (large, fiery); + bolites_M_N = mkN "bolites" "bolitae" masculine ; -- [XAXNS] :: root of lychnis plant; + boloe_F_N = mkN "boloe" "boloes" feminine ; -- [XXXNS] :: precious stone; + boloe_M_N = mkN "boloe" "boloes" masculine ; -- [XXXNS] :: precious stone; bolona_M_N = mkN "bolona" ; -- [DAXFS] :: fishmonger, dealer in fish; - bolos_F_N = mkN "bolos" "boli " feminine ; -- [XXXNO] :: precious stone; - bolos_M_N = mkN "bolos" "boli " masculine ; -- [XXXNO] :: precious stone; + bolos_F_N = mkN "bolos" "boli" feminine ; -- [XXXNO] :: precious stone; + bolos_M_N = mkN "bolos" "boli" masculine ; -- [XXXNO] :: precious stone; bolus_C_N = mkN "bolus" ; -- [XXXNO] :: precious stone; bolus_M_N = mkN "bolus" ; -- [XXXCO] :: throw of dice; hard piece of luck; choice bit; catch (fish net), haul, profit; bomba_F_N = mkN "bomba" ; -- [GWXEK] :: bomb; @@ -7574,72 +7574,72 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat bombardo_V = mkV "bombardare" ; -- [GWXEK] :: bombard; 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; + 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); + bombizatio_F_N = mkN "bombizatio" "bombizationis" feminine ; -- [DXXFO] :: buzzing (of bees); bombulum_N_N = mkN "bombulum" ; -- [EBXEW] :: break wind; fart; bombus_M_N = mkN "bombus" ; -- [XXXCO] :: buzzing (esp. bees); booming, deep sound, rumble; - bombycias_M_N = mkN "bombycias" "bombyciae " masculine ; -- [XXXEO] :: reed suitable for making flutes; + bombycias_M_N = mkN "bombycias" "bombyciae" masculine ; -- [XXXEO] :: reed suitable for making flutes; bombycinum_N_N = mkN "bombycinum" ; -- [XXXES] :: silk texture/web; silk garments (pl.), silks; bombycinus_A = mkA "bombycinus" "bombycina" "bombycinum" ; -- [XXXEO] :: silken, of silk, silky; bombycium_N_N = mkN "bombycium" ; -- [XXXEO] :: silky garments (pl.); silks; bombycius_A = mkA "bombycius" "bombycia" "bombycium" ; -- [XXXEO] :: silky; (of reeds/harundines) suitable for making flutes; - bombylis_F_N = mkN "bombylis" "bombylis " feminine ; -- [XAXNO] :: cocoon-enshrouded silkworm larva; bumble (Cal); + bombylis_F_N = mkN "bombylis" "bombylis" feminine ; -- [XAXNO] :: cocoon-enshrouded silkworm larva; bumble (Cal); bombylius_M_N = mkN "bombylius" ; -- [DAXFS] :: cocoon-enshrouded silkworm larva; bumble bee (Cal); - bombyx_F_N = mkN "bombyx" "bombycis " feminine ; -- [XAXDO] :: silkworm, silk-moth; silk; silk garment; any silk-like fine fiber (cotton); - bombyx_M_N = mkN "bombyx" "bombycis " masculine ; -- [XAXDO] :: silkworm, silk-moth; silk; silk garment; any silk-like fine fiber (cotton); + bombyx_F_N = mkN "bombyx" "bombycis" feminine ; -- [XAXDO] :: silkworm, silk-moth; silk; silk garment; any silk-like fine fiber (cotton); + bombyx_M_N = mkN "bombyx" "bombycis" masculine ; -- [XAXDO] :: silkworm, silk-moth; silk; silk garment; any silk-like fine fiber (cotton); bona_F_N = mkN "bona" ; -- [XXXES] :: good/moral/honest/brave woman; [Bona Dea => Roman goddess worshiped by women]; bonasus_M_N = mkN "bonasus" ; -- [XAXNO] :: European bison (Bos bonasus), a species of wild ox (now almost extinct); bonatus_A = mkA "bonatus" "bonata" "bonatum" ; -- [XXXFO] :: good natured; bonifatus_A = mkA "bonifatus" "bonifata" "bonifatum" ; -- [DXXFS] :: lucky, fortunate; - bonitas_F_N = mkN "bonitas" "bonitatis " feminine ; -- [XXXBO] :: goodness, integrity, moral excellence; kindness, benevolence, tenderness; + 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; 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; 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); + 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; - boreale_N_N = mkN "boreale" "borealis " neuter ; -- [XXXFE] :: northern parts (pl.); + boreale_N_N = mkN "boreale" "borealis" neuter ; -- [XXXFE] :: northern parts (pl.); borealis_A = mkA "borealis" "borealis" "boreale" ; -- [XXXFS] :: northern; pertaining to north wind; 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; 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]; + 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]; 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?); + 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; - bostrychitis_F_N = mkN "bostrychitis" "bostrychidis " feminine ; -- [XXXNO] :: precious stone; + bostrychitis_F_N = mkN "bostrychitis" "bostrychidis" feminine ; -- [XXXNO] :: precious stone; bostrychus_A = mkA "bostrychus" "bostrycha" "bostrychum" ; -- [DXXES] :: curled, in ringlets; - botane_F_N = mkN "botane" "botanes " feminine ; -- [XAXNO] :: plant; [hiera botane => vervain, herbaceous/medicinal/sacred plant]; + botane_F_N = mkN "botane" "botanes" feminine ; -- [XAXNO] :: plant; [hiera botane => vervain, herbaceous/medicinal/sacred plant]; botanica_F_N = mkN "botanica" ; -- [GSXEK] :: botany; botanicus_A = mkA "botanicus" "botanica" "botanicum" ; -- [GSXEK] :: botanical; - botanismos_M_N = mkN "botanismos" "botanismi " masculine ; -- [XAXNO] :: weeding, pulling up weeds; + botanismos_M_N = mkN "botanismos" "botanismi" masculine ; -- [XAXNO] :: weeding, pulling up weeds; botanismus_M_N = mkN "botanismus" ; -- [XAXNS] :: weeding, pulling up weeds; botellus_M_N = mkN "botellus" ; -- [XXXEO] :: small sausage; bothynus_M_N = mkN "bothynus" ; -- [XSXFO] :: trench, pit; (as name of fiery meteor); - boto_M_N = mkN "boto" "botonis " masculine ; -- [GXXEK] :: button; + boto_M_N = mkN "boto" "botonis" masculine ; -- [GXXEK] :: button; botono_V = mkV "botonare" ; -- [GXXEK] :: button; - botrio_M_N = mkN "botrio" "botrionis " masculine ; -- [DAXFS] :: bunch/cluster of grapes; - botronatus_M_N = mkN "botronatus" "botronatus " masculine ; -- [DXXES] :: woman's hair ornament in form of a cluster of grapes; + botrio_M_N = mkN "botrio" "botrionis" masculine ; -- [DAXFS] :: bunch/cluster of grapes; + botronatus_M_N = mkN "botronatus" "botronatus" masculine ; -- [DXXES] :: woman's hair ornament in form of a cluster of grapes; 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); + botrus_M_N = mkN "botrus" "botrus" masculine ; -- [EAXFW] :: cluster of grapes; (Vulgate 4 Ezra 9:21); 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; + 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; - botryon_N_N = mkN "botryon" "botryi " neuter ; -- [XBXNO] :: kind of medicine; (prepared from excrements L+S); - botrysos_M_N = mkN "botrysos" "botryi " masculine ; -- [XAXFO] :: plant similar to wormwood/mugwort; (also called artemisia); + botryon_M_N = mkN "botryon" "botryonis" masculine ; -- [XAXFO] :: bunch/cluster of grapes; + botryon_N_N = mkN "botryon" "botryi" neuter ; -- [XBXNO] :: kind of medicine; (prepared from excrements L+S); + botrysos_M_N = mkN "botrysos" "botryi" masculine ; -- [XAXFO] :: plant similar to wormwood/mugwort; (also called artemisia); botularius_M_N = mkN "botularius" ; -- [XXXFO] :: sausage seller/maker; botulismus_M_N = mkN "botulismus" ; -- [GBXEK] :: botulism; botulus_M_N = mkN "botulus" ; -- [XXXDO] :: sausage; black pudding; stomach filled with delicacies (haggis?); rude word; @@ -7649,15 +7649,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat bovatim_Adv = mkAdv "bovatim" ; -- [XAXFO] :: in manner of cattle/oxen/cows; bovicidium_N_N = mkN "bovicidium" ; -- [DAXES] :: slaughtering of cattle; bovida_F_N = mkN "bovida" ; -- [GXXEK] :: bovide; - bovile_N_N = mkN "bovile" "bovilis " neuter ; -- [XAXEO] :: cattle-shed, stall for cattle/oxen; + bovile_N_N = mkN "bovile" "bovilis" neuter ; -- [XAXEO] :: cattle-shed, stall for cattle/oxen; bovilis_A = mkA "bovilis" "bovilis" "bovile" ; -- [XAXFO] :: of/connected with cattle; bovillus_A = mkA "bovillus" "bovilla" "bovillum" ; -- [XAXFO] :: of/consisting of cattle/oxen/cows; - bovinator_M_N = mkN "bovinator" "bovinatoris " masculine ; -- [XXXEO] :: one who rails/reviles?; brawler (L+S), blusterer; one who seeks evasion; + bovinator_M_N = mkN "bovinator" "bovinatoris" masculine ; -- [XXXEO] :: one who rails/reviles?; brawler (L+S), blusterer; one who seeks evasion; 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; 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); + 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; brabeuta_M_N = mkN "brabeuta" ; -- [XXXFO] :: umpire (presided at public games and assigned prizes); @@ -7669,16 +7669,16 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat bracarius_M_N = mkN "bracarius" ; -- [DXXES] :: maker of trousers/breeches/pants; bracatus_A = mkA "bracatus" "bracata" "bracatum" ; -- [XXFCO] :: wearing trousers, breeched; (of Gauls of Narbonne); bracatus_M_N = mkN "bracatus" ; -- [XXFDO] :: persons wearing trousers/breeched, Gauls of Nabronne; - bracchiale_N_N = mkN "bracchiale" "bracchialis " neuter ; -- [XXXNO] :: bracelet, armlet; + bracchiale_N_N = mkN "bracchiale" "bracchialis" neuter ; -- [XXXNO] :: bracelet, armlet; bracchialis_A = mkA "bracchialis" "bracchialis" "bracchiale" ; -- [XXXEO] :: of/connected with arm(s); bracchiatus_A = mkA "bracchiatus" "bracchiata" "bracchiatum" ; -- [XAXDO] :: having branches (tree), branched; wearing bracelets; bracchiolaris_A = mkA "bracchiolaris" "bracchiolaris" "bracchiolare" ; -- [XAXFS] :: pertaining to a leg muscle of a horse; bracchiolum_N_N = mkN "bracchiolum" ; -- [XXXEO] :: little arm, small/delicate arm; muscle of a horse's leg (L+S); arm of a chair; bracchionarium_N_N = mkN "bracchionarium" ; -- [DXXFS] :: bracelet; bracchium_N_N = mkN "bracchium" ; -- [XXXAO] :: arm; lower arm, forearm; claw; branch, shoot; earthwork connecting forts; - braces_F_N = mkN "braces" "bracae " feminine ; -- [XAFNS] :: Gallic name of a particularly white grain (ble blanc de Dauphine); (sandala); + braces_F_N = mkN "braces" "bracae" feminine ; -- [XAFNS] :: Gallic name of a particularly white grain (ble blanc de Dauphine); (sandala); braceus_A = mkA "braceus" "bracea" "braceum" ; -- [XXXFS] :: pertaining to trousers/breeches; - brachiale_N_N = mkN "brachiale" "brachialis " neuter ; -- [XXXNO] :: bracelet, armlet; + brachiale_N_N = mkN "brachiale" "brachialis" neuter ; -- [XXXNO] :: bracelet, armlet; brachialis_A = mkA "brachialis" "brachialis" "brachiale" ; -- [XXXEO] :: of/connected with arm(s); brachiatus_A = mkA "brachiatus" "brachiata" "brachiatum" ; -- [XAXCO] :: having branches (tree), branched; wearing bracelets; brachiolaris_A = mkA "brachiolaris" "brachiolaris" "brachiolare" ; -- [XAXFS] :: pertaining to a leg muscle of a horse; @@ -7689,31 +7689,31 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat brachycatalectum_N_N = mkN "brachycatalectum" ; -- [DPXFS] :: verse that is short by a whole foot or half a meter; brachypota_M_N = mkN "brachypota" ; -- [DXXFS] :: small drinker; brachysyllabus_M_N = mkN "brachysyllabus" ; -- [DPXFS] :: tribrachys, (in meter) short-short-short; - braciator_M_N = mkN "braciator" "braciatoris " masculine ; -- [GXXEK] :: brewer; - bracile_N_N = mkN "bracile" "bracilis " neuter ; -- [DXFES] :: girdle (as worn with trousers); band; + braciator_M_N = mkN "braciator" "braciatoris" masculine ; -- [GXXEK] :: brewer; + bracile_N_N = mkN "bracile" "bracilis" neuter ; -- [DXFES] :: girdle (as worn with trousers); band; bracilis_A = mkA "bracilis" "bracilis" "bracile" ; -- [XXFEO] :: designed to be worn with trousers (e.g., girdle/belt); bracina_F_N = mkN "bracina" ; -- [GXXEK] :: restaurant; bracio_V = mkV "braciare" ; -- [GXXEK] :: brew beer; - bracis_F_N = mkN "bracis" "bracis " feminine ; -- [EXXFS] :: trousers; breeches; (= bracae, -arum); + bracis_F_N = mkN "bracis" "bracis" feminine ; -- [EXXFS] :: trousers; breeches; (= bracae, -arum); bractea_F_N = mkN "bractea" ; -- [XXXCO] :: gold leaf/foil, thin sheet of metal (esp. gold)/other material; veneer; show; bractealis_A = mkA "bractealis" "bractealis" "bracteale" ; -- [DXXES] :: of thin plates of metal/gold-leaf/veneers; showy, glittering; bracteamentum_N_N = mkN "bracteamentum" ; -- [DXXFS] :: glitter, show, splendor; - bracteator_M_N = mkN "bracteator" "bracteatoris " masculine ; -- [XXXFS] :: gold-beater, worker in gold-leaf; + bracteator_M_N = mkN "bracteator" "bracteatoris" masculine ; -- [XXXFS] :: gold-beater, worker in gold-leaf; bracteatus_A = mkA "bracteatus" "bracteata" "bracteatum" ; -- [XXXES] :: gilded/gilt, covered with a (mere) veneer of gold, delusive; shining like gold; bracteola_F_N = mkN "bracteola" ; -- [XXXFS] :: gold leaf; bractiaria_F_N = mkN "bractiaria" ; -- [XXXIS] :: gold-beater, worker in gold leaf; bractiarius_M_N = mkN "bractiarius" ; -- [XXXIS] :: gold-beater, worker in gold-leaf; bradium_N_N = mkN "bradium" ; -- [EEXEM] :: prize; reward; - brances_F_N = mkN "brances" "brancae " feminine ; -- [XAFNS] :: Gallic name of a particularly white grain (ble blanc de Dauphine), (sandala); + brances_F_N = mkN "brances" "brancae" feminine ; -- [XAFNS] :: Gallic name of a particularly white grain (ble blanc de Dauphine), (sandala); brancha_F_N = mkN "brancha" ; -- [EAXFW] :: gills (usu. pl.) (of a fish); (Vulgate Tobit 6:4); branchia_F_N = mkN "branchia" ; -- [XAXEO] :: gills (usu. pl.) (of a fish); - branchos_M_N = mkN "branchos" "branchi " masculine ; -- [DBXES] :: hoarseness; + branchos_M_N = mkN "branchos" "branchi" masculine ; -- [DBXES] :: hoarseness; brandeum_N_N = mkN "brandeum" ; -- [EEXEV] :: holy covering/shroud; linen/silk covering for body; brasmatia_F_N = mkN "brasmatia" ; -- [XSXFS] :: heaving (pl.), a heaver, earthquake, shaking of earth; brassica_F_N = mkN "brassica" ; -- [XAXCO] :: cabbage; cabbages (pl.), varieties of cabbage (L+S); - brastes_M_N = mkN "brastes" "brastae " masculine ; -- [XSXFO] :: heaving, a heaver, earthquake, shaking of earth; + brastes_M_N = mkN "brastes" "brastae" masculine ; -- [XSXFO] :: heaving, a heaver, earthquake, shaking of earth; brattea_F_N = mkN "brattea" ; -- [XXXCO] :: gold leaf/foil, thin sheet of metal (esp. gold)/other material; veneer; show; - bratteator_M_N = mkN "bratteator" "bratteatoris " masculine ; -- [XXXFS] :: gold-beater, worker in gold-leaf; + bratteator_M_N = mkN "bratteator" "bratteatoris" masculine ; -- [XXXFS] :: gold-beater, worker in gold-leaf; bratteatus_A = mkA "bratteatus" "bratteata" "bratteatum" ; -- [XXXEO] :: gilded/gilt, covered with a (mere) veneer of gold, delusive; shining like gold; bratteola_F_N = mkN "bratteola" ; -- [XXXFO] :: gold leaf; brattiaria_F_N = mkN "brattiaria" ; -- [XXXFO] :: gold-beater (female), worker in gold leaf; @@ -7723,17 +7723,17 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + brenthos_M_N = mkN "brenthos" "brenthi" masculine ; -- [XAXNO] :: sea bird (unidentified); brephotropheum_N_N = mkN "brephotropheum" ; -- [DLXFS] :: foundling hospital; orphanage; brephotrophium_N_N = mkN "brephotrophium" ; -- [DLXFS] :: foundling hospital; orphanage; brephotrophus_M_N = mkN "brephotrophus" ; -- [DLXFS] :: one who brings up foundlings; foster carer; - breve_N_N = mkN "breve" "brevis " neuter ; -- [DGXES] :: |short catalog, summary document; brief reply (Cal); + breve_N_N = mkN "breve" "brevis" neuter ; -- [DGXES] :: |short catalog, summary document; brief reply (Cal); brevi_Adv = mkAdv "brevi" ; -- [XGXBS] :: in a short time; shortly, briefly; in a few words; [in brevi => in brief]; - breviale_N_N = mkN "breviale" "brevialis " neuter ; -- [GXXEK] :: breviary; + breviale_N_N = mkN "breviale" "brevialis" neuter ; -- [GXXEK] :: breviary; breviarium_N_N = mkN "breviarium" ; -- [GXXEK] :: breviary; breviarius_A = mkA "breviarius" "breviaria" "breviarium" ; -- [XGXFO] :: in brief form, summary; abridged; - breviatio_F_N = mkN "breviatio" "breviationis " feminine ; -- [DGXES] :: shortening; - breviator_M_N = mkN "breviator" "breviatoris " masculine ; -- [DGXES] :: epitomiser, abridger; author of a breviarium (summary statement); + breviatio_F_N = mkN "breviatio" "breviationis" feminine ; -- [DGXES] :: shortening; + breviator_M_N = mkN "breviator" "breviatoris" masculine ; -- [DGXES] :: epitomiser, abridger; author of a breviarium (summary statement); breviculus_A = mkA "breviculus" "brevicula" "breviculum" ; -- [XXXDO] :: very/rather short/small; quite brief (time); breviculus_M_N = mkN "breviculus" ; -- [DGXFS] :: short writing; summary; breviloquens_A = mkA "breviloquens" "breviloquentis"; -- [XGXFO] :: concise, brief in expression, brief; @@ -7743,23 +7743,23 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; 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; + 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; brevium_N_N = mkN "brevium" ; -- [DXXCS] :: |narrow places (pl.); shallows, shoals; difficulties; bria_F_N = mkN "bria" ; -- [DXXFS] :: wine vessel; brisa_F_N = mkN "brisa" ; -- [XAXFO] :: refuse of grapes after pressing; - brocchitas_F_N = mkN "brocchitas" "brocchitatis " feminine ; -- [XBXNO] :: projecting/prominence of teeth; + brocchitas_F_N = mkN "brocchitas" "brocchitatis" feminine ; -- [XBXNO] :: projecting/prominence of teeth; brocchus_A = mkA "brocchus" "broccha" "brocchum" ; -- [XAXCO] :: projecting/prominent (teeth); of persons having projecting/prominent teeth; broccus_A = mkA "broccus" "brocca" "broccum" ; -- [XAXCS] :: projecting/prominent (teeth); of persons having projecting/prominent teeth; - brochon_N_N = mkN "brochon" "brochi " neuter ; -- [XAXNO] :: aromatic gum-resin flowing from bdellium tree (used in medicine/perfume); + brochon_N_N = mkN "brochon" "brochi" neuter ; -- [XAXNO] :: aromatic gum-resin flowing from bdellium tree (used in medicine/perfume); brochus_A = mkA "brochus" "brocha" "brochum" ; -- [XAXFS] :: projecting/prominent (teeth); of persons having projecting/prominent teeth; bromaticus_M_N = mkN "bromaticus" ; -- [DXXFS] :: those (pl.) who loathe food; - bromos_M_N = mkN "bromos" "bromi " masculine ; -- [XAHNO] :: oats; (Greek word for oats); + bromos_M_N = mkN "bromos" "bromi" masculine ; -- [XAHNO] :: oats; (Greek word for oats); bromosus_A = mkA "bromosus" "bromosa" "bromosum" ; -- [DXXES] :: stinking, fetid; - bronchitis_F_N = mkN "bronchitis" "bronchitidis " feminine ; -- [GBXEK] :: bronchitis; + bronchitis_F_N = mkN "bronchitis" "bronchitidis" feminine ; -- [GBXEK] :: bronchitis; bronchium_N_N = mkN "bronchium" ; -- [DBXCS] :: bronchial tubes; - bronchocele_F_N = mkN "bronchocele" "bronchoeles " feminine ; -- [XBXFO] :: kind of tumor; + bronchocele_F_N = mkN "bronchocele" "bronchoeles" feminine ; -- [XBXFO] :: kind of tumor; bronchoscopia_F_N = mkN "bronchoscopia" ; -- [GBXEK] :: bronchoscopy; broncus_A = mkA "broncus" "bronca" "broncum" ; -- [XAXFS] :: projecting/prominent (teeth); of persons having projecting/prominent teeth; brontea_F_N = mkN "brontea" ; -- [XXXNO] :: kind of meteoric stone, thunder-stone; @@ -7774,31 +7774,31 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat brunus_A = mkA "brunus" "bruna" "brunum" ; -- [EXXCM] :: brown; bruscum_N_N = mkN "bruscum" ; -- [XAXNO] :: knot/excrescence on maple tree; brutalis_A = mkA "brutalis" "brutalis" "brutale" ; -- [FXXDF] :: beastly, animal; brutal; - brutalitas_F_N = mkN "brutalitas" "brutalitatis " feminine ; -- [FXBFM] :: brutishness; insensitivity; + 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; + 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; brya_F_N = mkN "brya" ; -- [XAHNO] :: tamarisk (local Greek name), shrub (also called myrice); - bryon_N_N = mkN "bryon" "bryi " neuter ; -- [XAXNO] :: kind of fragrant lichen; moss; sea plant (oyster-green?); white poplar catkins; + bryon_N_N = mkN "bryon" "bryi" neuter ; -- [XAXNO] :: kind of fragrant lichen; moss; sea plant (oyster-green?); white poplar catkins; bryonia_F_N = mkN "bryonia" ; -- [XAXEO] :: bryony; [alba ~ => white b. Bryonia dioica; nigra ~ => black b. Tamus communis]; - bryonias_F_N = mkN "bryonias" "bryoniae " feminine ; -- [XAXEO] :: bryony; [alba ~ => white b. Bryonia dioica; nigra ~ => black b. Tamus communis]; + bryonias_F_N = mkN "bryonias" "bryoniae" feminine ; -- [XAXEO] :: bryony; [alba ~ => white b. Bryonia dioica; nigra ~ => black b. Tamus communis]; bua_F_N = mkN "bua" ; -- [XXXFS] :: "bubbub"; (natural sound made by infants asking for drink); bubalinus_A = mkA "bubalinus" "bubalina" "bubalinum" ; -- [DAAES] :: of/pertaining to African gazelle; - bubalion_N_N = mkN "bubalion" "bubalii " neuter ; -- [DAXFS] :: wild cucumber; + bubalion_N_N = mkN "bubalion" "bubalii" neuter ; -- [DAXFS] :: wild cucumber; bubalus_A = mkA "bubalus" "bubala" "bubalum" ; -- [DAAES] :: of/pertaining to African gazelle; bubalus_M_N = mkN "bubalus" ; -- [XAXEO] :: antelope, gazelle; wild ox, buffalo; - bubile_N_N = mkN "bubile" "bubilis " neuter ; -- [XAXDO] :: cattle-shed, stall for cattle/oxen; + bubile_N_N = mkN "bubile" "bubilis" neuter ; -- [XAXDO] :: cattle-shed, stall for cattle/oxen; bubino_V2 = mkV2 (mkV "bubinare") ; -- [XBXFO] :: menstruate, have monthly period (woman); 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_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); + 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; + bubonocele_F_N = mkN "bubonocele" "bubonoceles" feminine ; -- [XBXFO] :: inguinal/groin hernia; bubsequa_M_N = mkN "bubsequa" ; -- [DAXES] :: herdsman, cow-herd; bubula_F_N = mkN "bubula" ; -- [XXXDO] :: beef, meat from cattle; plant (also called buglossa), ox-tongue (L+S); bubulcarius_M_N = mkN "bubulcarius" ; -- [DAXFS] :: plowman; @@ -7809,31 +7809,31 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat bubulo_V = mkV "bubulare" ; -- [DAXFS] :: screech (like an owl); bubulus_A = mkA "bubulus" "bubula" "bubulum" ; -- [XAXCO] :: of/connected with cattle; bull's/cow's/ox-; consisting of cattle; of ox-hide; bucaeda_M_N = mkN "bucaeda" ; -- [XAXFO] :: ox-slaughterer; one who is whipped with ox-hide thongs (L+S); - bucale_N_N = mkN "bucale" "bucalis " neuter ; -- [FXXEE] :: pitcher; water jug; + bucale_N_N = mkN "bucale" "bucalis" neuter ; -- [FXXEE] :: pitcher; water jug; bucardia_F_N = mkN "bucardia" ; -- [XAXNO] :: precious stone; bucca_F_N = mkN "bucca" ; -- [XBXBO] :: jaw, mouth; mouthful; cheek (with blowing a trumpet); cavity (knee joint) (L+S); buccea_F_N = mkN "buccea" ; -- [XXXFS] :: morsel, mouthful; buccella_F_N = mkN "buccella" ; -- [XXXFS] :: morsel, small mouthful of food; - buccellare_N_N = mkN "buccellare" "buccellaris " neuter ; -- [XXXFS] :: cooking utensil; + buccellare_N_N = mkN "buccellare" "buccellaris" neuter ; -- [XXXFS] :: cooking utensil; buccellaris_A = mkA "buccellaris" "buccellaris" "buccellare" ; -- [XAXFS] :: ground from biscuit; buccellatum_N_N = mkN "buccellatum" ; -- [DWXCS] :: soldier's biscuit; hardtack; buccina_F_N = mkN "buccina" ; -- [XXXCO] :: horn; bugle, watch-horn; (curved) trumpet, war trumpet; shell Triton blew; - buccinator_M_N = mkN "buccinator" "buccinatoris " masculine ; -- [XXXCO] :: trumpeter; proclaimer; + buccinator_M_N = mkN "buccinator" "buccinatoris" masculine ; -- [XXXCO] :: trumpeter; proclaimer; buccino_V = mkV "buccinare" ; -- [XWXEO] :: give signal with/sound trumpet/horn; blow trumpet (bucina); honk horn (Cal); buccinum_N_N = mkN "buccinum" ; -- [XXXDO] :: blast on trumpet, trumpet call; kind of shellfish (used for purple dye); buccinus_M_N = mkN "buccinus" ; -- [XXXFO] :: trumpeter; epithet for cock/rooster; - bucco_M_N = mkN "bucco" "bucconis " masculine ; -- [XXXEO] :: fathead, dolt, blockhead, fool; - bucconiatis_F_N = mkN "bucconiatis" "bucconiatis " feminine ; -- [XAXNS] :: species of vine in Thurium; (fruit of which is picked only after first frost); + bucco_M_N = mkN "bucco" "bucconis" masculine ; -- [XXXEO] :: fathead, dolt, blockhead, fool; + bucconiatis_F_N = mkN "bucconiatis" "bucconiatis" feminine ; -- [XAXNS] :: species of vine in Thurium; (fruit of which is picked only after first frost); buccula_F_N = mkN "buccula" ; -- [XXXCO] :: little cheek; mouth/cheek-piece of a helmet; part of a machine/catapult channel; buccularius_M_N = mkN "buccularius" ; -- [XXXFS] :: maker of beavers for helmets (mouth/cheek piece); bucculentus_A = mkA "bucculentus" "bucculenta" "bucculentum" ; -- [XXXFO] :: having fat/full cheeks; having a big mouth (L+S); bucella_F_N = mkN "bucella" ; -- [XXXFS] :: small mouthful of food, morsel; small bread divided among poor (L+S); - buceras_N_N = mkN "buceras" "buceratis " neuter ; -- [XAXNS] :: plant, fenugreek (faenum Graecum); + buceras_N_N = mkN "buceras" "buceratis" neuter ; -- [XAXNS] :: plant, fenugreek (faenum Graecum); bucerius_A = mkA "bucerius" "buceria" "bucerium" ; -- [XXXCS] :: ox-horned; horned; bucerus_A = mkA "bucerus" "bucera" "bucerum" ; -- [XXXDO] :: ox-horned; horned; bucetum_N_N = mkN "bucetum" ; -- [XAXEO] :: pasture for cattle, cow pasture, pasture; bucina_F_N = mkN "bucina" ; -- [XXXCO] :: bugle, watch-horn; (curved) trumpet, war trumpet; shell Triton blew; - bucinator_M_N = mkN "bucinator" "bucinatoris " masculine ; -- [XXXCO] :: trumpeter; proclaimer; + bucinator_M_N = mkN "bucinator" "bucinatoris" masculine ; -- [XXXCO] :: trumpeter; proclaimer; bucino_V = mkV "bucinare" ; -- [XWXEO] :: give signal with/sound trumpet/horn; blow trumpet (bucina); honk (Cal); bucinum_N_N = mkN "bucinum" ; -- [XXXDO] :: blast on trumpet, trumpet call; kind of shellfish (used for purple dye); bucinus_M_N = mkN "bucinus" ; -- [XXXFO] :: trumpeter; epithet for cock/rooster; @@ -7841,47 +7841,47 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat bucolicos_A = mkA "bucolicos" "bucolice" "bucolicon" ; -- [XPXEO] :: pastoral (poetry), bucolic; pertaining to shepherds; pastoral; bucolicum_N_N = mkN "bucolicum" ; -- [XAXNO] :: plant (all-heal/mistletoe); Bucolic poems (pl.) of Virgil or Theocritus; bucolicus_A = mkA "bucolicus" "bucolica" "bucolicum" ; -- [XPXEO] :: pastoral (poetry), bucolic; pertaining to shepherds; pastoral; - buconiates_F_N = mkN "buconiates" "buconiatae " feminine ; -- [XAXNO] :: species of vine; + buconiates_F_N = mkN "buconiates" "buconiatae" feminine ; -- [XAXNO] :: species of vine; bucranium_N_N = mkN "bucranium" ; -- [XEXIO] :: ox-head, representation of one on alter; plant so shaped; place of sacrifice; bucula_F_N = mkN "bucula" ; -- [XXXCS] :: little cheek; mouth/cheek-piece of a helmet; part of a machine/catapult channel; buculus_F_N = mkN "buculus" ; -- [XAXFO] :: young bull/ox; steer; buda_F_N = mkN "buda" ; -- [DAXES] :: sedge; bufalus_M_N = mkN "bufalus" ; -- [XAXES] :: antelope, gazelle; wild ox, buffalo; - bufo_M_N = mkN "bufo" "bufonis " masculine ; -- [XAXFO] :: toad; + bufo_M_N = mkN "bufo" "bufonis" masculine ; -- [XAXFO] :: toad; bugenes_A = mkA "bugenes" "bugenstis"; -- [XYXFO] :: born of/produced from an ox/bull; (as insects from a dead carcass); bugia_F_N = mkN "bugia" ; -- [EXXEE] :: hand candlestick; - bugillo_M_N = mkN "bugillo" "bugillonis " masculine ; -- [DAXFS] :: plant; (also called ajuga reptans)]; + bugillo_M_N = mkN "bugillo" "bugillonis" masculine ; -- [DAXFS] :: plant; (also called ajuga reptans)]; 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?); + 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); 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); - bulbine_F_N = mkN "bulbine" "bulbines " feminine ; -- [XAXNO] :: kind of bulbous plant; - bulbos_M_N = mkN "bulbos" "bulbi " masculine ; -- [XAXCS] :: bulb; onion, edible bulb; + bulbatio_F_N = mkN "bulbatio" "bulbationis" feminine ; -- [XAXNO] :: bulb-like formation (in a kind of stone); + bulbine_F_N = mkN "bulbine" "bulbines" feminine ; -- [XAXNO] :: kind of bulbous plant; + bulbos_M_N = mkN "bulbos" "bulbi" masculine ; -- [XAXCS] :: bulb; onion, edible bulb; bulbosus_A = mkA "bulbosus" "bulbosa" "bulbosum" ; -- [XAXNO] :: bulbous, having bulbs; bulbulus_M_N = mkN "bulbulus" ; -- [DAXES] :: small bulb; bulbus_M_N = mkN "bulbus" ; -- [XAXCO] :: bulb; onion, edible bulb; - bule_F_N = mkN "bule" "bules " feminine ; -- [XLHEO] :: Greek council or senate; + bule_F_N = mkN "bule" "bules" feminine ; -- [XLHEO] :: Greek council or senate; buleuta_M_N = mkN "buleuta" ; -- [XLHEO] :: member of a Greek council or senate; - buleuterion_N_N = mkN "buleuterion" "buleuterii " neuter ; -- [XLHNO] :: council/senate house/chamber (Greek); + buleuterion_N_N = mkN "buleuterion" "buleuterii" neuter ; -- [XLHNO] :: council/senate house/chamber (Greek); buleuterium_N_N = mkN "buleuterium" ; -- [XLHNO] :: council/senate house/chamber (Greek); bulga_F_N = mkN "bulga" ; -- [XXXDO] :: bag, wallet, purse; Gallic leather knapsack; womb (slang); bulima_F_N = mkN "bulima" ; -- [DXXFS] :: great/insatiable hunger; weakness of stomach/fainting (L+S); bulimia_F_N = mkN "bulimia" ; -- [GBXEK] :: bulimia; bulimo_V = mkV "bulimare" ; -- [DXXES] :: have great/insatiable hunger; - bulimos_M_N = mkN "bulimos" "bulimi " masculine ; -- [XXXEO] :: great/insatiable hunger; weakness of stomach/fainting (L+S); + bulimos_M_N = mkN "bulimos" "bulimi" masculine ; -- [XXXEO] :: great/insatiable hunger; weakness of stomach/fainting (L+S); bulimosus_A = mkA "bulimosus" "bulimosa" "bulimosum" ; -- [DXXES] :: bulimic; afflicted with insatiable hunger; bulimus_M_N = mkN "bulimus" ; -- [XXXEO] :: great/insatiable hunger; weakness of stomach/fainting (L+S); bulla_F_N = mkN "bulla" ; -- [EEXCE] :: |Papal bull; Papal document; stamped lead seal of Papal document; 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; + 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); + 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; bumammus_A = mkA "bumammus" "bumamma" "bumammum" ; -- [XXXFO] :: having large clusters; with large breasts; @@ -7890,19 +7890,19 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat bumastus_F_N = mkN "bumastus" ; -- [DXXES] :: large swelling grapes; vine having such grapes; bumbulum_N_N = mkN "bumbulum" ; -- [EBXEW] :: break wind; fart; bumelia_F_N = mkN "bumelia" ; -- [XAXNO] :: large (common) ash-tree (Fraxinus excelsior); - bundon_M_N = mkN "bundon" "bundonis " masculine ; -- [EAXCV] :: farmer; - bunias_F_N = mkN "bunias" "buniadis " feminine ; -- [XAXEO] :: kind of turnip (French turnip, Brassica napus?); - bunion_N_N = mkN "bunion" "bunii " neuter ; -- [XAXNO] :: kind of turnip; + bundon_M_N = mkN "bundon" "bundonis" masculine ; -- [EAXCV] :: farmer; + bunias_F_N = mkN "bunias" "buniadis" feminine ; -- [XAXEO] :: kind of turnip (French turnip, Brassica napus?); + 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; 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; + 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); - buprestis_F_N = mkN "buprestis" "buprestis " feminine ; -- [XAXEO] :: beetle (poisonous, sting cattle to swelling L+S); plant (unidentified); + bupleuron_N_N = mkN "bupleuron" "bupleuri" neuter ; -- [XAXNO] :: plant (unidentified); (hare's-ear L+S); + buprestis_F_N = mkN "buprestis" "buprestis" feminine ; -- [XAXEO] :: beetle (poisonous, sting cattle to swelling L+S); plant (unidentified); bura_F_N = mkN "bura" ; -- [XAXDO] :: plow beam, curved hinder part of plow; - burdo_M_N = mkN "burdo" "burdonis " masculine ; -- [XAXEO] :: mule; hinny; (general term for horse/ass hybrids); pilgrim's "mule"/staff; + burdo_M_N = mkN "burdo" "burdonis" masculine ; -- [XAXEO] :: mule; hinny; (general term for horse/ass hybrids); pilgrim's "mule"/staff; burdonarius_M_N = mkN "burdonarius" ; -- [XAXFO] :: muleteer, mule skinner, mule driver; burdubasta_M_N = mkN "burdubasta" ; -- [XXXFO] :: pug; (word of doubtful meaning applied as abuse to decrepit gladiator); burdunculus_M_N = mkN "burdunculus" ; -- [DAXFS] :: plant (barage?); @@ -7910,48 +7910,48 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat burgaria_F_N = mkN "burgaria" ; -- [ELXEM] :: burglary; burgarius_A = mkA "burgarius" "burgaria" "burgarium" ; -- [GXXEK] :: bourgeois; burgarius_M_N = mkN "burgarius" ; -- [XWXIO] :: inhabitant of a castle/fort; defenders of borders/marches (pl.); - burgator_M_N = mkN "burgator" "burgatoris " masculine ; -- [FLXFM] :: burglar; - burgensis_F_N = mkN "burgensis" "burgensis " feminine ; -- [EXXCV] :: citizen/burgess/burger; inhabitants/residents (pl.) of a (walled) town/borough; - burgensis_M_N = mkN "burgensis" "burgensis " masculine ; -- [EXXCV] :: citizen/burgess/burger; inhabitants/residents (pl.) of a (walled) town/borough; + burgator_M_N = mkN "burgator" "burgatoris" masculine ; -- [FLXFM] :: burglar; + burgensis_F_N = mkN "burgensis" "burgensis" feminine ; -- [EXXCV] :: citizen/burgess/burger; inhabitants/residents (pl.) of a (walled) town/borough; + burgensis_M_N = mkN "burgensis" "burgensis" masculine ; -- [EXXCV] :: citizen/burgess/burger; inhabitants/residents (pl.) of a (walled) town/borough; burgeria_F_N = mkN "burgeria" ; -- [ELXEM] :: burglary; burgimagister_M_N = mkN "burgimagister" ; -- [GXXEK] :: burgomaster; mayor; burgus_M_N = mkN "burgus" ; -- [XWXIO] :: castle, fort, fortress; fortified town (medieval), borough; burichus_M_N = mkN "burichus" ; -- [DAXES] :: small horse; buricus_M_N = mkN "buricus" ; -- [DAXES] :: small horse; - buris_F_N = mkN "buris" "buris " feminine ; -- [XAXDO] :: plow beam, curved hinder part of plow; + buris_F_N = mkN "buris" "buris" feminine ; -- [XAXDO] :: plow beam, curved hinder part of plow; burius_M_N = mkN "burius" ; -- [DAXFS] :: species of animal (unknown); burra_F_N = mkN "burra" ; -- [DXXES] :: small cow with a red mouth/muzzle; shaggy garment; trifles (pl.), nonsense; burranicum_N_N = mkN "burranicum" ; -- [XXXES] :: vessel; (perhaps for a burranicus drink - composed of milk and must/new wine); burranicus_A = mkA "burranicus" "burranica" "burranicum" ; -- [XXXES] :: composed of milk and must/new wine (of a drink); - burrhinon_N_N = mkN "burrhinon" "burrhini " neuter ; -- [DAXFS] :: plant (oxnose); + 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; + 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; bursula_F_N = mkN "bursula" ; -- [EXXEE] :: small purse/case; - bus_F_N = mkN "bus" "bus " feminine ; -- [BAXDO] :: ox, bull; cow; cattle (pl.); (odd form mostly in Varro); - bus_M_N = mkN "bus" "bus " masculine ; -- [BAXDO] :: ox, bull; cow; cattle (pl.); (odd form mostly in Varro); + bus_F_N = mkN "bus" "bus" feminine ; -- [BAXDO] :: ox, bull; cow; cattle (pl.); (odd form mostly in Varro); + bus_M_N = mkN "bus" "bus" masculine ; -- [BAXDO] :: ox, bull; cow; cattle (pl.); (odd form mostly in Varro); buselinum_N_N = mkN "buselinum" ; -- [XAXNO] :: large variety of parsley; busequa_M_N = mkN "busequa" ; -- [XAXEO] :: cow-herd, herdsman, man who looks after cattle, cowboy; - bustar_M_N = mkN "bustar" "bustaris " masculine ; -- [DXXES] :: place where dead bodies were burned; + bustar_M_N = mkN "bustar" "bustaris" masculine ; -- [DXXES] :: place where dead bodies were burned; busticetum_N_N = mkN "busticetum" ; -- [DXXES] :: place where dead bodies were burned; bustirapus_M_N = mkN "bustirapus" ; -- [XXXFO] :: grave robber; tomb robber; (term of reproach L+S); bustualis_A = mkA "bustualis" "bustualis" "bustuale" ; -- [DXXES] :: of/pertaining to place where dead bodies were burned; bustuarius_A = mkA "bustuarius" "bustuaria" "bustuarium" ; -- [XXXEO] :: connected with/frequenting tombs; (~us gladiator fights at tomb to honor dead); bustum_N_N = mkN "bustum" ; -- [XXXBO] :: tomb, grave-mound; corpse; funeral pyre, ashes; heap of ashes (remains of city); - busycon_N_N = mkN "busycon" "busyci " neuter ; -- [XAXFO] :: large fig; - buteo_M_N = mkN "buteo" "buteonis " masculine ; -- [XAXCO] :: species of hawk (buzzard?); (as a cognomen); + busycon_N_N = mkN "busycon" "busyci" neuter ; -- [XAXFO] :: large fig; + buteo_M_N = mkN "buteo" "buteonis" masculine ; -- [XAXCO] :: species of hawk (buzzard?); (as a cognomen); buthysia_F_N = mkN "buthysia" ; -- [XEXFO] :: sacrifice of oxen; - buthytes_M_N = mkN "buthytes" "buthytae " masculine ; -- [XEXNO] :: sacrificer of oxen; - butio_M_N = mkN "butio" "butionis " masculine ; -- [DAXFS] :: bittern (bird that booms/roars like an ox during mating); + buthytes_M_N = mkN "buthytes" "buthytae" masculine ; -- [XEXNO] :: sacrificer of oxen; + butio_M_N = mkN "butio" "butionis" masculine ; -- [DAXFS] :: bittern (bird that booms/roars like an ox during mating); buttubattum_N_N = mkN "buttubattum" ; -- [XXXFO] :: trifles (pl.), worthless things (L+S) (decl. uncertain); buttuti_Interj = ss "buttuti" ; -- [XEIFS] :: Buttuti!; (exclamation used by Hernici of Latinum at religious festivals); buttutti_Interj = ss "buttutti" ; -- [XEIFO] :: Buttuti!; (exclamation used by Hernici of Latinum at religious festivals); butubattum_N_N = mkN "butubattum" ; -- [XXXFS] :: trifles (pl.), worthless things (decl. uncertain); buturum_N_N = mkN "buturum" ; -- [XAXDO] :: butter; - butyron_N_N = mkN "butyron" "butyri " neuter ; -- [XAXDS] :: butter; + butyron_N_N = mkN "butyron" "butyri" neuter ; -- [XAXDS] :: butter; buvino_V2 = mkV2 (mkV "buvinare") ; -- [DBXFS] :: menstruate, have monthly period (woman); buxans_A = mkA "buxans" "buxantis"; -- [XAXFO] :: characteristic of boxwood (color); buxeirostris_A = mkA "buxeirostris" "buxeirostris" "buxeirostre" ; -- [XAXFO] :: having beak of color of boxwood; @@ -7971,10 +7971,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat byssus_F_N = mkN "byssus" ; -- [XAXFO] :: kind of fine flax; linen made of it (L+S); cotton; caballa_F_N = mkN "caballa" ; -- [XAXFS] :: mare; caballarius_M_N = mkN "caballarius" ; -- [DXXFS] :: horseman, rider; hostler; - caballatio_F_N = mkN "caballatio" "caballationis " feminine ; -- [DAXFS] :: fodder/feed for a horse; + caballatio_F_N = mkN "caballatio" "caballationis" feminine ; -- [DAXFS] :: fodder/feed for a horse; caballinus_A = mkA "caballinus" "caballina" "caballinum" ; -- [XAXEO] :: of a horse, horse-; - caballio_M_N = mkN "caballio" "caballionis " masculine ; -- [DAXFS] :: small horse, pony; (perhaps hippocampi); - caballion_N_N = mkN "caballion" "caballii " neuter ; -- [DAXFS] :: plant also called cynoglossa, hartsongue, spleenwort; + caballio_M_N = mkN "caballio" "caballionis" masculine ; -- [DAXFS] :: small horse, pony; (perhaps hippocampi); + caballion_N_N = mkN "caballion" "caballii" neuter ; -- [DAXFS] :: plant also called cynoglossa, hartsongue, spleenwort; caballus_M_N = mkN "caballus" ; -- [XAXCO] :: horse, riding horse, packhorse; (classical usu. an inferior horse, nag); cabus_M_N = mkN "cabus" ; -- [DAQFS] :: grain measure (Hebrew); cacabaceus_A = mkA "cacabaceus" "cacabacea" "cacabaceum" ; -- [DXXFS] :: of/pertaining to a cooking/kitchen pot; @@ -7983,44 +7983,44 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cacabulus_M_N = mkN "cacabulus" ; -- [XXXFO] :: bell; small cooking pot (L+S), vessel; 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); + 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); caccabulus_M_N = mkN "caccabulus" ; -- [XXXFO] :: bell; small cooking pot (L+S), vessel; caccabus_M_N = mkN "caccabus" ; -- [XXXCO] :: pot (cooking/kitchen); pan (Cal); - caccitus_M_N = mkN "caccitus" "caccitus " masculine ; -- [XXXFO] :: Sweetie; (used in reference to a beautiful boy); (rude?); - cacemphaton_N_N = mkN "cacemphaton" "cacemphati " neuter ; -- [DXXES] :: illsounding, low or improper expression; + caccitus_M_N = mkN "caccitus" "caccitus" masculine ; -- [XXXFO] :: Sweetie; (used in reference to a beautiful boy); (rude?); + cacemphaton_N_N = mkN "cacemphaton" "cacemphati" neuter ; -- [DXXES] :: illsounding, low or improper expression; cachecta_M_N = mkN "cachecta" ; -- [XBXNO] :: sickly/ailing person; consumptive; cachecticus_A = mkA "cachecticus" "cachectica" "cachecticum" ; -- [XBXNO] :: sickly/ailing; consumptive; cachexia_F_N = mkN "cachexia" ; -- [DBXES] :: consumption, wasting; cachinnabilis_A = mkA "cachinnabilis" "cachinnabilis" "cachinnabile" ; -- [XXXFO] :: of immoderate/excessive laughter; boisterous; capable of laughing; laughing; - cachinnatio_F_N = mkN "cachinnatio" "cachinnationis " feminine ; -- [XXXEO] :: immoderate/excessive or boisterous laughter, guffawing; jeering; - cachinno_M_N = mkN "cachinno" "cachinnonis " masculine ; -- [XXXFO] :: loud laughter; guffawing; jeering; one who laughs (violently) (L+S), derider; + cachinnatio_F_N = mkN "cachinnatio" "cachinnationis" feminine ; -- [XXXEO] :: immoderate/excessive or boisterous laughter, guffawing; jeering; + cachinno_M_N = mkN "cachinno" "cachinnonis" masculine ; -- [XXXFO] :: loud laughter; guffawing; jeering; one who laughs (violently) (L+S), derider; cachinno_V = mkV "cachinnare" ; -- [XXXDO] :: laugh aloud or boisterously, guffaw; laugh loudly at; cachinnosus_A = mkA "cachinnosus" "cachinnosa" "cachinnosum" ; -- [DXXFS] :: given to loud/immoderate/excessive or boisterous laughter; cachinnus_M_N = mkN "cachinnus" ; -- [XXXCO] :: loud/excessive/boisterous/derisive laugh, guffaw; jeer; (applied to waves); cachla_F_N = mkN "cachla" ; -- [XAXNS] :: plant, oxeye (also called buphthalmos); caco_V = mkV "cacare" ; -- [XXXCO] :: defecate; defecate upon; defile with excrement; (rude); - cacoethes_N_N = mkN "cacoethes" "cacoethis " neuter ; -- [XBXEO] :: malignant/obstinate tumor/disease; flaw/disease of character, passion; + cacoethes_N_N = mkN "cacoethes" "cacoethis" neuter ; -- [XBXEO] :: malignant/obstinate tumor/disease; flaw/disease of character, passion; cacometer_A = mkA "cacometer" "cacometra" "cacometrum" ; -- [DPXFS] :: unmetrical, faulty in meter; cacometrus_A = mkA "cacometrus" "cacometra" "cacometrum" ; -- [DPXFS] :: unmetrical, faulty in meter; - cacophaton_N_N = mkN "cacophaton" "cacophati " neuter ; -- [XGXFS] :: cacophony; union of ugly/disagreeable sounds forming equivocal word/expression; + cacophaton_N_N = mkN "cacophaton" "cacophati" neuter ; -- [XGXFS] :: cacophony; union of ugly/disagreeable sounds forming equivocal word/expression; cacophonia_F_N = mkN "cacophonia" ; -- [FGXFS] :: ugly/disagreeable sound formed by meeting of syllables/words; cacophony; - cacosyntheton_N_N = mkN "cacosyntheton" "cacosyntheti " neuter ; -- [XGXEO] :: ugly-sounding group of letters/words; incorrect connection of words (L+S); + cacosyntheton_N_N = mkN "cacosyntheton" "cacosyntheti" neuter ; -- [XGXEO] :: ugly-sounding group of letters/words; incorrect connection of words (L+S); cacozelia_F_N = mkN "cacozelia" ; -- [XXXEO] :: bad taste; affection of style; bad/faulty/awkward imitation (L+S); cacozelos_A = mkA "cacozelos" "cacozelos" "cacozelon" ; -- [XXXEO] :: stylistically affected; in bad taste; cacozelos_Adv = mkAdv "cacozelos" ; -- [XXXFO] :: with stylistically affection; in bad taste; cacozelus_A = mkA "cacozelus" "cacozela" "cacozelum" ; -- [XXXES] :: stylistically affected; bad imitator/imitation of; in bad taste; - cactos_M_N = mkN "cactos" "cacti " masculine ; -- [XAXNO] :: cardoon (Cynara cardunculus), Spanish artichoke; (prickly plant w/edible stalk); + cactos_M_N = mkN "cactos" "cacti" masculine ; -- [XAXNO] :: cardoon (Cynara cardunculus), Spanish artichoke; (prickly plant w/edible stalk); cactus_M_N = mkN "cactus" ; -- [XXXES] :: cardoon (Cynara cardunculus), Spanish artichoke; anything thorny/unpleasant; cacula_M_N = mkN "cacula" ; -- [XWXCO] :: soldier's servant/slave, batman, orderly; servant; caculatum_N_N = mkN "caculatum" ; -- [XWXFS] :: servitude; (esp. of a soldier's servant); - caculatus_M_N = mkN "caculatus" "caculatus " masculine ; -- [XWXFO] :: servitude; (esp. of a soldier's servant); - cacumen_N_N = mkN "cacumen" "cacuminis " neuter ; -- [XXXAO] :: top, peak, summit; shoot, blade of grass, tip of tree/branch; zenith; limit; + caculatus_M_N = mkN "caculatus" "caculatus" masculine ; -- [XWXFO] :: servitude; (esp. of a soldier's servant); + cacumen_N_N = mkN "cacumen" "cacuminis" neuter ; -- [XXXAO] :: top, peak, summit; shoot, blade of grass, tip of tree/branch; zenith; limit; cacumino_V = mkV "cacuminare" ; -- [XXXEO] :: make pointed or tapered; sharpen; - cadaver_N_N = mkN "cadaver" "cadaveris " neuter ; -- [XXXCO] :: corpse, cadaver, dead body; ruined city; + cadaver_N_N = mkN "cadaver" "cadaveris" neuter ; -- [XXXCO] :: corpse, cadaver, dead body; ruined city; cadaverina_F_N = mkN "cadaverina" ; -- [DXXFS] :: carrion, flesh of a carcass; cadaverinus_A = mkA "cadaverinus" "cadaverina" "cadaverinum" ; -- [DXXFS] :: of/pertaining to carrion, carrion-; cadaverosus_A = mkA "cadaverosus" "cadaverosa" "cadaverosum" ; -- [XXXFO] :: like that of a corpse/dead body; cadaverous; ghastly; @@ -8029,28 +8029,28 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cadivus_A = mkA "cadivus" "cadiva" "cadivum" ; -- [XAXNO] :: fallen (fruit), windfall; having falling sickness/epilepsy (L+S), epileptic; 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; + 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; + 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); caduceum_N_N = mkN "caduceum" ; -- [XXXCO] :: herald's staff carried as token of peace/truce; wand of Mercury; caduceus_M_N = mkN "caduceus" ; -- [XXXCO] :: herald's staff carried as token of peace/truce; wand of Mercury; caducifer_A = mkA "caducifer" "caducifera" "caduciferum" ; -- [XEXEO] :: staff-bearer, i.e. Mercury; - caducitas_F_N = mkN "caducitas" "caducitatis " feminine ; -- [FXXEE] :: weakness; frailty; perishableness; + caducitas_F_N = mkN "caducitas" "caducitatis" feminine ; -- [FXXEE] :: weakness; frailty; perishableness; caduciter_Adv = mkAdv "caduciter" ; -- [XXXFO] :: precipitately, headlong; caducum_N_N = mkN "caducum" ; -- [XLXES] :: property without/that cannot be taken by an heir; unowned/escheated estate; caducus_A = mkA "caducus" "caduca" "caducum" ; -- [XXXAO] :: ready to fall; tottering/unsteady; falling, fallen; doomed; perishable; futile; cadurcum_N_N = mkN "cadurcum" ; -- [XXXEO] :: coverlet (of Cadurcian/French linen); marriage bed; cadus_M_N = mkN "cadus" ; -- [XXXCO] :: jar, large jar for wine/oil/liquids; urn, funeral urn; money jar (L+S); - cadytas_M_N = mkN "cadytas" "cadytae " masculine ; -- [XAQNO] :: parasitic plant (Syrian) (Cassyta filiformis), dodder; - caecator_M_N = mkN "caecator" "caecatoris " masculine ; -- [DXXFS] :: one who obstructs/stops a fountain; (one who makes blind); + cadytas_M_N = mkN "cadytas" "cadytae" masculine ; -- [XAQNO] :: parasitic plant (Syrian) (Cassyta filiformis), dodder; + caecator_M_N = mkN "caecator" "caecatoris" masculine ; -- [DXXFS] :: one who obstructs/stops a fountain; (one who makes blind); caecatus_A = mkA "caecatus" "caecata" "caecatum" ; -- [XXXEE] :: blinded; - caecias_M_N = mkN "caecias" "caeciae " masculine ; -- [XSXDO] :: east-north-east wind; + caecias_M_N = mkN "caecias" "caeciae" masculine ; -- [XSXDO] :: east-north-east wind; caecigenus_A = mkA "caecigenus" "caecigena" "caecigenum" ; -- [XBXFO] :: born blind; caecilia_F_N = mkN "caecilia" ; -- [XAXFO] :: blind-worm; kind of lizard/lettuce (L+S); - caecitas_F_N = mkN "caecitas" "caecitatis " feminine ; -- [XBXCO] :: blindness, darkness; mental/moral blindness, lack of discernment; - caecitudo_F_N = mkN "caecitudo" "caecitudinis " feminine ; -- [XBXFO] :: blindness; [caecitudo nocturna => night blindness]; + caecitas_F_N = mkN "caecitas" "caecitatis" feminine ; -- [XBXCO] :: blindness, darkness; mental/moral blindness, lack of discernment; + 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; caecus_A = mkA "caecus" ; -- [XXXAO] :: blind; unseeing; dark, gloomy, hidden, secret; aimless, confused, random; rash; @@ -8058,30 +8058,30 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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); 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; + 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; caelatum_N_N = mkN "caelatum" ; -- [XTXEO] :: embossed/engraved work (esp. in gold/silver); caelatura_F_N = mkN "caelatura" ; -- [XXXCO] :: engraving/carving (art/process); engraved work, engraving/carving (product); caelebs_A = mkA "caelebs" "caelibis"; -- [XXXCO] :: unmarried (usu. men), single, widowed, divorced; celibate; not supporting vines; - caelebs_M_N = mkN "caelebs" "caelibis " masculine ; -- [XXXEO] :: unmarried man, bachelor, widower; celibate (eccl.); + caelebs_M_N = mkN "caelebs" "caelibis" masculine ; -- [XXXEO] :: unmarried man, bachelor, widower; celibate (eccl.); caeleps_A = mkA "caeleps" "caelibis"; -- [XXXCO] :: unmarried (usu. men), single, widowed, divorced; not supporting vines (trees); - caeleps_M_N = mkN "caeleps" "caelibis " masculine ; -- [XXXEO] :: unmarried man, bachelor, widower; + caeleps_M_N = mkN "caeleps" "caelibis" masculine ; -- [XXXEO] :: unmarried man, bachelor, widower; 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; + 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; 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.); + 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); caelibalis_A = mkA "caelibalis" "caelibalis" "caelibale" ; -- [DXXES] :: [~ hasta => small spear/pin with which bride's hair was divided into 6 locks]; caelibaris_A = mkA "caelibaris" "caelibaris" "caelibare" ; -- [XXXFS] :: [~ hasta => small spear/pin with which bride's hair was divided into 6 locks]; - caelibatus_M_N = mkN "caelibatus" "caelibatus " masculine ; -- [XXXEO] :: celibacy; bachelorhood; state of not being married; single life; + caelibatus_M_N = mkN "caelibatus" "caelibatus" masculine ; -- [XXXEO] :: celibacy; bachelorhood; state of not being married; single life; caelicola_C_N = mkN "caelicola" ; -- [XEXCO] :: heaven dweller; deity, god/goddess; worshiper of heavens (L+S); caelicus_A = mkA "caelicus" "caelica" "caelicum" ; -- [FEXEE] :: heavenly; celestial; caelifer_A = mkA "caelifer" "caelifera" "caeliferum" ; -- [XXXCO] :: supporting sky/heavens; @@ -8095,7 +8095,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat caelus_M_N = mkN "caelus" ; -- [DEXDS] :: |heaven (eccl.); the_heavens (pl.); [regnum caelorum => kingdom of heaven]; caementa_F_N = mkN "caementa" ; -- [XXXIO] :: small stones, rubble (for concrete); quarry stones (for walls) (L+S); chips; caementarius_M_N = mkN "caementarius" ; -- [XTXIO] :: worker in concrete; mason, stone cutter; builder of walls (L+S); - caementatio_F_N = mkN "caementatio" "caementationis " feminine ; -- [GXXEK] :: cementing; + caementatio_F_N = mkN "caementatio" "caementationis" feminine ; -- [GXXEK] :: cementing; caementicium_N_N = mkN "caementicium" ; -- [XTXEO] :: concrete (undressed stones/rubble, lime and sand); unhewn/quarried stone (L+S); caementicius_A = mkA "caementicius" "caementicia" "caementicium" ; -- [XTXCO] :: of concrete (undressed stones/rubble, lime and sand); of unhewn stones (L+S); caementitium_N_N = mkN "caementitium" ; -- [XTXFS] :: concrete (undressed stones/rubble, lime and sand); unhewn/quarried stone (L+S); @@ -8107,17 +8107,17 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat caenacularius_A = mkA "caenacularius" "caenacularia" "caenacularium" ; -- [XXXFS] :: of/pertaining to a garret/attic; caenaculum_N_N = mkN "caenaculum" ; -- [XXXCO] :: attic, garret (often let as lodging); upstairs dining room; top/upper story; caenaticus_A = mkA "caenaticus" "caenatica" "caenaticum" ; -- [XXXFO] :: of/pertaining to (a) dinner; - caenatio_F_N = mkN "caenatio" "caenationis " feminine ; -- [XXXCO] :: dining-room; dining hall; + caenatio_F_N = mkN "caenatio" "caenationis" feminine ; -- [XXXCO] :: dining-room; dining hall; caenatiuncula_F_N = mkN "caenatiuncula" ; -- [XXXFO] :: small dining-room; - caenator_M_N = mkN "caenator" "caenatoris " masculine ; -- [DXXFS] :: diner; dinner guest; + 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); + 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; + caenositas_F_N = mkN "caenositas" "caenositatis" feminine ; -- [XXXES] :: dirty/foul/muddy place; 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; @@ -8126,15 +8126,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat caeparia_F_N = mkN "caeparia" ; -- [DBXFS] :: disease in private parts; caeparius_M_N = mkN "caeparius" ; -- [XAXFO] :: grower of onions; trader in onions (L+S); caepaticus_A = mkA "caepaticus" "caepatica" "caepaticum" ; -- [XXXFO] :: resembling an onion; - caepe_N_N = mkN "caepe" "caepis " neuter ; -- [XAXCO] :: onion (Allium capa); + caepe_N_N = mkN "caepe" "caepis" neuter ; -- [XAXCO] :: onion (Allium capa); caepetum_N_N = mkN "caepetum" ; -- [XAXFO] :: onion bed; caepina_F_N = mkN "caepina" ; -- [XAXFO] :: onion bed/field; caeposus_A = mkA "caeposus" "caeposa" "caeposum" ; -- [XAXFO] :: abounding in onions; full of onions; caepulla_F_N = mkN "caepulla" ; -- [XAXFS] :: onion bed/field; caerefolium_N_N = mkN "caerefolium" ; -- [XAXDO] :: chervil (Anthiscus cerefolium); - caereiale_N_N = mkN "caereiale" "caereialis " neuter ; -- [EEXEE] :: book of ceremonies; + caereiale_N_N = mkN "caereiale" "caereialis" neuter ; -- [EEXEE] :: book of ceremonies; caeremonia_F_N = mkN "caeremonia" ; -- [FEXCF] :: ceremony; sacred rite/ritual/usage; holy dread, reverence, worship; sanctity; - caeremonial_N_N = mkN "caeremonial" "caeremonialis " neuter ; -- [FEXEF] :: ceremonial; system of rules observed on certain occasions/at times of worship; + caeremonial_N_N = mkN "caeremonial" "caeremonialis" neuter ; -- [FEXEF] :: ceremonial; system of rules observed on certain occasions/at times of worship; caeremonialis_A = mkA "caeremonialis" "caeremonialis" "caeremoniale" ; -- [FEXEF] :: ceremonial; pertaining to a religious/sacred rite/ritual/usage; caeremoniarius_M_N = mkN "caeremoniarius" ; -- [EXXEE] :: master of ceremonies; caerimonia_F_N = mkN "caerimonia" ; -- [XEXCO] :: ceremony; sacred rite/ritual/usage; holy dread, reverence, worship; sanctity; @@ -8155,126 +8155,126 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat caesareus_A = mkA "caesareus" "caesarea" "caesareum" ; -- [FXXFM] :: imperial; of Caesar; caesarianum_N_N = mkN "caesarianum" ; -- [XXXFO] :: eye salve; caesariatus_A = mkA "caesariatus" "caesariata" "caesariatum" ; -- [XXXEO] :: having long/flowing/luxuriant hair/plume; having lush vegetation/foliage; - caesaries_F_N = mkN "caesaries" "caesariei " feminine ; -- [XXXCO] :: hair; long/flowing/luxuriant hair; dark/beautiful hair; plume (of a helmet); + caesaries_F_N = mkN "caesaries" "caesariei" feminine ; -- [XXXCO] :: hair; long/flowing/luxuriant hair; dark/beautiful hair; plume (of a helmet); caesicius_A = mkA "caesicius" "caesicia" "caesicium" ; -- [BXXFS] :: bluish; dark blue; caesim_Adv = mkAdv "caesim" ; -- [XXXCO] :: by chopping/cutting; by hewing/slashing; with sword edge; in short clauses; - caesio_F_N = mkN "caesio" "caesionis " feminine ; -- [XAXFO] :: chopping/cutting/hewing down (trees); - caesitas_F_N = mkN "caesitas" "caesitatis " feminine ; -- [DXXFS] :: blue; blueness; + 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; 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; - caespitator_M_N = mkN "caespitator" "caespitatoris " masculine ; -- [XAXFS] :: stumbler; shying horse; + 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; + caespitator_M_N = mkN "caespitator" "caespitatoris" masculine ; -- [XAXFS] :: stumbler; shying horse; caespiticius_A = mkA "caespiticius" "caespiticia" "caespiticium" ; -- [DAXFS] :: made of turf; caespito_V = mkV "caespitare" ; -- [XXXFO] :: stumble; caesposus_A = mkA "caesposus" "caesposa" "caesposum" ; -- [DAXFS] :: abounding in grass/turf; - caestar_N_N = mkN "caestar" "caestaris " neuter ; -- [FXXFZ] :: support; means of girdle; + caestar_N_N = mkN "caestar" "caestaris" neuter ; -- [FXXFZ] :: support; means of girdle; caesticillus_M_N = mkN "caesticillus" ; -- [DXXFS] :: small ring/hoop placed on head to support a burden; - caestos_M_N = mkN "caestos" "caesti " masculine ; -- [XXXFS] :: band supporting breasts (esp. girdle of Venus); girdle/belt/girth/strap; - caestus_M_N = mkN "caestus" "caestus " masculine ; -- [XXXCO] :: boxing-glove, strip of leather weighted with lead/iron tied to boxer's hands; + caestos_M_N = mkN "caestos" "caesti" masculine ; -- [XXXFS] :: band supporting breasts (esp. girdle of Venus); girdle/belt/girth/strap; + caestus_M_N = mkN "caestus" "caestus" masculine ; -- [XXXCO] :: boxing-glove, strip of leather weighted with lead/iron tied to boxer's hands; caesullus_A = mkA "caesullus" "caesulla" "caesullum" ; -- [XXXFO] :: gray-eyed, having gray eyes; caesum_N_N = mkN "caesum" ; -- [DGXES] :: comma; pause, stop; caesura_F_N = mkN "caesura" ; -- [XAXEO] :: cutting (down/off), felling (of trees); that which was cut off; pause in verse; caesuratim_Adv = mkAdv "caesuratim" ; -- [DGXFS] :: with pauses in short clauses; - caesus_M_N = mkN "caesus" "caesus " masculine ; -- [DAXFS] :: cutting, cutting off; + caesus_M_N = mkN "caesus" "caesus" masculine ; -- [DAXFS] :: cutting, cutting off; caeterus_A = mkA "caeterus" "caetera" "caeterum" ; -- [XXXAS] :: the_other; the_others (pl.). the_remaining/rest, all the rest; caetra_F_N = mkN "caetra" ; -- [XWSCO] :: caetra (small light shield); (Spanish); elephant's hide; 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; + caetus_M_N = mkN "caetus" "caetus" masculine ; -- [XXXBE] :: |social intercourse (w/hominium), society, company; sexual intercourse; 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; caia_F_N = mkN "caia" ; -- [XXXFS] :: cudgel; - caiatio_F_N = mkN "caiatio" "caiationis " feminine ; -- [DXXFS] :: striking/cudgeling/beating of children; + caiatio_F_N = mkN "caiatio" "caiationis" feminine ; -- [DXXFS] :: striking/cudgeling/beating of children; caio_V2 = mkV2 (mkV "caiare") ; -- [DXXFS] :: beat, thrash, cudgel; cala_F_N = mkN "cala" ; -- [XAXFO] :: firewood; piece of firewood; - calabrix_F_N = mkN "calabrix" "calabricis " feminine ; -- [XAXNO] :: kind of thorn tree; (perh. hawthorn); (perh. buckthorn L+S); + calabrix_F_N = mkN "calabrix" "calabricis" feminine ; -- [XAXNO] :: kind of thorn tree; (perh. hawthorn); (perh. buckthorn L+S); calamarius_A = mkA "calamarius" "calamaria" "calamarium" ; -- [XGXFO] :: for holding pens; pertaining to a writing reed; calamellus_M_N = mkN "calamellus" ; -- [DGXFS] :: small/little (writing) reed/pen; calamentum_N_N = mkN "calamentum" ; -- [XAXFO] :: dead wood, withered/dry wood/vine; - calaminthe_F_N = mkN "calaminthe" "calaminthes " feminine ; -- [DAXFS] :: plant, kind of mint; + calaminthe_F_N = mkN "calaminthe" "calaminthes" feminine ; -- [DAXFS] :: plant, kind of mint; calamister_M_N = mkN "calamister" ; -- [XXXCO] :: curling-tongs/iron; excessive flourish in discourse; calamistratus_A = mkA "calamistratus" "calamistrata" "calamistratum" ; -- [XXXDO] :: curled with curling-iron; having hair curled, effeminately adorned; calamistrum_N_N = mkN "calamistrum" ; -- [XXXCO] :: curling-tongs/iron; excessive flourish in discourse; - calamitas_F_N = mkN "calamitas" "calamitatis " feminine ; -- [XXXBO] :: loss, damage, harm; misfortune/disaster; military defeat; blight, crop failure; - calamites_M_N = mkN "calamites" "calamitae " masculine ; -- [XAXNO] :: small green frog; (rain frog); (also called diopetes rana); + calamitas_F_N = mkN "calamitas" "calamitatis" feminine ; -- [XXXBO] :: loss, damage, harm; misfortune/disaster; military defeat; blight, crop failure; + calamites_M_N = mkN "calamites" "calamitae" masculine ; -- [XAXNO] :: small green frog; (rain frog); (also called diopetes rana); calamitose_Adv = mkAdv "calamitose" ; -- [XXXFO] :: disastrously; unfortunately, miserably; destructively; calamitosus_A = mkA "calamitosus" "calamitosa" "calamitosum" ; -- [XXXBO] :: calamitous; ruinous, destructive; liable to damage/disaster; damaged/miserable; calamochnus_M_N = mkN "calamochnus" ; -- [XAXNO] :: deposit/efforescence of salt on reeds; sea foam (L+S); (in pure Latin adarca); calamus_M_N = mkN "calamus" ; -- [FXXCF] :: |branch; arm; branch of a candelabrum; - calasis_M_N = mkN "calasis" "calasis " masculine ; -- [XXXFO] :: kind of (woman's) tunic; + calasis_M_N = mkN "calasis" "calasis" masculine ; -- [XXXFO] :: kind of (woman's) tunic; calathiscus_M_N = mkN "calathiscus" ; -- [XXXEO] :: small wicker basket; calathus_M_N = mkN "calathus" ; -- [XXXCO] :: wicker basket, flower basket; wine-cup; milk pail; cheese/curdled milk bowl; calatina_F_N = mkN "calatina" ; -- [XAXNS] :: plant (gentian); - calatio_F_N = mkN "calatio" "calationis " feminine ; -- [XXXFO] :: convoking, calling, summoning; - calator_M_N = mkN "calator" "calatoris " masculine ; -- [XXXCO] :: personal attendant, servant, footman; servant of a priest; + calatio_F_N = mkN "calatio" "calationis" feminine ; -- [XXXFO] :: convoking, calling, summoning; + calator_M_N = mkN "calator" "calatoris" masculine ; -- [XXXCO] :: personal attendant, servant, footman; servant of a priest; calatorius_A = mkA "calatorius" "calatoria" "calatorium" ; -- [DEXFS] :: pertaining to a servant of a priest; calautica_F_N = mkN "calautica" ; -- [XXXEO] :: kind of woman's headdress; (fell down to shoulders); (kind of veil?); calbeus_M_N = mkN "calbeus" ; -- [XXXEO] :: arm-band/filet worn for ornamental/medical purposes; calcabilis_A = mkA "calcabilis" "calcabilis" "calcabile" ; -- [EXXFE] :: able to be trod upon; calcaneum_N_N = mkN "calcaneum" ; -- [XBXFS] :: heel; (rare form for calx); calcaneus_M_N = mkN "calcaneus" ; -- [XBXFS] :: heel; (rare form for calx); - calcar_N_N = mkN "calcar" "calcaris " neuter ; -- [XXXCO] :: spur (for horse); spur, incitement, stimulus; spur of a cock; + calcar_N_N = mkN "calcar" "calcaris" neuter ; -- [XXXCO] :: spur (for horse); spur, incitement, stimulus; spur of a cock; calcarensis_A = mkA "calcarensis" "calcarensis" "calcarense" ; -- [XTXIO] :: of/connected with a lime quarry/kiln/works; - calcarensis_M_N = mkN "calcarensis" "calcarensis " masculine ; -- [DTXFS] :: lime burner; worker at lime kiln/works; + calcarensis_M_N = mkN "calcarensis" "calcarensis" masculine ; -- [DTXFS] :: lime burner; worker at lime kiln/works; calcaria_F_N = mkN "calcaria" ; -- [XTXEO] :: lime quarry; lime kiln; lime works; calcariarius_A = mkA "calcariarius" "calcariaria" "calcariarium" ; -- [XTXIO] :: of/connected with a lime quarry/kiln/works; connected with burning for lime; calcariensis_A = mkA "calcariensis" "calcariensis" "calcariense" ; -- [XTXIO] :: of/connected with a lime quarry/kiln/works; calcarius_A = mkA "calcarius" "calcaria" "calcarium" ; -- [XTXEO] :: designed for burning lime; pertaining to lime; lime-; calcarius_M_N = mkN "calcarius" ; -- [XTXFS] :: lime burner; worker at lime kiln/works; calcata_F_N = mkN "calcata" ; -- [XXXFS] :: filling for ditches, fsacines; ramparts? crates?; - calcator_M_N = mkN "calcator" "calcatoris " masculine ; -- [DXXFS] :: one who treads (in a treadmill); one who treads grapes; - calcatori_M_N = mkN "calcatori" "calcatoriis " masculine ; -- [DXXFS] :: wine press; - calcatrix_F_N = mkN "calcatrix" "calcatricis " feminine ; -- [DXXFS] :: she who treads; she who despises/condemns (something); + calcator_M_N = mkN "calcator" "calcatoris" masculine ; -- [DXXFS] :: one who treads (in a treadmill); one who treads grapes; + calcatori_M_N = mkN "calcatori" "calcatoriis" masculine ; -- [DXXFS] :: wine press; + calcatrix_F_N = mkN "calcatrix" "calcatricis" feminine ; -- [DXXFS] :: she who treads; she who despises/condemns (something); calcatura_F_N = mkN "calcatura" ; -- [XXXFO] :: treading (in a treadmill/wine); calcatus_A = mkA "calcatus" "calcata" "calcatum" ; -- [XGXEO] :: trite, hackneyed; - calcatus_M_N = mkN "calcatus" "calcatus " masculine ; -- [XXXFS] :: treading (in a treadmill); - calceamen_N_N = mkN "calceamen" "calceaminis " neuter ; -- [XXXNO] :: shoe; footwear; + calcatus_M_N = mkN "calcatus" "calcatus" masculine ; -- [XXXFS] :: treading (in a treadmill); + calceamen_N_N = mkN "calceamen" "calceaminis" neuter ; -- [XXXNO] :: shoe; footwear; calceamentarius_M_N = mkN "calceamentarius" ; -- [DXXFS] :: shoemaker; dealer/merchant in shoes; calceamentum_N_N = mkN "calceamentum" ; -- [XXXCO] :: shoe; instrument for stretching hides; calcearia_F_N = mkN "calcearia" ; -- [XXXFS] :: shoe shop/store; calcearium_N_N = mkN "calcearium" ; -- [XXXEO] :: shoe money/allowance; calcearius_M_N = mkN "calcearius" ; -- [XXXIO] :: shoemaker; dealer/merchant in shoes; - calceator_M_N = mkN "calceator" "calceatoris " masculine ; -- [XXXIO] :: shoemaker; - calceatus_M_N = mkN "calceatus" "calceatus " masculine ; -- [XXXEO] :: shoe; footwear; sandal; + calceator_M_N = mkN "calceator" "calceatoris" masculine ; -- [XXXIO] :: shoemaker; + calceatus_M_N = mkN "calceatus" "calceatus" masculine ; -- [XXXEO] :: shoe; footwear; sandal; calcedonius_M_N = mkN "calcedonius" ; -- [EXXFW] :: chalcedony; (stone of third foundation of New Jerusalem in Revelations 21:19); - calcendix_F_N = mkN "calcendix" "calcendicis " feminine ; -- [XAXFO] :: murex, purple-fish; a shellfish from which (royal) purple dye was obtained); + calcendix_F_N = mkN "calcendix" "calcendicis" feminine ; -- [XAXFO] :: murex, purple-fish; a shellfish from which (royal) purple dye was obtained); calceo_V2 = mkV2 (mkV "calceare") ; -- [XXXCO] :: put shoes on, furnish with shoes; shoe (horses); put feet in something; calceolarius_M_N = mkN "calceolarius" ; -- [XXXFO] :: shoemaker; calceolus_M_N = mkN "calceolus" ; -- [XXXEO] :: shoe; slipper; small shoe (L+S); half-boot; calcestrum_N_N = mkN "calcestrum" ; -- [GXXEK] :: concrete; calcetum_N_N = mkN "calcetum" ; -- [XAXNO] :: plant (unidentified); calceus_M_N = mkN "calceus" ; -- [XXXCO] :: shoe; soft shoe, slipper; [~ mullei/patricii => red shoe of ex-curule senator]; - calciamen_N_N = mkN "calciamen" "calciaminis " neuter ; -- [XXXNS] :: shoe; footwear; + calciamen_N_N = mkN "calciamen" "calciaminis" neuter ; -- [XXXNS] :: shoe; footwear; calciamentarius_M_N = mkN "calciamentarius" ; -- [DXXFS] :: shoemaker; dealer/merchant in shoes; calciamentum_N_N = mkN "calciamentum" ; -- [XXXCO] :: shoe; instrument for stretching hides; calciaria_F_N = mkN "calciaria" ; -- [XXXFS] :: shoe shop/store; calciarium_N_N = mkN "calciarium" ; -- [XXXEO] :: shoe money/allowance; calciarius_M_N = mkN "calciarius" ; -- [XXXIO] :: shoemaker; dealer/merchant in shoes; - calciator_M_N = mkN "calciator" "calciatoris " masculine ; -- [XXXIO] :: shoemaker; - calciatus_M_N = mkN "calciatus" "calciatus " masculine ; -- [XXXCO] :: shoe; footwear; sandal; + calciator_M_N = mkN "calciator" "calciatoris" masculine ; -- [XXXIO] :: shoemaker; + calciatus_M_N = mkN "calciatus" "calciatus" masculine ; -- [XXXCO] :: shoe; footwear; sandal; calcifraga_F_N = mkN "calcifraga" ; -- [XAXEO] :: rock-plant (empetros); unknown plant (removes bladder stones); (haristongue?); - calcinatio_F_N = mkN "calcinatio" "calcinationis " feminine ; -- [GSXEK] :: calcination; + calcinatio_F_N = mkN "calcinatio" "calcinationis" feminine ; -- [GSXEK] :: calcination; calcio_V2 = mkV2 (mkV "calciare") ; -- [XXXCO] :: put shoes on, furnish with shoes, shoe (horses); put feet in something; calciolarius_M_N = mkN "calciolarius" ; -- [XXXFS] :: shoemaker; - calcis_M_N = mkN "calcis" "calcis " masculine ; -- [XXXFS] :: lead vial/bottle/jar; - calcitratus_M_N = mkN "calcitratus" "calcitratus " masculine ; -- [XXXNO] :: kicking with heels; - calcitro_F_N = mkN "calcitro" "calcitronis " feminine ; -- [XXXDO] :: one that kicks/is inclined to kick with heels, kicker; + calcis_M_N = mkN "calcis" "calcis" masculine ; -- [XXXFS] :: lead vial/bottle/jar; + calcitratus_M_N = mkN "calcitratus" "calcitratus" masculine ; -- [XXXNO] :: kicking with heels; + calcitro_F_N = mkN "calcitro" "calcitronis" feminine ; -- [XXXDO] :: one that kicks/is inclined to kick with heels, kicker; calcitro_V = mkV "calcitrare" ; -- [XXXEO] :: kick with heels, kick; be refractory; resist; kick convulsively (dying); calcitrosus_A = mkA "calcitrosus" "calcitrosa" "calcitrosum" ; -- [XXXEO] :: inclined/apt to kick with heels, kicking; calcitrosus_M_N = mkN "calcitrosus" ; -- [XXXFO] :: one inclined/apt to kick with heels, kicker; calcium_N_N = mkN "calcium" ; -- [GSXEK] :: calcium; calco_V = mkV "calcare" ; -- [XXXAO] :: tread/trample upon/under foot, crush; tamp/ram down; spurn; copulate (cock); calcularius_A = mkA "calcularius" "calcularia" "calcularium" ; -- [DSXFS] :: of/pertaining to calculations; [~ error => error in reckoning/calculation]; - calculatio_M_N = mkN "calculatio" "calculationis " masculine ; -- [DSXES] :: computation, calculation, reckoning; stone (kidney/bladder), calculus; - calculator_M_N = mkN "calculator" "calculatoris " masculine ; -- [XSXDO] :: one versed in/teacher of arithmetic; calculator, bookkeeper, accountant; + calculatio_M_N = mkN "calculatio" "calculationis" masculine ; -- [DSXES] :: computation, calculation, reckoning; stone (kidney/bladder), calculus; + calculator_M_N = mkN "calculator" "calculatoris" masculine ; -- [XSXDO] :: one versed in/teacher of arithmetic; calculator, bookkeeper, accountant; calculatorius_A = mkA "calculatorius" "calculatoria" "calculatorium" ; -- [XSXIO] :: used in making (arithmetic) calculations; pertaining to an accountant; calculatura_F_N = mkN "calculatura" ; -- [XSXIO] :: calculating, arithmetic; calculensis_A = mkA "calculensis" "calculensis" "calculense" ; -- [XAXNO] :: found in pebbly places; pertaining to stones; - calculo_M_N = mkN "calculo" "calculonis " masculine ; -- [DSXFS] :: calculator, computer, accountant; + calculo_M_N = mkN "calculo" "calculonis" masculine ; -- [DSXFS] :: calculator, computer, accountant; calculo_V2 = mkV2 (mkV "calculare") ; -- [DSXES] :: calculate, compute, reckon; consider as; esteem; calculosus_A = mkA "calculosus" "calculosa" "calculosum" ; -- [XXXCO] :: full of pebbles, pebbly; knobby; suffering from stones (kidney/bladder); calculosus_M_N = mkN "calculosus" ; -- [XBXEO] :: one suffering from/afflicted with kidney/bladder stones; @@ -8289,23 +8289,23 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat caldarius_A = mkA "caldarius" "caldaria" "caldarium" ; -- [XXXES] :: used/suitable for warming/hot water; warm; for plastering bath walls; by heat; caldicerebrius_A = mkA "caldicerebrius" "caldicerebria" "caldicerebrium" ; -- [XXXFO] :: hot-headed; caldicus_A = mkA "caldicus" "caldica" "caldicum" ; -- [XAXFO] :: hot (?); (descriptive of a kind of fig); - caldor_M_N = mkN "caldor" "caldoris " masculine ; -- [XXXEO] :: heat, warmth; + 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; 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; + 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; + 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; calefactorius_A = mkA "calefactorius" "calefactoria" "calefactorium" ; -- [DXXES] :: that has a warming/heating power; warming; calefactus_A = mkA "calefactus" "calefacta" "calefactum" ; -- [XXXEW] :: heated, warmed; excited, roused; [calefacta ora => flushed]; - calefactus_M_N = mkN "calefactus" "calefactus " masculine ; -- [XXXNO] :: action of heating/warming; + calefactus_M_N = mkN "calefactus" "calefactus" masculine ; -- [XXXNO] :: action of heating/warming; calefio_V = mkV "caleferi" ; -- [XXXBS] :: be made/be warm/hot/heated/excited/roused/vexed/troubled; (calefacio PASS); 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; 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; + 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; @@ -8327,23 +8327,23 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat caligaris_A = mkA "caligaris" "caligaris" "caligare" ; -- [XWXEO] :: of/for a soldier's boot; boot-; caligarius_A = mkA "caligarius" "caligaria" "caligarium" ; -- [XWXEO] :: of/for a soldier's boot; boot-; wearing army boots; caligarius_M_N = mkN "caligarius" ; -- [XWXEO] :: maker of soldier's boots, bootmaker; - caligatio_F_N = mkN "caligatio" "caligationis " feminine ; -- [XXXNO] :: darkness, mistiness (of eyes); + caligatio_F_N = mkN "caligatio" "caligationis" feminine ; -- [XXXNO] :: darkness, mistiness (of eyes); caligatus_A = mkA "caligatus" "caligata" "caligatum" ; -- [XWXCO] :: wearing army boots; of common soldier; booted, wearing heavy boots/brogans; caligatus_M_N = mkN "caligatus" ; -- [XWXEO] :: common soldier; private; caligineus_A = mkA "caligineus" "caliginea" "caligineum" ; -- [XXXFO] :: dark, obscuring, murky, gloomy; caliginosus_A = mkA "caliginosus" "caliginosa" "caliginosum" ; -- [XXXCO] :: foggy, misty; covered with mist; obscure, dark, gloomy; uncertain; - caligo_F_N = mkN "caligo" "caliginis " feminine ; -- [XXXBO] :: mist/fog; darkness/gloom/murkiness; moral/intellectual/mental dark; dizziness; + caligo_F_N = mkN "caligo" "caliginis" feminine ; -- [XXXBO] :: mist/fog; darkness/gloom/murkiness; moral/intellectual/mental dark; dizziness; caligo_V = mkV "caligare" ; -- [XXXCO] :: be dark/gloomy/misty/cloudy; have bad vision; cloud; be blinded; be/make dizzy; caligosus_A = mkA "caligosus" "caligosa" "caligosum" ; -- [DXXCS] :: foggy, misty; covered with mist; obscure, dark, gloomy; uncertain; calipha_F_N = mkN "calipha" ; -- [FXQFE] :: caliph; calipha_M_N = mkN "calipha" ; -- [GXXEK] :: caliph; caliptra_F_N = mkN "caliptra" ; -- [XXXFS] :: kind of head covering; - calix_M_N = mkN "calix" "calicis " masculine ; -- [XXXBO] :: cup, goblet, a vessel for drinking; chalice; cup of wine; pot; water regulator; + calix_M_N = mkN "calix" "calicis" masculine ; -- [XXXBO] :: cup, goblet, a vessel for drinking; chalice; cup of wine; pot; water regulator; callaica_F_N = mkN "callaica" ; -- [XXXNO] :: precious stone; (turquoise?); callaina_F_N = mkN "callaina" ; -- [XXXNO] :: pale green precious stone; turquoise; callainus_A = mkA "callainus" "callaina" "callainum" ; -- [XXXEO] :: pale green, greenish-blue, turquoise-colored; - callais_F_N = mkN "callais" "callaidis " feminine ; -- [XXXNO] :: greenish-blue/sea-green precious stone; turquoise; - callarias_M_N = mkN "callarias" "callariae " masculine ; -- [XAXNO] :: kind of codfish; + callais_F_N = mkN "callais" "callaidis" feminine ; -- [XXXNO] :: greenish-blue/sea-green precious stone; turquoise; + callarias_M_N = mkN "callarias" "callariae" masculine ; -- [XAXNO] :: kind of codfish; callens_A = mkA "callens" "callentis"; -- [XXXFO] :: skilled/practiced/versed/expert in (w/GEN); calleo_V = mkV "callere" ; -- [XXXCO] :: be calloused/hardened; grow hard; be experienced/skilled, understand; know how; calliblepharatus_A = mkA "calliblepharatus" "calliblepharata" "calliblepharatum" ; -- [XXXNO] :: having beautiful (made-up) eyes/eyelids; @@ -8351,55 +8351,55 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat calliblepharus_A = mkA "calliblepharus" "calliblephara" "calliblepharum" ; -- [XXXNO] :: having beautiful (made-up) eyes/eyelids; callicia_F_N = mkN "callicia" ; -- [XAXNS] :: plant (unidentified); (according to Pythagoras made water freeze); 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.); + 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; 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); + 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_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); + callion_N_N = mkN "callion" "callii" neuter ; -- [XAXNO] :: winter-cherry (Physalis alkekengi); (pure Latin vesicaria); callionymus_M_N = mkN "callionymus" ; -- [XAXNO] :: fish (Uranoscopus scaber?); - callipetalon_N_N = mkN "callipetalon" "callipetali " neuter ; -- [DAXFS] :: plant; (pure Latin quinquefolium); + 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); + 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); + callistruthis_F_N = mkN "callistruthis" "callistruthidis" feminine ; -- [XAXFS] :: very delicate fig sparrows were fond of (L+S); (pure Latin ficus passerariae); 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; + 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; 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; + calo_M_N = mkN "calo" "calonis" masculine ; -- [XXXFO] :: wooden shoe; calo_V2 = mkV2 (mkV "calare") ; -- [XXXEO] :: |let down, allow to hang free; loosen; slacken; - calor_M_N = mkN "calor" "caloris " masculine ; -- [XXXBO] :: heat; warmth, glow; warm/hot/summer heat/weather; fever; passion, zeal; love; + calor_M_N = mkN "calor" "caloris" masculine ; -- [XXXBO] :: heat; warmth, glow; warm/hot/summer heat/weather; fever; passion, zeal; love; caloratus_A = mkA "caloratus" "calorata" "caloratum" ; -- [XXXFO] :: passionate, vehement, furious; hot, heated; caloria_F_N = mkN "caloria" ; -- [GSXEK] :: calorie; calorificus_A = mkA "calorificus" "calorifica" "calorificum" ; -- [XXXFO] :: promoting/causing heat/warmth; warming, heating; calos_Adv = mkAdv "calos" ; -- [XXXIO] :: well; hurrah for !; calota_F_N = mkN "calota" ; -- [FEXFE] :: skullcap; - calpar_N_N = mkN "calpar" "calparis " neuter ; -- [XXXEO] :: wine jar/pitcher; wine from a calpar; wine cask (L+S); vessel for liquids; + calpar_N_N = mkN "calpar" "calparis" neuter ; -- [XXXEO] :: wine jar/pitcher; wine from a calpar; wine cask (L+S); vessel for liquids; calta_F_N = mkN "calta" ; -- [XAXEO] :: marigold (Calendula officinalis); caltha_F_N = mkN "caltha" ; -- [XAXEO] :: marigold (Calendula officinalis); calthula_F_N = mkN "calthula" ; -- [XXXES] :: yellow garment worn by women; yellow robe; caltula_F_N = mkN "caltula" ; -- [XXXEO] :: short undergarment worn by women; - calumma_N_N = mkN "calumma" "calummatis " neuter ; -- [DXXFS] :: covering; + calumma_N_N = mkN "calumma" "calummatis" neuter ; -- [DXXFS] :: covering; calumnia_F_N = mkN "calumnia" ; -- [FLXFM] :: |charge; accusation; - calumniator_M_N = mkN "calumniator" "calumniatoris " masculine ; -- [XLXCO] :: false accuser; pettifogger, chicaner; perverter of law; carping critic; - calumniatrix_F_N = mkN "calumniatrix" "calumniatricis " feminine ; -- [XLXFO] :: false accuser/claimant (female); + calumniator_M_N = mkN "calumniator" "calumniatoris" masculine ; -- [XLXCO] :: false accuser; pettifogger, chicaner; perverter of law; carping critic; + calumniatrix_F_N = mkN "calumniatrix" "calumniatricis" feminine ; -- [XLXFO] :: false accuser/claimant (female); calumnior_V = mkV "calumniari" ; -- [XXXBO] :: accuse falsely; misrepresent, interpret wrongly; depreciate, find fault with; calumniose_Adv = mkAdv "calumniose" ; -- [XXXFO] :: by false pretenses; calumniosus_A = mkA "calumniosus" "calumniosa" "calumniosum" ; -- [XXXCO] :: that makes false/groundless accusations; marked by misinterpretations, false; calumniosus_M_N = mkN "calumniosus" ; -- [XXXFS] :: person convicted of making false/groundless accusations/information; calumpnia_F_N = mkN "calumpnia" ; -- [FLXFY] :: charge; accusation; opprobrium; false charge; calva_F_N = mkN "calva" ; -- [XXXDO] :: bald head, scalp; skull; smooth nuts (hazel nuts?); - calvar_N_N = mkN "calvar" "calvaris " neuter ; -- [XXXEO] :: skulls (pl.); kind of fish; + calvar_N_N = mkN "calvar" "calvaris" neuter ; -- [XXXEO] :: skulls (pl.); kind of fish; calvaria_F_N = mkN "calvaria" ; -- [XBXEO] :: skull; calvariola_F_N = mkN "calvariola" ; -- [DXXFS] :: small cup; calvarium_N_N = mkN "calvarium" ; -- [DAXFS] :: round sea-fish without scales (bald); @@ -8407,41 +8407,41 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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 "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; + 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; calybita_F_N = mkN "calybita" ; -- [EXXEE] :: hermit; cabin dweller; Calybite (one of class of early Saints living in huts); calyculus_M_N = mkN "calyculus" ; -- [XAXEO] :: calyx/cup of a flower; shell (sea urchin); - calymma_N_N = mkN "calymma" "calymmatis " neuter ; -- [DXXFS] :: covering; - calyx_M_N = mkN "calyx" "calycis " masculine ; -- [XAXNO] :: |two plants; one like arum; other anchusa (Dyer's bugloss); (monk's-hood? L+S); + calymma_N_N = mkN "calymma" "calymmatis" neuter ; -- [DXXFS] :: covering; + calyx_M_N = mkN "calyx" "calycis" masculine ; -- [XAXNO] :: |two plants; one like arum; other anchusa (Dyer's bugloss); (monk's-hood? L+S); cama_F_N = mkN "cama" ; -- [DXXFS] :: small low bed (near ground); camacum_N_N = mkN "camacum" ; -- [XAXNS] :: aromatic plant (nutmeg?); (substitute for cinnamon); kind of cinnamon (L+S); camaeus_M_N = mkN "camaeus" ; -- [GXXEK] :: cameo; camara_F_N = mkN "camara" ; -- [XTXCO] :: vault, vaulted/arched room/roof/ceiling; small boat roofed over with timber; camararius_A = mkA "camararius" "camararia" "camararium" ; -- [XAXNO] :: that grows over arches (of a kind of gourd); climbing; - camaratio_F_N = mkN "camaratio" "camarationis " feminine ; -- [DTXFS] :: vault, arch; + camaratio_F_N = mkN "camaratio" "camarationis" feminine ; -- [DTXFS] :: vault, arch; camaro_V2 = mkV2 (mkV "camarare") ; -- [XTXFO] :: roof/vault over; 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 "cambire" "cambio" "campsi" "cambitus ") ; -- [XXXFS] :: exchange, barter; - cambitas_F_N = mkN "cambitas" "cambitatis " feminine ; -- [DXXFS] :: 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; camela_F_N = mkN "camela" ; -- [XXXFS] :: marriage festival/festivities (pl.); (ADJ?); camelarius_M_N = mkN "camelarius" ; -- [XAXES] :: camel driver; camelaucium_N_N = mkN "camelaucium" ; -- [EEXFE] :: red velvet hood (sometimes worn by Pope); camelelasia_F_N = mkN "camelelasia" ; -- [XAXFS] :: camel-driving; care of camels (belonging to the State); - cameleon_M_N = mkN "cameleon" "cameleonis " masculine ; -- [EAXEW] :: chameleon; (M/F OLD); + cameleon_M_N = mkN "cameleon" "cameleonis" masculine ; -- [EAXEW] :: chameleon; (M/F OLD); camelinus_A = mkA "camelinus" "camelina" "camelinum" ; -- [XAXNO] :: of/pertaining to a camel, camel-; camella_F_N = mkN "camella" ; -- [XXXEO] :: cup, bowl, goblet; - camelopardalis_F_N = mkN "camelopardalis" "camelopardalis " feminine ; -- [XAAEO] :: giraffe; + camelopardalis_F_N = mkN "camelopardalis" "camelopardalis" feminine ; -- [XAAEO] :: giraffe; camelopardalus_M_N = mkN "camelopardalus" ; -- [DAAFS] :: giraffe; camelopardus_M_N = mkN "camelopardus" ; -- [DAAFS] :: giraffe; camelopodium_N_N = mkN "camelopodium" ; -- [DAXFS] :: plant, camel's-foot, horehound?; @@ -8452,7 +8452,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cameralis_A = mkA "cameralis" "cameralis" "camerale" ; -- [FXXFE] :: of/pertaining to small room or chamber; camerarius_A = mkA "camerarius" "cameraria" "camerarium" ; -- [XAXNS] :: that grows over arches (of a kind of gourd); climbing; camerarius_M_N = mkN "camerarius" ; -- [FXXEE] :: chamberlain; - cameratio_F_N = mkN "cameratio" "camerationis " feminine ; -- [DTXFS] :: vault, arch; + cameratio_F_N = mkN "cameratio" "camerationis" feminine ; -- [DTXFS] :: vault, arch; camero_V2 = mkV2 (mkV "camerare") ; -- [XTXFO] :: roof/vault over; camescopium_N_N = mkN "camescopium" ; -- [GXXEK] :: cinematic camera; camilla_F_N = mkN "camilla" ; -- [XEXEO] :: handmaiden/female of unblemished character attendant in religious ceremonies; @@ -8461,8 +8461,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat caminus_M_N = mkN "caminus" ; -- [XXXCO] :: smelting/foundry furnace, forge; home stove/furnace; vent (underground fires); camisia_F_N = mkN "camisia" ; -- [DXXES] :: shirt/nightgown (linen); alb (Ecc); shirt (Cal); camisium_N_N = mkN "camisium" ; -- [FEXEE] :: alb; shirt; - cammaron_N_N = mkN "cammaron" "cammari " neuter ; -- [XAXNS] :: plant; (aconitum); - cammaros_M_N = mkN "cammaros" "cammari " masculine ; -- [XAXEO] :: lobster; plant (aconitum); sea crab (L+S); + cammaron_N_N = mkN "cammaron" "cammari" neuter ; -- [XAXNS] :: plant; (aconitum); + cammaros_M_N = mkN "cammaros" "cammari" masculine ; -- [XAXEO] :: lobster; plant (aconitum); sea crab (L+S); cammarus_M_N = mkN "cammarus" ; -- [XAXEO] :: lobster; plant (aconitum); sea crab (L+S); campagus_M_N = mkN "campagus" ; -- [DWXES] :: kind of boot worn by military officers; sandal, slipper (Ecc); campana_F_N = mkN "campana" ; -- [FXXCE] :: bell; @@ -8470,32 +8470,32 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat campanarius_M_N = mkN "campanarius" ; -- [FEXFE] :: bell ringer; campaneus_A = mkA "campaneus" "campanea" "campaneum" ; -- [DAXFS] :: pertaining to fields; campanicum_N_N = mkN "campanicum" ; -- [GXXEK] :: champagne (wine); - campanile_N_N = mkN "campanile" "campanilis " neuter ; -- [FEXEE] :: belfry; bell tower; campanile; + campanile_N_N = mkN "campanile" "campanilis" neuter ; -- [FEXEE] :: belfry; bell tower; campanile; campanius_A = mkA "campanius" "campania" "campanium" ; -- [DAXFS] :: pertaining to fields; campanula_M_N = mkN "campanula" ; -- [FXXFE] :: little boy; campanus_A = mkA "campanus" "campana" "campanum" ; -- [FXXFM] :: flat; level; - campe_F_N = mkN "campe" "campes " feminine ; -- [XAXEO] :: caterpillar; (pure Latin eruca); turning/writhing, evasion; - campeador_M_N = mkN "campeador" "campeadoris " masculine ; -- [FWXEN] :: champion of the field; victor; + campe_F_N = mkN "campe" "campes" feminine ; -- [XAXEO] :: caterpillar; (pure Latin eruca); turning/writhing, evasion; + campeador_M_N = mkN "campeador" "campeadoris" masculine ; -- [FWXEN] :: champion of the field; victor; campester_A = mkA "campester" "campestris" "campestre" ; -- [XXXCO] :: level, even, flat, of level field; on open plain/field; plain-dwelling; campestratus_M_N = mkN "campestratus" ; -- [DXXFS] :: one wearing loin-cloth/leather apron of athletes; - campestre_N_N = mkN "campestre" "campestris " neuter ; -- [XXXFO] :: loin-cloth worn by athletes; leather apron worn around loins by wrestlers; + campestre_N_N = mkN "campestre" "campestris" neuter ; -- [XXXFO] :: loin-cloth worn by athletes; leather apron worn around loins by wrestlers; campestris_A = mkA "campestris" "campestris" "campestre" ; -- [XXXBO] :: level, even, flat, of level field; on open plain/field; plain-dwelling; - campestris_F_N = mkN "campestris" "campestris " feminine ; -- [XEXFO] :: country deity; goddess of fields; - campestris_M_N = mkN "campestris" "campestris " masculine ; -- [DEXIS] :: deities who presided over contests/games (pl.); country deities; - campicursio_F_N = mkN "campicursio" "campicursionis " feminine ; -- [DWIFS] :: military exercise in Campus Martius; - campidoctor_M_N = mkN "campidoctor" "campidoctoris " masculine ; -- [DWIES] :: one who exercises/drills soldiers in Campus Martius; drill sergeant; + campestris_F_N = mkN "campestris" "campestris" feminine ; -- [XEXFO] :: country deity; goddess of fields; + campestris_M_N = mkN "campestris" "campestris" masculine ; -- [DEXIS] :: deities who presided over contests/games (pl.); country deities; + campicursio_F_N = mkN "campicursio" "campicursionis" feminine ; -- [DWIFS] :: military exercise in Campus Martius; + campidoctor_M_N = mkN "campidoctor" "campidoctoris" masculine ; -- [DWIES] :: one who exercises/drills soldiers in Campus Martius; drill sergeant; campigenus_M_N = mkN "campigenus" ; -- [DWXFS] :: well drilled soldiers (pl.); - campio_M_N = mkN "campio" "campionis " masculine ; -- [GXXEK] :: champion; - campionatus_M_N = mkN "campionatus" "campionatus " masculine ; -- [GXXEK] :: championship; + campio_M_N = mkN "campio" "campionis" masculine ; -- [GXXEK] :: champion; + campionatus_M_N = mkN "campionatus" "campionatus" masculine ; -- [GXXEK] :: championship; campismus_M_N = mkN "campismus" ; -- [GXXEK] :: camping; - campitor_M_N = mkN "campitor" "campitoris " masculine ; -- [FXXEN] :: charger, battle-horse, war horse; - campsanema_N_N = mkN "campsanema" "campsanematis " neuter ; -- [DAXFS] :: plant (ros marinus); + campitor_M_N = mkN "campitor" "campitoris" masculine ; -- [FXXEN] :: charger, battle-horse, war horse; + campsanema_N_N = mkN "campsanema" "campsanematis" neuter ; -- [DAXFS] :: plant (ros marinus); 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); + 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; + campter_M_N = mkN "campter" "campteris" masculine ; -- [DXXFS] :: bending; turning; angle; campus_M_N = mkN "campus" ; -- [XXXAO] :: plain; level field/surface; open space for battle/games; sea; scope; campus; 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; @@ -8505,10 +8505,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat camus_M_N = mkN "camus" ; -- [XXXFO] :: necklace; collar for neck (L+S); muzzle/bit/curb for horses (late); canaba_F_N = mkN "canaba" ; -- [XWXIO] :: settlement of traders/discharged soldiers (pl.) near Roman military camp/fort; canabarius_M_N = mkN "canabarius" ; -- [XWXIO] :: inhabitant of a canabae (settlement of veterans near a Roman camp); - canabensis_M_N = mkN "canabensis" "canabensis " masculine ; -- [XWXIO] :: inhabitant of a canabae (settlement of veterans near a Roman camp); + canabensis_M_N = mkN "canabensis" "canabensis" masculine ; -- [XWXIO] :: inhabitant of a canabae (settlement of veterans near a Roman camp); canabula_F_N = mkN "canabula" ; -- [DXXFS] :: small hut/hovel; canachenus_M_N = mkN "canachenus" ; -- [XXXFS] :: class of thieves; - canale_N_N = mkN "canale" "canalis " neuter ; -- [XXXFO] :: channel/canal/conduit; ditch, gutter; trough, groove; funnel; pipe, spout; + canale_N_N = mkN "canale" "canalis" neuter ; -- [XXXFO] :: channel/canal/conduit; ditch, gutter; trough, groove; funnel; pipe, spout; canalicius_A = mkA "canalicius" "canalicia" "canalicium" ; -- [XXXNO] :: derived/mined/dug from shafts(/pits L+S); canalicola_M_N = mkN "canalicola" ; -- [XXXFS] :: poor/lazy person standing about in gutters near Forum/in place called Canalis; canalicula_F_N = mkN "canalicula" ; -- [XXXCO] :: small channel/duct/pipe/gutter, groove; feeding trough; splint/cast (medical); @@ -8516,8 +8516,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat canaliculatus_A = mkA "canaliculatus" "canaliculata" "canaliculatum" ; -- [XXXNO] :: channeled, grooved; like a channel/pipe; canaliculus_M_N = mkN "canaliculus" ; -- [XXXCO] :: small channel/duct/pipe/gutter, groove; feeding trough; splint/cast (medical); canaliensis_A = mkA "canaliensis" "canaliensis" "canaliense" ; -- [XXXNO] :: derived/mined/dug from shafts(/pits L+S); - canalis_F_N = mkN "canalis" "canalis " feminine ; -- [XXXBO] :: channel/canal/conduit; ditch, gutter; trough, groove; funnel; pipe, spout; - canalis_M_N = mkN "canalis" "canalis " masculine ; -- [XXXBO] :: channel/canal/conduit; ditch, gutter; trough, groove; funnel; pipe, spout; + canalis_F_N = mkN "canalis" "canalis" feminine ; -- [XXXBO] :: channel/canal/conduit; ditch, gutter; trough, groove; funnel; pipe, spout; + canalis_M_N = mkN "canalis" "canalis" masculine ; -- [XXXBO] :: channel/canal/conduit; ditch, gutter; trough, groove; funnel; pipe, spout; canarius_A = mkA "canarius" "canaria" "canarium" ; -- [XAXEO] :: of/connected with dogs, dog-; kind of grass; [lappa canaria => kind of bur]; canaster_A = mkA "canaster" "canastra" "canastrum" ; -- [DXXFS] :: half-gray; grizzled; canatim_Adv = mkAdv "canatim" ; -- [XXXFO] :: in manner of a dog; like a dog; @@ -8526,21 +8526,21 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cancellarius_A = mkA "cancellarius" "cancellaria" "cancellarium" ; -- [XXXFS] :: living/kept behind bars; cancellarius_M_N = mkN "cancellarius" ; -- [GXXEK] :: chancellor; cancellatim_Adv = mkAdv "cancellatim" ; -- [XXXNO] :: in a lattice arrangement; - cancellatio_F_N = mkN "cancellatio" "cancellationis " feminine ; -- [XAXFO] :: land measuring my means of a grid; fixing boundaries; + cancellatio_F_N = mkN "cancellatio" "cancellationis" feminine ; -- [XAXFO] :: land measuring my means of a grid; fixing boundaries; cancellatus_A = mkA "cancellatus" "cancellata" "cancellatum" ; -- [XXXNO] :: reticulated, having a lattice/grid pattern; lattice/trellis-like; cancello_V2 = mkV2 (mkV "cancellare") ; -- [XXXCO] :: arrange in criss-cross pattern; enclose in lattice/grid; cancel, cross out; cancellosus_A = mkA "cancellosus" "cancellosa" "cancellosum" ; -- [DXXFS] :: with bars; with a railing; 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; + 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; + 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; + 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; @@ -8559,10 +8559,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat candidarius_A = mkA "candidarius" "candidaria" "candidarium" ; -- [XXXIO] :: that bakes/makes white bread; candidarius_M_N = mkN "candidarius" ; -- [XXXIS] :: baker of white bread; candidata_F_N = mkN "candidata" ; -- [XLXFO] :: candidate (for office) (female); aspirant; office seeker; - candidatio_F_N = mkN "candidatio" "candidationis " feminine ; -- [FXXFE] :: whiteness; + candidatio_F_N = mkN "candidatio" "candidationis" feminine ; -- [FXXFE] :: whiteness; candidatorius_A = mkA "candidatorius" "candidatoria" "candidatorium" ; -- [XLXFO] :: of/pertaining to/belonging to a candidate (for office); white-robed (Ecc); candidatus_A = mkA "candidatus" "candidata" "candidatum" ; -- [XXXEO] :: dressed in white/whitened clothes; - candidatus_M_N = mkN "candidatus" "candidatus " masculine ; -- [XLXFS] :: candidacy (for office); + candidatus_M_N = mkN "candidatus" "candidatus" masculine ; -- [XLXFS] :: candidacy (for office); candide_Adv = mkAdv "candide" ; -- [XXXDO] :: in white clothes; brightly/clearly/spotlessly; candidly/openly, good naturedly; candido_V2 = mkV2 (mkV "candidare") ; -- [DEXES] :: make glittering/bright; make white; candidule_Adv = mkAdv "candidule" ; -- [DXXFS] :: candidly, sincerely; @@ -8571,14 +8571,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; candosoccus_M_N = mkN "candosoccus" ; -- [XXXFO] :: layer (of a plant); canens_A = mkA "canens" "canentis"; -- [XXXES] :: gray, grayish; white, hoary; - canentas_F_N = mkN "canentas" "canentatis " feminine ; -- [XXXFO] :: head ornament; + canentas_F_N = mkN "canentas" "canentatis" feminine ; -- [XXXFO] :: head ornament; 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; + 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; 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.); @@ -8589,46 +8589,46 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat canina_F_N = mkN "canina" ; -- [XAXFO] :: dog flesh/meat; [canis caninam non est => dog does not eat dog/is not dog meat]; caninus_A = mkA "caninus" "canina" "caninum" ; -- [XAXBO] :: of/pertaining/suitable to/resembling a dog, canine; abusive, mean, snarling; canipa_F_N = mkN "canipa" ; -- [DEXFS] :: fruit basket for religious uses; - canis_F_N = mkN "canis" "canis " feminine ; -- [XAXAO] :: dog; hound; subordinate; "jackal"; dog-star/fish; lowest dice throw; clamp; - canis_M_N = mkN "canis" "canis " masculine ; -- [XAXAO] :: dog; hound; subordinate; "jackal"; dog-star/fish; lowest dice throw; clamp; + canis_F_N = mkN "canis" "canis" feminine ; -- [XAXAO] :: dog; hound; subordinate; "jackal"; dog-star/fish; lowest dice throw; clamp; + canis_M_N = mkN "canis" "canis" masculine ; -- [XAXAO] :: dog; hound; subordinate; "jackal"; dog-star/fish; lowest dice throw; clamp; canistellum_N_N = mkN "canistellum" ; -- [XXXFO] :: basket (bread/fruit); canistraria_F_N = mkN "canistraria" ; -- [XEXIO] :: basket bearer (in religious festivals); canistrum_N_N = mkN "canistrum" ; -- [XXXCO] :: wicker basket (used for food/flowers and in sacrifices); canitia_F_N = mkN "canitia" ; -- [XXXCO] :: white/gray coloring/deposit; gray/white hair, grayness of hair; old age; - canities_F_N = mkN "canities" "canitiei " feminine ; -- [XXXCO] :: white/gray coloring/deposit; gray/white hair, grayness of hair; old age; - canitudo_F_N = mkN "canitudo" "canitudinis " feminine ; -- [XBXEO] :: grayness of hair; + canities_F_N = mkN "canities" "canitiei" feminine ; -- [XXXCO] :: white/gray coloring/deposit; gray/white hair, grayness of hair; old age; + canitudo_F_N = mkN "canitudo" "canitudinis" feminine ; -- [XBXEO] :: grayness of hair; canna_F_N = mkN "canna" ; -- [XXXCO] :: small reed/cane; panpipe/flute; small vessel/gondola; windpipe; cane-sugar; cannaba_F_N = mkN "cannaba" ; -- [DXXES] :: hut; hovel; cannabinus_A = mkA "cannabinus" "cannabina" "cannabinum" ; -- [XAXEO] :: made of hemp, hempen, hemp-; - cannabis_F_N = mkN "cannabis" "cannabis " feminine ; -- [XAXCO] :: hemp; hemp rope; canvas/linen (medieval); + cannabis_F_N = mkN "cannabis" "cannabis" feminine ; -- [XAXCO] :: hemp; hemp rope; canvas/linen (medieval); cannabius_A = mkA "cannabius" "cannabia" "cannabium" ; -- [XAXES] :: made of hemp, hempen, hemp-; cannabum_N_N = mkN "cannabum" ; -- [XAXFO] :: hemp; hemp rope; canvas/linen (medieval); cannabus_M_N = mkN "cannabus" ; -- [XAXEO] :: hemp; hemp rope; canvas/linen (medieval); cannetum_N_N = mkN "cannetum" ; -- [DAXES] :: thicket of reeds; canneus_A = mkA "canneus" "cannea" "canneum" ; -- [XAXFS] :: made of reeds, reed-; cannibalismus_M_N = mkN "cannibalismus" ; -- [GXXEK] :: cannibalism; - canno_M_N = mkN "canno" "cannonis " masculine ; -- [GWXEK] :: cannon (artillery piece); + canno_M_N = mkN "canno" "cannonis" masculine ; -- [GWXEK] :: cannon (artillery piece); 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; + 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; + canon_M_N = mkN "canon" "canonis" masculine ; -- [XXXES] :: 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; - canonicatus_M_N = mkN "canonicatus" "canonicatus " masculine ; -- [EEXEE] :: office of canon; + canonicatus_M_N = mkN "canonicatus" "canonicatus" masculine ; -- [EEXEE] :: office of canon; canonice_Adv = mkAdv "canonice" ; -- [DEXES] :: canonically, according to Church discipline; regularly; canonicum_N_N = mkN "canonicum" ; -- [XSXNO] :: theory (pl.); canon; canonicus_A = mkA "canonicus" "canonica" "canonicum" ; -- [EEXDE] :: |canonical/by canons/legal/lawful/right; of a canon; canonicus_M_N = mkN "canonicus" ; -- [XSXNO] :: |mathematician/theorist; one who constructs mathematical/astronomical tables; - canonisatio_F_N = mkN "canonisatio" "canonisationis " feminine ; -- [FEXEE] :: canonization; elevation to sainthood; + canonisatio_F_N = mkN "canonisatio" "canonisationis" feminine ; -- [FEXEE] :: canonization; elevation to sainthood; canonissa_F_N = mkN "canonissa" ; -- [EEXEE] :: canoness; canonista_M_N = mkN "canonista" ; -- [FEXFE] :: canonist, one learned in Canon Law; - canonizatio_F_N = mkN "canonizatio" "canonizationis " feminine ; -- [FEXEE] :: canonization; elevation to sainthood; + canonizatio_F_N = mkN "canonizatio" "canonizationis" feminine ; -- [FEXEE] :: canonization; elevation to sainthood; canonizo_V2 = mkV2 (mkV "canonizare") ; -- [EEXDS] :: canonize, elevate to sainthood; include in canon of Scripture; reduce to rules; - canor_M_N = mkN "canor" "canoris " masculine ; -- [XDXCO] :: song, vocal music; tune, melody; birdsong; music of instruments; poetic strain; + canor_M_N = mkN "canor" "canoris" masculine ; -- [XDXCO] :: song, vocal music; tune, melody; birdsong; music of instruments; poetic strain; canore_Adv = mkAdv "canore" ; -- [XXXFO] :: melodiously; harmoniously; tunefully; canorum_N_N = mkN "canorum" ; -- [XGXES] :: melody, charm (in speaking); canorus_A = mkA "canorus" "canora" "canorum" ; -- [XXXBO] :: melodious, harmonious; resonant, ringing, sonorous; tuneful; songful, vocal; @@ -8636,21 +8636,21 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cantabrarius_M_N = mkN "cantabrarius" ; -- [DXXFS] :: standard-bearer on festive occasions; cantabrum_N_N = mkN "cantabrum" ; -- [XXXES] :: kind of banner/standard under emperors; kind of bran; cantabundus_A = mkA "cantabundus" "cantabunda" "cantabundum" ; -- [XDXEO] :: singing; chanting; - cantamen_N_N = mkN "cantamen" "cantaminis " neuter ; -- [XEXEO] :: spell that is sung/chanted; magic sentence; spell, charm, incantation; - cantatio_F_N = mkN "cantatio" "cantationis " feminine ; -- [XXXEO] :: singing; song, music; spell, charm, incantation (L+S); - cantator_M_N = mkN "cantator" "cantatoris " masculine ; -- [XDXEO] :: singer; musician; minstrel; + cantamen_N_N = mkN "cantamen" "cantaminis" neuter ; -- [XEXEO] :: spell that is sung/chanted; magic sentence; spell, charm, incantation; + cantatio_F_N = mkN "cantatio" "cantationis" feminine ; -- [XXXEO] :: singing; song, music; spell, charm, incantation (L+S); + cantator_M_N = mkN "cantator" "cantatoris" masculine ; -- [XDXEO] :: singer; musician; minstrel; cantatorium_N_N = mkN "cantatorium" ; -- [EEXFE] :: Gradual Book (old name); cantatrix_A = mkA "cantatrix" "cantatricis"; -- [XXXFO] :: that uses incantations/enchantments (feminine adjective); singing, musical; - cantatrix_F_N = mkN "cantatrix" "cantatricis " feminine ; -- [DDXFS] :: singer, musician (female); + cantatrix_F_N = mkN "cantatrix" "cantatricis" feminine ; -- [DDXFS] :: singer, musician (female); cantenatus_A = mkA "cantenatus" "cantenata" "cantenatum" ; -- [XXXCO] :: chained, fettered; canteriatus_A = mkA "canteriatus" "canteriata" "canteriatum" ; -- [XAXFO] :: supported on a canterius (light pi-shaped prop/"horse" for vines); propped; canterinus_A = mkA "canterinus" "canterina" "canterinum" ; -- [XAXEO] :: of/belonging to a horse, horse-; like a horse; variety of barley (winter L+S); canteriolus_M_N = mkN "canteriolus" ; -- [XAXFO] :: small vine-supporting prop/"horse"; canterius_M_N = mkN "canterius" ; -- [XAXCO] :: poor-quality horse, hack, nag, gelding; rafter; pi-shaped vine prop/"horse"; cantharella_F_N = mkN "cantharella" ; -- [GXXEK] :: chanterelle; - cantharias_M_N = mkN "cantharias" "canthariae " masculine ; -- [XXXNO] :: precious stone; (having in it a figure of a Spanish fly L+S); - cantharis_F_N = mkN "cantharis" "cantharidis " feminine ; -- [XAXEO] :: blister-beetle (Cantharis vesicatoria); Spanish fly (medicine/poison); a worm; - cantharites_M_N = mkN "cantharites" "cantharitae " masculine ; -- [XXXNO] :: wine from vine cantharites; kind of vine (L+S); + cantharias_M_N = mkN "cantharias" "canthariae" masculine ; -- [XXXNO] :: precious stone; (having in it a figure of a Spanish fly L+S); + cantharis_F_N = mkN "cantharis" "cantharidis" feminine ; -- [XAXEO] :: blister-beetle (Cantharis vesicatoria); Spanish fly (medicine/poison); a worm; + cantharites_M_N = mkN "cantharites" "cantharitae" masculine ; -- [XXXNO] :: wine from vine cantharites; kind of vine (L+S); cantharulus_M_N = mkN "cantharulus" ; -- [DXXFS] :: small drinking vessel with handles; cantharus_M_N = mkN "cantharus" ; -- [DEXES] :: |vessel of holy water; water pipe; cantheriatus_A = mkA "cantheriatus" "cantheriata" "cantheriatum" ; -- [XAXFO] :: supported on a canterius (light pi-shaped prop/"horse" for vines); propped; @@ -8665,17 +8665,17 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cantilenosus_A = mkA "cantilenosus" "cantilenosa" "cantilenosum" ; -- [DDXFS] :: pertaining to song; poetic; cantillo_V2 = mkV2 (mkV "cantillare") ; -- [XXXEO] :: sing low; hum; warble, chirp (Ecc); cantilo_V = mkV "cantilare" ; -- [XDXEO] :: sing; - cantio_F_N = mkN "cantio" "cantionis " feminine ; -- [XXXCO] :: song; singing (birds); playing, music (instrumental); incantation, spell; + cantio_F_N = mkN "cantio" "cantionis" feminine ; -- [XXXCO] :: song; singing (birds); playing, music (instrumental); incantation, spell; cantito_V = mkV "cantitare" ; -- [XXXDO] :: sing; sing repeatedly, sing over and over; sing/play often (L+S); cantiuncula_F_N = mkN "cantiuncula" ; -- [XXXFO] :: (mere) song; flattering/alluring strain (L+S); - canto_M_N = mkN "canto" "cantonis " masculine ; -- [GXXEK] :: canton; + canto_M_N = mkN "canto" "cantonis" masculine ; -- [GXXEK] :: canton; canto_V = mkV "cantare" ; -- [XDXAO] :: sing; play (roles/music); recite; praise, celebrate; forewarn; enchant, bewitch; - cantor_M_N = mkN "cantor" "cantoris " masculine ; -- [XDXCO] :: singer, poet; actor (of musical parts in play); precentor; cantor; eulogist; + cantor_M_N = mkN "cantor" "cantoris" masculine ; -- [XDXCO] :: singer, poet; actor (of musical parts in play); precentor; cantor; eulogist; 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; + 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; + 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); canus_A = mkA "canus" "cana" "canum" ; -- [XXXBO] :: white, gray; aged, old, wise; hoary; foamy, white-capped; white w/snow/frost; @@ -8685,10 +8685,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat canutus_A = mkA "canutus" "canuta" "canutum" ; -- [XXXFO] :: gray; capa_F_N = mkN "capa" ; -- [FXXDB] :: cape, cloak; cassock, cope, mantle; capabilis_A = mkA "capabilis" "capabilis" "capabile" ; -- [DEXES] :: comprehensible; intelligent; - capacitas_F_N = mkN "capacitas" "capacitatis " feminine ; -- [XXXCO] :: capacity, largeness; ability (mental/legal/to inherit); power of comprehension; + capacitas_F_N = mkN "capacitas" "capacitatis" feminine ; -- [XXXCO] :: capacity, largeness; ability (mental/legal/to inherit); power of comprehension; capaciter_Adv = mkAdv "capaciter" ; -- [DLXFS] :: rightfully to inherit; capax_A = mkA "capax" "capacis"; -- [XXXAO] :: large, spacious, roomy, big; capable, fit, competent; has right to inherit; - capedo_F_N = mkN "capedo" "capedinis " feminine ; -- [XEXEC] :: bowl used in sacrifices; + capedo_F_N = mkN "capedo" "capedinis" feminine ; -- [XEXEC] :: bowl used in sacrifices; capedulum_N_N = mkN "capedulum" ; -- [XXXFS] :: kind of covering for head; capeduncula_F_N = mkN "capeduncula" ; -- [XXXFO] :: small pot/vessel/bowl/dish; (used for sacrifices L+S); capella_F_N = mkN "capella" ; -- [XXXCS] :: |dirty fellow, old goat; man with a goat-like beard; body odor; @@ -8698,20 +8698,20 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat capellus_M_N = mkN "capellus" ; -- [DAXFS] :: small goat; kid; caper_M_N = mkN "caper" ; -- [XAXCO] :: he-goat, billy-goat; goatish/armpit smell; star in Auriga (L+S); grunting fish; caperatus_A = mkA "caperatus" "caperata" "caperatum" ; -- [XXXEO] :: wrinkled; - capero_M_N = mkN "capero" "caperonis " masculine ; -- [GXXEK] :: hood; + 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; + 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; 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); capillamentum_N_N = mkN "capillamentum" ; -- [XXXCO] :: head of hair; toupee/wig; hair-like fiber; thread of metal; streak/flaw in gem; - capillare_N_N = mkN "capillare" "capillaris " neuter ; -- [XXXFO] :: ointment/unguent for hair; pomade; + capillare_N_N = mkN "capillare" "capillaris" neuter ; -- [XXXFO] :: ointment/unguent for hair; pomade; capillaris_A = mkA "capillaris" "capillaris" "capillare" ; -- [DXXES] :: of/pertaining to hair; capillary (Cal); [~ herba => plant Capillus Veneris]; - capillatio_F_N = mkN "capillatio" "capillationis " feminine ; -- [DBXES] :: hair; disease of urinary organs; + capillatio_F_N = mkN "capillatio" "capillationis" feminine ; -- [DBXES] :: hair; disease of urinary organs; capillatura_F_N = mkN "capillatura" ; -- [XXXEO] :: hair-like flawing in a gem; hair (L+S); false hair; capillatus_A = mkA "capillatus" "capillata" "capillatum" ; -- [XXXCO] :: having long hair (older generation/foreign peoples/boys); hairy; hair-like; capillatus_M_N = mkN "capillatus" ; -- [XXXES] :: long hairs (pl.); young aristocrats; @@ -8719,19 +8719,19 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat capillosus_A = mkA "capillosus" "capillosa" "capillosum" ; -- [DXXFS] :: full of hair; very hairy; 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" "capio" "cepi" "captus ") ; -- [XXXAO] :: take hold, seize; grasp; take bribe; arrest/capture; put on; occupy; captivate; + capio_F_N = mkN "capio" "capionis" feminine ; -- [XXXCO] :: taking/seizing; [usus ~ => getting ownership by continued possession]; + 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; - capisso_V2 = mkV2 (mkV "capissere" "capisso" "capissivi" "capissitus ") ; -- [XXXAO] :: grasp, take, seize eagerly; undertake, manage; pursue w/zeal; carry out orders; + capis_F_N = mkN "capis" "capidis" feminine ; -- [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; capistrum_N_N = mkN "capistrum" ; -- [XAXCO] :: halter/headstall/harness, muzzle; matrimonial halter (L+S); band for vines; 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; + 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; 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; @@ -8741,14 +8741,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat capitaneus_A = mkA "capitaneus" "capitanea" "capitaneum" ; -- [DXXES] :: large, chief in size; capital (letters); capitaneus_M_N = mkN "capitaneus" ; -- [GXXEK] :: captain; capitarius_A = mkA "capitarius" "capitaria" "capitarium" ; -- [XLXFO] :: levied per head, per capita; poll-; - capitatio_F_N = mkN "capitatio" "capitationis " feminine ; -- [XLXES] :: poll tax, tax levied per head/capita; outlay for beasts used in public service; + capitatio_F_N = mkN "capitatio" "capitationis" feminine ; -- [XLXES] :: poll tax, tax levied per head/capita; outlay for beasts used in public service; capitatus_A = mkA "capitatus" "capitata" "capitatum" ; -- [XXXCO] :: having or forming a head; capitellum_N_N = mkN "capitellum" ; -- [DXXES] :: small head; capital/chapiter of a column; capitilavium_N_N = mkN "capitilavium" ; -- [DXXFS] :: washing of head; [Dominica ~ => Palm Sunday]; capitium_N_N = mkN "capitium" ; -- [XXXCS] :: |covering for head; opening in tunic for head; undervest; priest's vestment; capito_A = mkA "capito" "capitonis"; -- [XXXCO] :: big-headed, having a large head (masculine adj.); (cognommen); kind of mullet; capitolium_N_N = mkN "capitolium" ; -- [FEXDM] :: religious/cathedral chapter, chapter meeting/house; right of cofraternity; - capitulare_N_N = mkN "capitulare" "capitularis " neuter ; -- [XLXIS] :: head/poll-tax or levy; + capitulare_N_N = mkN "capitulare" "capitularis" neuter ; -- [XLXIS] :: head/poll-tax or levy; capitularis_A = mkA "capitularis" "capitularis" "capitulare" ; -- [XLXIO] :: relating to head/poll-tax or levy; capitularium_N_N = mkN "capitularium" ; -- [XLXIO] :: head/poll-tax or levy; capitularius_A = mkA "capitularius" "capitularia" "capitularium" ; -- [DWXES] :: relating to recruiting of soldiers; @@ -8757,20 +8757,20 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat capitulatus_A = mkA "capitulatus" "capitulata" "capitulatum" ; -- [XXXEO] :: having (small) head or terminal knob; capitulum_N_N = mkN "capitulum" ; -- [XXXDO] :: |little head; piles/hemorrhoids; flower-head/seed-capsule; head of a structure; capitum_N_N = mkN "capitum" ; -- [DAXES] :: fodder for cattle; - capnias_M_N = mkN "capnias" "capniae " masculine ; -- [XXXNO] :: smoky specimen/variety of some precious stone; smoky topaz (L+S); kind of wine; - capnion_N_N = mkN "capnion" "capnii " neuter ; -- [XAXNS] :: plant, funitory, pes gallinaceus; (Fumaria officinalis/Corydaltis digitalia); + capnias_M_N = mkN "capnias" "capniae" masculine ; -- [XXXNO] :: smoky specimen/variety of some precious stone; smoky topaz (L+S); kind of wine; + capnion_N_N = mkN "capnion" "capnii" neuter ; -- [XAXNS] :: plant, funitory, pes gallinaceus; (Fumaria officinalis/Corydaltis digitalia); capnios_A = mkA "capnios" "capnios" "capnion" ; -- [XAXNO] :: (vine) with grapes of smoky appearance; - capnios_F_N = mkN "capnios" "capnii " feminine ; -- [XAXNS] :: kind of wine from grapes of smoky appearance; - capnites_M_N = mkN "capnites" "capnitae " masculine ; -- [XXXNS] :: smoky specimen/variety of some precious stone; smoky topaz (L+S); kind of wine; - capnitis_F_N = mkN "capnitis" "capnitidis " feminine ; -- [XXXNO] :: substance deposited by copper furnace smoke, ZnO/tutty; smoky precious stone; - capnos_F_N = mkN "capnos" "capni " feminine ; -- [XAXNO] :: plant, funitory, pes gallinaceus; (Fumaria officinalis/Corydaltis digitalia); - capo_M_N = mkN "capo" "caponis " masculine ; -- [XAXEO] :: capon; young cockerel?; + capnios_F_N = mkN "capnios" "capnii" feminine ; -- [XAXNS] :: kind of wine from grapes of smoky appearance; + capnites_M_N = mkN "capnites" "capnitae" masculine ; -- [XXXNS] :: smoky specimen/variety of some precious stone; smoky topaz (L+S); kind of wine; + capnitis_F_N = mkN "capnitis" "capnitidis" feminine ; -- [XXXNO] :: substance deposited by copper furnace smoke, ZnO/tutty; smoky precious stone; + capnos_F_N = mkN "capnos" "capni" feminine ; -- [XAXNO] :: plant, funitory, pes gallinaceus; (Fumaria officinalis/Corydaltis digitalia); + 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); 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; + capparis_F_N = mkN "capparis" "capparis" feminine ; -- [FXXEK] :: caper; 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]; @@ -8778,8 +8778,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cappellanus_M_N = mkN "cappellanus" ; -- [FEXDE] :: chaplain; capra_F_N = mkN "capra" ; -- [XAXCO] :: she-goat, nanny-goat; [Caprae palus => on Campus Martius/Circus Flaminus site]; capragenus_A = mkA "capragenus" "capragena" "capragenum" ; -- [DAXFS] :: of flesh of wild goats; - caprago_F_N = mkN "caprago" "capraginis " feminine ; -- [DAXFS] :: plant; (also called cicer columbinum); - caprale_N_N = mkN "caprale" "capralis " neuter ; -- [XAXFO] :: field/marsh/swamp fit only for goats; + caprago_F_N = mkN "caprago" "capraginis" feminine ; -- [DAXFS] :: plant; (also called cicer columbinum); + caprale_N_N = mkN "caprale" "capralis" neuter ; -- [XAXFO] :: field/marsh/swamp fit only for goats; caprarius_A = mkA "caprarius" "capraria" "caprarium" ; -- [XAXES] :: of/pertaining to goat; caprarius_M_N = mkN "caprarius" ; -- [XAXFO] :: goatherd; caprea_F_N = mkN "caprea" ; -- [XAXCO] :: roe deer; wild she-goat (L+S); @@ -8789,13 +8789,13 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat capreolatim_Adv = mkAdv "capreolatim" ; -- [XXXFO] :: like twisted tendrils; in a winding/twisting manner; capreolus_M_N = mkN "capreolus" ; -- [XAXCO] :: young roe-deer; wild goat/chamois; rafter, support; vine tendril; weeding fork; capricornus_M_N = mkN "capricornus" ; -- [XXXEC] :: Capricorn, a sign of Zodiac; - caprificatio_F_N = mkN "caprificatio" "caprificationis " feminine ; -- [XAXNO] :: caprification, by which gall insects emerge to fertilize/puncture wild fig; + caprificatio_F_N = mkN "caprificatio" "caprificationis" feminine ; -- [XAXNO] :: caprification, by which gall insects emerge to fertilize/puncture wild fig; caprifico_V2 = mkV2 (mkV "caprificare") ; -- [XAXNO] :: caprificate, fertilize by caprification (insects/hand puncturing wild fig); - caprificus_F_N = mkN "caprificus" "caprificus " feminine ; -- [XAXCO] :: wild fig tree; fruit of wild fig tree, wild fig; + caprificus_F_N = mkN "caprificus" "caprificus" feminine ; -- [XAXCO] :: wild fig tree; fruit of wild fig tree, wild fig; caprigena_F_N = mkN "caprigena" ; -- [XAXES] :: goats (pl.); caprigenus_A = mkA "caprigenus" "caprigena" "caprigenum" ; -- [XAXEO] :: of/consisting of/sprung from goats, goat-; caprigenus_M_N = mkN "caprigenus" ; -- [XAXES] :: goats (pl.); - caprile_N_N = mkN "caprile" "caprilis " neuter ; -- [XAXEO] :: goat pen/stall; + caprile_N_N = mkN "caprile" "caprilis" neuter ; -- [XAXEO] :: goat pen/stall; caprilis_A = mkA "caprilis" "caprilis" "caprile" ; -- [XAXFO] :: of/belonging to goats; caprimulgus_M_N = mkN "caprimulgus" ; -- [XAXEO] :: country bumpkin, goat-milker; nightjar/goatsucker (bird Caprimulgus europaeus); caprina_F_N = mkN "caprina" ; -- [DAXFS] :: goat flesh/meat; @@ -8816,55 +8816,55 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - captatio_F_N = mkN "captatio" "captationis " feminine ; -- [XXXDO] :: action of straining after; legacy-hunting; feint to attract stroke (fencing); - captator_M_N = mkN "captator" "captatoris " masculine ; -- [XXXDO] :: legacy hunter; one who strives to obtain/eagerly reaches for/grasps at/courts; + captatio_F_N = mkN "captatio" "captationis" feminine ; -- [XXXDO] :: action of straining after; legacy-hunting; feint to attract stroke (fencing); + captator_M_N = mkN "captator" "captatoris" masculine ; -- [XXXDO] :: legacy hunter; one who strives to obtain/eagerly reaches for/grasps at/courts; captatorius_A = mkA "captatorius" "captatoria" "captatorium" ; -- [XLXEO] :: of/concerning legacy-hunting/hunters; [~as institutiones => mutual heirs]; captatrix_A = mkA "captatrix" "captatricis"; -- [XXXFO] :: straining after, striving to obtain; (feminine adjective); - captatrix_F_N = mkN "captatrix" "captatricis " feminine ; -- [DXXFS] :: she who strives to obtain/eagerly reaches for/grasps at/courts; + captatrix_F_N = mkN "captatrix" "captatricis" feminine ; -- [DXXFS] :: she who strives to obtain/eagerly reaches for/grasps at/courts; captensula_F_N = mkN "captensula" ; -- [DGXFS] :: fallacious argument; sophism; captibilis_A = mkA "captibilis" "captibilis" "captibile" ; -- [DXXFS] :: that can take; - captio_F_N = mkN "captio" "captionis " feminine ; -- [XXXCO] :: deception/trick/fraud; disadvantage, loss; a sophistry/quibble; right to take; + 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.); 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; - captivatio_F_N = mkN "captivatio" "captivationis " feminine ; -- [DXXFS] :: subjugation; enslavement; - captivator_M_N = mkN "captivator" "captivatoris " masculine ; -- [DWXFS] :: captor, one who takes captive; - captivitas_F_N = mkN "captivitas" "captivitatis " feminine ; -- [XXXCO] :: captivity/bondage; capture/act of being captured; blindness; captives (Plater); + captivatio_F_N = mkN "captivatio" "captivationis" feminine ; -- [DXXFS] :: subjugation; enslavement; + captivator_M_N = mkN "captivator" "captivatoris" masculine ; -- [DWXFS] :: captor, one who takes captive; + captivitas_F_N = mkN "captivitas" "captivitatis" feminine ; -- [XXXCO] :: captivity/bondage; capture/act of being captured; blindness; captives (Plater); captivncula_F_N = mkN "captivncula" ; -- [XLXEO] :: legal quirk or snare; captivo_V2 = mkV2 (mkV "captivare") ; -- [DEXES] :: take captive; captivus_A = mkA "captivus" "captiva" "captivum" ; -- [XWXBO] :: caught, taken captive; captured (in war), imprisoned; conquered; of captives; captivus_C_N = mkN "captivus" ; -- [XWXCO] :: prisoner of war (likely male, but maybe female), captive; capto_V2 = mkV2 (mkV "captare") ; -- [XXXAO] :: try/long/aim for, desire; entice; hunt legacy; try to catch/grasp/seize/reach; - captor_M_N = mkN "captor" "captoris " masculine ; -- [DAXFS] :: hunter, huntsman, he who catches animals/game; - captrix_F_N = mkN "captrix" "captricis " feminine ; -- [DXXFS] :: huntress; she who takes/catches; she who despoils; + captor_M_N = mkN "captor" "captoris" masculine ; -- [DAXFS] :: hunter, huntsman, he who catches animals/game; + captrix_F_N = mkN "captrix" "captricis" feminine ; -- [DXXFS] :: huntress; she who takes/catches; she who despoils; captum_N_N = mkN "captum" ; -- [XAXFO] :: catch; (e.g. fish); captura_F_N = mkN "captura" ; -- [XXXCO] :: taking/catching wild game; bag, total game caught; gain, take; making profits; captus_A = mkA "captus" "capta" "captum" ; -- [XXXCO] :: captured, captive; - captus_M_N = mkN "captus" "captus " masculine ; -- [XXXCO] :: capacity/ability/potentiality; comprehension; action/result of taking/grasping; + captus_M_N = mkN "captus" "captus" masculine ; -- [XXXCO] :: capacity/ability/potentiality; comprehension; action/result of taking/grasping; capucium_N_N = mkN "capucium" ; -- [FXXEM] :: hood; headland of field; - capudo_F_N = mkN "capudo" "capudinis " feminine ; -- [XEXFO] :: primitive sacrificial vessel; + capudo_F_N = mkN "capudo" "capudinis" feminine ; -- [XEXFO] :: primitive sacrificial vessel; capula_F_N = mkN "capula" ; -- [XEXFO] :: small sacrificial bowl/cup; (with handles L+S); capularis_A = mkA "capularis" "capularis" "capulare" ; -- [XXXEO] :: ready for bier, having one foot in grave; of/near grave/bier; - capulatio_F_N = mkN "capulatio" "capulationis " feminine ; -- [FXXEM] :: mutilation; decapitation; - capulator_M_N = mkN "capulator" "capulatoris " masculine ; -- [XAXEO] :: man who draws from oil press; decanter, who pours from vessel to other (L+S); + capulatio_F_N = mkN "capulatio" "capulationis" feminine ; -- [FXXEM] :: mutilation; decapitation; + capulator_M_N = mkN "capulator" "capulatoris" masculine ; -- [XAXEO] :: man who draws from oil press; decanter, who pours from vessel to other (L+S); capulatus_A = mkA "capulatus" "capulata" "capulatum" ; -- [FXXEE] :: hooded; capulo_V2 = mkV2 (mkV "capulare") ; -- [XAXNO] :: draw off oil from oil press; attach/halter (cattle); catch (animals); capulum_N_N = mkN "capulum" ; -- [DXXES] :: |sepulcher, tomb, scacophagus; halter for catching/fastening cattle, lasso; 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]; + caput_N_N = mkN "caput" "capitis" neuter ; -- [FXXDE] :: |heading; chapter, principal division; [~ super pedibus => head over heels]; 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); - caracallis_F_N = mkN "caracallis" "caracallis " feminine ; -- [DXFCS] :: long tunic/great-coat worn by Gauls; - caracter_M_N = mkN "caracter" "caracteris " masculine ; -- [EXXEW] :: branded/impressed letter/mark/etc; marking instrument; stamp, character, style; - caragogos_F_N = mkN "caragogos" "caragogi " feminine ; -- [DAXFS] :: medicinal plant; + caracallis_F_N = mkN "caracallis" "caracallis" feminine ; -- [DXFCS] :: long tunic/great-coat worn by Gauls; + caracter_M_N = mkN "caracter" "caracteris" masculine ; -- [EXXEW] :: branded/impressed letter/mark/etc; marking instrument; stamp, character, style; + caragogos_F_N = mkN "caragogos" "caragogi" feminine ; -- [DAXFS] :: medicinal plant; caravanna_F_N = mkN "caravanna" ; -- [GXXEK] :: caravan (group of travelers); - carbas_M_N = mkN "carbas" "carbae " masculine ; -- [XSXEO] :: easterly wind; east-northeast wind (L+S); + carbas_M_N = mkN "carbas" "carbae" masculine ; -- [XSXEO] :: easterly wind; east-northeast wind (L+S); carbaseus_A = mkA "carbaseus" "carbasea" "carbaseum" ; -- [XXXDO] :: made of linen/flax; carbasineus_A = mkA "carbasineus" "carbasinea" "carbasineum" ; -- [XXXEO] :: made of linen/flax; carbasinum_N_N = mkN "carbasinum" ; -- [XXXEO] :: clothes (pl.) made of linen/flax; @@ -8874,7 +8874,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat carbasus_F_N = mkN "carbasus" ; -- [XXXCO] :: linen (cloth); fine linen, cambric; canvas; sail; linen garment/clothes; awning; carbatina_F_N = mkN "carbatina" ; -- [XAXFS] :: kind of rustic leather shoe; carbatinus_A = mkA "carbatinus" "carbatina" "carbatinum" ; -- [XAXFX] :: made of hide; - carbo_M_N = mkN "carbo" "carbonis " masculine ; -- [XXXBO] :: charcoal; glowing coal; pencil/marker; worthless thing; charred remains; coal; + carbo_M_N = mkN "carbo" "carbonis" masculine ; -- [XXXBO] :: charcoal; glowing coal; pencil/marker; worthless thing; charred remains; coal; carboarius_M_N = mkN "carboarius" ; -- [FXXEE] :: collier, supplier of coal/charcoal; charcoal burner/supplier; 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; @@ -8882,50 +8882,50 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + carbunculatio_F_N = mkN "carbunculatio" "carbunculationis" feminine ; -- [XAXNO] :: affliction with a form of vine blight; disease of trees (L+S); carbunculo_V = mkV "carbunculare" ; -- [XAXNO] :: be afflicted with a form of vine blight; carbunculor_V = mkV "carbunculari" ; -- [XAXNS] :: be afflicted with a form of vine blight; carbunculosus_A = mkA "carbunculosus" "carbunculosa" "carbunculosum" ; -- [XXXFO] :: containing tophus (variety of sandstone); containing red toph-stone (L+S); carbunculus_M_N = mkN "carbunculus" ; -- [XXXCO] :: live coal; red tophus; precious stone; vine blight; carbuncle/tumor/anthrax; carbunica_F_N = mkN "carbunica" ; -- [XAXNO] :: variety of vine; carcedonius_M_N = mkN "carcedonius" ; -- [EXXFW] :: chalcedony; (stone of third foundation of New Jerusalem in Revelations 21:19); - carcer_M_N = mkN "carcer" "carceris " masculine ; -- [XXXBO] :: prison, jail; jailbird; starting barriers at race-course, traps; beginning; + carcer_M_N = mkN "carcer" "carceris" masculine ; -- [XXXBO] :: prison, jail; jailbird; starting barriers at race-course, traps; beginning; carceralis_A = mkA "carceralis" "carceralis" "carcerale" ; -- [DXXES] :: of/pertaining to/connected with prison/jail; carcerarius_A = mkA "carcerarius" "carceraria" "carcerarium" ; -- [XXXFO] :: of/pertaining to/connected with prison/jail; carcerarius_M_N = mkN "carcerarius" ; -- [DXXES] :: prison keeper, jailer; carcereus_A = mkA "carcereus" "carcerea" "carcereum" ; -- [DXXES] :: of/pertaining to/connected with prison; carcharus_M_N = mkN "carcharus" ; -- [XAXFO] :: fish (kind of); kind of dog fish (L+S); carchesium_N_N = mkN "carchesium" ; -- [XXXCO] :: type of drinking-cup/beaker; mast-head of ship; kind of derrick, crane; - carcinethron_N_N = mkN "carcinethron" "carcinethri " neuter ; -- [XAXNS] :: plant, knotgrass; (pure Latin geniculata; also called polygonon); - carcinias_M_N = mkN "carcinias" "carciniae " masculine ; -- [XXXNO] :: crab-colored precious stone; + carcinethron_N_N = mkN "carcinethron" "carcinethri" neuter ; -- [XAXNS] :: plant, knotgrass; (pure Latin geniculata; also called polygonon); + carcinias_M_N = mkN "carcinias" "carciniae" masculine ; -- [XXXNO] :: crab-colored precious stone; carcinodes_A = mkA "carcinodes" "carcinodes" "carcinodes" ; -- [XBXEO] :: cancerous, polypous; - carcinodes_N_N = mkN "carcinodes" "carcinodis " neuter ; -- [XBXNS] :: cancerous disease; cancer; - carcinogenesis_F_N = mkN "carcinogenesis" "carcinogenesis " feminine ; -- [HBXEK] :: carcinogenesis; - carcinoma_N_N = mkN "carcinoma" "carcinomatis " neuter ; -- [XBXDO] :: ulcer or tumor (malignant?); (term of reproach by Augustus for Julia/Agrippa); - carcinothron_N_N = mkN "carcinothron" "carcinothri " neuter ; -- [XAXNO] :: plant, knotgrass; (pure Latin geniculata; also called polygonon); + carcinodes_N_N = mkN "carcinodes" "carcinodis" neuter ; -- [XBXNS] :: cancerous disease; cancer; + carcinogenesis_F_N = mkN "carcinogenesis" "carcinogenesis" feminine ; -- [HBXEK] :: carcinogenesis; + carcinoma_N_N = mkN "carcinoma" "carcinomatis" neuter ; -- [XBXDO] :: ulcer or tumor (malignant?); (term of reproach by Augustus for Julia/Agrippa); + carcinothron_N_N = mkN "carcinothron" "carcinothri" neuter ; -- [XAXNO] :: plant, knotgrass; (pure Latin geniculata; also called polygonon); cardamina_F_N = mkN "cardamina" ; -- [DAXFS] :: cress-like plant; cardamomum_N_N = mkN "cardamomum" ; -- [XAXDO] :: cardamom (Elettaris cardamomum); its seeds (used in medicine/spice); cardamum_N_N = mkN "cardamum" ; -- [DAXFO] :: cress-like plant; (pure Latin nasturtium); - cardelis_F_N = mkN "cardelis" "cardelis " feminine ; -- [XAXNO] :: goldfinch (Fringilla carduelis); thistle-finch (L+S); + cardelis_F_N = mkN "cardelis" "cardelis" feminine ; -- [XAXNO] :: goldfinch (Fringilla carduelis); thistle-finch (L+S); cardiacus_A = mkA "cardiacus" "cardiaca" "cardiacum" ; -- [XBXCO] :: of heart or stomach; suffering in stomach; cardiacus_M_N = mkN "cardiacus" ; -- [XBXEO] :: person suffering from heartburn or stomach distress; cardimoma_F_N = mkN "cardimoma" ; -- [DBXFS] :: pain in stomach, stomach ache; - cardinalas_F_N = mkN "cardinalas" "cardinalatis " feminine ; -- [FEXFM] :: cardinalate, office/position/dignity/rank of Cardinal in Catholic Church; - cardinalatus_M_N = mkN "cardinalatus" "cardinalatus " masculine ; -- [FEXEE] :: cardinalate, office/position/dignity/rank of Cardinal in Catholic Church; + cardinalas_F_N = mkN "cardinalas" "cardinalatis" feminine ; -- [FEXFM] :: cardinalate, office/position/dignity/rank of Cardinal in Catholic Church; + cardinalatus_M_N = mkN "cardinalatus" "cardinalatus" masculine ; -- [FEXEE] :: cardinalate, office/position/dignity/rank of Cardinal in Catholic Church; cardinalicius_A = mkA "cardinalicius" "cardinalicia" "cardinalicium" ; -- [GEXEM] :: cardinal's; of a cardinal; cardinalis_A = mkA "cardinalis" "cardinalis" "cardinale" ; -- [XTXFO] :: cardinal/principle/chief; that serves as pivot/on which something turns/depends; - cardinalis_M_N = mkN "cardinalis" "cardinalis " masculine ; -- [FEXDB] :: cardinal, prince of Catholic Church; (elector of Popes); chief, principle; + cardinalis_M_N = mkN "cardinalis" "cardinalis" masculine ; -- [FEXDB] :: cardinal, prince of Catholic Church; (elector of Popes); chief, principle; cardinaliter_Adv = mkAdv "cardinaliter" ; -- [DXXFS] :: chiefly, principally; especially; cardinalitius_A = mkA "cardinalitius" "cardinalitia" "cardinalitium" ; -- [FEXFE] :: of/pertaining to cardinalate/cardinalship/position of Catholic Cardinal; cardinatus_A = mkA "cardinatus" "cardinata" "cardinatum" ; -- [XTXFO] :: mortised; hinged to; cardineus_A = mkA "cardineus" "cardinea" "cardineum" ; -- [XTXFO] :: of/by hinges; of/pertaining to door-hinge; E:of a cardinal (Latham); - cardiogramma_N_N = mkN "cardiogramma" "cardiogrammatis " neuter ; -- [HBXEK] :: cardiogram; electrocardiogram; + cardiogramma_N_N = mkN "cardiogramma" "cardiogrammatis" neuter ; -- [HBXEK] :: cardiogram; electrocardiogram; cardiographia_F_N = mkN "cardiographia" ; -- [HBXEK] :: cardiography; electrocardiography; cardiographium_N_N = mkN "cardiographium" ; -- [HBXEK] :: cardiograph; electrocardiograph; cardiologia_F_N = mkN "cardiologia" ; -- [GBXEK] :: cardiology; cardiologus_M_N = mkN "cardiologus" ; -- [GBXEK] :: cardiologist; - cardo_M_N = mkN "cardo" "cardinis " masculine ; -- [XXXAO] :: hinge; pole, axis; chief point/circumstance; crisis; tenon/mortise; area; limit; - carduelis_F_N = mkN "carduelis" "carduelis " feminine ; -- [XAXNO] :: goldfinch (Fringilla carduelis); thistle-finch (L+S); + cardo_M_N = mkN "cardo" "cardinis" masculine ; -- [XXXAO] :: hinge; pole, axis; chief point/circumstance; crisis; tenon/mortise; area; limit; + carduelis_F_N = mkN "carduelis" "carduelis" feminine ; -- [XAXNO] :: goldfinch (Fringilla carduelis); thistle-finch (L+S); carduetus_M_N = mkN "carduetus" ; -- [XAXFS] :: thicket of thistle; sedgebrush, rushes (Ecc); carduus_M_N = mkN "carduus" ; -- [XAXCO] :: thistle; prickly bur/seed-vessel; cardoon (artichoke-like vegetable); care_Adv =mkAdv "care" "carius" "carissime" ; -- [XXXCO] :: dear, at high price; of high value; at great cost/sacrifice; @@ -8939,11 +8939,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; carians_A = mkA "carians" "cariantis"; -- [DXXFS] :: decayed, rotten; defective; carica_F_N = mkN "carica" ; -- [XAQCO] :: kind of fig; (Caria a country in south-west Asia Minor); - caries_F_N = mkN "caries" "cariei " feminine ; -- [XXXBO] :: rot, rottenness, corruption, decay; caries; shriveling up; dry rot; ship worm; + caries_F_N = mkN "caries" "cariei" feminine ; -- [XXXBO] :: rot, rottenness, corruption, decay; caries; shriveling up; dry rot; ship worm; carina_F_N = mkN "carina" ; -- [XXXCO] :: keel, bottom of ship, hull; boat, ship, vessel; voyage; half walnut shell; carinarius_M_N = mkN "carinarius" ; -- [XXXFO] :: one who dyes? brown; carinatus_A = mkA "carinatus" "carinata" "carinatum" ; -- [XXXNS] :: shell-formed/shaped; like a keel/hull; @@ -8953,47 +8953,47 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat carinus_A = mkA "carinus" "carina" "carinum" ; -- [XXXFO] :: nut-brown (fashionable color in women's dress); cariosus_A = mkA "cariosus" "cariosa" "cariosum" ; -- [XXXCO] :: rotten, decayed (wood/teeth); crumbly; friable, loose, porous; decayed (old); cariota_F_N = mkN "cariota" ; -- [XAXDO] :: date; nut-shaped date (L+S); (as gift on Saturnalia); - caris_F_N = mkN "caris" "caridis " feminine ; -- [XAXFO] :: kind of crustacean; shrimp/prawn?; sea-crab (L+S); + caris_F_N = mkN "caris" "caridis" feminine ; -- [XAXFO] :: kind of crustacean; shrimp/prawn?; sea-crab (L+S); carisa_F_N = mkN "carisa" ; -- [XXXFS] :: artful woman; carissus_A = mkA "carissus" "carissa" "carissum" ; -- [XXXFO] :: artful, sly, cunning, crafty; caristium_N_N = mkN "caristium" ; -- [XXXES] :: annual family banquet 3 days after Parentalia (20 Feb.) where feuds settled; carisus_A = mkA "carisus" "carisa" "carisum" ; -- [XXXFS] :: artful, sly, cunning, crafty; - caritas_F_N = mkN "caritas" "caritatis " feminine ; -- [XXXBO] :: charity; love, affection, esteem, favor; dearness; high price; + caritas_F_N = mkN "caritas" "caritatis" feminine ; -- [XXXBO] :: charity; love, affection, esteem, favor; dearness; high price; caritativus_A = mkA "caritativus" "caritativa" "caritativum" ; -- [EEXEE] :: charitable; - caritores_F_N = mkN "caritores" "caritoris " feminine ; -- [DAXFS] :: wool-carders; - carmen_N_N = mkN "carmen" "carminis " neuter ; -- [XDXAO] :: song/music; poem/play; charm; prayer, incantation, ritual/magic formula; oracle; + caritores_F_N = mkN "caritores" "caritoris" feminine ; -- [DAXFS] :: wool-carders; + carmen_N_N = mkN "carmen" "carminis" neuter ; -- [XDXAO] :: song/music; poem/play; charm; prayer, incantation, ritual/magic formula; oracle; carminabundus_A = mkA "carminabundus" "carminabunda" "carminabundum" ; -- [XPXFS] :: versifying; making/composing verse/poetry; - carminatio_F_N = mkN "carminatio" "carminationis " feminine ; -- [XAXNO] :: combing/carding (wool/flax/etc.); - carminator_M_N = mkN "carminator" "carminatoris " masculine ; -- [XAXIO] :: carder (of wool/flax/etc.); + carminatio_F_N = mkN "carminatio" "carminationis" feminine ; -- [XAXNO] :: combing/carding (wool/flax/etc.); + carminator_M_N = mkN "carminator" "carminatoris" masculine ; -- [XAXIO] :: carder (of wool/flax/etc.); carmino_V2 = mkV2 (mkV "carminare") ; -- [DPXFS] :: |make verses; - carnale_N_N = mkN "carnale" "carnalis " neuter ; -- [DEXCS] :: carnal/sensual/worldly things; things of the_flesh; + carnale_N_N = mkN "carnale" "carnalis" neuter ; -- [DEXCS] :: carnal/sensual/worldly things; things of the_flesh; carnalis_A = mkA "carnalis" "carnalis" "carnale" ; -- [DEXCS] :: carnal, fleshy, bodily, sensual; of the_flesh; not spiritual, worldly; - carnalitas_F_N = mkN "carnalitas" "carnalitatis " feminine ; -- [DEXES] :: carnality, sensuality, fleshiness; + carnalitas_F_N = mkN "carnalitas" "carnalitatis" feminine ; -- [DEXES] :: carnality, sensuality, fleshiness; carnaliter_Adv = mkAdv "carnaliter" ; -- [DEXCS] :: carnally, sensually; not spiritually; carnarium_N_N = mkN "carnarium" ; -- [XAXCO] :: meat rack (for smoking/drying); larder/pantry (L+S); carnarius_A = mkA "carnarius" "carnaria" "carnarium" ; -- [DEXFS] :: of/pertaining to/belonging to flesh; carnarius_M_N = mkN "carnarius" ; -- [XAXFO] :: dealer in meat; butcher; - carnatio_F_N = mkN "carnatio" "carnationis " feminine ; -- [DXXFS] :: fleshiness, bulk, corpulence, heaviness; + carnatio_F_N = mkN "carnatio" "carnationis" feminine ; -- [DXXFS] :: fleshiness, bulk, corpulence, heaviness; carnatus_A = mkA "carnatus" "carnata" "carnatum" ; -- [DBXFS] :: fleshy, fat, corpulent; carnelevarium_N_N = mkN "carnelevarium" ; -- [GXXEK] :: carnival; - carnero_M_N = mkN "carnero" "carneronis " masculine ; -- [FAXEN] :: steer, cow; + carnero_M_N = mkN "carnero" "carneronis" masculine ; -- [FAXEN] :: steer, cow; carneus_A = mkA "carneus" "carnea" "carneum" ; -- [DEXES] :: of the_flesh, carnal; not spiritual; - carnicis_F_N = mkN "carnicis" "carnicis " feminine ; -- [XAXFO] :: fodder plant, tree-medick (Medicago arborea); its wood; scrubby snail-clover; - carnicis_M_N = mkN "carnicis" "carnicis " masculine ; -- [XAXFO] :: fodder plant, tree-medick (Medicago arborea); its wood; scrubby snail-clover; + carnicis_F_N = mkN "carnicis" "carnicis" feminine ; -- [XAXFO] :: fodder plant, tree-medick (Medicago arborea); its wood; scrubby snail-clover; + carnicis_M_N = mkN "carnicis" "carnicis" masculine ; -- [XAXFO] :: fodder plant, tree-medick (Medicago arborea); its wood; scrubby snail-clover; carnicula_F_N = mkN "carnicula" ; -- [DXXFS] :: flesh; carnifex_A = mkA "carnifex" "carnificis"; -- [XXXEO] :: tormenting, torturing; murderous, killing; deadly; - carnifex_M_N = mkN "carnifex" "carnificis " masculine ; -- [XXXCO] :: executioner, hangman; murderer, butcher, torturer; scoundrel, villain; + carnifex_M_N = mkN "carnifex" "carnificis" masculine ; -- [XXXCO] :: executioner, hangman; murderer, butcher, torturer; scoundrel, villain; carnificina_F_N = mkN "carnificina" ; -- [XXXCO] :: work/act/office of executioner/torturer; torture/execution; capital punishment; carnificius_A = mkA "carnificius" "carnificia" "carnificium" ; -- [XXXFO] :: of/pertaining to an executioner/hangman/torturer; carnifico_V = mkV "carnificare" ; -- [XXXEO] :: execute; behead; butcher; cut in pieces, mangle; carnificor_V = mkV "carnificari" ; -- [DXXFS] :: execute; behead; butcher; cut in pieces, mangle; carnificus_A = mkA "carnificus" "carnifica" "carnificum" ; -- [XXXFO] :: butchering; 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; + 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; 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; + 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; carnuficius_A = mkA "carnuficius" "carnuficia" "carnuficium" ; -- [XXXFO] :: of/pertaining to an executioner/hangman/torturer; carnufico_V = mkV "carnuficare" ; -- [XXXEO] :: execute; behead; butcher; cut in pieces, mangle; @@ -9001,12 +9001,12 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat carnuficus_A = mkA "carnuficus" "carnufica" "carnuficum" ; -- [XXXFO] :: butchering; 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_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); + 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; - carotis_F_N = mkN "carotis" "carotidis " feminine ; -- [XBXFO] :: carotid arteries (pl.); + carotis_F_N = mkN "carotis" "carotidis" feminine ; -- [XBXFO] :: carotid arteries (pl.); carpa_F_N = mkN "carpa" ; -- [GAXET] :: carp; (Erasmus); carpasinus_A = mkA "carpasinus" "carpasina" "carpasinum" ; -- [EXXFW] :: green; (Vulgate Ester 1:6); carpasum_N_N = mkN "carpasum" ; -- [XAXES] :: plant with narcotic juice; (white hellebore? OLD); @@ -9019,25 +9019,25 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat carpentura_F_N = mkN "carpentura" ; -- [GXXEK] :: framework; carpheothum_N_N = mkN "carpheothum" ; -- [XXXNS] :: (superior) kind of incense; excellent kind of white frankincense; carphologia_F_N = mkN "carphologia" ; -- [DAXFS] :: picking of pieces of straw from mud/adobe walls; - carphos_N_N = mkN "carphos" "carphi " neuter ; -- [XAXNO] :: fenugreek; goat's thorn; + carphos_N_N = mkN "carphos" "carphi" neuter ; -- [XAXNO] :: fenugreek; goat's thorn; carpineus_A = mkA "carpineus" "carpinea" "carpineum" ; -- [XAXNO] :: of/made of/pertaining to hornbeam (tree of genus Carpinus); 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?); + 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.); + carptor_M_N = mkN "carptor" "carptoris" masculine ; -- [XXXFO] :: carver (of game/poultry/etc.); carptura_F_N = mkN "carptura" ; -- [XAXFS] :: gathering of honey; sucking of nectar from flowers (by bees) (L+S); carpusculus_M_N = mkN "carpusculus" ; -- [DXXES] :: kind of shoe; groundwork/basement; carracutium_N_N = mkN "carracutium" ; -- [DXXFS] :: kind of two-wheeled carriage; - carrago_F_N = mkN "carrago" "carraginis " feminine ; -- [DWXES] :: fortification/barricade made of wagons; circled wagons; + 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); + carroco_M_N = mkN "carroco" "carroconis" masculine ; -- [DAXFS] :: sturgeon (Acipenser sturio); carruca_F_N = mkN "carruca" ; -- [XXXDO] :: coach, traveling-carriage; (four-wheeled L+S); state coach; carrucarius_A = mkA "carrucarius" "carrucaria" "carrucarium" ; -- [XXXFO] :: used for/pertaining to carriages/carruca; carrucarius_M_N = mkN "carrucarius" ; -- [DXXFS] :: coachman; @@ -9050,7 +9050,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cartibulum_N_N = mkN "cartibulum" ; -- [XXXFS] :: kind of oblong table standing on a pedestal; cartilagineus_A = mkA "cartilagineus" "cartilaginea" "cartilagineum" ; -- [XBXNO] :: cartilaginous, gristly; cartilaginosus_A = mkA "cartilaginosus" "cartilaginosa" "cartilaginosum" ; -- [XBXNO] :: characterized by/full of cartilage/other tough fibrous tissue, very gristly; - cartilago_F_N = mkN "cartilago" "cartilaginis " feminine ; -- [XBXDO] :: cartilage, gristle; substance harder than pulp but softer than woody fiber; + cartilago_F_N = mkN "cartilago" "cartilaginis" feminine ; -- [XBXDO] :: cartilage, gristle; substance harder than pulp but softer than woody fiber; cartula_F_N = mkN "cartula" ; -- [XXXFO] :: scrap/piece of papyrus; small note, bill (L+S); 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); @@ -9058,12 +9058,12 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); - caryon_N_N = mkN "caryon" "caryi " neuter ; -- [XAXNO] :: walnut; nut (L+S); - caryophyllon_N_N = mkN "caryophyllon" "caryophylli " neuter ; -- [XAXNO] :: dried flower-buds of clove; cloves; + caryites_M_N = mkN "caryites" "caryitae" masculine ; -- [XAXNO] :: variety of spurge; species of tithymalus (L+S); + caryon_N_N = mkN "caryon" "caryi" neuter ; -- [XAXNO] :: walnut; nut (L+S); + caryophyllon_N_N = mkN "caryophyllon" "caryophylli" neuter ; -- [XAXNO] :: dried flower-buds of clove; cloves; caryophyllum_N_N = mkN "caryophyllum" ; -- [FXXEK] :: clove; caryota_F_N = mkN "caryota" ; -- [XAXDO] :: date; nut-shaped date (L+S); (as gift on Saturnalia); - caryotis_F_N = mkN "caryotis" "caryotidis " feminine ; -- [XAXEO] :: date; nut-shaped date (L+S); (as gift on Saturnalia); + caryotis_F_N = mkN "caryotis" "caryotidis" feminine ; -- [XAXEO] :: date; nut-shaped date (L+S); (as gift on Saturnalia); casa_F_N = mkN "casa" ; -- [XXXCO] :: cottage/small humble dwelling, hut/hovel; home; house; shop, booth; farm (late); casabundus_A = mkA "casabundus" "casabunda" "casabundum" ; -- [XXXES] :: stumbling, tottering; ready to fall; casamus_M_N = mkN "casamus" ; -- [BXXFS] :: old man; attendant; @@ -9082,7 +9082,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat caseus_M_N = mkN "caseus" ; -- [XXXCO] :: cheese; pressed curd; comic term of endearment (L+S); casia_F_N = mkN "casia" ; -- [XAXCO] :: cinnamon (Cinnamomum tree/bark/spice); aromatic shrub (mezereon or marjoram?); casiarius_A = mkA "casiarius" "casiaria" "casiarium" ; -- [XXXFO] :: of/connected with cheese; - casignete_F_N = mkN "casignete" "casignetes " feminine ; -- [XAXNO] :: plant (unidentified); (also called dionysonymphadas); + 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; casleu_N = constN "casleu" neuter ; -- [EXQEW] :: Chislev/Kislev, Jewish month; (ninth in ecclesiastic year); @@ -9094,9 +9094,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cassiculus_M_N = mkN "cassiculus" ; -- [XAXFO] :: small net; cobweb; cassida_F_N = mkN "cassida" ; -- [XWXEO] :: helmet (metal); wearer of a helmet; war, active service; cassidarius_M_N = mkN "cassidarius" ; -- [DWXIS] :: helmet maker; - cassidile_N_N = mkN "cassidile" "cassidilis " neuter ; -- [DXXFS] :: small bag, wallet; satchel, bag (Souter); - cassis_F_N = mkN "cassis" "cassidis " feminine ; -- [XWXCO] :: helmet (metal); wearer of a helmet; war, active service; - cassis_M_N = mkN "cassis" "cassis " masculine ; -- [XWXCO] :: hunting net (often pl.); spider's web; snare, trap; + cassidile_N_N = mkN "cassidile" "cassidilis" neuter ; -- [DXXFS] :: small bag, wallet; satchel, bag (Souter); + cassis_F_N = mkN "cassis" "cassidis" feminine ; -- [XWXCO] :: helmet (metal); wearer of a helmet; war, active service; + cassis_M_N = mkN "cassis" "cassis" masculine ; -- [XWXCO] :: hunting net (often pl.); spider's web; snare, trap; cassita_F_N = mkN "cassita" ; -- [XAXFO] :: crested/tufted lark (Alauda cristata); cassiterinus_A = mkA "cassiterinus" "cassiterina" "cassiterinum" ; -- [XXXFS] :: made of tin; cassiterum_N_N = mkN "cassiterum" ; -- [XXXNO] :: tin; (originally a mixture of lead/silver and other metals L+S); @@ -9105,7 +9105,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat casso_V2 = mkV2 (mkV "cassare") ; -- [DLXES] :: bring to naught, destroy; annul, make null and void; cassum_N_N = mkN "cassum" ; -- [XXXES] :: empty/vain/futile things (pl.); cassus_A = mkA "cassus" "cassa" "cassum" ; -- [XXXBO] :: hollow/empty/devoid of, lacking; useless/fruitless/vain; [in cassum => in vain]; - cassus_M_N = mkN "cassus" "cassus " masculine ; -- [XXXEO] :: fall, overthrow; chance/fortune; accident, emergency, calamity, plight; fate; + cassus_M_N = mkN "cassus" "cassus" masculine ; -- [XXXEO] :: fall, overthrow; chance/fortune; accident, emergency, calamity, plight; fate; castanea_F_N = mkN "castanea" ; -- [XAXCO] :: chestnut-tree, chestnut; castanetum_N_N = mkN "castanetum" ; -- [XAXEO] :: chestnut plantation; castanietum_N_N = mkN "castanietum" ; -- [XAXEO] :: chestnut plantation/grove; @@ -9121,32 +9121,32 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat castificus_A = mkA "castificus" "castifica" "castificum" ; -- [XXXFO] :: acting chastely, pure; purifying; [~ lavacrum => baptism] (L+S); castigabilis_A = mkA "castigabilis" "castigabilis" "castigabile" ; -- [XXXFO] :: that deserves punishment; deserving of punishment/reprimand/chastising; castigate_Adv = mkAdv "castigate" ; -- [XXXFO] :: chastely; strictly; briefly (L+S); restrainedly, within bounds; - 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; + 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); 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; + 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); + castor_M_N = mkN "castor" "castoris" masculine ; -- [XAXDO] :: 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-; castra_F_N = mkN "castra" ; -- [BWXFO] :: camp, military camp/field; army; fort, fortress; war service; day's march; castramentor_V = mkV "castramentari" ; -- [FXXDE] :: pitch a camp; encamp; castrametor_V = mkV "castrametari" ; -- [DXXCS] :: pitch a camp; encamp; - castratio_F_N = mkN "castratio" "castrationis " feminine ; -- [XXXEO] :: castration; emasculation; gelding; - castrator_M_N = mkN "castrator" "castratoris " masculine ; -- [DAXES] :: one who castrates/gelds, castrator; + castratio_F_N = mkN "castratio" "castrationis" feminine ; -- [XXXEO] :: castration; emasculation; gelding; + castrator_M_N = mkN "castrator" "castratoris" masculine ; -- [DAXES] :: one who castrates/gelds, castrator; castratorius_A = mkA "castratorius" "castratoria" "castratorium" ; -- [DAXES] :: of/for castration; castratura_F_N = mkN "castratura" ; -- [DAXES] :: castration, emasculation; pruning of plants; castratus_A = mkA "castratus" "castrata" "castratum" ; -- [XXXCO] :: castrated; (applied to seeds of apple); bolted/sifted/selected (grain); castratus_M_N = mkN "castratus" ; -- [XXXDO] :: eunuch, castrated man; - castrens_M_N = mkN "castrens" "castrensis " masculine ; -- [DLXES] :: high imperial court officer (Constantinople); soldier in camp; + castrens_M_N = mkN "castrens" "castrensis" masculine ; -- [DLXES] :: high imperial court officer (Constantinople); soldier in camp; castrensianus_M_N = mkN "castrensianus" ; -- [DLXES] :: attendants (pl.) to Castrensis (Constantinople high imperial court officer); castrensiarius_M_N = mkN "castrensiarius" ; -- [DWXIS] :: purveyor for camp, suttler; castrensis_A = mkA "castrensis" "castrensis" "castrense" ; -- [XWXBO] :: of/connected with camp or active military service; characteristic of soldiers; @@ -9156,35 +9156,35 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; 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; + 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; casualiter_Adv = mkAdv "casualiter" ; -- [DXXCS] :: relating to/declined with cases; accidentally, fortuitously; 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]; - 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; + 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]; + 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; - catacecaumenites_M_N = mkN "catacecaumenites" "catacecaumenitae " masculine ; -- [XAXNO] :: wine produced in Catacecaumene district in eastern Lydia; + catacecaumenites_M_N = mkN "catacecaumenites" "catacecaumenitae" masculine ; -- [XAXNO] :: wine produced in Catacecaumene district in eastern Lydia; catachana_F_N = mkN "catachana" ; -- [XAXES] :: tree on which several different fruits have been grafted; catachanna_F_N = mkN "catachanna" ; -- [XAXEO] :: tree on which several different fruits have been grafted; - catachresis_F_N = mkN "catachresis" "catachresis " feminine ; -- [XGXCO] :: improper use of a word; (pure Latin abusio); + catachresis_F_N = mkN "catachresis" "catachresis" feminine ; -- [XGXCO] :: improper use of a word; (pure Latin abusio); cataclisticus_A = mkA "cataclisticus" "cataclistica" "cataclisticum" ; -- [XXXES] :: of/pertaining to state/special occasion/formal dress; cataclistus_A = mkA "cataclistus" "cataclista" "cataclistum" ; -- [XXXEO] :: kept for special occasions (clothes), Sunday best; [~ vestis => state dress]; - cataclysmos_M_N = mkN "cataclysmos" "cataclysmi " masculine ; -- [XXXEO] :: deluge, flood, inundation; (medical) washing diseased member, shower, douche; + cataclysmos_M_N = mkN "cataclysmos" "cataclysmi" masculine ; -- [XXXEO] :: deluge, flood, inundation; (medical) washing diseased member, shower, douche; cataclysmus_M_N = mkN "cataclysmus" ; -- [EXXFW] :: deluge, flood, inundation; (medical) washing diseased member, shower, douche; catacumba_F_N = mkN "catacumba" ; -- [DEXIS] :: catacombs; catadromarius_M_N = mkN "catadromarius" ; -- [XDXIO] :: one who rides down a catadromus (catwalk suspended on ropes), rope-dancer; catadromus_M_N = mkN "catadromus" ; -- [XDXEO] :: kind of catwalk suspended on ropes; (for a rope_dancer); catadupum_N_N = mkN "catadupum" ; -- [XXXFO] :: cataracts (pl.); (specifically Nile cataracts); - cataegis_F_N = mkN "cataegis" "cataegidis " feminine ; -- [XSXFO] :: hurricane; violent wind storm; whirlwind; + cataegis_F_N = mkN "cataegis" "cataegidis" feminine ; -- [XSXFO] :: hurricane; violent wind storm; whirlwind; catafracta_M_N = mkN "catafracta" ; -- [XWXEO] :: coat of mail; chain mail clad soldier; catafractarius_A = mkA "catafractarius" "catafractaria" "catafractarium" ; -- [XWXIO] :: wearing mail, armored; catafractarius_M_N = mkN "catafractarius" ; -- [XWXIO] :: mail-clad/armored soldier; catafractatus_A = mkA "catafractatus" "catafractata" "catafractatum" ; -- [XWXIO] :: wearing/equipped with mail armor, armored; - catafractes_M_N = mkN "catafractes" "catafractae " masculine ; -- [XWXEO] :: coat of mail; chain mail clad soldier; + catafractes_M_N = mkN "catafractes" "catafractae" masculine ; -- [XWXEO] :: coat of mail; chain mail clad soldier; catafractus_A = mkA "catafractus" "catafracta" "catafractum" ; -- [XWXEO] :: clad in mail armor; equiped with mail; armored; catafractus_M_N = mkN "catafractus" ; -- [XWXEO] :: soldier clad in mail armor; catagraphum_N_N = mkN "catagraphum" ; -- [XXXNO] :: three-quarter face portrait; profile portraits (pl.), side views (L+S); @@ -9193,59 +9193,59 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat catalecticos_A = mkA "catalecticos" "catalecticos" "catalecticon" ; -- [XPXFO] :: having incomplete final foot (of meter); forming such a foot (of syllable); catalecticus_A = mkA "catalecticus" "catalectica" "catalecticum" ; -- [XPXFO] :: having incomplete final foot (of meter); forming such a foot (of syllable); catalectus_A = mkA "catalectus" "catalecta" "catalectum" ; -- [XPXFS] :: having incomplete final foot (of meter); forming such a foot (of syllable); - catalepsis_F_N = mkN "catalepsis" "catalepsis " feminine ; -- [DBXFS] :: catalepsy, seizure, sudden attack of sickness; + catalepsis_F_N = mkN "catalepsis" "catalepsis" feminine ; -- [DBXFS] :: catalepsy, seizure, sudden attack of sickness; catalepticus_A = mkA "catalepticus" "cataleptica" "catalepticum" ; -- [DBXFS] :: cataleptic; subject to seizures/sudden attacks of sickness; - catalexis_F_N = mkN "catalexis" "catalexis " feminine ; -- [XPXFO] :: loss of a syllable in a final metrical foot; + catalexis_F_N = mkN "catalexis" "catalexis" feminine ; -- [XPXFO] :: loss of a syllable in a final metrical foot; catallum_N_N = mkN "catallum" ; -- [FLXFJ] :: chattel; catalogus_M_N = mkN "catalogus" ; -- [DXXCS] :: enumeration, list of names; catalog; catamenia_F_N = mkN "catamenia" ; -- [GBXEK] :: menstruation; - catampo_F_N = mkN "catampo" "catamponis " feminine ; -- [XXXFO] :: kind of play/sport/game; - 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; + catampo_F_N = mkN "catampo" "catamponis" feminine ; -- [XXXFO] :: kind of play/sport/game; + 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; 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; - cataphractes_M_N = mkN "cataphractes" "cataphractae " masculine ; -- [XWXEO] :: coat of mail; chain mail clad soldier; + cataphractes_M_N = mkN "cataphractes" "cataphractae" masculine ; -- [XWXEO] :: coat of mail; chain mail clad soldier; cataphractus_A = mkA "cataphractus" "cataphracta" "cataphractum" ; -- [XWXDO] :: armored; clad in mail; B:blinded; catapirateria_F_N = mkN "catapirateria" ; -- [XWXEO] :: sounding-line/lead; - catapirates_M_N = mkN "catapirates" "catapiratis " masculine ; -- [XWXFO] :: sounding-line; (gender contrary to rule OLD); - cataplasma_N_N = mkN "cataplasma" "cataplasmatis " neuter ; -- [XBXDO] :: poultice; plaster; + catapirates_M_N = mkN "catapirates" "catapiratis" masculine ; -- [XWXFO] :: sounding-line; (gender contrary to rule OLD); + cataplasma_N_N = mkN "cataplasma" "cataplasmatis" neuter ; -- [XBXDO] :: poultice; plaster; cataplasmo_V2 = mkV2 (mkV "cataplasmare") ; -- [DBXDS] :: apply a poultice/plaster (to); cataplasmus_M_N = mkN "cataplasmus" ; -- [XBXCS] :: poultice; plaster; - cataplectatio_F_N = mkN "cataplectatio" "cataplectationis " feminine ; -- [EXXFP] :: consternation; terror (Vulgate Sirach 21:4); - cataplexis_F_N = mkN "cataplexis" "cataplexis " feminine ; -- [XXXFO] :: object of admiration; + cataplectatio_F_N = mkN "cataplectatio" "cataplectationis" feminine ; -- [EXXFP] :: consternation; terror (Vulgate Sirach 21:4); + cataplexis_F_N = mkN "cataplexis" "cataplexis" feminine ; -- [XXXFO] :: object of admiration; cataplus_M_N = mkN "cataplus" ; -- [XWXEO] :: action of putting/getting into port; ship/fleet that comes to land; catapotium_N_N = mkN "catapotium" ; -- [XBXEO] :: pill (medicine); (that which is swallowed); catapulta_F_N = mkN "catapulta" ; -- [XWXCO] :: catapult, an engine which shot large arrow/bolt/missile; missile itself (L+S); catapultarius_A = mkA "catapultarius" "catapultaria" "catapultarium" ; -- [XWXFO] :: of/connected with/thrown by a catapult (engine which shot large arrows/bolts); cataracta_F_N = mkN "cataracta" ; -- [XXXCO] :: cataract/rapid; waterfall; sluice, watergate; portcullis, drawbridge; sea bird; - cataractes_M_N = mkN "cataractes" "cataractae " masculine ; -- [XXXCO] :: cataract/rapid; waterfall; sluice, watergate; portcullis, drawbridge; sea bird; + cataractes_M_N = mkN "cataractes" "cataractae" masculine ; -- [XXXCO] :: cataract/rapid; waterfall; sluice, watergate; portcullis, drawbridge; sea bird; cataractria_F_N = mkN "cataractria" ; -- [BXXFO] :: fictitious condiment/spice; (coined by Plautus L+S); - catarhactes_M_N = mkN "catarhactes" "catarhactae " masculine ; -- [XXXCO] :: cataract/rapid; waterfall; sluice, watergate; portcullis, drawbridge; sea bird; + catarhactes_M_N = mkN "catarhactes" "catarhactae" masculine ; -- [XXXCO] :: cataract/rapid; waterfall; sluice, watergate; portcullis, drawbridge; sea bird; catarracta_F_N = mkN "catarracta" ; -- [XXXCO] :: cataract/rapid; waterfall; sluice, watergate; portcullis, drawbridge; sea bird; - catarractes_M_N = mkN "catarractes" "catarractae " masculine ; -- [XXXCO] :: cataract/rapid; waterfall; sluice, watergate; portcullis, drawbridge; sea bird; - catarrhactes_M_N = mkN "catarrhactes" "catarrhactae " masculine ; -- [XXXCO] :: cataract/rapid; waterfall; sluice, watergate; portcullis, drawbridge; sea bird; + catarractes_M_N = mkN "catarractes" "catarractae" masculine ; -- [XXXCO] :: cataract/rapid; waterfall; sluice, watergate; portcullis, drawbridge; sea bird; + catarrhactes_M_N = mkN "catarrhactes" "catarrhactae" masculine ; -- [XXXCO] :: cataract/rapid; waterfall; sluice, watergate; portcullis, drawbridge; sea bird; catarrhus_M_N = mkN "catarrhus" ; -- [DBXES] :: cold, catarrh, rheum, flu; flowing down, runny nose, flow of mucus with a cold; catasceua_F_N = mkN "catasceua" ; -- [XGXFO] :: constructive argument; confirmation of an assumption (L+S); - catasceue_F_N = mkN "catasceue" "catasceues " feminine ; -- [XGXET] :: constructive argument; confirmation of an assumption (L+S); + catasceue_F_N = mkN "catasceue" "catasceues" feminine ; -- [XGXET] :: constructive argument; confirmation of an assumption (L+S); catascopiscus_M_N = mkN "catascopiscus" ; -- [XWXIO] :: light vessel for reconnoitering/spying/lookout; (navigium speculatorium); catascopium_N_N = mkN "catascopium" ; -- [XWXFO] :: light vessel for reconnoitering; catascopus_M_N = mkN "catascopus" ; -- [XWXFO] :: light vessel for reconnoitering; catasta_F_N = mkN "catasta" ; -- [DXXCS] :: |scaffold for burning martyrs/heretics/criminals; stage for delivering lectures; catastalticus_A = mkA "catastalticus" "catastaltica" "catastalticum" ; -- [DBXFS] :: restraining, checking (medical); - catastatice_F_N = mkN "catastatice" "catastatices " feminine ; -- [DAXFS] :: plant; (pure Latin scelerata); - catastema_N_N = mkN "catastema" "catastematis " neuter ; -- [DSXFS] :: position/situation/condition (of a star); + catastatice_F_N = mkN "catastatice" "catastatices" feminine ; -- [DAXFS] :: plant; (pure Latin scelerata); + catastema_N_N = mkN "catastema" "catastematis" neuter ; -- [DSXFS] :: position/situation/condition (of a star); catastropha_F_N = mkN "catastropha" ; -- [XDXFO] :: sensational act, coup de theatre; turning point of an action/catastrophe (L+S); catatexitechnus_A = mkA "catatexitechnus" "catatexitechna" "catatexitechnum" ; -- [XXXNO] :: that wastes his art; catatonus_A = mkA "catatonus" "catatona" "catatonum" ; -- [XWXFO] :: low strung (referring to length of tightened skeins of a catapult); depressed; catax_A = mkA "catax" "catacis"; -- [XBXEO] :: lame; limping; cate_Adv = mkAdv "cate" ; -- [XXXEO] :: well, sagaciously, wisely, intelligently; clearly; slyly, craftily, artfully; - catechesis_F_N = mkN "catechesis" "catechesis " feminine ; -- [DEXES] :: religious instruction; catechetical instruction/interrogation; + catechesis_F_N = mkN "catechesis" "catechesis" feminine ; -- [DEXES] :: religious instruction; catechetical instruction/interrogation; catecheta_C_N = mkN "catecheta" ; -- [FEXEE] :: catechism teacher, catechist; - catechisatio_F_N = mkN "catechisatio" "catechisationis " feminine ; -- [FEXFE] :: questioning; catechizing; + catechisatio_F_N = mkN "catechisatio" "catechisationis" feminine ; -- [FEXFE] :: questioning; catechizing; catechismus_M_N = mkN "catechismus" ; -- [DEXCS] :: catechism, book of elementary Christian instruction; catechisso_V2 = mkV2 (mkV "catechissare") ; -- [DEXES] :: instruct in religion, teach by question and answer, catechize; catechista_C_N = mkN "catechista" ; -- [FEXEE] :: catechism teacher, catechist; @@ -9253,9 +9253,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat catechisticus_A = mkA "catechisticus" "catechistica" "catechisticum" ; -- [FEXFE] :: of catechism; pertaining to elementary Christian instruction; catechiticus_A = mkA "catechiticus" "catechitica" "catechiticum" ; -- [FEXFE] :: catechetical, of catechism; pertaining to elementary Christian instruction; catechizo_V2 = mkV2 (mkV "catechizare") ; -- [DEXES] :: instruct in religion, teach by question and answer, catechize; - catechumatus_M_N = mkN "catechumatus" "catechumatus " masculine ; -- [EEXFE] :: catechumenate, time of instruction before baptism; + catechumatus_M_N = mkN "catechumatus" "catechumatus" masculine ; -- [EEXFE] :: catechumenate, time of instruction before baptism; catechumena_F_N = mkN "catechumena" ; -- [DEXES] :: catechumen, one receiving elementary religious instruction before baptism; - catechumenatus_M_N = mkN "catechumenatus" "catechumenatus " masculine ; -- [EEXFE] :: catechumenate, time of instruction before baptism; + catechumenatus_M_N = mkN "catechumenatus" "catechumenatus" masculine ; -- [EEXFE] :: catechumenate, time of instruction before baptism; catechumenus_M_N = mkN "catechumenus" ; -- [DEXES] :: catechumen, one receiving elementary religious instruction before baptism; catecizo_V2 = mkV2 (mkV "catecizare") ; -- [EEXEW] :: instruct in religion, teach by question and answer, catechize; categoria_F_N = mkN "categoria" ; -- [DLXES] :: accusation; predicament; category/class of predicables (logic); @@ -9266,14 +9266,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat catellus_M_N = mkN "catellus" ; -- [XAXCO] :: little/small/young dog, puppy; (term of endearment); little/light chain; catena_F_N = mkN "catena" ; -- [XXXBO] :: chain; series; fetter, bond, restraint; imprisonment, captivity; (chain mail); catenarius_A = mkA "catenarius" "catenaria" "catenarium" ; -- [XAXEO] :: chained, on a chain, fastened on a chain (e.g., dog); of/pertaining to a chain; - catenatio_F_N = mkN "catenatio" "catenationis " feminine ; -- [XXXEO] :: connection, joining; band, clamp, clincher, pin (L+S); + catenatio_F_N = mkN "catenatio" "catenationis" feminine ; -- [XXXEO] :: connection, joining; band, clamp, clincher, pin (L+S); catenatus_A = mkA "catenatus" "catenata" "catenatum" ; -- [XXXCO] :: chained, fettered; fixed/secured/attached by chain; arranged in a chain/series; cateno_V2 = mkV2 (mkV "catenare") ; -- [XXXFO] :: chain/bind/tie/shackle together; secure with bonds/chains/fetters; catenula_F_N = mkN "catenula" ; -- [XXXFS] :: little/small/light/ornamental chain; caterva_F_N = mkN "caterva" ; -- [XXXBO] :: crowd/cluster; troop, company, band of men/followers/actors; flock/herd/swarm; catervarius_A = mkA "catervarius" "catervaria" "catervarium" ; -- [XXXEO] :: of/pertaining to/belonging to troop/company/band; in bands; catervatim_Adv = mkAdv "catervatim" ; -- [XXXCO] :: in troops/bands/large numbers; in (disordered) masses; in herds/flocks/swarms; - catharmos_M_N = mkN "catharmos" "catharmi " masculine ; -- [BEXFO] :: purification rites (pl.); title of poem by Empedocles; + catharmos_M_N = mkN "catharmos" "catharmi" masculine ; -- [BEXFO] :: purification rites (pl.); title of poem by Empedocles; catharticum_N_N = mkN "catharticum" ; -- [DBXFS] :: cathartic, purgative; means for purifying; purification; cathecuminus_M_N = mkN "cathecuminus" ; -- [FEXEF] :: catechumen, one receiving religious instruction; cathedra_F_N = mkN "cathedra" ; -- [EEXCF] :: |bishop's chair/throne/office; professor/teacher's chair/office, professorship; @@ -9282,20 +9282,20 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cathedrarius_A = mkA "cathedrarius" "cathedraria" "cathedrarium" ; -- [XXXEO] :: fitted as/carrying a cathedra (arm/easy/sedan chair); having professor's chair; cathedraticum_N_N = mkN "cathedraticum" ; -- [EEXFE] :: bishop's tax, cathedraticum, annual tax paid to bishop; cathedratus_A = mkA "cathedratus" "cathedrata" "cathedratum" ; -- [XXXFO] :: fitted with cushioned seats (as a cathedra - arm/easy/cushioned chair); - catheter_M_N = mkN "catheter" "catheteris " masculine ; -- [DBXFS] :: catheter, instrument for drawing urine; + catheter_M_N = mkN "catheter" "catheteris" masculine ; -- [DBXFS] :: catheter, instrument for drawing urine; catheterismus_M_N = mkN "catheterismus" ; -- [DBXFS] :: application of a catheter, drawing urine, relieving pressure on bladder; cathetos_A = mkA "cathetos" "cathetos" "catheton" ; -- [XSXEO] :: perpendicular; cathetus_A = mkA "cathetus" "catheta" "cathetum" ; -- [XSXEO] :: perpendicular; cathetus_F_N = mkN "cathetus" ; -- [XSXES] :: perpendicular line; catholice_Adv = mkAdv "catholice" ; -- [DXXES] :: universally; in Catholic way, according to Catholic rite (Def); - catholicitas_F_N = mkN "catholicitas" "catholicitatis " feminine ; -- [FEXFE] :: catholicity, Catholic quality/character + catholicitas_F_N = mkN "catholicitas" "catholicitatis" feminine ; -- [FEXFE] :: catholicity, Catholic quality/character catholicum_N_N = mkN "catholicum" ; -- [XGXEO] :: general principle; universal truth; universe (pl.); general properties; catholicus_A = mkA "catholicus" "catholica" "catholicum" ; -- [DEXCS] :: catholic; universal; (Roman) Catholic, orthodox; catholicus_C_N = mkN "catholicus" ; -- [EEXCE] :: Catholic, one baptized and fully in communion with Catholic Church; cathurnus_M_N = mkN "cathurnus" ; -- [FEXFE] :: pride; haughtiness; majesty; - catillamen_N_N = mkN "catillamen" "catillaminis " neuter ; -- [DXXFS] :: junket, curds and cream, cream pudding; sweet dish, sweetmeat; - catillatio_F_N = mkN "catillatio" "catillationis " feminine ; -- [XXXFO] :: licking the plate; greed; extortion; plundering of friendly provinces (L+S); - catillo_M_N = mkN "catillo" "catillonis " masculine ; -- [XXXEO] :: licker of plates, one who cleans his plate, glutton; edible fish (lupus?); + catillamen_N_N = mkN "catillamen" "catillaminis" neuter ; -- [DXXFS] :: junket, curds and cream, cream pudding; sweet dish, sweetmeat; + catillatio_F_N = mkN "catillatio" "catillationis" feminine ; -- [XXXFO] :: licking the plate; greed; extortion; plundering of friendly provinces (L+S); + catillo_M_N = mkN "catillo" "catillonis" masculine ; -- [XXXEO] :: licker of plates, one who cleans his plate, glutton; edible fish (lupus?); catillo_V = mkV "catillare" ; -- [XXXFO] :: lick plates; catillum_N_N = mkN "catillum" ; -- [XXXCO] :: bowl, dish; ornament on sword sheath (L+S); upper millstone; catillus_M_N = mkN "catillus" ; -- [XXXCO] :: bowl, dish; ornament on sword sheath (L+S); upper millstone; @@ -9303,17 +9303,17 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat catinum_N_N = mkN "catinum" ; -- [XXXFO] :: large bowl/plate; main chamber in forepump; smelting crucible; hollow in rock; catinus_M_N = mkN "catinus" ; -- [XXXFO] :: large bowl/plate; main chamber in forepump; smelting crucible; hollow in rock; catlaster_M_N = mkN "catlaster" ; -- [XXXFO] :: young man; boy, lad, stripling; - catlitio_F_N = mkN "catlitio" "catlitionis " feminine ; -- [XXXEO] :: being in heat; desire to mate; - catlutio_F_N = mkN "catlutio" "catlutionis " feminine ; -- [XXXES] :: being in heat; desire to mate; - catoblepas_M_N = mkN "catoblepas" "catoblepae " masculine ; -- [XAANO] :: wild animal in Ethiopia; species of buffalo?/gnu? (L+S); + catlitio_F_N = mkN "catlitio" "catlitionis" feminine ; -- [XXXEO] :: being in heat; desire to mate; + catlutio_F_N = mkN "catlutio" "catlutionis" feminine ; -- [XXXES] :: being in heat; desire to mate; + catoblepas_M_N = mkN "catoblepas" "catoblepae" masculine ; -- [XAANO] :: wild animal in Ethiopia; species of buffalo?/gnu? (L+S); catocha_F_N = mkN "catocha" ; -- [DBXFS] :: complete stupor; catalepsy; - catochitis_F_N = mkN "catochitis" "catochidis " feminine ; -- [XXXNS] :: unknown precious stone (said to have an adhesive surface) (from Corsica L+S); + catochitis_F_N = mkN "catochitis" "catochidis" feminine ; -- [XXXNS] :: unknown precious stone (said to have an adhesive surface) (from Corsica L+S); catoecicus_A = mkA "catoecicus" "catoecica" "catoecicum" ; -- [XWXFO] :: assigned to military colonists; catomidio_V2 = mkV2 (mkV "catomidiare") ; -- [XXXES] :: lay one over shoulders of another and flog him; strike on shoulders; catomun_Adv = mkAdv "catomun" ; -- [XXXFO] :: over shoulders (for flogging); catomus_M_N = mkN "catomus" ; -- [DBXFS] :: shoulders; (for flogging); catonium_N_N = mkN "catonium" ; -- [XXXCS] :: Lower World; - catoptritis_F_N = mkN "catoptritis" "catoptritidis " feminine ; -- [XXXNO] :: unknown precious stone; (found in Cappadocia L+S); + catoptritis_F_N = mkN "catoptritis" "catoptritidis" feminine ; -- [XXXNO] :: unknown precious stone; (found in Cappadocia L+S); catorchites_A = mkA "catorchites" "catorchites" "catorchites" ; -- [XAXNS] :: fig (wine); [catorchites vinum => wine made of figs]; catta_F_N = mkN "catta" ; -- [XAXFO] :: edible species of bird; unknown species of animal (L+S); cattus_M_N = mkN "cattus" ; -- [EABCM] :: cat; wild cat; kind of trout; siege engine; @@ -9327,33 +9327,33 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); catus_M_N = mkN "catus" ; -- [EABCM] :: cat; wild cat; kind of trout; siege engine; male cat (L+S); - caucalis_F_N = mkN "caucalis" "caucalidis " feminine ; -- [XAXNO] :: umbelliferous plant; + caucalis_F_N = mkN "caucalis" "caucalidis" feminine ; -- [XAXNO] :: umbelliferous plant; caucula_F_N = mkN "caucula" ; -- [DXXES] :: small dish; - cauculator_M_N = mkN "cauculator" "cauculatoris " masculine ; -- [DSXES] :: calculator, reckoner; + cauculator_M_N = mkN "cauculator" "cauculatoris" masculine ; -- [DSXES] :: calculator, reckoner; cauculus_M_N = mkN "cauculus" ; -- [XXXEO] :: pebble; (bladder) stone; piece for reckoning/voting/game; calculation; caucus_M_N = mkN "caucus" ; -- [DXXFS] :: drinking vessel; cruet (Ecc); cauda_F_N = mkN "cauda" ; -- [XAXBO] :: tail (animal); extreme part/tail of anything; penis; train/edge/trail (garment); caudatarius_M_N = mkN "caudatarius" ; -- [FEXFE] :: trainbearer; attendant who carries train (of sovereign/other); caudecus_A = mkA "caudecus" "caudeca" "caudecum" ; -- [DAXFS] :: wooden, made of wood; caudeus_A = mkA "caudeus" "caudea" "caudeum" ; -- [XAXFS] :: wooden, made of wood; - caudex_M_N = mkN "caudex" "caudicis " masculine ; -- [XXXBO] :: trunk of tree; piece/hunk of wood; blockhead; (bound) book; note/account book; + caudex_M_N = mkN "caudex" "caudicis" masculine ; -- [XXXBO] :: trunk of tree; piece/hunk of wood; blockhead; (bound) book; note/account book; caudica_F_N = mkN "caudica" ; -- [XWXFO] :: kind of barge/lighter; dugout canoe (Cal); caudicalis_A = mkA "caudicalis" "caudicalis" "caudicale" ; -- [XAXFO] :: pertaining to/dealing with tree-trunks/logs; employment of log-splitting (L+S); caudicarius_A = mkA "caudicarius" "caudicaria" "caudicarium" ; -- [XWXCO] :: kind of barge/lighter (w/navis); caudicarius_M_N = mkN "caudicarius" ; -- [XWXEO] :: bargeman, lighterman; (esp. those who brought grain from Ostia to Rome (L+S)); - cauitio_F_N = mkN "cauitio" "cauitionis " feminine ; -- [BXXBS] :: bail/pledge/security, undertaking, guarantee; caution/wariness; circumspection; + cauitio_F_N = mkN "cauitio" "cauitionis" feminine ; -- [BXXBS] :: bail/pledge/security, undertaking, guarantee; caution/wariness; circumspection; caula_F_N = mkN "caula" ; -- [XXXCO] :: railing (pl.), lattice barrier; holes, pores, apertures; fold, sheepfold (Ecc); - caulator_M_N = mkN "caulator" "caulatoris " masculine ; -- [XXXCS] :: jester, banterer; quibbler, caviler, sophist, captious critic; + caulator_M_N = mkN "caulator" "caulatoris" masculine ; -- [XXXCS] :: jester, banterer; quibbler, caviler, sophist, captious critic; cauletum_N_N = mkN "cauletum" ; -- [GAXET] :: cabbage-garden; (Erasmus); - caulias_M_N = mkN "caulias" "cauliae " masculine ; -- [XAXNO] :: thing taken/derived form stalk; (as opposed to rhizias - from root); + caulias_M_N = mkN "caulias" "cauliae" masculine ; -- [XAXNO] :: thing taken/derived form stalk; (as opposed to rhizias - from root); cauliculatus_A = mkA "cauliculatus" "cauliculata" "cauliculatum" ; -- [DAXFS] :: having/furnished with a stalk; cauliculus_M_N = mkN "cauliculus" ; -- [XAXCO] :: stalk/stem (small); small cabbage, cabbage sprout; pillar like a stalk/shoot; cauliflorus_A = mkA "cauliflorus" "cauliflora" "cauliflorum" ; -- [GAXEK] :: cauliflower-like; - caulis_M_N = mkN "caulis" "caulis " masculine ; -- [XAXCO] :: stalk/stem; stem of a cabbage/lettuce/etc; cabbage/lettuce; quill; penis; + caulis_M_N = mkN "caulis" "caulis" masculine ; -- [XAXCO] :: stalk/stem; stem of a cabbage/lettuce/etc; cabbage/lettuce; quill; penis; caulla_F_N = mkN "caulla" ; -- [XXXFO] :: railing (pl.), lattice barrier; holes, pores, apertures; caulodes_A = mkA "caulodes" "caulodes" "caulodes" ; -- [XAXNO] :: stalk-like; [~ brassica => kind of cabbage with large leaves]; - cauma_N_N = mkN "cauma" "caumatis " neuter ; -- [DXXFS] :: heat; - caupo_M_N = mkN "caupo" "cauponis " masculine ; -- [DXXCO] :: shopkeeper, salesman, huckster; innkeeper, keeper of a tavern; + cauma_N_N = mkN "cauma" "caumatis" neuter ; -- [DXXFS] :: heat; + caupo_M_N = mkN "caupo" "cauponis" masculine ; -- [DXXCO] :: shopkeeper, salesman, huckster; innkeeper, keeper of a tavern; caupona_F_N = mkN "caupona" ; -- [GXXEK] :: restaurant; cauponaria_F_N = mkN "cauponaria" ; -- [XXXFS] :: female shopkeeper; female innkeeper (Erasmus); cauponarius_M_N = mkN "cauponarius" ; -- [XXXFS] :: shopkeeper; @@ -9367,21 +9367,21 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + causalitas_F_N = mkN "causalitas" "causalitatis" feminine ; -- [FXXES] :: causality; causaliter_Adv = mkAdv "causaliter" ; -- [DLXFS] :: causally; causarie_Adv = mkAdv "causarie" ; -- [DWXFS] :: on account of sickness; [causarie missus est => invalided out of army]; causarius_A = mkA "causarius" "causaria" "causarium" ; -- [XBXCO] :: sick, ill, diseased, unhealthy; [misso ~ => army discharge on health grounds]; causarius_M_N = mkN "causarius" ; -- [XWXCO] :: soldier discharged from army on health/other grounds, invalid; the_sick (pl.); causate_Adv =mkAdv "causate" "causatius" "causatissime" ; -- [XXXNO] :: with good reason; with better reason; with best reasons?; - causatio_F_N = mkN "causatio" "causationis " feminine ; -- [XLXFO] :: plea, excuse; disease (L+S); pretext; apology; + causatio_F_N = mkN "causatio" "causationis" feminine ; -- [XLXFO] :: plea, excuse; disease (L+S); pretext; apology; causativus_A = mkA "causativus" "causativa" "causativum" ; -- [DGXES] :: |accusative (case) (w/causus); first (person) (w/persona); causea_F_N = mkN "causea" ; -- [XXHEO] :: Macedonian type of hat; (white sun hat worn by Roman poor L+S); shelter; causidica_F_N = mkN "causidica" ; -- [DLXFS] :: office of an advocate/lawyer; causidicalis_A = mkA "causidicalis" "causidicalis" "causidicale" ; -- [XLXFO] :: suggestive of/resembling that of law-courts; of/pertaining to an advocate; - causidicatio_F_N = mkN "causidicatio" "causidicationis " feminine ; -- [XLXFO] :: pleading of a case; speech of an advocate/lawyer/barrister; + causidicatio_F_N = mkN "causidicatio" "causidicationis" feminine ; -- [XLXFO] :: pleading of a case; speech of an advocate/lawyer/barrister; causidicatus_M_N = mkN "causidicatus" ; -- [DLXFS] :: forensic oratory, pleading/speech of a lawyer; causidicus_M_N = mkN "causidicus" ; -- [XLXCO] :: advocate, barrister; pleader of causes; causificor_V = mkV "causificari" ; -- [XGXEO] :: allege/offer a reason, put forward a pretext; pretend; @@ -9390,45 +9390,45 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + caustice_F_N = mkN "caustice" "caustices" feminine ; -- [DAXFS] :: caustic plant; (pure Latin scelerata); causticum_N_N = mkN "causticum" ; -- [XBXNO] :: caustic/blistering preparation/medicament; causticus_A = mkA "causticus" "caustica" "causticum" ; -- [XSXNO] :: caustic, corrosive, burning; [~ spuma => lye with which Germans colored hair]; causula_F_N = mkN "causula" ; -- [XLXEO] :: speech/case of a party in a petty lawsuit; petty ground/occasion for action; caute_Adv =mkAdv "caute" "cautius" "cautissime" ; -- [XXXCO] :: cautiously; with security/precautions, without risk; circumspectly, carefully; cautela_F_N = mkN "cautela" ; -- [XXXEO] :: caution, precaution, care, carefulness; security, surety; - cauter_M_N = mkN "cauter" "cauteris " masculine ; -- [DAXES] :: branding iron; wound produced by burning, brand; + cauter_M_N = mkN "cauter" "cauteris" masculine ; -- [DAXES] :: branding iron; wound produced by burning, brand; cauterio_V2 = mkV2 (mkV "cauteriare") ; -- [DXXCS] :: burn/mark with a branding iron, brand; cauterium_N_N = mkN "cauterium" ; -- [XBXEO] :: cauterizing/branding iron, cautery; (used in encaustic/burning-in painting); cauterizo_V2 = mkV2 (mkV "cauterizare") ; -- [DBXFS] :: cauterize, burn with a hot iron; mark with a branding iron, brand; - cauteroma_N_N = mkN "cauteroma" "cauteromatis " neuter ; -- [DXXFS] :: brand, mark produced by a hot iron; - cautes_F_N = mkN "cautes" "cautis " feminine ; -- [XXXBO] :: rough pointed/detached rock, loose stone; rocks (pl.), cliff, crag; reef; + cauteroma_N_N = mkN "cauteroma" "cauteromatis" neuter ; -- [DXXFS] :: brand, mark produced by a hot iron; + cautes_F_N = mkN "cautes" "cautis" feminine ; -- [XXXBO] :: rough pointed/detached rock, loose stone; rocks (pl.), cliff, crag; reef; cautim_Adv = mkAdv "cautim" ; -- [XXXEO] :: cautiously, warily; prudently, with security; - cautio_F_N = mkN "cautio" "cautionis " feminine ; -- [XXXBO] :: |taking of precautions/care; precaution; stipulation, proviso, exception; + cautio_F_N = mkN "cautio" "cautionis" feminine ; -- [XXXBO] :: |taking of precautions/care; precaution; stipulation, proviso, exception; cautionalis_A = mkA "cautionalis" "cautionalis" "cautionale" ; -- [XLXFO] :: relation to a legal cautio (security, bond, guarantee, pledge); cautione_Adv = mkAdv "cautione" ; -- [FXXEE] :: cautiously, warily; prudently, with caution/security; - cautis_F_N = mkN "cautis" "cautis " feminine ; -- [XXXFS] :: rough pointed/detached rock, loose stone; rocks (pl.), cliff, crag; reef; + cautis_F_N = mkN "cautis" "cautis" feminine ; -- [XXXFS] :: rough pointed/detached rock, loose stone; rocks (pl.), cliff, crag; reef; cauto_Adv = mkAdv "cauto" ; -- [FXXEE] :: cautiously; with security/precautions, without risk; circumspectly, carefully; - cautor_M_N = mkN "cautor" "cautoris " masculine ; -- [XXXEO] :: one who takes precautions/who is wary/on guard; one who stands bail/surety; - cautroma_N_N = mkN "cautroma" "cautromatis " neuter ; -- [DXXFS] :: brand, mark produced by a hot iron; + cautor_M_N = mkN "cautor" "cautoris" masculine ; -- [XXXEO] :: one who takes precautions/who is wary/on guard; one who stands bail/surety; + 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); 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; + cavamen_N_N = mkN "cavamen" "cavaminis" neuter ; -- [DXXES] :: cavern, hollow; hollowing out; cavannus_M_N = mkN "cavannus" ; -- [DAXFS] :: nightowl; cavaticus_A = mkA "cavaticus" "cavatica" "cavaticum" ; -- [XXXNO] :: of/belonging to/born in/living in caves; - 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; + 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; 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; + 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"; @@ -9441,49 +9441,49 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat caviarum_N_N = mkN "caviarum" ; -- [GXXEK] :: caviar; cavilla_F_N = mkN "cavilla" ; -- [XXXFO] :: jesting, banter, raillery, scoffing; cavillabundus_A = mkA "cavillabundus" "cavillabunda" "cavillabundum" ; -- [XXXFS] :: seeking for jesting/raillery/scoffing; - cavillatio_F_N = mkN "cavillatio" "cavillationis " feminine ; -- [XXXCO] :: raillery/banter/badinage, jeering/scoffing; sophistry, quibbling, captiousness; - cavillator_M_N = mkN "cavillator" "cavillatoris " masculine ; -- [XXXDO] :: jester, banterer; quibbler, caviler, sophist, captious critic; - cavillatrix_F_N = mkN "cavillatrix" "cavillatricis " feminine ; -- [XXXEO] :: quibbler (female), captious critic, sophist; sophistry; + cavillatio_F_N = mkN "cavillatio" "cavillationis" feminine ; -- [XXXCO] :: raillery/banter/badinage, jeering/scoffing; sophistry, quibbling, captiousness; + cavillator_M_N = mkN "cavillator" "cavillatoris" masculine ; -- [XXXDO] :: jester, banterer; quibbler, caviler, sophist, captious critic; + cavillatrix_F_N = mkN "cavillatrix" "cavillatricis" feminine ; -- [XXXEO] :: quibbler (female), captious critic, sophist; sophistry; cavillatus_M_N = mkN "cavillatus" ; -- [XXXFO] :: raillery; banter, good-natured ridicule; cavillor_V = mkV "cavillari" ; -- [XXXCO] :: jest, banter; make fun of, satirize, mock; use sophistry, quibble, cavil (at); cavillosus_A = mkA "cavillosus" "cavillosa" "cavillosum" ; -- [DXXFS] :: full of raillery/irony; cavillum_N_N = mkN "cavillum" ; -- [XXXEO] :: jesting, banter, raillery, scoffing; cavillus_M_N = mkN "cavillus" ; -- [XXXFO] :: jesting, banter; cavo_V2 = mkV2 (mkV "cavare") ; -- [XTXBO] :: hollow out, make concave/hollow; excavate; cut/pierce through; carve in relief; - cavositas_F_N = mkN "cavositas" "cavositatis " feminine ; -- [DXXES] :: hollow, cavity, hole; + cavositas_F_N = mkN "cavositas" "cavositatis" feminine ; -- [DXXES] :: hollow, cavity, hole; cavum_N_N = mkN "cavum" ; -- [XXXBO] :: hole, cavity, depression, pit, opening; cave, burrow; enclosed space; aperture; cavus_A = mkA "cavus" "cava" "cavum" ; -- [XXXAO] :: |sunken; deep, having deep channel; tubular; having cavity inside (concealing); 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); + 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); + cedris_F_N = mkN "cedris" "cedridis" feminine ; -- [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); + 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); celamentum_N_N = mkN "celamentum" ; -- [EXXEM] :: secret; concealment; celandum_N_N = mkN "celandum" ; -- [EBBEM] :: privy parts (pl.), privates; celate_Adv = mkAdv "celate" ; -- [DXXFS] :: secretly; privately; celatim_Adv = mkAdv "celatim" ; -- [XXXFO] :: secretly; privately; - celator_M_N = mkN "celator" "celatoris " masculine ; -- [XXXFO] :: one who conceals/keeps secrets; concealer/hider; + 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; 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; + 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; + 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; celer_A = mkA "celer" ; -- [XXXAO] :: swift, quick, agile, rapid, speedy, fast; rash, hasty, hurried; lively; early; @@ -9491,22 +9491,22 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; celeripes_A = mkA "celeripes" "celeripedis"; -- [XXXFO] :: swift-footed; swift of foot; - celeritas_F_N = mkN "celeritas" "celeritatis " feminine ; -- [XXXBO] :: speed, quickness, rapidity; speed of action, dispatch; haste; early date; + celeritas_F_N = mkN "celeritas" "celeritatis" feminine ; -- [XXXBO] :: speed, quickness, rapidity; speed of action, dispatch; haste; early date; celeriter_Adv =mkAdv "celeriter" "celerius" "celerrime" ; -- [XXXCO] :: quickly/rapidly/speedily; hastily; soon/at once/early moment; in short period; - celeritudo_F_N = mkN "celeritudo" "celeritudinis " feminine ; -- [XXXFO] :: speed; swiftness; + celeritudo_F_N = mkN "celeritudo" "celeritudinis" feminine ; -- [XXXFO] :: speed; swiftness; celeriuscule_Adv = mkAdv "celeriuscule" ; -- [XXXFO] :: rather rapidly; somewhat quickly; 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; + 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; 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; + 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; 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); + 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); - celeusma_N_N = mkN "celeusma" "celeusmatis " neuter ; -- [XWXES] :: call of bosun giving time to rowers; song, shout (Ecc); + celeusma_N_N = mkN "celeusma" "celeusmatis" neuter ; -- [XWXES] :: call of bosun giving time to rowers; song, shout (Ecc); celia_F_N = mkN "celia" ; -- [XXSES] :: kind of beer (made in Spain); cella_F_N = mkN "cella" ; -- [EEXBB] :: |cell; monastery; cellararia_F_N = mkN "cellararia" ; -- [FXXEZ] :: female cellar-keeper?; (feminine of cellerarius); @@ -9518,7 +9518,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cellarium_N_N = mkN "cellarium" ; -- [XXXFO] :: store-room; larder; cellar; cellarius_A = mkA "cellarius" "cellaria" "cellarium" ; -- [XXXEO] :: relating to/connected with a store-room; cellarius_M_N = mkN "cellarius" ; -- [XXXCO] :: steward, butler, cellarer; keeper of a larder/cellar/storeroom; storekeeper; - cellatio_F_N = mkN "cellatio" "cellationis " feminine ; -- [XXXFO] :: series of store-rooms; + cellatio_F_N = mkN "cellatio" "cellationis" feminine ; -- [XXXFO] :: series of store-rooms; celleraria_F_N = mkN "celleraria" ; -- [FEXFM] :: office of cellarer/store(s)-keeper; cellerarissa_F_N = mkN "cellerarissa" ; -- [FEXFM] :: female cellarer/store-keeper; (monastic); cellerarius_M_N = mkN "cellerarius" ; -- [EXXEE] :: steward, butler, cellarer; keeper of a larder/cellar/storeroom; storekeeper; @@ -9529,26 +9529,26 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cellulanus_M_N = mkN "cellulanus" ; -- [DXXFS] :: hermit; recluse; cellularis_A = mkA "cellularis" "cellularis" "cellulare" ; -- [GSXEK] :: cellular; cellulosa_F_N = mkN "cellulosa" ; -- [GXXEK] :: cellulose; - celo_M_N = mkN "celo" "celonis " masculine ; -- [XAXFO] :: stallion; + celo_M_N = mkN "celo" "celonis" masculine ; -- [XAXFO] :: stallion; celo_V2 = mkV2 (mkV "celare") ; -- [XXXAO] :: conceal, hide, keep secret; disguise; keep in dark/in ignorance; shield; celocla_F_N = mkN "celocla" ; -- [XWXFO] :: small boat; celocula_F_N = mkN "celocula" ; -- [XWXFO] :: small boat; celox_A = mkA "celox" "celocis"; -- [BXXCS] :: fast, rapid, swift, fleet; (classical mostly applied to boats); - celox_F_N = mkN "celox" "celocis " feminine ; -- [XWXCO] :: cutter, yacht, light/fast boat; packet boat; + celox_F_N = mkN "celox" "celocis" feminine ; -- [XWXCO] :: cutter, yacht, light/fast boat; packet boat; celse_Adv =mkAdv "celse" "celsius" "celsissime" ; -- [XXXFS] :: high; higher, to a greater height; most proudly/prominently/lofty; - celsitudo_F_N = mkN "celsitudo" "celsitudinis " feminine ; -- [XXXEO] :: height, tallness; lofty carriage of body (L+S); (late Latin) Your Highness; + celsitudo_F_N = mkN "celsitudo" "celsitudinis" feminine ; -- [XXXEO] :: height, tallness; lofty carriage of body (L+S); (late Latin) Your Highness; celsus_A = mkA "celsus" "celsa" "celsum" ; -- [XXXAO] :: high, lofty, tall; haughty; arrogant/proud; prominent, elevated; erect; noble; - celthis_F_N = mkN "celthis" "celthis " feminine ; -- [XAANO] :: African species of lotus; - celtis_F_N = mkN "celtis" "celtis " feminine ; -- [ETXEE] :: chisel; tool; + celthis_F_N = mkN "celthis" "celthis" feminine ; -- [XAANO] :: African species of lotus; + celtis_F_N = mkN "celtis" "celtis" feminine ; -- [ETXEE] :: chisel; tool; celula_F_N = mkN "celula" ; -- [EEXDB] :: cell; monastery; celum_N_N = mkN "celum" ; -- [XTXCS] :: chisel; engraving tool; burin; - celuma_N_N = mkN "celuma" "celumatis " neuter ; -- [EXXFE] :: call of bo'sun giving time to rowers; song, shout (Ecc); + celuma_N_N = mkN "celuma" "celumatis" neuter ; -- [EXXFE] :: call of bo'sun giving time to rowers; song, shout (Ecc); cementarius_M_N = mkN "cementarius" ; -- [ETXEW] :: worker in concrete; stone cutter, mason, builder of walls (L+S); cementerium_N_N = mkN "cementerium" ; -- [FXXEM] :: cemetery; cementicium_N_N = mkN "cementicium" ; -- [XTXFO] :: concrete (undressed stones/rubble, lime and sand); unhewn/quarried stone (L+S); cementicius_A = mkA "cementicius" "cementicia" "cementicium" ; -- [XTXCO] :: of concrete (undressed stones/rubble, lime and sand); of unhewn stones (L+S); cementum_N_N = mkN "cementum" ; -- [XXXCO] :: small stones, rubble (for concrete); quarry stones (for walls) (L+S); chips; - cemos_F_N = mkN "cemos" "cemi " feminine ; -- [XAXNO] :: unidentified plant; + cemos_F_N = mkN "cemos" "cemi" feminine ; -- [XAXNO] :: unidentified plant; cena_F_N = mkN "cena" ; -- [XXXBO] :: dinner/supper, principal Roman meal (evening); course; meal; company at dinner; cenacularia_F_N = mkN "cenacularia" ; -- [XXXFO] :: business of renting attic lodgings; leasing of attic; cenacularius_A = mkA "cenacularius" "cenacularia" "cenacularium" ; -- [XXXFS] :: of/pertaining to a garret/attic; @@ -9558,41 +9558,41 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cenalis_A = mkA "cenalis" "cenalis" "cenale" ; -- [XXXFO] :: of/pertaining to (a) dinner; cenaticum_N_N = mkN "cenaticum" ; -- [DWXES] :: money given to soldiers instead of food, subsistence allowance; cenaticus_A = mkA "cenaticus" "cenatica" "cenaticum" ; -- [XXXFO] :: of/pertaining to (a) dinner; - cenatio_F_N = mkN "cenatio" "cenationis " feminine ; -- [XXXCO] :: dining-room; dining hall; + cenatio_F_N = mkN "cenatio" "cenationis" feminine ; -- [XXXCO] :: dining-room; dining hall; cenatiuncula_F_N = mkN "cenatiuncula" ; -- [XXXFO] :: small dining-room; - cenator_M_N = mkN "cenator" "cenatoris " masculine ; -- [DXXFS] :: diner; dinner guest; + 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; - cenchritis_M_N = mkN "cenchritis" "cenchritis " masculine ; -- [XXXNO] :: precious stone; - cenchros_M_N = mkN "cenchros" "cenchri " masculine ; -- [XXXNO] :: small diamond; + cenchris_F_N = mkN "cenchris" "cenchridis" feminine ; -- [XAXNO] :: species of hawk; (probably kestrel); + cenchris_M_N = mkN "cenchris" "cenchris" masculine ; -- [XAXNO] :: kind of snake; + cenchritis_M_N = mkN "cenchritis" "cenchritis" masculine ; -- [XXXNO] :: precious stone; + cenchros_M_N = mkN "cenchros" "cenchri" masculine ; -- [XXXNO] :: small diamond; cenito_V = mkV "cenitare" ; -- [XXXCO] :: dine/eat habitually (in a particular place/manner); have dinner, dine (often); ceno_V = mkV "cenare" ; -- [XXXBO] :: dine, eat dinner/supper; have dinner with; dine on, make a meal of; cenobium_N_N = mkN "cenobium" ; -- [FEXEM] :: monastery; cenodoxia_F_N = mkN "cenodoxia" ; -- [FXXFE] :: vainglory; cenotaphium_N_N = mkN "cenotaphium" ; -- [XEXES] :: cenotaph, empty tomb/monument to one whose body is elsewhere; (tumulus inanis); censeo_V2 = mkV2 (mkV "censere") ; -- [XXXAO] :: think/suppose, judge; recommend; decree, vote, determine; count/reckon; assess; - censio_F_N = mkN "censio" "censionis " feminine ; -- [XLXCO] :: assessing/rating of a census; punishment by a censor; recommendation/decision; - censitio_F_N = mkN "censitio" "censitionis " feminine ; -- [DLXES] :: declaration of will, command; tax, taxing, taxation, tribute; - censitor_M_N = mkN "censitor" "censitoris " masculine ; -- [XLXEO] :: registrar/taxation official in a Roman province/presiding over rating citizens; + censio_F_N = mkN "censio" "censionis" feminine ; -- [XLXCO] :: assessing/rating of a census; punishment by a censor; recommendation/decision; + censitio_F_N = mkN "censitio" "censitionis" feminine ; -- [DLXES] :: declaration of will, command; tax, taxing, taxation, tribute; + censitor_M_N = mkN "censitor" "censitoris" masculine ; -- [XLXEO] :: registrar/taxation official in a Roman province/presiding over rating citizens; censitus_A = mkA "censitus" "censita" "censitum" ; -- [DLXCS] :: registered; assessed. rated, estimated; judged; taxed; (VPAR censeo); - censor_M_N = mkN "censor" "censoris " masculine ; -- [XLXBO] :: censor, magistrate for registration/census; censurer, critic (behavior/books); + censor_M_N = mkN "censor" "censoris" masculine ; -- [XLXBO] :: censor, magistrate for registration/census; censurer, critic (behavior/books); censoreus_A = mkA "censoreus" "censorea" "censoreum" ; -- [GEXFZ] :: censorious; critical (JFW); censorius_A = mkA "censorius" "censoria" "censorium" ; -- [XLXBO] :: of/belonging to/dealt with by/having been a censor, censorial; austere, moral; censualis_A = mkA "censualis" "censualis" "censuale" ; -- [XLXEO] :: of/connected with census of citizens; - censualis_M_N = mkN "censualis" "censualis " masculine ; -- [XLXES] :: those who make out censor's lists/rolls; censor's lists/rolls; + censualis_M_N = mkN "censualis" "censualis" masculine ; -- [XLXES] :: those who make out censor's lists/rolls; censor's lists/rolls; censum_N_N = mkN "censum" ; -- [XLXFS] :: estimate of property value by census/censor; ones property/wealth/fortune; censura_F_N = mkN "censura" ; -- [EEXEE] :: |blame, censure; ecclesiastical punishment; censuratus_A = mkA "censuratus" "censurata" "censuratum" ; -- [EEXEE] :: censured, under censure; census_A = mkA "census" "censa" "censum" ; -- [XLXES] :: registered; assessed. rated, estimated; judged; taxed; (VPAR censeo); - census_M_N = mkN "census" "census " masculine ; -- [XLXAO] :: census/registration/roll (5 yr.); wealth/property; estate valuation/appraisal; + census_M_N = mkN "census" "census" masculine ; -- [XLXAO] :: census/registration/roll (5 yr.); wealth/property; estate valuation/appraisal; centaureum_N_N = mkN "centaureum" ; -- [XAXCO] :: centaury (herb); (of medicinal properties discovered by centaur Chiron); centauria_F_N = mkN "centauria" ; -- [DAXCS] :: centaury (herb); (of medicinal properties discovered by centaur Chiron); - centaurion_N_N = mkN "centaurion" "centaurii " neuter ; -- [XAXCO] :: centaury (herb); (of medicinal properties discovered by centaur Chiron); - centauris_F_N = mkN "centauris" "centauridis " feminine ; -- [XAXNO] :: species of centaury (herb); (properties discovered by centaur Chiron); + centaurion_N_N = mkN "centaurion" "centaurii" neuter ; -- [XAXCO] :: centaury (herb); (of medicinal properties discovered by centaur Chiron); + centauris_F_N = mkN "centauris" "centauridis" feminine ; -- [XAXNO] :: species of centaury (herb); (properties discovered by centaur Chiron); centaurium_N_N = mkN "centaurium" ; -- [XAXCO] :: centaury (herb); (of medicinal properties discovered by centaur Chiron); centaurus_M_N = mkN "centaurus" ; -- [XYXCO] :: centaur, a mythical creature, half man and half horse; name of constellation; centena_F_N = mkN "centena" ; -- [DLXFS] :: dignity in imperial court; @@ -9615,17 +9615,17 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat centimetrum_N_N = mkN "centimetrum" ; -- [GXXEK] :: centimeter; centinodius_A = mkA "centinodius" "centinodia" "centinodium" ; -- [DAXFS] :: with a hundred knots; [~ herba => unknown plant]; centipeda_F_N = mkN "centipeda" ; -- [XAXNO] :: centipede; - centipellio_F_N = mkN "centipellio" "centipellionis " feminine ; -- [XAXNO] :: third stomach of a ruminant, psalterium, iomasum, manyplies; + centipellio_F_N = mkN "centipellio" "centipellionis" feminine ; -- [XAXNO] :: third stomach of a ruminant, psalterium, iomasum, manyplies; centipes_A = mkA "centipes" "centipedis"; -- [XAXNS] :: hundred-footed; (e.g., like a centipede); - centipes_M_N = mkN "centipes" "centipedis " masculine ; -- [XAXNO] :: centipede; + centipes_M_N = mkN "centipes" "centipedis" masculine ; -- [XAXNO] :: centipede; centiplex_A = mkA "centiplex" "centiplicis"; -- [XXXFS] :: hundredfold; centiplicato_Adv = mkAdv "centiplicato" ; -- [XXXNO] :: at one hundred times the price; - cento_M_N = mkN "cento" "centonis " masculine ; -- [XXXCO] :: patchwork quilt, blanket or curtain made of old garments sewn together; rags; + cento_M_N = mkN "cento" "centonis" masculine ; -- [XXXCO] :: patchwork quilt, blanket or curtain made of old garments sewn together; rags; centoculus_A = mkA "centoculus" "centocula" "centoculum" ; -- [DYXFS] :: hundred-eyed; (e.g., Argus); with a multitude of eyes; centonarius_A = mkA "centonarius" "centonaria" "centonarium" ; -- [DXXFS] :: of/pertaining to patchwork/rags; centonarius_M_N = mkN "centonarius" ; -- [XXXEO] :: fireman using mats to extinguish fires; (late) maker of patchwork, rag dealer; centralis_A = mkA "centralis" "centralis" "centrale" ; -- [XXXNO] :: central; centrally located; in middle/center; - centralizatio_F_N = mkN "centralizatio" "centralizationis " feminine ; -- [GXXEK] :: centralization; + centralizatio_F_N = mkN "centralizatio" "centralizationis" feminine ; -- [GXXEK] :: centralization; centralizatorius_A = mkA "centralizatorius" "centralizatoria" "centralizatorium" ; -- [GXXEK] :: centralizing; centralizo_V = mkV "centralizare" ; -- [GXXEK] :: centralize; centratus_A = mkA "centratus" "centrata" "centratum" ; -- [DXXFS] :: central; in middle/center; @@ -9656,23 +9656,23 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat centuria_F_N = mkN "centuria" ; -- [XWXBO] :: century, company of 60-100 men in legion; voting unit; land unit (200 jugera); centurialis_A = mkA "centurialis" "centurialis" "centuriale" ; -- [XXXEO] :: of/belonging to given centuria for voting; boundary marker of land centuria; centuriatim_Adv = mkAdv "centuriatim" ; -- [XXXDO] :: by centuries; (citizens for voting/soldiers in companies); - centuriatio_F_N = mkN "centuriatio" "centuriationis " feminine ; -- [XAXEO] :: division of land into centuriae (about 100 acre plots); + centuriatio_F_N = mkN "centuriatio" "centuriationis" feminine ; -- [XAXEO] :: division of land into centuriae (about 100 acre plots); centuriato_Adv = mkAdv "centuriato" ; -- [XXXFO] :: by centuries; (citizens for voting/soldiers in companies); centuriatus_A = mkA "centuriatus" "centuriata" "centuriatum" ; -- [XLXCO] :: voting in centuriae; divided into centuriae; [comitia ~ => Roman assembly]; - centuriatus_M_N = mkN "centuriatus" "centuriatus " masculine ; -- [XWXEO] :: office of centurion; division into centuriae (land/voting); - centurio_M_N = mkN "centurio" "centurionis " masculine ; -- [XWXBO] :: centurion, captain/commander of a century/company; + centuriatus_M_N = mkN "centuriatus" "centuriatus" masculine ; -- [XWXEO] :: office of centurion; division into centuriae (land/voting); + centurio_M_N = mkN "centurio" "centurionis" masculine ; -- [XWXBO] :: centurion, captain/commander of a century/company; centurio_V2 = mkV2 (mkV "centuriare") ; -- [XWXCO] :: arrange/assign (soldiers) in military centuries; divide land into centuriae; - centurionatus_M_N = mkN "centurionatus" "centurionatus " masculine ; -- [XLXES] :: |division into centuriae (land/voting); + centurionatus_M_N = mkN "centurionatus" "centurionatus" masculine ; -- [XLXES] :: |division into centuriae (land/voting); centurionicus_A = mkA "centurionicus" "centurionica" "centurionicum" ; -- [XWXIO] :: in capacity of a centurion; centurionus_M_N = mkN "centurionus" ; -- [BWXEO] :: centurion, captain of a century; - centussis_M_N = mkN "centussis" "centussis " masculine ; -- [XLXDO] :: sum of 100 asses, a hundred; + centussis_M_N = mkN "centussis" "centussis" masculine ; -- [XLXDO] :: sum of 100 asses, a hundred; cenula_F_N = mkN "cenula" ; -- [XXXCO] :: little dinner, supper; cenum_N_N = mkN "cenum" ; -- [XXXFO] :: mud, mire, filth, slime, dirt, uncleanness; (of persons) scum/filth; cepa_F_N = mkN "cepa" ; -- [XAXCO] :: onion (Allium capa); (used as term of abuse); cepaea_F_N = mkN "cepaea" ; -- [XAXNO] :: herb (unidentified); plant like portulacca, portulacca-leaved sedum (L+S); ceparius_M_N = mkN "ceparius" ; -- [XAXFO] :: grower of onions; trader in onions (L+S); cepaticus_A = mkA "cepaticus" "cepatica" "cepaticum" ; -- [XXXFO] :: resembling an onion; - cepe_N_N = mkN "cepe" "cepis " neuter ; -- [XAXCO] :: onion (Allium capa); + cepe_N_N = mkN "cepe" "cepis" neuter ; -- [XAXCO] :: onion (Allium capa); cepetum_N_N = mkN "cepetum" ; -- [XAXFO] :: onion bed; cephalaea_F_N = mkN "cephalaea" ; -- [XBXNO] :: persistent/lasting headache; cephalaeota_M_N = mkN "cephalaeota" ; -- [DLXFS] :: collector of capitation/poll tax; @@ -9683,15 +9683,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cephalargicus_A = mkA "cephalargicus" "cephalargica" "cephalargicum" ; -- [DBXFS] :: sick with a headache; cephalicus_A = mkA "cephalicus" "cephalica" "cephalicum" ; -- [XBXFO] :: for the head, of/relating to head, head-; cephalicus_M_N = mkN "cephalicus" ; -- [FDXFE] :: musical note in Gregorian chant; - cephalo_M_N = mkN "cephalo" "cephalonis " masculine ; -- [XAXFS] :: palm tree; + cephalo_M_N = mkN "cephalo" "cephalonis" masculine ; -- [XAXFS] :: palm tree; cephalotos_A = mkA "cephalotos" "cephalote" "cephaloton" ; -- [XXXFS] :: having a head; - cephen_M_N = mkN "cephen" "cephenis " masculine ; -- [XAXNS] :: drones (pl.) (in a swarm/hive of bees); + cephen_M_N = mkN "cephen" "cephenis" masculine ; -- [XAXNS] :: drones (pl.) (in a swarm/hive of bees); cephus_M_N = mkN "cephus" ; -- [FXXCL] :: bowl, goblet, cup; communion cup; cepina_F_N = mkN "cepina" ; -- [XAXFO] :: onion bed/field; - cepitis_F_N = mkN "cepitis" "cepitidis " feminine ; -- [XXXNO] :: kind of veined gem; - cepolartitis_F_N = mkN "cepolartitis" "cepolartitidis " feminine ; -- [XXXNO] :: kind of veined gem; + cepitis_F_N = mkN "cepitis" "cepitidis" feminine ; -- [XXXNO] :: kind of veined gem; + cepolartitis_F_N = mkN "cepolartitis" "cepolartitidis" feminine ; -- [XXXNO] :: kind of veined gem; cepolendrum_N_N = mkN "cepolendrum" ; -- [XXXFO] :: imaginary condiment; - ceponis_F_N = mkN "ceponis" "ceponidis " feminine ; -- [XXXNS] :: precious stone (unknown); + ceponis_F_N = mkN "ceponis" "ceponidis" feminine ; -- [XXXNS] :: precious stone (unknown); ceposus_A = mkA "ceposus" "ceposa" "ceposum" ; -- [XAXFO] :: abounding in onions; full of onions; cepotafiolum_N_N = mkN "cepotafiolum" ; -- [XXXIO] :: small garden tomb; cepotafium_N_N = mkN "cepotafium" ; -- [XXXIO] :: garden tomb; @@ -9703,53 +9703,53 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cepulla_F_N = mkN "cepulla" ; -- [XAXFS] :: onion bed/field; cepuricus_A = mkA "cepuricus" "cepurica" "cepuricum" ; -- [DAXFS] :: pertaining to gardening; cera_F_N = mkN "cera" ; -- [XXXBO] :: wax, beeswax; honeycomb; wax-covered writing tablet, letter; wax image/seal; - cerachates_M_N = mkN "cerachates" "cerachatae " masculine ; -- [XXXNO] :: beeswax-colored agate, wax-agate; - cerais_F_N = mkN "cerais" "ceraidis " feminine ; -- [XAXNO] :: wild radish; - ceramitis_F_N = mkN "ceramitis" "ceramitidis " feminine ; -- [XXXNO] :: kind of gem; + cerachates_M_N = mkN "cerachates" "cerachatae" masculine ; -- [XXXNO] :: beeswax-colored agate, wax-agate; + cerais_F_N = mkN "cerais" "ceraidis" feminine ; -- [XAXNO] :: wild radish; + ceramitis_F_N = mkN "ceramitis" "ceramitidis" feminine ; -- [XXXNO] :: kind of gem; ceraria_F_N = mkN "ceraria" ; -- [BXXFS] :: woman who makes wax lights?; cerarium_N_N = mkN "cerarium" ; -- [XLXFO] :: charge/tax for sealing/affixing wax seal to documents, wax-money/('stamp tax'); cerarius_A = mkA "cerarius" "ceraria" "cerarium" ; -- [XXXIO] :: of/concerned with (wax-covered) writing tablets; of a worker in wax; cerarius_M_N = mkN "cerarius" ; -- [XXXFS] :: dealer in wax; writer on tablets (wax-covered); - ceras_N_N = mkN "ceras" "ceratis " neuter ; -- [DAXFS] :: kind of wild parsnip; [Hesperion ~ => mountain on west coast of Lybia]; + ceras_N_N = mkN "ceras" "ceratis" neuter ; -- [DAXFS] :: kind of wild parsnip; [Hesperion ~ => mountain on west coast of Lybia]; cerasinus_A = mkA "cerasinus" "cerasina" "cerasinum" ; -- [XXXFO] :: cherry-colored; cerasium_N_N = mkN "cerasium" ; -- [XAXEO] :: cherry; cherry tree; - cerastes_M_N = mkN "cerastes" "cerastae " masculine ; -- [XAXCO] :: horned snake (Cerastes cornulus); insect parasitic on figs; horned men of Crete; + cerastes_M_N = mkN "cerastes" "cerastae" masculine ; -- [XAXCO] :: horned snake (Cerastes cornulus); insect parasitic on figs; horned men of Crete; cerasum_N_N = mkN "cerasum" ; -- [XXXCO] :: cherry-tree/bark/wood; cherry; cerasus_F_N = mkN "cerasus" ; -- [XXXCO] :: cherry-tree/bark/wood; cherry; ceratia_F_N = mkN "ceratia" ; -- [XAXNO] :: plant (unidentified); plant with a single leaf (L+S); - ceratias_M_N = mkN "ceratias" "ceratiae " masculine ; -- [XAXNO] :: horn-shaped comet; + ceratias_M_N = mkN "ceratias" "ceratiae" masculine ; -- [XAXNO] :: horn-shaped comet; ceratina_F_N = mkN "ceratina" ; -- [XSXEO] :: horn fallacy; (you have not lost your horns, therefore you have horns); - ceratitis_F_N = mkN "ceratitis" "ceratitidis " feminine ; -- [XAXNO] :: horned poppy (Glaucium flavum); + ceratitis_F_N = mkN "ceratitis" "ceratitidis" feminine ; -- [XAXNO] :: horned poppy (Glaucium flavum); ceratium_N_N = mkN "ceratium" ; -- [XSHFO] :: Greek weight corresponding to Latin siliqua/2 calculi; ceratoides_A = mkA "ceratoides" "ceratoides" "ceratoides" ; -- [XBXFO] :: horn-like; (of outer coat of eye/sclerotic/white); ceratorium_N_N = mkN "ceratorium" ; -- [DBXES] :: ointment made with oil and wax, wax-salve, wax-plaster, cerate; ceratum_N_N = mkN "ceratum" ; -- [XBXDO] :: ointment made with oil and wax, wax-salve, wax-plaster, cerate; ceratura_F_N = mkN "ceratura" ; -- [XXXFO] :: coating with wax; smearing over/covering with wax; ceratus_A = mkA "ceratus" "cerata" "ceratum" ; -- [XXXDO] :: waxed, wax, of wax, wax colored; coated/fastened/caulked with wax; pliant, soft; - ceraules_M_N = mkN "ceraules" "ceraulae " masculine ; -- [XDXEO] :: horn-blower; + ceraules_M_N = mkN "ceraules" "ceraulae" masculine ; -- [XDXEO] :: horn-blower; ceraunium_N_N = mkN "ceraunium" ; -- [XXXES] :: precious stone; onyx?; meteoric stone?; ceraunius_A = mkA "ceraunius" "ceraunia" "ceraunium" ; -- [XXXCO] :: connected with thunderbolts/thunder/lightning; (varieties of plant/minerals); ceraunus_M_N = mkN "ceraunus" ; -- [XXXES] :: precious stone; onyx?; (meteoric stone?); - cerceris_F_N = mkN "cerceris" "cerceriis " feminine ; -- [XAXFO] :: aquatic bird (unidentified); - cercholopis_M_N = mkN "cercholopis" "cercholopis " masculine ; -- [XAXFS] :: monkey having a tuft of hair at end of its tail; - cercis_F_N = mkN "cercis" "cercidis " feminine ; -- [XBXFO] :: radius (arm bone); - cercitis_F_N = mkN "cercitis" "cercitidis " feminine ; -- [XAXFO] :: variety of olive; species of olive tree; + cerceris_F_N = mkN "cerceris" "cerceriis" feminine ; -- [XAXFO] :: aquatic bird (unidentified); + cercholopis_M_N = mkN "cercholopis" "cercholopis" masculine ; -- [XAXFS] :: monkey having a tuft of hair at end of its tail; + cercis_F_N = mkN "cercis" "cercidis" feminine ; -- [XBXFO] :: radius (arm bone); + cercitis_F_N = mkN "cercitis" "cercitidis" feminine ; -- [XAXFO] :: variety of olive; species of olive tree; cercius_M_N = mkN "cercius" ; -- [XSXCO] :: wind between north and west; WNW wind (L+S); (in Gallia Narbonensis); - cercolopis_M_N = mkN "cercolopis" "cercolopis " masculine ; -- [XAXFS] :: monkey having a tuft of hair at end of its tail; - cercopithecon_N_N = mkN "cercopithecon" "cercopitheci " neuter ; -- [XAEEO] :: long-tailed monkey; (sacred to Egyptians L+S); + cercolopis_M_N = mkN "cercolopis" "cercolopis" masculine ; -- [XAXFS] :: monkey having a tuft of hair at end of its tail; + cercopithecon_N_N = mkN "cercopithecon" "cercopitheci" neuter ; -- [XAEEO] :: long-tailed monkey; (sacred to Egyptians L+S); cercopithecus_M_N = mkN "cercopithecus" ; -- [XAEEO] :: long-tailed monkey; (sacred to Egyptians L+S); - cercops_M_N = mkN "cercops" "cercopis " masculine ; -- [XAXEO] :: long-tailed monkey; money-grubber; inhabitants of Pithecusae changed to monkeys; + cercops_M_N = mkN "cercops" "cercopis" masculine ; -- [XAXEO] :: long-tailed monkey; money-grubber; inhabitants of Pithecusae changed to monkeys; cercurus_M_N = mkN "cercurus" ; -- [XWXCO] :: fast light vessel; sea fish found among rocks; cercyrus_M_N = mkN "cercyrus" ; -- [XWXCO] :: fast light vessel; sea fish found among rocks; - cerdo_M_N = mkN "cerdo" "cerdonis " masculine ; -- [XTXDO] :: artisan; craftsman; cobbler (L+S); proper name especially of slaves; + cerdo_M_N = mkN "cerdo" "cerdonis" masculine ; -- [XTXDO] :: artisan; craftsman; cobbler (L+S); proper name especially of slaves; cerea_F_N = mkN "cerea" ; -- [XXSNO] :: beverage made from grain; (beer?); Spanish drink from grain (L+S); - cerebellare_N_N = mkN "cerebellare" "cerebellaris " neuter ; -- [XXXFS] :: brain-covering; head-covering; + cerebellare_N_N = mkN "cerebellare" "cerebellaris" neuter ; -- [XXXFS] :: brain-covering; head-covering; cerebellum_N_N = mkN "cerebellum" ; -- [XBXDO] :: brain; seat of senses/intellect; little brain (L+S); cerebralis_A = mkA "cerebralis" "cerebralis" "cerebrale" ; -- [GBXEK] :: cerebral; cerebrosus_A = mkA "cerebrosus" "cerebrosa" "cerebrosum" ; -- [XXXEO] :: liable to be affected with passion; enraged/hot-headed/passionate; hare-brained; cerebrum_N_N = mkN "cerebrum" ; -- [XXXCO] :: brain; top of the head, skull; bud; seat of senses/intelligence; anger/wrath; ceremonia_F_N = mkN "ceremonia" ; -- [FEXCS] :: ceremony; sacred rite/ritual/usage; holy dread, reverence, worship; sanctity; - ceremonial_N_N = mkN "ceremonial" "ceremonialis " neuter ; -- [FEXFE] :: ceremonial, directory/set/series of ceremonies/rituals/rites; + ceremonial_N_N = mkN "ceremonial" "ceremonialis" neuter ; -- [FEXFE] :: ceremonial, directory/set/series of ceremonies/rituals/rites; ceremonialis_A = mkA "ceremonialis" "ceremonialis" "ceremoniale" ; -- [FEXFS] :: ceremonial; pertaining to a religious/sacred rite/ritual/usage; ceremonior_V = mkV "ceremoniari" ; -- [FEXES] :: treat with due ceremony; worship; ceremoniosus_A = mkA "ceremoniosus" "ceremoniosa" "ceremoniosum" ; -- [FEXFS] :: pertaining/devoted to religious/sacred rite/ritual/usage; @@ -9762,24 +9762,24 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat ceriaria_F_N = mkN "ceriaria" ; -- [XXXFO] :: female worker (of unknown function); cerifico_V = mkV "cerificare" ; -- [XAXNS] :: make wax; spawn (of purple-fish) (make wax/prepare slimy nest for eggs); cerimonia_F_N = mkN "cerimonia" ; -- [DEXCS] :: ceremony; sacred rite/ritual/usage; holy dread, reverence, worship; sanctity; - cerimonial_N_N = mkN "cerimonial" "cerimonialis " neuter ; -- [EEXFE] :: ceremonial, directory/set/series of ceremonies/rituals/rites; + cerimonial_N_N = mkN "cerimonial" "cerimonialis" neuter ; -- [EEXFE] :: ceremonial, directory/set/series of ceremonies/rituals/rites; cerimonialis_A = mkA "cerimonialis" "cerimonialis" "cerimoniale" ; -- [DEXFS] :: ceremonial; pertaining to a religious/sacred rite/ritual/usage; cerimonior_V = mkV "cerimoniari" ; -- [DEXES] :: treat with due ceremony; worship; cerimoniosus_A = mkA "cerimoniosus" "cerimoniosa" "cerimoniosum" ; -- [DEXFS] :: pertaining/devoted to religious/sacred rite/ritual/usage; cerimonium_N_N = mkN "cerimonium" ; -- [DEXES] :: ceremony; sacred rite/ritual/usage; holy dread, reverence, worship; sanctity; cerineus_A = mkA "cerineus" "cerinea" "cerineum" ; -- [XXXIO] :: made of wax; cerintha_F_N = mkN "cerintha" ; -- [XAXNO] :: honeywort plant; (genus Cerinthe); wax-flower, plant bees are fond of (L+S); - cerinthe_F_N = mkN "cerinthe" "cerinthes " feminine ; -- [XAXNO] :: honeywort plant; (genus Cerinthe); wax-flower, plant bees are fond of (L+S); + cerinthe_F_N = mkN "cerinthe" "cerinthes" feminine ; -- [XAXNO] :: honeywort plant; (genus Cerinthe); wax-flower, plant bees are fond of (L+S); cerinthus_M_N = mkN "cerinthus" ; -- [XAXNS] :: bee-bread, pollen; (also called erithace or sandaraca); cerinum_N_N = mkN "cerinum" ; -- [XXXFS] :: wax-colored/pale yellow garment (pl.); cerinus_A = mkA "cerinus" "cerina" "cerinum" ; -- [XXXEO] :: wax-colored; - ceriolare_N_N = mkN "ceriolare" "ceriolaris " neuter ; -- [XXXIO] :: taper-holder; + ceriolare_N_N = mkN "ceriolare" "ceriolaris" neuter ; -- [XXXIO] :: taper-holder; ceriolarium_N_N = mkN "ceriolarium" ; -- [XXXIO] :: taper-holder; ceriolarius_M_N = mkN "ceriolarius" ; -- [XXXIO] :: maker/seller of tapers; - ceritis_F_N = mkN "ceritis" "ceritidis " feminine ; -- [XXXNO] :: precious stone; wax-stone (L+S); + 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; + 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); @@ -9789,7 +9789,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cero_V2 = mkV2 (mkV "cerare") ; -- [XXXFO] :: smear/coat with wax; ceroferarium_N_N = mkN "ceroferarium" ; -- [FEXFE] :: candlestick; ceroferarius_M_N = mkN "ceroferarius" ; -- [DEXES] :: torchbearer; waxlight/taper/candle bearer/attendant at Christian worship; - ceroma_N_N = mkN "ceroma" "ceromatis " neuter ; -- [XXXCO] :: layer of mud put down for wrestling; the_ring; wrestler; wax ointment (L+S); + ceroma_N_N = mkN "ceroma" "ceromatis" neuter ; -- [XXXCO] :: layer of mud put down for wrestling; the_ring; wrestler; wax ointment (L+S); ceromaticus_A = mkA "ceromaticus" "ceromatica" "ceromaticum" ; -- [XXXFO] :: smeared with ceroma (mud put down for wrestling-ring); (wax ointment L+S); ceromatita_M_N = mkN "ceromatita" ; -- [EXXFP] :: wax-anointer; one who anoints with wax salve; ceronia_F_N = mkN "ceronia" ; -- [XAXNS] :: St John's bread (carob-tree pods), husks eaten by prodigal and John the Baptist; @@ -9800,23 +9800,23 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cerrinus_A = mkA "cerrinus" "cerrina" "cerrinum" ; -- [XAXNO] :: of Turkey oak (Quercus cerris); cerritulus_A = mkA "cerritulus" "cerritula" "cerritulum" ; -- [DBXFS] :: somewhat mad/demented; cerritus_A = mkA "cerritus" "cerrita" "cerritum" ; -- [XBXCO] :: possessed by Ceres; frantic, frenzied; mad, demented; - cerro_M_N = mkN "cerro" "cerronis " masculine ; -- [XXXEO] :: term of opprobrium/disgrace/reproach; buffoon?; + cerro_M_N = mkN "cerro" "cerronis" masculine ; -- [XXXEO] :: term of opprobrium/disgrace/reproach; buffoon?; cerrus_F_N = mkN "cerrus" ; -- [XAXEO] :: Turkey oak (Quercus cerris), mossy-cup oak of southern Europe (OED); certabundus_A = mkA "certabundus" "certabunda" "certabundum" ; -- [XGXFO] :: disputing, contending; - certamen_N_N = mkN "certamen" "certaminis " neuter ; -- [XXXAO] :: contest, competition; battle, combat, struggle; rivalry; (matter in) dispute; + certamen_N_N = mkN "certamen" "certaminis" neuter ; -- [XXXAO] :: contest, competition; battle, combat, struggle; rivalry; (matter in) dispute; certatim_Adv = mkAdv "certatim" ; -- [XXXBO] :: with rivalry, in competition; earnestly, eagerly (L+S); - certatio_F_N = mkN "certatio" "certationis " feminine ; -- [XXXCO] :: striving; contest; struggling for superiority/mastery; (fight/sports/legal); + certatio_F_N = mkN "certatio" "certationis" feminine ; -- [XXXCO] :: striving; contest; struggling for superiority/mastery; (fight/sports/legal); certative_Adv = mkAdv "certative" ; -- [DXXFS] :: combatively; in order to stir up strife; - certator_M_N = mkN "certator" "certatoris " masculine ; -- [XXXEO] :: disputant, one who argues; competitor; - certatus_M_N = mkN "certatus" "certatus " masculine ; -- [XXXFO] :: struggle, contention; fight; + certator_M_N = mkN "certator" "certatoris" masculine ; -- [XXXEO] :: disputant, one who argues; competitor; + certatus_M_N = mkN "certatus" "certatus" masculine ; -- [XXXFO] :: struggle, contention; fight; certe_Adv = mkAdv "certe" ; -- [XXXAO] :: surely, certainly, without doubt, really; at least/any rate, in all events; - certificatio_F_N = mkN "certificatio" "certificationis " feminine ; -- [FLXFJ] :: certification; + certificatio_F_N = mkN "certificatio" "certificationis" feminine ; -- [FLXFJ] :: certification; certificatus_A = mkA "certificatus" "certificata" "certificatum" ; -- [GXXEK] :: certificated, certified; registered; 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; + 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; @@ -9831,9 +9831,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cervesa_F_N = mkN "cervesa" ; -- [XXFEO] :: beer; kind of beer; cervesarius_M_N = mkN "cervesarius" ; -- [XXXIO] :: brewer (of beer); cervesia_F_N = mkN "cervesia" ; -- [XXFEO] :: beer; kind of beer; - cervical_N_N = mkN "cervical" "cervicalis " neuter ; -- [XXXCO] :: pillow, cushion; - cervicale_N_N = mkN "cervicale" "cervicalis " neuter ; -- [DXXFS] :: pillow, cushion; - cervicatas_F_N = mkN "cervicatas" "cervicatatis " feminine ; -- [DXXFS] :: obstinacy, stubbornness; + cervical_N_N = mkN "cervical" "cervicalis" neuter ; -- [XXXCO] :: pillow, cushion; + cervicale_N_N = mkN "cervicale" "cervicalis" neuter ; -- [DXXFS] :: pillow, cushion; + cervicatas_F_N = mkN "cervicatas" "cervicatatis" feminine ; -- [DXXFS] :: obstinacy, stubbornness; cervicatus_A = mkA "cervicatus" "cervicata" "cervicatum" ; -- [DXXFS] :: stiff-necked, obstinate, stubborn; cervicosus_A = mkA "cervicosus" "cervicosa" "cervicosum" ; -- [DXXES] :: stiff-necked, obstinate, stubborn; cervicula_F_N = mkN "cervicula" ; -- [XBXCO] :: neck (men/animals); neck of object (e.g., of air container in water organ); @@ -9844,33 +9844,33 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cervisiaria_F_N = mkN "cervisiaria" ; -- [GXXEK] :: brasserie; restaurant; cervisiarius_A = mkA "cervisiarius" "cervisiaria" "cervisiarium" ; -- [GXXET] :: beer-; made from/of beer; (Erasmus); cervisiola_F_N = mkN "cervisiola" ; -- [GXXEK] :: light beer; - cervix_F_N = mkN "cervix" "cervicis " feminine ; -- [XBXAO] :: neck (sg/pl.), nape; severed neck/head; cervix, neck (bladder/uterus/jar/land); - cervos_M_N = mkN "cervos" "cervi " masculine ; -- [BAXFS] :: stag/deer; forked branches; chevaux-de-frise (spiked barricade against cavalry); + cervix_F_N = mkN "cervix" "cervicis" feminine ; -- [XBXAO] :: neck (sg/pl.), nape; severed neck/head; cervix, neck (bladder/uterus/jar/land); + cervos_M_N = mkN "cervos" "cervi" masculine ; -- [BAXFS] :: stag/deer; forked branches; chevaux-de-frise (spiked barricade against cavalry); cervula_F_N = mkN "cervula" ; -- [DAXFS] :: little hind/doe; cervulus_M_N = mkN "cervulus" ; -- [DWXFS] :: little chevaux-de-frise (spiked barricade against cavalry); cervus_M_N = mkN "cervus" ; -- [XAXCO] :: stag/deer; forked branches; chevaux-de-frise (spiked barricade against cavalry); ceryceum_N_N = mkN "ceryceum" ; -- [DLXFS] :: herald's staff, caduceus; cerycium_N_N = mkN "cerycium" ; -- [DLXFS] :: herald's staff, caduceus; - ceryx_M_N = mkN "ceryx" "cerycis " masculine ; -- [XLXEO] :: herald; - cespes_M_N = mkN "cespes" "cespitis " masculine ; -- [EAXBE] :: grassy ground, grass; earth; sod, turf; altar/rampart/mound of sod/turf/earth; + ceryx_M_N = mkN "ceryx" "cerycis" masculine ; -- [XLXEO] :: herald; + cespes_M_N = mkN "cespes" "cespitis" masculine ; -- [EAXBE] :: grassy ground, grass; earth; sod, turf; altar/rampart/mound of sod/turf/earth; cespito_V = mkV "cespitare" ; -- [XXXFO] :: stumble; - cessatio_F_N = mkN "cessatio" "cessationis " feminine ; -- [XXXBO] :: relaxation/rest/respite; period of disuse, inactivity; idleness, neglect; delay; - cessator_M_N = mkN "cessator" "cessatoris " masculine ; -- [XXXDO] :: idler, sluggard; dilatory person (L+S); - cessatrix_F_N = mkN "cessatrix" "cessatricis " feminine ; -- [DXXFS] :: idler (female), loiterer; + cessatio_F_N = mkN "cessatio" "cessationis" feminine ; -- [XXXBO] :: relaxation/rest/respite; period of disuse, inactivity; idleness, neglect; delay; + cessator_M_N = mkN "cessator" "cessatoris" masculine ; -- [XXXDO] :: idler, sluggard; dilatory person (L+S); + cessatrix_F_N = mkN "cessatrix" "cessatricis" feminine ; -- [DXXFS] :: idler (female), loiterer; cessicius_A = mkA "cessicius" "cessicia" "cessicium" ; -- [XLXEO] :: made/appointed by cessio (surrendering/conceding in law); of giving up/ceding; cessim_Adv = mkAdv "cessim" ; -- [XXXEO] :: as to give way/lose ground; bending/turning in; (turned) backwards; obliquely; - cessio_F_N = mkN "cessio" "cessionis " feminine ; -- [XLXDO] :: surrendering/conceding (in law); running (of period of time); + cessio_F_N = mkN "cessio" "cessionis" feminine ; -- [XLXDO] :: surrendering/conceding (in law); running (of period of time); cessitius_A = mkA "cessitius" "cessitia" "cessitium" ; -- [XLXFS] :: made/appointed by cessio (surrendering/conceding in law); of giving up/ceding; cesso_V = mkV "cessare" ; -- [XXXAO] :: be remiss/inactive; hold back, leave off, delay, cease from; rest; be free of; cessum_N_N = mkN "cessum" ; -- [XLXIO] :: advance, part of payment that has been made; - cessus_M_N = mkN "cessus" "cessus " masculine ; -- [XXXFO] :: backward or yielding movement; + cessus_M_N = mkN "cessus" "cessus" masculine ; -- [XXXFO] :: backward or yielding movement; cesticillus_M_N = mkN "cesticillus" ; -- [DXXFS] :: small ring/hoop placed on head to support burden; - cestos_M_N = mkN "cestos" "cesti " masculine ; -- [XXXEO] :: band supporting breasts (esp. girdle of Venus); girdle/belt/girth/strap; - cestros_F_N = mkN "cestros" "cestri " feminine ; -- [XAXNO] :: plant identified with vettonica; (betony?); - cestros_M_N = mkN "cestros" "cestri " masculine ; -- [XTXNO] :: pointed tool used in encaustic (wax) painting; graving tool (L+S); - cestrosphendone_F_N = mkN "cestrosphendone" "cestrosphendones " feminine ; -- [XWXFO] :: catapult for discharging bolts; + cestos_M_N = mkN "cestos" "cesti" masculine ; -- [XXXEO] :: band supporting breasts (esp. girdle of Venus); girdle/belt/girth/strap; + cestros_F_N = mkN "cestros" "cestri" feminine ; -- [XAXNO] :: plant identified with vettonica; (betony?); + cestros_M_N = mkN "cestros" "cestri" masculine ; -- [XTXNO] :: pointed tool used in encaustic (wax) painting; graving tool (L+S); + cestrosphendone_F_N = mkN "cestrosphendone" "cestrosphendones" feminine ; -- [XWXFO] :: catapult for discharging bolts; cestrotus_A = mkA "cestrotus" "cestrota" "cestrotum" ; -- [XTXNO] :: engraved; - cestus_M_N = mkN "cestus" "cestus " masculine ; -- [XXXCO] :: boxing-glove, strip of leather weighted with lead/iron tied to boxer's hands; + cestus_M_N = mkN "cestus" "cestus" masculine ; -- [XXXCO] :: boxing-glove, strip of leather weighted with lead/iron tied to boxer's hands; cetaria_F_N = mkN "cetaria" ; -- [XAXEO] :: fish-pond; cetarium_N_N = mkN "cetarium" ; -- [XAXEO] :: fish-pond; cetarius_A = mkA "cetarius" "cetaria" "cetarium" ; -- [XAXFS] :: of/pertaining to fish; @@ -9881,8 +9881,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat ceteroquin_Adv = mkAdv "ceteroquin" ; -- [XXXCS] :: in other respects, otherwise; ceterum_Adv = mkAdv "ceterum" ; -- [XXXCO] :: moreover; but yet; still, for the rest, but, besides; in other respects; ceterus_A = mkA "ceterus" "cetera" "ceterum" ; -- [XXXAO] :: the_other; the_others (pl.). the_remaining/rest, all the_rest; - cetionis_F_N = mkN "cetionis" "cetionidis " feminine ; -- [XXXNO] :: precious stone; - cetos_N_N = mkN "cetos" "ceti " neuter ; -- [XAXCO] :: whale; porpoise; dolphin; its flesh; sea monster (offered Andromeda); + cetionis_F_N = mkN "cetionis" "cetionidis" feminine ; -- [XXXNO] :: precious stone; + cetos_N_N = mkN "cetos" "ceti" neuter ; -- [XAXCO] :: whale; porpoise; dolphin; its flesh; sea monster (offered Andromeda); cetosus_A = mkA "cetosus" "cetosa" "cetosum" ; -- [DAXFS] :: of/pertaining to sea-fishes; cetra_F_N = mkN "cetra" ; -- [XXXCO] :: caetra (small light shield); cetus_M_N = mkN "cetus" ; -- [XAXBO] :: whale; porpoise; dolphin; its flesh; sea monster (offered Andromeda); @@ -9890,103 +9890,103 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat ceua_F_N = mkN "ceua" ; -- [XAXFS] :: small breed of cow; ceva_F_N = mkN "ceva" ; -- [XAXFS] :: small breed of cow; ceveo_V = mkV "cevere" ; -- [XXXES] :: move haunches in a lewd or effeminate manner, practice such behavior; fawn; - ceyx_M_N = mkN "ceyx" "ceycis " masculine ; -- [XAXNO] :: sea bird (tern?); son of Lucifer/husband of Alcyone; male kingfisher (L+S); + ceyx_M_N = mkN "ceyx" "ceycis" masculine ; -- [XAXNO] :: sea bird (tern?); son of Lucifer/husband of Alcyone; male kingfisher (L+S); chaere_Interj = ss "chaere" ; -- [XXXEO] :: welcome; hail (L+S); chaerephyllum_N_N = mkN "chaerephyllum" ; -- [XAXEO] :: chervil (Anthiscus cerefolium); chaerepolum_N_N = mkN "chaerepolum" ; -- [XAXEO] :: chervil (Anthiscus cerefolium); - chalasticamen_N_N = mkN "chalasticamen" "chalasticaminis " neuter ; -- [DBXFS] :: alleviating remedy; + chalasticamen_N_N = mkN "chalasticamen" "chalasticaminis" neuter ; -- [DBXFS] :: alleviating remedy; chalasticus_A = mkA "chalasticus" "chalastica" "chalasticum" ; -- [DBXFS] :: of/pertaining to alleviating/soothing; chalatorius_A = mkA "chalatorius" "chalatoria" "chalatorium" ; -- [DXXFS] :: of/pertaining to loosing/letting down; - chalazias_F_N = mkN "chalazias" "chalaziae " feminine ; -- [XXXNO] :: precious stone (unidentified); (of form and color of hail); - chalazion_N_N = mkN "chalazion" "chalazii " neuter ; -- [XBXFO] :: wart/tubercle on eyelid; sty; + chalazias_F_N = mkN "chalazias" "chalaziae" feminine ; -- [XXXNO] :: precious stone (unidentified); (of form and color of hail); + chalazion_N_N = mkN "chalazion" "chalazii" neuter ; -- [XBXFO] :: wart/tubercle on eyelid; sty; chalazius_A = mkA "chalazius" "chalazia" "chalazium" ; -- [XXXNO] :: resembling a hailstone (name of a precious stone); of/pertaining to hail (L+S); - chalazophylax_M_N = mkN "chalazophylax" "chalazophylacis " masculine ; -- [XEXFO] :: hail-guard (official at Cleonae whose duty it was to avert hail by sacrifice); - chalazosis_F_N = mkN "chalazosis" "chalazosis " feminine ; -- [XBXIO] :: attack of warts or pimples; (acne?); + chalazophylax_M_N = mkN "chalazophylax" "chalazophylacis" masculine ; -- [XEXFO] :: hail-guard (official at Cleonae whose duty it was to avert hail by sacrifice); + chalazosis_F_N = mkN "chalazosis" "chalazosis" feminine ; -- [XBXIO] :: attack of warts or pimples; (acne?); chalbanum_N_N = mkN "chalbanum" ; -- [XAQES] :: resinous sap of an umbelliferous plant in Syria, galbanum; - chalcanthon_N_N = mkN "chalcanthon" "chalcanthi " neuter ; -- [XTXNO] :: copperas-water, cobbler's blackening (for shoe leather); (Atramentum sutorium); + chalcanthon_N_N = mkN "chalcanthon" "chalcanthi" neuter ; -- [XTXNO] :: copperas-water, cobbler's blackening (for shoe leather); (Atramentum sutorium); chalcanthum_N_N = mkN "chalcanthum" ; -- [XTXNO] :: copperas-water, cobbler's blackening (for shoe leather); (Atramentum sutorium); - chalcas_F_N = mkN "chalcas" "chalcae " feminine ; -- [XAXNO] :: plant (chrysanthemum family?); (buphthalmus?); + chalcas_F_N = mkN "chalcas" "chalcae" feminine ; -- [XAXNO] :: plant (chrysanthemum family?); (buphthalmus?); chalcaspis_A = mkA "chalcaspis" "chalcaspidis"; -- [XWXFS] :: having/with a brazen shield; - chalcaspis_M_N = mkN "chalcaspis" "chalcaspidis " masculine ; -- [XWXFO] :: soldier with a brazen shield; + chalcaspis_M_N = mkN "chalcaspis" "chalcaspidis" masculine ; -- [XWXFO] :: soldier with a brazen shield; chalcedonius_M_N = mkN "chalcedonius" ; -- [EXXFW] :: chalcedony; (stone of third foundation of New Jerusalem in Revelations 21:19); - chalceos_M_N = mkN "chalceos" "chalcei " masculine ; -- [XAXNO] :: prickly plant resembling thistle; + chalceos_M_N = mkN "chalceos" "chalcei" masculine ; -- [XAXNO] :: prickly plant resembling thistle; chalcetum_N_N = mkN "chalcetum" ; -- [XBXNS] :: plant (unidentified); (medicinal); chalceum_N_N = mkN "chalceum" ; -- [XXXFS] :: brazen/brass things (pl.); chalceus_A = mkA "chalceus" "chalcea" "chalceum" ; -- [XXXFS] :: brazen, of brass; - chalcidice_F_N = mkN "chalcidice" "chalcidices " feminine ; -- [XAXNS] :: kind of lizard or snake; + chalcidice_F_N = mkN "chalcidice" "chalcidices" feminine ; -- [XAXNS] :: kind of lizard or snake; chalcidicum_N_N = mkN "chalcidicum" ; -- [XTXDO] :: kind of portico or porch; (from Chalcis); - chalcis_F_N = mkN "chalcis" "chalcidis " feminine ; -- [XAXNO] :: kind of fish (sardine?/herring-like?); kind of lizard/snake; (w/copper spots); - chalcites_F_N = mkN "chalcites" "chalcitae " feminine ; -- [XXXDS] :: copper pyrites; precious stone (of copper color L+S); copper stone/ore (L+S); - chalcitis_F_N = mkN "chalcitis" "chalcitidis " feminine ; -- [XXXDO] :: copper pyrites; precious stone (of copper color L+S); copper stone/ore (L+S); + chalcis_F_N = mkN "chalcis" "chalcidis" feminine ; -- [XAXNO] :: kind of fish (sardine?/herring-like?); kind of lizard/snake; (w/copper spots); + chalcites_F_N = mkN "chalcites" "chalcitae" feminine ; -- [XXXDS] :: copper pyrites; precious stone (of copper color L+S); copper stone/ore (L+S); + chalcitis_F_N = mkN "chalcitis" "chalcitidis" feminine ; -- [XXXDO] :: copper pyrites; precious stone (of copper color L+S); copper stone/ore (L+S); chalcographia_F_N = mkN "chalcographia" ; -- [GXXEK] :: engraving on copper; chalcographus_M_N = mkN "chalcographus" ; -- [GXXEK] :: engraver (on copper); printer (Erasmus); - chalcophonos_F_N = mkN "chalcophonos" "chalcophoni " feminine ; -- [XXXNO] :: precious stone; (ringing like brass L+S); - chalcophthongos_F_N = mkN "chalcophthongos" "chalcophthongi " feminine ; -- [XXXNS] :: precious stone; (ringing like brass L+S); + chalcophonos_F_N = mkN "chalcophonos" "chalcophoni" feminine ; -- [XXXNO] :: precious stone; (ringing like brass L+S); + chalcophthongos_F_N = mkN "chalcophthongos" "chalcophthongi" feminine ; -- [XXXNS] :: precious stone; (ringing like brass L+S); chalcosmaragdus_F_N = mkN "chalcosmaragdus" ; -- [XXXNO] :: precious stone; emerald with veins of brass (malachite?) (L+S); chalcus_M_N = mkN "chalcus" ; -- [XLHNO] :: copper coin (of small value, one tenth obol, one 60th or 40th of a drachma); chalo_V2 = mkV2 (mkV "chalare") ; -- [XXXEO] :: let down, allow to hang free; loosen; chalybeius_A = mkA "chalybeius" "chalybeia" "chalybeium" ; -- [XXXFO] :: of/consisting of iron(/steel); - chalybs_M_N = mkN "chalybs" "chalybis " masculine ; -- [XWXCO] :: iron/steel; iron weapons/implements; sword (L+S); horse bit; arrow point; rail; + chalybs_M_N = mkN "chalybs" "chalybis" masculine ; -- [XWXCO] :: iron/steel; iron weapons/implements; sword (L+S); horse bit; arrow point; rail; chama_F_N = mkN "chama" ; -- [XAXNS] :: bivalve shellfish, clam; cockle (L+S); - chama_N_N = mkN "chama" "chamatis " neuter ; -- [XAXNS] :: lynx; (undeclined OLD); - chamaeacte_F_N = mkN "chamaeacte" "chamaeactes " feminine ; -- [XAXNO] :: dwarf elder (Sambucus ebulus); danewort (L+S); + chama_N_N = mkN "chama" "chamatis" neuter ; -- [XAXNS] :: lynx; (undeclined OLD); + chamaeacte_F_N = mkN "chamaeacte" "chamaeactes" feminine ; -- [XAXNO] :: dwarf elder (Sambucus ebulus); danewort (L+S); chamaecerasus_F_N = mkN "chamaecerasus" ; -- [XAXNO] :: dwarf cheery tree (Prunus prostrata); - chamaecissos_F_N = mkN "chamaecissos" "chamaecissi " feminine ; -- [XAXNO] :: ground ivy (Glecoma hederacea); kind of cyclamen; - chamaecyparissos_F_N = mkN "chamaecyparissos" "chamaecyparissi " feminine ; -- [XAXNO] :: plant, lavender cotton? (Santolina chamaecyparissus); - chamaedaphne_F_N = mkN "chamaedaphne" "chamaedaphnes " feminine ; -- [XAXNO] :: periwinkle? (Vinca herbacea); butcher's broom? (Ruscus racemosus); dwarf laurel; - 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); + chamaecissos_F_N = mkN "chamaecissos" "chamaecissi" feminine ; -- [XAXNO] :: ground ivy (Glecoma hederacea); kind of cyclamen; + chamaecyparissos_F_N = mkN "chamaecyparissos" "chamaecyparissi" feminine ; -- [XAXNO] :: plant, lavender cotton? (Santolina chamaecyparissus); + chamaedaphne_F_N = mkN "chamaedaphne" "chamaedaphnes" feminine ; -- [XAXNO] :: periwinkle? (Vinca herbacea); butcher's broom? (Ruscus racemosus); dwarf laurel; + 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); - chamaeleuce_F_N = mkN "chamaeleuce" "chamaeleuces " feminine ; -- [XAXNO] :: coltsfoot; (Tussilago farfara); + 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); + 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?); - chamaemelygos_F_N = mkN "chamaemelygos" "chamaemelygi " feminine ; -- [DAXFS] :: plant; (also called verbenaca); + chamaemelon_N_N = mkN "chamaemelon" "chamaemeli" neuter ; -- [XAXNO] :: plant (chamomile?); + chamaemelygos_F_N = mkN "chamaemelygos" "chamaemelygi" feminine ; -- [DAXFS] :: plant; (also called verbenaca); chamaemilla_F_N = mkN "chamaemilla" ; -- [DAXFS] :: chamomile; - chamaemyrsine_F_N = mkN "chamaemyrsine" "chamaemyrsines " feminine ; -- [XAXNO] :: butcher's broom (Ruscus aculeatus); dwarf myrtle (L+S); - chamaepeuce_F_N = mkN "chamaepeuce" "chamaepeuces " feminine ; -- [XAXNO] :: plant (unidentified); ground larch (L+S); - chamaepitys_F_N = mkN "chamaepitys" "chamaepityis " feminine ; -- [XAXEO] :: plant (genus Ajuga); hypericum/St John's wort; groundpine (abortifacient) (L+S); + chamaemyrsine_F_N = mkN "chamaemyrsine" "chamaemyrsines" feminine ; -- [XAXNO] :: butcher's broom (Ruscus aculeatus); dwarf myrtle (L+S); + chamaepeuce_F_N = mkN "chamaepeuce" "chamaepeuces" feminine ; -- [XAXNO] :: plant (unidentified); ground larch (L+S); + chamaepitys_F_N = mkN "chamaepitys" "chamaepityis" feminine ; -- [XAXEO] :: plant (genus Ajuga); hypericum/St John's wort; groundpine (abortifacient) (L+S); chamaeplatanus_F_N = mkN "chamaeplatanus" ; -- [XAXNO] :: plane tree kept small by pruning, pollard plane; dwarf platane (L+S); - chamaerops_F_N = mkN "chamaerops" "chamaearopis " feminine ; -- [XAXNO] :: dwarf palm? (Chamaerops humilis); germander? (Teucrium chamaedrys) (medicine); - chamaesyce_F_N = mkN "chamaesyce" "chamaesyces " feminine ; -- [XAXNO] :: kind of spurge (Euphorbia chamaesyce?); plant, wolf's-milk, ground fig (L+S); + chamaerops_F_N = mkN "chamaerops" "chamaearopis" feminine ; -- [XAXNO] :: dwarf palm? (Chamaerops humilis); germander? (Teucrium chamaedrys) (medicine); + chamaesyce_F_N = mkN "chamaesyce" "chamaesyces" feminine ; -- [XAXNO] :: kind of spurge (Euphorbia chamaesyce?); plant, wolf's-milk, ground fig (L+S); chamaetortus_A = mkA "chamaetortus" "chamaetorta" "chamaetortum" ; -- [XXXFO] :: twisted to ground; that creeps on ground (L+S); - chamaezelon_N_N = mkN "chamaezelon" "chamaezeli " neuter ; -- [XAXNO] :: plant, cinquefoil; gnaphalium, an unidentified plant; - chamedyosmos_F_N = mkN "chamedyosmos" "chamedyosmi " feminine ; -- [DAXFS] :: rosemary; (pure Latin ros marinus); + chamaezelon_N_N = mkN "chamaezelon" "chamaezeli" neuter ; -- [XAXNO] :: plant, cinquefoil; gnaphalium, an unidentified plant; + chamedyosmos_F_N = mkN "chamedyosmos" "chamedyosmi" feminine ; -- [DAXFS] :: rosemary; (pure Latin ros marinus); chamelaea_F_N = mkN "chamelaea" ; -- [XAXEO] :: dwarf olive (Daphne oleoides); shrub (thymelaea, Daphne gnidium?); chamelea_F_N = mkN "chamelea" ; -- [XAXEO] :: dwarf olive (Daphne oleoides); shrub (thymelaea, Daphne gnidium?); chameunia_F_N = mkN "chameunia" ; -- [DXXFS] :: couch on earth; chamomilla_F_N = mkN "chamomilla" ; -- [GXXEK] :: camomile; chamulcus_M_N = mkN "chamulcus" ; -- [DTXFS] :: kind of machine; chancellarius_M_N = mkN "chancellarius" ; -- [FEXEE] :: porter, doorkeeper; secretary; chancellor (ecclesiastical); diocesan official; - chane_F_N = mkN "chane" "chanes " feminine ; -- [XAXNS] :: sea-perch (Serranus cabrilla?); (Perca cabrilla L+S); + chane_F_N = mkN "chane" "chanes" feminine ; -- [XAXNS] :: sea-perch (Serranus cabrilla?); (Perca cabrilla L+S); chanius_A = mkA "chanius" "chania" "chanium" ; -- [DPXFS] :: name of a foot of three long syllables (_ _ _) (w/pes); - channe_F_N = mkN "channe" "channes " feminine ; -- [XAXEO] :: sea-perch (Serranus cabrilla?); (Perca cabrilla L+S); + channe_F_N = mkN "channe" "channes" feminine ; -- [XAXEO] :: sea-perch (Serranus cabrilla?); (Perca cabrilla L+S); chara_F_N = mkN "chara" ; -- [XAXFT] :: edible root, mixed with milk/forms loaf to stave off hunger (Caesar CW III); characatus_A = mkA "characatus" "characata" "characatum" ; -- [XAXFO] :: staked, propped up; provided with stakes; - characias_M_N = mkN "characias" "characiae " masculine ; -- [XAXNS] :: reed for props/stakes; kind of spurge (wood spurge?); plant, wolf's-milk; - characites_M_N = mkN "characites" "characitae " masculine ; -- [XAXNS] :: plant, wolf's-milk; - character_M_N = mkN "character" "characteris " masculine ; -- [XXXEO] :: branded/impressed letter/mark/etc; marking instrument; stamp, character, style; - characterismos_M_N = mkN "characterismos" "characterismi " masculine ; -- [XXXFO] :: characterization; making prominent of characteristic marks (L+S); + characias_M_N = mkN "characias" "characiae" masculine ; -- [XAXNS] :: reed for props/stakes; kind of spurge (wood spurge?); plant, wolf's-milk; + characites_M_N = mkN "characites" "characitae" masculine ; -- [XAXNS] :: plant, wolf's-milk; + character_M_N = mkN "character" "characteris" masculine ; -- [XXXEO] :: branded/impressed letter/mark/etc; marking instrument; stamp, character, style; + characterismos_M_N = mkN "characterismos" "characterismi" masculine ; -- [XXXFO] :: characterization; making prominent of characteristic marks (L+S); characterismus_M_N = mkN "characterismus" ; -- [DXXFS] :: characterization; making prominent of characteristic marks (L+S); - charadrion_N_N = mkN "charadrion" "charadrii " neuter ; -- [EAXFW] :: yellowish bird; charadrion; + charadrion_N_N = mkN "charadrion" "charadrii" neuter ; -- [EAXFW] :: yellowish bird; charadrion; charadrius_M_N = mkN "charadrius" ; -- [DAXFS] :: yellowish bird; chadadrion; charazo_V2 = mkV2 (mkV "charazare") ; -- [DTXES] :: scratch, engrave; - charisma_N_N = mkN "charisma" "charismatis " neuter ; -- [DEXES] :: gift, present; spiritual/God-given gift, grace, talent, charisma (Ecc); + charisma_N_N = mkN "charisma" "charismatis" neuter ; -- [DEXES] :: gift, present; spiritual/God-given gift, grace, talent, charisma (Ecc); charismaticus_A = mkA "charismaticus" "charismatica" "charismaticum" ; -- [FEXFE] :: charismatic, pertaining to spiritual/God-given gift/talent/charisma; charisticum_N_N = mkN "charisticum" ; -- [XXXFS] :: money/allowance for buying papyrus/paper; - charistio_M_N = mkN "charistio" "charistionis " masculine ; -- [XSXIO] :: kind of weighing machine; + charistio_M_N = mkN "charistio" "charistionis" masculine ; -- [XSXIO] :: kind of weighing machine; charistium_N_N = mkN "charistium" ; -- [XXXES] :: annual family banquet 3 days after Parentalia (20 Feb.) where feuds settled; - charitas_F_N = mkN "charitas" "charitatis " feminine ; -- [XEXCF] :: charity; love of God; + charitas_F_N = mkN "charitas" "charitatis" feminine ; -- [XEXCF] :: charity; love of God; charitative_Adv = mkAdv "charitative" ; -- [XEXFF] :: charitably; in a charitable manner; charitativus_A = mkA "charitativus" "charitativa" "charitativum" ; -- [XEXEF] :: charitable, loving, of a charitable nature; pertaining to charity; - charitonblepharon_N_N = mkN "charitonblepharon" "charitonblephari " neuter ; -- [XAXNS] :: magical plant producing love; + charitonblepharon_N_N = mkN "charitonblepharon" "charitonblephari" neuter ; -- [XAXNS] :: magical plant producing love; charmidatus_A = mkA "charmidatus" "charmidata" "charmidatum" ; -- [BDXFS] :: become Charmides (comic character in Platuus' play Trinummus); charmido_V2 = mkV2 (mkV "charmidare") ; -- [BDXFO] :: Charmidize, turn into Charmides (comic character in Plautus' play Trinummus); charta_F_N = mkN "charta" ; -- [XXXBO] :: paper/papyrus (sheet); record/letter, book/writing(s); thin metal sheet/leaf; @@ -9997,66 +9997,66 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat charteus_A = mkA "charteus" "chartea" "charteum" ; -- [XXXFO] :: of/pertaining to papyrus/paper; [~ statium => literary arena/occupation]; chartiaticum_N_N = mkN "chartiaticum" ; -- [XXXFO] :: money/allowance for buying papyrus/paper; chartographia_F_N = mkN "chartographia" ; -- [GXXEK] :: cartography; - chartophylax_M_N = mkN "chartophylax" "chartophylacis " masculine ; -- [XXXIS] :: archivist, keeper of archives; + chartophylax_M_N = mkN "chartophylax" "chartophylacis" masculine ; -- [XXXIS] :: archivist, keeper of archives; chartopola_M_N = mkN "chartopola" ; -- [XXXFS] :: merchant/dealer in papyrus/paper; 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; 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; - chele_F_N = mkN "chele" "cheles " feminine ; -- [XXXCO] :: claw-shaped mechanism; trigger; Scorpio' claws (pl.) that extend to Libra, Libra - chelidon_F_N = mkN "chelidon" "chelidonis " feminine ; -- [XBXFO] :: female pudenda/genitalia; (Juvenalis?); (rude); + 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; + chele_F_N = mkN "chele" "cheles" feminine ; -- [XXXCO] :: claw-shaped mechanism; trigger; Scorpio' claws (pl.) that extend to Libra, Libra + chelidon_F_N = mkN "chelidon" "chelidonis" feminine ; -- [XBXFO] :: female pudenda/genitalia; (Juvenalis?); (rude); chelidonia_F_N = mkN "chelidonia" ; -- [XAXNO] :: greater celandine (Chelidonium maius)/swallowwort; kind of fig; precious stone; chelidoniacus_A = mkA "chelidoniacus" "chelidoniaca" "chelidoniacum" ; -- [DAXFS] :: pointed like a swallow's tail; - chelidonias_M_N = mkN "chelidonias" "chelidoniae " masculine ; -- [XSXNO] :: west wind; (blowing after 22 Feb. when swallows arrive); + chelidonias_M_N = mkN "chelidonias" "chelidoniae" masculine ; -- [XSXNO] :: west wind; (blowing after 22 Feb. when swallows arrive); chelidonium_N_N = mkN "chelidonium" ; -- [XAXEO] :: lesser celandine (Ranunculus ficaria); eye-salve containing celandine juice; chelidonius_A = mkA "chelidonius" "chelidonia" "chelidonium" ; -- [XAXEO] :: of/belonging to swallow; resembling swallow in color, reddish (fig); chelium_N_N = mkN "chelium" ; -- [XAXNO] :: shell of a horned tortoise; chelonia_F_N = mkN "chelonia" ; -- [XXXNO] :: precious stone; tortoise-stone (L+S); - chelonitis_F_N = mkN "chelonitis" "chelonitidis " feminine ; -- [XXXNO] :: precious stone; (like a tortoise L+S); + chelonitis_F_N = mkN "chelonitis" "chelonitidis" feminine ; -- [XXXNO] :: precious stone; (like a tortoise L+S); chelonium_N_N = mkN "chelonium" ; -- [FXXEK] :: staple; chelydrus_M_N = mkN "chelydrus" ; -- [XAXDO] :: venomous water-snake; - chelyon_N_N = mkN "chelyon" "chelyi " neuter ; -- [XAXNS] :: shell of horned tortoise; - chelysos_F_N = mkN "chelysos" "chelyi " feminine ; -- [XAXCO] :: tortoise; lyre/harp (made originally from a tortoise shell); constellation Lyra; + chelyon_N_N = mkN "chelyon" "chelyi" neuter ; -- [XAXNS] :: shell of horned tortoise; + chelysos_F_N = mkN "chelysos" "chelyi" feminine ; -- [XAXCO] :: tortoise; lyre/harp (made originally from a tortoise shell); constellation Lyra; chema_F_N = mkN "chema" ; -- [DSXFS] :: liquid measure; (one third of a mystrum, one 48th of a sextarius/pint); chemia_F_N = mkN "chemia" ; -- [GSXEK] :: chemistry; chemicus_A = mkA "chemicus" "chemica" "chemicum" ; -- [GSXEK] :: chemical; chemicus_M_N = mkN "chemicus" ; -- [GSXEK] :: chemist; chemiotherapia_F_N = mkN "chemiotherapia" ; -- [HBXEK] :: chemotherapy; chemista_M_N = mkN "chemista" ; -- [GXXEK] :: chemist; - chenalopex_M_N = mkN "chenalopex" "chenalopecis " masculine ; -- [XAENO] :: Egyptian goose (Chenalopex aegyptiaca); - chenamyche_F_N = mkN "chenamyche" "chenamyches " feminine ; -- [XAQNO] :: thorny oriental plant (reputed to become luminous at night); - cheneros_F_N = mkN "cheneros" "chenerotis " feminine ; -- [XAXNO] :: small kind of goose; (Anas clipeata? L+S); + chenalopex_M_N = mkN "chenalopex" "chenalopecis" masculine ; -- [XAENO] :: Egyptian goose (Chenalopex aegyptiaca); + chenamyche_F_N = mkN "chenamyche" "chenamyches" feminine ; -- [XAQNO] :: thorny oriental plant (reputed to become luminous at night); + cheneros_F_N = mkN "cheneros" "chenerotis" feminine ; -- [XAXNO] :: small kind of goose; (Anas clipeata? L+S); cheniscus_M_N = mkN "cheniscus" ; -- [XWXFO] :: figure on stern of a ship resembling a goose; gosling; - chenoboscion_N_N = mkN "chenoboscion" "chenoboscii " neuter ; -- [XAXEO] :: goose pen; place for feeding geese; - chenomyche_F_N = mkN "chenomyche" "chenomyches " feminine ; -- [XAQNS] :: thorny oriental plant (reputed to become luminous at night); + chenoboscion_N_N = mkN "chenoboscion" "chenoboscii" neuter ; -- [XAXEO] :: goose pen; place for feeding geese; + chenomyche_F_N = mkN "chenomyche" "chenomyches" feminine ; -- [XAQNS] :: thorny oriental plant (reputed to become luminous at night); chenturio_V2 = mkV2 (mkV "chenturiare") ; -- [XWXFO] :: arrange/assign (soldiers) in military centuries; divide land into centuriae; cheragra_F_N = mkN "cheragra" ; -- [XBXCO] :: pain in hands, arthritis/gout in hands; cheragricus_A = mkA "cheragricus" "cheragrica" "cheragricum" ; -- [XBXFS] :: suffering from cheragra/pain/arthritis/gout in hands; cheragricus_M_N = mkN "cheragricus" ; -- [XBXEO] :: person suffering from cheragra/pains/arthritis/gout in hands; chere_Interj = ss "chere" ; -- [XXXDO] :: welcome; hail (L+S); cheregra_F_N = mkN "cheregra" ; -- [XXXEC] :: gout in hands; - chernites_M_N = mkN "chernites" "chernitae " masculine ; -- [XXXNO] :: white marble; marble resembling ivory (L+S); - chernitis_F_N = mkN "chernitis" "chernitidis " feminine ; -- [XXXNO] :: precious stone; + chernites_M_N = mkN "chernites" "chernitae" masculine ; -- [XXXNO] :: white marble; marble resembling ivory (L+S); + chernitis_F_N = mkN "chernitis" "chernitidis" feminine ; -- [XXXNO] :: precious stone; cherolaba_F_N = mkN "cherolaba" ; -- [XXXFO] :: handle; handspike; chersinus_A = mkA "chersinus" "chersina" "chersinum" ; -- [XXXNO] :: living on dry land, land-; - chersos_F_N = mkN "chersos" "chersi " feminine ; -- [XAXFO] :: land tortoise; kind of toad (L+S); - chersydros_M_N = mkN "chersydros" "chersydri " masculine ; -- [XAXNO] :: amphibious serpent, water snake; + chersos_F_N = mkN "chersos" "chersi" feminine ; -- [XAXFO] :: land tortoise; kind of toad (L+S); + chersydros_M_N = mkN "chersydros" "chersydri" masculine ; -- [XAXNO] :: amphibious serpent, water snake; chia_F_N = mkN "chia" ; -- [XAXFO] :: Chian fig; (Chios/Chius island in Aegean off Ionia); chianter_M_N = mkN "chianter" ; -- [FEXEE] :: choirboy; - chiliarches_M_N = mkN "chiliarches" "chiliarchae " masculine ; -- [XWHFO] :: officer commanding a thousand men in a Greek army; (battalion commander, LTC); + chiliarches_M_N = mkN "chiliarches" "chiliarchae" masculine ; -- [XWHFO] :: officer commanding a thousand men in a Greek army; (battalion commander, LTC); chiliarchus_M_N = mkN "chiliarchus" ; -- [XWHFO] :: officer commanding a thousand men in a Greek army; (battalion commander, LTC); - chilias_F_N = mkN "chilias" "chiliadis " feminine ; -- [XSXFS] :: number 1000, a chiliad, a group of a thousand (things/years); + chilias_F_N = mkN "chilias" "chiliadis" feminine ; -- [XSXFS] :: number 1000, a chiliad, a group of a thousand (things/years); chiliasta_M_N = mkN "chiliasta" ; -- [DEXFS] :: believers (pl.) in millennial kingdom; chiliodynama_F_N = mkN "chiliodynama" ; -- [XAXNS] :: unidentified plant; (medicinal, of a thousand virtues L+S); chiliodynamia_F_N = mkN "chiliodynamia" ; -- [XAXNO] :: unidentified plant; (medicinal, of a thousand virtues L+S); chiliogrammum_N_N = mkN "chiliogrammum" ; -- [GXXEK] :: kilogram; chiliometrum_N_N = mkN "chiliometrum" ; -- [GXXEK] :: kilometer; - chiliophylion_N_N = mkN "chiliophylion" "chiliophylii " neuter ; -- [DAXFS] :: unidentified plant; (thousand leaves); + chiliophylion_N_N = mkN "chiliophylion" "chiliophylii" neuter ; -- [DAXFS] :: unidentified plant; (thousand leaves); chiliovattium_N_N = mkN "chiliovattium" ; -- [GXXEK] :: kilowatt; - chiloma_N_N = mkN "chiloma" "chilomatis " neuter ; -- [XXXFO] :: box, coffer; + chiloma_N_N = mkN "chiloma" "chilomatis" neuter ; -- [XXXFO] :: box, coffer; chimaerifer_A = mkA "chimaerifer" "chimaerifera" "chimaeriferum" ; -- [XYXEC] :: producing the Chimaera; chimerinus_A = mkA "chimerinus" "chimerina" "chimerinum" ; -- [XSXIO] :: of winter; chininum_N_N = mkN "chininum" ; -- [GXXEK] :: quinine; @@ -10067,20 +10067,20 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat chiregra_F_N = mkN "chiregra" ; -- [XXXEC] :: gout in hands; chiridota_F_N = mkN "chiridota" ; -- [XXXFO] :: sleeved shirt; (with or without tunica); chiridotus_A = mkA "chiridotus" "chiridota" "chiridotum" ; -- [XXXFO] :: sleeved, with sleeves; [w/tunica => sleeved shirt]; - chirocma_N_N = mkN "chirocma" "chirocmatis " neuter ; -- [XXXNO] :: manufactures (pl.); (name of a book by Democritus); made by hand (L+S); - chirodytos_M_N = mkN "chirodytos" "chirodyti " masculine ; -- [XXXFO] :: unidentified garment; (chiridota is a sleeved shirt); + chirocma_N_N = mkN "chirocma" "chirocmatis" neuter ; -- [XXXNO] :: manufactures (pl.); (name of a book by Democritus); made by hand (L+S); + chirodytos_M_N = mkN "chirodytos" "chirodyti" masculine ; -- [XXXFO] :: unidentified garment; (chiridota is a sleeved shirt); chirographarius_A = mkA "chirographarius" "chirographaria" "chirographarium" ; -- [XLXFO] :: holding a written bond; in/pertaining to handwriting/manuscript; - chirographon_N_N = mkN "chirographon" "chirographi " neuter ; -- [DLXCO] :: own handwriting; handwritten document, manuscript; written bond/charter/promise; + chirographon_N_N = mkN "chirographon" "chirographi" neuter ; -- [DLXCO] :: own handwriting; handwritten document, manuscript; written bond/charter/promise; chirographum_N_N = mkN "chirographum" ; -- [XLXCO] :: own handwriting; handwritten document, manuscript; written bond/charter/promise; chirographus_M_N = mkN "chirographus" ; -- [XLXCS] :: own handwriting; handwritten document, manuscript; written bond/charter/promise; - chiromantis_M_N = mkN "chiromantis" "chiromantis " masculine ; -- [GXXEK] :: palmist; + 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); 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; + 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; chirotheca_F_N = mkN "chirotheca" ; -- [FXDFV] :: glove, mitten; gauntlet (Erasmus); chirurgia_F_N = mkN "chirurgia" ; -- [XBXEO] :: surgery; violent remedy (L+S); chirurgicus_A = mkA "chirurgicus" "chirurgica" "chirurgicum" ; -- [FBXEE] :: surgical; @@ -10088,40 +10088,40 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat chirurgus_A = mkA "chirurgus" "chirurga" "chirurgum" ; -- [XBXFO] :: of/pertaining to a surgeon; chirurgus_M_N = mkN "chirurgus" ; -- [XBXEO] :: surgeon; (pure Latin medicus vulnerarius L+S); chium_N_N = mkN "chium" ; -- [XAXNO] :: small single seed of Alpine Raetic grape; Chian wine; - chlamis_F_N = mkN "chlamis" "chlamidis " feminine ; -- [XWXCO] :: Greek cloak/cape frequently for military use; state mantle; cloak, mantle; + 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; + chlamys_F_N = mkN "chlamys" "chlamydis" feminine ; -- [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); - chloritis_F_N = mkN "chloritis" "chloritidis " feminine ; -- [XXXNO] :: green precious stone; smaragdoprasus? (L+S); + chlorion_M_N = mkN "chlorion" "chlorionis" masculine ; -- [XAXNO] :: golden oriole (Oriolus galbula); yellow bird, yellow thrush (L+S); + chloritis_F_N = mkN "chloritis" "chloritidis" feminine ; -- [XXXNO] :: green precious stone; smaragdoprasus? (L+S); chloroformium_N_N = mkN "chloroformium" ; -- [GBXEK] :: chloroform; - chloron_N_N = mkN "chloron" "chlori " neuter ; -- [XBXIO] :: kind of eye-salve; + chloron_N_N = mkN "chloron" "chlori" neuter ; -- [XBXIO] :: kind of eye-salve; chlorophyllum_N_N = mkN "chlorophyllum" ; -- [GAXEK] :: chlorophyll; chlorum_N_N = mkN "chlorum" ; -- [GXXEK] :: chlorine; - choaspites_F_N = mkN "choaspites" "choaspitidis " feminine ; -- [XXXNS] :: precious stone; (found in the Choaspes L+S); - choaspitis_F_N = mkN "choaspitis" "choaspitidis " feminine ; -- [XXXNO] :: precious stone; (found in the Choaspes L+S); + choaspites_F_N = mkN "choaspites" "choaspitidis" feminine ; -- [XXXNS] :: precious stone; (found in the Choaspes L+S); + choaspitis_F_N = mkN "choaspitis" "choaspitidis" feminine ; -- [XXXNO] :: precious stone; (found in the Choaspes L+S); choenica_F_N = mkN "choenica" ; -- [XSXFO] :: dry measure (equal to 2 sextarii) (about a quart); - choenix_F_N = mkN "choenix" "choenicis " feminine ; -- [XSXFS] :: dry measure (equal to 2 sextarii) (about a quart); - choeras_F_N = mkN "choeras" "choeradis " feminine ; -- [DBXFS] :: scrofula, king's evil; (chronic lymph gland enlargement); (pure Latin struma); + choenix_F_N = mkN "choenix" "choenicis" feminine ; -- [XSXFS] :: dry measure (equal to 2 sextarii) (about a quart); + choeras_F_N = mkN "choeras" "choeradis" feminine ; -- [DBXFS] :: scrofula, king's evil; (chronic lymph gland enlargement); (pure Latin struma); choerogrillus_M_N = mkN "choerogrillus" ; -- [EAXEE] :: kind of hare; coney (King James); small gregarious quadruped (Hydrax Syriacus); choerogryllus_M_N = mkN "choerogryllus" ; -- [DAXES] :: kind of hare; coney (King James); small gregarious quadruped (Hydrax Syriacus); choerogyllius_M_N = mkN "choerogyllius" ; -- [DAXES] :: kind of hare; coney (King James); small gregarious quadruped (Hydrax Syriacus); - choeros_M_N = mkN "choeros" "choeri " masculine ; -- [XAXFO] :: pig; female pudenda/external genitalia (Greek for porcus/women's nursery term); + choeros_M_N = mkN "choeros" "choeri" masculine ; -- [XAXFO] :: pig; female pudenda/external genitalia (Greek for porcus/women's nursery term); choicus_A = mkA "choicus" "choica" "choicum" ; -- [DXXCS] :: of/made of earth/clay; cholera_F_N = mkN "cholera" ; -- [XBXCO] :: European/summer cholera (cholera nostras); an attack of cholera; cholericus_M_N = mkN "cholericus" ; -- [XBXNO] :: person suffering from European cholera; choliambus_M_N = mkN "choliambus" ; -- [DPXFS] :: limping iambus; (iambic verse whose last foot not iambus but spondee/trochee); - cholras_M_N = mkN "cholras" "cholrae " masculine ; -- [XXXNO] :: variety of emerald; - choma_N_N = mkN "choma" "chomatis " neuter ; -- [XTXFO] :: bank, mound; dike, dam; - chondrille_F_N = mkN "chondrille" "chondrilles " feminine ; -- [XAXNO] :: plant, gum succory? (Chondrilla funcea); Spanish savory, endive/chicory (L+S); - chondrillon_N_N = mkN "chondrillon" "chondrilli " neuter ; -- [XAXNS] :: plant, gum succory? (Chondrilla funcea); Spanish savory, endive/chicory (L+S); - chondris_F_N = mkN "chondris" "chondris " feminine ; -- [XAXNS] :: |plant, kind of horehound resembling marjoram (Marrubium pseudodictamnus); + cholras_M_N = mkN "cholras" "cholrae" masculine ; -- [XXXNO] :: variety of emerald; + choma_N_N = mkN "choma" "chomatis" neuter ; -- [XTXFO] :: bank, mound; dike, dam; + chondrille_F_N = mkN "chondrille" "chondrilles" feminine ; -- [XAXNO] :: plant, gum succory? (Chondrilla funcea); Spanish savory, endive/chicory (L+S); + chondrillon_N_N = mkN "chondrillon" "chondrilli" neuter ; -- [XAXNS] :: plant, gum succory? (Chondrilla funcea); Spanish savory, endive/chicory (L+S); + chondris_F_N = mkN "chondris" "chondris" feminine ; -- [XAXNS] :: |plant, kind of horehound resembling marjoram (Marrubium pseudodictamnus); chondrylla_F_N = mkN "chondrylla" ; -- [XAXNO] :: plant, gum succory? (Chondrilla funcea); Spanish savory, endive/chicory (L+S); - chondrylle_F_N = mkN "chondrylle" "chondrylles " feminine ; -- [XAXNS] :: plant, gum succory? (Chondrilla funcea); Spanish savory, endive/chicory (L+S); + chondrylle_F_N = mkN "chondrylle" "chondrylles" feminine ; -- [XAXNS] :: plant, gum succory? (Chondrilla funcea); Spanish savory, endive/chicory (L+S); chora_F_N = mkN "chora" ; -- [XXXIO] :: site for a monument; choragiarius_M_N = mkN "choragiarius" ; -- [XDXIO] :: supplier of stage equipment/properties/gear/trappings; choragium_N_N = mkN "choragium" ; -- [XDXCS] :: place where chorus practiced; preparing chorus; splendid preparation; a spring; @@ -10129,10 +10129,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat choragus_M_N = mkN "choragus" ; -- [XDXCS] :: |theatrical supplier, one supplying equipment/properties to dramatic company; choralis_A = mkA "choralis" "choralis" "chorale" ; -- [FEXEE] :: choral; choraula_M_N = mkN "choraula" ; -- [XDXEO] :: player on reed pipes; flute player (L+S); - choraule_F_N = mkN "choraule" "choraules " feminine ; -- [XDXIO] :: player (female) on reed pipes; flute player (L+S); - choraules_M_N = mkN "choraules" "choraulae " masculine ; -- [XDXCO] :: player on reed pipes; flute player (L+S); + choraule_F_N = mkN "choraule" "choraules" feminine ; -- [XDXIO] :: player (female) on reed pipes; flute player (L+S); + choraules_M_N = mkN "choraules" "choraulae" masculine ; -- [XDXCO] :: player on reed pipes; flute player (L+S); choraulicus_A = mkA "choraulicus" "choraulica" "choraulicum" ; -- [DDXES] :: of/belonging to player on reed pipes; of/belonging to flute player (L+S); - choraulis_M_N = mkN "choraulis" "choraulis " masculine ; -- [FEXEE] :: young chorister, choirboy; + choraulis_M_N = mkN "choraulis" "choraulis" masculine ; -- [FEXEE] :: young chorister, choirboy; chorda_F_N = mkN "chorda" ; -- [XXXCO] :: tripe; catgut, musical instrument (string); rope/cord (binding slave) (L+S); chordacista_M_N = mkN "chordacista" ; -- [DDXFS] :: player on a stringed instrument; chordapsus_M_N = mkN "chordapsus" ; -- [DBXFS] :: disease of intestines; @@ -10141,47 +10141,47 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat chorea_F_N = mkN "chorea" ; -- [XDXCO] :: round/ring dance; dancers; planet movement; magistrate court; multitude; choir; chorepiscopus_M_N = mkN "chorepiscopus" ; -- [DEXFS] :: deputy bishop for village; auxiliary/suffragan bishop; choreus_M_N = mkN "choreus" ; -- [XPXEO] :: choree/trochee, metrical foot consisting of a long and a short syllable (_U); - choreutes_M_N = mkN "choreutes" "choreutae " masculine ; -- [XDXFO] :: choral dancer; + choreutes_M_N = mkN "choreutes" "choreutae" masculine ; -- [XDXFO] :: choral dancer; choriambicus_A = mkA "choriambicus" "choriambica" "choriambicum" ; -- [XPXFO] :: choriambic; having metrical foot consisting of a chorius and an iambus (_UU_); choriambus_M_N = mkN "choriambus" ; -- [XPXFO] :: metrical foot consisting of a chorius and an iambus (_UU_); choricum_N_N = mkN "choricum" ; -- [XDXFO] :: choral part of a play; choricus_A = mkA "choricus" "chorica" "choricum" ; -- [DDXFS] :: of chorus/choir, choral; (w/metrum) anapaestic verse (hypercatalectic dipody); - chorioides_M_N = mkN "chorioides" "chorioidae " masculine ; -- [XBXFO] :: choriod coat of eye; - chorion_N_N = mkN "chorion" "chorii " neuter ; -- [XBXFO] :: membrane enclosing the fetus, afterbirth; - chorios_M_N = mkN "chorios" "chorii " masculine ; -- [XPXEO] :: choree/trochee, metrical foot consisting of a long and a short syllable (_U); + chorioides_M_N = mkN "chorioides" "chorioidae" masculine ; -- [XBXFO] :: choriod coat of eye; + chorion_N_N = mkN "chorion" "chorii" neuter ; -- [XBXFO] :: membrane enclosing the fetus, afterbirth; + chorios_M_N = mkN "chorios" "chorii" masculine ; -- [XPXEO] :: choree/trochee, metrical foot consisting of a long and a short syllable (_U); chorista_M_N = mkN "chorista" ; -- [FEXEE] :: chorister, choir member; chorius_M_N = mkN "chorius" ; -- [XPXEO] :: choree/trochee, metrical foot consisting of a long and a short syllable (_U); - chorobates_M_N = mkN "chorobates" "chorobatae " masculine ; -- [XTXFO] :: level, instrument consisting of a long pole with a groove for water; - chorocitharistes_M_N = mkN "chorocitharistes" "chorocitharistae " masculine ; -- [XDXFO] :: one who accompanied a chorus on lyre/chithara; + chorobates_M_N = mkN "chorobates" "chorobatae" masculine ; -- [XTXFO] :: level, instrument consisting of a long pole with a groove for water; + chorocitharistes_M_N = mkN "chorocitharistes" "chorocitharistae" masculine ; -- [XDXFO] :: one who accompanied a chorus on lyre/chithara; chorographia_F_N = mkN "chorographia" ; -- [XSXFO] :: work of geography, geography book; chorographus_M_N = mkN "chorographus" ; -- [XSXFS] :: geographer?, one who describes countries?; chorona_F_N = mkN "chorona" ; -- [XXXEO] :: crown, garland, wreath; circle/cordon of men/troops; - chors_F_N = mkN "chors" "chortis " feminine ; -- [XWXAO] :: |cohort, tenth part of legion (360 men); armed force; band; ship crew; bodyguard + chors_F_N = mkN "chors" "chortis" feminine ; -- [XWXAO] :: |cohort, tenth part of legion (360 men); armed force; band; ship crew; bodyguard chortalinus_A = mkA "chortalinus" "chortalina" "chortalinum" ; -- [DWXES] :: of/pertaining to an imperial/praetorian bodyguard (cohort); chortalis_A = mkA "chortalis" "chortalis" "chortale" ; -- [XWXIO] :: |of/connected with a military/praetorian cohort/company/guard; chortinus_A = mkA "chortinus" "chortina" "chortinum" ; -- [XAXNO] :: made from grass or fodder; chorus_M_N = mkN "chorus" ; -- [FEXEE] :: ||choir; singing; sanctuary; those in sanctuary; chrematista_M_N = mkN "chrematista" ; -- [GXXEK] :: agent of change; - chreston_N_N = mkN "chreston" "chresti " neuter ; -- [XAXNO] :: chicory (Cichorium intybus); + chreston_N_N = mkN "chreston" "chresti" neuter ; -- [XAXNO] :: chicory (Cichorium intybus); chria_F_N = mkN "chria" ; -- [XGXFO] :: topic of general application set for study/exercise in grammar/rhetoric school; - chrisma_N_N = mkN "chrisma" "chrismatis " neuter ; -- [DEXCS] :: anointing, unction; sacred oils; - chrismale_N_N = mkN "chrismale" "chrismalis " neuter ; -- [EEXEE] :: linen cloth; winding-sheet/cerecloth; corporal (over mass remnants), pyx; pall; + chrisma_N_N = mkN "chrisma" "chrismatis" neuter ; -- [DEXCS] :: anointing, unction; sacred oils; + chrismale_N_N = mkN "chrismale" "chrismalis" neuter ; -- [EEXEE] :: linen cloth; winding-sheet/cerecloth; corporal (over mass remnants), pyx; pall; chrismalis_A = mkA "chrismalis" "chrismalis" "chrismale" ; -- [EEXFE] :: pertaining to chrisma/sacred oils; chrismarium_N_N = mkN "chrismarium" ; -- [EEXEE] :: vessel for chrisma/sacred oils; - chrismatio_F_N = mkN "chrismatio" "chrismationis " feminine ; -- [EEXDE] :: anointing with 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; 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); + 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); - chromis_F_N = mkN "chromis" "chromis " feminine ; -- [XAXEO] :: sea fish; (Umbrina cirrosa?); - chromis_M_N = mkN "chromis" "chromis " masculine ; -- [XAXEO] :: sea fish; (Umbrina cirrosa?); + chromis_F_N = mkN "chromis" "chromis" feminine ; -- [XAXEO] :: sea fish; (Umbrina cirrosa?); + chromis_M_N = mkN "chromis" "chromis" masculine ; -- [XAXEO] :: sea fish; (Umbrina cirrosa?); chromium_N_N = mkN "chromium" ; -- [GSXEK] :: chromium; - chromosoma_N_N = mkN "chromosoma" "chromosomatis " neuter ; -- [HSXEK] :: chromosome; + chromosoma_N_N = mkN "chromosoma" "chromosomatis" neuter ; -- [HSXEK] :: chromosome; chromosomaticus_A = mkA "chromosomaticus" "chromosomatica" "chromosomaticum" ; -- [HSXEK] :: chromosomal; chronica_F_N = mkN "chronica" ; -- [EXXEB] :: book of annuals, chronicles (pl.); - chronicon_N_N = mkN "chronicon" "chronici " neuter ; -- [EXXEE] :: book of annuals, chronicle; + chronicon_N_N = mkN "chronicon" "chronici" neuter ; -- [EXXEE] :: book of annuals, chronicle; chronicum_N_N = mkN "chronicum" ; -- [XXXEO] :: book of annuals, chronicle; chronicus_A = mkA "chronicus" "chronica" "chronicum" ; -- [XXXFO] :: written as annual/chronicle; pertaining to time; chronic/lingering (L+S); chronista_M_N = mkN "chronista" ; -- [EEXEE] :: chronicler; person who chants narrative parts in the_Passion; @@ -10189,92 +10189,92 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat chronographus_M_N = mkN "chronographus" ; -- [DXXFS] :: chronographer, annalist, chronicler; chronologia_F_N = mkN "chronologia" ; -- [FXXEE] :: chronology; chronologicus_A = mkA "chronologicus" "chronologica" "chronologicum" ; -- [FXXFE] :: chronological; - chrysallis_F_N = mkN "chrysallis" "chrysallis " feminine ; -- [XAXNO] :: chrysalis; gold-colored chrysalis, aurelia/pupa of a butterfly (L+S); - chrysanthemon_N_N = mkN "chrysanthemon" "chrysanthemi " neuter ; -- [XAXNO] :: several plants of order Compositae; marigold (L+S); + chrysallis_F_N = mkN "chrysallis" "chrysallis" feminine ; -- [XAXNO] :: chrysalis; gold-colored chrysalis, aurelia/pupa of a butterfly (L+S); + chrysanthemon_N_N = mkN "chrysanthemon" "chrysanthemi" neuter ; -- [XAXNO] :: several plants of order Compositae; marigold (L+S); chrysanthemum_N_N = mkN "chrysanthemum" ; -- [XAXNO] :: several plants of order Compositae; marigold (L+S); - chrysanthes_F_N = mkN "chrysanthes" "chrysanthae " feminine ; -- [XAXFS] :: name of several plants of order Compositae; marigold (L+S); + chrysanthes_F_N = mkN "chrysanthes" "chrysanthae" feminine ; -- [XAXFS] :: name of several plants of order Compositae; marigold (L+S); chrysanthus_M_N = mkN "chrysanthus" ; -- [XAXFO] :: name of several plants of order Compositae; marigold (L+S); chrysatticum_N_N = mkN "chrysatticum" ; -- [EAXFP] :: golden-attic wine; - chryselectros_F_N = mkN "chryselectros" "chryselectri " feminine ; -- [XXXNO] :: amber-colored gem; (classed by Pliny with hyacinthus); + chryselectros_F_N = mkN "chryselectros" "chryselectri" feminine ; -- [XXXNO] :: amber-colored gem; (classed by Pliny with hyacinthus); chryselectrum_N_N = mkN "chryselectrum" ; -- [XXXNO] :: gold-colored amber; chryselectrus_F_N = mkN "chryselectrus" ; -- [XXXNS] :: dark-yellow precious stone; amber-colored jacinth/hyacinth-stone?; chrysendetum_N_N = mkN "chrysendetum" ; -- [XXXFO] :: things (e.g. dishes) inlaid with gold; chrysendetus_A = mkA "chrysendetus" "chrysendeta" "chrysendetum" ; -- [XXXFO] :: inlaid with gold; set in/with gold; chryseum_N_N = mkN "chryseum" ; -- [DXXFS] :: gold/gold-colored/golden vessels/dishes; chryseus_A = mkA "chryseus" "chrysea" "chryseum" ; -- [DXXFS] :: gold-colored, golden; - chrysites_M_N = mkN "chrysites" "chrysitae " masculine ; -- [XXXNS] :: kind of precious stone; phloginos (flame-colored gem); another gold-colored gem; + chrysites_M_N = mkN "chrysites" "chrysitae" masculine ; -- [XXXNS] :: kind of precious stone; phloginos (flame-colored gem); another gold-colored gem; chrysitis_A = mkA "chrysitis" "chrysitidis"; -- [XXXNS] :: gold-colored, golden; of golden color; - chrysitis_F_N = mkN "chrysitis" "chrysitidis " feminine ; -- [XXXNS] :: plant (Chrysocoma linosyris?); unidentified precious stone; a native lead oxide; + chrysitis_F_N = mkN "chrysitis" "chrysitidis" feminine ; -- [XXXNS] :: plant (Chrysocoma linosyris?); unidentified precious stone; a native lead oxide; chrysizon_A = mkA "chrysizon" "chrysizontos"; -- [XXXNO] :: gold-colored, golden; of golden color; chrysoaspides_A = mkA "chrysoaspides" "chrysoaspides" "chrysoaspides" ; -- [DWXFS] :: bearing golden shields (kind of soldier serving under Alexander Severus); chrysoberullus_M_N = mkN "chrysoberullus" ; -- [XXXNO] :: gold-colored beryl; chrysoberyl (L+S); chrysoberyllus_M_N = mkN "chrysoberyllus" ; -- [XXXNS] :: gold-colored beryl; chrysoberyl (L+S); - chrysocalis_F_N = mkN "chrysocalis" "chrysocalis " feminine ; -- [DAXFS] :: plant; (also called parthenium); - chrysocanthos_F_N = mkN "chrysocanthos" "chrysocanthi " feminine ; -- [DAXFS] :: kind of ivy having golden berries; + chrysocalis_F_N = mkN "chrysocalis" "chrysocalis" feminine ; -- [DAXFS] :: plant; (also called parthenium); + chrysocanthos_F_N = mkN "chrysocanthos" "chrysocanthi" feminine ; -- [DAXFS] :: kind of ivy having golden berries; chrysocarpos_A = mkA "chrysocarpos" "chrysocarpos" "chrysocarpon" ; -- [XAXNO] :: having golden berries; chrysocarpus_A = mkA "chrysocarpus" "chrysocarpa" "chrysocarpum" ; -- [XAXNO] :: having golden berries; - chrysocephalos_M_N = mkN "chrysocephalos" "chrysocephali " masculine ; -- [DAXFS] :: golden basilisk; + chrysocephalos_M_N = mkN "chrysocephalos" "chrysocephali" masculine ; -- [DAXFS] :: golden basilisk; chrysococcus_A = mkA "chrysococcus" "chrysococca" "chrysococcum" ; -- [DAXFS] :: having golden grains; chrysocolla_F_N = mkN "chrysocolla" ; -- [XXXCO] :: green copper carbonate/malachite (pigment/medicine); stone (magnetic pyrite?); - chrysocome_F_N = mkN "chrysocome" "chrysocomes " feminine ; -- [XAXNO] :: plant (Chrysocoma linosyris?); + chrysocome_F_N = mkN "chrysocome" "chrysocomes" feminine ; -- [XAXNO] :: plant (Chrysocoma linosyris?); chrysographatus_A = mkA "chrysographatus" "chrysographata" "chrysographatum" ; -- [XXXFS] :: inlaid with gold; chrysolachanum_N_N = mkN "chrysolachanum" ; -- [XAXNO] :: plant (orach?); garden orachn; (also called atriplex L+S); - chrysolampis_F_N = mkN "chrysolampis" "chrysolampidis " feminine ; -- [XXXNO] :: unidentified precious stone; - chrysolithos_F_N = mkN "chrysolithos" "chrysolithi " feminine ; -- [XXXEO] :: topaz; chrysolite (L+S); - chrysolithos_M_N = mkN "chrysolithos" "chrysolithi " masculine ; -- [XXXEO] :: topaz; chrysolite (L+S); + chrysolampis_F_N = mkN "chrysolampis" "chrysolampidis" feminine ; -- [XXXNO] :: unidentified precious stone; + chrysolithos_F_N = mkN "chrysolithos" "chrysolithi" feminine ; -- [XXXEO] :: topaz; chrysolite (L+S); + chrysolithos_M_N = mkN "chrysolithos" "chrysolithi" masculine ; -- [XXXEO] :: topaz; chrysolite (L+S); chrysolithus_M_N = mkN "chrysolithus" ; -- [EXXEE] :: topaz; chrysolite (L+S); chrysolitus_C_N = mkN "chrysolitus" ; -- [EXXEW] :: topaz; chrysolite; (Vulgate); chrysomallus_A = mkA "chrysomallus" "chrysomalla" "chrysomallum" ; -- [XAXFO] :: having a golden fleece; chrysomelinus_A = mkA "chrysomelinus" "chrysomelina" "chrysomelinum" ; -- [XAXNO] :: variety of quince (w/mala); chrysomelum_N_N = mkN "chrysomelum" ; -- [XAXNO] :: variety of quince; chrysopastus_F_N = mkN "chrysopastus" ; -- [DXXFS] :: species of topaz; - chrysophrysos_F_N = mkN "chrysophrysos" "chrysophryi " feminine ; -- [XAXEO] :: fish; (gilt-head? Sparus aurata); - chrysopis_F_N = mkN "chrysopis" "chrysopidis " feminine ; -- [XXXNO] :: unidentified precious stone; precious topaz (L+S); + chrysophrysos_F_N = mkN "chrysophrysos" "chrysophryi" feminine ; -- [XAXEO] :: fish; (gilt-head? Sparus aurata); + chrysopis_F_N = mkN "chrysopis" "chrysopidis" feminine ; -- [XXXNO] :: unidentified precious stone; precious topaz (L+S); chrysoprasius_A = mkA "chrysoprasius" "chrysoprasia" "chrysoprasium" ; -- [XXXNS] :: variety of precious stone (chrysoprase/golden-green beryl and like); - chrysoprasos_F_N = mkN "chrysoprasos" "chrysoprasi " feminine ; -- [XXXCO] :: precious stone, chrysoprase; (golden-green beryl and like); - chrysoprassos_F_N = mkN "chrysoprassos" "chrysoprassi " feminine ; -- [EXXCW] :: precious stone, chrysoprase; (golden-green beryl and like); + chrysoprasos_F_N = mkN "chrysoprasos" "chrysoprasi" feminine ; -- [XXXCO] :: precious stone, chrysoprase; (golden-green beryl and like); + chrysoprassos_F_N = mkN "chrysoprassos" "chrysoprassi" feminine ; -- [EXXCW] :: precious stone, chrysoprase; (golden-green beryl and like); chrysoprassus_F_N = mkN "chrysoprassus" ; -- [EXXCW] :: precious stone, chrysoprase; (golden-green beryl and like); chrysoprasum_N_N = mkN "chrysoprasum" ; -- [XXXCO] :: precious stone, chrysoprase; (golden-green beryl and like); chrysoprasus_M_N = mkN "chrysoprasus" ; -- [FXXCE] :: precious stone, chrysoprase; (golden-green beryl and like); chrysopteros_A = mkA "chrysopteros" "chrysopteros" "chrysopteron" ; -- [XXXNO] :: golden-winged; (of a kind of jasper); - 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; + 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; 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); + chylisma_N_N = mkN "chylisma" "chylismatis" neuter ; -- [XAXFO] :: extracted/expressed juice (of plants); chylus_M_N = mkN "chylus" ; -- [DAXFS] :: extracted/expressed juice (of plants); chymus_M_N = mkN "chymus" ; -- [DBXFS] :: stomach juices/fluid, chyle; chyrogrillius_M_N = mkN "chyrogrillius" ; -- [EAQFW] :: coney (of King James Bible, small gregarious quadruped (Hydrax Syriacus); hare; chyrogryllius_M_N = mkN "chyrogryllius" ; -- [EAQFW] :: coney (of King James Bible, small gregarious quadruped (Hydrax Syriacus); hare; - chytropus_M_N = mkN "chytropus" "chytropodis " masculine ; -- [DXXFS] :: chafing dish/pot with feet (for cooking directly over coals on ground); + chytropus_M_N = mkN "chytropus" "chytropodis" masculine ; -- [DXXFS] :: chafing dish/pot with feet (for cooking directly over coals on ground); cibalis_A = mkA "cibalis" "cibalis" "cibale" ; -- [DXXFS] :: of/pertaining to food; [w/fistula => esophagus/gullet]; cibarium_N_N = mkN "cibarium" ; -- [XXXCS] :: shorts, coarser meal remaining after fine flour; ordinary musician; cibarius_A = mkA "cibarius" "cibaria" "cibarium" ; -- [XXXCO] :: of/concerning food/rations, ration-; plain/common/servant (food), black (bread); - cibatio_F_N = mkN "cibatio" "cibationis " feminine ; -- [DXXES] :: meal, repast; feeding; - cibatus_M_N = mkN "cibatus" "cibatus " masculine ; -- [XAXCO] :: food, nutriment, victuals; fodder; + cibatio_F_N = mkN "cibatio" "cibationis" feminine ; -- [DXXES] :: meal, repast; feeding; + cibatus_M_N = mkN "cibatus" "cibatus" masculine ; -- [XAXCO] :: food, nutriment, victuals; fodder; cibdelus_A = mkA "cibdelus" "cibdela" "cibdelum" ; -- [XXXFS] :: spurious, base; [w/fontes => impure/unhealthy spring/source]; cibicida_M_N = mkN "cibicida" ; -- [XXXFO] :: eater, consumer of food; (food killer); waste of bread/food (lazy slave) (L+S); - cibisis_F_N = mkN "cibisis" "cibisis " feminine ; -- [XXXFO] :: satchel; + cibisis_F_N = mkN "cibisis" "cibisis" feminine ; -- [XXXFO] :: satchel; cibo_V2 = mkV2 (mkV "cibare") ; -- [XXXEO] :: feed, give food/fodder to animals/men; (also passive sense) eat, take food; ciboria_F_N = mkN "ciboria" ; -- [DAEFS] :: Egyptian bean (Nelumbo nucifera); (Arum colocasia L+S); ciborium_N_N = mkN "ciborium" ; -- [XXXFO] :: drinking cup; (made of/shaped like flower of Egyptian bean Nelumbo nucifera); cibus_M_N = mkN "cibus" ; -- [XXXAO] :: food; fare, rations; nutriment, sustenance, fuel; eating, a meal; bait; cicada_F_N = mkN "cicada" ; -- [XAXCO] :: cicada, tree-cricket; Athenian hair ornament in shape of cicada; summer season; - cicaro_M_N = mkN "cicaro" "cicaronis " masculine ; -- [XXXFO] :: little boy, darling; + cicaro_M_N = mkN "cicaro" "cicaronis" masculine ; -- [XXXFO] :: little boy, darling; cicatrico_V2 = mkV2 (mkV "cicatricare") ; -- [XBXFO] :: form a scar over; cicatricor_V = mkV "cicatricari" ; -- [DBXCS] :: be scarred over/cicatrized; cicatricosus_A = mkA "cicatricosus" "cicatricosa" "cicatricosum" ; -- [XBXCO] :: scarred, covered by scars; marked by pruning (plant); edited/polished (writing); cicatricula_F_N = mkN "cicatricula" ; -- [XBXFO] :: small scar; - cicatrix_F_N = mkN "cicatrix" "cicatricis " feminine ; -- [XBXBO] :: scar/cicatrice; wound/bruise; emotional scar; prune mark on plant/tool on work; + cicatrix_F_N = mkN "cicatrix" "cicatricis" feminine ; -- [XBXBO] :: scar/cicatrice; wound/bruise; emotional scar; prune mark on plant/tool on work; ciccum_N_N = mkN "ciccum" ; -- [XXXEO] :: proverbially worthless object, trifle, bagatelle; seed membrane of pomegranate; - cicer_N_N = mkN "cicer" "ciceris " neuter ; -- [XAXCO] :: chick pea (Cicer aristinum); (as a common food); (rude) testicles, penis?; + cicer_N_N = mkN "cicer" "ciceris" neuter ; -- [XAXCO] :: chick pea (Cicer aristinum); (as a common food); (rude) testicles, penis?; cicera_F_N = mkN "cicera" ; -- [XAXFO] :: chickling vetch; (Latyrus?); cicercula_F_N = mkN "cicercula" ; -- [XAXEO] :: small variety of chick-pea; cicerculum_N_N = mkN "cicerculum" ; -- [XXXNO] :: kind of ocher; reddish earth pigment; African species of pigment sinopia; cichoreum_N_N = mkN "cichoreum" ; -- [XAXEO] :: chicory (Cichorium intybus), succory, endive; - cichorion_N_N = mkN "cichorion" "cichorii " neuter ; -- [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; 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; @@ -10282,17 +10282,17 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cicimalindrum_N_N = mkN "cicimalindrum" ; -- [BXXFO] :: comic name for an imaginary condiment; cicimandrum_N_N = mkN "cicimandrum" ; -- [BXXFO] :: comic name for an imaginary condiment; cicindela_F_N = mkN "cicindela" ; -- [XAXEO] :: firefly (Luciola italica); candle; glow-worm (L+S); cicindelid/beetle (Cal); - cicindele_N_N = mkN "cicindele" "cicindelis " neuter ; -- [FXXEE] :: lamp (made of glass); + cicindele_N_N = mkN "cicindele" "cicindelis" neuter ; -- [FXXEE] :: lamp (made of glass); cicinus_A = mkA "cicinus" "cicina" "cicinum" ; -- [XAXEO] :: castor; [oleum cicinum => castor oil]; ciconia_F_N = mkN "ciconia" ; -- [XAXCO] :: stork; derisive gesture made with fingers; T-shaped tool for measuring depth; ciconius_A = mkA "ciconius" "ciconia" "ciconium" ; -- [DAXFS] :: of/pertaining to stork; cicuma_F_N = mkN "cicuma" ; -- [XAXFO] :: owl; cicur_A = mkA "cicur" "cicuris"; -- [XAXCO] :: tame (animal), domesticated; mild/gentle (person); - cicur_M_N = mkN "cicur" "cicuris " masculine ; -- [XAXFO] :: tame animal, domesticated animal; + cicur_M_N = mkN "cicur" "cicuris" masculine ; -- [XAXFO] :: tame animal, domesticated animal; cicuro_V2 = mkV2 (mkV "cicurare") ; -- [XAXEO] :: tame; pacify; cicuta_F_N = mkN "cicuta" ; -- [XAXCO] :: hemlock (Conium maculatum); hemlock juice (poison); shepherd's pipe (hemlock); - cicuticen_M_N = mkN "cicuticen" "cicuticinis " masculine ; -- [DDXFS] :: player of reed/shepherd's pipe; (often made of cicuta/hemlock stalks); - cidaris_F_N = mkN "cidaris" "cidaris " feminine ; -- [XXPFO] :: head-dress of a Persian king; tiara; diadem (L+S), of high priest of Jews; + cicuticen_M_N = mkN "cicuticen" "cicuticinis" masculine ; -- [DDXFS] :: player of reed/shepherd's pipe; (often made of cicuta/hemlock stalks); + cidaris_F_N = mkN "cidaris" "cidaris" feminine ; -- [XXPFO] :: head-dress of a Persian king; tiara; diadem (L+S), of high priest of Jews; cieo_V2 = mkV2 (mkV "ciere") ; -- [XXXAO] :: |disturb, shake; provoke (war); invoke, call on by name; cite; raise/produce; cignus_M_N = mkN "cignus" ; -- [DSXFS] :: measure; (equal to 8 scrupuli/srcipuli); (1/2 or 3/3 of an ounce); cilibantum_N_N = mkN "cilibantum" ; -- [XXXFS] :: round cupboard; @@ -10300,44 +10300,44 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cilicinus_A = mkA "cilicinus" "cilicina" "cilicinum" ; -- [XXXFS] :: hair-, made of (goat's) hair; (garment originating in Cilicia); of haircloth; ciliciolum_N_N = mkN "ciliciolum" ; -- [EXXFS] :: small garment/coverlet/blanket of goat's hair; (originating in Cilicia); cilicium_N_N = mkN "cilicium" ; -- [XXXCO] :: rug/blanket/small garment of goat's hair; (originating in Cilicia); - cilio_M_N = mkN "cilio" "cilionis " masculine ; -- [DTXIS] :: chisel/graver (vulgar); + cilio_M_N = mkN "cilio" "cilionis" masculine ; -- [DTXIS] :: chisel/graver (vulgar); 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_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); + 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; cimeliarchium_N_N = mkN "cimeliarchium" ; -- [DLXFS] :: treasury, place where treasure is deposited; 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); + 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; cinaedia_F_N = mkN "cinaedia" ; -- [XXXNO] :: precious stone; (from brain of a fish); - cinaedias_M_N = mkN "cinaedias" "cinaediae " masculine ; -- [XXXNS] :: precious stone; (from brain of a fish); + cinaedias_M_N = mkN "cinaedias" "cinaediae" masculine ; -- [XXXNS] :: precious stone; (from brain of a fish); cinaedicus_A = mkA "cinaedicus" "cinaedica" "cinaedicum" ; -- [XXXEO] :: lewd; wanton; immodest; pertaining to one who is unchaste; cinaedicus_C_N = mkN "cinaedicus" ; -- [XXXEO] :: lewd/wanton/immodest/unchaste/shameless person; catamite; cinaedium_N_N = mkN "cinaedium" ; -- [XXXNO] :: precious stone; (from brain of a fish); 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; + cinaedologos_M_N = mkN "cinaedologos" "cinaedologi" masculine ; -- [XXXFO] :: teller of lewd stories; cinaedulus_M_N = mkN "cinaedulus" ; -- [XXXEO] :: catamite, pathic; a male wanton; 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; + cinaris_F_N = mkN "cinaris" "cinaris" feminine ; -- [XAXNO] :: unidentified plant; cincinnalis_A = mkA "cincinnalis" "cincinnalis" "cincinnale" ; -- [DXXFS] :: curled, curly; [~ herba => plant also called polytrichon]; cincinnatus_A = mkA "cincinnatus" "cincinnata" "cincinnatum" ; -- [XXXCO] :: with curled/curly hair; with hair in ringlets; (artificially); (of comets); cincinnus_M_N = mkN "cincinnus" ; -- [XXXCO] :: ringlet, curl/lock; curled hair; rhetorical flourish, artificial embellishment; cincticulus_M_N = mkN "cincticulus" ; -- [XXXFO] :: belt, (small/little) girdle; apron (Ecc); - cinctor_M_N = mkN "cinctor" "cinctoris " masculine ; -- [XWXFS] :: warrior's belt; + cinctor_M_N = mkN "cinctor" "cinctoris" masculine ; -- [XWXFS] :: warrior's belt; cinctorium_N_N = mkN "cinctorium" ; -- [XWXFO] :: sword belt; (late) girdle (L+S); cinctum_N_N = mkN "cinctum" ; -- [XXXES] :: girdle, method of girding clothes; crown/garland; belt; cinctura_F_N = mkN "cinctura" ; -- [XXXEO] :: belt; girdle; means of girding; cinctus_A = mkA "cinctus" "cincta" "cinctum" ; -- [XXXBO] :: |having one's dress girt in special way; fastened round; [w/alte => for action]; - cinctus_M_N = mkN "cinctus" "cinctus " masculine ; -- [XXXCO] :: girdle, method of girding clothes; crown/garland; belt; + cinctus_M_N = mkN "cinctus" "cinctus" masculine ; -- [XXXCO] :: girdle, method of girding clothes; crown/garland; belt; cinctutus_A = mkA "cinctutus" "cinctuta" "cinctutum" ; -- [XXXEO] :: wearing girdle or loin-cloth; girded/girt; (as ancients whose toga was girded); cindecoe_Adv = mkAdv "cindecoe" ; -- [XXXFO] :: elegantly; cinefactus_A = mkA "cinefactus" "cinefacta" "cinefactum" ; -- [XXXFO] :: reduced/turned to ashes; @@ -10348,8 +10348,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cinematographicus_M_N = mkN "cinematographicus" ; -- [HXXFE] :: movie scriptwriter; cinematographo_V = mkV "cinematographare" ; -- [HXXEK] :: film; cinematographus_M_N = mkN "cinematographus" ; -- [HXXEK] :: film-maker; - ciner_F_N = mkN "ciner" "cineris " feminine ; -- [XXXFS] :: ashes; embers, spent love/hate; ruin, destruction; the grave/dead, cremation; - ciner_M_N = mkN "ciner" "cineris " masculine ; -- [XXXFS] :: ashes; embers, spent love/hate; ruin, destruction; the grave/dead, cremation; + ciner_F_N = mkN "ciner" "cineris" feminine ; -- [XXXFS] :: ashes; embers, spent love/hate; ruin, destruction; the grave/dead, cremation; + ciner_M_N = mkN "ciner" "cineris" masculine ; -- [XXXFS] :: ashes; embers, spent love/hate; ruin, destruction; the grave/dead, cremation; cineraceus_A = mkA "cineraceus" "cineracea" "cineraceum" ; -- [XXXEO] :: ashen, ashy, resembling ash in color, ash-colored; cineracius_A = mkA "cineracius" "cineracia" "cineracium" ; -- [XXXEO] :: ashen, ashy, resembling ash in color, ash-colored; cinerarium_N_N = mkN "cinerarium" ; -- [XEXIO] :: receptacle/niche for ashes of the dead; @@ -10361,109 +10361,109 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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; - cinifes_F_N = mkN "cinifes" "cinifis " feminine ; -- [DAHES] :: kind of stinging insects; very small flies, gnats; lice/flies/others (OLD); - ciniflo_M_N = mkN "ciniflo" "ciniflonis " masculine ; -- [XXXFO] :: heater of curling-irons, hair-dresser; - ciniphs_F_N = mkN "ciniphs" "ciniphis " feminine ; -- [DAHES] :: kind of stinging insects; very small flies, gnats; lice/flies/others (OLD); - cinis_F_N = mkN "cinis" "cineris " feminine ; -- [XXXAO] :: ashes; embers, spent love/hate; ruin, destruction; the grave/dead, cremation; - cinis_M_N = mkN "cinis" "cineris " masculine ; -- [XXXAO] :: ashes; embers, spent love/hate; ruin, destruction; the grave/dead, cremation; + cinifes_F_N = mkN "cinifes" "cinifis" feminine ; -- [DAHES] :: kind of stinging insects; very small flies, gnats; lice/flies/others (OLD); + ciniflo_M_N = mkN "ciniflo" "ciniflonis" masculine ; -- [XXXFO] :: heater of curling-irons, hair-dresser; + ciniphs_F_N = mkN "ciniphs" "ciniphis" feminine ; -- [DAHES] :: kind of stinging insects; very small flies, gnats; lice/flies/others (OLD); + cinis_F_N = mkN "cinis" "cineris" feminine ; -- [XXXAO] :: ashes; embers, spent love/hate; ruin, destruction; the grave/dead, cremation; + cinis_M_N = mkN "cinis" "cineris" masculine ; -- [XXXAO] :: ashes; embers, spent love/hate; ruin, destruction; the grave/dead, cremation; cinisculus_M_N = mkN "cinisculus" ; -- [DXXFS] :: little ashes; - cinnabar_N_N = mkN "cinnabar" "cinnabaris " neuter ; -- [XAXNS] :: red pigment/dragon's blood; resin of tree Pterocarpus draco; (NOT HgS/cinnabar); - cinnabaris_F_N = mkN "cinnabaris" "cinnabaris " feminine ; -- [XAXNO] :: red pigment/dragon's blood; resin of tree Pterocarpus draco; (NOT HgS/cinnabar); + cinnabar_N_N = mkN "cinnabar" "cinnabaris" neuter ; -- [XAXNS] :: red pigment/dragon's blood; resin of tree Pterocarpus draco; (NOT HgS/cinnabar); + cinnabaris_F_N = mkN "cinnabaris" "cinnabaris" feminine ; -- [XAXNO] :: red pigment/dragon's blood; resin of tree Pterocarpus draco; (NOT HgS/cinnabar); cinnameus_A = mkA "cinnameus" "cinnamea" "cinnameum" ; -- [XXXFO] :: scented with/smelling of cinnamon; of/from cinnamon (L+S); cinnaminum_N_N = mkN "cinnaminum" ; -- [XBXIO] :: eye-salve made from cinnamon; - cinnamolgos_M_N = mkN "cinnamolgos" "cinnamolgi " masculine ; -- [XAQNO] :: bird; (of Arabia); + cinnamolgos_M_N = mkN "cinnamolgos" "cinnamolgi" masculine ; -- [XAQNO] :: bird; (of Arabia); cinnamominus_A = mkA "cinnamominus" "cinnamomina" "cinnamominum" ; -- [XXXNO] :: made from cinnamon; of/from cinnamon (L+S); cinnamomum_N_N = mkN "cinnamomum" ; -- [XAXEO] :: |superior kind of cassis; cinnamon-like bark (Cinnamonum cassia); - cinnamon_N_N = mkN "cinnamon" "cinnami " neuter ; -- [XAXCO] :: cinnamon; cinnamon (shrub/twigs); (applied to another aromatic oil); + cinnamon_N_N = mkN "cinnamon" "cinnami" neuter ; -- [XAXCO] :: cinnamon; cinnamon (shrub/twigs); (applied to another aromatic oil); cinnamum_N_N = mkN "cinnamum" ; -- [XAXCO] :: cinnamon; cinnamon (shrub/twigs); (applied to another aromatic oil); cinnamus_M_N = mkN "cinnamus" ; -- [DAXES] :: cinnamon; cinnamon (shrub/twigs); (applied to another aromatic oil); cinnus_M_N = mkN "cinnus" ; -- [XBXFO] :: kind of facial distortion or grimace; - cinus_F_N = mkN "cinus" "cineris " feminine ; -- [XXXES] :: ashes; embers, spent love/hate; ruin, destruction; the grave/dead, cremation; - cinus_M_N = mkN "cinus" "cineris " masculine ; -- [XXXES] :: ashes; embers, spent love/hate; ruin, destruction; the grave/dead, cremation; - cinyphes_F_N = mkN "cinyphes" "cinyphis " feminine ; -- [DAXCS] :: kind of stinging insect; very small flies, gnats; + cinus_F_N = mkN "cinus" "cineris" feminine ; -- [XXXES] :: ashes; embers, spent love/hate; ruin, destruction; the grave/dead, cremation; + cinus_M_N = mkN "cinus" "cineris" masculine ; -- [XXXES] :: ashes; embers, spent love/hate; ruin, destruction; the grave/dead, cremation; + cinyphes_F_N = mkN "cinyphes" "cinyphis" feminine ; -- [DAXCS] :: kind of stinging insect; very small flies, gnats; cinyra_F_N = mkN "cinyra" ; -- [DDXES] :: lyre, ten-stringed instrument; cio_V2 = mkV2 (mkV "cire") ; -- [XXXAO] :: |disturb, shake; provoke (war); invoke, call on by name; cite; raise/produce; ciphus_M_N = mkN "ciphus" ; -- [FXXCL] :: bowl, goblet, cup; communion cup; 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); + circaeon_N_N = mkN "circaeon" "circaei" neuter ; -- [XAXNO] :: plant, mandrake; (alternative name for mandragoras); circaeum_N_N = mkN "circaeum" ; -- [XAXNS] :: plant, mandrake; (alternative name for mandragoras); circamoerium_N_N = mkN "circamoerium" ; -- [XXXFO] :: open space round town; (Livy coined for pomoerium/open space round town wall); circanea_F_N = mkN "circanea" ; -- [XAXFS] :: bird; (named from its circular flight); circellus_M_N = mkN "circellus" ; -- [XXXES] :: small ring; - circen_N_N = mkN "circen" "circinis " neuter ; -- [XXXFS] :: circle; circular course; [w/solis => a year (poetic)]; + circen_N_N = mkN "circen" "circinis" neuter ; -- [XXXFS] :: circle; circular course; [w/solis => a year (poetic)]; circensis_A = mkA "circensis" "circensis" "circense" ; -- [XXXCO] :: of the Circus; associated with games in circus; used at circus; - circensis_M_N = mkN "circensis" "circensis " masculine ; -- [XXXCO] :: games in the Circus (pl.); games/exercises of wrestling, running, fighting; - circes_M_N = mkN "circes" "circitis " masculine ; -- [XXXEO] :: circle, ring; circuit, circumference of the circus; + circensis_M_N = mkN "circensis" "circensis" masculine ; -- [XXXCO] :: games in the Circus (pl.); games/exercises of wrestling, running, fighting; + circes_M_N = mkN "circes" "circitis" masculine ; -- [XXXEO] :: circle, ring; circuit, circumference of the circus; circiensis_A = mkA "circiensis" "circiensis" "circiense" ; -- [XXXEO] :: of the Circus; associated with games in circus; used at circus; - circiensis_M_N = mkN "circiensis" "circiensis " masculine ; -- [XXXEO] :: games in the Circus (pl.); games/exercises of wrestling, running, fighting; - circinatio_F_N = mkN "circinatio" "circinationis " feminine ; -- [XXXEO] :: circular line/form; circular motion, revolution; circle, circumference (L+S); + circiensis_M_N = mkN "circiensis" "circiensis" masculine ; -- [XXXEO] :: games in the Circus (pl.); games/exercises of wrestling, running, fighting; + circinatio_F_N = mkN "circinatio" "circinationis" feminine ; -- [XXXEO] :: circular line/form; circular motion, revolution; circle, circumference (L+S); 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; + circitor_M_N = mkN "circitor" "circitoris" masculine ; -- [XXXDO] :: person who goes round; patrol/watchman, overseer/inspector; hawker, peddler; circitorium_N_N = mkN "circitorium" ; -- [FXXFE] :: curtain; veil; circitorius_A = mkA "circitorius" "circitoria" "circitorium" ; -- [DLXFS] :: of/pertaining to patrols; circius_M_N = mkN "circius" ; -- [XSXCO] :: wind between north and west; WNW wind (L+S); (in Gallia Narbonensis); 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; - 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; + circos_M_N = mkN "circos" "circi" masculine ; -- [XXXNO] :: precious stone; + circuago_V2 = mkV2 (mkV "circuagere" "circuago" "circuegi" "circuactus") ; -- [XXXAO] :: drive/lead around; turn (around); wheel, revolve; upset; change opinions, sway; + circueo_1_V = mkV "circuire" "circueo" "circuivi" "circuitus" ; -- [XXXAO] :: encircle, surround; border; skirt; circulate/wander through; go/measure round; + circueo_2_V = mkV "circuire" "circueo" "circuiii" "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; circularis_A = mkA "circularis" "circularis" "circulare" ; -- [XXXFO] :: circular, round; circulatim_Adv = mkAdv "circulatim" ; -- [XXXFO] :: in circles, in groups/companies; in a circle; - circulatio_F_N = mkN "circulatio" "circulationis " feminine ; -- [XSXFS] :: circular course, revolution; - circulator_M_N = mkN "circulator" "circulatoris " masculine ; -- [XDXDO] :: itinerant performer/vendor; (who gathers impromptu groups round him); + circulatio_F_N = mkN "circulatio" "circulationis" feminine ; -- [XSXFS] :: circular course, revolution; + circulator_M_N = mkN "circulator" "circulatoris" masculine ; -- [XDXDO] :: itinerant performer/vendor; (who gathers impromptu groups round him); circulatorius_A = mkA "circulatorius" "circulatoria" "circulatorium" ; -- [XXXFO] :: of/characteristic of circulator (itinerate performer/peddler, mountebank/quack); - circulatrix_F_N = mkN "circulatrix" "circulatricis " feminine ; -- [XDXEO] :: female itinerant performer/peddler/stroller; (gather impromptu group round her); + circulatrix_F_N = mkN "circulatrix" "circulatricis" feminine ; -- [XDXEO] :: female itinerant performer/peddler/stroller; (gather impromptu group round her); 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; + 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; + 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; + 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; 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; + 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; + 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; circumcisicius_A = mkA "circumcisicius" "circumcisicia" "circumcisicium" ; -- [XAXFO] :: must/juice of second press of grapes after projecting mass is cut and put back; - circumcisio_F_N = mkN "circumcisio" "circumcisionis " feminine ; -- [DEXES] :: circumcision; cutting around (physical/moral); + circumcisio_F_N = mkN "circumcisio" "circumcisionis" feminine ; -- [DEXES] :: circumcision; cutting around (physical/moral); circumcisitius_A = mkA "circumcisitius" "circumcisitia" "circumcisitium" ; -- [XAXFS] :: must/juice of second press of grapes after projecting mass is cut and put back; circumcisorium_N_N = mkN "circumcisorium" ; -- [DXXES] :: instrument for cutting around; (ringing bark on a tree?); (for circumcision?); 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; + 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); @@ -10471,223 +10471,223 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; - circumdatio_F_N = mkN "circumdatio" "circumdationis " feminine ; -- [DXXFS] :: putting/placing around; + circumdatio_F_N = mkN "circumdatio" "circumdationis" feminine ; -- [DXXFS] :: putting/placing around; circumdatus_M_N = mkN "circumdatus" ; -- [XXXCS] :: surrounding soldiers/men (pl.); those around; 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); + 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; - 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; + circumductus_M_N = mkN "circumductus" "circumductus" masculine ; -- [XSXFO] :: perimeter, circumference, measurement around; motion in a circle, revolution; + circumeo_1_V = mkV "circumire" "circumeo" "circumivi" "circumitus" ; -- [XXXAO] :: encircle, surround; border; skirt; circulate/wander through; go/measure round; + circumeo_2_V = mkV "circumire" "circumeo" "circumiii" "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); + 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; + 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); + 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; + 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; + 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; + 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; circumforo_V2 = mkV2 (mkV "circumforare") ; -- [XXXFO] :: pierce with holes round about; - circumfossor_M_N = mkN "circumfossor" "circumfossoris " masculine ; -- [XAXNO] :: one who digs around (plants/something); + 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; + 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; + 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; + 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; + 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); + 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; + 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); - circuminvolvo_V2 = mkV2 (mkV "circuminvolvere" "circuminvolvo" "circuminvolvi" "circuminvolutus ") ; -- [DXXFS] :: involve/cover all around, enclose, envelop; + 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); + 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; + 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; circumjacens_A = mkA "circumjacens" "circumjacentis"; -- [XXXDO] :: situated in neighborhood, lying round about; situated round (in a sentence); - circumjacens_F_N = mkN "circumjacens" "circumjacentis " feminine ; -- [XXXDO] :: neighboring/nearby things/words (pl.), words situated around/near (in sentence); - circumjacens_M_N = mkN "circumjacens" "circumjacentis " masculine ; -- [XXXDO] :: neighboring/nearby things/words (pl.), words situated around/near (in sentence); + circumjacens_F_N = mkN "circumjacens" "circumjacentis" feminine ; -- [XXXDO] :: neighboring/nearby things/words (pl.), words situated around/near (in sentence); + circumjacens_M_N = mkN "circumjacens" "circumjacentis" masculine ; -- [XXXDO] :: neighboring/nearby things/words (pl.), words situated around/near (in sentence); circumjacentium_N_N = mkN "circumjacentium" ; -- [XGXFS] :: context (pl.), things/material around; circumjaceo_V = mkV "circumjacere" ; -- [XXXEO] :: lie near/round about, border on; (of persons, places, objects); - circumjectio_F_N = mkN "circumjectio" "circumjectionis " feminine ; -- [DXXES] :: throwing around, casting about; putting on/donning (clothing), dressing; + circumjectio_F_N = mkN "circumjectio" "circumjectionis" feminine ; -- [DXXES] :: throwing around, casting about; putting on/donning (clothing), dressing; 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; + 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); + 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; + 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 "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); + 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; + 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); + 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; + 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; + 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; + 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; + 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); + 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; + 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); + 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; + 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; + 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; + 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; + 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; + 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; + 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; + 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; + 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; + 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; 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; + 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); + 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; + 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; 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; + 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); + 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; + 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; + circumspector_M_N = mkN "circumspector" "circumspectoris" masculine ; -- [DXXES] :: watcher; watchman; spy; all seeing; 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); + 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; + 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.); + 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); + 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); + 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); + 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; + 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; + 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; + 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; + 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; @@ -10702,63 +10702,63 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - circumvectio_F_N = mkN "circumvectio" "circumvectionis " feminine ; -- [XXXEO] :: circular course, revolution; transport/carrying round (from place to place); + circumvectio_F_N = mkN "circumvectio" "circumvectionis" feminine ; -- [XXXEO] :: circular course, revolution; transport/carrying round (from place to place); 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); + 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; + 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; + 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; + 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); + 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); + 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; + ciris_F_N = mkN "ciris" "ciris" feminine ; -- [XYXEO] :: mythical bird into which Scylla daughter of Nisus was changed; bird; fish; cirratus_A = mkA "cirratus" "cirrata" "cirratum" ; -- [XXXEO] :: curly-haired; having curled hair/ringlets; fringed (L+S); cirratus_M_N = mkN "cirratus" ; -- [XXXEO] :: curly-haired boy; schoolboys (pl.); - cirrhosis_F_N = mkN "cirrhosis" "cirrhosis " feminine ; -- [GBXEK] :: cirrhosis; + cirrhosis_F_N = mkN "cirrhosis" "cirrhosis" feminine ; -- [GBXEK] :: cirrhosis; cirritus_A = mkA "cirritus" "cirrita" "cirritum" ; -- [XAXFO] :: tufted, bearded; (epithet of a variety of pear?); having filaments (L+S); 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); + 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); 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; cismontanus_A = mkA "cismontanus" "cismontana" "cismontanum" ; -- [XXXNO] :: that dwells/situated on this/near side of mountains; cisorium_N_N = mkN "cisorium" ; -- [DBXFS] :: cutting instrument; (for bone); - cissanthemos_F_N = mkN "cissanthemos" "cissanthemi " feminine ; -- [XAXNO] :: honeysuckle; plant similar to ivy (L+S); + cissanthemos_F_N = mkN "cissanthemos" "cissanthemi" feminine ; -- [XAXNO] :: honeysuckle; plant similar to ivy (L+S); cissanthemus_F_N = mkN "cissanthemus" ; -- [XAXNO] :: honeysuckle; plant similar to ivy (L+S); - cissaron_N_N = mkN "cissaron" "cissari " neuter ; -- [DAXFS] :: plant; (also called chrysanthemon); - cissaros_F_N = mkN "cissaros" "cissari " feminine ; -- [DAXFS] :: plant; (also called chrysanthemon); - cission_N_N = mkN "cission" "cissii " neuter ; -- [DAXFS] :: small ivy; - cissitis_F_N = mkN "cissitis" "cissitidis " feminine ; -- [XXXNO] :: precious stone; (of color of ivy leaves L+S); - cissos_F_N = mkN "cissos" "cissi " feminine ; -- [XAXNO] :: ivy; + cissaron_N_N = mkN "cissaron" "cissari" neuter ; -- [DAXFS] :: plant; (also called chrysanthemon); + cissaros_F_N = mkN "cissaros" "cissari" feminine ; -- [DAXFS] :: plant; (also called chrysanthemon); + cission_N_N = mkN "cission" "cissii" neuter ; -- [DAXFS] :: small ivy; + cissitis_F_N = mkN "cissitis" "cissitidis" feminine ; -- [XXXNO] :: precious stone; (of color of ivy leaves L+S); + cissos_F_N = mkN "cissos" "cissi" feminine ; -- [XAXNO] :: ivy; cissybium_N_N = mkN "cissybium" ; -- [DXXFS] :: cup of ivy-wood; cista_F_N = mkN "cista" ; -- [XXXCO] :: chest/box (usu. made of wicker); box for sacred ceremonial objects; ballot box; cistarius_M_N = mkN "cistarius" ; -- [XXXIO] :: guardian of chest or wardrobe; cistella_F_N = mkN "cistella" ; -- [XXXDO] :: small box/casket/chest; - cistellatrix_F_N = mkN "cistellatrix" "cistellatricis " feminine ; -- [XXXFO] :: woman/slave in charge of clothes chests or wardrobe; (or money-box L+S); + cistellatrix_F_N = mkN "cistellatrix" "cistellatricis" feminine ; -- [XXXFO] :: woman/slave in charge of clothes chests or wardrobe; (or money-box L+S); cistellula_F_N = mkN "cistellula" ; -- [XXXEO] :: little/small box/casket/chest; (diminutive of diminutive of cista/box); cisterna_F_N = mkN "cisterna" ; -- [XXXCO] :: cistern; underground/sunken tank/reservoir for water; (or wine L+S); ditch/pit; cisterninus_A = mkA "cisterninus" "cisternina" "cisterninum" ; -- [XXXEO] :: of/obtained from cisterns, cistern-; [aqua cisternina => stored rain water]; - cisthos_M_N = mkN "cisthos" "cisthi " masculine ; -- [XAXNO] :: rock rose (Cistus villosus and salvifolius); shrub plant w/red blossoms (L+S); + cisthos_M_N = mkN "cisthos" "cisthi" masculine ; -- [XAXNO] :: rock rose (Cistus villosus and salvifolius); shrub plant w/red blossoms (L+S); 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); @@ -10766,17 +10766,17 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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; 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; + citatus_M_N = mkN "citatus" "citatus" masculine ; -- [XXXFO] :: impulse; cite_Adv = mkAdv "cite" ; -- [DXXFS] :: quickly; rapidly; 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); - citharicen_M_N = mkN "citharicen" "citharicinis " masculine ; -- [XDXFS] :: cithara/lyre player; + citharicen_M_N = mkN "citharicen" "citharicinis" masculine ; -- [XDXFS] :: cithara/lyre player; citharista_M_N = mkN "citharista" ; -- [XDXEO] :: cithara/lyre player; citharistria_M_N = mkN "citharistria" ; -- [XDXFO] :: cithara/lyre player (female); citharizo_V = mkV "citharizare" ; -- [XDXFO] :: play on/strike cithara/lyre; @@ -10791,13 +10791,13 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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); citratus_A = mkA "citratus" "citrata" "citratum" ; -- [XAXFO] :: treated with citron (tree) oil; steeped in citrus oil (L+S); citrea_F_N = mkN "citrea" ; -- [XAXNO] :: citrus tree; - citreago_F_N = mkN "citreago" "citreaginis " feminine ; -- [DAXFS] :: citrus plant; lemon balm; + citreago_F_N = mkN "citreago" "citreaginis" feminine ; -- [DAXFS] :: citrus plant; lemon balm; citretum_N_N = mkN "citretum" ; -- [DAXFS] :: orchard of citrus trees; citreum_N_N = mkN "citreum" ; -- [XAXFS] :: fruit of citrus tree; citron; citron tree; citreus_A = mkA "citreus" "citrea" "citreum" ; -- [XAXCO] :: citrus, of/on/made of citrus tree/wood; of citron tree (L+S); @@ -10815,80 +10815,80 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); - civile_N_N = mkN "civile" "civilis " neuter ; -- [XXXFS] :: courtesy; civility; + civile_N_N = mkN "civile" "civilis" neuter ; -- [XXXFS] :: courtesy; civility; civilis_A = mkA "civilis" "civilis" "civile" ; -- [XLXAO] :: of/affecting fellow citizens; civil; legal; public; political; unassuming; - civilitas_F_N = mkN "civilitas" "civilitatis " feminine ; -- [XLXDO] :: science of politics/government; behavior of ordinary person; citizenship (Ecc); + civilitas_F_N = mkN "civilitas" "civilitatis" feminine ; -- [XLXDO] :: science of politics/government; behavior of ordinary person; citizenship (Ecc); civiliter_Adv =mkAdv "civiliter" "civilius" "civilissime" ; -- [XXXCO] :: in civil sphere, between citizens; as becomes a citizen; civilly, unassumingly; - civilizatio_F_N = mkN "civilizatio" "civilizationis " feminine ; -- [HXXDE] :: civilization; + civilizatio_F_N = mkN "civilizatio" "civilizationis" feminine ; -- [HXXDE] :: civilization; civilizo_V = mkV "civilizare" ; -- [GXXEK] :: civilize; - civis_F_N = mkN "civis" "civis " feminine ; -- [XXXAO] :: fellow citizen; countryman/woman; citizen, free person; a Roman citizen; - civis_M_N = mkN "civis" "civis " masculine ; -- [XXXAO] :: fellow citizen; countryman/woman; citizen, free person; a Roman citizen; - civitas_F_N = mkN "civitas" "civitatis " feminine ; -- [XLXAO] :: community/city/town/state; citizens; citizen rights/citizenship; naturalization; + civis_F_N = mkN "civis" "civis" feminine ; -- [XXXAO] :: fellow citizen; countryman/woman; citizen, free person; a Roman citizen; + civis_M_N = mkN "civis" "civis" masculine ; -- [XXXAO] :: fellow citizen; countryman/woman; citizen, free person; a Roman citizen; + civitas_F_N = mkN "civitas" "civitatis" feminine ; -- [XLXAO] :: community/city/town/state; citizens; citizen rights/citizenship; naturalization; civitatula_F_N = mkN "civitatula" ; -- [XXXEO] :: (small) city/town; citizenship (in small/petty state); clabula_F_N = mkN "clabula" ; -- [DAXFS] :: graft or cutting; scion; - clabulare_N_N = mkN "clabulare" "clabularis " neuter ; -- [DWXFS] :: large open wagon (used for transporting soldiers); (with wicker-work sides?); + clabulare_N_N = mkN "clabulare" "clabularis" neuter ; -- [DWXFS] :: large open wagon (used for transporting soldiers); (with wicker-work sides?); clabularis_A = mkA "clabularis" "clabularis" "clabulare" ; -- [DWXFS] :: of/pertaining to large open wagon (used for transporting soldiers); (wicker?); clabularius_A = mkA "clabularius" "clabularia" "clabularium" ; -- [DWXFS] :: of/pertaining to large open wagon (used for transporting soldiers); (wicker?); - 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); + 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_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; + 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); - clamatus_M_N = mkN "clamatus" "clamatus " masculine ; -- [DXXFS] :: crying aloud, shouting; - clamis_F_N = mkN "clamis" "clamidis " feminine ; -- [BWXFO] :: Greek cloak/cape frequently for military use; state mantle; cloak, mantle; - clamitatio_F_N = mkN "clamitatio" "clamitationis " feminine ; -- [XXXFO] :: shouting, bawling; violent crying, clamor, noise (L+S); + clamatus_M_N = mkN "clamatus" "clamatus" masculine ; -- [DXXFS] :: crying aloud, shouting; + clamis_F_N = mkN "clamis" "clamidis" feminine ; -- [BWXFO] :: Greek cloak/cape frequently for military use; state mantle; cloak, mantle; + clamitatio_F_N = mkN "clamitatio" "clamitationis" feminine ; -- [XXXFO] :: shouting, bawling; violent crying, clamor, noise (L+S); clamito_V = mkV "clamitare" ; -- [XXXBO] :: cry out, yell; shout repeatedly, clamor; proclaim; name/call repeatedly/loudly; clamium_N_N = mkN "clamium" ; -- [FLXFJ] :: claim; clamo_V = mkV "clamare" ; -- [XXXAO] :: proclaim, declare; cry/shout out; shout/call name of; accompany with shouts; - clamor_M_N = mkN "clamor" "clamoris " masculine ; -- [XXXAO] :: |war-cry, battle-cry; roar (thunder/surf); cry of fear/pain/mourning; wailing; + clamor_M_N = mkN "clamor" "clamoris" masculine ; -- [XXXAO] :: |war-cry, battle-cry; roar (thunder/surf); cry of fear/pain/mourning; wailing; clamorosus_A = mkA "clamorosus" "clamorosa" "clamorosum" ; -- [FXXDE] :: loud; clamorous; - clamos_M_N = mkN "clamos" "clamosis " masculine ; -- [BXXAO] :: |war-cry, battle-cry; roar (thunder/surf); cry of fear/pain/mourning; wailing; + 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; + clamys_F_N = mkN "clamys" "clamydis" feminine ; -- [BWXCO] :: 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; + 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); + 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; - clarificatio_F_N = mkN "clarificatio" "clarificationis " feminine ; -- [DEXES] :: glorification; + clarificatio_F_N = mkN "clarificatio" "clarificationis" feminine ; -- [DEXES] :: glorification; clarifico_V2 = mkV2 (mkV "clarificare") ; -- [DEXCS] :: make illustrious/famous; - clarigatio_F_N = mkN "clarigatio" "clarigationis " feminine ; -- [XXXFO] :: satisfaction; reparation, fine; solemn demand for redress (or war in 33 days); + clarigatio_F_N = mkN "clarigatio" "clarigationis" feminine ; -- [XXXFO] :: satisfaction; reparation, fine; solemn demand for redress (or war in 33 days); clarigito_V = mkV "clarigitare" ; -- [DXXES] :: recall, recollect, remember; clarigo_V = mkV "clarigare" ; -- [XLXNO] :: demand satisfaction formally (from another state in formal declaration of war); clarisonus_A = mkA "clarisonus" "clarisona" "clarisonum" ; -- [XXXFO] :: loud; clear-sounding, distinct; - clarissimatus_M_N = mkN "clarissimatus" "clarissimatus " masculine ; -- [DLXFS] :: dignity of a Clarissimus (imperial official); - claritas_F_N = mkN "claritas" "claritatis " feminine ; -- [XXXBO] :: clarity/vividness; brightness; distinctness; loudness; celebrity, renown, fame; - claritudo_F_N = mkN "claritudo" "claritudinis " feminine ; -- [XXXCO] :: clearness, brightness; distinctness; loudness; celebrity, distinction, renown; + clarissimatus_M_N = mkN "clarissimatus" "clarissimatus" masculine ; -- [DLXFS] :: dignity of a Clarissimus (imperial official); + claritas_F_N = mkN "claritas" "claritatis" feminine ; -- [XXXBO] :: clarity/vividness; brightness; distinctness; loudness; celebrity, renown, fame; + claritudo_F_N = mkN "claritudo" "claritudinis" feminine ; -- [XXXCO] :: clearness, brightness; distinctness; loudness; celebrity, distinction, renown; claritus_Adv = mkAdv "claritus" ; -- [XXXEO] :: clearly, distinctly; clarividus_A = mkA "clarividus" "clarivida" "clarividum" ; -- [DXXFS] :: seeing clearly; clear sighted; 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); + 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); 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; + 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; classicula_F_N = mkN "classicula" ; -- [XWXFO] :: small fleet/flotilla; classicum_N_N = mkN "classicum" ; -- [XWXCO] :: military trumpet call; war-trumpet (L+S); classicus_A = mkA "classicus" "classica" "classicum" ; -- [XWXCO] :: of/connected with fleet/sailors; belonging to a/highest citizen class; classicus_M_N = mkN "classicus" ; -- [XWXFO] :: trumpeter (who summoned comitia centuriata); sailors (pl.), marines; - classis_F_N = mkN "classis" "classis " feminine ; -- [XXXBO] :: class/division of Romans; grade (pupils); levy/draft; fleet/navy; group/band; + classis_F_N = mkN "classis" "classis" feminine ; -- [XXXBO] :: class/division of Romans; grade (pupils); levy/draft; fleet/navy; group/band; clathrum_N_N = mkN "clathrum" ; -- [XXXDO] :: lattices or bars (pl.); grate; railings; clathrus_A = mkA "clathrus" "clathra" "clathrum" ; -- [XXXDO] :: latticed or barred; clathrus_M_N = mkN "clathrus" ; -- [XXXDO] :: lattices or bars (pl.); grate; railings; @@ -10898,12 +10898,12 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat clatrus_M_N = mkN "clatrus" ; -- [XXXDO] :: lattices or bars (pl.); grate; railings; claudaster_A = mkA "claudaster" "claudastra" "claudastrum" ; -- [DXXFS] :: little lame; claudeo_V = mkV "claudere" ; -- [XXXCO] :: limp, stumble/falter/hesitate; be weak/imperfect, fall short; be lame, hobble; - claudicatio_F_N = mkN "claudicatio" "claudicationis " feminine ; -- [XXXEO] :: limping; lameness; + claudicatio_F_N = mkN "claudicatio" "claudicationis" feminine ; -- [XXXEO] :: limping; lameness; 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; + 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; @@ -10918,11 +10918,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat clausus_A = mkA "clausus" "clausa" "clausum" ; -- [XXXBO] :: closed, inaccessible (places); impervious to feeling; shut/locked in, enclosed; clava_F_N = mkN "clava" ; -- [GXXEK] :: |golf-club; (Cal); clavarium_N_N = mkN "clavarium" ; -- [XWXFO] :: nail-money, allowance to soldiers for shoe-nails; - clavator_M_N = mkN "clavator" "clavatoris " masculine ; -- [XXXEO] :: one who fights with a club; one who carries clubs/foils/exercise swords (L+S); + clavator_M_N = mkN "clavator" "clavatoris" masculine ; -- [XXXEO] :: one who fights with a club; one who carries clubs/foils/exercise swords (L+S); clavatus_A = mkA "clavatus" "clavata" "clavatum" ; -- [XXXEO] :: furnished/decorated with nails/studs; striped (animal); - claves_F_N = mkN "claves" "clavis " feminine ; -- [XXXFS] :: door-key; bar/key for turning a press, lever; hook for bowling a hoop; + claves_F_N = mkN "claves" "clavis" feminine ; -- [XXXFS] :: door-key; bar/key for turning a press, lever; hook for bowling a hoop; clavicarius_M_N = mkN "clavicarius" ; -- [DXXFS] :: locksmith; - clavicen_M_N = mkN "clavicen" "clavicinis " masculine ; -- [GDXEK] :: pianist; + clavicen_M_N = mkN "clavicen" "clavicinis" masculine ; -- [GDXEK] :: pianist; clavicina_F_N = mkN "clavicina" ; -- [GDXEK] :: pianist; claviclarius_M_N = mkN "claviclarius" ; -- [XXXIO] :: turnkey; keeper of keys, jailer (L+S); clavicula_F_N = mkN "clavicula" ; -- [XXXCO] :: (small) key; vine-tendril; pivot; rod, bar, bolt (for door); @@ -10930,69 +10930,69 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat clavicymbalum_N_N = mkN "clavicymbalum" ; -- [GDXEK] :: harpsichord; claviger_A = mkA "claviger" "clavigera" "clavigerum" ; -- [XYXDO] :: carrying/armed with a club; (epithet of Hercules); key-bearing (Janus); claviger_M_N = mkN "claviger" ; -- [XYXDO] :: mace/club-bearer, one armed with a club; (Hercules); key-bearer (Janus); - clavile_N_N = mkN "clavile" "clavilis " neuter ; -- [GDXEK] :: piano; - clavis_F_N = mkN "clavis" "clavis " feminine ; -- [XXXBO] :: door-key; bar/key for turning a press, lever; hook for bowling a hoop; + clavile_N_N = mkN "clavile" "clavilis" neuter ; -- [GDXEK] :: piano; + clavis_F_N = mkN "clavis" "clavis" feminine ; -- [XXXBO] :: door-key; bar/key for turning a press, lever; hook for bowling a hoop; clavo_V2 = mkV2 (mkV "clavare") ; -- [DXXCS] :: nail, furnish/fasten with nails; furnish with points/prickles or purple stripe; clavola_F_N = mkN "clavola" ; -- [XAXFO] :: graft or cutting; scion; clavula_F_N = mkN "clavula" ; -- [XAXFO] :: graft or cutting; scion; - clavulare_N_N = mkN "clavulare" "clavularis " neuter ; -- [DWXFS] :: large open wagon (used for transporting soldiers); (with wicker-work sides?); + clavulare_N_N = mkN "clavulare" "clavularis" neuter ; -- [DWXFS] :: large open wagon (used for transporting soldiers); (with wicker-work sides?); clavularis_A = mkA "clavularis" "clavularis" "clavulare" ; -- [DWXFS] :: of/pertaining to large open wagon (used for transporting soldiers); (wicker?); clavularius_A = mkA "clavularius" "clavularia" "clavularium" ; -- [DWXFS] :: of/pertaining to large open wagon (used for transporting soldiers); (wicker?); clavulus_M_N = mkN "clavulus" ; -- [XXXEO] :: small nail; tack; small swelling; 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); + 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); - clematitis_F_N = mkN "clematitis" "clematitidis " feminine ; -- [XAXEO] :: plant; species of aristolochia; + clematis_F_N = mkN "clematis" "clematidis" feminine ; -- [XAXNO] :: plant; (various kinds of clematis/convolvulus/etc); (climbing plants L+S); + 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; clementia_F_N = mkN "clementia" ; -- [XXXBO] :: mercy/clemency; compassion; indulgence/forbearance; gentleness, mildness, calm; clementinum_N_N = mkN "clementinum" ; -- [GXXEK] :: clementine; (small orange, hybrid of tangerine and sour orange OED); 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; + 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; - cleptes_M_N = mkN "cleptes" "cleptae " masculine ; -- [XXXFO] :: thief; + cleptes_M_N = mkN "cleptes" "cleptae" masculine ; -- [XXXFO] :: thief; clericalis_A = mkA "clericalis" "clericalis" "clericale" ; -- [DEXCS] :: clerical, priestly; - clericatus_M_N = mkN "clericatus" "clericatus " masculine ; -- [DEXCS] :: clerical office; clerical/priestly state; + clericatus_M_N = mkN "clericatus" "clericatus" masculine ; -- [DEXCS] :: clerical office; clerical/priestly state; clericus_M_N = mkN "clericus" ; -- [DEXAS] :: clergyman, priest, cleric, clerk; scholar, student, scribe, secretary (Bee); clerus_M_N = mkN "clerus" ; -- [DEXCS] :: clergy, clerical order; clibanarius_M_N = mkN "clibanarius" ; -- [DWXES] :: soldier clad in mail, cuirassier; clibanicius_A = mkA "clibanicius" "clibanicia" "clibanicium" ; -- [DXXFS] :: baked in a clibanus (bread oven); [w/panis => bread baked in a clibanus]; clibanus_M_N = mkN "clibanus" ; -- [XXXDO] :: oven; earthen/iron vessel w/small holes/broad bottom for baking/serving bread; - clidion_N_N = mkN "clidion" "clidii " neuter ; -- [XAXNO] :: (parts round the) shoulder-bone of a fish; (tunny L+S); + clidion_N_N = mkN "clidion" "clidii" neuter ; -- [XAXNO] :: (parts round the) shoulder-bone of a fish; (tunny L+S); clidium_N_N = mkN "clidium" ; -- [XAXNS] :: (parts round the) shoulder-bone of a fish; (tunny L+S); cliduchus_M_N = mkN "cliduchus" ; -- [XXXNO] :: key-bearer; - cliens_F_N = mkN "cliens" "clientis " feminine ; -- [XXXBO] :: client, dependent (of a patron), vassal; client state/its citizens, allies; - cliens_M_N = mkN "cliens" "clientis " masculine ; -- [GXXEK] :: customer (modern sense); + cliens_F_N = mkN "cliens" "clientis" feminine ; -- [XXXBO] :: client, dependent (of a patron), vassal; client state/its citizens, allies; + cliens_M_N = mkN "cliens" "clientis" masculine ; -- [GXXEK] :: customer (modern sense); clienta_F_N = mkN "clienta" ; -- [XXXCO] :: female dependent/client, protegee; female votary; 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; + clima_N_N = mkN "clima" "climatis" neuter ; -- [XSXEO] :: measure of land; (60 feet square); inclination from latitude; clime; direction; 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); + 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; - climatias_M_N = mkN "climatias" "climatiae " masculine ; -- [DSXFS] :: kind of earthquake; + climatias_M_N = mkN "climatias" "climatiae" masculine ; -- [DSXFS] :: kind of earthquake; climaticus_A = mkA "climaticus" "climatica" "climaticum" ; -- [GXXEK] :: climatic; climatologia_F_N = mkN "climatologia" ; -- [GSXEK] :: climatology; - 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; + 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); + 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; clinicus_M_N = mkN "clinicus" ; -- [XBXES] :: physician attending patient in bed; bedridden patient; one baptized when sick; clino_V2 = mkV2 (mkV "clinare") ; -- [XXXFS] :: incline, slope; bend; sink; clinodium_N_N = mkN "clinodium" ; -- [FXXFM] :: jewel; - clinopale_F_N = mkN "clinopale" "clinopales " feminine ; -- [XXXFO] :: intercourse, wrestling in bed, active sexual exercise; + 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); clinopus_1_N = mkN "clinopus" "clinopodis" masculine ; -- [XXXFO] :: foot of a bed; clinopus_2_N = mkN "clinopus" "clinopodos" masculine ; -- [XXXFO] :: foot of a bed; @@ -11005,14 +11005,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat clipeus_M_N = mkN "clipeus" ; -- [XWXBO] :: round/embossed shield (usu. bronze); disk of sun; vault of sky; meteorite; clitella_F_N = mkN "clitella" ; -- [XAXCO] :: pack-saddle (pl.), sumpter-saddle; like things; instrument of torture (L+S); clitellarius_A = mkA "clitellarius" "clitellaria" "clitellarium" ; -- [XAXEO] :: used for carrying a pack-saddle; of/pertaining to/bearing a pack-saddle (L+S); - cliticos_M_N = mkN "cliticos" "clitici " masculine ; -- [XDXNO] :: statue of person reclining/sitting; person reclining/sitting; - clive_N_N = mkN "clive" "clivis " neuter ; -- [XTXEO] :: slope, incline; + cliticos_M_N = mkN "cliticos" "clitici" masculine ; -- [XDXNO] :: statue of person reclining/sitting; person reclining/sitting; + clive_N_N = mkN "clive" "clivis" neuter ; -- [XTXEO] :: slope, incline; clivia_F_N = mkN "clivia" ; -- [XAXNO] :: bird (unidentified); (of ill omen); clivis_A = mkA "clivis" "clivis" "clive" ; -- [XTXEO] :: sloping, inclined; steep; - clivis_F_N = mkN "clivis" "clivis " feminine ; -- [FDXFE] :: two musical notes second lower than first; + clivis_F_N = mkN "clivis" "clivis" feminine ; -- [FDXFE] :: two musical notes second lower than first; clivius_A = mkA "clivius" "clivia" "clivium" ; -- [DXXES] :: which forbid anything to be done; (having bad omens?); clivolus_M_N = mkN "clivolus" ; -- [XTXEO] :: short slope; - clivos_M_N = mkN "clivos" "clivi " masculine ; -- [XTXBO] :: slope (sg.), incline; sloping ground; inclined passage/surface; (street name); + clivos_M_N = mkN "clivos" "clivi" masculine ; -- [XTXBO] :: slope (sg.), incline; sloping ground; inclined passage/surface; (street name); clivosus_A = mkA "clivosus" "clivosa" "clivosum" ; -- [XTXCO] :: hilly, full of hills; steep, characterized by slopes; difficult (L+S); clivulus_M_N = mkN "clivulus" ; -- [XTXEO] :: short slope; little hill (L+S); clivum_N_N = mkN "clivum" ; -- [XTXFO] :: slope (pl.), incline; sloping ground; inclined passage/surface; (street name); @@ -11028,24 +11028,24 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat clocca_F_N = mkN "clocca" ; -- [FXXEE] :: bell; 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; + 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; + clon_M_N = mkN "clon" "clonis" masculine ; -- [HSXEK] :: clone; + clonizatio_F_N = mkN "clonizatio" "clonizationis" feminine ; -- [HSXEK] :: cloning; clonizo_V = mkV "clonizare" ; -- [HSXEK] :: clone; - clonos_F_N = mkN "clonos" "cloni " feminine ; -- [DAXFS] :: plant; (also called batrachion or scelerata); + clonos_F_N = mkN "clonos" "cloni" feminine ; -- [DAXFS] :: plant; (also called batrachion or scelerata); clostellum_N_N = mkN "clostellum" ; -- [XXXFO] :: keyhole; small lock (L+S); clostrarius_M_N = mkN "clostrarius" ; -- [XXXIO] :: maker of door-bolts; clostrum_N_N = mkN "clostrum" ; -- [XXXAO] :: bolt (gate/door); key; bars (pl.), enclosure; barrier; door, gate, bulwark; dam; 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; + 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; + 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; clueo_V = mkV "cluere" ; -- [XXXCO] :: be called, be named, be reputed/spoken of/said to be; be reckoned as existing; clueo_V2 = mkV2 (mkV "clueare") ; -- [XEXEO] :: purify; cleanse, make clean; clueor_V = mkV "clueri" ; -- [XXXCO] :: be called, be named, be reputed/spoken of/said to be; be reckoned as existing; @@ -11056,8 +11056,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat clunalis_A = mkA "clunalis" "clunalis" "clunale" ; -- [DAXFS] :: of/pertaining to hind parts, hind-; [clunales pedes => hindfeet]; clunicula_F_N = mkN "clunicula" ; -- [XBXFO] :: upper leg or thigh; small hind parts (L+S); 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); + 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; @@ -11073,78 +11073,78 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat clusaris_A = mkA "clusaris" "clusaris" "clusare" ; -- [DXXFS] :: |easily shutting/closing; clusarius_A = mkA "clusarius" "clusaria" "clusarium" ; -- [DXXFS] :: easily shutting/closing; clusilis_A = mkA "clusilis" "clusilis" "clusile" ; -- [XAXNO] :: capable of closing; bivalve; easily closing (L+S); - clusor_M_N = mkN "clusor" "clusoris " masculine ; -- [DXXFS] :: one who encloses/encompasses; - cluster_M_N = mkN "cluster" "clusteris " masculine ; -- [XBXCO] :: clyster, drench, injection; enema; syringe, clyster pipe; + clusor_M_N = mkN "clusor" "clusoris" masculine ; -- [DXXFS] :: one who encloses/encompasses; + cluster_M_N = mkN "cluster" "clusteris" masculine ; -- [XBXCO] :: clyster, drench, injection; enema; syringe, clyster pipe; clustrum_N_N = mkN "clustrum" ; -- [XXXAO] :: bolt (gate/door); key; bars (pl.), enclosure; barrier; door, gate, bulwark; dam; clusum_N_N = mkN "clusum" ; -- [XXXCS] :: enclosed space; clusura_F_N = mkN "clusura" ; -- [XXXEO] :: lock/clasp of a necklace; lock, bar, bolt (L+S); castle, fort (late); clusus_A = mkA "clusus" "clusa" "clusum" ; -- [XXXBO] :: closed, inaccessible (places); impervious to feeling; shut/locked in, enclosed; clutus_A = mkA "clutus" "cluta" "clutum" ; -- [DXXES] :: famous, renowned; celebrated, glorious; refined; - clybatis_F_N = mkN "clybatis" "clybatis " feminine ; -- [DAXFS] :: plant (Parietaria officinalis); (also called helxine); - clymenos_M_N = mkN "clymenos" "clymeni " masculine ; -- [XAXNO] :: plant, scorpion's tail (Scorpiurus vermiculata); + clybatis_F_N = mkN "clybatis" "clybatis" feminine ; -- [DAXFS] :: plant (Parietaria officinalis); (also called helxine); + clymenos_M_N = mkN "clymenos" "clymeni" masculine ; -- [XAXNO] :: plant, scorpion's tail (Scorpiurus vermiculata); clymenus_M_N = mkN "clymenus" ; -- [XAXNO] :: plant, scorpion's tail (Scorpiurus vermiculata); clypeo_V2 = mkV2 (mkV "clypeare") ; -- [XWXFS] :: provide/arm with a shield (clipeus) or protection; clypeolum_N_N = mkN "clypeolum" ; -- [XWXFS] :: small shield; clypeum_N_N = mkN "clypeum" ; -- [XWXBS] :: round/embossed shield (usu. bronze); disk of sun; vault of sky; meteorite; clypeus_M_N = mkN "clypeus" ; -- [XWXBS] :: round/embossed shield (usu. bronze); disk of sun; vault of sky; meteorite; clysmus_M_N = mkN "clysmus" ; -- [XBXFO] :: clyster, drench, injection; enema; syringe, clyster pipe; - clyster_M_N = mkN "clyster" "clysteris " masculine ; -- [XBXCO] :: clyster, drench, injection; enema; syringe, clyster pipe; + clyster_M_N = mkN "clyster" "clysteris" masculine ; -- [XBXCO] :: clyster, drench, injection; enema; syringe, clyster pipe; clystera_M_N = mkN "clystera" ; -- [XBXFT] :: clyster, drench, injection; enema; syringe, clyster pipe; clysterium_N_N = mkN "clysterium" ; -- [XBXEO] :: small syringe; clyster (L+S); clysterizo_V2 = mkV2 (mkV "clysterizare") ; -- [DBXES] :: apply a syringe/clyster; give an injection/enema; purge; - cnason_M_N = mkN "cnason" "cnasonis " masculine ; -- [DXXFS] :: hair-pin (with which women scratch head); + cnason_M_N = mkN "cnason" "cnasonis" masculine ; -- [DXXFS] :: hair-pin (with which women scratch head); cnatus_M_N = mkN "cnatus" ; -- [XXXCO] :: son; child; children (pl.); - cnecos_F_N = mkN "cnecos" "cneci " feminine ; -- [XAXEO] :: safflower (Carthamus tinctorius); similar thistle; + cnecos_F_N = mkN "cnecos" "cneci" feminine ; -- [XAXEO] :: safflower (Carthamus tinctorius); similar thistle; cnedinus_A = mkA "cnedinus" "cnedina" "cnedinum" ; -- [XAXNS] :: of/pertaining to nettles, nettle-; - cnemis_F_N = mkN "cnemis" "cnemidis " feminine ; -- [DXXFS] :: greave; end of verse; - cneoron_N_N = mkN "cneoron" "cneori " neuter ; -- [XAXNS] :: plant name; (various kinds of Daphne?); + cnemis_F_N = mkN "cnemis" "cnemidis" feminine ; -- [DXXFS] :: greave; end of verse; + cneoron_N_N = mkN "cneoron" "cneori" neuter ; -- [XAXNS] :: plant name; (various kinds of Daphne?); cneorum_N_N = mkN "cneorum" ; -- [XAXNO] :: plant name; (various kinds of Daphne?); cnephosus_A = mkA "cnephosus" "cnephosa" "cnephosum" ; -- [XXXFO] :: gloomy, dark; - cnestor_M_N = mkN "cnestor" "cnestoris " masculine ; -- [XAXNO] :: shrub; (Daphne gnidium?); + cnestor_M_N = mkN "cnestor" "cnestoris" masculine ; -- [XAXNO] :: shrub; (Daphne gnidium?); cnicus_F_N = mkN "cnicus" ; -- [XAXEO] :: safflower (Carthamus tinctorius); similar thistle; - cnide_F_N = mkN "cnide" "cnides " feminine ; -- [XAXNO] :: nettle; sea nettle; + cnide_F_N = mkN "cnide" "cnides" feminine ; -- [XAXNO] :: nettle; sea nettle; 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; + cnodax_M_N = mkN "cnodax" "cnodacis" masculine ; -- [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; + 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); + 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; + coactile_N_N = mkN "coactile" "coactilis" neuter ; -- [DXXFS] :: thick fulled cloth, felt; coactiliarius_A = mkA "coactiliarius" "coactiliaria" "coactiliarium" ; -- [DXXFS] :: fulling; [~ taberna => fulling mill]; coactiliarius_M_N = mkN "coactiliarius" ; -- [XXXIO] :: maker of felt; maker of thick fulled cloth (L+S); coactilis_A = mkA "coactilis" "coactilis" "coactile" ; -- [XXXFO] :: made of felt; made thick (L+S); coactim_Adv = mkAdv "coactim" ; -- [DXXFS] :: briefly, concisely, shortly; - coactio_F_N = mkN "coactio" "coactionis " feminine ; -- [DAXFS] :: |disease of animals; constraint; (Cal); + coactio_F_N = mkN "coactio" "coactionis" feminine ; -- [DAXFS] :: |disease of animals; constraint; (Cal); coactivus_A = mkA "coactivus" "coactiva" "coactivum" ; -- [GXXEK] :: forced; coacto_V = mkV "coactare" ; -- [XXXFO] :: compel; constrain; force; - coactor_M_N = mkN "coactor" "coactoris " masculine ; -- [DXXIS] :: |fuller; (felter?); (cloth worker); one who forces to something; + coactor_M_N = mkN "coactor" "coactoris" masculine ; -- [DXXIS] :: |fuller; (felter?); (cloth worker); one who forces to something; coactum_N_N = mkN "coactum" ; -- [XXXFS] :: thick/fulled covering; mattress; 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; + 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; + 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; + 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); + coaequalis_M_N = mkN "coaequalis" "coaequalis" masculine ; -- [XXXEO] :: one of same age, contemporary; comrade/companion of same age (L+S); coaequo_V2 = mkV2 (mkV "coaequare") ; -- [XXXCO] :: make level/equal, equalize; regard/treat as equal, equate; adjust by weighing; coaestimo_V2 = mkV2 (mkV "coaestimare") ; -- [XXXFO] :: estimate together/in conjunction (with); coaetaneo_V = mkV "coaetaneare" ; -- [DXXFS] :: be of same age/contemporary; @@ -11154,48 +11154,48 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat coaggero_V2 = mkV2 (mkV "coaggerare") ; -- [XXXFO] :: heap/cover over (with); heap together (L+S); coagito_V2 = mkV2 (mkV "coagitare") ; -- [DBXFS] :: shake together; coagmentarius_M_N = mkN "coagmentarius" ; -- [DXXFS] :: joining together; union; - coagmentatio_F_N = mkN "coagmentatio" "coagmentationis " feminine ; -- [XXXDO] :: union, state/act of being joined/fitted together; connection, joint; + coagmentatio_F_N = mkN "coagmentatio" "coagmentationis" feminine ; -- [XXXDO] :: union, state/act of being joined/fitted together; connection, joint; coagmento_V = mkV "coagmentare" ; -- [XXXCO] :: join/fasten together, connect; make by joining/construct; fit (words) together; coagmentum_N_N = mkN "coagmentum" ; -- [XXXCO] :: joint; (vertical between stones); overlapping side of tile; joining (letters); - coagulare_N_N = mkN "coagulare" "coagularis " neuter ; -- [DBXFS] :: colon; (intestine); - coagulatio_F_N = mkN "coagulatio" "coagulationis " feminine ; -- [XXXNO] :: coagulation; curdling; congealing; + coagulare_N_N = mkN "coagulare" "coagularis" neuter ; -- [DBXFS] :: colon; (intestine); + coagulatio_F_N = mkN "coagulatio" "coagulationis" feminine ; -- [XXXNO] :: coagulation; curdling; congealing; 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; + 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; - coaptatio_F_N = mkN "coaptatio" "coaptationis " feminine ; -- [DEXFS] :: accurate joining together; + coaptatio_F_N = mkN "coaptatio" "coaptationis" feminine ; -- [DEXFS] :: accurate joining together; 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; + 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; + 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; - coartatio_F_N = mkN "coartatio" "coartationis " feminine ; -- [XXXEO] :: tightening; fitting closely together; crowding/drawing together; + coartatio_F_N = mkN "coartatio" "coartationis" feminine ; -- [XXXEO] :: tightening; fitting closely together; crowding/drawing together; coarticulo_V2 = mkV2 (mkV "coarticulare") ; -- [DXXFS] :: cause to speak/articulate; coarto_V2 = mkV2 (mkV "coartare") ; -- [XXXBO] :: narrow; hem in, pack/crowd/bring/fit close together, restrict; shorten/abridge; coassamentum_N_N = mkN "coassamentum" ; -- [XTXEO] :: framework of planks; floor; - 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; + 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; + 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; + 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); coaxo_V2 = mkV2 (mkV "coaxare") ; -- [XXXFO] :: fit with floor planking; join boards/planks together (L+S); cobaia_F_N = mkN "cobaia" ; -- [GXXEK] :: guinea pig, pig of India; cobaltum_N_N = mkN "cobaltum" ; -- [GSXEK] :: cobalt; - cobio_M_N = mkN "cobio" "cobionis " masculine ; -- [XAXEO] :: small fish; (of gudgeon kind); (used for bait); (Gobio); - cobios_M_N = mkN "cobios" "cobii " masculine ; -- [XAXNO] :: plant (spurge); tithymalus/wolf's-milk (L+S); dendroides, leptophyllon; + cobio_M_N = mkN "cobio" "cobionis" masculine ; -- [XAXEO] :: small fish; (of gudgeon kind); (used for bait); (Gobio); + cobios_M_N = mkN "cobios" "cobii" masculine ; -- [XAXNO] :: plant (spurge); tithymalus/wolf's-milk (L+S); dendroides, leptophyllon; cobius_M_N = mkN "cobius" ; -- [XAXEO] :: small fish; (of gudgeon kind); (used for bait); (Gobio); cocainum_N_N = mkN "cocainum" ; -- [GXXEK] :: cocaine; coccinatus_A = mkA "coccinatus" "coccinata" "coccinatum" ; -- [XXXEO] :: dressed/clothed in scarlet; @@ -11203,24 +11203,24 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat coccineus_A = mkA "coccineus" "coccinea" "coccineum" ; -- [XXXEO] :: dyed scarlet, scarlet-dyed; scarlet, of scarlet color; coccinum_N_N = mkN "coccinum" ; -- [XAXCS] :: ||insect (Coccus ilicis) used for dye; scarlet dye/color; scarlet cloth/wool; coccinus_A = mkA "coccinus" "coccina" "coccinum" ; -- [XXXCO] :: dyed scarlet, scarlet-dyed; scarlet, of scarlet color; - coccio_M_N = mkN "coccio" "coccionis " masculine ; -- [XXXDO] :: dealer; broker; + coccio_M_N = mkN "coccio" "coccionis" masculine ; -- [XXXDO] :: dealer; broker; coccum_N_N = mkN "coccum" ; -- [XAXCO] :: |insect (Coccus ilicis) used for dye; scarlet dye/color; scarlet cloth/wool; coccus_M_N = mkN "coccus" ; -- [FAXET] :: insect (Coccus ilicis) used for dye; scarlet dye/color; scarlet cloth/wool; coccygia_F_N = mkN "coccygia" ; -- [XAXNO] :: wig-tree (Rhus cotinus); kind of sumac used in coloring (L+S); coccymelum_N_N = mkN "coccymelum" ; -- [XAXFO] :: plum; - coccyx_M_N = mkN "coccyx" "coccygis " masculine ; -- [XAXNO] :: cuckoo; + coccyx_M_N = mkN "coccyx" "coccygis" masculine ; -- [XAXNO] :: cuckoo; cocetum_N_N = mkN "cocetum" ; -- [DXXES] :: kind of food prepared from honey and poppies; cochlea_F_N = mkN "cochlea" ; -- [XXXBO] :: snail; (form) snail shell; spiral; screw (press/water/wood); winding entrance; - cochlear_N_N = mkN "cochlear" "cochlearis " neuter ; -- [XXXCO] :: spoon; (originally for extracting snails); spoonful; - cochleare_N_N = mkN "cochleare" "cochlearis " neuter ; -- [XXXCO] :: spoon; (originally for extracting snails); spoonful; + cochlear_N_N = mkN "cochlear" "cochlearis" neuter ; -- [XXXCO] :: spoon; (originally for extracting snails); spoonful; + cochleare_N_N = mkN "cochleare" "cochlearis" neuter ; -- [XXXCO] :: spoon; (originally for extracting snails); spoonful; cochlearis_A = mkA "cochlearis" "cochlearis" "cochleare" ; -- [GBXEW] :: cochlear, pertaining to the (snail-like) inner ear; of/like snail; cochlearium_N_N = mkN "cochlearium" ; -- [XAXFO] :: |snailery, snail pen, enclosure for edible snails; cochleatim_Adv = mkAdv "cochleatim" ; -- [DXXFS] :: spirally; like a snail shell; cochleatus_A = mkA "cochleatus" "cochleata" "cochleatum" ; -- [DXXES] :: spiral/screw formed; cochleola_F_N = mkN "cochleola" ; -- [DAXFS] :: small snail; cochlia_F_N = mkN "cochlia" ; -- [XXXBO] :: snail; (form of) a snail shell; spiral; screw (press/water); winding entrance; - cochlis_F_N = mkN "cochlis" "cochlidis " feminine ; -- [XXXEO] :: spiral shell, conch; snail-shaped precious stone found in Arabia; - cochlos_M_N = mkN "cochlos" "cochli " masculine ; -- [XAXNO] :: kind of marine gastropod; (with spiral shell); + cochlis_F_N = mkN "cochlis" "cochlidis" feminine ; -- [XXXEO] :: spiral shell, conch; snail-shaped precious stone found in Arabia; + cochlos_M_N = mkN "cochlos" "cochli" masculine ; -- [XAXNO] :: kind of marine gastropod; (with spiral shell); cocibilis_A = mkA "cocibilis" "cocibilis" "cocibile" ; -- [XXXNO] :: easy to cook; easily cooked (L+S); cocilendrum_N_N = mkN "cocilendrum" ; -- [BXXFO] :: imaginary magic condiment; cocina_F_N = mkN "cocina" ; -- [XXXFO] :: cooking; art of cookery; kitchen (L+S); @@ -11230,40 +11230,40 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cocinatorius_A = mkA "cocinatorius" "cocinatoria" "cocinatorium" ; -- [XXXFO] :: culinary, used in cooking; pertaining to kitchen (L+S); cocino_V2 = mkV2 (mkV "cocinare") ; -- [XXXEO] :: cook, prepare food; cocinus_A = mkA "cocinus" "cocina" "cocinum" ; -- [XXXFO] :: of/pertaining to cooks/cooking; [forum ~ => market where cooks were hired]; - cocio_M_N = mkN "cocio" "cocionis " masculine ; -- [XXXDO] :: dealer; broker; + cocio_M_N = mkN "cocio" "cocionis" masculine ; -- [XXXDO] :: dealer; broker; cocionatura_F_N = mkN "cocionatura" ; -- [DXXFS] :: bakery; cocionor_V = mkV "cocionari" ; -- [XXXFO] :: trade, traffic (in a petty way); be a dealer/broker; - cocitatio_F_N = mkN "cocitatio" "cocitationis " feminine ; -- [XXXFO] :: long and thorough process of cooking; continuous cooking (L+S); + cocitatio_F_N = mkN "cocitatio" "cocitationis" feminine ; -- [XXXFO] :: long and thorough process of cooking; continuous cooking (L+S); cocitatorius_A = mkA "cocitatorius" "cocitatoria" "cocitatorium" ; -- [XXXFO] :: culinary; used in cooking; cocito_V2 = mkV2 (mkV "cocitare") ; -- [BXXFO] :: cook; boil, fry, bake; burn, parch (sun); stir up; ripen, mature (plot); digest; coclaca_F_N = mkN "coclaca" ; -- [XXXFO] :: round river stones resembling snails; coclea_F_N = mkN "coclea" ; -- [XXXBO] :: snail; (form of) a snail shell; spiral; screw (press/water); winding entrance; - coclear_N_N = mkN "coclear" "coclearis " neuter ; -- [XXXCO] :: spoon; (originally for extracting snails); spoonful; - cocleare_N_N = mkN "cocleare" "coclearis " neuter ; -- [XXXCO] :: spoon; (originally for extracting snails); spoonful; + coclear_N_N = mkN "coclear" "coclearis" neuter ; -- [XXXCO] :: spoon; (originally for extracting snails); spoonful; + cocleare_N_N = mkN "cocleare" "coclearis" neuter ; -- [XXXCO] :: spoon; (originally for extracting snails); spoonful; coclearium_N_N = mkN "coclearium" ; -- [XAXFO] :: |snailery, snail pen, enclosure for edible snails; cocleatim_Adv = mkAdv "cocleatim" ; -- [DXXFS] :: spirally; cocleatus_A = mkA "cocleatus" "cocleata" "cocleatum" ; -- [DXXES] :: spiral/screw formed; 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; + 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; - cocolobis_F_N = mkN "cocolobis" "cocolobis " feminine ; -- [XAXES] :: Spanish name for a type of grape; - cocolubis_F_N = mkN "cocolubis" "cocolubis " feminine ; -- [XAXES] :: Spanish name for a type of grape; - cocos_F_N = mkN "cocos" "cocois " feminine ; -- [GAXEK] :: coconut tree; - cocos_M_N = mkN "cocos" "coci " masculine ; -- [XXXCO] :: cook; + cocolobis_F_N = mkN "cocolobis" "cocolobis" feminine ; -- [XAXES] :: Spanish name for a type of grape; + cocolubis_F_N = mkN "cocolubis" "cocolubis" feminine ; -- [XAXES] :: Spanish name for a type of grape; + cocos_F_N = mkN "cocos" "cocois" feminine ; -- [GAXEK] :: coconut tree; + cocos_M_N = mkN "cocos" "coci" masculine ; -- [XXXCO] :: cook; cocta_F_N = mkN "cocta" ; -- [XXXFO] :: boiled water; (water boiled then iced); coctanum_N_N = mkN "coctanum" ; -- [XAQES] :: kind of small fig; (grown in Syria); coctilicius_A = mkA "coctilicius" "coctilicia" "coctilicium" ; -- [DXXFS] :: of/pertaining to dried wood; [~ taberna => place where dried wood was sold]; coctilis_A = mkA "coctilis" "coctilis" "coctile" ; -- [XXXEO] :: baked/burned (of bricks); made/built of/of baked/burned bricks; cooked (Ecc); coctilum_N_N = mkN "coctilum" ; -- [DXXES] :: very dried wood (pl.); (that burns without smoke); - coctio_F_N = mkN "coctio" "coctionis " feminine ; -- [XXXEO] :: cooking; digestion (of food); burning (L+S); - coctio_M_N = mkN "coctio" "coctionis " masculine ; -- [XXXDO] :: dealer; broker; + coctio_F_N = mkN "coctio" "coctionis" feminine ; -- [XXXEO] :: cooking; digestion (of food); burning (L+S); + coctio_M_N = mkN "coctio" "coctionis" masculine ; -- [XXXDO] :: dealer; broker; coctivus_A = mkA "coctivus" "coctiva" "coctivum" ; -- [XXXNO] :: suitable for cooking, cooking- (of food); that easily cooks/ripens early (L+S); coctonum_N_N = mkN "coctonum" ; -- [XAQES] :: kind of small fig; (grown in Syria); - coctor_M_N = mkN "coctor" "coctoris " masculine ; -- [XXXFO] :: cook; + coctor_M_N = mkN "coctor" "coctoris" masculine ; -- [XXXFO] :: cook; coctoria_F_N = mkN "coctoria" ; -- [FXXEE] :: kiln; coctorium_N_N = mkN "coctorium" ; -- [GXXEK] :: casserole; pan; coctum_N_N = mkN "coctum" ; -- [XXXDO] :: cooked food; smelted ore; @@ -11275,7 +11275,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat coculum_N_N = mkN "coculum" ; -- [XXXDO] :: cooking vessel/pot/pan; (bronze); cocus_M_N = mkN "cocus" ; -- [XXXCO] :: cook; coda_F_N = mkN "coda" ; -- [XAXBO] :: tail (animal); extreme part/tail of anything; penis (Horace); - codex_M_N = mkN "codex" "codicis " masculine ; -- [XXXBO] :: trunk of tree; piece/block of wood; blockhead; (bound) book; note/account book; + codex_M_N = mkN "codex" "codicis" masculine ; -- [XXXBO] :: trunk of tree; piece/block of wood; blockhead; (bound) book; note/account book; codicarius_A = mkA "codicarius" "codicaria" "codicarium" ; -- [XWXCO] :: kind of barge/lighter (w/navis); codicarius_M_N = mkN "codicarius" ; -- [XWXEO] :: bargeman, lighterman; (esp. those who brought grain from Ostia to Rome (L+S)); codicellus_M_N = mkN "codicellus" ; -- [XXXBO] :: notepad, small log; writing tablets; patent; petition to Emperor; will/codicil; @@ -11292,15 +11292,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); - coeles_M_N = mkN "coeles" "coelitis " masculine ; -- [DEXFS] :: the_Gods (usu. pl.); divinity, dweller in heaven; saint (Ecc); - coeleste_N_N = mkN "coeleste" "coelestis " neuter ; -- [XSXCS] :: supernatural/heavenly matters (pl.); heavenly bodies; astronomy; + coeles_M_N = mkN "coeles" "coelitis" masculine ; -- [DEXFS] :: the_Gods (usu. pl.); divinity, dweller in heaven; saint (Ecc); + coeleste_N_N = mkN "coeleste" "coelestis" neuter ; -- [XSXCS] :: supernatural/heavenly matters (pl.); heavenly bodies; astronomy; coelestis_A = mkA "coelestis" "coelestis" "coeleste" ; -- [XXXCS] :: heavenly, of heavens/sky, from heaven/sky; celestial; divine; of the_Gods; - coelestis_F_N = mkN "coelestis" "coelestis " feminine ; -- [XEXCS] :: divinity, god/goddess; god-like person; the_Gods (pl.); heavenly bodies; - coelestis_M_N = mkN "coelestis" "coelestis " masculine ; -- [XEXCS] :: divinity, god/goddess; god-like person; the_Gods (pl.); heavenly bodies; + coelestis_F_N = mkN "coelestis" "coelestis" feminine ; -- [XEXCS] :: divinity, god/goddess; god-like person; the_Gods (pl.); heavenly bodies; + coelestis_M_N = mkN "coelestis" "coelestis" masculine ; -- [XEXCS] :: divinity, god/goddess; god-like person; the_Gods (pl.); heavenly bodies; coeliaca_F_N = mkN "coeliaca" ; -- [XBXNS] :: remedy/medicine for bowel/stomach/abdomen pains/disease; coeliacus_A = mkA "coeliacus" "coeliaca" "coeliacum" ; -- [XBXCO] :: in bowels/stomach (pain); having disease of bowels; for bowels (remedy); coeliacus_M_N = mkN "coeliacus" ; -- [XBXEO] :: person having disease/pain/suffering in bowels; (or stomach/abdomen L+S); - coelibatus_M_N = mkN "coelibatus" "coelibatus " masculine ; -- [XXXFS] :: celibacy; bachelorhood; state of not being married; single life; + coelibatus_M_N = mkN "coelibatus" "coelibatus" masculine ; -- [XXXFS] :: celibacy; bachelorhood; state of not being married; single life; coelicola_C_N = mkN "coelicola" ; -- [XEXCO] :: heaven dweller; deity, god/goddess; worshiper of heavens (L+S); coelicus_A = mkA "coelicus" "coelica" "coelicum" ; -- [FEXEE] :: heavenly; celestial; coelifer_A = mkA "coelifer" "coelifera" "coeliferum" ; -- [XXXCO] :: supporting sky/heavens; @@ -11313,24 +11313,24 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat coelum_N_N = mkN "coelum" ; -- [XSXAS] :: sky, heaven, heavens; space; air, climate, weather; universe, world; Jehovah; coelus_M_N = mkN "coelus" ; -- [BSXAS] :: sky, heaven, heavens; space; air, climate, weather; universe, world; Jehovah; coemendatus_A = mkA "coemendatus" "coemendata" "coemendatum" ; -- [DLXFS] :: amended at same time; - coemesis_F_N = mkN "coemesis" "coemesisis " feminine ; -- [DDXFS] :: somniferous song; + 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; + 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); - coemptor_M_N = mkN "coemptor" "coemptoris " masculine ; -- [XXXFO] :: one who buys up; (one who bribes); one who purchases many things (L+S); + coemptionator_M_N = mkN "coemptionator" "coemptionatoris" masculine ; -- [XLXFO] :: man acting as fictitious purchaser in coemptio (sham marriage/sale); + coemptor_M_N = mkN "coemptor" "coemptoris" masculine ; -- [XXXFO] :: one who buys up; (one who bribes); one who purchases many things (L+S); coena_F_N = mkN "coena" ; -- [XXXBE] :: dinner/supper, principle Roman meal (evening); course; meal; company at dinner; coenacularius_A = mkA "coenacularius" "coenacularia" "coenacularium" ; -- [XXXFS] :: of/pertaining to a garret/attic; coenaculum_N_N = mkN "coenaculum" ; -- [XXXCS] :: attic, garret (often let as lodging); upstairs dining room; top/upper story; coenaticus_A = mkA "coenaticus" "coenatica" "coenaticum" ; -- [XXXFS] :: of/pertaining to (a) dinner; - coenatio_F_N = mkN "coenatio" "coenationis " feminine ; -- [XXXCS] :: dining-room; dining hall; + coenatio_F_N = mkN "coenatio" "coenationis" feminine ; -- [XXXCS] :: dining-room; dining hall; coenatiuncula_F_N = mkN "coenatiuncula" ; -- [XXXFS] :: small dining-room; - coenator_M_N = mkN "coenator" "coenatoris " masculine ; -- [DXXFS] :: diner; dinner guest; + 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); + 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); coeno_V = mkV "coenare" ; -- [XXXBS] :: dine, eat dinner/supper; have dinner with; dine on, make a meal of; coenobiarcha_M_N = mkN "coenobiarcha" ; -- [EEXEE] :: abbot; @@ -11338,140 +11338,140 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat coenobiticus_A = mkA "coenobiticus" "coenobitica" "coenobiticum" ; -- [EEXEE] :: monastic; of monastic life/works/ritual/property; coenobium_N_N = mkN "coenobium" ; -- [EEXCS] :: monastery; convent; cloister; 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; + coenon_N_N = mkN "coenon" "coeni" neuter ; -- [XBXIO] :: kind of eye-salve; + coenositas_F_N = mkN "coenositas" "coenositatis" feminine ; -- [XXXES] :: dirty/foul/muddy place; coenosus_A = mkA "coenosus" ; -- [XXXES] :: muddy; filthy, foul; slimy, marshy; impure; coenula_F_N = mkN "coenula" ; -- [XXXCS] :: little dinner/supper; 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; - 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); + coeo_1_V = mkV "coire" "coeo" "coivi" "coitus" ; -- [XXXAO] :: |enter agreement; unite/assemble/conspire; come/go together; mend/knit (wound); + coeo_2_V = mkV "coire" "coeo" "coiii" "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; + 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); coeptum_N_N = mkN "coeptum" ; -- [XXXCO] :: undertaking (usu.pl.), enterprise, scheme; work begun/started/taken in hand; coeptus_A = mkA "coeptus" "coepta" "coeptum" ; -- [XXXCS] :: begun, started, commenced; undertaken; - coeptus_M_N = mkN "coeptus" "coeptus " masculine ; -- [XXXCO] :: beginning, undertaking; + coeptus_M_N = mkN "coeptus" "coeptus" masculine ; -- [XXXCO] :: beginning, undertaking; coepulonus_M_N = mkN "coepulonus" ; -- [XXXFO] :: table-companion; (mock-tragic for parasitus); fellow banqueter/companion (L+S); coepulor_V = mkV "coepulari" ; -- [DXXFS] :: feast/dine together; coerceo_V2 = mkV2 (mkV "coercere") ; -- [XXXAO] :: enclose, confine; restrain, check, curb, repress; limit; preserve; punish; - coercio_F_N = mkN "coercio" "coercionis " feminine ; -- [XLXFS] :: coercion, restraint, repression; (affliction of summary/right to) punishment; - coercitio_F_N = mkN "coercitio" "coercitionis " feminine ; -- [XLXCO] :: coercion, restraint, repression; (affliction of summary/right to) punishment; + coercio_F_N = mkN "coercio" "coercionis" feminine ; -- [XLXFS] :: coercion, restraint, repression; (affliction of summary/right to) punishment; + coercitio_F_N = mkN "coercitio" "coercitionis" feminine ; -- [XLXCO] :: coercion, restraint, repression; (affliction of summary/right to) punishment; coercitivus_A = mkA "coercitivus" "coercitiva" "coercitivum" ; -- [FXXFE] :: compelling; coercing; - coercitor_M_N = mkN "coercitor" "coercitoris " masculine ; -- [DXXES] :: enforcer; one who restrains; - coerctio_F_N = mkN "coerctio" "coerctionis " feminine ; -- [XLXFS] :: coercion, restraint, repression; (affliction of summary/right to) punishment; + coercitor_M_N = mkN "coercitor" "coercitoris" masculine ; -- [DXXES] :: enforcer; one who restrains; + coerctio_F_N = mkN "coerctio" "coerctionis" feminine ; -- [XLXFS] :: coercion, restraint, repression; (affliction of summary/right to) punishment; coerro_V = mkV "coerrare" ; -- [XXXFO] :: go/wander around together; - 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; + 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; - coextendo_V = mkV "coextendere" "coextendo" "coextendi" "coextensus "; -- [FXXFE] :: have same extension/expansion; + 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; - cofraternitas_F_N = mkN "cofraternitas" "cofraternitatis " feminine ; -- [FEXEE] :: association, brotherhood, society/confraternity/confederation/sodality/guild; + cofraternitas_F_N = mkN "cofraternitas" "cofraternitatis" feminine ; -- [FEXEE] :: association, brotherhood, society/confraternity/confederation/sodality/guild; cofrus_M_N = mkN "cofrus" ; -- [FXXFX] :: payment; some kind of coin?; cogitabilis_A = mkA "cogitabilis" "cogitabilis" "cogitabile" ; -- [XXXEO] :: conceivable, thinkable, imaginable, cogitable; cogitabundus_A = mkA "cogitabundus" "cogitabunda" "cogitabundum" ; -- [XXXEO] :: wrapped in thought; thoughtful, thinking; - cogitamen_N_N = mkN "cogitamen" "cogitaminis " neuter ; -- [DXXFS] :: thinking; + cogitamen_N_N = mkN "cogitamen" "cogitaminis" neuter ; -- [DXXFS] :: thinking; cogitamentum_N_N = mkN "cogitamentum" ; -- [DXXFS] :: thought; cogitate_Adv = mkAdv "cogitate" ; -- [XXXEO] :: carefully, with thought/reflection; cogitatim_Adv = mkAdv "cogitatim" ; -- [XXXFO] :: carefully, with thought/reflection; - cogitatio_F_N = mkN "cogitatio" "cogitationis " feminine ; -- [XXXAO] :: thinking, meditation, reflection; thought; intention; plan; opinion, reasoning; + cogitatio_F_N = mkN "cogitatio" "cogitationis" feminine ; -- [XXXAO] :: thinking, meditation, reflection; thought; intention; plan; opinion, reasoning; cogitatorium_N_N = mkN "cogitatorium" ; -- [DXXES] :: receptacle of thought; cogitatum_N_N = mkN "cogitatum" ; -- [XXXCO] :: result of deliberation, thoughts/ideas/reflections; intentions/plans; (pl. L+S); cogitatus_A = mkA "cogitatus" "cogitata" "cogitatum" ; -- [XXXES] :: deliberate; - cogitatus_M_N = mkN "cogitatus" "cogitatus " masculine ; -- [XXXEO] :: act of thinking; thought (L+S); + cogitatus_M_N = mkN "cogitatus" "cogitatus" masculine ; -- [XXXEO] :: act of thinking; thought (L+S); cogito_V = mkV "cogitare" ; -- [XXXAO] :: think; consider, reflect on, ponder; imagine, picture; intend, look forward to; cognata_F_N = mkN "cognata" ; -- [XXXCO] :: relation by birth (female), kinswoman; - cognatio_F_N = mkN "cognatio" "cognationis " feminine ; -- [XXXBO] :: blood relation/relationship; kinsmen/relatives, family; consanguinity; affinity; + cognatio_F_N = mkN "cognatio" "cognationis" feminine ; -- [XXXBO] :: blood relation/relationship; kinsmen/relatives, family; consanguinity; affinity; cognatus_A = mkA "cognatus" "cognata" "cognatum" ; -- [XXXBO] :: related, related by birth/position, kindred; similar/akin; having affinity with; cognatus_M_N = mkN "cognatus" ; -- [XXXCO] :: relation (male), kinsman; [~i regis => contingent of Persian king's bodyguard]; - cognitio_F_N = mkN "cognitio" "cognitionis " feminine ; -- [XXXAO] :: |getting to know (fact/subject/person); acquaintance; idea/notion; knowledge; + cognitio_F_N = mkN "cognitio" "cognitionis" feminine ; -- [XXXAO] :: |getting to know (fact/subject/person); acquaintance; idea/notion; knowledge; cognitionalis_A = mkA "cognitionalis" "cognitionalis" "cognitionale" ; -- [DLXES] :: of/pertaining to judicial inquiry/investigation; cognitionaliter_Adv = mkAdv "cognitionaliter" ; -- [DLXFS] :: by judicial inquiry/investigation; - cognitor_M_N = mkN "cognitor" "cognitoris " masculine ; -- [XLXCO] :: guarantor of identity; he who knows/is acquainted with (person/thing); attorney; + cognitor_M_N = mkN "cognitor" "cognitoris" masculine ; -- [XLXCO] :: guarantor of identity; he who knows/is acquainted with (person/thing); attorney; cognitorius_A = mkA "cognitorius" "cognitoria" "cognitorium" ; -- [XLXEO] :: of/concerning an attorney/advocate; 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; + cognitus_M_N = mkN "cognitus" "cognitus" masculine ; -- [XXXCO] :: act of getting to know/becoming acquainted with; 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); + 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); + cognominatio_F_N = mkN "cognominatio" "cognominationis" feminine ; -- [XXXFS] :: surname, family/3rd name; name (additional/derived from a characteristic); cognominatus_A = mkA "cognominatus" "cognominata" "cognominatum" ; -- [XXXFO] :: derived from (other words) (of words); given (name); named; called; cognominis_A = mkA "cognominis" "cognominis" "cognomine" ; -- [XXXCO] :: having same name; synonymous; like-named; cognomino_V2 = mkV2 (mkV "cognominare") ; -- [XXXBO] :: give surname/epithet/sobriquet to person; name, give specific name, call; cognominor_V = mkV "cognominari" ; -- [FXXEE] :: be named/surnamed/called; cognoscens_A = mkA "cognoscens" "cognoscentis"; -- [XXXES] :: acquainted with; aware of; - cognoscens_M_N = mkN "cognoscens" "cognoscentis " masculine ; -- [XLXDO] :: judge; inquisitor; one taking part/conducting a judicial investigation; + cognoscens_M_N = mkN "cognoscens" "cognoscentis" masculine ; -- [XLXDO] :: judge; inquisitor; one taking part/conducting a judicial investigation; cognoscenter_Adv = mkAdv "cognoscenter" ; -- [DXXFS] :: with knowledge; distinctly; - cognoscibilitas_F_N = mkN "cognoscibilitas" "cognoscibilitatis " feminine ; -- [FXXEE] :: ability to be know/understood/recognized; + 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; + 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; + 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; cohabito_V = mkV "cohabitare" ; -- [DXXES] :: dwell/live together; cohaerens_A = mkA "cohaerens" "cohaerentis"; -- [XXXDO] :: touching, adjacent; holding together, coherent (literary work); being in accord; - cohaerente_N_N = mkN "cohaerente" "cohaerentis " neuter ; -- [XXXEO] :: things (pl.) touching/adjacent; coherent/systematic/connected whole/argument; + cohaerente_N_N = mkN "cohaerente" "cohaerentis" neuter ; -- [XXXEO] :: things (pl.) touching/adjacent; coherent/systematic/connected whole/argument; cohaerenter_Adv =mkAdv "cohaerenter" "cohaerentius" "cohaerentissime" ; -- [XXXEO] :: systematically; consistently, compatibly; continuously, uninterruptedly; cohaerentia_F_N = mkN "cohaerentia" ; -- [XXXCO] :: cohesion, sticking/combining together; organic structure; being time contiguous; 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; + 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; + 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; - cohercitio_F_N = mkN "cohercitio" "cohercitionis " feminine ; -- [XLXCO] :: coercion, restraint, repression; (affliction of summary/right to) punishment; + cohercitio_F_N = mkN "cohercitio" "cohercitionis" feminine ; -- [XLXCO] :: coercion, restraint, repression; (affliction of summary/right to) punishment; 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; + 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); + 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 + 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; - cohortatio_F_N = mkN "cohortatio" "cohortationis " feminine ; -- [XXXCO] :: encouragement, exhortation, inciting; + cohortatio_F_N = mkN "cohortatio" "cohortationis" feminine ; -- [XXXCO] :: encouragement, exhortation, inciting; cohortatiuncula_F_N = mkN "cohortatiuncula" ; -- [DXXFS] :: short exhortation; cohorticula_F_N = mkN "cohorticula" ; -- [XWXFO] :: little/small cohort; (used with contempt); cohorto_V2 = mkV2 (mkV "cohortare") ; -- [DXXES] :: encourage, exhort; cohortor_V = mkV "cohortari" ; -- [XXXBO] :: encourage, cheer up; exhort, rouse, incite; admonish; - cohospes_M_N = mkN "cohospes" "cohospitis " masculine ; -- [DXXFS] :: fellow-guest; - cohospitans_M_N = mkN "cohospitans" "cohospitantis " masculine ; -- [DXXFS] :: fellow-guest; + cohospes_M_N = mkN "cohospes" "cohospitis" masculine ; -- [DXXFS] :: fellow-guest; + cohospitans_M_N = mkN "cohospitans" "cohospitantis" masculine ; -- [DXXFS] :: fellow-guest; 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; + 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; + 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; + 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; cojecto_V = mkV "cojectare" ; -- [XXXCO] :: |throw together; assemble; throw (person in prison); interpret (portent); cojectura_F_N = mkN "cojectura" ; -- [XXXDX] :: conjecture/guess/inference/reasoning/interpretation/comparison/prophecy/forecast - cojux_F_N = mkN "cojux" "cojugis " feminine ; -- [XXXEO] :: spouse/mate/consort; husband (M); wife (F)/bride/fiancee/concubine; yokemate; - cojux_M_N = mkN "cojux" "cojugis " masculine ; -- [XXXEO] :: spouse/mate/consort; husband (M); wife (F)/bride/fiancee/concubine; yokemate; + cojux_F_N = mkN "cojux" "cojugis" feminine ; -- [XXXEO] :: spouse/mate/consort; husband (M); wife (F)/bride/fiancee/concubine; yokemate; + cojux_M_N = mkN "cojux" "cojugis" masculine ; -- [XXXEO] :: spouse/mate/consort; husband (M); wife (F)/bride/fiancee/concubine; yokemate; cola_F_N = mkN "cola" ; -- [FXXFE] :: strainer; colafus_M_N = mkN "colafus" ; -- [XXXCO] :: blow with fist; buffet, cuff; box on ear (L+S); colaphizo_V2 = mkV2 (mkV "colaphizare") ; -- [DXXFS] :: box one's ears; cuff; @@ -11481,35 +11481,35 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat coleatus_A = mkA "coleatus" "coleata" "coleatum" ; -- [XXXFO] :: provided with/having/pertaining to testicles; colegium_N_N = mkN "colegium" ; -- [XXXEO] :: college/board (priests); corporation; brotherhood/fraternity/guild/colleagueship colens_A = mkA "colens" "colentis"; -- [XXXFS] :: honoring, treating respectfully; - colens_M_N = mkN "colens" "colentis " masculine ; -- [XEXFS] :: reverer, worshiper; - coleopteron_N_N = mkN "coleopteron" "coleopteri " neuter ; -- [GXXEK] :: coleopteron, beetle; carob; carob tree; + colens_M_N = mkN "colens" "colentis" masculine ; -- [XEXFS] :: reverer, worshiper; + coleopteron_N_N = mkN "coleopteron" "coleopteri" neuter ; -- [GXXEK] :: coleopteron, beetle; carob; carob tree; coleopterum_N_N = mkN "coleopterum" ; -- [GXXEK] :: beetle; 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; + 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; - colicon_N_N = mkN "colicon" "colici " neuter ; -- [XBXFO] :: remedy for colic; + 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; + colicon_N_N = mkN "colicon" "colici" neuter ; -- [XBXFO] :: remedy for colic; coliculus_M_N = mkN "coliculus" ; -- [XAXCO] :: stalk/stem (small); small cabbage, cabbage sprout; pillar like a stalk/shoot; colicus_A = mkA "colicus" "colica" "colicum" ; -- [DBXFS] :: of/pertaining to colic; coligo_V2 = mkV2 (mkV "coligare") ; -- [XXXEO] :: bind/tie/pack together/up, connect, unite, unify; fetter, bind, put in bonds; colimbus_M_N = mkN "colimbus" ; -- [XXXIO] :: swimming pool; colina_F_N = mkN "colina" ; -- [XXXCS] :: kitchen; portable kitchen; food/fare/board; cooking; place for burnt offerings; 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; + 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; + 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; collacero_V2 = mkV2 (mkV "collacerare") ; -- [XXXFO] :: lacerate severely; tear to pieces (L+S); - collacrimatio_F_N = mkN "collacrimatio" "collacrimationis " feminine ; -- [XXXFO] :: accompanying tears; weeping/lamenting (together/greatly); + collacrimatio_F_N = mkN "collacrimatio" "collacrimationis" feminine ; -- [XXXFO] :: accompanying tears; weeping/lamenting (together/greatly); collacrimo_V = mkV "collacrimare" ; -- [XXXDO] :: weep together, weep in company of someone; weep over/for (w/ACC); bewail; collacrumo_V = mkV "collacrumare" ; -- [XXXES] :: weep together, weep in company of someone; weep over/for (w/ACC); bewail; collactanea_F_N = mkN "collactanea" ; -- [XXXEO] :: foster-sister; one nourished at same breast; @@ -11522,25 +11522,25 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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; - collaris_M_N = mkN "collaris" "collaris " masculine ; -- [XXXFO] :: collar, neckband; chain for neck (L+S); + collaris_M_N = mkN "collaris" "collaris" masculine ; -- [XXXFO] :: collar, neckband; chain for neck (L+S); collarium_N_N = mkN "collarium" ; -- [DXXES] :: collar, neckband; chain for neck (L+S); collatatus_A = mkA "collatatus" "collatata" "collatatum" ; -- [XXXFS] :: extended; diffuse; collateralis_A = mkA "collateralis" "collateralis" "collaterale" ; -- [FLXFE] :: collateral; collatero_V2 = mkV2 (mkV "collaterare") ; -- [DXXFS] :: admit on both sides; collaticius_A = mkA "collaticius" "collaticia" "collaticium" ; -- [XXXDO] :: contributed, raised/produced by contributions; brought together (L+S); mingled; - collatio_F_N = mkN "collatio" "collationis " feminine ; -- [XGEBO] :: |comparison; [grammatical secunda ~/tertia ~ => comparative/superlative]; + collatio_F_N = mkN "collatio" "collationis" feminine ; -- [XGEBO] :: |comparison; [grammatical secunda ~/tertia ~ => comparative/superlative]; collatitius_A = mkA "collatitius" "collatitia" "collatitium" ; -- [XXXES] :: contributed, raised/produced by contributions; brought together (L+S); mingled; collativum_N_N = mkN "collativum" ; -- [DLXFS] :: contribution in money; collativus_A = mkA "collativus" "collativa" "collativum" ; -- [XXXEO] :: supplied/produced by contributions from many quarters; collected/combined (L+S); - collator_M_N = mkN "collator" "collatoris " masculine ; -- [XXXEO] :: joint contributor, subscriber; he who brings/places together (L+S); comparer; + collator_M_N = mkN "collator" "collatoris" masculine ; -- [XXXEO] :: joint contributor, subscriber; he who brings/places together (L+S); comparer; collatro_V2 = mkV2 (mkV "collatrare") ; -- [XXXFO] :: bark in chorus at; bark/yelp fiercely at (L+S); inveigh against; - collatus_M_N = mkN "collatus" "collatus " masculine ; -- [XWXFO] :: joining of battle; affray, attack (L+S); contributing (to knowledge, teaching); + collatus_M_N = mkN "collatus" "collatus" masculine ; -- [XWXFO] :: joining of battle; affray, attack (L+S); contributing (to knowledge, teaching); collaudabilis_A = mkA "collaudabilis" "collaudabilis" "collaudabile" ; -- [DXXFS] :: worthy of praise in every respect; - collaudatio_F_N = mkN "collaudatio" "collaudationis " feminine ; -- [XXXEO] :: high/warm praise; commendation; eulogy; - collaudator_M_N = mkN "collaudator" "collaudatoris " masculine ; -- [DXXFS] :: one who praises highly/warmly; + collaudatio_F_N = mkN "collaudatio" "collaudationis" feminine ; -- [XXXEO] :: high/warm praise; commendation; eulogy; + collaudator_M_N = mkN "collaudator" "collaudatoris" masculine ; -- [DXXFS] :: one who praises highly/warmly; collaudo_V2 = mkV2 (mkV "collaudare") ; -- [XXXCO] :: praise/extol highly; commend; eulogize; collaxo_V2 = mkV2 (mkV "collaxare") ; -- [XXXFO] :: loosen; make loose/porous (L+S); collecta_F_N = mkN "collecta" ; -- [XXXFO] :: contribution; collection; meeting/assemblage (L+S); Collect at Mass (eccl.); @@ -11552,16 +11552,16 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat collecte_Adv = mkAdv "collecte" ; -- [DXXFS] :: summarily; briefly; collecticius_A = mkA "collecticius" "collecticia" "collecticium" ; -- [XXXEO] :: obtained/collected from various quarters; gathered hastily without selection; collectim_Adv = mkAdv "collectim" ; -- [DXXFS] :: summarily; briefly; - collectio_F_N = mkN "collectio" "collectionis " feminine ; -- [XXXCO] :: collection/accumulation; gathering, abscess; recapitulation, summary; inference; + collectio_F_N = mkN "collectio" "collectionis" feminine ; -- [XXXCO] :: collection/accumulation; gathering, abscess; recapitulation, summary; inference; collectitius_A = mkA "collectitius" "collectitia" "collectitium" ; -- [XXXEO] :: obtained/collected from various quarters; gathered hastily without selection; collective_Adv = mkAdv "collective" ; -- [GXXEK] :: collectively; collectivisticus_A = mkA "collectivisticus" "collectivistica" "collectivisticum" ; -- [FGXFE] :: proceeding by inference; deductive; gathered together (L+S); collective; collectivus_A = mkA "collectivus" "collectiva" "collectivum" ; -- [XGXFO] :: proceeding by inference; deductive; gathered together (L+S); collective; - collector_M_N = mkN "collector" "collectoris " masculine ; -- [XXXIO] :: collector, one who collects; fellow student (L+S); + 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.); 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; + 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; collegialis_A = mkA "collegialis" "collegialis" "collegiale" ; -- [XXXIO] :: of a collegium (guild/fraternity/board); collegial; acting together (Ecc); @@ -11572,11 +11572,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat collegiatus_A = mkA "collegiatus" "collegiata" "collegiatum" ; -- [FXXEE] :: collegiate, corporate, of a group; collegiatus_M_N = mkN "collegiatus" ; -- [DXXES] :: member of a collegium (guild/fraternity/society/corporation/board); collegium_N_N = mkN "collegium" ; -- [GXXEK] :: college, school; - collema_N_N = mkN "collema" "collematis " neuter ; -- [DXXFS] :: that which is glued/cemented together; + 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; + colletis_F_N = mkN "colletis" "colletis" feminine ; -- [DAXFS] :: plant; collevo_V2 = mkV2 (mkV "collevare") ; -- [XXXDO] :: make (entirely) smooth; smooth; colliberta_F_N = mkN "colliberta" ; -- [XXXIO] :: fellow freedwoman; (having same patronus); collibertus_M_N = mkN "collibertus" ; -- [XXXCO] :: fellow freedman; (having same patronus); @@ -11586,11 +11586,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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 "colligere" "colligo" "collexi" "collectus ") ; -- [XXXFO] :: |obtain/acquire, amass; rally; recover; sum up; deduce, infer; compute, add up; + colligatio_F_N = mkN "colligatio" "colligationis" feminine ; -- [XGXCO] :: binding together; bond/connection; thing that binds/connects, band; conjunction; + 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); @@ -11600,56 +11600,56 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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); - collisio_F_N = mkN "collisio" "collisionis " feminine ; -- [XXXFO] :: clash, collision; dashing/striking together (L+S); + collis_M_N = mkN "collis" "collis" masculine ; -- [XXXBO] :: hill, hillock, eminence, hill-top; mound; high ground; mountains (pl.) (poetic); + collisio_F_N = mkN "collisio" "collisionis" feminine ; -- [XXXFO] :: clash, collision; dashing/striking together (L+S); collisus_A = mkA "collisus" "collisa" "collisum" ; -- [XXXFO] :: crushed, flattened; - collisus_M_N = mkN "collisus" "collisus " masculine ; -- [XXXEO] :: striking/clashing together; collision; - collocatio_F_N = mkN "collocatio" "collocationis " feminine ; -- [XXXCO] :: placing/siting (together); position; arrangement, ordering (things); marrying; + collisus_M_N = mkN "collisus" "collisus" masculine ; -- [XXXEO] :: striking/clashing together; collision; + collocatio_F_N = mkN "collocatio" "collocationis" feminine ; -- [XXXCO] :: placing/siting (together); position; arrangement, ordering (things); marrying; colloco_V2 = mkV2 (mkV "collocare") ; -- [XXXAO] :: |put together, assemble; settle/establish in a place/marriage; billet; lie down; collocupleto_V2 = mkV2 (mkV "collocupletare") ; -- [XXXEO] :: enrich, make wealthy/very rich; embellish, adorn; - collocutio_F_N = mkN "collocutio" "collocutionis " feminine ; -- [XXXDO] :: conversation (private), discussion, debate; conference, parley; talking together - collocutor_M_N = mkN "collocutor" "collocutoris " masculine ; -- [DEXES] :: he who talks with another; + collocutio_F_N = mkN "collocutio" "collocutionis" feminine ; -- [XXXDO] :: conversation (private), discussion, debate; conference, parley; talking together + collocutor_M_N = mkN "collocutor" "collocutoris" masculine ; -- [DEXES] :: he who talks with another; 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; + 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; colluco_V2 = mkV2 (mkV "collucare") ; -- [XAXEO] :: prune; thin out (trees); clear/thin (forest) (L+S); - colluctatio_F_N = mkN "colluctatio" "colluctationis " feminine ; -- [XXXCO] :: struggling (physical), wrestling; struggle, conflict; death struggle/agony; - colluctor_M_N = mkN "colluctor" "colluctoris " masculine ; -- [DXXFS] :: wrestler; antagonist, adversary; + colluctatio_F_N = mkN "colluctatio" "colluctationis" feminine ; -- [XXXCO] :: struggling (physical), wrestling; struggle, conflict; death struggle/agony; + 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); + 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; + 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; - collusio_F_N = mkN "collusio" "collusionis " feminine ; -- [XXXDO] :: secret/deceptive understanding, collusion; - collusor_M_N = mkN "collusor" "collusoris " masculine ; -- [XXXCO] :: playmate, companion in play; fellow gambler; one in collusion to hurt another; + collusio_F_N = mkN "collusio" "collusionis" feminine ; -- [XXXDO] :: secret/deceptive understanding, collusion; + collusor_M_N = mkN "collusor" "collusoris" masculine ; -- [XXXCO] :: playmate, companion in play; fellow gambler; one in collusion to hurt another; collusorie_Adv = mkAdv "collusorie" ; -- [XXXFO] :: in/by collusion; in a concerted manner (L+S); collustrium_N_N = mkN "collustrium" ; -- [XEXIO] :: ceremonial purification (of fields); corporation that procured purification; collustro_V2 = mkV2 (mkV "collustrare") ; -- [XXXCO] :: illuminate, make bright, light up fully; look over, survey; traverse, explore; - collutio_F_N = mkN "collutio" "collutionis " feminine ; -- [XXXFO] :: rinsing; washing (L+S); + collutio_F_N = mkN "collutio" "collutionis" feminine ; -- [XXXFO] :: rinsing; washing (L+S); collutito_V2 = mkV2 (mkV "collutitare") ; -- [DXXES] :: soil/defile greatly/thoroughly; collutlento_V2 = mkV2 (mkV "collutlentare") ; -- [XXXFO] :: cover over with mud; colluviaris_A = mkA "colluviaris" "colluviaris" "colluviare" ; -- [XAXFO] :: swilled/slopped, fed on refuse/filth (pigs); - colluvies_F_N = mkN "colluvies" "colluviei " feminine ; -- [XAXCO] :: muck, decayed matter; refuse/sewage; pig-swill; filth; dregs; cesspool/mire; - colluvio_F_N = mkN "colluvio" "colluvionis " feminine ; -- [XXXCS] :: |muck, decayed matter; refuse/sewage; pig-swill; filth; dregs; cesspool/mire; + colluvies_F_N = mkN "colluvies" "colluviei" feminine ; -- [XAXCO] :: muck, decayed matter; refuse/sewage; pig-swill; filth; dregs; cesspool/mire; + colluvio_F_N = mkN "colluvio" "colluvionis" feminine ; -- [XXXCS] :: |muck, decayed matter; refuse/sewage; pig-swill; filth; dregs; cesspool/mire; colluvium_N_N = mkN "colluvium" ; -- [DAXES] :: muck, decayed matter; refuse/sewage; pig-swill; filth; dregs; cesspool/mire; collybista_M_N = mkN "collybista" ; -- [DXXES] :: money-changer; collybus_M_N = mkN "collybus" ; -- [XXXEO] :: (cost of) exchange; agio, discount/fee to change money/make change; coin; @@ -11657,9 +11657,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat collyricus_A = mkA "collyricus" "collyrica" "collyricum" ; -- [XXXFO] :: made with collyra (kind of pasta); of vermicelli (L+S); (vermicelli soup); collyrida_F_N = mkN "collyrida" ; -- [DXXDS] :: roll/cake; head-dress of women; plant (also called malva erratica); 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); + 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 "colere" "colo" "colui" "cultus ") ; -- [XXXAO] :: |honor, cherish, worship; tend, take care of; adorn, dress, decorate, embellish; + 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); @@ -11670,14 +11670,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + colocynthis_F_N = mkN "colocynthis" "colocynthidis" feminine ; -- [XAXNO] :: 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; + 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); colonarius_A = mkA "colonarius" "colonaria" "colonarium" ; -- [DAXES] :: of/pertaining to farmer/colonist; rustic; - colonatus_M_N = mkN "colonatus" "colonatus " masculine ; -- [DAXFS] :: condition of a rustic; + colonatus_M_N = mkN "colonatus" "colonatus" masculine ; -- [DAXFS] :: condition of a rustic; colonellus_M_N = mkN "colonellus" ; -- [GWXEK] :: colonel; colonia_F_N = mkN "colonia" ; -- [XAXCS] :: |land possession; landed estate, farm; abode/dwelling; [~ Agrippina => Colonge]; colonialismus_M_N = mkN "colonialismus" ; -- [GXXEK] :: colonialism; @@ -11689,28 +11689,28 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - color_M_N = mkN "color" "coloris " masculine ; -- [XXXAO] :: color; pigment; shade/tinge; complexion; outward appearance/show; excuse/pretext + colophon_M_N = mkN "colophon" "colophonis" masculine ; -- [XXXEO] :: 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); + colorator_M_N = mkN "colorator" "coloratoris" masculine ; -- [XXXEO] :: colorer; house-painter(?); polisher (L+S); 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; - colos_M_N = mkN "colos" "coloris " masculine ; -- [BXXAO] :: color; pigment; shade/tinge; complexion; outward appearance/show; excuse/pretext + colos_M_N = mkN "colos" "coloris" masculine ; -- [BXXAO] :: color; pigment; shade/tinge; complexion; outward appearance/show; excuse/pretext colosiaeus_A = mkA "colosiaeus" "colossiaea" "colossiaeum" ; -- [XXXNO] :: colossal, huge, gigantic; much larger than life (statue); colossaeus_A = mkA "colossaeus" "colossaea" "colossaeum" ; -- [XXXEO] :: colossal, huge, gigantic; much larger than life (statue); colosseus_A = mkA "colosseus" "colossea" "colosseum" ; -- [XXXEO] :: colossal, huge, gigantic; much larger than life (statue); colossicon_A = mkA "colossicon" ; -- N colossicus_A = mkA "colossicus" "colossica" "colossicum" ; -- [XXXEO] :: colossal, huge, gigantic; much larger than life (statue); colostra_F_N = mkN "colostra" ; -- [XAXCO] :: colustrum/beestings (first milk from a cow after calving); (term of endearment); - colostratio_F_N = mkN "colostratio" "colostrationis " feminine ; -- [XAXNO] :: disease of new-born mammals; (falsely attributed to first milk/beestings); + colostratio_F_N = mkN "colostratio" "colostrationis" feminine ; -- [XAXNO] :: disease of new-born mammals; (falsely attributed to first milk/beestings); colostratus_A = mkA "colostratus" "colostrata" "colostratum" ; -- [XAXNO] :: afflicted with disease from first milk/beestings; colostratus_M_N = mkN "colostratus" ; -- [XAXNS] :: one/those afflicted with disease (colostration) from first milk/beestings; colostrum_N_N = mkN "colostrum" ; -- [XAXCO] :: colustrum/beestings (first milk from a cow after calving); (term of endearment); - colotes_M_N = mkN "colotes" "colotae " masculine ; -- [XAXNO] :: gecko/spotted lizard (Platdactylus mauretanicus); + colotes_M_N = mkN "colotes" "colotae" masculine ; -- [XAXNO] :: gecko/spotted lizard (Platdactylus mauretanicus); colpa_F_N = mkN "colpa" ; -- [XXXES] :: |offense; error; (sense of) guilt; fault/defect (moral/other); sickness/injury; coluber_M_N = mkN "coluber" ; -- [XAXCO] :: snake; serpent; (forming hair of mythical monsters); colubra_F_N = mkN "colubra" ; -- [XAXCO] :: serpent, snake; (forming hair of mythical monsters); Furies; (head of) Hydra; @@ -11721,8 +11721,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat colubrosus_A = mkA "colubrosus" "colubrosa" "colubrosum" ; -- [DXXFS] :: serpentine, winding; colum_N_N = mkN "colum" ; -- [XXXCO] :: |strainer, filter, sieve; vessel for straining, colander (L+S); wicker fish net; columba_F_N = mkN "columba" ; -- [XAXBO] :: pigeon; dove; (term of endearment); (bird of Venus/symbol of love/gentleness); - columbar_N_N = mkN "columbar" "columbaris " neuter ; -- [XXXEO] :: pigeon compartment/cot/hole; collar for constraint, pillory; niche in sepulcher; - columbare_N_N = mkN "columbare" "columbaris " neuter ; -- [XXXEO] :: pigeon compartment/cot/hole; collar for constraint, pillory; niche in sepulcher; + columbar_N_N = mkN "columbar" "columbaris" neuter ; -- [XXXEO] :: pigeon compartment/cot/hole; collar for constraint, pillory; niche in sepulcher; + columbare_N_N = mkN "columbare" "columbaris" neuter ; -- [XXXEO] :: pigeon compartment/cot/hole; collar for constraint, pillory; niche in sepulcher; columbarium_N_N = mkN "columbarium" ; -- [XXXCO] :: |hole for beam; exit of water-wheel near axle; dove-cot, pigeon house (L+S); columbarius_M_N = mkN "columbarius" ; -- [XAXFO] :: pigeon-keeper; oarsman (term of reproach) (L+S); columbatim_Adv = mkAdv "columbatim" ; -- [XAXFS] :: in manner of doves, like doves, dovey; @@ -11736,15 +11736,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat columbus_M_N = mkN "columbus" ; -- [XAXCO] :: male/cock pigeon; (of male persons) (L+S); dove; columella_F_N = mkN "columella" ; -- [XXXCO] :: small column/pillar; pivot of oil-mill; stanchion of catapult; column tombstone; columellaris_A = mkA "columellaris" "columellaris" "columellare" ; -- [XAXES] :: pillar-formed; (of grinding teeth of horses); - columellaris_M_N = mkN "columellaris" "columellaris " masculine ; -- [XAXEO] :: canine teeth (pl.) of horses; grinding teeth of horses (L+S); (pillar-formed); - columen_N_N = mkN "columen" "columinis " neuter ; -- [XXXBO] :: height, peak, summit, zenith; roof, gable, ridge-pole; head, chief; "keystone"; + columellaris_M_N = mkN "columellaris" "columellaris" masculine ; -- [XAXEO] :: canine teeth (pl.) of horses; grinding teeth of horses (L+S); (pillar-formed); + columen_N_N = mkN "columen" "columinis" neuter ; -- [XXXBO] :: height, peak, summit, zenith; roof, gable, ridge-pole; head, chief; "keystone"; columis_A = mkA "columis" "columis" "colume" ; -- [XXXFO] :: safe; unhurt, unimpaired; (?); columna_F_N = mkN "columna" ; -- [XXXAO] :: |stanchion (press/ballista); water-spout; pillar of fire; penis (rude); - columnar_N_N = mkN "columnar" "columnaris " neuter ; -- [XXXIO] :: marble quarry; stone quarry (L+S); + columnar_N_N = mkN "columnar" "columnaris" neuter ; -- [XXXIO] :: marble quarry; stone quarry (L+S); columnaris_A = mkA "columnaris" "columnaris" "columnare" ; -- [DEXES] :: rising in form of a pillar, pillar-like, columnar; [~ lux => pillar of fire]; columnarium_N_N = mkN "columnarium" ; -- [XLXEO] :: pillar-tax, tax on pillars/columns; (applied to fancy houses); columnarius_M_N = mkN "columnarius" ; -- [DXXFS] :: one who was condemned at Columna Maenia; criminal; debtor; - columnatio_F_N = mkN "columnatio" "columnationis " feminine ; -- [XXXFO] :: supporting with/on pillars; support by pillars/columns; + columnatio_F_N = mkN "columnatio" "columnationis" feminine ; -- [XXXFO] :: supporting with/on pillars; support by pillars/columns; columnatus_A = mkA "columnatus" "columnata" "columnatum" ; -- [XTXDO] :: supported on/by pillars/columns; provided with/having pillars; columnella_F_N = mkN "columnella" ; -- [XXXCS] :: small column/pillar; pivot of oil-mill; stanchion of catapult; column tombstone; columnifer_A = mkA "columnifer" "columnifera" "columniferum" ; -- [DEXFS] :: column-bearing; [~ radius => pillar of fire]; @@ -11752,8 +11752,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat colurnus_A = mkA "colurnus" "colurna" "colurnum" ; -- [XAXEO] :: made of hazel, of hazel, hazel-; colurus_A = mkA "colurus" "colura" "colurum" ; -- [DPXES] :: syllable too short (w/metrum); colus_C_N = mkN "colus" ; -- [XXXBO] :: distaff; woman's concern; spinning; Fate's distaff w/threads of life; destiny; - colus_F_N = mkN "colus" "colus " feminine ; -- [XXXBO] :: distaff; woman's concern; spinning; Fate's distaff w/threads of life; destiny; - colus_M_N = mkN "colus" "colus " masculine ; -- [XXXBO] :: distaff; woman's concern; spinning; Fate's distaff w/threads of life; destiny; + colus_F_N = mkN "colus" "colus" feminine ; -- [XXXBO] :: distaff; woman's concern; spinning; Fate's distaff w/threads of life; destiny; + colus_M_N = mkN "colus" "colus" masculine ; -- [XXXBO] :: distaff; woman's concern; spinning; Fate's distaff w/threads of life; destiny; colustra_F_N = mkN "colustra" ; -- [XAXCO] :: colustrum/beestings (first milk from a cow after calving); (term of endearment); 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); @@ -11764,55 +11764,55 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat colyphium_N_N = mkN "colyphium" ; -- [XXXEO] :: unidentified preparation of meat; choice/nourishing meat for athletes (L+S); 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_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; + coma_N_N = mkN "coma" "comatis" neuter ; -- [GBXEK] :: coma; comacum_N_N = mkN "comacum" ; -- [XAXNO] :: aromatic plant (nutmeg?); (substitute for cinnamon); kind of cinnamon (L+S); comans_A = mkA "comans" "comantis"; -- [XXXBO] :: hairy; long-haired; flowing (beard); plumed; leafy; w/foliage; w/radiant train; comarchus_M_N = mkN "comarchus" ; -- [XLXFO] :: headman/chief/governor of a village; burgomeister, mayor; - comaros_F_N = mkN "comaros" "comari " feminine ; -- [XAXNO] :: (fruit of) strawberry-tree (arbitus unedonis); plant (called fragum) (L+S); + comaros_F_N = mkN "comaros" "comari" feminine ; -- [XAXNO] :: (fruit of) strawberry-tree (arbitus unedonis); plant (called fragum) (L+S); 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; + 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; + 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; 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; + 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; + 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; + combustibilitas_F_N = mkN "combustibilitas" "combustibilitatis" feminine ; -- [GXXEK] :: combustibility; + combustio_F_N = mkN "combustio" "combustionis" feminine ; -- [DSXFS] :: burning, consuming; combustum_N_N = mkN "combustum" ; -- [XBXEO] :: burn, injury from burning/scalding; combustura_F_N = mkN "combustura" ; -- [DXXES] :: burning; - come_F_N = mkN "come" "comes " feminine ; -- [XAXNO] :: one or more plants of genus Tragopogon, goat's beard or salsify; + come_F_N = mkN "come" "comes" feminine ; -- [XAXNO] :: one or more plants of genus Tragopogon, goat's beard or salsify; comedium_N_N = mkN "comedium" ; -- [FXXEM] :: meal; feast; feasting; - comedo_M_N = mkN "comedo" "comedonis " masculine ; -- [XXXEO] :: glutton; gourmet; one who spends/squanders his money on feasting/revelling; + comedo_M_N = mkN "comedo" "comedonis" masculine ; -- [XXXEO] :: glutton; gourmet; one who spends/squanders his money on feasting/revelling; comedo_V2 = mkV2 (mkV "comesse") ; -- [XXXBO] :: eat up/away, chew up; finish eating; fret, chafe; consume/devour; waste/squander comedus_M_N = mkN "comedus" ; -- [XXXFO] :: glutton; gourmet; one who spends/squanders his money on feasting/revelling; - comes_F_N = mkN "comes" "comitis " feminine ; -- [XXXAO] :: comrade, companion, associate, partner; soldier/devotee/follower of another; - comes_M_N = mkN "comes" "comitis " masculine ; -- [ELXCM] :: Count, Earl (England); official, magnate; occupant of any state office; + comes_F_N = mkN "comes" "comitis" feminine ; -- [XXXAO] :: comrade, companion, associate, partner; soldier/devotee/follower of another; + comes_M_N = mkN "comes" "comitis" masculine ; -- [ELXCM] :: Count, Earl (England); official, magnate; occupant of any state office; comesaliter_Adv = mkAdv "comesaliter" ; -- [EXXFW] :: wantonly; jovially; - comesatio_F_N = mkN "comesatio" "comesationis " feminine ; -- [EXXCW] :: carousing, merry-making, feasting, revelry; Bacchanal procession/rioting (L+S); - comesator_M_N = mkN "comesator" "comesatoris " masculine ; -- [EXXCW] :: reveller, carouser; one who joins a festive procession (L+S); (Vulgate one s); - comesor_M_N = mkN "comesor" "comesoris " masculine ; -- [XXXEO] :: glutton, gourmand; member of a dancing-club; + comesatio_F_N = mkN "comesatio" "comesationis" feminine ; -- [EXXCW] :: carousing, merry-making, feasting, revelry; Bacchanal procession/rioting (L+S); + comesator_M_N = mkN "comesator" "comesatoris" masculine ; -- [EXXCW] :: reveller, carouser; one who joins a festive procession (L+S); (Vulgate one s); + comesor_M_N = mkN "comesor" "comesoris" masculine ; -- [XXXEO] :: glutton, gourmand; member of a dancing-club; comessaliter_Adv = mkAdv "comessaliter" ; -- [DXXFS] :: wantonly; jovially; - comessatio_F_N = mkN "comessatio" "comessationis " feminine ; -- [XXXCO] :: carousing, merry-making, feasting, revelry; Bacchanal procession/rioting (L+S); - comessator_M_N = mkN "comessator" "comessatoris " masculine ; -- [XXXCO] :: reveller, carouser; one who joins a festive procession (L+S); + comessatio_F_N = mkN "comessatio" "comessationis" feminine ; -- [XXXCO] :: carousing, merry-making, feasting, revelry; Bacchanal procession/rioting (L+S); + comessator_M_N = mkN "comessator" "comessatoris" masculine ; -- [XXXCO] :: reveller, carouser; one who joins a festive procession (L+S); comestabilia_F_N = mkN "comestabilia" ; -- [FXXFM] :: victuals; comestabilis_A = mkA "comestabilis" "comestabilis" "comestabile" ; -- [EXXFE] :: eatable; comestibilis_A = mkA "comestibilis" "comestibilis" "comestibile" ; -- [DXXFS] :: eatable; - comestio_F_N = mkN "comestio" "comestionis " feminine ; -- [DXXFS] :: consuming; - comestor_M_N = mkN "comestor" "comestoris " masculine ; -- [XXXEO] :: glutton, gourmand; member of a dining-club; - comesus_M_N = mkN "comesus" "comesus " masculine ; -- [DXXFS] :: eating, consuming; + comestio_F_N = mkN "comestio" "comestionis" feminine ; -- [DXXFS] :: consuming; + comestor_M_N = mkN "comestor" "comestoris" masculine ; -- [XXXEO] :: glutton, gourmand; member of a dining-club; + comesus_M_N = mkN "comesus" "comesus" masculine ; -- [DXXFS] :: eating, consuming; cometa_F_N = mkN "cometa" ; -- [DSXES] :: comet; meteor; luminous body in sky w/trail/tail; (portent of disaster); cometerium_N_N = mkN "cometerium" ; -- [DEXFS] :: churchyard; cemetery, burying ground; - cometes_F_N = mkN "cometes" "cometae " feminine ; -- [XSXCO] :: comet; meteor; luminous body in sky w/trail/tail; (portent of disaster); + cometes_F_N = mkN "cometes" "cometae" feminine ; -- [XSXCO] :: comet; meteor; luminous body in sky w/trail/tail; (portent of disaster); cometessa_F_N = mkN "cometessa" ; -- [ELXCM] :: Countess, Lady; wife of a Count/Comes; (or widow or daughter); cometissa_F_N = mkN "cometissa" ; -- [ELXCM] :: Countess, Lady; wife of a Count/Comes; (or widow or daughter); comice_Adv = mkAdv "comice" ; -- [XDXEO] :: in a style suited to comedy; in manner of comedy; @@ -11824,26 +11824,26 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cominus_Adv = mkAdv "cominus" ; -- [XWXDO] :: hand to hand (fight), in close combat/quarters; close at hand; in presence of; 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); + 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); comisor_V = mkV "comisari" ; -- [XXXCO] :: carouse, revel, make merry; hold a festive procession (L+S); comissabundus_A = mkA "comissabundus" "comissabunda" "comissabundum" ; -- [XXXEO] :: carousing, revelling, banqueting; holding a riotous procession (L+S); comissaliter_Adv = mkAdv "comissaliter" ; -- [DXXFS] :: wantonly; jovially; - comissatio_F_N = mkN "comissatio" "comissationis " feminine ; -- [XXXCO] :: carousing, merry-making, feasting, revelry; Bacchanal procession/rioting (L+S); - comissator_M_N = mkN "comissator" "comissatoris " masculine ; -- [XXXCO] :: reveller, carouser; one who joins a festive procession (L+S); + comissatio_F_N = mkN "comissatio" "comissationis" feminine ; -- [XXXCO] :: carousing, merry-making, feasting, revelry; Bacchanal procession/rioting (L+S); + comissator_M_N = mkN "comissator" "comissatoris" masculine ; -- [XXXCO] :: reveller, carouser; one who joins a festive procession (L+S); comissor_V = mkV "comissari" ; -- [XXXCO] :: carouse, revel, make merry; hold a festive procession (L+S); 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; + 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-; 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); + 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); comitialis_A = mkA "comitialis" "comitialis" "comitiale" ; -- [XBXCO] :: |epileptic, suffering from epilepsy; [morbus/vitium ~ => major epilepsy]; - comitialis_M_N = mkN "comitialis" "comitialis " masculine ; -- [XBXNO] :: epileptic, one who has epilepsy; attacks of epilepsy (pl.); + comitialis_M_N = mkN "comitialis" "comitialis" masculine ; -- [XBXNO] :: epileptic, one who has epilepsy; attacks of epilepsy (pl.); comitialiter_Adv = mkAdv "comitialiter" ; -- [XBXNO] :: by/as a result of epilepsy; epileptically; comitianus_A = mkA "comitianus" "comitiana" "comitianum" ; -- [DLXFS] :: of/pertaining to Comes Orientis (Byzantine court official); - comitiatus_M_N = mkN "comitiatus" "comitiatus " masculine ; -- [XLXDO] :: assembly of people in comitia; + comitiatus_M_N = mkN "comitiatus" "comitiatus" masculine ; -- [XLXDO] :: assembly of people in comitia; comitio_V = mkV "comitiare" ; -- [XLXEO] :: offer sacrifice after which comitia could be held; go to comitia (L+S); comitissa_F_N = mkN "comitissa" ; -- [DLXCM] :: Countess, Lady; wife of a Count/Comes; (or widow or daughter); comitium_N_N = mkN "comitium" ; -- [XLXAO] :: place in Forum where comitia were held; comitia (pl.), assembly; elections; @@ -11855,7 +11855,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat comium_N_N = mkN "comium" ; -- [ELXCM] :: county, earldom (England); county court (attendance/fine for non-attendance); comiva_F_N = mkN "comiva" ; -- [ELXCM] :: county, earldom (England); county court (attendance/fine for non-attendance); 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; + 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); @@ -11865,131 +11865,131 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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); commaneo_V = mkV "commanere" ; -- [DXXCS] :: remain somewhere constantly; commanifesto_V2 = mkV2 (mkV "commanifestare") ; -- [DEXFS] :: manifest together; - commaniplaris_M_N = mkN "commaniplaris" "commaniplaris " masculine ; -- [XWXEO] :: soldier/comrade of same maniple; fellow soldier; + commaniplaris_M_N = mkN "commaniplaris" "commaniplaris" masculine ; -- [XWXEO] :: soldier/comrade of same maniple; fellow soldier; commaniplus_M_N = mkN "commaniplus" ; -- [XWXIO] :: soldier/comrade of same maniple; fellow soldier; - commanipularis_M_N = mkN "commanipularis" "commanipularis " masculine ; -- [XWXEO] :: soldier/comrade of same maniple; fellow soldier; - commanipulatio_F_N = mkN "commanipulatio" "commanipulationis " feminine ; -- [DWXFS] :: companionship in a maniple; - commanipulo_M_N = mkN "commanipulo" "commanipulonis " masculine ; -- [DWXFS] :: soldier/comrade of same maniple; fellow soldier; + commanipularis_M_N = mkN "commanipularis" "commanipularis" masculine ; -- [XWXEO] :: soldier/comrade of same maniple; fellow soldier; + commanipulatio_F_N = mkN "commanipulatio" "commanipulationis" feminine ; -- [DWXFS] :: companionship in a maniple; + commanipulo_M_N = mkN "commanipulo" "commanipulonis" masculine ; -- [DWXFS] :: soldier/comrade of same maniple; fellow soldier; commanipulus_M_N = mkN "commanipulus" ; -- [XWXIO] :: soldier/comrade of same maniple; fellow soldier; commarceo_V = mkV "commarcere" ; -- [DXXES] :: wither; become wholly faint/inactive; commargino_V2 = mkV2 (mkV "commarginare") ; -- [DXXFS] :: furnish with a parapet or railing; commaritus_M_N = mkN "commaritus" ; -- [XXXFO] :: fellow/associate husband; (facetious); - commartyr_M_N = mkN "commartyr" "commartyris " masculine ; -- [DEXFS] :: fellow-martyr, companion in martyrdom; + commartyr_M_N = mkN "commartyr" "commartyris" masculine ; -- [DEXFS] :: fellow-martyr, companion in martyrdom; commasculo_V2 = mkV2 (mkV "commasculare") ; -- [XXXEO] :: screw up (one's courage); make manly/firm/courageous (L+S); invigorate/embolden; commastico_V2 = mkV2 (mkV "commasticare") ; -- [DXXFS] :: chew; - commaterr_F_N = mkN "commaterr" "commatris " feminine ; -- [EEXFE] :: godmother; female sponsor; + 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; + 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); + 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; commemoramentum_N_N = mkN "commemoramentum" ; -- [XXXFO] :: reminder; mention; mentioning; - commemoratio_F_N = mkN "commemoratio" "commemorationis " feminine ; -- [XXXCO] :: remembrance/commemoration; observance (law); memory; mention/citation/reference; - commemorator_M_N = mkN "commemorator" "commemoratoris " masculine ; -- [DXXFS] :: commemorator, one who mentions/recalls a thing; + commemoratio_F_N = mkN "commemoratio" "commemorationis" feminine ; -- [XXXCO] :: remembrance/commemoration; observance (law); memory; mention/citation/reference; + commemorator_M_N = mkN "commemorator" "commemoratoris" masculine ; -- [DXXFS] :: commemorator, one who mentions/recalls a thing; 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; 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; + commendatio_F_N = mkN "commendatio" "commendationis" feminine ; -- [XXXBO] :: entrusting, committal; recommendation, praise; excellence; approval, esteem; commendatitius_A = mkA "commendatitius" "commendatitia" "commendatitium" ; -- [FEXFE] :: |commendatory; commending (letter/prayer); holding benefice in commendam; commendativus_A = mkA "commendativus" "commendativa" "commendativum" ; -- [DXXDS] :: commendatory; serving for/as commendation/recommendation/introduction; - commendator_M_N = mkN "commendator" "commendatoris " masculine ; -- [XXXFO] :: reference, one who recommends; recommended, commender; + 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); + commendatrix_F_N = mkN "commendatrix" "commendatricis" feminine ; -- [XXXEO] :: reference, one who recommends (female); 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; + commensalis_M_N = mkN "commensalis" "commensalis" masculine ; -- [FXXFE] :: table companion; commensurabilis_A = mkA "commensurabilis" "commensurabilis" "commensurabile" ; -- [DSXFS] :: commensurable, having a common measure; - commensurabilitas_F_N = mkN "commensurabilitas" "commensurabilitatis " feminine ; -- [FXXFM] :: commensurability; - commensuratio_F_N = mkN "commensuratio" "commensurationis " feminine ; -- [DSXFS] :: symmetry, uniformity; + commensurabilitas_F_N = mkN "commensurabilitas" "commensurabilitatis" feminine ; -- [FXXFM] :: commensurability; + commensuratio_F_N = mkN "commensuratio" "commensurationis" feminine ; -- [DSXFS] :: symmetry, uniformity; commensuratus_A = mkA "commensuratus" "commensurata" "commensuratum" ; -- [DSXFS] :: equal; commensurate; equally-measured; commensuro_V = mkV "commensurare" ; -- [DSXFE] :: measure/make equal; correspond; - commensus_M_N = mkN "commensus" "commensus " masculine ; -- [XSXEO] :: proportion, relative measurements; in due proportion (L+S); symmetry; - commentariensis_M_N = mkN "commentariensis" "commentariensis " masculine ; -- [DLXCS] :: |court clerk, registrar of public documents; prison keeper/recorder; + commensus_M_N = mkN "commensus" "commensus" masculine ; -- [XSXEO] :: proportion, relative measurements; in due proportion (L+S); symmetry; + commentariensis_M_N = mkN "commentariensis" "commentariensis" masculine ; -- [DLXCS] :: |court clerk, registrar of public documents; prison keeper/recorder; commentariolum_N_N = mkN "commentariolum" ; -- [XXXDO] :: notebook; textbook; short treatise; brief commentary (L+S); commentariolus_M_N = mkN "commentariolus" ; -- [XXXDS] :: notebook; textbook; short treatise; brief commentary (L+S); commentarium_N_N = mkN "commentarium" ; -- [XXXBO] :: notebook, private/historical journal; register; memo/note; commentary/treatise; commentarius_M_N = mkN "commentarius" ; -- [XXXBO] :: notebook, private/historical journal; register; memo/note; commentary/treatise; - 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); + 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); + 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); + commentor_M_N = mkN "commentor" "commentoris" masculine ; -- [XTXEO] :: inventor, deviser; machinist (L+S); commentor_V = mkV "commentari" ; -- [XXXBO] :: think about; study beforehand, practice, prepare; discuss, argue over; imagine; commentum_N_N = mkN "commentum" ; -- [XXXCO] :: invention; intention, design, scheme, device; fiction, fabrication; argument; commentus_A = mkA "commentus" "commenta" "commentum" ; -- [XXXEO] :: feigned, pretended, fabricated, devised, fictitious, invented; commeo_V = mkV "commeare" ; -- [XXXBO] :: go to, visit, travel; pass; resort to; go to and fro, come and go; communicate; - commercari_M_N = mkN "commercari" "commercariis " masculine ; -- [XXXFS] :: fellow-purchaser; - commercator_M_N = mkN "commercator" "commercatoris " masculine ; -- [XXXFS] :: fellow-trader; + commercari_M_N = mkN "commercari" "commercariis" masculine ; -- [XXXFS] :: fellow-purchaser; + commercator_M_N = mkN "commercator" "commercatoris" masculine ; -- [XXXFS] :: fellow-trader; commercior_V = mkV "commerciari" ; -- [DXXFS] :: trade; commercium_N_N = mkN "commercium" ; -- [XXXAO] :: |exchange, trafficking; goods, military supplies; trade routes; use in common; commercor_V = mkV "commercari" ; -- [XXXDO] :: buy, purchase; buy up (L+S); trade/traffic together; commereo_V2 = mkV2 (mkV "commerere") ; -- [XXXCO] :: merit fully, deserve, incur, earn (punishment/reward); be guilty of, perpetuate; 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; + 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); + 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); 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; + commigratio_F_N = mkN "commigratio" "commigrationis" feminine ; -- [XXXFO] :: removal (to a new place); wandering (L+S); migration; commigro_V = mkV "commigrare" ; -- [XXXCO] :: migrate, go and live (elsewhere); move one's home with all effects; enter; - commiles_M_N = mkN "commiles" "commilitis " masculine ; -- [XWXFO] :: fellow soldier; + commiles_M_N = mkN "commiles" "commilitis" masculine ; -- [XWXFO] :: fellow soldier; commilitium_N_N = mkN "commilitium" ; -- [XWXCO] :: comradeship/association in war/military service; fellowship in other activities; - commilito_M_N = mkN "commilito" "commilitonis " masculine ; -- [XWXBO] :: fellow soldier; (used by J Caesar and others to troops); comrade, mate; + commilito_M_N = mkN "commilito" "commilitonis" masculine ; -- [XWXBO] :: fellow soldier; (used by J Caesar and others to troops); comrade, mate; commilito_V = mkV "commilitare" ; -- [XWXFO] :: fight on same side/in company; be a comrade/companion in arms/battle/war; comminabundus_A = mkA "comminabundus" "comminabunda" "comminabundum" ; -- [DXXFS] :: threatening, menacing; - comminatio_F_N = mkN "comminatio" "comminationis " feminine ; -- [XXXCO] :: threat, menace; + comminatio_F_N = mkN "comminatio" "comminationis" feminine ; -- [XXXCO] :: threat, menace; comminativus_A = mkA "comminativus" "comminativa" "comminativum" ; -- [DXXFS] :: threatening, menacing; - comminator_M_N = mkN "comminator" "comminatoris " masculine ; -- [DXXFS] :: menace, intimidator, threatener; + 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; + 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; + 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; - commisariatus_M_N = mkN "commisariatus" "commisariatus " masculine ; -- [FXXEE] :: commissioner; office of commissioner; + commis_F_N = mkN "commis" "commis" feminine ; -- [XAXCO] :: gum, vicid secretion from trees; + commisariatus_M_N = mkN "commisariatus" "commisariatus" masculine ; -- [FXXEE] :: commissioner; office of commissioner; commisarius_M_N = mkN "commisarius" ; -- [GXXEE] :: commissioner; trustee; agent (Erasmus); - commisatio_F_N = mkN "commisatio" "commisationis " feminine ; -- [XXXCO] :: carousing, merry-making, feasting, revelry; Bacchanal procession/rioting (L+S); + commisatio_F_N = mkN "commisatio" "commisationis" feminine ; -- [XXXCO] :: carousing, merry-making, feasting, revelry; Bacchanal procession/rioting (L+S); commisceo_V2 = mkV2 (mkV "commiscere") ; -- [XXXBO] :: |mingle (with another race); transact business (w/cum), discuss; confuse; commiscibilis_A = mkA "commiscibilis" "commiscibilis" "commiscibile" ; -- [DXXFS] :: that can be mingled/mixed/combined; 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; + 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; + 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 - commisio_F_N = mkN "commisio" "commisionis " feminine ; -- [FXXDE] :: commission; committee; + commisio_F_N = mkN "commisio" "commisionis" feminine ; -- [FXXDE] :: commission; committee; commisor_V = mkV "commisari" ; -- [XXXCS] :: carouse, revel, make merry; hold a festive procession (L+S); commissarius_M_N = mkN "commissarius" ; -- [GXXEE] :: commissioner; trustee; agent (Erasmus); - commissatio_F_N = mkN "commissatio" "commissationis " feminine ; -- [XXXCO] :: carousing, merry-making, feasting, revelry; Bacchanal procession/rioting (L+S); - commissio_F_N = mkN "commissio" "commissionis " feminine ; -- [FXXDE] :: commission; committee; - commissor_M_N = mkN "commissor" "commissoris " masculine ; -- [DXXFS] :: perpetrator; + commissatio_F_N = mkN "commissatio" "commissationis" feminine ; -- [XXXCO] :: carousing, merry-making, feasting, revelry; Bacchanal procession/rioting (L+S); + commissio_F_N = mkN "commissio" "commissionis" feminine ; -- [FXXDE] :: commission; committee; + commissor_M_N = mkN "commissor" "commissoris" masculine ; -- [DXXFS] :: perpetrator; commissor_V = mkV "commissari" ; -- [XXXCS] :: carouse, revel, make merry; hold a festive procession (L+S); commissoria_F_N = mkN "commissoria" ; -- [DLXFS] :: sale contract clause by which creditor gets property/goods on non-payment; commissorius_A = mkA "commissorius" "commissoria" "commissorium" ; -- [XLXEO] :: foreclosure (contract clause by which creditor gets property on non-payment); @@ -11997,59 +11997,59 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat commissura_F_N = mkN "commissura" ; -- [XXXBO] :: joint, juncture, seam, gap; intersection, common point; boundary/dividing line; commissuralis_A = mkA "commissuralis" "commissuralis" "commissurale" ; -- [DXXES] :: of/pertaining to a juncture/joining/intersection; commistim_Adv = mkAdv "commistim" ; -- [DXXFS] :: jointly, in a mixed manner; - commistio_F_N = mkN "commistio" "commistionis " feminine ; -- [DXXES] :: mixture; mixing, mingling; sexual intercourse; + 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; + 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; + commixtio_F_N = mkN "commixtio" "commixtionis" feminine ; -- [XXXEO] :: mixture; mixing, mingling; sexual intercourse; commixtura_F_N = mkN "commixtura" ; -- [XXXFO] :: mixture; mixing, mingling (L+S); commobilis_A = mkA "commobilis" "commobilis" "commobile" ; -- [DXXFS] :: easily moving; easily moved/swayed; commodate_Adv =mkAdv "commodate" "commodatius" "commodatissime" ; -- [XXXFO] :: fittingly; in a suitable manner; - commodatio_F_N = mkN "commodatio" "commodationis " feminine ; -- [DXXFS] :: accommodation, rendering of service; - commodator_M_N = mkN "commodator" "commodatoris " masculine ; -- [XLXEO] :: lender; + commodatio_F_N = mkN "commodatio" "commodationis" feminine ; -- [DXXFS] :: accommodation, rendering of service; + commodator_M_N = mkN "commodator" "commodatoris" masculine ; -- [XLXEO] :: lender; commodatum_N_N = mkN "commodatum" ; -- [XLXCO] :: loan; thing lent, borrowed object; commode_Adv =mkAdv "commode" "commodius" "commodissime" ; -- [XXXBO] :: |agreeably, helpfully; comfortably/pleasantly; at a good time/right moment; commoderatus_A = mkA "commoderatus" "commoderata" "commoderatum" ; -- [DLXFS] :: exact; brought into right measure; (standardized?); - commoditas_F_N = mkN "commoditas" "commoditatis " feminine ; -- [XXXBS] :: |due measure, just proportion; suitable (oratorical expression); symmetry; + commoditas_F_N = mkN "commoditas" "commoditatis" feminine ; -- [XXXBS] :: |due measure, just proportion; suitable (oratorical expression); symmetry; commodo_Adv = mkAdv "commodo" ; -- [XXXEO] :: suitably; seasonably; just, this very minute (L+S); even now, at this moment; commodo_V = mkV "commodare" ; -- [XXXBO] :: lend, hire; give, bestow, provide; put at disposal of, oblige; make fit, adapt; - commodulatio_F_N = mkN "commodulatio" "commodulationis " feminine ; -- [XXXFO] :: common adaptation to standard measure; regularity/proportion/symmetry (L+S); + commodulatio_F_N = mkN "commodulatio" "commodulationis" feminine ; -- [XXXFO] :: common adaptation to standard measure; regularity/proportion/symmetry (L+S); commodule_Adv = mkAdv "commodule" ; -- [XXXEO] :: fairly suitably, aptly; conveniently, at one's convenience (L+S); commodulum_Adv = mkAdv "commodulum" ; -- [XXXEO] :: fairly suitably, aptly; 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; 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; + 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; + 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; + 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; - commonitor_M_N = mkN "commonitor" "commonitoris " masculine ; -- [DXXFS] :: one who earnestly reminds; + commonitio_F_N = mkN "commonitio" "commonitionis" feminine ; -- [XXXEO] :: reminder; earnest reminding (L+S); admonition; + commonitor_M_N = mkN "commonitor" "commonitoris" masculine ; -- [DXXFS] :: one who earnestly reminds; commonitorium_N_N = mkN "commonitorium" ; -- [DXXDS] :: aide-memoire, writing for reminding; letter of instructions; means of reminding; commonitorius_A = mkA "commonitorius" "commonitoria" "commonitorium" ; -- [DXXFS] :: suitable for reminding; 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; + 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; + 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); commorsito_V2 = mkV2 (mkV "commorsitare") ; -- [DXXDS] :: bite all over; devour (with eyes); bite to pieces (L+S); commortalis_A = mkA "commortalis" "commortalis" "commortale" ; -- [XXXFO] :: mortal, common to mortals; "our mortal"; - commosis_F_N = mkN "commosis" "commosis " feminine ; -- [XAXNO] :: "gumming"; (said to be first layer in construction of honeycombs); + commosis_F_N = mkN "commosis" "commosis" feminine ; -- [XAXNO] :: "gumming"; (said to be first layer in construction of honeycombs); commostro_V2 = mkV2 (mkV "commostrare") ; -- [XXXCO] :: point out (fully/distinctly), show where; make known, declare, reveal; - commotio_F_N = mkN "commotio" "commotionis " feminine ; -- [XXXCO] :: excitement, commotion, agitation; arousing of emotion; + commotio_F_N = mkN "commotio" "commotionis" feminine ; -- [XXXCO] :: excitement, commotion, agitation; arousing of emotion; 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; + commotor_M_N = mkN "commotor" "commotoris" masculine ; -- [DXXFS] :: mover, one who sets in motion; 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); + 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); commuate_Adv = mkAdv "commuate" ; -- [XXXFO] :: in an altered/changed manner; @@ -12058,38 +12058,38 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat communa_F_N = mkN "communa" ; -- [FLXFJ] :: common usage; communalis_A = mkA "communalis" "communalis" "communale" ; -- [DAXFS] :: common, communal, belonging to the community; local (Cal); commundo_V2 = mkV2 (mkV "commundare") ; -- [XXXDO] :: clean/cleanse thoroughly; purify wholly (L+S); - commune_N_N = mkN "commune" "communis " neuter ; -- [XXXBO] :: |common feature, characteristic, general rule/terms; general; common lot/remedy; + commune_N_N = mkN "commune" "communis" neuter ; -- [XXXBO] :: |common feature, characteristic, general rule/terms; general; common lot/remedy; communicabilis_A = mkA "communicabilis" "communicabilis" "communicabile" ; -- [EXXFP] :: communicable, capable of being communicated; - communicabilitas_F_N = mkN "communicabilitas" "communicabilitatis " feminine ; -- [FXXEF] :: communicability; + communicabilitas_F_N = mkN "communicabilitas" "communicabilitatis" feminine ; -- [FXXEF] :: communicability; communicabiliter_Adv = mkAdv "communicabiliter" ; -- [EXXFP] :: in a way capable of being communicated; communicarius_A = mkA "communicarius" "communicaria" "communicarium" ; -- [XEXFS] :: days on which all gods were sacrificed to together? (w/dies); - communicatio_F_N = mkN "communicatio" "communicationis " feminine ; -- [XXXCO] :: sharing, imparting; partaking; fellowship; communication; consult (w/audience); - communicator_M_N = mkN "communicator" "communicatoris " masculine ; -- [DXXES] :: he who makes on a participant in a thing; he who has a part in a thing; - communicatus_M_N = mkN "communicatus" "communicatus " masculine ; -- [XXXFO] :: intercommunication; participation (L+S); - communiceps_M_N = mkN "communiceps" "communnicipis " masculine ; -- [XLXIO] :: fellow citizen (of a municipium/municipality/town); born in same town (L+S); + communicatio_F_N = mkN "communicatio" "communicationis" feminine ; -- [XXXCO] :: sharing, imparting; partaking; fellowship; communication; consult (w/audience); + communicator_M_N = mkN "communicator" "communicatoris" masculine ; -- [DXXES] :: he who makes on a participant in a thing; he who has a part in a thing; + communicatus_M_N = mkN "communicatus" "communicatus" masculine ; -- [XXXFO] :: intercommunication; participation (L+S); + communiceps_M_N = mkN "communiceps" "communnicipis" masculine ; -- [XLXIO] :: fellow citizen (of a municipium/municipality/town); born in same town (L+S); 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; + 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; communisticus_A = mkA "communisticus" "communistica" "communisticum" ; -- [GXXEK] :: Communist (adj.); communitarius_A = mkA "communitarius" "communitaria" "communitarium" ; -- [XXXFE] :: communal, with others; community; - communitas_F_N = mkN "communitas" "communitatis " feminine ; -- [XXXBO] :: partnership, joint possession/use/participation; fellowship; community, kinship; + communitas_F_N = mkN "communitas" "communitatis" feminine ; -- [XXXBO] :: partnership, joint possession/use/participation; fellowship; community, kinship; communiter_Adv = mkAdv "communiter" ; -- [XXXCO] :: in common, commonly; in joint action; indiscriminately; generally, ordinarily; - communitio_F_N = mkN "communitio" "communitionis " feminine ; -- [XWXEO] :: fortification; building up (of a road); making/preparing (of a way) (L+S); + communitio_F_N = mkN "communitio" "communitionis" feminine ; -- [XWXEO] :: fortification; building up (of a road); making/preparing (of a way) (L+S); communitus_Adv = mkAdv "communitus" ; -- [XXXFO] :: jointly, as a group; - commurmuratio_F_N = mkN "commurmuratio" "commurmurationis " feminine ; -- [XXXEO] :: buzz, hum, murmur, confused noise of talking; general murmuring (L+S); + 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; + 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; + 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; + 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; @@ -12097,11 +12097,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; - compactio_F_N = mkN "compactio" "compactionis " feminine ; -- [XXXEO] :: framework, structure; act/action of fitting/joining together; + compactio_F_N = mkN "compactio" "compactionis" feminine ; -- [XXXEO] :: framework, structure; act/action of fitting/joining together; compactitius_A = mkA "compactitius" "compactitia" "compactitium" ; -- [DXXFS] :: agreed upon; compactivus_A = mkA "compactivus" "compactiva" "compactivum" ; -- [DXXFS] :: suitable for joining; compactum_N_N = mkN "compactum" ; -- [XLXDS] :: agreement/compact; [ABL compacto => according to/in accordance with agreement]; @@ -12110,63 +12110,63 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat compaedagogita_F_N = mkN "compaedagogita" ; -- [XXXIO] :: fellow member of a paedagogium (training establishment for slave boys); (M L+S); compaedagogius_M_N = mkN "compaedagogius" ; -- [XXXIS] :: fellow member of a paedagogium (training establishment for slave boys); compaganus_M_N = mkN "compaganus" ; -- [XXXIO] :: fellow villager, inhabitant of same village; - compages_F_N = mkN "compages" "compagis " feminine ; -- [XXXBO] :: action of binding together, fastening; bond, tie; joint; structure, framework; + compages_F_N = mkN "compages" "compagis" feminine ; -- [XXXBO] :: action of binding together, fastening; bond, tie; joint; structure, framework; compagina_F_N = mkN "compagina" ; -- [DAXES] :: joining together, combination; (peculiar to agrimensores/land surveyors); - compaginatio_F_N = mkN "compaginatio" "compaginationis " feminine ; -- [DXXES] :: joining; joint; + compaginatio_F_N = mkN "compaginatio" "compaginationis" feminine ; -- [DXXES] :: joining; joint; compagino_V = mkV "compaginare" ; -- [DXXES] :: join together; border upon; (fields); - compago_F_N = mkN "compago" "compaginis " feminine ; -- [XXXCO] :: fact/action of binding together, fastening; structure, framework; + compago_F_N = mkN "compago" "compaginis" feminine ; -- [XXXCO] :: fact/action of binding together, fastening; structure, framework; compagus_M_N = mkN "compagus" ; -- [XXXIO] :: fellow member of a pagus (country district/community); (as a cult-title); compalpo_V2 = mkV2 (mkV "compalpare") ; -- [DXXFS] :: stroke, caress; compar_A = mkA "compar" "comparis"; -- [XXXCO] :: equal, equal to; like, similar, resembling; suitable, matching, corresponding; - compar_F_N = mkN "compar" "comparis " feminine ; -- [XXXCO] :: fellow, partner, equal; comrade; husband/wife; pair (of animals also), mate; - compar_M_N = mkN "compar" "comparis " masculine ; -- [XXXCO] :: fellow, partner, equal; comrade; husband/wife; pair (of animals also), mate; - compar_N_N = mkN "compar" "comparis " neuter ; -- [XGXFO] :: sentence containing clauses of roughly same number of syllables; + compar_F_N = mkN "compar" "comparis" feminine ; -- [XXXCO] :: fellow, partner, equal; comrade; husband/wife; pair (of animals also), mate; + compar_M_N = mkN "compar" "comparis" masculine ; -- [XXXCO] :: fellow, partner, equal; comrade; husband/wife; pair (of animals also), mate; + compar_N_N = mkN "compar" "comparis" neuter ; -- [XGXFO] :: sentence containing clauses of roughly same number of syllables; comparabilis_A = mkA "comparabilis" "comparabilis" "comparabile" ; -- [XXXDO] :: similar, comparable; comparate_Adv = mkAdv "comparate" ; -- [XXXFO] :: comparatively; in/by comparison (L+S); - comparatio_F_N = mkN "comparatio" "comparationis " feminine ; -- [XXXAO] :: ||preparation, making ready; procuring, provision; arrangement, settlement; + comparatio_F_N = mkN "comparatio" "comparationis" feminine ; -- [XXXAO] :: ||preparation, making ready; procuring, provision; arrangement, settlement; comparative_Adv = mkAdv "comparative" ; -- [XXXFO] :: in a comparative sense; 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); + 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; - compars_F_N = mkN "compars" "compartis " feminine ; -- [FXXEE] :: partner; - compars_M_N = mkN "compars" "compartis " masculine ; -- [FXXEE] :: partner; + compars_F_N = mkN "compars" "compartis" feminine ; -- [FXXEE] :: partner; + 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; + 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; compassibilis_A = mkA "compassibilis" "compassibilis" "compassibile" ; -- [DXXFS] :: suffering with one; - compassio_F_N = mkN "compassio" "compassionis " feminine ; -- [DEXES] :: fellow-feeling, fellow-suffering; sympathy; - compastor_M_N = mkN "compastor" "compastoris " masculine ; -- [XAXFO] :: fellow herdsman; - 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; + compassio_F_N = mkN "compassio" "compassionis" feminine ; -- [DEXES] :: fellow-feeling, fellow-suffering; sympathy; + compastor_M_N = mkN "compastor" "compastoris" masculine ; -- [XAXFO] :: fellow herdsman; + 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; + 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; + 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); + 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; + 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; + 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; + 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 "compellere" "compello" "compuli" "compulsus ") ; -- [XXXAO] :: drive together (cattle), round up; force, compel, impel, drive; squeeze; gnash; + compellatio_F_N = mkN "compellatio" "compellationis" feminine ; -- [XGXDO] :: action of addressing/apostrophizing (aside to person)/reproaching, reproof; + 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); @@ -12174,45 +12174,45 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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); + 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); + 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; + 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; compertum_N_N = mkN "compertum" ; -- [XLXCO] :: ascertained/proved/verified fact, certainty; [pro ~o => as certain/for a fact]; compertus_A = mkA "compertus" "comperta" "compertum" ; -- [XLXCO] :: ascertained, proved, verified; [res ~ => fact; male ~ => bad character]; - 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; + 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); competenter_Adv =mkAdv "competenter" "competentius" "competentissime" ; -- [XXXEO] :: suitably, appositely; properly, becomingly; competentia_F_N = mkN "competentia" ; -- [GXXEK] :: |expertise; (Cal); - competitio_F_N = mkN "competitio" "competitionis " feminine ; -- [DLXDS] :: agreement; judicial demand; rivalry, competition; - 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; + competitio_F_N = mkN "competitio" "competitionis" feminine ; -- [DLXDS] :: agreement; judicial demand; rivalry, competition; + 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?); + 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; + 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; @@ -12223,136 +12223,136 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat complaceo_V = mkV "complacere" ; -- [XXXCO] :: please, take fancy of, capture affections of, be acceptable/agreed to; 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); + 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; + 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; + 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; complenda_F_N = mkN "complenda" ; -- [FEXFE] :: Post-Communion; compleo_V2 = mkV2 (mkV "complere") ; -- [XXXAO] :: |finish, complete, perfect; make pregnant; fulfill, make up, complete, satisfy; - completio_F_N = mkN "completio" "completionis " feminine ; -- [DXXES] :: filling, filling up; fulfillment; + completio_F_N = mkN "completio" "completionis" feminine ; -- [DXXES] :: filling, filling up; fulfillment; 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); + 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; 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; - complexio_F_N = mkN "complexio" "complexionis " feminine ; -- [XXXCO] :: encircling; combination, association, connection; summary, resume; dilemma; + complex_F_N = mkN "complex" "complicis" feminine ; -- [DXXEE] :: accomplice; confederate, participant; + complex_M_N = mkN "complex" "complicis" masculine ; -- [DXXEE] :: accomplice; confederate, participant; + complexio_F_N = mkN "complexio" "complexionis" feminine ; -- [XXXCO] :: encircling; combination, association, connection; summary, resume; dilemma; complexionatus_A = mkA "complexionatus" "complexionata" "complexionatum" ; -- [FXXFM] :: constituted; tempered; - complexitas_F_N = mkN "complexitas" "complexitatis " feminine ; -- [EXXCE] :: combination, association, connection; summary, resume; dilemma; complexity; + complexitas_F_N = mkN "complexitas" "complexitatis" feminine ; -- [EXXCE] :: combination, association, connection; summary, resume; dilemma; complexity; complexivus_A = mkA "complexivus" "complexiva" "complexivum" ; -- [XGXFO] :: connective, conjunctive; (grammar); serving for connecting (L+S); complexo_V2 = mkV2 (mkV "complexare") ; -- [FXXFE] :: embrace closely; join, combine (Ecc); complexor_V = mkV "complexari" ; -- [DXXFS] :: embrace closely; join, combine (Ecc); - complexus_M_N = mkN "complexus" "complexus " masculine ; -- [XXXAO] :: |sexual intercourse (w/Venerius/femineus); hand-to-hand fighting; stranglehold; + complexus_M_N = mkN "complexus" "complexus" masculine ; -- [XXXAO] :: |sexual intercourse (w/Venerius/femineus); hand-to-hand fighting; stranglehold; complicabilis_A = mkA "complicabilis" "complicabilis" "complicabile" ; -- [DXXFS] :: bending, pliant, that may be folded together; - complicatio_F_N = mkN "complicatio" "complicationis " feminine ; -- [DXXES] :: folding together, enveloping; multiplication; - complicitas_F_N = mkN "complicitas" "complicitatis " feminine ; -- [EXXDE] :: complicity; + 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); + 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; + 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); - complus_M_N = mkN "complus" "compluris " masculine ; -- [XXXCO] :: many/several people/men(pl.), a fair/good number of people; - complus_N_N = mkN "complus" "compluris " neuter ; -- [XXXCO] :: many/several things/items(pl.), a fair/good number of things; + complus_M_N = mkN "complus" "compluris" masculine ; -- [XXXCO] :: many/several people/men(pl.), a fair/good number of people; + 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; + 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); + 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; compos_A = mkA "compos" "compotis"; -- [XXXBO] :: in possession/control/mastery of; sharing, guilty of, afflicted with; granted; composcens_A = mkA "composcens" "composcentis"; -- [DXXES] :: demanding at same time; composite_Adv =mkAdv "composite" "compositius" "compositissime" ; -- [XXXCO] :: in orderly/skillful/well arranged/composed way; deliberately/regularly/properly; compositicius_A = mkA "compositicius" "compositicia" "compositicium" ; -- [XGXFO] :: compound (words); - compositio_F_N = mkN "compositio" "compositionis " feminine ; -- [XXXBO] :: |agreement, pact; mixture (medicine); composition (music/prose); storing; + compositio_F_N = mkN "compositio" "compositionis" feminine ; -- [XXXBO] :: |agreement, pact; mixture (medicine); composition (music/prose); storing; composititius_A = mkA "composititius" "composititia" "composititium" ; -- [XGXFS] :: compound (words); compositivus_A = mkA "compositivus" "compositiva" "compositivum" ; -- [DXXFS] :: suitable for uniting, compositive; composito_Adv = mkAdv "composito" ; -- [XXXEO] :: by prearrangement; concertedly; - compositor_M_N = mkN "compositor" "compositoris " masculine ; -- [XDXEO] :: writer, composer; orderer, arranger, disposer, maker (L+S); + 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; 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; + 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; 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; + 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); + 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); + 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); + 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); + 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); + 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; + 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); + compressor_M_N = mkN "compressor" "compressoris" masculine ; -- [XXXEO] :: ravisher, rapist; one who presses/compresses (L+S); 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; + 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; + 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; + 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; + 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]; - comptor_M_N = mkN "comptor" "comptoris " masculine ; -- [DXXFS] :: one who adorns; (hairdresser?); + comptor_M_N = mkN "comptor" "comptoris" masculine ; -- [DXXFS] :: one who adorns; (hairdresser?); comptulus_A = mkA "comptulus" "comptula" "comptulum" ; -- [XXXFO] :: elegantly dressed; luxuriously decked (L+S); comptus_A = mkA "comptus" "compta" "comptum" ; -- [XXXCO] :: adorned/ornamented/decked (hair); embellished, elegant/neat/pointed (discourse); - comptus_M_N = mkN "comptus" "comptus " masculine ; -- [XXXDO] :: union, conjunction; head-dress, hairband; adornment; well dressed hair (pl.); + comptus_M_N = mkN "comptus" "comptus" masculine ; -- [XXXDO] :: union, conjunction; head-dress, hairband; adornment; well dressed hair (pl.); compugnantia_F_N = mkN "compugnantia" ; -- [DWXFS] :: fighting together/with; compugno_V = mkV "compugnare" ; -- [XXXEO] :: fight together/with; struggle together (in argument); compulsamentum_N_N = mkN "compulsamentum" ; -- [DXXFS] :: impelling; exhortation; - compulsatio_F_N = mkN "compulsatio" "compulsationis " feminine ; -- [DXXES] :: contest, contention, (hostile) pressing together; - compulsio_F_N = mkN "compulsio" "compulsionis " feminine ; -- [XLXFO] :: compulsion; (legal); urging (L+S); dunning; constraint; + compulsatio_F_N = mkN "compulsatio" "compulsationis" feminine ; -- [DXXES] :: contest, contention, (hostile) pressing together; + compulsio_F_N = mkN "compulsio" "compulsionis" feminine ; -- [XLXFO] :: compulsion; (legal); urging (L+S); dunning; constraint; compulso_V2 = mkV2 (mkV "compulsare") ; -- [XXXFO] :: batter, pound; - compulsor_M_N = mkN "compulsor" "compulsoris " masculine ; -- [DXXCS] :: driver (of cattle); one who asks/forces a payment, exactor of money; (goon?); - compulsus_M_N = mkN "compulsus" "compulsus " masculine ; -- [DXXFS] :: striking together (hostile); - compunctio_F_N = mkN "compunctio" "compunctionis " feminine ; -- [DEXES] :: puncture, prick; remorse, sting/prick of conscience; + compulsor_M_N = mkN "compulsor" "compulsoris" masculine ; -- [DXXCS] :: driver (of cattle); one who asks/forces a payment, exactor of money; (goon?); + compulsus_M_N = mkN "compulsus" "compulsus" masculine ; -- [DXXFS] :: striking together (hostile); + 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; + 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; + 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; @@ -12360,104 +12360,104 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); 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.); + 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; conabilis_A = mkA "conabilis" "conabilis" "conabile" ; -- [DXXFS] :: laborious, difficult; - conamen_N_N = mkN "conamen" "conaminis " neuter ; -- [XXXCO] :: effort, exertion; power to move; attempt, endeavor, enterprise; prop, support; + conamen_N_N = mkN "conamen" "conaminis" neuter ; -- [XXXCO] :: effort, exertion; power to move; attempt, endeavor, enterprise; prop, support; conamentum_N_N = mkN "conamentum" ; -- [XAXNO] :: implement used in gathering esparto grass; tool for uprooting plants (L+S); conangusto_V2 = mkV2 (mkV "conangustare") ; -- [XXXCO] :: confine to narrow space, cramp; make narrower; narrow scope/application; - conarache_F_N = mkN "conarache" "conaraches " feminine ; -- [XSXFO] :: type of sundial; - conatio_F_N = mkN "conatio" "conationis " feminine ; -- [XXXFO] :: attempt; endeavor, effort (L+S); + conarache_F_N = mkN "conarache" "conaraches" feminine ; -- [XSXFO] :: type of sundial; + conatio_F_N = mkN "conatio" "conationis" feminine ; -- [XXXFO] :: attempt; endeavor, effort (L+S); conatum_N_N = mkN "conatum" ; -- [XXXCO] :: effort; attempt/design/attempted action (in pejorative sense); (usu. pl.) (L+S); - conatus_M_N = mkN "conatus" "conatus " masculine ; -- [XXXBO] :: attempt, effort; exertion, struggle; impulse, tendency; endeavor, design; + conatus_M_N = mkN "conatus" "conatus" masculine ; -- [XXXBO] :: attempt, effort; exertion, struggle; impulse, tendency; endeavor, design; 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; + 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; 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; + 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; + 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); + 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; + concamaratio_F_N = mkN "concamaratio" "concamarationis" feminine ; -- [XTXDO] :: vaulting; vaulted roof; vault; concamaratus_A = mkA "concamaratus" "concamarata" "concamaratum" ; -- [XXXDQ] :: vaulted, arched; concamaro_V2 = mkV2 (mkV "concamarare") ; -- [XTXCO] :: cover with an arch/vault, vault over; - concameratio_F_N = mkN "concameratio" "concamerationis " feminine ; -- [XTXDO] :: vaulting; vaulted roof; + 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; + 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; + concarnatio_F_N = mkN "concarnatio" "concarnationis" feminine ; -- [DEXFO] :: incarnation, uniting with flesh; concarno_V2 = mkV2 (mkV "concarnare") ; -- [DEXES] :: incarnate, unite/clothe with flesh; concastigo_V2 = mkV2 (mkV "concastigare") ; -- [XXXEO] :: chastise severely/thoroughly, punish; censure, dress down; - concatenatio_F_N = mkN "concatenatio" "concatenationis " feminine ; -- [DXXDS] :: connecting/joining; concatenation, sequence; fettering, binding; + concatenatio_F_N = mkN "concatenatio" "concatenationis" feminine ; -- [DXXDS] :: connecting/joining; concatenation, sequence; fettering, binding; concateno_V2 = mkV2 (mkV "concatenare") ; -- [DXXES] :: link/bind together; connect; concatervatus_A = mkA "concatervatus" "concatervata" "concatervatum" ; -- [DXXES] :: heaped/crowed together; concatus_A = mkA "concatus" "concata" "concatum" ; -- [XXXEO] :: fouled w/excrement; [catillus ~ => mince/hash => SOS/chipped beef on toast]; concavatus_A = mkA "concavatus" "concavata" "concavatum" ; -- [XXXFO] :: hollowed out; - concavitas_F_N = mkN "concavitas" "concavitatis " feminine ; -- [DXXFS] :: cavity, hollow; + concavitas_F_N = mkN "concavitas" "concavitatis" feminine ; -- [DXXFS] :: cavity, hollow; 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; + 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; concelo_V2 = mkV2 (mkV "concelare") ; -- [XXXFO] :: keep secret, conceal altogether; conceal carefully (L+S); - concenatio_F_N = mkN "concenatio" "concenationis " feminine ; -- [XXXEO] :: dinner party; (Cicero from Greek); supping together, table companionship (L+S); - concentio_F_N = mkN "concentio" "concentionis " feminine ; -- [XDXEO] :: unison singing/utterance; harmony (L+S); - concentor_M_N = mkN "concentor" "concentoris " masculine ; -- [DDXFS] :: one who sings (with others in a chorus); + concenatio_F_N = mkN "concenatio" "concenationis" feminine ; -- [XXXEO] :: dinner party; (Cicero from Greek); supping together, table companionship (L+S); + concentio_F_N = mkN "concentio" "concentionis" feminine ; -- [XDXEO] :: unison singing/utterance; harmony (L+S); + concentor_M_N = mkN "concentor" "concentoris" masculine ; -- [DDXFS] :: one who sings (with others in a chorus); concentricus_A = mkA "concentricus" "concentrica" "concentricum" ; -- [GXXEK] :: concentric; concenturio_V2 = mkV2 (mkV "concenturiare") ; -- [XXXEO] :: assemble by centuries, gather by hundreds; marshal, bring together, prepare; - concentus_M_N = mkN "concentus" "concentus " masculine ; -- [XXXBO] :: singing (esp. birds)/playing/shouting together; harmony; concord; tune; choir; + concentus_M_N = mkN "concentus" "concentus" masculine ; -- [XXXBO] :: singing (esp. birds)/playing/shouting together; harmony; concord; tune; choir; conceptaculum_N_N = mkN "conceptaculum" ; -- [XXXCO] :: containing vessel/place/space/receptacle; reservoir; place emotion is conceived; - conceptio_F_N = mkN "conceptio" "conceptionis " feminine ; -- [XXXCO] :: conception, action/fact of conceiving, pregnancy; idea/notion/formula/system; + conceptio_F_N = mkN "conceptio" "conceptionis" feminine ; -- [XXXCO] :: conception, action/fact of conceiving, pregnancy; idea/notion/formula/system; conceptionalis_A = mkA "conceptionalis" "conceptionalis" "conceptionale" ; -- [DXXES] :: pertaining to conception; 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; 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; + 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; + 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; + 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; concertativus_A = mkA "concertativus" "concertativa" "concertativum" ; -- [XLXFO] :: counter (charge/accusation); [accusatio ~ => charge brought against accuser]; - concertator_M_N = mkN "concertator" "concertatoris " masculine ; -- [XXXFO] :: rival; one who vies/contends with another (L+S); + concertator_M_N = mkN "concertator" "concertatoris" masculine ; -- [XXXFO] :: rival; one who vies/contends with another (L+S); concertatorius_A = mkA "concertatorius" "concertatoria" "concertatorium" ; -- [XXXFO] :: controversial, concerned with disputes; of controversy/disputation (L+S); concerto_V = mkV "concertare" ; -- [XXXCO] :: fight, engage in a contest, vie with; dispute, debate (zealously); argue over; concertor_V = mkV "concertari" ; -- [DXXES] :: fight, engage in a contest, vie with, dispute, debate (zealously); argue over; - concessatio_F_N = mkN "concessatio" "concessationis " feminine ; -- [XXXFO] :: action of stopping/resting (on a journey); stopping, delaying (L+S); - concessio_F_N = mkN "concessio" "concessionis " feminine ; -- [XXXCO] :: permission; grant/concession; admission, plea of excuse/for pardon; yielding; + concessatio_F_N = mkN "concessatio" "concessationis" feminine ; -- [XXXFO] :: action of stopping/resting (on a journey); stopping, delaying (L+S); + concessio_F_N = mkN "concessio" "concessionis" feminine ; -- [XXXCO] :: permission; grant/concession; admission, plea of excuse/for pardon; yielding; concessivus_A = mkA "concessivus" "concessiva" "concessivum" ; -- [DXXES] :: pertaining to concession, concessive; (tending to concession); concesso_V = mkV "concessare" ; -- [XXXEO] :: cease/desist temporarily, leave off; rest; concessus_A = mkA "concessus" "concessa" "concessum" ; -- [XXXCO] :: permitted/allowable/allowed/granted; lawful; relinquished; permitting/conceding; - concessus_M_N = mkN "concessus" "concessus " masculine ; -- [XXXCO] :: concession; agreement; permission, leave; movement?; + concessus_M_N = mkN "concessus" "concessus" masculine ; -- [XXXCO] :: concession; agreement; permission, leave; movement?; concha_F_N = mkN "concha" ; -- [EEXEE] :: |holy-water font; conchatus_A = mkA "conchatus" "conchata" "conchatum" ; -- [XXXNO] :: shell-formed, shell-like, shaped like a sea-shell; concheus_A = mkA "concheus" "conchea" "concheum" ; -- [XXXFO] :: produced by an oyster; of/pertaining to a mollusk; [~ baca => pearl]; conchicla_F_N = mkN "conchicla" ; -- [XXXES] :: boiled bean; (boiled with shell/pod?); conchiclatus_A = mkA "conchiclatus" "conchiclata" "conchiclatum" ; -- [XXXFS] :: prepared with beans; - conchis_F_N = mkN "conchis" "conchis " feminine ; -- [XAXEO] :: leguminous vegetable, kind of bean; (boiled with shell/pod); + conchis_F_N = mkN "conchis" "conchis" feminine ; -- [XAXEO] :: leguminous vegetable, kind of bean; (boiled with shell/pod); conchita_M_N = mkN "conchita" ; -- [XAXFO] :: one who harvests/gathers mollusks/murex/oysters; conchortalis_A = mkA "conchortalis" "conchortalis" "conchortale" ; -- [XWXIO] :: of/belonging to same cohort (battalion); conchuela_F_N = mkN "conchuela" ; -- [EEXEE] :: holy-water font; small shell; @@ -12469,89 +12469,89 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; conciliaris_A = mkA "conciliaris" "conciliaris" "conciliare" ; -- [DEXFE] :: concillary, of council; conciliarismus_M_N = mkN "conciliarismus" ; -- [FEXFE] :: theory of conciliarism; (theory/system of governing by Church councils); - conciliatio_F_N = mkN "conciliatio" "conciliationis " feminine ; -- [XXXCO] :: connection/union; winning over/favor; attraction; acceptance; desire; procuring; - conciliator_M_N = mkN "conciliator" "conciliatoris " masculine ; -- [XXXCO] :: mediator; intermediary, procurer; who provides/prepares/causes; promoter/agent; + conciliatio_F_N = mkN "conciliatio" "conciliationis" feminine ; -- [XXXCO] :: connection/union; winning over/favor; attraction; acceptance; desire; procuring; + conciliator_M_N = mkN "conciliator" "conciliatoris" masculine ; -- [XXXCO] :: mediator; intermediary, procurer; who provides/prepares/causes; promoter/agent; 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; + 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); 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); + 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; concilium_N_N = mkN "concilium" ; -- [XXXCS] :: ||sexual union/coition; close conjunction; bond of union; plant iasione blossom; 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; + 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; + 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; concinnatus_A = mkA "concinnatus" "concinnata" "concinnatum" ; -- [XXXFO] :: elaborated, dressed up; concinne_Adv =mkAdv "concinne" "concinnius" "concinnissime" ; -- [XXXCO] :: neatly, prettily, daintily, beautifully; concinnis_A = mkA "concinnis" "concinnis" "concinne" ; -- [XXXFO] :: ready for use, trimmed; - concinnitas_F_N = mkN "concinnitas" "concinnitatis " feminine ; -- [XXXCO] :: neatness/elegance; excessive ingenuity/refinement; grace/charm (of appearance); + concinnitas_F_N = mkN "concinnitas" "concinnitatis" feminine ; -- [XXXCO] :: neatness/elegance; excessive ingenuity/refinement; grace/charm (of appearance); concinniter_Adv = mkAdv "concinniter" ; -- [XXXFO] :: cleverly, ingeniously; - concinnitudo_F_N = mkN "concinnitudo" "concinnitudinis " feminine ; -- [XXXFO] :: neatness/elegance/beauty (of style); + 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; 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; + 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; - concionator_M_N = mkN "concionator" "concionatoris " masculine ; -- [EXXFE] :: preacher; demagogue/agitator; haranguer; one who addresses public meetings; + concionator_M_N = mkN "concionator" "concionatoris" masculine ; -- [EXXFE] :: preacher; demagogue/agitator; haranguer; one who addresses public meetings; 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); + 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; + 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); 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; + 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); + concitatrix_F_N = mkN "concitatrix" "concitatricis" feminine ; -- [XXXEO] :: that which excites/stimulates/stirs; (sexually); concitatus_A = mkA "concitatus" ; -- [XXXCO] :: fast/rapid; roused/vehement/violent (emotions); passionate, energetic; excited; - concitatus_M_N = mkN "concitatus" "concitatus " masculine ; -- [DXXFS] :: impulse; + 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; - concitor_M_N = mkN "concitor" "concitoris " masculine ; -- [XXXDO] :: instigator, provoker; inciter, agitator; one who stirs up; + concitor_M_N = mkN "concitor" "concitoris" masculine ; -- [XXXDO] :: instigator, provoker; inciter, agitator; one who stirs up; concitus_A = mkA "concitus" "concita" "concitum" ; -- [XXXEO] :: moving rapidly; headlong; agitated, disturbed; inflamed, roused; impelled; - concitus_M_N = mkN "concitus" "concitus " masculine ; -- [DXXFS] :: inciting, spurring on; impetuosity; haste; + concitus_M_N = mkN "concitus" "concitus" masculine ; -- [DXXFS] :: inciting, spurring on; impetuosity; haste; conciucula_F_N = mkN "conciucula" ; -- [EEXEE] :: short sermon; brief address; - concivis_M_N = mkN "concivis" "concivis " masculine ; -- [DXXES] :: fellow-citizen; + 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); + conclamatio_F_N = mkN "conclamatio" "conclamationis" feminine ; -- [XXXDO] :: shouting/crying together (usu. grief); acclamation; loud shouting, shout (L+S); 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; + conclave_N_N = mkN "conclave" "conclavis" neuter ; -- [XXXCO] :: room, chamber; lockable enclosed space; coop/cage; public lavatory; dining hall; conclavista_F_N = mkN "conclavista" ; -- [EEXEE] :: cardinal in conclave; 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; + 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; + 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); 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; + 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); concolona_F_N = mkN "concolona" ; -- [DXXFS] :: fellow-citizen/inhabitant (female); she who inhabits the same town/house; concolor_A = mkA "concolor" "concoloris"; -- [XXXCO] :: of the same color/faction, matching; of uniform color throughout; agreeing with; @@ -12561,21 +12561,21 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + concordatio_F_N = mkN "concordatio" "concordationis" feminine ; -- [DXXES] :: concord, unanimity; reconciliation (Ecc); agreement; concordatum_N_N = mkN "concordatum" ; -- [EXXEE] :: concordat, agreement (between church and civil authority); things (pl.) agreed; 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; 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; + 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; concorporalis_A = mkA "concorporalis" "concorporalis" "concorporale" ; -- [DXXFS] :: of/belonging to the same body/company; - concorporalis_M_N = mkN "concorporalis" "concorporalis " masculine ; -- [DXXFS] :: comrade, one belonging to the same body/company; - concorporatio_F_N = mkN "concorporatio" "concorporationis " feminine ; -- [DEXES] :: union, harmony; + concorporalis_M_N = mkN "concorporalis" "concorporalis" masculine ; -- [DXXFS] :: comrade, one belonging to the same body/company; + concorporatio_F_N = mkN "concorporatio" "concorporationis" feminine ; -- [DEXES] :: union, harmony; concorporatus_A = mkA "concorporatus" "concorporata" "concorporatum" ; -- [EEXFE] :: incorporated, united in one body; concorporeus_A = mkA "concorporeus" "concorporea" "concorporeum" ; -- [EEXFE] :: of one body with; concorporificatus_A = mkA "concorporificatus" "concorporificata" "concorporificatum" ; -- [DXXFS] :: incorporated, united in one body; @@ -12584,133 +12584,133 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; concreo_V2 = mkV2 (mkV "concreare") ; -- [EXXFE] :: create together; - concrepatio_F_N = mkN "concrepatio" "concrepationis " feminine ; -- [DXXFS] :: noise; rattling/clatter; (of castanets); + concrepatio_F_N = mkN "concrepatio" "concrepationis" feminine ; -- [DXXFS] :: noise; rattling/clatter; (of castanets); 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; + 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; 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); + 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 "concrucifigere" "concrucifigo" "concrucifixi" "concrucifixus ") ; -- [EEXEW] :: 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; conctanter_Adv =mkAdv "conctanter" "conctius" "conctissime" ; -- [DXXCS] :: hesitantly, slowly, with delay/hesitation; tardily; stubbornly; - conctio_F_N = mkN "conctio" "conctionis " feminine ; -- [XLXIO] :: meeting/assembly; audience/speech; public opinion; parade addressed by general; - concubatio_F_N = mkN "concubatio" "concubationis " feminine ; -- [DXXFS] :: lying/reclining upon; + conctio_F_N = mkN "conctio" "conctionis" feminine ; -- [XLXIO] :: meeting/assembly; audience/speech; public opinion; parade addressed by general; + concubatio_F_N = mkN "concubatio" "concubationis" feminine ; -- [DXXFS] :: lying/reclining upon; concubeo_V2 = mkV2 (mkV "concubere") Dat_Prep ; -- [EXXDW] :: lie with (sexual and not); have sexual intercourse with; concubina_F_N = mkN "concubina" ; -- [XXXCO] :: concubine; kept mistress, one living in concubinage; (milder than paelex L+S); concubinalis_A = mkA "concubinalis" "concubinalis" "concubinale" ; -- [DXXFS] :: lascivious, lewd, wanton; voluptuous; concubinarius_A = mkA "concubinarius" "concubinaria" "concubinarium" ; -- [EXXFE] :: of/related to concubines; concubinarius_M_N = mkN "concubinarius" ; -- [EXXFE] :: keeper of concubines; - concubinatus_M_N = mkN "concubinatus" "concubinatus " masculine ; -- [XXXDO] :: concubinage; cohabiting when not married; illicit intercourse; + concubinatus_M_N = mkN "concubinatus" "concubinatus" masculine ; -- [XXXDO] :: concubinage; cohabiting when not married; illicit intercourse; concubinus_M_N = mkN "concubinus" ; -- [XXXCO] :: catamite; male paramour; kept man, one who lives in concubinage; concubitalis_A = mkA "concubitalis" "concubitalis" "concubitale" ; -- [XXXFO] :: relating to sexual intercourse; - concubitio_F_N = mkN "concubitio" "concubitionis " feminine ; -- [XXXFO] :: sexual intercourse, coitus; - concubitor_M_N = mkN "concubitor" "concubitoris " masculine ; -- [XXXFO] :: fellow sleeper; sleeping partner; bed fellow/mate; cohabitor; concubine; - concubitus_M_N = mkN "concubitus" "concubitus " masculine ; -- [XXXCO] :: lying together (sleeping/dining/sex); sexual intercourse, coitus; sexual act; + concubitio_F_N = mkN "concubitio" "concubitionis" feminine ; -- [XXXFO] :: sexual intercourse, coitus; + concubitor_M_N = mkN "concubitor" "concubitoris" masculine ; -- [XXXFO] :: fellow sleeper; sleeping partner; bed fellow/mate; cohabitor; concubine; + concubitus_M_N = mkN "concubitus" "concubitus" masculine ; -- [XXXCO] :: lying together (sleeping/dining/sex); sexual intercourse, coitus; sexual act; concubium_N_N = mkN "concubium" ; -- [XXXCO] :: early night/first sleep/bedtime; sexual intercourse; concubius_A = mkA "concubius" "concubia" "concubium" ; -- [XXXCO] :: of lying in sleep [nox ~ => the early night/first sleep/bedtime]; concubo_V2 = mkV2 (mkV "concubare") Dat_Prep ; -- [XXXFO] :: lie with (sexual and not); have sexual intercourse with; - conculcatio_F_N = mkN "conculcatio" "conculcationis " feminine ; -- [DXXES] :: treading under foot, stamping on; + 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; + 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; + 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; + 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; + 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; + 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; + concursator_M_N = mkN "concursator" "concursatoris" masculine ; -- [XWXCS] :: skirmisher; one who runs hither and thither/to and fro/about; concursatorius_A = mkA "concursatorius" "concursatoria" "concursatorium" ; -- [DWXFS] :: pertaining to skirmishing; [~ pugna => skirmish]; - concursio_F_N = mkN "concursio" "concursionis " feminine ; -- [XXXCO] :: running together, conjunction, meeting; coincidence; juxtaposition; repetition; + concursio_F_N = mkN "concursio" "concursionis" feminine ; -- [XXXCO] :: running together, conjunction, meeting; coincidence; juxtaposition; repetition; concurso_V = mkV "concursare" ; -- [XXXCO] :: rush/run to and fro/about/together/to visit; clash; visit in turn; run through; - concursus_M_N = mkN "concursus" "concursus " masculine ; -- [XXXBO] :: |encounter; combination, coincidence; conjunction, juxtaposition; joint right; + concursus_M_N = mkN "concursus" "concursus" masculine ; -- [XXXBO] :: |encounter; combination, coincidence; conjunction, juxtaposition; joint right; concurvo_V2 = mkV2 (mkV "concurvare") ; -- [XXXFO] :: bend down; bend, curve (L+S); concussibilis_A = mkA "concussibilis" "concussibilis" "concussibile" ; -- [DXXFS] :: that can be shaken; - concussio_F_N = mkN "concussio" "concussionis " feminine ; -- [XXXCO] :: shaking/disturbance; earthquake; extortion by violence/intimidation, shake down; - concussor_M_N = mkN "concussor" "concussoris " masculine ; -- [DLXFS] :: extortionist; one who extorts money by threats; + concussio_F_N = mkN "concussio" "concussionis" feminine ; -- [XXXCO] :: shaking/disturbance; earthquake; extortion by violence/intimidation, shake down; + concussor_M_N = mkN "concussor" "concussoris" masculine ; -- [DLXFS] :: extortionist; one who extorts money by threats; 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; + 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; + 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; + 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; + 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; + 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; condemnatorius_A = mkA "condemnatorius" "condemnatoria" "condemnatorium" ; -- [ELXFE] :: condemnatory, expressing condemnation; condemno_V2 = mkV2 (mkV "condemnare") ; -- [XLXAO] :: condemn, doom, convict; find guilty; (pass) sentence; blame, censure, impugn; - condensatio_F_N = mkN "condensatio" "condensationis " feminine ; -- [DXXFS] :: condensation; condensing, compressing; + condensatio_F_N = mkN "condensatio" "condensationis" feminine ; -- [DXXFS] :: condensation; condensing, compressing; condensatrum_N_N = mkN "condensatrum" ; -- [HTXEK] :: capacitor; condensatus_A = mkA "condensatus" "condensata" "condensatum" ; -- [GXXEK] :: concentrated (in kitchen); condenseo_V2 = mkV2 (mkV "condensere") ; -- [XXXFO] :: compress; pack/press closely together; condense/make firm; (PASS) grow thickly; 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; + 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); + 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; + 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; - condictor_M_N = mkN "condictor" "condictoris " masculine ; -- [XXXFO] :: fixer, arranger, one who fixes/arranges; + condictor_M_N = mkN "condictor" "condictoris" masculine ; -- [XXXFO] :: fixer, arranger, one who fixes/arranges; condictum_N_N = mkN "condictum" ; -- [XXXEO] :: agreement; appointment; condigne_Adv = mkAdv "condigne" ; -- [XXXDO] :: in an appropriate manner, fittingly, worthily; very worthily (L+S); condignus_A = mkA "condignus" "condigna" "condignum" ; -- [XXXCO] :: appropriate, worthy, befitting; wholly deserving, very worthy (L+S); 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; + 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); + 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; - conditio_F_N = mkN "conditio" "conditionis " feminine ; -- [DXXES] :: |||creating, making; thing made, work; creation (Vulgate); + conditio_F_N = mkN "conditio" "conditionis" feminine ; -- [DXXES] :: |||creating, making; thing made, work; creation (Vulgate); conditionabilis_A = mkA "conditionabilis" "conditionabilis" "conditionabile" ; -- [DXXFS] :: conditional; conditionalis_A = mkA "conditionalis" "conditionalis" "conditionale" ; -- [XXXES] :: conditional, contingent upon certain conditions, with a condition attached; conditionaliter_Adv = mkAdv "conditionaliter" ; -- [XXXES] :: conditionally, in a conditional manner; @@ -12720,19 +12720,19 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat condititius_A = mkA "condititius" "condititia" "condititium" ; -- [DXXFS] :: preserved; laid up; conditivum_N_N = mkN "conditivum" ; -- [XXXEO] :: tomb, sepulcher; conditivus_A = mkA "conditivus" "conditiva" "conditivum" ; -- [XXXEO] :: suitable for preserving/storing; preserved/stored/laid up (food); - conditor_M_N = mkN "conditor" "conditoris " masculine ; -- [XXXFO] :: seasoner, one who seasons; one who prepares a thing in a savory manner (L+S); + conditor_M_N = mkN "conditor" "conditoris" masculine ; -- [XXXFO] :: seasoner, one who seasons; one who prepares a thing in a savory manner (L+S); conditorium_N_N = mkN "conditorium" ; -- [XXXDO] :: tomb/sepulcher; coffin (L+S); place for ashes; repository, place to store; conditorius_A = mkA "conditorius" "conditoria" "conditorium" ; -- [GXXEK] :: of savings; - conditrix_F_N = mkN "conditrix" "conditricis " feminine ; -- [XXXEO] :: foundress, female founder; she who lays to rest (L+S late); + conditrix_F_N = mkN "conditrix" "conditricis" feminine ; -- [XXXEO] :: foundress, female founder; she who lays to rest (L+S late); conditum_N_N = mkN "conditum" ; -- [XXXFO] :: secret, something hidden/concealed; 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); + 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; + 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; @@ -12740,71 +12740,71 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat condominus_M_N = mkN "condominus" ; -- [FXXFE] :: co-owner, one who shares domain; condomo_V2 = mkV2 (mkV "condomare") ; -- [DXXFS] :: check, curb; tame completely; condomum_N_N = mkN "condomum" ; -- [HBXEK] :: condom; - condonatio_F_N = mkN "condonatio" "condonationis " feminine ; -- [XXXEO] :: giving away; donation, gift (Ecc); + 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; + 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); + 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); 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; + 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; + 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); - conductor_M_N = mkN "conductor" "conductoris " masculine ; -- [XXXCO] :: employer/hirer; contractor; lessee/renter; entrepreneur (Cal); - conductrix_F_N = mkN "conductrix" "conductricis " feminine ; -- [DXXES] :: hirer (female), who hires or rents a thing; lessee/renter; + conductor_M_N = mkN "conductor" "conductoris" masculine ; -- [XXXCO] :: employer/hirer; contractor; lessee/renter; entrepreneur (Cal); + conductrix_F_N = mkN "conductrix" "conductricis" feminine ; -- [DXXES] :: hirer (female), who hires or rents a thing; lessee/renter; conductrum_N_N = mkN "conductrum" ; -- [GTXEK] :: conductor (of electricity); conductum_N_N = mkN "conductum" ; -- [XXXCO] :: anything hired/leased; rented house/dwelling; lease/contract; conductus_A = mkA "conductus" "conducta" "conductum" ; -- [XXXCO] :: hired; composed of hired men/mercenaries; taken under contract, leased; - conductus_M_N = mkN "conductus" "conductus " masculine ; -- [DBXES] :: contraction; (of eye/other); convulsion/spasm(?); [~ Paschae => Low Sunday]; + conductus_M_N = mkN "conductus" "conductus" masculine ; -- [DBXES] :: contraction; (of eye/other); convulsion/spasm(?); [~ Paschae => Low Sunday]; condulco_V2 = mkV2 (mkV "condulcare") ; -- [DXXES] :: sweeten; condulus_M_N = mkN "condulus" ; -- [DBXDS] :: knob/knuckle of a joint; joint of a reed, reed; fist (pl.); ring (OLD); condumno_V2 = mkV2 (mkV "condumnare") ; -- [XLXIO] :: condemn, doom, convict; find guilty; (pass) sentence; blame, censure, impugn; - conduplicatio_F_N = mkN "conduplicatio" "conduplicationis " feminine ; -- [XGXEO] :: doubling; (facetiously an embrace); reiteration/repetition (word/phrase); + conduplicatio_F_N = mkN "conduplicatio" "conduplicationis" feminine ; -- [XGXEO] :: doubling; (facetiously an embrace); reiteration/repetition (word/phrase); conduplico_V2 = mkV2 (mkV "conduplicare") ; -- [XXXDO] :: double, make twofold/twice as much/great; make two kinds; embrace (w/corpora); condurdum_N_N = mkN "condurdum" ; -- [XAXNO] :: plant (unidentified); conduro_V2 = mkV2 (mkV "condurare") ; -- [XXXFO] :: harden, make hard; condus_M_N = mkN "condus" ; -- [XXXFO] :: one who stores (provisions); - condyloma_N_N = mkN "condyloma" "condylomatis " neuter ; -- [XBXEO] :: callous anal protuberance; swelling in the parts around the anus (L+S); + condyloma_N_N = mkN "condyloma" "condylomatis" neuter ; -- [XBXEO] :: callous anal protuberance; swelling in the parts around the anus (L+S); 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; + 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; + conexio_F_N = mkN "conexio" "conexionis" feminine ; -- [DXXDS] :: |binding together; close union; organic union; syllable; conexivus_A = mkA "conexivus" "conexiva" "conexivum" ; -- [XGXFO] :: serving to unite/join (words/clauses), copulative, conjunctive, connective; conexo_Adv = mkAdv "conexo" ; -- [DXXFS] :: in connection; connectively; conexum_N_N = mkN "conexum" ; -- [XGXEO] :: hypothetical proposition; necessary consequence, inevitable inference (L+S); - conexus_M_N = mkN "conexus" "conexus " masculine ; -- [XXXEO] :: connection; joining together; combination (L+S); + conexus_M_N = mkN "conexus" "conexus" masculine ; -- [XXXEO] :: connection; joining together; combination (L+S); confabricor_V = mkV "confabricari" ; -- [XXXFO] :: construct, build up; compose, make (L+S); - confabulatio_F_N = mkN "confabulatio" "confabulationis " feminine ; -- [DEXES] :: conversation; discoursing together; - confabulator_M_N = mkN "confabulator" "confabulatoris " masculine ; -- [DEXES] :: one who converses; (with God); - confabulatus_M_N = mkN "confabulatus" "confabulatus " masculine ; -- [DXXFS] :: conversation; - confabulo_M_N = mkN "confabulo" "confabulonis " masculine ; -- [GXXET] :: companion; (Erasmus); + confabulatio_F_N = mkN "confabulatio" "confabulationis" feminine ; -- [DEXES] :: conversation; discoursing together; + confabulator_M_N = mkN "confabulator" "confabulatoris" masculine ; -- [DEXES] :: one who converses; (with God); + 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; + 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; + confarreatio_F_N = mkN "confarreatio" "confarreationis" feminine ; -- [XXXEO] :: marriage ceremony, in which meal/grain (far) was given as an offering; confarreo_V2 = mkV2 (mkV "confarreare") ; -- [XLXEO] :: marry by confarreatio (ceremony with meal/grain offering); contract marriage; confatalis_A = mkA "confatalis" "confatalis" "confatale" ; -- [XXXEO] :: fated by implication; jointly dependent on fate (L+S); decided by fate; - confectio_F_N = mkN "confectio" "confectionis " feminine ; -- [XXXCO] :: |destroying/diminishing/weakening/impairing; reduction (food chewing/digestion); - confector_M_N = mkN "confector" "confectoris " masculine ; -- [XXXCO] :: maker/preparer; who conducts (business); finisher; consumer; destroyer, slayer; + confectio_F_N = mkN "confectio" "confectionis" feminine ; -- [XXXCO] :: |destroying/diminishing/weakening/impairing; reduction (food chewing/digestion); + confector_M_N = mkN "confector" "confectoris" masculine ; -- [XXXCO] :: maker/preparer; who conducts (business); finisher; consumer; destroyer, slayer; confectorarius_M_N = mkN "confectorarius" ; -- [XXXIO] :: slaughter; butcher; confectorium_N_N = mkN "confectorium" ; -- [XAXFS] :: slaughterhouse, place where swine/hogs are slaughtered/butchered; - confectrix_F_N = mkN "confectrix" "confectricis " feminine ; -- [DXXFS] :: destroyer, that which destroys; + confectrix_F_N = mkN "confectrix" "confectricis" feminine ; -- [DXXFS] :: destroyer, that which destroys; confectura_F_N = mkN "confectura" ; -- [XXXEO] :: preparation, making, manufacture; confectus_A = mkA "confectus" "confecta" "confectum" ; -- [XAXFO] :: with her litter (w/sus of a sow); (offered with all her young for sacrifice); - confederatio_F_N = mkN "confederatio" "confederationis " feminine ; -- [FXXFM] :: confederation; league; + 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; + 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; @@ -12815,16 +12815,16 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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; + confessio_F_N = mkN "confessio" "confessionis" feminine ; -- [EEXER] :: ||praise, thanksgiving; (Vulgate); + confessionale_N_N = mkN "confessionale" "confessionalis" neuter ; -- [EEXDE] :: confessional; confessionalis_A = mkA "confessionalis" "confessionalis" "confessionale" ; -- [EEXFE] :: confessional; - confessionalis_F_N = mkN "confessionalis" "confessionalis " feminine ; -- [EEXDE] :: confessional; - confessor_M_N = mkN "confessor" "confessoris " masculine ; -- [DEXES] :: confessor of Christianity; martyr; lower clergy; pious monk; confessor (modern); + confessionalis_F_N = mkN "confessionalis" "confessionalis" feminine ; -- [EEXDE] :: confessional; + confessor_M_N = mkN "confessor" "confessoris" masculine ; -- [DEXES] :: confessor of Christianity; martyr; lower clergy; pious monk; confessor (modern); confessorius_A = mkA "confessorius" "confessoria" "confessorium" ; -- [XLXEO] :: based on admission/claiming a right (w/actio); of a confession/acknowledgement; confessum_N_N = mkN "confessum" ; -- [XLXCO] :: acknowledged/generally admitted fact; substance of a confession; confessus_A = mkA "confessus" "confessa" "confessum" ; -- [XLXCO] :: admitted, acknowledged; generally admitted, manifest, obvious; confessed; @@ -12832,25 +12832,25 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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" "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); + 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; + confictor_M_N = mkN "confictor" "confictoris" masculine ; -- [DXXFS] :: fabricator, he who fabricates/concocts a thing; confictus_A = mkA "confictus" "conficta" "confictum" ; -- [XXXFE] :: forged; counterfeit; - confidejussor_M_N = mkN "confidejussor" "confidejussoris " masculine ; -- [XLXEO] :: joint surety/bond; - confidelis_M_N = mkN "confidelis" "confidelis " masculine ; -- [DEXFS] :: fellow-believer; + confidejussor_M_N = mkN "confidejussor" "confidejussoris" masculine ; -- [XLXEO] :: joint surety/bond; + confidelis_M_N = mkN "confidelis" "confidelis" masculine ; -- [DEXFS] :: fellow-believer; 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; 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; + 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; + 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; @@ -12859,63 +12859,63 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat confirmanda_F_N = mkN "confirmanda" ; -- [EEXEE] :: candidate for confirmation (female); confirmandus_M_N = mkN "confirmandus" ; -- [EEXEE] :: candidate for confirmation; confirmate_Adv =mkAdv "confirmate" "confirmatius" "confirmatissime" ; -- [DXXFS] :: firmly; - confirmatio_F_N = mkN "confirmatio" "confirmationis " feminine ; -- [XXXCO] :: |confirmation/verification/establishing; proof; corroboration; adducing proofs; + confirmatio_F_N = mkN "confirmatio" "confirmationis" feminine ; -- [XXXCO] :: |confirmation/verification/establishing; proof; corroboration; adducing proofs; confirmative_Adv = mkAdv "confirmative" ; -- [DXXFS] :: confirmatively, corroboratively; confirmativum_N_N = mkN "confirmativum" ; -- [DXXFS] :: affirmation; affirmative; 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; + 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; 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; + 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; - confiscator_M_N = mkN "confiscator" "confiscatoris " masculine ; -- [XLXFS] :: treasurer; master of the exchequer; + confiscatio_F_N = mkN "confiscatio" "confiscationis" feminine ; -- [XLXFO] :: confiscation/seizure of a person's property; forfeiting; + confiscator_M_N = mkN "confiscator" "confiscatoris" masculine ; -- [XLXFS] :: treasurer; master of the exchequer; confisco_V2 = mkV2 (mkV "confiscare") ; -- [XLXCO] :: confiscate/seize (for the public treasury); lay-up in a treasury, store; - confisio_F_N = mkN "confisio" "confisionis " feminine ; -- [XXXFO] :: assurance; trust, confidence; + confisio_F_N = mkN "confisio" "confisionis" feminine ; -- [XXXFO] :: assurance; trust, confidence; confiteor_V = mkV "confiteri" ; -- [XXXBO] :: confess (w/ACC), admit, acknowledge, reveal, disclose; concede, allow; denote; 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; + 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); + 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; conflammo_V2 = mkV2 (mkV "conflammare") ; -- [DXXFS] :: inflame; conflans_A = mkA "conflans" "conflantis"; -- [EXXFE] :: refining, purifying; - conflatile_N_N = mkN "conflatile" "conflatilis " neuter ; -- [DXXFS] :: cast idol/image; + conflatile_N_N = mkN "conflatile" "conflatilis" neuter ; -- [DXXFS] :: cast idol/image; conflatilis_A = mkA "conflatilis" "conflatilis" "conflatile" ; -- [DXXES] :: cast; molten (Ecc); - conflatio_F_N = mkN "conflatio" "conflationis " feminine ; -- [DXXDS] :: fanning, kindling, stirring up; casting, molding (in metal); - conflator_M_N = mkN "conflator" "conflatoris " masculine ; -- [DTXFS] :: metal-caster; + conflatio_F_N = mkN "conflatio" "conflationis" feminine ; -- [DXXDS] :: fanning, kindling, stirring up; casting, molding (in metal); + conflator_M_N = mkN "conflator" "conflatoris" masculine ; -- [DTXFS] :: metal-caster; conflatorium_N_N = mkN "conflatorium" ; -- [DTXFS] :: melting/casting furnace; (for metal); crucible (Ecc); conflatura_F_N = mkN "conflatura" ; -- [DTXFS] :: melting (of metals by fire); - conflax_F_N = mkN "conflax" "conflagis " feminine ; -- [XXXFW] :: places (pl.) exposed on all sides to the winds; (L+S); - conflax_M_N = mkN "conflax" "conflagis " masculine ; -- [XXXFW] :: places (pl.) exposed on all sides to the winds; (L+S); + conflax_F_N = mkN "conflax" "conflagis" feminine ; -- [XXXFW] :: places (pl.) exposed on all sides to the winds; (L+S); + conflax_M_N = mkN "conflax" "conflagis" masculine ; -- [XXXFW] :: places (pl.) exposed on all sides to the winds; (L+S); conflexus_A = mkA "conflexus" "conflexa" "conflexum" ; -- [XXXNO] :: bent; curved round; - conflictatio_F_N = mkN "conflictatio" "conflictationis " feminine ; -- [XXXDO] :: struggle, contest, contention; convulsion; dispute; punishing (L+S); collision; - conflictatrix_F_N = mkN "conflictatrix" "conflictatricis " feminine ; -- [DXXFS] :: she who afflicts; + conflictatio_F_N = mkN "conflictatio" "conflictationis" feminine ; -- [XXXDO] :: struggle, contest, contention; convulsion; dispute; punishing (L+S); collision; + conflictatrix_F_N = mkN "conflictatrix" "conflictatricis" feminine ; -- [DXXFS] :: she who afflicts; conflictatus_A = mkA "conflictatus" "conflictata" "conflictatum" ; -- [DXXFS] :: struck together; collided; contended, battled; argued, disagreed; - conflictio_F_N = mkN "conflictio" "conflictionis " feminine ; -- [XXXCO] :: collision/striking together; clash, disagreement/inconsistency; act of fighting; + conflictio_F_N = mkN "conflictio" "conflictionis" feminine ; -- [XXXCO] :: collision/striking together; clash, disagreement/inconsistency; act of fighting; conflicto_V = mkV "conflictare" ; -- [XXXCO] :: |strike frequently/forcibly/violently; buffet; ruin; conflictor_V = mkV "conflictari" ; -- [XXXCO] :: contend, struggle; enter into a contest; - conflictus_M_N = mkN "conflictus" "conflictus " masculine ; -- [XXXDO] :: clash, collision; impact; fight, contest (L+S); impulse; impression; necessity; + 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; + 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; - conflox_F_N = mkN "conflox" "conflogis " feminine ; -- [XXXFW] :: places (pl.) exposed on all sides to the winds; (L+S); - conflox_M_N = mkN "conflox" "conflogis " masculine ; -- [XXXFW] :: places (pl.) exposed on all sides to the winds; (L+S); + conflox_F_N = mkN "conflox" "conflogis" feminine ; -- [XXXFW] :: places (pl.) exposed on all sides to the winds; (L+S); + conflox_M_N = mkN "conflox" "conflogis" masculine ; -- [XXXFW] :: places (pl.) exposed on all sides to the winds; (L+S); 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); + 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; + 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); + 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; @@ -12923,20 +12923,20 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; conformis_A = mkA "conformis" "conformis" "conforme" ; -- [DXXFS] :: similar, like; - conformitas_F_N = mkN "conformitas" "conformitatis " feminine ; -- [EXXFP] :: likeness; conformity (Ecc); agreement; + conformitas_F_N = mkN "conformitas" "conformitatis" feminine ; -- [EXXFP] :: likeness; conformity (Ecc); agreement; conformo_V2 = mkV2 (mkV "conformare") ; -- [XXXBO] :: shape/mold skillfully; outline, describe; train/educate/teach; make to agree; - confornicatio_F_N = mkN "confornicatio" "confornicationis " feminine ; -- [XTXFO] :: arching/vaulting over (of a space); + confornicatio_F_N = mkN "confornicatio" "confornicationis" feminine ; -- [XTXFO] :: arching/vaulting over (of a space); confornico_V2 = mkV2 (mkV "confornicare") ; -- [XTXFO] :: vault over, over-arch, cover with an arched roof; - confortatio_F_N = mkN "confortatio" "confortationis " feminine ; -- [EEXFE] :: comfort, consolation, solace; + 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; 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; + 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; @@ -12946,52 +12946,52 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - confrater_M_N = mkN "confrater" "confratris " masculine ; -- [EEXEE] :: brother; colleague, confrere, fellow; guild brother; - confraternitas_F_N = mkN "confraternitas" "confraternitatis " feminine ; -- [FEXEE] :: association, brotherhood, society/confraternity/confederation/sodality/guild; + confrater_M_N = mkN "confrater" "confratris" masculine ; -- [EEXEE] :: brother; colleague, confrere, fellow; guild brother; + confraternitas_F_N = mkN "confraternitas" "confraternitatis" feminine ; -- [FEXEE] :: association, brotherhood, society/confraternity/confederation/sodality/guild; 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); + 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; + 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; + 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; + 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; + 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; + 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; confusicius_A = mkA "confusicius" "confusicia" "confusicium" ; -- [XXXFO] :: mixed; hodge-podge; 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; + 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; 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); + 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; + 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); - 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; + 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); + 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); + 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; + 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?; @@ -12999,29 +12999,29 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat congeniclatus_A = mkA "congeniclatus" "congeniclata" "congeniclatum" ; -- [XXXFO] :: forced to one's knees; fallen upon the knees (L+S); congeniclo_V = mkV "congeniclare" ; -- [XXXEO] :: fall on one's knees; congenitus_A = mkA "congenitus" "congenita" "congenitum" ; -- [XBXNO] :: congenital, existing from time of birth; coeval; born/produced together with; - congentilis_M_N = mkN "congentilis" "congentilis " masculine ; -- [XXXIO] :: persons (pl.) belonging to the same gens; relatives, kindred; + congentilis_M_N = mkN "congentilis" "congentilis" masculine ; -- [XXXIO] :: persons (pl.) belonging to the same gens; relatives, kindred; congenuclatus_A = mkA "congenuclatus" "congenuclata" "congenuclatum" ; -- [XXXFO] :: forced to one's knees; congenuclo_V = mkV "congenuclare" ; -- [XXXEO] :: fall on one's knees; conger_M_N = mkN "conger" ; -- [XAXDO] :: conger eel; sea eel (L+S); 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; + 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; + 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); + 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; congesticius_A = mkA "congesticius" "congesticia" "congesticium" ; -- [XXXEO] :: raised, heaped/piled up; of material brought to the spot; brought together; congestim_Adv = mkAdv "congestim" ; -- [XXXFO] :: in heaps; heaped together (L+S); - congestio_F_N = mkN "congestio" "congestionis " feminine ; -- [XXXDO] :: action of filling (holes/ditches); heap/mass/pile; combination/accumulation; + congestio_F_N = mkN "congestio" "congestionis" feminine ; -- [XXXDO] :: action of filling (holes/ditches); heap/mass/pile; combination/accumulation; congestitius_A = mkA "congestitius" "congestitia" "congestitium" ; -- [XXXES] :: raised, heaped/piled up; of material brought to the spot; brought together; congesto_V2 = mkV2 (mkV "congestare") ; -- [XXXFS] :: bring/carry together; congestus_A = mkA "congestus" "congesta" "congestum" ; -- [DXXFS] :: brought together; pressed/crowded together; thick; - congestus_M_N = mkN "congestus" "congestus " masculine ; -- [XXXCO] :: action of bringing together/assembling/heaping; heap/pile/mass; big collection; + congestus_M_N = mkN "congestus" "congestus" masculine ; -- [XXXCO] :: action of bringing together/assembling/heaping; heap/pile/mass; big collection; congialis_A = mkA "congialis" "congialis" "congiale" ; -- [BSXFO] :: holding a congius (3 quarts); (liquid measure); congiarium_N_N = mkN "congiarium" ; -- [XXXCO] :: largess for soldiers/poor; gift in grain/oil/wine/salt/money; 1 congius vessel; congiarius_A = mkA "congiarius" "congiaria" "congiarium" ; -- [XSXFS] :: of/pertaining to/holding the (liquid) measure of one congius (about 3 quarts); @@ -13030,12 +13030,12 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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; - conglomeratio_F_N = mkN "conglomeratio" "conglomerationis " feminine ; -- [XXXFS] :: assembly; crowding together; + conglomeratio_F_N = mkN "conglomeratio" "conglomerationis" feminine ; -- [XXXFS] :: assembly; crowding together; conglomero_V2 = mkV2 (mkV "conglomerare") ; -- [XXXDO] :: concentrate, gather into a compact mass; heap (evils upon a person) (w/in+ACC); conglorifico_V2 = mkV2 (mkV "conglorificare") ; -- [DEXFS] :: glorify together with (others); (PASSIVE) be glorified with; - conglutinatio_F_N = mkN "conglutinatio" "conglutinationis " feminine ; -- [XXXEO] :: joint; joining by cohesion; gluing/cementing/joining together (L+S); + conglutinatio_F_N = mkN "conglutinatio" "conglutinationis" feminine ; -- [XXXEO] :: joint; joining by cohesion; gluing/cementing/joining together (L+S); conglutino_V = mkV "conglutinare" ; -- [GXXEK] :: bind (books); conglutino_V2 = mkV2 (mkV "conglutinare") ; -- [XXXCO] :: glue/stick/bind/cohere together; cement; cleave to; bring to agreement; devise; conglutinor_V = mkV "conglutinari" ; -- [FXXDE] :: glue/stick/bind/cohere together; cement; cleave to; bring to agreement; devise; @@ -13043,21 +13043,21 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat congluvialis_A = mkA "congluvialis" "congluvialis" "congluviale" ; -- [XXXFO] :: additional/tacked on (days) for proceedings after a break?; congradus_A = mkA "congradus" "congrada" "congradum" ; -- [DXXFS] :: keeping pace with; apace; 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; + 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); + 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; - congregatio_F_N = mkN "congregatio" "congregationis " feminine ; -- [XXXCO] :: act of forming social group; association, community; brotherhood; congregation; + congregatio_F_N = mkN "congregatio" "congregationis" feminine ; -- [XXXCO] :: act of forming social group; association, community; brotherhood; congregation; congregativus_A = mkA "congregativus" "congregativa" "congregativum" ; -- [DXXFS] :: suitable for uniting/congregating, copulative; - congregator_M_N = mkN "congregator" "congregatoris " masculine ; -- [DXXES] :: assembler, one who brings together; convener?; - congregatus_M_N = mkN "congregatus" "congregatus " masculine ; -- [DXXFS] :: union, association; + congregator_M_N = mkN "congregator" "congregatoris" masculine ; -- [DXXES] :: assembler, one who brings together; convener?; + congregatus_M_N = mkN "congregatus" "congregatus" masculine ; -- [DXXFS] :: union, association; congrego_V2 = mkV2 (mkV "congregare") ; -- [XXXBO] :: collect/bring together/assemble/convene; flock, congregate; group; concentrate; congregus_A = mkA "congregus" "congrega" "congregum" ; -- [DAXFS] :: united/collected in flocks/herds; - congressio_F_N = mkN "congressio" "congressionis " feminine ; -- [XXXCO] :: meeting, visit, interview; encounter; conflict, attack; sexual intercourse; - congressor_M_N = mkN "congressor" "congressoris " masculine ; -- [DXXFS] :: one who meets/assembles with; - congressus_M_N = mkN "congressus" "congressus " masculine ; -- [XXXBO] :: |union, combination, coming together; sexual/social intercourse; companionship; + congressio_F_N = mkN "congressio" "congressionis" feminine ; -- [XXXCO] :: meeting, visit, interview; encounter; conflict, attack; sexual intercourse; + congressor_M_N = mkN "congressor" "congressoris" masculine ; -- [DXXFS] :: one who meets/assembles with; + congressus_M_N = mkN "congressus" "congressus" masculine ; -- [XXXBO] :: |union, combination, coming together; sexual/social intercourse; companionship; congrex_A = mkA "congrex" "congregis"; -- [XXXFO] :: herded together; of same herd/flock (L+S); collected in flocks; intimate/close; congrua_F_N = mkN "congrua" ; -- [FEXFE] :: salary of pastor; congrue_Adv = mkAdv "congrue" ; -- [DXXES] :: suitably, aptly; agreeably, harmoniously; @@ -13071,7 +13071,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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); @@ -13082,7 +13082,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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; @@ -13092,27 +13092,27 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat conjaceo_V = mkV "conjacere" ; -- [XXXFS] :: lie together; conjectaneum_N_N = mkN "conjectaneum" ; -- [XGXFO] :: miscellany (pl.); (title of several books); note/commonplace book (L+S); conjectarius_A = mkA "conjectarius" "conjectaria" "conjectarium" ; -- [XGXFO] :: conjectural, based on inferences; of/pertaining to conjecture (L+S); - conjectatio_F_N = mkN "conjectatio" "conjectationis " feminine ; -- [XXXDO] :: inference, conjecture, guess, surmise; act of guessing/surmising; - conjectator_M_N = mkN "conjectator" "conjectatoris " masculine ; -- [DEXEO] :: soothsayer, seer; conjecturer; + conjectatio_F_N = mkN "conjectatio" "conjectationis" feminine ; -- [XXXDO] :: inference, conjecture, guess, surmise; act of guessing/surmising; + conjectator_M_N = mkN "conjectator" "conjectatoris" masculine ; -- [DEXEO] :: soothsayer, seer; conjecturer; conjectatorius_A = mkA "conjectatorius" "conjectatoria" "conjectatorium" ; -- [DGXFS] :: conjectural, based on inferences; of/pertaining to conjecture (L+S); - conjectio_F_N = mkN "conjectio" "conjectionis " feminine ; -- [XXXCO] :: summary; comparison; interpretation/exposition; inference/conjecture; throwing; + conjectio_F_N = mkN "conjectio" "conjectionis" feminine ; -- [XXXCO] :: summary; comparison; interpretation/exposition; inference/conjecture; throwing; conjecto_V = mkV "conjectare" ; -- [XXXCO] :: |throw together; assemble; throw (person in prison); interpret (portent); - conjector_M_N = mkN "conjector" "conjectoris " masculine ; -- [XEXEO] :: soothsayer; interpreter of dreams; diviner, seer; - conjectrix_F_N = mkN "conjectrix" "conjectricis " feminine ; -- [XEXEO] :: interpreter of dreams (female); soothsayer (female); diviner, seer; + conjector_M_N = mkN "conjector" "conjectoris" masculine ; -- [XEXEO] :: soothsayer; interpreter of dreams; diviner, seer; + conjectrix_F_N = mkN "conjectrix" "conjectricis" feminine ; -- [XEXEO] :: interpreter of dreams (female); soothsayer (female); diviner, seer; conjectura_F_N = mkN "conjectura" ; -- [XXXBO] :: conjecture/guess/inference/reasoning/interpretation/comparison/prophecy/forecast - conjecturale_N_N = mkN "conjecturale" "conjecturalis " neuter ; -- [XGXFS] :: conjectures/inferences/guesses (pl.); + conjecturale_N_N = mkN "conjecturale" "conjecturalis" neuter ; -- [XGXFS] :: conjectures/inferences/guesses (pl.); 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; + 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); conjugalis_A = mkA "conjugalis" "conjugalis" "conjugale" ; -- [XAXNO] :: species of myrtle?; conjugalus_A = mkA "conjugalus" "conjugala" "conjugalum" ; -- [XAXEO] :: name of a species of myrtle; - conjugatio_F_N = mkN "conjugatio" "conjugationis " feminine ; -- [XGXEO] :: etymological connection; mixing together/combining, mixture; conjugation (late); + conjugatio_F_N = mkN "conjugatio" "conjugationis" feminine ; -- [XGXEO] :: etymological connection; mixing together/combining, mixture; conjugation (late); conjugatiter_Adv = mkAdv "conjugatiter" ; -- [DXXFS] :: as married persons; - conjugator_M_N = mkN "conjugator" "conjugatoris " masculine ; -- [XXXFO] :: one who unites (in a pair); one who joins (L+S); + conjugator_M_N = mkN "conjugator" "conjugatoris" masculine ; -- [XXXFO] :: one who unites (in a pair); one who joins (L+S); conjugatum_N_N = mkN "conjugatum" ; -- [XGXFO] :: etymologically connected words; conjugatus_A = mkA "conjugatus" "conjugata" "conjugatum" ; -- [XGXEO] :: etymologically connected/related (words); depending on etymological connection; conjugialis_A = mkA "conjugialis" "conjugialis" "conjugiale" ; -- [XXXEO] :: of/belonging to marriage, conjugal, connubial, marital; of a husband; @@ -13122,32 +13122,32 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat conjugulus_A = mkA "conjugulus" "conjugula" "conjugulum" ; -- [XAXES] :: name of a species of myrtle; pertaining to uniting/connecting (L+S); conjuncte_Adv =mkAdv "conjuncte" "conjunctius" "conjunctissime" ; -- [XXXCO] :: jointly, at same time; together, in a friendly/confidential fashion; conjunctim_Adv = mkAdv "conjunctim" ; -- [XXXCO] :: jointly, in common; together; in combination; - conjunctio_F_N = mkN "conjunctio" "conjunctionis " feminine ; -- [XXXAO] :: |conjunction (word); combination; compound proposition; association/affinity; + conjunctio_F_N = mkN "conjunctio" "conjunctionis" feminine ; -- [XXXAO] :: |conjunction (word); combination; compound proposition; association/affinity; conjunctivus_A = mkA "conjunctivus" "conjunctiva" "conjunctivum" ; -- [XXXFO] :: connective; of connection, serving to connect (L+S); subjunctive (mood); conjunctivus_M_N = mkN "conjunctivus" ; -- [DGXFS] :: conjunctive/subjunctive mood; - conjunctrix_F_N = mkN "conjunctrix" "conjunctricis " feminine ; -- [DXXFS] :: that which joins/unites together; + conjunctrix_F_N = mkN "conjunctrix" "conjunctricis" feminine ; -- [DXXFS] :: that which joins/unites together; 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; + 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; - conjuratio_F_N = mkN "conjuratio" "conjurationis " feminine ; -- [XXXCO] :: conspiracy, plot, intrigue; alliance; band of conspirators; taking joint oath; + 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; + conjuratio_F_N = mkN "conjuratio" "conjurationis" feminine ; -- [XXXCO] :: conspiracy, plot, intrigue; alliance; band of conspirators; taking joint oath; conjuratus_A = mkA "conjuratus" "conjurata" "conjuratum" ; -- [XXXDS] :: conspiring; leagued; conjuratus_M_N = mkN "conjuratus" ; -- [XXXEO] :: conspirator; (usu. pl.); 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; + 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); + 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); + conlacrimatio_F_N = mkN "conlacrimatio" "conlacrimationis" feminine ; -- [XXXFO] :: accompanying tears; weeping/lamenting (together/greatly); conlacrimo_V = mkV "conlacrimare" ; -- [XXXDO] :: weep together, weep in the company of someone; weep over/for (w/ACC); bewail; conlacrumo_V = mkV "conlacrumare" ; -- [XXXES] :: weep together, weep in the company of someone; weep over/for (w/ACC); bewail; conlactanea_F_N = mkN "conlactanea" ; -- [XXXEO] :: foster-sister; one nourished at the same breast; @@ -13159,19 +13159,19 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat conlacticius_M_N = mkN "conlacticius" ; -- [XXXIS] :: foster-brother; one nourished at the same breast; conlactius_M_N = mkN "conlactius" ; -- [XXXEO] :: foster-brother; one nourished at the same breast; conlaetor_V = mkV "conlaetari" ; -- [DXXFS] :: rejoice together; - conlapsio_F_N = mkN "conlapsio" "conlapsionis " feminine ; -- [DXXFS] :: precipitation, falling together; + conlapsio_F_N = mkN "conlapsio" "conlapsionis" feminine ; -- [DXXFS] :: precipitation, falling together; conlatero_V2 = mkV2 (mkV "conlaterare") ; -- [DXXFS] :: admit on both sides; conlaticius_A = mkA "conlaticius" "conlaticia" "conlaticium" ; -- [XXXDO] :: contributed, raised/produced by contributions; brought together (L+S); mingled; - conlatio_F_N = mkN "conlatio" "conlationis " feminine ; -- [XGXEO] :: |comparison; [grammatical secunda ~/tertia ~ => comparative/superlative]; + conlatio_F_N = mkN "conlatio" "conlationis" feminine ; -- [XGXEO] :: |comparison; [grammatical secunda ~/tertia ~ => comparative/superlative]; conlatitius_A = mkA "conlatitius" "conlatitia" "conlatitium" ; -- [XXXDS] :: contributed, raised/produced by contributions; brought together (L+S); mingled; conlativum_N_N = mkN "conlativum" ; -- [DLXFS] :: contribution in money; conlativus_A = mkA "conlativus" "conlativa" "conlativum" ; -- [XXXEO] :: supplied/produced by contributions from many quarters; collected/combined (L+S); - conlator_M_N = mkN "conlator" "conlatoris " masculine ; -- [XXXEO] :: joint contributor, subscriber; he who brings/places together (L+S); comparer; + conlator_M_N = mkN "conlator" "conlatoris" masculine ; -- [XXXEO] :: joint contributor, subscriber; he who brings/places together (L+S); comparer; conlatro_V2 = mkV2 (mkV "conlatrare") ; -- [XXXFO] :: bark in chorus at; bark/yelp fiercely at (L+S); inveigh against; - conlatus_M_N = mkN "conlatus" "conlatus " masculine ; -- [XWXFO] :: joining of battle; affray, attack (L+S); contributing (to knowledge, teaching); + conlatus_M_N = mkN "conlatus" "conlatus" masculine ; -- [XWXFO] :: joining of battle; affray, attack (L+S); contributing (to knowledge, teaching); conlaudabilis_A = mkA "conlaudabilis" "conlaudabilis" "conlaudabile" ; -- [DXXFS] :: worthy of praise in every respect; - conlaudatio_F_N = mkN "conlaudatio" "conlaudationis " feminine ; -- [XXXEO] :: high/warm praise; commendation; eulogy; - conlaudator_M_N = mkN "conlaudator" "conlaudatoris " masculine ; -- [DXXFS] :: one who praises highly/warmly; + conlaudatio_F_N = mkN "conlaudatio" "conlaudationis" feminine ; -- [XXXEO] :: high/warm praise; commendation; eulogy; + conlaudator_M_N = mkN "conlaudator" "conlaudatoris" masculine ; -- [DXXFS] :: one who praises highly/warmly; conlaudo_V2 = mkV2 (mkV "conlaudare") ; -- [XXXCO] :: praise/extol highly; commend; eulogize; conlaxo_V2 = mkV2 (mkV "conlaxare") ; -- [XXXFO] :: loosen; make loose/porous (L+S); conlecta_F_N = mkN "conlecta" ; -- [XXXCO] :: contribution; collection; meeting/assemblage (L+S); Collect at Mass (eccl.); @@ -13181,13 +13181,13 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat conlecte_Adv = mkAdv "conlecte" ; -- [DXXFS] :: summarily; briefly; conlecticius_A = mkA "conlecticius" "conlecticia" "conlecticium" ; -- [XXXEO] :: obtained/collected from various quarters; gathered hastily without selection; conlectim_Adv = mkAdv "conlectim" ; -- [DXXFS] :: summarily; briefly; - conlectio_F_N = mkN "conlectio" "conlectionis " feminine ; -- [XXXCO] :: collection/accumulation; gathering, abscess; recapitulation, summary; inference; + conlectio_F_N = mkN "conlectio" "conlectionis" feminine ; -- [XXXCO] :: collection/accumulation; gathering, abscess; recapitulation, summary; inference; conlectitius_A = mkA "conlectitius" "conlectitia" "conlectitium" ; -- [XXXEO] :: obtained/collected from various quarters; gathered hastily without selection; 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); + 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.); 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; + 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; conlegialis_A = mkA "conlegialis" "conlegialis" "conlegiale" ; -- [XXXIO] :: of a collegium (guild/fraternity/board); collegial; @@ -13205,10 +13205,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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 "conligere" "conligo" "conlexi" "conlectus ") ; -- [XXXFO] :: |obtain/acquire, amass; rally; recover; sum up; deduce, infer; compute, add up; + conligatio_F_N = mkN "conligatio" "conligationis" feminine ; -- [XGXCO] :: binding together; bond/connection; thing that binds/connects band; conjunction; + 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); @@ -13217,183 +13217,183 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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); + conlisio_F_N = mkN "conlisio" "conlisionis" feminine ; -- [XXXFO] :: clash, collision; dashing/striking together (L+S); conlisus_A = mkA "conlisus" "conlisa" "conlisum" ; -- [XXXFO] :: crushed, flattened; - conlisus_M_N = mkN "conlisus" "conlisus " masculine ; -- [XXXEO] :: striking/clashing together; collision; - conlocatio_F_N = mkN "conlocatio" "conlocationis " feminine ; -- [XXXCO] :: placing/siting (together); position; arrangement, ordering (things); marrying; + conlisus_M_N = mkN "conlisus" "conlisus" masculine ; -- [XXXEO] :: striking/clashing together; collision; + conlocatio_F_N = mkN "conlocatio" "conlocationis" feminine ; -- [XXXCO] :: placing/siting (together); position; arrangement, ordering (things); marrying; conloco_V2 = mkV2 (mkV "conlocare") ; -- [XXXAO] :: |put together, assemble; settle/establish in a place/marriage; billet; lie down; conlocupleto_V2 = mkV2 (mkV "conlocupletare") ; -- [XXXEO] :: enrich, make wealthy/very rich; embellish, adorn; - 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; + 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; + 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); - conluctatio_F_N = mkN "conluctatio" "conluctationis " feminine ; -- [XXXCO] :: struggling (physical), wrestling; struggle, conflict; death struggle/agony; - conluctor_M_N = mkN "conluctor" "conluctoris " masculine ; -- [DXXFS] :: wrestler; antagonist, adversary; + conluctatio_F_N = mkN "conluctatio" "conluctationis" feminine ; -- [XXXCO] :: struggling (physical), wrestling; struggle, conflict; death struggle/agony; + 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); + 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; + 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; - conlusor_M_N = mkN "conlusor" "conlusoris " masculine ; -- [XXXCO] :: playmate, companion in play; fellow gambler; one in collusion to hurt another; + conlusio_F_N = mkN "conlusio" "conlusionis" feminine ; -- [XXXDO] :: secret/deceptive understanding, collusion; + conlusor_M_N = mkN "conlusor" "conlusoris" masculine ; -- [XXXCO] :: playmate, companion in play; fellow gambler; one in collusion to hurt another; conlusorie_Adv = mkAdv "conlusorie" ; -- [XXXFO] :: in/by collusion; in a concerted manner (L+S); conlustrium_N_N = mkN "conlustrium" ; -- [XEXEO] :: ceremonial purification (of fields); corporation that procured the purification; conlustro_V2 = mkV2 (mkV "conlustrare") ; -- [XXXCO] :: illuminate, make bright, light up fully; look over, survey; traverse, explore; - conlutio_F_N = mkN "conlutio" "conlutionis " feminine ; -- [XXXEO] :: rinsing; washing (L+S); + conlutio_F_N = mkN "conlutio" "conlutionis" feminine ; -- [XXXEO] :: rinsing; washing (L+S); conlutito_V2 = mkV2 (mkV "conlutitare") ; -- [DXXES] :: soil/defile greatly/thoroughly; conlutlento_V2 = mkV2 (mkV "conlutlentare") ; -- [XXXFO] :: cover over with mud; conluviaris_A = mkA "conluviaris" "conluviaris" "conluviare" ; -- [XAXFO] :: swilled/slopped, fed on refuse/filth (pigs); - conluvies_F_N = mkN "conluvies" "conluviei " feminine ; -- [XAXCO] :: muck, decayed matter; refuse/sewage; pig-swill; filth; dregs; cesspool/mire; - conluvio_F_N = mkN "conluvio" "conluvionis " feminine ; -- [XXXCS] :: |muck, decayed matter; refuse/sewage; pig-swill; filth; dregs; cesspool/mire; + conluvies_F_N = mkN "conluvies" "conluviei" feminine ; -- [XAXCO] :: muck, decayed matter; refuse/sewage; pig-swill; filth; dregs; cesspool/mire; + conluvio_F_N = mkN "conluvio" "conluvionis" feminine ; -- [XXXCS] :: |muck, decayed matter; refuse/sewage; pig-swill; filth; dregs; cesspool/mire; conluvium_N_N = mkN "conluvium" ; -- [DAXES] :: muck, decayed matter; refuse/sewage; pig-swill; filth; dregs; cesspool/mire; conmemorabilis_A = mkA "conmemorabilis" "conmemorabilis" "conmemorabile" ; -- [XXXES] :: memorable, remarkable, worth mentioning; conmemoramentum_N_N = mkN "conmemoramentum" ; -- [XXXFO] :: reminder; mention; mentioning; - conmemoratio_F_N = mkN "conmemoratio" "conmemorationis " feminine ; -- [XXXCO] :: remembrance/commemoration; observance (law); memory; mention/citation/reference; - conmemorator_M_N = mkN "conmemorator" "conmemoratoris " masculine ; -- [DXXFS] :: commemorator, one who mentions/recalls a thing; + conmemoratio_F_N = mkN "conmemoratio" "conmemorationis" feminine ; -- [XXXCO] :: remembrance/commemoration; observance (law); memory; mention/citation/reference; + conmemorator_M_N = mkN "conmemorator" "conmemoratoris" masculine ; -- [DXXFS] :: commemorator, one who mentions/recalls a thing; conmemoratorium_N_N = mkN "conmemoratorium" ; -- [DXXFS] :: means of remembrance; conmemoro_V2 = mkV2 (mkV "conmemorare") ; -- [XXXBO] :: recall (to self/other); keep in mind, remember; mention/relate; place on record; - conmensalis_M_N = mkN "conmensalis" "conmensalis " masculine ; -- [FXXFE] :: table commpanion; + conmensalis_M_N = mkN "conmensalis" "conmensalis" masculine ; -- [FXXFE] :: table commpanion; conmercium_N_N = mkN "conmercium" ; -- [XXXAS] :: |exchange, trafficking; goods, military supplies; trade routes; use in common; conmercor_V = mkV "conmercari" ; -- [XXXDO] :: buy, purchase; buy up (L+S); trade/traffic together; 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); + 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; + 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; + 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; 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; + conmunicabilitas_F_N = mkN "conmunicabilitas" "conmunicabilitatis" feminine ; -- [FXXEF] :: communicability; conmunicabiliter_Adv = mkAdv "conmunicabiliter" ; -- [EXXFP] :: in a way capable of being communicated; conmunico_V2 = mkV2 (mkV "conmunicare") ; -- [XXXAS] :: |communicate, discuss, impart; make common cause; take common counsel, consult; 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; + 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; + 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; + 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); + 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; + 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; connubialiter_Adv = mkAdv "connubialiter" ; -- [XXXFS] :: in a conjugal manner, connubially; connubium_N_N = mkN "connubium" ; -- [XXXDS] :: marriage/wedlock; right to marry; act/ceremony of marriage (usu. pl.); connudatus_A = mkA "connudatus" "connudata" "connudatum" ; -- [XXXNS] :: completely/wholly naked/bare; stark naked; - connumeratio_F_N = mkN "connumeratio" "connumerationis " feminine ; -- [DXXES] :: reckoning together; + connumeratio_F_N = mkN "connumeratio" "connumerationis" feminine ; -- [DXXES] :: reckoning together; connumero_V2 = mkV2 (mkV "connumerare") ; -- [XXXEO] :: reckon in, include in counting/the count; number with, reckon among (L+S); conopaeum_N_N = mkN "conopaeum" ; -- [EXXDE] :: canopy; mosquito-net, gauze net; bed provided with a mosquito-net; 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; + 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); conpaedagogius_M_N = mkN "conpaedagogius" ; -- [XXXIS] :: fellow member of a paedagogium (training establishment for slave boys); conpaganus_M_N = mkN "conpaganus" ; -- [XXXIO] :: fellow villager, inhabitant of the same village; - conpages_F_N = mkN "conpages" "conpagis " feminine ; -- [XXXBO] :: action of binding together, fastening; bond, tie; joint; structure, framework; - conpago_F_N = mkN "conpago" "conpaginis " feminine ; -- [XXXCO] :: fact/action of binding together, fastening; structure, framework; + conpages_F_N = mkN "conpages" "conpagis" feminine ; -- [XXXBO] :: action of binding together, fastening; bond, tie; joint; structure, framework; + conpago_F_N = mkN "conpago" "conpaginis" feminine ; -- [XXXCO] :: fact/action of binding together, fastening; structure, framework; conpar_A = mkA "conpar" "conparis"; -- [XXXCO] :: equal, equal to; like, similar, resembling; suitable, matching, corresponding; - conpar_F_N = mkN "conpar" "conparis " feminine ; -- [XXXCO] :: fellow, partner, equal; comrade; husband/wife; pair (of animals also), mate; - conpar_M_N = mkN "conpar" "conparis " masculine ; -- [XXXCO] :: fellow, partner, equal; comrade; husband/wife; pair (of animals also), mate; - conpar_N_N = mkN "conpar" "conparis " neuter ; -- [XGXFO] :: sentence containing clauses of roughly the same number of syllables; + conpar_F_N = mkN "conpar" "conparis" feminine ; -- [XXXCO] :: fellow, partner, equal; comrade; husband/wife; pair (of animals also), mate; + conpar_M_N = mkN "conpar" "conparis" masculine ; -- [XXXCO] :: fellow, partner, equal; comrade; husband/wife; pair (of animals also), mate; + conpar_N_N = mkN "conpar" "conparis" neuter ; -- [XGXFO] :: sentence containing clauses of roughly the same number of syllables; conparabilis_A = mkA "conparabilis" "conparabilis" "conparabile" ; -- [XXXDO] :: similar, comparable; conparate_Adv = mkAdv "conparate" ; -- [XXXFO] :: comparatively; in/by comparison (L+S); conparaticius_A = mkA "conparaticius" "conparaticia" "conparaticium" ; -- [DXXFS] :: similar, comparable; furnished by contribution; - conparatio_F_N = mkN "conparatio" "conparationis " feminine ; -- [XXXAO] :: ||preparation, making ready; procuring, provision; arrangement, settlement; + conparatio_F_N = mkN "conparatio" "conparationis" feminine ; -- [XXXAO] :: ||preparation, making ready; procuring, provision; arrangement, settlement; conparative_Adv = mkAdv "conparative" ; -- [XXXFO] :: in a comparative sense; 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); + 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; + 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; + 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); + 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; + 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; + 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 "conpellere" "conpello" "conpuli" "conpulsus ") ; -- [XXXAO] :: drive together (cattle), round up; force, compel, impel, drive; squeeze; gnash; + conpellatio_F_N = mkN "conpellatio" "conpellationis" feminine ; -- [XGXDO] :: action of addressing/apostrophizing (aside to person)/reproaching, reproof; + 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); + 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); + 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; + 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; conpetentia_F_N = mkN "conpetentia" ; -- [XSXEO] :: correspondence; proportion; symmetry (L+S); meeting, agreement; conjunction; - 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; + 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?); + 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; + 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; @@ -13401,222 +13401,222 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat conpitum_N_N = mkN "conpitum" ; -- [XXXCO] :: cross-roads (usu. pl.), junction; people/shrine at crossroads; point of choice; conplaceo_V = mkV "conplacere" ; -- [XXXCO] :: please, take the fancy of, capture the affections of, be acceptable/agreed to; 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); + 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; + 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; 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; + 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; + 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); + 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; + 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; - conplus_M_N = mkN "conplus" "conpluris " masculine ; -- [XXXCO] :: many/several people/men(pl.), a fair/good number of people; - conplus_N_N = mkN "conplus" "conpluris " neuter ; -- [XXXCO] :: many/several things/items(pl.), a fair/good number of things; + conplus_M_N = mkN "conplus" "conpluris" masculine ; -- [XXXCO] :: many/several people/men(pl.), a fair/good number of people; + 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); + 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; conposite_Adv =mkAdv "conposite" "conpositius" "conpositissime" ; -- [XXXCO] :: in orderly/skillful/well arranged/composed way; deliberately/regularly/properly; conpositicius_A = mkA "conpositicius" "conpositicia" "conpositicium" ; -- [XGXFO] :: compound (words); - conpositio_F_N = mkN "conpositio" "conpositionis " feminine ; -- [XXXBO] :: |agreement, pact; mixture (medicine); composition (music/prose); storing; + conpositio_F_N = mkN "conpositio" "conpositionis" feminine ; -- [XXXBO] :: |agreement, pact; mixture (medicine); composition (music/prose); storing; conposititius_A = mkA "conposititius" "conposititia" "conposititium" ; -- [XGXFS] :: compound (words); conposito_Adv = mkAdv "conposito" ; -- [XXXEO] :: by prearrangement; concertedly; - conpositor_M_N = mkN "conpositor" "conpositoris " masculine ; -- [XDXEO] :: writer, composer; orderer, arranger, disposer, maker (L+S); + 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; 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; 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); 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; + 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; + 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; + 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; + 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; + 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; + 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; + 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; + 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; + 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; 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; + 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); 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; + 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); + 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); + conreptio_F_N = mkN "conreptio" "conreptionis" feminine ; -- [XXXCO] :: seizure/attack, onset (disease); rebuking/censure; shorting/decrease (in vowel); conrepto_V = mkV "conreptare" ; -- [DXXCS] :: creep; - conreptor_M_N = mkN "conreptor" "conreptoris " masculine ; -- [DXXES] :: reprover, censurer, corrector; + conreptor_M_N = mkN "conreptor" "conreptoris" masculine ; -- [DXXES] :: reprover, censurer, corrector; conreptus_A = mkA "conreptus" "conrepta" "conreptum" ; -- [XGXEO] :: short; (of a syllable); conresupinatus_A = mkA "conresupinatus" "conresupinata" "conresupinatum" ; -- [DXXFS] :: bent backwards at the same time; conresuscito_V2 = mkV2 (mkV "conresuscitare") ; -- [DEXES] :: raise up/from the dead together; 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; + 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; + 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; conruda_F_N = mkN "conruda" ; -- [XAXEO] :: wild asparagus; 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; + 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; + 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 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; + 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; conruptivus_A = mkA "conruptivus" "conruptiva" "conruptivum" ; -- [DEXFS] :: corruptible; perishable; - conruptor_M_N = mkN "conruptor" "conruptoris " masculine ; -- [XXXDX] :: corruptor, briber; seducer, ravisher; one who ruins/spoils/spreads infection; + conruptor_M_N = mkN "conruptor" "conruptoris" masculine ; -- [XXXDX] :: corruptor, briber; seducer, ravisher; one who ruins/spoils/spreads infection; conruptorius_A = mkA "conruptorius" "conruptoria" "conruptorium" ; -- [DXXFS] :: destructible; corruptible, perishable; conruptrix_A = mkA "conruptrix" "conruptricis"; -- [XXXFO] :: tending to deprave/corrupt, corruptive; - conruptrix_F_N = mkN "conruptrix" "conruptricis " feminine ; -- [DXXES] :: she who corrupts/seduces; + conruptrix_F_N = mkN "conruptrix" "conruptricis" feminine ; -- [DXXES] :: she who corrupts/seduces; conruptum_N_N = mkN "conruptum" ; -- [XBXFS] :: corrupted parts (pl.) (of the body); 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; - 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; + 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; consacraneus_M_N = mkN "consacraneus" ; -- [XLXIO] :: one united/bound by the same (military) oath; - 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; + 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; 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; + 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); + 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); + 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); + 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; + 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); 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; + 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; - conscindo_V2 = mkV2 (mkV "conscindere" "conscindo" "conscidi" "conscissus ") ; -- [XXXCO] :: rend/tear to pieces, destroy by tearing; slaughter, cut to pieces; + 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; + 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; + 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; + 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; + consecratrix_F_N = mkN "consecratrix" "consecratricis" feminine ; -- [DEXFS] :: she who consecrates/dedicates/makes 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; @@ -13624,105 +13624,105 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat consectaneus_M_N = mkN "consectaneus" ; -- [DXXES] :: adherent, follower; one following eagerly after/hanging upon; consectarium_N_N = mkN "consectarium" ; -- [XGXFO] :: conclusions (pl.); inferences; consectarius_A = mkA "consectarius" "consectaria" "consectarium" ; -- [XGXEO] :: conclusive; effecting proof (syllogism); following logically, consequent (L+S); - consectatio_F_N = mkN "consectatio" "consectationis " feminine ; -- [XXXEO] :: striving, striving after, (eager) pursuit; - consectator_M_N = mkN "consectator" "consectatoris " masculine ; -- [DXXFS] :: one who pursues/strives after; adherent, friend; - consectatrix_F_N = mkN "consectatrix" "consectatricis " feminine ; -- [XXXFO] :: one who pursues/strives after; adherent, friend; - consectio_F_N = mkN "consectio" "consectionis " feminine ; -- [XXXFO] :: cutting/cleaving up/to pieces; + consectatio_F_N = mkN "consectatio" "consectationis" feminine ; -- [XXXEO] :: striving, striving after, (eager) pursuit; + consectator_M_N = mkN "consectator" "consectatoris" masculine ; -- [DXXFS] :: one who pursues/strives after; adherent, friend; + consectatrix_F_N = mkN "consectatrix" "consectatricis" feminine ; -- [XXXFO] :: one who pursues/strives after; adherent, friend; + consectio_F_N = mkN "consectio" "consectionis" feminine ; -- [XXXFO] :: cutting/cleaving up/to pieces; consector_V = mkV "consectari" ; -- [XXXBO] :: |hunt down, overtake, seek out (to destroy); attack/inveigh against; persecute; consecue_Adv = mkAdv "consecue" ; -- [XXXFO] :: consequently; consecutively?; - consecutio_F_N = mkN "consecutio" "consecutionis " feminine ; -- [XXXCO] :: |investigation of consequences/effects; acquiring/obtaining (L+S); attainment; - consedo_M_N = mkN "consedo" "consedonis " masculine ; -- [XLXFO] :: assessor?; one who sits by (to advise?); + consecutio_F_N = mkN "consecutio" "consecutionis" feminine ; -- [XXXCO] :: |investigation of consequences/effects; acquiring/obtaining (L+S); attainment; + consedo_M_N = mkN "consedo" "consedonis" masculine ; -- [XLXFO] :: assessor?; one who sits by (to advise?); consedo_V2 = mkV2 (mkV "consedare") ; -- [XXXFO] :: stop, check, allay; still, quiet (L+S); 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; + 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; consensus_A = mkA "consensus" "consensa" "consensum" ; -- [DXXFS] :: agreed upon; - consensus_M_N = mkN "consensus" "consensus " masculine ; -- [XXXBO] :: |general consensus; custom; combined action; [concensu => by general consent]; + consensus_M_N = mkN "consensus" "consensus" masculine ; -- [XXXBO] :: |general consensus; custom; combined action; [concensu => by general consent]; 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; + 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; + 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; + conseptus_M_N = mkN "conseptus" "conseptus" masculine ; -- [XXXES] :: hedging in; fencing around; constraining; conseque_Adv = mkAdv "conseque" ; -- [XXXFO] :: consequently; consecutively?; consequens_A = mkA "consequens" "consequentis"; -- [XXXBO] :: subsequent/later; as a logical consequence; reasonable/consistent; analogous; - consequens_N_N = mkN "consequens" "consequentis " neuter ; -- [XXXCS] :: (logical) consequence; analogy?; (strange form, Cicero uses as neuter); + consequens_N_N = mkN "consequens" "consequentis" neuter ; -- [XXXCS] :: (logical) consequence; analogy?; (strange form, Cicero uses as neuter); consequenter_Adv = mkAdv "consequenter" ; -- [XXXCO] :: consequently/as a result; appropriate/aptly; in accordance with/agreeable to; consequentia_F_N = mkN "consequentia" ; -- [XXXCO] :: logical consequence; succession/sequence/progression (of events); analogy; 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; + 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; + 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; + consertio_F_N = mkN "consertio" "consertionis" feminine ; -- [DXXFS] :: joining together; conserva_F_N = mkN "conserva" ; -- [BXXCO] :: fellow-slave (female); (sometimes informal wife); conservabilis_A = mkA "conservabilis" "conservabilis" "conservabile" ; -- [DXXES] :: that can be preserved; conservans_A = mkA "conservans" "conservantis"; -- [XXXFS] :: preservative (w/GEN); - conservatio_F_N = mkN "conservatio" "conservationis " feminine ; -- [XXXCO] :: preservation, conservation, keeping (intact); observance/maintenance (duty); + conservatio_F_N = mkN "conservatio" "conservationis" feminine ; -- [XXXCO] :: preservation, conservation, keeping (intact); observance/maintenance (duty); conservativismus_M_N = mkN "conservativismus" ; -- [GXXEK] :: conservatism; conservativus_A = mkA "conservativus" "conservativa" "conservativum" ; -- [GXXEK] :: conservative (politics); - conservator_M_N = mkN "conservator" "conservatoris " masculine ; -- [XXXCO] :: keeper, one who preserves; defender; savior; worshiper (late) (L+S); + conservator_M_N = mkN "conservator" "conservatoris" masculine ; -- [XXXCO] :: keeper, one who preserves; defender; savior; worshiper (late) (L+S); conservatorium_N_N = mkN "conservatorium" ; -- [EAXCT] :: greenhouse; - conservatrix_F_N = mkN "conservatrix" "conservatricis " feminine ; -- [XXXDO] :: keeper (female), one who preserves/defends; protectress; + conservatrix_F_N = mkN "conservatrix" "conservatricis" feminine ; -- [XXXDO] :: keeper (female), one who preserves/defends; protectress; conservitium_N_N = mkN "conservitium" ; -- [BXXES] :: joint servitude/slavery; the fellow-slaves (late); conservo_V = mkV "conservare" ; -- [XXXBO] :: keep safe/intact, save (from danger); preserve, maintain; spare; keep/observe; conservula_F_N = mkN "conservula" ; -- [XXXFS] :: small fellow-slave (female); conservus_M_N = mkN "conservus" ; -- [XXXCO] :: fellow-slave; companion in servitude (L+S); - consessor_M_N = mkN "consessor" "consessoris " masculine ; -- [XXXCO] :: companion, one who sits near (at assembly/gathering); fellow juror; assessor; - consessus_M_N = mkN "consessus" "consessus " masculine ; -- [XXXCO] :: assembly/gathering/meeting; audience; court; the right to a place, seat; + consessor_M_N = mkN "consessor" "consessoris" masculine ; -- [XXXCO] :: companion, one who sits near (at assembly/gathering); fellow juror; assessor; + consessus_M_N = mkN "consessus" "consessus" masculine ; -- [XXXCO] :: assembly/gathering/meeting; audience; court; the right to a place, seat; consideranter_Adv =mkAdv "consideranter" "considerantius" "considerantissime" ; -- [XXXDS] :: carefully, with consideration; in a deliberate considerate manner (L+S); considerantia_F_N = mkN "considerantia" ; -- [XXXFO] :: consideration, reflection, due thought; 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; + 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; 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; + 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; + 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; + 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; + 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; - consiliator_M_N = mkN "consiliator" "consiliatoris " masculine ; -- [XXXDO] :: counselor, adviser; sharer in the counsels (of); epithet of Jupiter (L+S); - 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); + consiliator_M_N = mkN "consiliator" "consiliatoris" masculine ; -- [XXXDO] :: counselor, adviser; sharer in the counsels (of); epithet of Jupiter (L+S); + 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; 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); + 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; + 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; + 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); consistorium_N_N = mkN "consistorium" ; -- [EEXEE] :: |consistory, (ecclesiastical) assembly/court; Cardinals presided over by Pope; - consitor_M_N = mkN "consitor" "consitoris " masculine ; -- [XAXEO] :: sower, planter; + consitor_M_N = mkN "consitor" "consitoris" masculine ; -- [XAXEO] :: sower, planter; consitura_F_N = mkN "consitura" ; -- [XAXFO] :: planting/sowing of land; consitus_A = mkA "consitus" "consita" "consitum" ; -- [XXXIO] :: laid to rest (in a tomb), "planted"; consobrina_F_N = mkN "consobrina" ; -- [XXXEO] :: first cousin (female); (on mother's side); children of sisters (L+S); relation; @@ -13731,23 +13731,23 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat consocia_F_N = mkN "consocia" ; -- [DXXFS] :: companion (female); consort; 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; + consociatio_F_N = mkN "consociatio" "consociationis" feminine ; -- [XXXEO] :: association, union; associating, uniting; 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); - consocrus_F_N = mkN "consocrus" "consocrus " feminine ; -- [XXXES] :: one's child's mother-in-law; one of two joint mothers-in-law (L+S); - consol_M_N = mkN "consol" "consolis " masculine ; -- [BLXIS] :: consul (highest elected Roman official - 2/year); supreme magistrate elsewhere; + consocrus_F_N = mkN "consocrus" "consocrus" feminine ; -- [XXXES] :: one's child's mother-in-law; one of two joint mothers-in-law (L+S); + consol_M_N = mkN "consol" "consolis" masculine ; -- [BLXIS] :: consul (highest elected Roman official - 2/year); supreme magistrate elsewhere; consolabilis_A = mkA "consolabilis" "consolabilis" "consolabile" ; -- [XXXEO] :: consolable, admitting of consolation; consolatory, bringing consolation; - consolamen_N_N = mkN "consolamen" "consolaminis " neuter ; -- [DXXFS] :: consolation; - consolatio_F_N = mkN "consolatio" "consolationis " feminine ; -- [DXXES] :: |confirming; establishing of ownership; + consolamen_N_N = mkN "consolamen" "consolaminis" neuter ; -- [DXXFS] :: consolation; + consolatio_F_N = mkN "consolatio" "consolationis" feminine ; -- [DXXES] :: |confirming; establishing of ownership; consolativus_A = mkA "consolativus" "consolativa" "consolativum" ; -- [DXXFS] :: comforting; consolatory; - consolator_M_N = mkN "consolator" "consolatoris " masculine ; -- [XXXEO] :: comforter, consoler; one who comforts/consoles; + consolator_M_N = mkN "consolator" "consolatoris" masculine ; -- [XXXEO] :: comforter, consoler; one who comforts/consoles; consolatorie_Adv = mkAdv "consolatorie" ; -- [DXXFS] :: in a consolatory/comforting manner; consolatorius_A = mkA "consolatorius" "consolatoria" "consolatorium" ; -- [XXXEO] :: consolatory, consoling; [~ literae => letters of consolation]; consolida_F_N = mkN "consolida" ; -- [DAXFS] :: plant; black briony, comfrey; (also called conferva); - consolidatio_F_N = mkN "consolidatio" "consolidationis " feminine ; -- [XLXFO] :: merging of usufruct (temporary use/possession) in property, consolidation; - consolidator_M_N = mkN "consolidator" "consolidatoris " masculine ; -- [DXXFS] :: confirmer; fortifier; + consolidatio_F_N = mkN "consolidatio" "consolidationis" feminine ; -- [XLXFO] :: merging of usufruct (temporary use/possession) in property, consolidation; + consolidator_M_N = mkN "consolidator" "consolidatoris" masculine ; -- [DXXFS] :: confirmer; fortifier; consolido_V2 = mkV2 (mkV "consolidare") ; -- [XXXEO] :: solidify, make solid/thick; merge (usufruct) attached property, consolidate; consolo_V2 = mkV2 (mkV "consolare") ; -- [XXXDO] :: console, cheer, comfort; (PASS) console oneself, take comfort; consolor_V = mkV "consolari" ; -- [XXXCO] :: console, (be source of) comfort/solace; soothe; alleviate/allay/assuage (grief); @@ -13756,30 +13756,30 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat consomnio_V2 = mkV2 (mkV "consomniare") ; -- [BXXFS] :: dream of; consona_F_N = mkN "consona" ; -- [DGXES] :: consonant; (letter not a vowel); consonans_A = mkA "consonans" "consonantis"; -- [XXXDO] :: agreeing; sounding in accord; fitting, suitable, appropriate; - consonans_F_N = mkN "consonans" "consonantis " feminine ; -- [XGXEO] :: consonant; (letter not a vowel); + consonans_F_N = mkN "consonans" "consonantis" feminine ; -- [XGXEO] :: consonant; (letter not a vowel); consonanter_Adv =mkAdv "consonanter" "consonantius" "consonantissime" ; -- [XXXFO] :: concordantly; in concord/agreement; agreeably (L+S); consonantly, harmoniously; consonantia_F_N = mkN "consonantia" ; -- [XDXEO] :: concord, consonance (music); harmony (of spoken sounds); agreement (L+S); - consonatio_F_N = mkN "consonatio" "consonationis " feminine ; -- [DXXFS] :: resemblance of sound; + consonatio_F_N = mkN "consonatio" "consonationis" feminine ; -- [DXXFS] :: resemblance of sound; 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; + 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 + 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; + 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; + 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); + 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); 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; + 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; conspiciendus_A = mkA "conspiciendus" "conspicienda" "conspiciendum" ; -- [XXXCO] :: conspicuous, attracting attention; worth seeing/attention (L+S); distinguished; @@ -13787,17 +13787,17 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat conspicientia_F_N = mkN "conspicientia" ; -- [DXXFS] :: faculty of considering; 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; + 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; - conspiratio_F_N = mkN "conspiratio" "conspirationis " feminine ; -- [XXXCS] :: |concord/harmony/unanimity/agreement in feeling/opinion; conspirator; + conspiratio_F_N = mkN "conspiratio" "conspirationis" feminine ; -- [XXXCS] :: |concord/harmony/unanimity/agreement in feeling/opinion; conspirator; conspiratus_A = mkA "conspiratus" "conspirata" "conspiratum" ; -- [XXXFS] :: having conspired/agreed, having entered into a conspiracy; acting in concert; - conspiratus_M_N = mkN "conspiratus" "conspiratus " masculine ; -- [XDXFO] :: sounding together (of musical instruments); agreement (L+S); harmony; + conspiratus_M_N = mkN "conspiratus" "conspiratus" masculine ; -- [XDXFO] :: sounding together (of musical instruments); agreement (L+S); harmony; conspiro_V = mkV "conspirare" ; -- [XXXBO] :: plot/conspire/unite; sound/act in unison/harmony/accord; blow together (horns); conspiro_V2 = mkV2 (mkV "conspirare") ; -- [DXXFS] :: coil up; - conspissatio_F_N = mkN "conspissatio" "conspissationis " feminine ; -- [DXXFS] :: thickening, condensing; pressing together; accumulation; + 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; @@ -13805,37 +13805,37 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat conspolium_N_N = mkN "conspolium" ; -- [DXXFS] :: kind of sacrificial fruit cake; conspondeo_V = mkV "conspondere" ; -- [XXXDO] :: exchange pledges; engage/promise mutually (L+S); consponsata_F_N = mkN "consponsata" ; -- [DXXFS] :: bride; betrothed, fiance, intended; - consponsor_M_N = mkN "consponsor" "consponsoris " masculine ; -- [XXXEO] :: joint surety; one who takes a joint/mutual oath; who obligates himself (L+S); + 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; + 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); - conss_N = constN "conss." masculine ; -- [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); + 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; constanter_Adv =mkAdv "constanter" "constantius" "constantissime" ; -- [XXXBO] :: |evenly, uniformly, regularly; calmly; continually, persistently; consistently; constantia_F_N = mkN "constantia" ; -- [XXXBO] :: |steadiness, regularity, consistency; constancy; resistance to change; constat_V0 = mkV0 "constat" ; -- [XXXCQ] :: it is agreed/evident/understood/correct/well known (everyone knows/agrees); - constellatio_F_N = mkN "constellatio" "constellationis " feminine ; -- [DSXDS] :: constellation; group of stars supposed to influence human affairs; + constellatio_F_N = mkN "constellatio" "constellationis" feminine ; -- [DSXDS] :: constellation; group of stars supposed to influence human affairs; 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; + 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 "consternere" "consterno" "constravi" "constratus ") ; -- [XXXBO] :: strew/cover/spread (rugs); cover/lay/pave/line; bring down, lay low; calm (sea); + 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; + 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; + 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; - constitutor_M_N = mkN "constitutor" "constitutoris " masculine ; -- [XXXEO] :: founder, one who establishes; orderer, arranger (L+S); + constitutor_M_N = mkN "constitutor" "constitutoris" masculine ; -- [XXXEO] :: founder, one who establishes; orderer, arranger (L+S); constitutorius_A = mkA "constitutorius" "constitutoria" "constitutorium" ; -- [XLXFO] :: relating to a constitutum (agreement to pay/agreed price); constitutum_N_N = mkN "constitutum" ; -- [XLXCO] :: |agreed price; decree, ordinance, law; order/conventional rule (architecture); constitutus_A = mkA "constitutus" "constituta" "constitutum" ; -- [XXXCO] :: constituted/disposed, endowed with a nature; ordered/arranged/appointed; being; @@ -13843,155 +13843,155 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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; + 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; 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; + 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; + 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; consuadeo_V2 = mkV2 (mkV "consuadere") ; -- [XXXEO] :: advocate, recommend/advise strongly; try to persuade (w/DAT); - consuasor_M_N = mkN "consuasor" "consuasoris " masculine ; -- [XXXFO] :: advisor, counselor; one who recommends/advocates/counsels; + 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; + 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; + 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; + 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; + 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; + 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; + consuetudo_F_N = mkN "consuetudo" "consuetudinis" feminine ; -- [XXXAO] :: |experience; empirical knowledge; sexual/illicit intercourse, intimacy, affair; 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); + 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; - consularitas_F_N = mkN "consularitas" "consularitatis " feminine ; -- [DLXES] :: office/dignity of consul or imperial governor; + consularitas_F_N = mkN "consularitas" "consularitatis" feminine ; -- [DLXES] :: office/dignity of consul or imperial governor; 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); + 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; consultatum_N_N = mkN "consultatum" ; -- [XXXFS] :: resolution, decision; deliberations (pl.) (OLD); consulte_Adv =mkAdv "consulte" "consultius" "consultissime" ; -- [XXXDO] :: prudently, with due deliberation; advisedly; deliberately, on purpose; consultivus_A = mkA "consultivus" "consultiva" "consultivum" ; -- [EXXFE] :: consultive, consultative; consulto_Adv = mkAdv "consulto" ; -- [XXXCO] :: purposely, deliberately, on purpose, by design; of set purpose; consulto_V = mkV "consultare" ; -- [XXXBO] :: |deliberate, debate, discuss; consider carefully, weigh, ponder; - consultor_M_N = mkN "consultor" "consultoris " masculine ; -- [XLXCO] :: adviser, counselor, one who gives counsel; client/one who asks (lawyer/oracle); + consultor_M_N = mkN "consultor" "consultoris" masculine ; -- [XLXCO] :: adviser, counselor, one who gives counsel; client/one who asks (lawyer/oracle); 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); + 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; 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]; + 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; + 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; 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; + 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; + 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); + 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; + 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); + 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; - contactus_M_N = mkN "contactus" "contactus " masculine ; -- [XXXCO] :: touch, contact; contagion, infection, pollution; (personal/logical) association; - contages_F_N = mkN "contages" "contagis " feminine ; -- [XXXEO] :: contact, touch; infection, contagion; - contagio_F_N = mkN "contagio" "contagionis " feminine ; -- [XXXCO] :: contact/touch (to contagion/infection); social contact/intercourse; influence; + contactus_M_N = mkN "contactus" "contactus" masculine ; -- [XXXCO] :: touch, contact; contagion, infection, pollution; (personal/logical) association; + contages_F_N = mkN "contages" "contagis" feminine ; -- [XXXEO] :: contact, touch; infection, contagion; + contagio_F_N = mkN "contagio" "contagionis" feminine ; -- [XXXCO] :: contact/touch (to contagion/infection); social contact/intercourse; influence; contagiosus_A = mkA "contagiosus" "contagiosa" "contagiosum" ; -- [DBXES] :: contagious; infectious; contagium_N_N = mkN "contagium" ; -- [XXXCO] :: action/fact of touching, contact; contact communicating infection, contagion; - contamen_N_N = mkN "contamen" "contaminis " neuter ; -- [DXXCS] :: action/fact of touching, contact; contact communicating infection, contagion; + contamen_N_N = mkN "contamen" "contaminis" neuter ; -- [DXXCS] :: action/fact of touching, contact; contact communicating infection, contagion; contaminabilus_A = mkA "contaminabilus" "contaminabila" "contaminabilum" ; -- [DEXES] :: that may be polluted/defiled; - contaminatio_F_N = mkN "contaminatio" "contaminationis " feminine ; -- [XEXFO] :: defilement; pollution, contamination; - contaminator_M_N = mkN "contaminator" "contaminatoris " masculine ; -- [DEXES] :: defiler; polluter; + 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.); 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; contarius_M_N = mkN "contarius" ; -- [XWXIO] :: soldier armed with a contus (lance/pike/long spear); pike-bearer; - contatio_F_N = mkN "contatio" "contationis " feminine ; -- [DXXCO] :: delay, hesitation; tardiness, inactivity; hesitating about/delaying of (w/GEN); - contator_M_N = mkN "contator" "contatoris " masculine ; -- [DXXCS] :: delayer/procrastinator; one prone to delay; considerate/cautious person (L+S); + contatio_F_N = mkN "contatio" "contationis" feminine ; -- [DXXCO] :: delay, hesitation; tardiness, inactivity; hesitating about/delaying of (w/GEN); + 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; + 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; + 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; contemplabiliter_Adv = mkAdv "contemplabiliter" ; -- [DXXFS] :: taking aim; contemplabundus_A = mkA "contemplabundus" "contemplabunda" "contemplabundum" ; -- [DXXFS] :: considering/contemplating attentively; - contemplatio_F_N = mkN "contemplatio" "contemplationis " feminine ; -- [XXXCO] :: |taking into consideration (ABL w/GEN); in consideration of, for the sake of; + contemplatio_F_N = mkN "contemplatio" "contemplationis" feminine ; -- [XXXCO] :: |taking into consideration (ABL w/GEN); in consideration of, for the sake of; contemplativus_A = mkA "contemplativus" "contemplativa" "contemplativum" ; -- [XXXFO] :: theoretical, speculative; contemplative; - contemplator_M_N = mkN "contemplator" "contemplatoris " masculine ; -- [XXXEO] :: observer, surveyor; one who observes/studies/examines/ponders/contemplates; - contemplatrix_F_N = mkN "contemplatrix" "contemplatricis " feminine ; -- [DXXES] :: she who observes/studies/ponders/contemplates; - contemplatus_M_N = mkN "contemplatus" "contemplatus " masculine ; -- [XXXFO] :: contemplation, pondering; consideration (L+S); observance; regard, respect; + contemplator_M_N = mkN "contemplator" "contemplatoris" masculine ; -- [XXXEO] :: observer, surveyor; one who observes/studies/examines/ponders/contemplates; + contemplatrix_F_N = mkN "contemplatrix" "contemplatricis" feminine ; -- [DXXES] :: she who observes/studies/ponders/contemplates; + contemplatus_M_N = mkN "contemplatus" "contemplatus" masculine ; -- [XXXFO] :: contemplation, pondering; consideration (L+S); observance; regard, respect; 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; + 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; + 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; contemptibilis_A = mkA "contemptibilis" ; -- [XXXFO] :: contemptible, worthless; - contemptibilitas_F_N = mkN "contemptibilitas" "contemptibilitatis " feminine ; -- [DXXFS] :: contemptibleness; + 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); + 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); 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; + 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; contemtibilis_A = mkA "contemtibilis" ; -- [DXXFS] :: contemptible, worthless; - contemtibilitas_F_N = mkN "contemtibilitas" "contemtibilitatis " feminine ; -- [DXXFS] :: contemptibleness; + 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); + 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); 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; + 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; + 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; @@ -14004,29 +14004,29 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat conterminus_A = mkA "conterminus" "contermina" "conterminum" ; -- [XXXCO] :: close by, neighboring, adjacent, close; bordering on, having a common boundary; conterminus_M_N = mkN "conterminus" ; -- [XXXFO] :: neighbor; 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; + 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; + 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; conterritus_A = mkA "conterritus" "conterrita" "conterritum" ; -- [XXXCE] :: frightened; terrorized; - contesseratio_F_N = mkN "contesseratio" "contesserationis " feminine ; -- [DXXFS] :: contract of friendship with tesserae (token divided between friends as sign); + contesseratio_F_N = mkN "contesseratio" "contesserationis" feminine ; -- [DXXFS] :: contract of friendship with tesserae (token divided between friends as sign); contessero_V = mkV "contesserare" ; -- [DXXFS] :: contract friendship with tesserae (token divided between friends as sign); - contestatio_F_N = mkN "contestatio" "contestationis " feminine ; -- [XLXDS] :: |attesting, proving by witnesses, testimony; conclusive proof; earnest entreaty; + contestatio_F_N = mkN "contestatio" "contestationis" feminine ; -- [XLXDS] :: |attesting, proving by witnesses, testimony; conclusive proof; earnest entreaty; contestatiuncula_F_N = mkN "contestatiuncula" ; -- [DLXFS] :: short speech; contestato_Adv = mkAdv "contestato" ; -- [XXXFO] :: in the presence of witnesses; by aid of witnesses (L+S); contestatus_A = mkA "contestatus" "contestata" "contestatum" ; -- [XXXFO] :: attested; proved; contestificans_A = mkA "contestificans" "contestificantis"; -- [DLXFS] :: attesting at the same time; - contestis_M_N = mkN "contestis" "contestis " masculine ; -- [XLXFE] :: co-witness; + 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 + 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; - contextor_M_N = mkN "contextor" "contextoris " masculine ; -- [DGXFS] :: composer, author, one who puts writing together; + contextio_F_N = mkN "contextio" "contextionis" feminine ; -- [DXXDS] :: joining, putting together; preparing, composing; + contextor_M_N = mkN "contextor" "contextoris" masculine ; -- [DGXFS] :: composer, author, one who puts writing together; contextus_A = mkA "contextus" "contexta" "contextum" ; -- [XXXCO] :: |continuous, uninterrupted, unbroken; covered with a network (of rivers); - contextus_M_N = mkN "contextus" "contextus " masculine ; -- [GXXEK] :: ||context; + 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; @@ -14034,117 +14034,117 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + contificis_M_N = mkN "contificis" "contificis" masculine ; -- [DWXFS] :: spearmen (pl.), lancers; contiger_M_N = mkN "contiger" ; -- [DWXFS] :: lancer, spear-bearer; - contignatio_F_N = mkN "contignatio" "contignationis " feminine ; -- [XXXDO] :: raftering; story, floor; joists and boards erected for roof/upper floor; + contignatio_F_N = mkN "contignatio" "contignationis" feminine ; -- [XXXDO] :: raftering; story, floor; joists and boards erected for roof/upper floor; contigno_V2 = mkV2 (mkV "contignare") ; -- [XXXEO] :: join/furnish with joists/beams; rafter, floor; contignum_N_N = mkN "contignum" ; -- [XXXFS] :: structure of beams; roast/meat with seven ribs; contigue_Adv = mkAdv "contigue" ; -- [DXXFS] :: closely; [w/sequor => follow at/on his heels]; contiguus_A = mkA "contiguus" "contigua" "contiguum" ; -- [XXXCO] :: |touching, contiguous; side by side; closely connected; allied; - continator_M_N = mkN "continator" "continatoris " masculine ; -- [EXXFE] :: demagogue/agitator; haranguer; one who addresses public meetings; preacher; + continator_M_N = mkN "continator" "continatoris" masculine ; -- [EXXFE] :: demagogue/agitator; haranguer; one who addresses public meetings; preacher; continens_A = mkA "continens" "continentis"; -- [XXXAO] :: ||close (in time); linked; continuous, unbroken, uninterrupted; homogeneous; - continens_F_N = mkN "continens" "continentis " feminine ; -- [XXXCO] :: mainland; continent; forming part of a continuous mass; - continens_N_N = mkN "continens" "continentis " neuter ; -- [XXXCO] :: essential point, central argument, hinge, basis; suburbs (pl.), (outside walls); + continens_F_N = mkN "continens" "continentis" feminine ; -- [XXXCO] :: mainland; continent; forming part of a continuous mass; + continens_N_N = mkN "continens" "continentis" neuter ; -- [XXXCO] :: essential point, central argument, hinge, basis; suburbs (pl.), (outside walls); continenter_Adv = mkAdv "continenter" ; -- [XXXCS] :: |in unbroken succession, in a row; w/self-restraint; temperately, moderately; 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; + 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; continuate_Adv = mkAdv "continuate" ; -- [XXXFO] :: continuously, uninterruptedly; continuatim_Adv = mkAdv "continuatim" ; -- [DXXFS] :: continuously, uninterruptedly; - continuatio_F_N = mkN "continuatio" "continuationis " feminine ; -- [FLXEM] :: ||adjournment; continuation; + continuatio_F_N = mkN "continuatio" "continuationis" feminine ; -- [FLXEM] :: ||adjournment; continuation; continuativus_A = mkA "continuativus" "continuativa" "continuativum" ; -- [DGXFS] :: copulative, conjunctive, serving to connect the discourse; - continuator_M_N = mkN "continuator" "continuatoris " masculine ; -- [FXXFM] :: continuer; + continuator_M_N = mkN "continuator" "continuatoris" masculine ; -- [FXXFM] :: continuer; continuatus_A = mkA "continuatus" "continuata" "continuatum" ; -- [XXXCO] :: uninterrupted/unbroken; consecutive; contiguous/adjacent to; permanent (Latham); continue_Adv = mkAdv "continue" ; -- [XXXEO] :: continuously; without interruption; - continuitas_F_N = mkN "continuitas" "continuitatis " feminine ; -- [XXXEO] :: prolongation/continuation/extension; being uninterrupted; series; L:continuance; + continuitas_F_N = mkN "continuitas" "continuitatis" feminine ; -- [XXXEO] :: prolongation/continuation/extension; being uninterrupted; series; L:continuance; continuo_Adv = mkAdv "continuo" ; -- [XXXBO] :: |without further evidence/ado; (w/negative) necessarily, in consequence; continuo_V2 = mkV2 (mkV "continuare") ; -- [FLXEM] :: ||adjourn; continuor_V = mkV "continuari" ; -- [XXXDO] :: encounter, meet with; join, unite oneself to/with (L+S); continuum_N_N = mkN "continuum" ; -- [FSXEM] :: continuum; continuus_A = mkA "continuus" "continua" "continuum" ; -- [XXXBX] :: |continuous, connected/hanging together; uninterrupted; indivisible; lasting; continuus_M_N = mkN "continuus" ; -- [XXXES] :: attendant, one who is always around; - contio_F_N = mkN "contio" "contionis " feminine ; -- [EEXEE] :: |sermon; + contio_F_N = mkN "contio" "contionis" feminine ; -- [EEXEE] :: |sermon; contionabundus_A = mkA "contionabundus" "contionabunda" "contionabundum" ; -- [XLXEO] :: delivering public speech/harangue; proposing something at public assembly (L+S); contionalis_A = mkA "contionalis" "contionalis" "contionale" ; -- [XXXDO] :: of/proper to public assembly/meeting; (disparaging) devoted to meetings; contionarius_A = mkA "contionarius" "contionaria" "contionarium" ; -- [XXXEO] :: of/proper to public assembly/meeting; (disparaging) devoted to meetings; - contionator_M_N = mkN "contionator" "contionatoris " masculine ; -- [XXXFO] :: demagogue/agitator; haranguer; one who addresses public meetings; preacher; + contionator_M_N = mkN "contionator" "contionatoris" masculine ; -- [XXXFO] :: demagogue/agitator; haranguer; one who addresses public meetings; preacher; contionatorius_A = mkA "contionatorius" "contionatoria" "contionatorium" ; -- [EEXEE] :: of sermon; of/proper to public assembly/meeting/gathering of people; contionor_V = mkV "contionari" ; -- [XLXCO] :: address assembly, deliver public speech; preach/harangue; attend public meeting; - contiro_M_N = mkN "contiro" "contironis " masculine ; -- [XWXIO] :: fellow recruit; + contiro_M_N = mkN "contiro" "contironis" masculine ; -- [XWXIO] :: fellow recruit; 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; - contoral_M_N = mkN "contoral" "contoralis " masculine ; -- [FXXFM] :: spouse; + contoral_F_N = mkN "contoral" "contoralis" feminine ; -- [FXXFM] :: spouse; + contoral_M_N = mkN "contoral" "contoralis" masculine ; -- [FXXFM] :: spouse; contorqueo_V2 = mkV2 (mkV "contorquere") ; -- [XXXBO] :: |twist, make twisted/crooked; twirl/whirl, rotate/move in arc; brandish; fling; contorreo_V2 = mkV2 (mkV "contorrere") ; -- [DXXFS] :: dry up entirely; parch, scorch; contorte_Adv =mkAdv "contorte" "contortius" "contortissime" ; -- [XXXEO] :: in an involved/contorted fashion; intricately; perplexedly (L+S); - contortio_F_N = mkN "contortio" "contortionis " feminine ; -- [XXXEO] :: |involving; intricacy/complication; (w/orationis) involved expression; + contortio_F_N = mkN "contortio" "contortionis" feminine ; -- [XXXEO] :: |involving; intricacy/complication; (w/orationis) involved expression; contortiplicatus_A = mkA "contortiplicatus" "contortiplicata" "contortiplicatum" ; -- [XXXFO] :: compounded in an involved fashion; entangled, complicated (L+S); - contortor_M_N = mkN "contortor" "contortoris " masculine ; -- [XXXFO] :: twister, one who perverts; + 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; - contraceptio_F_N = mkN "contraceptio" "contraceptionis " feminine ; -- [GBXEK] :: contraception; + contraceptio_F_N = mkN "contraceptio" "contraceptionis" feminine ; -- [GBXEK] :: contraception; contractabilis_A = mkA "contractabilis" "contractabilis" "contractabile" ; -- [DXXFS] :: that may be felt/handled; contractabiliter_Adv = mkAdv "contractabiliter" ; -- [XXXFO] :: caressingly; so as just to be felt; contracte_Adv =mkAdv "contracte" "contractius" "contractissime" ; -- [XXXFO] :: sparingly, economically, on a restricted/contracted scale; - contractio_F_N = mkN "contractio" "contractionis " feminine ; -- [XXXCO] :: contraction; abridgement; clamp; compression/condensation (of speech/syllable); + contractio_F_N = mkN "contractio" "contractionis" feminine ; -- [XXXCO] :: contraction; abridgement; clamp; compression/condensation (of speech/syllable); contractiuncula_F_N = mkN "contractiuncula" ; -- [XBXFO] :: slight (mental) depression (w/animi); dejection, sadness (L+S); contracto_V2 = mkV2 (mkV "contractare") ; -- [XXXBO] :: |caress/fondle, handle amorously; have sex with; deal with/handle/apply oneself; - contractor_M_N = mkN "contractor" "contractoris " masculine ; -- [DXXES] :: contractor, one who makes a contract; + contractor_M_N = mkN "contractor" "contractoris" masculine ; -- [DXXES] :: contractor, one who makes a contract; contractorium_N_N = mkN "contractorium" ; -- [XXXFS] :: lace; string; contractura_F_N = mkN "contractura" ; -- [XTXEO] :: contracture, narrowing of columns towards the top, tapering; 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; + 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; + 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; + 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; + 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; + 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); contrarie_Adv = mkAdv "contrarie" ; -- [XGXDO] :: in opposite directions; in opposition (to what was said/written); contrariwise; - contrarietas_F_N = mkN "contrarietas" "contrarietatis " feminine ; -- [EXXFP] :: contrast, opposite; opposition, contrariety; misfortune, evil; + contrarietas_F_N = mkN "contrarietas" "contrarietatis" feminine ; -- [EXXFP] :: contrast, opposite; opposition, contrariety; misfortune, evil; contrarior_V = mkV "contrariari" ; -- [FXXEM] :: oppose; contrarium_N_N = mkN "contrarium" ; -- [XGXCS] :: |opposite direction; antithesis; contrast; [ex ~ => on the contrary/other hand]; 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; + 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; contraversus_A = mkA "contraversus" "contraversa" "contraversum" ; -- [DXXES] :: turned opposite; lying over against; contrectabilis_A = mkA "contrectabilis" "contrectabilis" "contrectabile" ; -- [DXXFS] :: that may be felt/handled; contrectabiliter_Adv = mkAdv "contrectabiliter" ; -- [XXXFO] :: caressingly; so as just to be felt; - contrectatio_F_N = mkN "contrectatio" "contrectationis " feminine ; -- [XXXCO] :: touching/handling (action); fondling/caressing; handling with felonious intent; - contrectator_M_N = mkN "contrectator" "contrectatoris " masculine ; -- [XLXFO] :: thief; (who touches/handles with felonious intent, theft/embezzlement); + contrectatio_F_N = mkN "contrectatio" "contrectationis" feminine ; -- [XXXCO] :: touching/handling (action); fondling/caressing; handling with felonious intent; + 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; contremesco_V2 = mkV2 (mkV "contremescere" "contremesco" "contremui" nonExist ) ; -- [XXXCO] :: tremble all over; shake (violently), quake; tremble at/with fear, be afraid of; @@ -14152,18 +14152,18 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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); + 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; + 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); + contritio_F_N = mkN "contritio" "contritionis" feminine ; -- [XXXFO] :: grief, dismay, despondency; grinding (L+S); contritus_A = mkA "contritus" "contrita" "contritum" ; -- [XXXEO] :: trite, hackneyed, worn out; common (L+S); controversia_F_N = mkN "controversia" ; -- [DTXFS] :: |turning against; (turning of water against (w/aqua) (undermining land)); controversialis_A = mkA "controversialis" "controversialis" "controversiale" ; -- [DXXFS] :: controversial; pertaining to controversy; @@ -14173,17 +14173,17 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; + 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; contubernius_M_N = mkN "contubernius" ; -- [XWXIO] :: tent mate, comrade-in-arms; staff trainee; companion; colleague; slave's mate; contueor_V = mkV "contueri" ; -- [XXXCO] :: look at/gaze on/behold; see to; be in sight of, have view of; contemplate/weigh; - contuitus_M_N = mkN "contuitus" "contuitus " masculine ; -- [XXXEO] :: contemplation; gaze; attentive look at (L+S); view/sight; [~u => in view of]; + contuitus_M_N = mkN "contuitus" "contuitus" masculine ; -- [XXXEO] :: contemplation; gaze; attentive look at (L+S); view/sight; [~u => in view of]; contumacia_F_N = mkN "contumacia" ; -- [XXXCO] :: stubbornness/obstinacy; proud/defiant behavior; disobedience to judicial order; contumaciter_Adv =mkAdv "contumaciter" "contumacius" "contumacissime" ; -- [XXXCO] :: stubbornly, obstinately; defiantly; contumax_A = mkA "contumax" "contumacis"; -- [XXXCO] :: |willfully disobedient to decree/summons; not yielding, immovable (things); @@ -14194,170 +14194,170 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; + conturbator_M_N = mkN "conturbator" "conturbatoris" masculine ; -- [XXXDO] :: disturber; who/that which brings/spreads disorder/ruin; bankrupt; 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); + 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); contus_M_N = mkN "contus" ; -- [XWXCO] :: long pole esp. used on ship); lance, pike; - contusio_F_N = mkN "contusio" "contusionis " feminine ; -- [XBXEO] :: bruising; bruise, contusion; crushing, battering (L+S); + contusio_F_N = mkN "contusio" "contusionis" feminine ; -- [XBXEO] :: bruising; bruise, contusion; crushing, battering (L+S); contusum_N_N = mkN "contusum" ; -- [XBXEO] :: bruise, contusion; - contutor_M_N = mkN "contutor" "contutoris " masculine ; -- [XXXEO] :: joint guardian; + contutor_M_N = mkN "contutor" "contutoris" masculine ; -- [XXXEO] :: joint guardian; contutor_V = mkV "contutari" ; -- [DXXES] :: place in safety; - contutus_M_N = mkN "contutus" "contutus " masculine ; -- [XXXEO] :: contemplation; gaze; attentive look at (L+S); view/sight; [~u => in view of]; + contutus_M_N = mkN "contutus" "contutus" masculine ; -- [XXXEO] :: contemplation; gaze; attentive look at (L+S); view/sight; [~u => in view of]; conubialis_A = mkA "conubialis" "conubialis" "conubiale" ; -- [XXXDO] :: of/belonging to marriage/wedlock (or a specific marriage), conjugal/connubial; conubium_N_N = mkN "conubium" ; -- [XXXBS] :: ||married partner/spouse, husband/wife; sexual union; ingrafting (plants); conula_F_N = mkN "conula" ; -- [DAXDO] :: plant (genus Satureia, savory); (also called conila and origanum L+S); conus_M_N = mkN "conus" ; -- [XSXCO] :: cone, conical figure/shape; apex of helmet; form of sundial; pine cone; tenpin; 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; + 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); + 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.); + 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; + 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; + 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); + 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); + 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); - conventio_F_N = mkN "conventio" "conventionis " feminine ; -- [XLXCO] :: |assembly/meeting; suing/prosecuting a defendant; agreement, compact, covenant; + conventio_F_N = mkN "conventio" "conventionis" feminine ; -- [XLXCO] :: |assembly/meeting; suing/prosecuting a defendant; agreement, compact, covenant; conventionalis_A = mkA "conventionalis" "conventionalis" "conventionale" ; -- [XLXFO] :: based on an agreement; of/pertaining to agreement/compact (L+S); conventional; conventitium_N_N = mkN "conventitium" ; -- [XLXES] :: fee paid to attend an assembly; (paid to poor Greek citizens as inducement L+S); conventitius_A = mkA "conventitius" "conventitia" "conventitium" ; -- [BXXFS] :: pertaining to coming together or intercourse; coming from various quarters; conventiuncula_F_N = mkN "conventiuncula" ; -- [DLXFS] :: small assembly; conventum_N_N = mkN "conventum" ; -- [XLXCO] :: agreement, compact, covenant; convention, accord (L+S); - conventus_M_N = mkN "conventus" "conventus " masculine ; -- [FEXCB] :: ||convent, monastery; religious community; convention (Ecc); + conventus_M_N = mkN "conventus" "conventus" masculine ; -- [FEXCB] :: ||convent, monastery; religious community; convention (Ecc); convenus_A = mkA "convenus" "convena" "convenum" ; -- [XXXES] :: coming together for some purpose; (strangers); meeting; 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); + 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; + 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; conversibilis_A = mkA "conversibilis" "conversibilis" "conversibile" ; -- [DXXES] :: changeable; conversibiliter_Adv = mkAdv "conversibiliter" ; -- [DXXES] :: changeably; - conversio_F_N = mkN "conversio" "conversionis " feminine ; -- [XXXBO] :: ||turning upside down, inversion, transposition; prolapse; paraphrase/rewrite; + conversio_F_N = mkN "conversio" "conversionis" feminine ; -- [XXXBO] :: ||turning upside down, inversion, transposition; prolapse; paraphrase/rewrite; conversiuncula_F_N = mkN "conversiuncula" ; -- [DEXFS] :: slight change/alteration; converso_V2 = mkV2 (mkV "conversare") ; -- [XXXEO] :: turn, turn over in the mind, ponder; turn around (L+S); conversom_Adv = mkAdv "conversom" ; -- [DXXES] :: conversely; conversor_V = mkV "conversari" ; -- [XXXCS] :: |abide, live, dwell (somewhere); keep company with; live with; pass one's life; conversus_A = mkA "conversus" "conversa" "conversum" ; -- [XXXDO] :: upside down; inverted; turned backward; recurved; facing in specified direction; - conversus_M_N = mkN "conversus" "conversus " masculine ; -- [DXXFS] :: turning, twisting around; + 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; + 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; + 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); + 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); convexo_V2 = mkV2 (mkV "convexare") ; -- [XXXFO] :: jostle, push against; press/squeeze together (L+S); convexum_N_N = mkN "convexum" ; -- [XTXCO] :: arch, vault; dome; dome of the sky; concavity (L+S); (usu. pl.); convexus_A = mkA "convexus" "convexa" "convexum" ; -- [XXXCS] :: |inclined, sloping downwards; concave; convibro_V = mkV "convibrare" ; -- [XXXEO] :: move rapidly, flash; set in rapid motion; move something quickly/rapidly; convicanus_M_N = mkN "convicanus" ; -- [EXXFE] :: fellow villager; - conviciator_M_N = mkN "conviciator" "conviciatoris " masculine ; -- [XXXFO] :: one who utters abuse, reviler; + conviciator_M_N = mkN "conviciator" "conviciatoris" masculine ; -- [XXXFO] :: one who utters abuse, reviler; convicinus_A = mkA "convicinus" "convicina" "convicinum" ; -- [FXXEM] :: neighboring; conviciolum_N_N = mkN "conviciolum" ; -- [DXXFS] :: slight reproach; taunt; convicior_V = mkV "conviciari" ; -- [XXXCO] :: scold/jeer/revile/insult, utter abuse against; reproach, taunt, rail at (L+S); convicium_N_N = mkN "convicium" ; -- [XXXBO] :: |reprimand/reproach/reproof; abuse/jeers/mockery/insults; object of shame; - convictio_F_N = mkN "convictio" "convictionis " feminine ; -- [DEXFS] :: demonstration, proof; - 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; + convictio_F_N = mkN "convictio" "convictionis" feminine ; -- [DEXFS] :: demonstration, proof; + 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; + 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; + 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; convitium_N_N = mkN "convitium" ; -- [XXXBO] :: |reprimand/reproach/reproof; abuse/jeers/mockery/insults; object of shame; conviva_C_N = mkN "conviva" ; -- [XXXBO] :: guest, table companion; (literally one who lives with another); convivalis_A = mkA "convivalis" "convivalis" "convivale" ; -- [XXXCO] :: convivial, festal, party; of/proper to a feast/dinner party; - convivans_M_N = mkN "convivans" "convivantis " masculine ; -- [FXXEE] :: banqueters (pl.); - convivator_M_N = mkN "convivator" "convivatoris " masculine ; -- [XXXEO] :: host; one who gives a dinner party/entertainment; master of feast (L+S); + convivans_M_N = mkN "convivans" "convivantis" masculine ; -- [FXXEE] :: banqueters (pl.); + convivator_M_N = mkN "convivator" "convivatoris" masculine ; -- [XXXEO] :: host; one who gives a dinner party/entertainment; master of feast (L+S); 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 "convivere" "convivo" "convixi" "convictus "; -- [XXXCO] :: live at same time, be contemporary; spend time in company; live/dine together; + 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; + 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); convolnero_V2 = mkV2 (mkV "convolnerare") ; -- [XXXCO] :: wound/inflict severe wounds (person/body part); cut; bore, perforate (pipe); convolo_V = mkV "convolare" ; -- [XXXCO] :: fly/flock together; run together; assemble rapidly; have recourse to (w/ad); - convolsio_F_N = mkN "convolsio" "convolsionis " feminine ; -- [XBXEO] :: dislocation, violent displacement of body part; cramp, convulsion (L+S); + convolsio_F_N = mkN "convolsio" "convolsionis" feminine ; -- [XBXEO] :: dislocation, violent displacement of body part; cramp, convulsion (L+S); convolsum_N_N = mkN "convolsum" ; -- [XBXNO] :: dislocations (pl.); wrenches; 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; + 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); + 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); + 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); - convulsio_F_N = mkN "convulsio" "convulsionis " feminine ; -- [XBXEO] :: dislocation, violent displacement of body part; cramp, convulsion (L+S); + convulsio_F_N = mkN "convulsio" "convulsionis" feminine ; -- [XBXEO] :: dislocation, violent displacement of body part; cramp, convulsion (L+S); convulsum_N_N = mkN "convulsum" ; -- [XBXNO] :: dislocations (pl.); wrenches; convulsus_A = mkA "convulsus" "convulsa" "convulsum" ; -- [XBXES] :: suffering from wrenching/dislocation of a limb; conyza_F_N = mkN "conyza" ; -- [XAXNO] :: strong-smelling composite plant (Inula viscosa and related species); fleabane; coodibilis_A = mkA "coodibilis" "coodibilis" "coodibile" ; -- [DEXES] :: exceedingly/extremely hateful, detestable; - cooperatio_F_N = mkN "cooperatio" "cooperationis " feminine ; -- [DXXES] :: co-operation; joint operation; + cooperatio_F_N = mkN "cooperatio" "cooperationis" feminine ; -- [DXXES] :: co-operation; joint operation; cooperativus_A = mkA "cooperativus" "cooperativa" "cooperativum" ; -- [FXXEE] :: cooperative; - cooperator_M_N = mkN "cooperator" "cooperatoris " masculine ; -- [DEXDS] :: joint-laborer, co-operator; coworker, fellow helper (Ecc); assistant; - cooperatrix_F_N = mkN "cooperatrix" "cooperatricis " feminine ; -- [EEXEE] :: joint-laborer (female), co-operator; coworker, fellow helper (Ecc); assistant; + cooperator_M_N = mkN "cooperator" "cooperatoris" masculine ; -- [DEXDS] :: joint-laborer, co-operator; coworker, fellow helper (Ecc); assistant; + 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; + 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); coopertus_A = mkA "coopertus" "cooperta" "coopertum" ; -- [XXXCO] :: overwhelmed, buried deep (in crime/misfortune/etc.); - cooptatio_F_N = mkN "cooptatio" "cooptationis " feminine ; -- [XLXDO] :: co-option (into office or body); adoption; election, choice (L+S); confirmation; + cooptatio_F_N = mkN "cooptatio" "cooptationis" feminine ; -- [XLXDO] :: co-option (into office or body); adoption; election, choice (L+S); confirmation; coopto_V2 = mkV2 (mkV "cooptare") ; -- [XXXCO] :: choose (colleague in office), elect; co-opt, admit; - coordinatio_F_N = mkN "coordinatio" "coordinationis " feminine ; -- [FXXDE] :: coordination, arranging together; + 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); + 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]; + 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.); @@ -14366,35 +14366,35 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat copia_F_N = mkN "copia" ; -- [GXXEK] :: ||copy; copiarius_M_N = mkN "copiarius" ; -- [DXXFS] :: purveyor; copiata_M_N = mkN "copiata" ; -- [DEXEO] :: sexton; grave-digger; - copiates_M_N = mkN "copiates" "copiatae " masculine ; -- [DEXEO] :: sexton; grave-digger; + copiates_M_N = mkN "copiates" "copiatae" masculine ; -- [DEXEO] :: sexton; grave-digger; copiola_F_N = mkN "copiola" ; -- [XWXFO] :: small military forces (pl.); small number of troops (L+S); 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; + copiositas_F_N = mkN "copiositas" "copiositatis" feminine ; -- [FXXDE] :: abundance; 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; + 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; 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); copta_F_N = mkN "copta" ; -- [XXXFO] :: kind of hard-baked cake; cake made with pounded materials (L+S); - coptatio_F_N = mkN "coptatio" "coptationis " feminine ; -- [XLXDO] :: co-option (into office or body); adoption; election, choice (L+S); confirmation; + coptatio_F_N = mkN "coptatio" "coptationis" feminine ; -- [XLXDO] :: co-option (into office or body); adoption; election, choice (L+S); confirmation; copto_V2 = mkV2 (mkV "coptare") ; -- [XXXCO] :: choose (colleague in office), elect; co-opt, admit; coptoplancenta_F_N = mkN "coptoplancenta" ; -- [XXXFO] :: kind of hard-baked cake; cake made with pounded materials (L+S); copula_F_N = mkN "copula" ; -- [XXXBO] :: |friendly/close relationship, bond, intimate connection; (used in grammar); copulabilis_A = mkA "copulabilis" "copulabilis" "copulabile" ; -- [DEXFS] :: that can be connected; copulate_Adv = mkAdv "copulate" ; -- [XGXEO] :: as compound word, connectedly; copulatim_Adv = mkAdv "copulatim" ; -- [XXXFS] :: in union; - copulatio_F_N = mkN "copulatio" "copulationis " feminine ; -- [XXXDX] :: connecting, combining, joining, uniting; union, synthesis, association; + copulatio_F_N = mkN "copulatio" "copulationis" feminine ; -- [XXXDX] :: connecting, combining, joining, uniting; union, synthesis, association; copulative_Adv = mkAdv "copulative" ; -- [DXXFS] :: connectedly; copulativus_A = mkA "copulativus" "copulativa" "copulativum" ; -- [DGXDO] :: of/pertaining to connecting, copulative; - copulator_M_N = mkN "copulator" "copulatoris " masculine ; -- [DXXFS] :: connector, binder; - copulatrix_F_N = mkN "copulatrix" "copulatricis " feminine ; -- [DXXFS] :: connector, she who connects/couples; + 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); 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; + 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; coqua_F_N = mkN "coqua" ; -- [XXXFO] :: cook (female); @@ -14407,15 +14407,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat coquinatorius_A = mkA "coquinatorius" "coquinatoria" "coquinatorium" ; -- [XXXFO] :: culinary, used in cooking; pertaining to the kitchen (L+S); coquino_V2 = mkV2 (mkV "coquinare") ; -- [XXXEO] :: cook, prepare food; coquinus_A = mkA "coquinus" "coquina" "coquinum" ; -- [XXXFO] :: of/pertaining to cooks/cooking; [forum ~ => market where cooks were hired]; - coquitatio_F_N = mkN "coquitatio" "coquitationis " feminine ; -- [XXXFO] :: long and thorough process of cooking; continuous cooking (L+S); + 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; + 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); coquus_M_N = mkN "coquus" ; -- [XXXCO] :: cook; - cor_N_N = mkN "cor" "cordis " neuter ; -- [XXXAO] :: heart; mind/soul/spirit; intellect/judgment; sweetheart; souls/persons (pl.); + cor_N_N = mkN "cor" "cordis" neuter ; -- [XXXAO] :: heart; mind/soul/spirit; intellect/judgment; sweetheart; souls/persons (pl.); cora_F_N = mkN "cora" ; -- [DBXFO] :: pupil of the eye; coracesia_F_N = mkN "coracesia" ; -- [XAXNO] :: magical herb; (said to make water freeze L+S); coracicum_N_N = mkN "coracicum" ; -- [DEXIS] :: mysteries of Mithras; @@ -14425,31 +14425,31 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat coracinus_M_N = mkN "coracinus" ; -- [XAXEO] :: fish; one of several dark-colored fish; (usu. Egyptian bolti Tilapia nilotica); coragus_M_N = mkN "coragus" ; -- [XDXCS] :: |he who has care of chorus and supplies; he who pays the cost of a banquet; coralium_N_N = mkN "coralium" ; -- [DXXDS] :: coral; (esp. red coral); - corallachates_F_N = mkN "corallachates" "corallachatae " feminine ; -- [XXXNO] :: precious stone (coral agate); + corallachates_F_N = mkN "corallachates" "corallachatae" feminine ; -- [XXXNO] :: precious stone (coral agate); corallinus_A = mkA "corallinus" "corallina" "corallinum" ; -- [XXXES] :: coral-red; coral-colored; - corallis_F_N = mkN "corallis" "corallidis " feminine ; -- [XXXNO] :: precious stone (unidentified); + corallis_F_N = mkN "corallis" "corallidis" feminine ; -- [XXXNO] :: precious stone (unidentified); coralliticus_A = mkA "coralliticus" "corallitica" "coralliticum" ; -- [XXXEO] :: name given to a white marble; made of this stone (of statues); corallium_N_N = mkN "corallium" ; -- [XXXDO] :: coral; corallius_C_N = mkN "corallius" ; -- [DXXFS] :: coral; - coralloachates_M_N = mkN "coralloachates" "coralloachatae " masculine ; -- [XXXNS] :: precious stone (coral agate); + 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); + 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); + corax_M_N = mkN "corax" "coracis" masculine ; -- [XWXFO] :: kind of siege engine; raven (L+S); hooked war engine; battering ram (corvus); 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); + 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); corbita_F_N = mkN "corbita" ; -- [XWXDO] :: slow-sailing merchant/cargo vessel; shipload (quantity); corbitus_A = mkA "corbitus" "corbita" "corbitum" ; -- [XWXFS] :: with a scuttle; [w/navis => slow sailing cargo ship]; corbona_F_N = mkN "corbona" ; -- [EEQFO] :: corban, treasure chamber of Jerusalem Temple where money offerings are placed; - corbonas_M_N = mkN "corbonas" "corbonae " masculine ; -- [EEQFW] :: corban, treasure chamber of Jerusalem Temple where money offerings are placed; + corbonas_M_N = mkN "corbonas" "corbonae" masculine ; -- [EEQFW] :: corban, treasure chamber of Jerusalem Temple where money offerings are placed; corbula_F_N = mkN "corbula" ; -- [XXXDO] :: basket (small); contents of a small basket; - corcholopis_M_N = mkN "corcholopis" "corcholopis " masculine ; -- [XAXFS] :: ape having tuft of hair at the end of its tail; - corchoros_M_N = mkN "corchoros" "corchori " masculine ; -- [XAXNS] :: edible plant; (prob. jute, Corchorus olitorius); poor wild legume (L+S); + corcholopis_M_N = mkN "corcholopis" "corcholopis" masculine ; -- [XAXFS] :: ape having tuft of hair at the end of its tail; + corchoros_M_N = mkN "corchoros" "corchori" masculine ; -- [XAXNS] :: edible plant; (prob. jute, Corchorus olitorius); poor wild legume (L+S); corchorum_N_N = mkN "corchorum" ; -- [XAXNO] :: edible plant; (prob. jute, Corchorus olitorius); poor wild legume (L+S); corchorus_M_N = mkN "corchorus" ; -- [XAXNO] :: edible plant; (prob. jute, Corchorus olitorius); poor wild legume (L+S); corcillum_N_N = mkN "corcillum" ; -- [XBXFO] :: heart (as the seat of intelligence); brains; savoir-faire; little heart (L+S); @@ -14464,7 +14464,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cordate_Adv = mkAdv "cordate" ; -- [XXXEO] :: sensibly, shrewdly; with intelligence; wisely, with prudence (L+S); 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); + 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); cordicitus_Adv = mkAdv "cordicitus" ; -- [DXXFS] :: from the heart; deep in the heart; cordiger_A = mkA "cordiger" "cordigera" "cordigerum" ; -- [FXXFE] :: wearing a cord; @@ -14475,9 +14475,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat corgo_Adv = mkAdv "corgo" ; -- [AXXFO] :: surely, certainly; coriaceus_A = mkA "coriaceus" "coriacea" "coriaceum" ; -- [DXXES] :: of leather, made of leather; coriaginosus_A = mkA "coriaginosus" "coriaginosa" "coriaginosum" ; -- [DAXFS] :: afflicted with the coriago (skin disease of cattle); - coriago_F_N = mkN "coriago" "coriaginis " feminine ; -- [XAXFO] :: hide-bound condition in cattle; disease of the skin of animals (L+S); + coriago_F_N = mkN "coriago" "coriaginis" feminine ; -- [XAXFO] :: hide-bound condition in cattle; disease of the skin of animals (L+S); coriandratum_N_N = mkN "coriandratum" ; -- [XXXFS] :: coriander-water; - coriandron_N_N = mkN "coriandron" "coriandri " neuter ; -- [XAXES] :: coriander (aromatic herb); + coriandron_N_N = mkN "coriandron" "coriandri" neuter ; -- [XAXES] :: coriander (aromatic herb); coriandrum_N_N = mkN "coriandrum" ; -- [XAXDO] :: coriander (aromatic herb); coriandrus_F_N = mkN "coriandrus" ; -- [XAXES] :: coriander (aromatic herb); coriarius_A = mkA "coriarius" "coriaria" "coriarium" ; -- [XXXEO] :: of/related to leather/the tanning of hides; [frutex ~ => sumac, Rhus coriaria]; @@ -14485,11 +14485,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat coricus_M_N = mkN "coricus" ; -- [XXXFS] :: heavy punching bag; sand-bag; 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; + 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; + coris_F_N = mkN "coris" "coris" feminine ; -- [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; @@ -14498,7 +14498,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + cornicen_M_N = mkN "cornicen" "cornicinis" masculine ; -- [XWXCO] :: trumpeter, bugler; horn blower; cornicor_V = mkV "cornicari" ; -- [XXXEO] :: say in a croaking voice, croak out; caw like a crow (L+S); cornicula_F_N = mkN "cornicula" ; -- [XAXFO] :: crow; little crow (L+S); corniculans_A = mkA "corniculans" "corniculantis"; -- [DXXES] :: horn-shaped; horned; crescent-shaped; (like the new moon); @@ -14513,10 +14513,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat corniger_N_N = mkN "corniger" ; -- [XAXNS] :: horn-bearing/horned animals/cattle (pl.); cornigera_F_N = mkN "cornigera" ; -- [XAXIS] :: hind; doe, female deer (esp. after third year); cornipes_A = mkA "cornipes" "cornipedis"; -- [XAXDO] :: hoofed, horn-footed; - cornipes_M_N = mkN "cornipes" "cornipedis " masculine ; -- [XAXDO] :: hoofed animal; (horse); (centaur); + cornipes_M_N = mkN "cornipes" "cornipedis" masculine ; -- [XAXDO] :: hoofed animal; (horse); (centaur); cornipetus_A = mkA "cornipetus" "cornipeta" "cornipetum" ; -- [EXXFS] :: pushing/goring with horns; - cornix_F_N = mkN "cornix" "cornicis " feminine ; -- [XAXCO] :: crow; (or related bird); (example of longevity); (insulting for old woman); - cornu_N_N = mkN "cornu" "cornus " neuter ; -- [XXXAO] :: horn; hoof; beak/tusk/claw; bow; horn/trumpet; end, wing of army; mountain top; + cornix_F_N = mkN "cornix" "cornicis" feminine ; -- [XAXCO] :: crow; (or related bird); (example of longevity); (insulting for old woman); + cornu_N_N = mkN "cornu" "cornus" neuter ; -- [XXXAO] :: horn; hoof; beak/tusk/claw; bow; horn/trumpet; end, wing of army; mountain top; cornualis_A = mkA "cornualis" "cornualis" "cornuale" ; -- [DXXES] :: of/with/pertaining to horns; cornuarius_M_N = mkN "cornuarius" ; -- [XWXFO] :: maker of bugles/horns/trumpets; cornucopia_F_N = mkN "cornucopia" ; -- [FXXEE] :: cornucopia, symbol/emblem of abundance; (horn-shaped); @@ -14527,11 +14527,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cornum_N_N = mkN "cornum" ; -- [XXXCO] :: horn; hoof; beak/tusk/claw; bow; horn/trumpet; end, wing of army; mountain top; cornupeta_F_N = mkN "cornupeta" ; -- [DXXFE] :: act of pushing/goring with horns; cornupetus_A = mkA "cornupetus" "cornupeta" "cornupetum" ; -- [DXXFS] :: pushing/goring with horns; - cornus_F_N = mkN "cornus" "cornus " feminine ; -- [XXXCO] :: cornel-cherry-tree (Cornus mas); cornel wood; javelin (of cornel wood); + cornus_F_N = mkN "cornus" "cornus" feminine ; -- [XXXCO] :: cornel-cherry-tree (Cornus mas); cornel wood; javelin (of cornel wood); cornuta_F_N = mkN "cornuta" ; -- [XAXEO] :: any horned animal; name of a fish/sea-animal (unidentified); horned syllogism; cornutus_A = mkA "cornutus" "cornuta" "cornutum" ; -- [XXXCO] :: horned; having horns/horn-like appendages; tusked; cornutus_M_N = mkN "cornutus" ; -- [XAXEO] :: ox, bullock; oxen (pl.), bullocks; - corocottas_F_N = mkN "corocottas" "corocottae " feminine ; -- [XAXNO] :: animal (unidentified); + corocottas_F_N = mkN "corocottas" "corocottae" feminine ; -- [XAXNO] :: animal (unidentified); coroliticus_A = mkA "coroliticus" "corolitica" "coroliticum" ; -- [XXXEO] :: name given to a white marble; made of this stone (of statues); corolla_F_N = mkN "corolla" ; -- [XXXCO] :: small garland, small wreath/crown of flowers; corollaria_F_N = mkN "corollaria" ; -- [XXXFO] :: flower girl; (comedy by Naevius); female flower-garlands merchant (L+S); @@ -14539,26 +14539,26 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat corolliticus_A = mkA "corolliticus" "corollitica" "corolliticum" ; -- [XXXEO] :: name given to a white marble; made of this stone (of statues); corona_F_N = mkN "corona" ; -- [XXXAO] :: crown; garland, wreath; halo/ring; circle of men/troops; [sub ~ => as slaves]; coronalis_A = mkA "coronalis" "coronalis" "coronale" ; -- [XXXFO] :: of/associated with a wreath/garland/crown; - coronamen_N_N = mkN "coronamen" "coronaminis " neuter ; -- [XXXFO] :: wreaths collectively, garlandry; wreathing/crowning (L+S); + coronamen_N_N = mkN "coronamen" "coronaminis" neuter ; -- [XXXFO] :: wreaths collectively, garlandry; wreathing/crowning (L+S); coronamentum_N_N = mkN "coronamentum" ; -- [XXXEO] :: flowers (pl.) for making garlands; garland/crown itself (L+S); coronaria_F_N = mkN "coronaria" ; -- [XXXEO] :: woman who makes/sells garlands/wreaths; coronarius_A = mkA "coronarius" "coronaria" "coronarium" ; -- [XXXCO] :: connected with/used for crowns/garlands/wreaths or the manufacture; of cornice; coronarius_M_N = mkN "coronarius" ; -- [XXXEO] :: maker/seller of garlands/wreaths/crowns; - coronatio_F_N = mkN "coronatio" "coronationis " feminine ; -- [DXXEE] :: coronation; - coronator_M_N = mkN "coronator" "coronatoris " masculine ; -- [DXXFS] :: crowner; + coronatio_F_N = mkN "coronatio" "coronationis" feminine ; -- [DXXEE] :: coronation; + coronator_M_N = mkN "coronator" "coronatoris" masculine ; -- [DXXFS] :: crowner; coronatus_A = mkA "coronatus" "coronata" "coronatum" ; -- [XXXCO] :: garlanded, adorned with wreaths; (of persons/animals/buildings); coroneola_F_N = mkN "coroneola" ; -- [XAXNS] :: kind of autumn rose; coroniola_F_N = mkN "coroniola" ; -- [XAXNO] :: kind of autumn rose; - coronis_F_N = mkN "coronis" "coronidis " feminine ; -- [CXXFO] :: colophon, device for marking the end of a book; curved line/flourish at end; + coronis_F_N = mkN "coronis" "coronidis" feminine ; -- [CXXFO] :: colophon, device for marking the end of a book; curved line/flourish at end; corono_V = mkV "coronare" ; -- [XXXBX] :: wreathe, crown, deck with garlands; award prize; surround/encircle, ring round; - coronopus_M_N = mkN "coronopus" "coronopodis " masculine ; -- [XAXNO] :: plant w/toothed leaves, buckthorn plantain (Plantago coronopus); swine's cress; + coronopus_M_N = mkN "coronopus" "coronopodis" masculine ; -- [XAXNO] :: plant w/toothed leaves, buckthorn plantain (Plantago coronopus); swine's cress; coronula_F_N = mkN "coronula" ; -- [DEXDS] :: ornament on mitre; rim/border on base of basin/laver; hair crown at horse hoof; - corporale_N_N = mkN "corporale" "corporalis " neuter ; -- [XXXEE] :: corporal, linen for consecrated elements of mass; ancient eucharistic vestment; + corporale_N_N = mkN "corporale" "corporalis" neuter ; -- [XXXEE] :: corporal, linen for consecrated elements of mass; ancient eucharistic vestment; 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); + 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); + 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; corporatus_A = mkA "corporatus" "corporata" "corporatum" ; -- [GLXEK] :: |corporate-, corporation-, of a corporation; (Cal); @@ -14569,28 +14569,28 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; 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; + 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; + 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); 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; + 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); + 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); + correptio_F_N = mkN "correptio" "correptionis" feminine ; -- [XXXCO] :: seizure/attack, onset (disease); reproof/rebuke/censure; shorting (in vowel); correpto_V = mkV "correptare" ; -- [DXXCS] :: creep; - correptor_M_N = mkN "correptor" "correptoris " masculine ; -- [DXXES] :: reprover, censurer, corrector; + correptor_M_N = mkN "correptor" "correptoris" masculine ; -- [DXXES] :: reprover, censurer, corrector; correptus_A = mkA "correptus" "correpta" "correptum" ; -- [XGXEO] :: short; (of a syllable); - correspondens_M_N = mkN "correspondens" "correspondentis " masculine ; -- [GXXEK] :: correspondent; + correspondens_M_N = mkN "correspondens" "correspondentis" masculine ; -- [GXXEK] :: correspondent; correspondentia_F_N = mkN "correspondentia" ; -- [FXXEM] :: correspondence; mutual agreement; correspondeo_V = mkV "correspondere" ; -- [FXXDM] :: correspond; harmonize; repay; reciprocate; respond to; answer strongly; corresupinatus_A = mkA "corresupinatus" "corresupinata" "corresupinatum" ; -- [DXXFS] :: bent backwards at the same time; @@ -14598,71 +14598,71 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; corrivo_V2 = mkV2 (mkV "corrivare") ; -- [XXXEO] :: lead/channel (water) into the same channel/basin, collect; - corrixatio_F_N = mkN "corrixatio" "corrixationis " feminine ; -- [FXXEV] :: violent quarrel/brawl/dispute/altercation/conflict/clash/struggle; + corrixatio_F_N = mkN "corrixatio" "corrixationis" feminine ; -- [FXXEV] :: violent quarrel/brawl/dispute/altercation/conflict/clash/struggle; 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; + 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; + corrosio_F_N = mkN "corrosio" "corrosionis" feminine ; -- [XXXFE] :: gnawing; corrotundo_V2 = mkV2 (mkV "corrotundare") ; -- [XXXDO] :: make round; round off; amass/make up a round sum of money; corruda_F_N = mkN "corruda" ; -- [XAXEO] :: wild asparagus; 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; + 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; + 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 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; + 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; corruptivus_A = mkA "corruptivus" "corruptiva" "corruptivum" ; -- [DEXFS] :: corruptible; perishable; - corruptor_M_N = mkN "corruptor" "corruptoris " masculine ; -- [XXXDX] :: corruptor, briber; seducer, ravisher; one who ruins/spoils/spreads infection; + corruptor_M_N = mkN "corruptor" "corruptoris" masculine ; -- [XXXDX] :: corruptor, briber; seducer, ravisher; one who ruins/spoils/spreads infection; corruptorius_A = mkA "corruptorius" "corruptoria" "corruptorium" ; -- [DXXFS] :: destructible; corruptible, perishable; corruptrix_A = mkA "corruptrix" "corruptricis"; -- [XXXFO] :: tending to deprave/corrupt, corruptive; - corruptrix_F_N = mkN "corruptrix" "corruptricis " feminine ; -- [DXXES] :: she who corrupts/seduces; + corruptrix_F_N = mkN "corruptrix" "corruptricis" feminine ; -- [DXXES] :: she who corrupts/seduces; corruptum_N_N = mkN "corruptum" ; -- [XBXFS] :: corrupted parts (pl.) (of the body); 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 + cors_F_N = mkN "cors" "cortis" feminine ; -- [XWXAO] :: |cohort, tenth part of legion (360 men); armed force; band; ship crew; bodyguard corsa_F_N = mkN "corsa" ; -- [XTXEO] :: facia; (architectural flat surface/tablet/plate on column/door jamb/lintel); - corsoides_M_N = mkN "corsoides" "corsoidis " masculine ; -- [XXXNO] :: precious stone (unidentified); (gender does not follow rule OLD); + corsoides_M_N = mkN "corsoides" "corsoidis" masculine ; -- [XXXNO] :: precious stone (unidentified); (gender does not follow rule OLD); corsum_Adv = mkAdv "corsum" ; -- [XXXFO] :: in what direction; to what place/condition/action/point/end; with what view? corsus_Adv = mkAdv "corsus" ; -- [XXXFO] :: in what direction; to what place/condition/action/point/end; with what view? - cortex_F_N = mkN "cortex" "corticis " feminine ; -- [XAXBO] :: bark; cork; skin, rind, husk, hull; outer covering, shell, carapace, chrysalis; - cortex_M_N = mkN "cortex" "corticis " masculine ; -- [XAXBO] :: bark; cork; skin, rind, husk, hull; outer covering, shell, carapace, chrysalis; + cortex_F_N = mkN "cortex" "corticis" feminine ; -- [XAXBO] :: bark; cork; skin, rind, husk, hull; outer covering, shell, carapace, chrysalis; + cortex_M_N = mkN "cortex" "corticis" masculine ; -- [XAXBO] :: bark; cork; skin, rind, husk, hull; outer covering, shell, carapace, chrysalis; corticatus_A = mkA "corticatus" "corticata" "corticatum" ; -- [XXXFO] :: derived from bark; covered with bark (L+S); corticeus_A = mkA "corticeus" "corticea" "corticeum" ; -- [XXXEO] :: made from bark; of bark/cork (L+S); corticius_A = mkA "corticius" "corticia" "corticium" ; -- [XXXEO] :: made from bark; corticosus_A = mkA "corticosus" "corticosa" "corticosum" ; -- [XXXNO] :: covered in bark/rind; containing pieces of bark/rind/shell; abounding in bark; corticulus_M_N = mkN "corticulus" ; -- [XAXFO] :: thin rind (of the olive); small/thin rind/bark/shell (L+S); cortina_F_N = mkN "cortina" ; -- [XXXCO] :: cauldron, (of Delphi oracle), kettle; water-organ; vault/arch; curtain (L+S); - cortinale_N_N = mkN "cortinale" "cortinalis " neuter ; -- [XXXFO] :: cauldron-room; (where new wine was boiled down); - cortinipotens_M_N = mkN "cortinipotens" "cortinipotentis " masculine ; -- [XEXFO] :: master of the (oracular) cauldron (Apollo); + cortinale_N_N = mkN "cortinale" "cortinalis" neuter ; -- [XXXFO] :: cauldron-room; (where new wine was boiled down); + cortinipotens_M_N = mkN "cortinipotens" "cortinipotentis" masculine ; -- [XEXFO] :: master of the (oracular) cauldron (Apollo); cortinula_F_N = mkN "cortinula" ; -- [DXXFS] :: small kettle; - cortumio_F_N = mkN "cortumio" "cortumionis " feminine ; -- [XEXEO] :: augural word (uncertain meaning); - cortus_M_N = mkN "cortus" "cortus " masculine ; -- [XXXEO] :: coming into being, birth; breaking out (storm); rising, originating (L+S); + cortumio_F_N = mkN "cortumio" "cortumionis" feminine ; -- [XEXEO] :: augural word (uncertain meaning); + cortus_M_N = mkN "cortus" "cortus" masculine ; -- [XXXEO] :: coming into being, birth; breaking out (storm); rising, originating (L+S); corulus_F_N = mkN "corulus" ; -- [XAXCO] :: hazel-tree; hazel wood; filbert shrub (L+S); corus_M_N = mkN "corus" ; -- [XXXCO] :: north-west wind; - coruscamen_N_N = mkN "coruscamen" "coruscaminis " neuter ; -- [XXXFO] :: flash, gleam; glittering (L+S); - coruscatio_F_N = mkN "coruscatio" "coruscationis " feminine ; -- [DXXES] :: flash, gleam; glittering; + coruscamen_N_N = mkN "coruscamen" "coruscaminis" neuter ; -- [XXXFO] :: flash, gleam; glittering (L+S); + coruscatio_F_N = mkN "coruscatio" "coruscationis" feminine ; -- [DXXES] :: flash, gleam; glittering; coruscifer_A = mkA "coruscifer" "coruscifera" "corusciferum" ; -- [DEXFS] :: lightening-bearing; corusco_V = mkV "coruscare" ; -- [XXXBO] :: brandish/shake/quiver; flash/glitter, emit/reflect intermittent/quivering light; coruscum_N_N = mkN "coruscum" ; -- [XSXFS] :: lightening; coruscus_A = mkA "coruscus" "corusca" "coruscum" ; -- [XXXCO] :: vibrating/waving/tremulous/shaking; flashing, twinkling; brilliant (L+S); - coruscus_M_N = mkN "coruscus" "coruscus " masculine ; -- [ESXFW] :: lightening; (2 Ezra 6:2); + coruscus_M_N = mkN "coruscus" "coruscus" masculine ; -- [ESXFW] :: lightening; (2 Ezra 6:2); corvinus_A = mkA "corvinus" "corvina" "corvinum" ; -- [XAXEO] :: raven-, of/belonging/pertaining to a raven; corvus_M_N = mkN "corvus" ; -- [XWXDO] :: |military engine; grappling iron; surgical instrument; fellator (rude) (L+S); coryceum_N_N = mkN "coryceum" ; -- [XXXFO] :: room in a palaestra for exercise with the heavy punching-bag; @@ -14671,32 +14671,32 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat corydalus_M_N = mkN "corydalus" ; -- [DAXFS] :: crested lark; coryletum_N_N = mkN "coryletum" ; -- [XAXFO] :: copse of hazel-trees, hazel-thicket; corylus_F_N = mkN "corylus" ; -- [XAXCO] :: hazel-tree; hazel wood; filbert shrub (L+S); - corymbias_M_N = mkN "corymbias" "corymbiae " masculine ; -- [XAXNO] :: species of giant fennel (Ferula); + corymbias_M_N = mkN "corymbias" "corymbiae" masculine ; -- [XAXNO] :: species of giant fennel (Ferula); corymbiatus_A = mkA "corymbiatus" "corymbiata" "corymbiatum" ; -- [DAXFS] :: set round with clusters of ivy-berries; corymbifer_A = mkA "corymbifer" "corymbifera" "corymbiferum" ; -- [XXXFO] :: wearing garlands of clusters of ivy-berries; (epithet of Bacchus); - corymbion_N_N = mkN "corymbion" "corymbii " neuter ; -- [XXXFO] :: curled wig/hair; (curled in the form of clusters of ivy-berries L+S); - corymbites_M_N = mkN "corymbites" "corymbitae " masculine ; -- [XAXNO] :: kind of spurge; species of the plant tithymalus (L+S); + corymbion_N_N = mkN "corymbion" "corymbii" neuter ; -- [XXXFO] :: curled wig/hair; (curled in the form of clusters of ivy-berries L+S); + corymbites_M_N = mkN "corymbites" "corymbitae" masculine ; -- [XAXNO] :: kind of spurge; species of the plant tithymalus (L+S); corymbus_M_N = mkN "corymbus" ; -- [XAXCO] :: cluster of ivy-berries/flowers/fruit; stern of a ship (pl.); nipple (L+S); coryphaeus_M_N = mkN "coryphaeus" ; -- [XLXFO] :: leader, chief, head; - coryphion_N_N = mkN "coryphion" "coryphii " neuter ; -- [XAXNO] :: small shell-fish; winkle; whelk; kind of murex/snail yielding purple dye (L+S); - corytos_M_N = mkN "corytos" "coryti " masculine ; -- [XWXDO] :: quiver, case holding arrows; + coryphion_N_N = mkN "coryphion" "coryphii" neuter ; -- [XAXNO] :: small shell-fish; winkle; whelk; kind of murex/snail yielding purple dye (L+S); + corytos_M_N = mkN "corytos" "coryti" masculine ; -- [XWXDO] :: quiver, case holding arrows; 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); - cos_N = constN "cos." masculine ; -- [CLICO] :: consul (the highest elected Roman official); abb. cons./cos.; + cos_F_N = mkN "cos" "cotis" feminine ; -- [XXXCO] :: flint-stone; whetstone, hone, grinding stone; rocks (pl.); any hard stone (L+S); + 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; + 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; - cosmetes_M_N = mkN "cosmetes" "cosmetae " masculine ; -- [XXXFO] :: woman's valet; slave responsible for the adornment of his mistress; + cosmetes_M_N = mkN "cosmetes" "cosmetae" masculine ; -- [XXXFO] :: woman's valet; slave responsible for the adornment of his mistress; cosmetica_F_N = mkN "cosmetica" ; -- [GXXEK] :: cosmetic; cosmeticus_A = mkA "cosmeticus" "cosmetica" "cosmeticum" ; -- [GXXEK] :: cosmetic; cosmicos_A = mkA "cosmicos" "cosmice" "cosmicon" ; -- [XXXEO] :: of the world; fashionable; cosmopolitan; - cosmicos_M_N = mkN "cosmicos" "cosmici " masculine ; -- [XXXFC] :: citizen of the world; + 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; + 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; @@ -14706,25 +14706,25 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cosmonauta_M_N = mkN "cosmonauta" ; -- [GXXEK] :: cosmonaut; 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; - coss_N = constN "coss." masculine ; -- [XXXCO] :: consuls (pl.) (highest elected official); abb. conss./coss.; (two of a year); + cosmos_M_N = mkN "cosmos" "cosmi" masculine ; -- [XXXEO] :: universe; one of the chief magistrates of Crete; + 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; + 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; costa_F_N = mkN "costa" ; -- [XBXCO] :: rib; side/flank/back; rib with meat; ribs/frame of ship; sides (pl.) of pot; costabilis_A = mkA "costabilis" "costabilis" "costabile" ; -- [DXXFS] :: rib-like; costamomum_N_N = mkN "costamomum" ; -- [DAXFS] :: aromatic plant (similar to costum and amomum); costatus_A = mkA "costatus" "costata" "costatum" ; -- [XXXFO] :: ribbed, having ribs; - costos_F_N = mkN "costos" "costi " feminine ; -- [XAXCO] :: aromatic plant/its powdered root; (Saussurea lappa); + costos_F_N = mkN "costos" "costi" feminine ; -- [XAXCO] :: aromatic plant/its powdered root; (Saussurea lappa); costum_N_N = mkN "costum" ; -- [XAXCO] :: aromatic plant/its powdered root; (Saussurea lappa); costus_F_N = mkN "costus" ; -- [XAXCO] :: aromatic plant/its powdered root; (Saussurea lappa); - cotangens_F_N = mkN "cotangens" "cotangentis " feminine ; -- [GSXEK] :: cotangent (math); + cotangens_F_N = mkN "cotangens" "cotangentis" feminine ; -- [GSXEK] :: cotangent (math); cotaria_F_N = mkN "cotaria" ; -- [XXXFS] :: quarry for whetstones; cotenea_F_N = mkN "cotenea" ; -- [XAXNO] :: plant; (perh. comfrey); wallwort (L+S); black briony; - cotes_F_N = mkN "cotes" "cotis " feminine ; -- [XXXBO] :: rough pointed/detached rock, loose stone; rocks (pl.), cliff, crag; reef; - cotho_M_N = mkN "cotho" "cothonis " masculine ; -- [XXXEO] :: basin, artificial harbor; (artificial inner harbor at Carthage L+S); + cotes_F_N = mkN "cotes" "cotis" feminine ; -- [XXXBO] :: rough pointed/detached rock, loose stone; rocks (pl.), cliff, crag; reef; + cotho_M_N = mkN "cotho" "cothonis" masculine ; -- [XXXEO] :: basin, artificial harbor; (artificial inner harbor at Carthage L+S); cothurnate_Adv =mkAdv "cothurnate" "cothurnatius" "cothurnatissime" ; -- [DDXFS] :: loftily, tragically; - cothurnatio_F_N = mkN "cothurnatio" "cothurnationis " feminine ; -- [DDXFS] :: tragic representation; + cothurnatio_F_N = mkN "cothurnatio" "cothurnationis" feminine ; -- [DDXFS] :: tragic representation; cothurnatus_A = mkA "cothurnatus" "cothurnata" "cothurnatum" ; -- [XDXCO] :: wearing the buskin (Greek actor's boot); in lofty style, of tragic themes; cothurnus_M_N = mkN "cothurnus" ; -- [XDXCO] :: |elevated/tragic/solemn style; tragic poetry; the tragic stage; coticula_F_N = mkN "coticula" ; -- [XXXNO] :: touchstone (used to test gold); small mortar (medical); test (L+S); @@ -14734,7 +14734,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cotidio_Adv = mkAdv "cotidio" ; -- [XXXEO] :: daily, every day; day by day; usually, ordinarily, commonly; cotila_F_N = mkN "cotila" ; -- [XSXEO] :: small cup; liquid measure (= 6 cyathi/1 hemina/half sextarius/about 1/2 pint); cotinus_M_N = mkN "cotinus" ; -- [XAXNO] :: shrub producing purple dye; sumac-tree (Rhus cotinus); - cotio_M_N = mkN "cotio" "cotionis " masculine ; -- [XXXDS] :: dealer; broker; + cotio_M_N = mkN "cotio" "cotionis" masculine ; -- [XXXDS] :: dealer; broker; cotoneum_N_N = mkN "cotoneum" ; -- [XAXNO] :: quince; quince tree; cotoneus_A = mkA "cotoneus" "cotonea" "cotoneum" ; -- [XAXCO] :: quince-; (of Cydonia/city in Crete/now Canea); [malum ~ => quince fruit/tree]; cotonum_N_N = mkN "cotonum" ; -- [XAQES] :: kind of small fig; (grown in Syria); @@ -14749,46 +14749,46 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cottonum_N_N = mkN "cottonum" ; -- [XAQEO] :: kind of small fig; (grown in Syria); cotula_F_N = mkN "cotula" ; -- [XSXEO] :: small cup; liquid measure (= 6 cyathi/1 hemina/half sextarius/about 1/2 pint); coturnatus_A = mkA "coturnatus" "coturnata" "coturnatum" ; -- [XDXCO] :: wearing the buskin (Greek actor's boot); in lofty style, of tragic themes; - coturnix_F_N = mkN "coturnix" "coturnicis " feminine ; -- [XAXCO] :: quail; (also term of endearment); + coturnix_F_N = mkN "coturnix" "coturnicis" feminine ; -- [XAXCO] :: quail; (also term of endearment); coturnus_M_N = mkN "coturnus" ; -- [FDXEZ] :: lofty-style-actor; tragic actor declaiming in lofty style; buskin-clad actor; 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; + 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; + 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; - coxendix_F_N = mkN "coxendix" "coxendicis " feminine ; -- [XBXCO] :: hip; hip bone; + coxendix_F_N = mkN "coxendix" "coxendicis" feminine ; -- [XBXCO] :: hip; hip bone; coxim_Adv = mkAdv "coxim" ; -- [DXXFS] :: on hips; (at the hip?); - coxo_M_N = mkN "coxo" "coxonis " masculine ; -- [DBXFS] :: hobbling; + coxo_M_N = mkN "coxo" "coxonis" masculine ; -- [DBXFS] :: hobbling; coxus_A = mkA "coxus" "coxa" "coxum" ; -- [XBXFO] :: lame; crabattus_M_N = mkN "crabattus" ; -- [XXXCO] :: cot, camp bed, pallet; low couch or bed; (usu.) mean/wretched bed/couch; crabatus_M_N = mkN "crabatus" ; -- [XXXCO] :: cot, camp bed, pallet; low couch or bed; (usu.) mean/wretched bed/couch; - crabro_M_N = mkN "crabro" "crabronis " masculine ; -- [XAXEO] :: hornet; wasp; [irritare crabones => to disturb a hornets'/wasp's nest]; + crabro_M_N = mkN "crabro" "crabronis" masculine ; -- [XAXEO] :: hornet; wasp; [irritare crabones => to disturb a hornets'/wasp's nest]; cracca_F_N = mkN "cracca" ; -- [XAXNO] :: kind of wild vetch; cracens_A = mkA "cracens" "cracentis"; -- [BXXFO] :: slender; neat, graceful (L+S); cramaculus_M_N = mkN "cramaculus" ; -- [GXXEK] :: trammel (of chimney); - crambe_F_N = mkN "crambe" "crambes " feminine ; -- [XAXEO] :: cabbage; [~ repetita => of stale repetition]; + crambe_F_N = mkN "crambe" "crambes" feminine ; -- [XAXEO] :: cabbage; [~ repetita => of stale repetition]; cramum_N_N = mkN "cramum" ; -- [GXXEK] :: cream; crapula_F_N = mkN "crapula" ; -- [XXXCO] :: drunkenness, intoxication; hangover; resin residue used to flavor wine; crapulanus_A = mkA "crapulanus" "crapulana" "crapulanum" ; -- [XXXNO] :: resinous, containing resin; (wine); crapularius_A = mkA "crapularius" "crapularia" "crapularium" ; -- [XXXFO] :: good for curing hangovers; pertaining to intoxication (L+S); - crapulatio_F_N = mkN "crapulatio" "crapulationis " feminine ; -- [DXXFS] :: intoxication; + crapulatio_F_N = mkN "crapulatio" "crapulationis" feminine ; -- [DXXFS] :: intoxication; crapulatus_A = mkA "crapulatus" "crapulata" "crapulatum" ; -- [DXXFS] :: inebriated, intoxicated, drunk; drunken with wine; crapulentus_A = mkA "crapulentus" "crapulenta" "crapulentum" ; -- [DXXFS] :: very drunk, very much intoxicated; crapulosus_A = mkA "crapulosus" "crapulosa" "crapulosum" ; -- [DXXFS] :: inclined to drunkenness; cras_Adv = mkAdv "cras" ; -- [XXXBO] :: tomorrow; after today, on the morrow; hereafter, in the future; - crassamen_N_N = mkN "crassamen" "crassaminis " neuter ; -- [XXXFO] :: sediment; dregs (L+S); + crassamen_N_N = mkN "crassamen" "crassaminis" neuter ; -- [XXXFO] :: sediment; dregs (L+S); crassamentum_N_N = mkN "crassamentum" ; -- [XXXEO] :: thickness (of an object); thick sediment of a liquid, dregs, grounds (L+S); - crassator_M_N = mkN "crassator" "crassatoris " masculine ; -- [XXXCO] :: vagabond; footpad, highway robber; + 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; + 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; - crassities_F_N = mkN "crassities" "crassitiei " feminine ; -- [XXXFO] :: density; thickness; plumpness, fleshiness; - crassitudo_F_N = mkN "crassitudo" "crassitudinis " feminine ; -- [XSXCO] :: thickness (measure); density/consistency (liquid); richness (soil); sediment; + crassificatio_F_N = mkN "crassificatio" "crassificationis" feminine ; -- [DXXES] :: thickness; making thick or fat; + crassitas_F_N = mkN "crassitas" "crassitatis" feminine ; -- [XSXFO] :: density; thickness; + crassities_F_N = mkN "crassities" "crassitiei" feminine ; -- [XXXFO] :: density; thickness; plumpness, fleshiness; + crassitudo_F_N = mkN "crassitudo" "crassitudinis" feminine ; -- [XSXCO] :: thickness (measure); density/consistency (liquid); richness (soil); sediment; 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); @@ -14798,30 +14798,30 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat crastinus_A = mkA "crastinus" "crastina" "crastinum" ; -- [XXXBX] :: of tomorrow/next day/future; [in ~um => for/til tomorrow/following day]; 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); - crataegos_M_N = mkN "crataegos" "crataegi " masculine ; -- [XAHNO] :: holly; (Greek name for holly); plant (called aquifolia in pure Latin 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); + crataegos_M_N = mkN "crataegos" "crataegi" masculine ; -- [XAHNO] :: holly; (Greek name for holly); plant (called aquifolia in pure Latin L+S); crataegum_N_N = mkN "crataegum" ; -- [XAXNO] :: kind of gall which grows on holm-oaks; kernel of fruit of the box-tree (L+S); - crater_M_N = mkN "crater" "crateris " masculine ; -- [XXXCO] :: mixing bowl; depression, volcano crater, basin of fountain; Cup (constellation); + crater_M_N = mkN "crater" "crateris" masculine ; -- [XXXCO] :: mixing bowl; depression, volcano crater, basin of fountain; Cup (constellation); cratera_F_N = mkN "cratera" ; -- [XXXCO] :: mixing bowl; depression, volcano crater, basin of fountain; Cup (constellation); crateraa_F_N = mkN "crateraa" ; -- [XXXCS] :: mixing bowl; depression, volcano crater, basin of fountain; Cup (constellation); - craterite_M_N = mkN "craterite" "craterites " masculine ; -- [XXXNO] :: precious stone (unidentified); - crateritis_F_N = mkN "crateritis" "crateritidis " feminine ; -- [XXXNO] :: precious stone (unidentified); + craterite_M_N = mkN "craterite" "craterites" masculine ; -- [XXXNO] :: precious stone (unidentified); + crateritis_F_N = mkN "crateritis" "crateritidis" feminine ; -- [XXXNO] :: precious stone (unidentified); 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; + 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); creabilis_A = mkA "creabilis" "creabilis" "creabile" ; -- [DXXEF] :: creatable, that can be made/created; creagra_F_N = mkN "creagra" ; -- [DXXES] :: flesh-hook; - creamen_N_N = mkN "creamen" "creaminis " neuter ; -- [DXXFS] :: elements of which created things consist; - creatio_F_N = mkN "creatio" "creationis " feminine ; -- [FEXDF] :: |creation; creating/producing/bringing forth something from nothing/something; + creamen_N_N = mkN "creamen" "creaminis" neuter ; -- [DXXFS] :: elements of which created things consist; + creatio_F_N = mkN "creatio" "creationis" feminine ; -- [FEXDF] :: |creation; creating/producing/bringing forth something from nothing/something; creativus_A = mkA "creativus" "creativa" "creativum" ; -- [FXXEE] :: creative; - creator_M_N = mkN "creator" "creatoris " masculine ; -- [XXXBO] :: creator (of world); maker, author; founder (city); father; one who appoints; - creatrix_F_N = mkN "creatrix" "creatricis " feminine ; -- [XXXCO] :: mother, she who brings forth; creator (of the world); authoress, creatress; + creator_M_N = mkN "creator" "creatoris" masculine ; -- [XXXBO] :: creator (of world); maker, author; founder (city); father; one who appoints; + creatrix_F_N = mkN "creatrix" "creatricis" feminine ; -- [XXXCO] :: mother, she who brings forth; creator (of the world); authoress, creatress; creatum_N_N = mkN "creatum" ; -- [DXXFS] :: things made (pl.); 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; @@ -14836,39 +14836,39 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - crebritas_F_N = mkN "crebritas" "crebritatis " feminine ; -- [XXXCO] :: frequency; closeness in succession/space/of parts/density; thickness (L+S); + crebritas_F_N = mkN "crebritas" "crebritatis" feminine ; -- [XXXCO] :: frequency; closeness in succession/space/of parts/density; thickness (L+S); crebriter_Adv = mkAdv "crebriter" ; -- [XXXEO] :: repeatedly; frequently; - crebritudo_F_N = mkN "crebritudo" "crebritudinis " feminine ; -- [XXXEO] :: frequency; closeness in succession/space; crowding; closeness of parts/density; + crebritudo_F_N = mkN "crebritudo" "crebritudinis" feminine ; -- [XXXEO] :: frequency; closeness in succession/space; crowding; closeness of parts/density; crebro_Adv =mkAdv "crebro" "crebrius" "creberrime" ; -- [XXXDX] :: frequently/repeatedly/often, one after another, time after time; thickly/densely credencia_F_N = mkN "credencia" ; -- [FXXEZ] :: credence; state of trusting (medieval spelling); - credens_F_N = mkN "credens" "credentis " feminine ; -- [EEXCE] :: believer; the_faithful (pl.); - credens_M_N = mkN "credens" "credentis " masculine ; -- [EEXCE] :: believer; the_faithful (pl.); + credens_F_N = mkN "credens" "credentis" feminine ; -- [EEXCE] :: believer; the_faithful (pl.); + credens_M_N = mkN "credens" "credentis" masculine ; -- [EEXCE] :: believer; the_faithful (pl.); credentarius_M_N = mkN "credentarius" ; -- [EEXEE] :: server; credentia_F_N = mkN "credentia" ; -- [EEXEE] :: |credence, small table in sanctuary for vessels; credibilis_A = mkA "credibilis" "credibilis" "credibile" ; -- [XXXBO] :: credible/trustworthy/believable/plausible/convincing/likely/probable; credibiliter_Adv = mkAdv "credibiliter" ; -- [XXXEO] :: credibly; plausibly; so as to be believed (OED); on trustworthy authority; credito_V2 = mkV2 (mkV "creditare") ; -- [DXXFS] :: believe strongly; - creditor_M_N = mkN "creditor" "creditoris " masculine ; -- [XXXCO] :: lender, creditor; one to whom money is due; (w/GEN of debtor/debt); - creditrix_F_N = mkN "creditrix" "creditricis " feminine ; -- [XXXEO] :: female lender/creditor; + creditor_M_N = mkN "creditor" "creditoris" masculine ; -- [XXXCO] :: lender, creditor; one to whom money is due; (w/GEN of debtor/debt); + 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; + 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); + 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); 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; 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); + 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; cremialis_A = mkA "cremialis" "cremialis" "cremiale" ; -- [XAXFO] :: suitable for firewood; (trees); cremito_V2 = mkV2 (mkV "cremitare") ; -- [BXXFO] :: burn; cremate; cremium_N_N = mkN "cremium" ; -- [XXXEO] :: firewood; (singular or collective); dry fire-wood (pl.), brush-wood (L+S); - cremnos_M_N = mkN "cremnos" "cremni " masculine ; -- [XAXNO] :: plant (unidentified); + cremnos_M_N = mkN "cremnos" "cremni" masculine ; -- [XAXNO] :: plant (unidentified); cremo_V2 = mkV2 (mkV "cremare") ; -- [XXXBO] :: burn (to ash)/cremate; consume/destroy (fire); burn alive; make burnt offering; - cremor_M_N = mkN "cremor" "cremoris " masculine ; -- [XXXCO] :: gruel, pap, decoction; thick juice made by boiling grain or animal/vegetables); + cremor_M_N = mkN "cremor" "cremoris" masculine ; -- [XXXCO] :: gruel, pap, decoction; thick juice made by boiling grain or animal/vegetables); cremum_N_N = mkN "cremum" ; -- [DXXFS] :: gruel, pap, decoction; thick juice made by boiling grain or animal/vegetables); crena_F_N = mkN "crena" ; -- [XXXNO] :: notch; serration; slash (Cal); crenum_N_N = mkN "crenum" ; -- [GXXEK] :: gap; @@ -14883,23 +14883,23 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat crepidarius_A = mkA "crepidarius" "crepidaria" "crepidarium" ; -- [XXXEO] :: used in/concerned with making of crepidae (thick soled Greek sandals); crepidarius_M_N = mkN "crepidarius" ; -- [XXXEO] :: maker of crepidae/sandals; crepidatus_A = mkA "crepidatus" "crepidata" "crepidatum" ; -- [XXXEC] :: wearing crepidae (thick soled Greek sandals); - crepido_F_N = mkN "crepido" "crepidinis " feminine ; -- [XTXCO] :: pedestal/base/foundation; dam, retaining wall, bank; pier/quay, sidewalk; rim; + crepido_F_N = mkN "crepido" "crepidinis" feminine ; -- [XTXCO] :: pedestal/base/foundation; dam, retaining wall, bank; pier/quay, sidewalk; rim; crepidula_F_N = mkN "crepidula" ; -- [XXXEO] :: small boot/sandal; crepidulum_N_N = mkN "crepidulum" ; -- [XXXFS] :: rattling ornament for the head; - crepis_F_N = mkN "crepis" "crepidis " feminine ; -- [XXXNO] :: small boot/sandal; some sort of prickly plant; + crepis_F_N = mkN "crepis" "crepidis" feminine ; -- [XXXNO] :: small boot/sandal; some sort of prickly plant; crepitacillum_N_N = mkN "crepitacillum" ; -- [XXXFO] :: rattle; (child's); small rattle (L+S); crepitaculum_N_N = mkN "crepitaculum" ; -- [XXXEO] :: rattle; instrument for making a loud percussion; the sisteum of Isis; crepito_V = mkV "crepitare" ; -- [XXXCO] :: rattle/clatter; rustle/crackle; produce rapid succession of sharp/shrill noises; crepitulum_N_N = mkN "crepitulum" ; -- [XXXFO] :: rattling ornament for the head; - crepitus_M_N = mkN "crepitus" "crepitus " masculine ; -- [XXXCO] :: rattling, rustling, crash (thunder); chattering (teeth); snap (fingers); fart; + crepitus_M_N = mkN "crepitus" "crepitus" masculine ; -- [XXXCO] :: rattling, rustling, crash (thunder); chattering (teeth); snap (fingers); fart; crepo_V = mkV "crepare" ; -- [FXXBE] :: |crack; burst asunder; resound; - creptio_F_N = mkN "creptio" "creptionis " feminine ; -- [FXXEN] :: taking by force; seizure; + creptio_F_N = mkN "creptio" "creptionis" feminine ; -- [FXXEN] :: taking by force; seizure; crepulus_A = mkA "crepulus" "crepula" "crepulum" ; -- [DXXES] :: rattling; resounding; crashing; crepundium_N_N = mkN "crepundium" ; -- [XXXCO] :: child's rattle/toy (pl.) (for ID); childhood; amulet, religious emblem; cymbals; 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; + 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); @@ -14908,9 +14908,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cretatus_A = mkA "cretatus" "cretata" "cretatum" ; -- [XXXDX] :: chalked, marked with chalk; in white; whitened with pipe-clay; powdered (woman); creterra_F_N = mkN "creterra" ; -- [XXXDO] :: large bowl for water or wine; creteus_A = mkA "creteus" "cretea" "creteum" ; -- [XXXFO] :: made of clay/chalk; - crethmos_F_N = mkN "crethmos" "crethmi " feminine ; -- [XAXNO] :: plant (sampire) Crethmum maritimum; sea fennel (L+S); + crethmos_F_N = mkN "crethmos" "crethmi" feminine ; -- [XAXNO] :: plant (sampire) Crethmum maritimum; sea fennel (L+S); cretifodina_F_N = mkN "cretifodina" ; -- [XXXEO] :: clay or chalk pit; - cretio_F_N = mkN "cretio" "cretionis " feminine ; -- [XLXCO] :: declaration of acceptance of an inheritance; (terms of/clause on); heritage; + cretio_F_N = mkN "cretio" "cretionis" feminine ; -- [XLXCO] :: declaration of acceptance of an inheritance; (terms of/clause on); heritage; cretosus_A = mkA "cretosus" "cretosa" "cretosum" ; -- [XXXCO] :: abounding in chalk or clay; clayey; cretula_F_N = mkN "cretula" ; -- [XXXEO] :: white clay for sealing; cretulentum_N_N = mkN "cretulentum" ; -- [XXXIO] :: right of fulling garments; @@ -14924,13 +14924,13 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cribro_V2 = mkV2 (mkV "cribrare") ; -- [XXXEO] :: sift, pass through a sieve; cribrum_N_N = mkN "cribrum" ; -- [XXXDX] :: sieve; riddle (L+S); [in ~ gerere => carry in a sieve/perform useless task]; cricetus_M_N = mkN "cricetus" ; -- [GXXEK] :: hamster; - crimen_N_N = mkN "crimen" "criminis " neuter ; -- [XLXAO] :: |sin/guilt; crime/offense/fault; cause of a crime, criminal (L+S); adultery; + crimen_N_N = mkN "crimen" "criminis" neuter ; -- [XLXAO] :: |sin/guilt; crime/offense/fault; cause of a crime, criminal (L+S); adultery; criminalis_A = mkA "criminalis" "criminalis" "criminale" ; -- [XLXFO] :: criminal (vs. civil); of/pertaining to crime (L+S); crime-/police- (novel); - criminalitas_F_N = mkN "criminalitas" "criminalitatis " feminine ; -- [GXXEK] :: criminality; + criminalitas_F_N = mkN "criminalitas" "criminalitatis" feminine ; -- [GXXEK] :: criminality; criminaliter_Adv = mkAdv "criminaliter" ; -- [XLXFO] :: according to criminal procedure; (legal term); criminally (L+S); - criminatio_F_N = mkN "criminatio" "criminationis " feminine ; -- [XLXCO] :: accusation, complaint, charge, indictment; making of an accusation; - criminator_M_N = mkN "criminator" "criminatoris " masculine ; -- [XLXEO] :: accuser; slanderer; - criminatrix_F_N = mkN "criminatrix" "criminatricis " feminine ; -- [DLXFS] :: accuser (female); slanderer; + criminatio_F_N = mkN "criminatio" "criminationis" feminine ; -- [XLXCO] :: accusation, complaint, charge, indictment; making of an accusation; + criminator_M_N = mkN "criminator" "criminatoris" masculine ; -- [XLXEO] :: accuser; slanderer; + criminatrix_F_N = mkN "criminatrix" "criminatricis" feminine ; -- [DLXFS] :: accuser (female); slanderer; crimino_V2 = mkV2 (mkV "criminare") ; -- [BLXDO] :: accuse, denounce; charge (with); allege with accusation; make accusations; criminologia_F_N = mkN "criminologia" ; -- [GXXEK] :: criminology; criminologus_M_N = mkN "criminologus" ; -- [GXXEK] :: criminologist; @@ -14938,15 +14938,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat criminose_Adv =mkAdv "criminose" "criminosius" "criminissime" ; -- [XXXDO] :: reproachfully, abusively, slanderously; manner which invites accusation; 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); + 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; + 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; - crinon_N_N = mkN "crinon" "crini " neuter ; -- [XAXEO] :: variety of lily; kind of ointment/unguent (pl.); + crinomenon_N_N = mkN "crinomenon" "crinomeni" neuter ; -- [XGXFO] :: point at issue in a dispute; + crinon_N_N = mkN "crinon" "crini" neuter ; -- [XAXEO] :: variety of lily; kind of ointment/unguent (pl.); crinum_N_N = mkN "crinum" ; -- [XAXNS] :: variety of lily; kind of ointment/unguent (pl.); criobolium_N_N = mkN "criobolium" ; -- [DEXIS] :: ram (as an offering); cripa_F_N = mkN "cripa" ; -- [XAXFO] :: plant (unidentified); @@ -14960,7 +14960,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat crispicapillus_A = mkA "crispicapillus" "crispicapilla" "crispicapillum" ; -- [XXXFS] :: having curled hair; crispico_V = mkV "crispicare" ; -- [XXXFS] :: curl (hair); make/appear wavy; ripple; shake/brandish; tremble/quiver; wiggle; crispiculcans_A = mkA "crispiculcans" "crispiculcantis"; -- [XXXFS] :: wavy, undulating, serpentine; - crispitudo_F_N = mkN "crispitudo" "crispitudinis " feminine ; -- [DXXFS] :: trembling/vibratory motion; + crispitudo_F_N = mkN "crispitudo" "crispitudinis" feminine ; -- [DXXFS] :: trembling/vibratory motion; crispo_V = mkV "crispare" ; -- [XXXCO] :: curl (hair); make/appear wavy; ripple; shake/brandish; tremble/quiver; wiggle; crispulus_A = mkA "crispulus" "crispula" "crispulum" ; -- [XXXDO] :: having short curly hair; crisped/crimped; artificial/affected/elaborate (style); crispum_N_N = mkN "crispum" ; -- [GXXEK] :: crepe (cloth); @@ -14971,48 +14971,48 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cristatus_M_N = mkN "cristatus" ; -- [XXXEO] :: one who wares a plumed helmet; head of penis (rude) (Sex); cristula_F_N = mkN "cristula" ; -- [XAXFO] :: small comb; (on head of a hen); small tuft (L+S); crita_M_N = mkN "crita" ; -- [DEXFS] :: judges among the Hebrews; - criterion_N_N = mkN "criterion" "criterii " neuter ; -- [GXXEK] :: criterion/criteria, standard; rule; + criterion_N_N = mkN "criterion" "criterii" neuter ; -- [GXXEK] :: criterion/criteria, standard; rule; criterium_N_N = mkN "criterium" ; -- [FXXEE] :: criterion/criteria, standard; rule; - crithe_F_N = mkN "crithe" "crithes " feminine ; -- [XBXFO] :: sty, swelling on the eyelid; + crithe_F_N = mkN "crithe" "crithes" feminine ; -- [XBXFO] :: sty, swelling on the eyelid; crithologia_F_N = mkN "crithologia" ; -- [DLXES] :: gathering of barley; critica_F_N = mkN "critica" ; -- [GXXEK] :: critique (of texts); criticum_N_N = mkN "criticum" ; -- [XGXFO] :: literary criticism (pl.); criticus_A = mkA "criticus" "critica" "criticum" ; -- [DXXFS] :: critical; decisive; criticus_M_N = mkN "criticus" ; -- [XGXEO] :: literary critic; - crobylos_M_N = mkN "crobylos" "crobyli " masculine ; -- [DXXES] :: topknot, roll of hair knotted on the crown of the head; + crobylos_M_N = mkN "crobylos" "crobyli" masculine ; -- [DXXES] :: topknot, roll of hair knotted on the crown of the head; croca_F_N = mkN "croca" ; -- [XAXNO] :: filament of crocus/saffron stamen; - 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); + 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; - crocias_M_N = mkN "crocias" "crociae " masculine ; -- [XXXNO] :: precious stone (unidentified); (yellow/saffron-colored L+S); + crocias_M_N = mkN "crocias" "crociae" masculine ; -- [XXXNO] :: precious stone (unidentified); (yellow/saffron-colored L+S); crocidismus_M_N = mkN "crocidismus" ; -- [DXXFS] :: picking off of flocks (of wool); 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); + 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; + crocitus_M_N = mkN "crocitus" "crocitus" masculine ; -- [DAXFS] :: croaking of the raven; croco_V2 = mkV2 (mkV "crocare") ; -- [DXXFS] :: dye saffron-yellow; - crocodes_F_N = mkN "crocodes" "crocodis " feminine ; -- [XBXIO] :: eye-slave made from saffron; (OLD says neuter); + crocodes_F_N = mkN "crocodes" "crocodis" feminine ; -- [XBXIO] :: eye-slave made from saffron; (OLD says neuter); crocodilea_F_N = mkN "crocodilea" ; -- [XBXNO] :: eye-salve (extracted from intestines of crocodile); crocodile excrement (L+S); - crocodileon_N_N = mkN "crocodileon" "crocodilei " neuter ; -- [XAXNO] :: prickly sea-shore plant; (so called because of the rough skin of its stalk); - crocodilion_N_N = mkN "crocodilion" "crocodilii " neuter ; -- [XAXNS] :: plant; (so called because of rough skin of its stalk); + crocodileon_N_N = mkN "crocodileon" "crocodilei" neuter ; -- [XAXNO] :: prickly sea-shore plant; (so called because of the rough skin of its stalk); + crocodilion_N_N = mkN "crocodilion" "crocodilii" neuter ; -- [XAXNS] :: plant; (so called because of rough skin of its stalk); crocodillina_F_N = mkN "crocodillina" ; -- [XGXFO] :: dialectical puzzle about a crocodile; crocodile-conclusion; - crocodillos_M_N = mkN "crocodillos" "crocodilli " masculine ; -- [XAEDO] :: crocodile; land reptile, Nile monitor; + crocodillos_M_N = mkN "crocodillos" "crocodilli" masculine ; -- [XAEDO] :: crocodile; land reptile, Nile monitor; crocodillus_M_N = mkN "crocodillus" ; -- [XAECO] :: crocodile; land reptile, Nile monitor; - crocodilos_M_N = mkN "crocodilos" "crocodili " masculine ; -- [XAEDO] :: crocodile; land reptile, Nile monitor; + crocodilos_M_N = mkN "crocodilos" "crocodili" masculine ; -- [XAEDO] :: crocodile; land reptile, Nile monitor; crocodilus_M_N = mkN "crocodilus" ; -- [XAECO] :: crocodile; land reptile, Nile monitor; crocofantia_F_N = mkN "crocofantia" ; -- [DXXFS] :: saffron-colored dress; (worn by women and effeminate men); - crocomagma_N_N = mkN "crocomagma" "crocomagmatis " neuter ; -- [XAXEO] :: residue left after refining saffron oil; + crocomagma_N_N = mkN "crocomagma" "crocomagmatis" neuter ; -- [XAXEO] :: residue left after refining saffron oil; crocophantia_F_N = mkN "crocophantia" ; -- [DXXFS] :: saffron-colored dress; (worn by women and effeminate men); crocota_F_N = mkN "crocota" ; -- [XXXDO] :: saffron-colored dress; (worn by women and effeminate men); crocotarius_A = mkA "crocotarius" "crocotaria" "crocotarium" ; -- [XXXFO] :: of/concerned with saffron-colored robes/dresses; (worn by women/effeminate men); - crocotas_M_N = mkN "crocotas" "crocotae " masculine ; -- [XAANO] :: African animal; (prob. some sort of hyena); + crocotas_M_N = mkN "crocotas" "crocotae" masculine ; -- [XAANO] :: African animal; (prob. some sort of hyena); crocotillus_A = mkA "crocotillus" "crocotilla" "crocotillum" ; -- [XXXFO] :: very thin; crocotta_M_N = mkN "crocotta" ; -- [XAAES] :: wild animal of Ethiopia; (unidentified); (perh. hyena); crocotula_F_N = mkN "crocotula" ; -- [XXXFO] :: saffron-colored woman's dress/robe; (saffron-colored court robe L+S); @@ -15024,53 +15024,53 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat crocuta_M_N = mkN "crocuta" ; -- [XAAES] :: wild animal of Ethiopia; (unidentified); (perh. hyena); crocyfantium_N_N = mkN "crocyfantium" ; -- [XXXFO] :: kind of woven ornament for the head (pl.); croma_F_N = mkN "croma" ; -- [XTXEO] :: instrument for taking bearings to fix lines of orientation; (surveying); - crosmis_F_N = mkN "crosmis" "crosmis " feminine ; -- [DAXFS] :: kind of sage; - crotale_N_N = mkN "crotale" "crotalis " neuter ; -- [XXXFQ] :: ear-rings (pl.); ear pendants of several loosely hanging/rattling pearls; + crosmis_F_N = mkN "crosmis" "crosmis" feminine ; -- [DAXFS] :: kind of sage; + crotale_N_N = mkN "crotale" "crotalis" neuter ; -- [XXXFQ] :: ear-rings (pl.); ear pendants of several loosely hanging/rattling pearls; crotalisso_V = mkV "crotalissare" ; -- [DDXFS] :: clack/sound/rattle with castanets; crotalistria_F_N = mkN "crotalistria" ; -- [XDXEO] :: castanet-dancer (female); (applied to stork from the rattling sound it makes); crotalum_N_N = mkN "crotalum" ; -- [XDXDO] :: castanet, kind used to accompany (wanton) dance; rattle/clapper/bell; crotalus_M_N = mkN "crotalus" ; -- [FXXFE] :: clapper; (used instead of bell); - crotaphos_M_N = mkN "crotaphos" "crotaphi " masculine ; -- [DBXFS] :: pain in the temples; - croto_F_N = mkN "croto" "crotonis " feminine ; -- [XAXNO] :: castor-oil tree (Ricinus communis); + crotaphos_M_N = mkN "crotaphos" "crotaphi" masculine ; -- [DBXFS] :: pain in the temples; + croto_F_N = mkN "croto" "crotonis" feminine ; -- [XAXNO] :: castor-oil tree (Ricinus communis); crotolo_V = mkV "crotolare" ; -- [XAXFO] :: clack, make the characteristic sound of the stork; - croton_F_N = mkN "croton" "crotonis " feminine ; -- [XAXNO] :: castor-oil tree (Ricinus communis); + croton_F_N = mkN "croton" "crotonis" feminine ; -- [XAXNO] :: castor-oil tree (Ricinus communis); croysidia_F_N = mkN "croysidia" ; -- [XAXNS] :: another name for plant Minyas; crucesignatus_M_N = mkN "crucesignatus" ; -- [GXXEK] :: crusader; cruciabilis_A = mkA "cruciabilis" "cruciabilis" "cruciabile" ; -- [XXXEO] :: agonizing/painful/tormenting/excruciating, characterized by extreme pain/anguish - cruciabilitas_F_N = mkN "cruciabilitas" "cruciabilitatis " feminine ; -- [XXXFO] :: torment, torture; agony; + cruciabilitas_F_N = mkN "cruciabilitas" "cruciabilitatis" feminine ; -- [XXXFO] :: torment, torture; agony; cruciabiliter_Adv = mkAdv "cruciabiliter" ; -- [XXXFO] :: with torture; (excruciatingly?); cruciabundus_A = mkA "cruciabundus" "cruciabunda" "cruciabundum" ; -- [DXXFS] :: tormenting, torturing; painful; agonizing; - cruciamen_N_N = mkN "cruciamen" "cruciaminis " neuter ; -- [DXXFS] :: torture, torment, pain; + cruciamen_N_N = mkN "cruciamen" "cruciaminis" neuter ; -- [DXXFS] :: torture, torment, pain; cruciamentum_N_N = mkN "cruciamentum" ; -- [XXXEO] :: torture, torment; pain; cruciarius_A = mkA "cruciarius" "cruciaria" "cruciarium" ; -- [DEXFS] :: of/pertaining to the cross/torture; full of torture (L+S); cruciarius_M_N = mkN "cruciarius" ; -- [XXXDO] :: crucified person; one deserving crucifixion/fit for the gallows, gallows-bird; cruciata_F_N = mkN "cruciata" ; -- [FEXDE] :: crusade; - cruciatio_F_N = mkN "cruciatio" "cruciationis " feminine ; -- [DXXFS] :: torturing; torture; - cruciator_M_N = mkN "cruciator" "cruciatoris " masculine ; -- [DXXES] :: tormenter, torturer; + cruciatio_F_N = mkN "cruciatio" "cruciationis" feminine ; -- [DXXFS] :: torturing; torture; + cruciator_M_N = mkN "cruciator" "cruciatoris" masculine ; -- [DXXES] :: tormenter, torturer; 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; + 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); + 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; crucifixus_A = mkA "crucifixus" "crucifixa" "crucifixum" ; -- [DEXEB] :: crucified; crucifixus_M_N = mkN "crucifixus" ; -- [EEXCE] :: crucifix; - crucigramma_N_N = mkN "crucigramma" "crucigrammatis " neuter ; -- [GXXEK] :: crossword puzzle; + crucigramma_N_N = mkN "crucigramma" "crucigrammatis" neuter ; -- [GXXEK] :: crossword puzzle; crucio_V = mkV "cruciare" ; -- [XXXBO] :: torment, torture; cause grief/anguish; crucify; suffer torture/agony; grieve; - crucisignatio_F_N = mkN "crucisignatio" "crucisignationis " feminine ; -- [EEXDE] :: signing with sign of cross; + crucisignatio_F_N = mkN "crucisignatio" "crucisignationis" feminine ; -- [EEXDE] :: signing with sign of cross; 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; 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; + 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; + 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; 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; + 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); @@ -15081,20 +15081,20 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; crumino_V2 = mkV2 (mkV "cruminare") ; -- [DXXFS] :: fill like a purse; - cruor_M_N = mkN "cruor" "cruoris " masculine ; -- [XXXBO] :: |gore; murder/bloodshed/slaughter; blood (general); stream/flow of blood (L+S); + cruor_M_N = mkN "cruor" "cruoris" masculine ; -- [XXXBO] :: |gore; murder/bloodshed/slaughter; blood (general); stream/flow of blood (L+S); cruppellarius_M_N = mkN "cruppellarius" ; -- [XWXFO] :: fighter encased in armor from head to foot; harnessed Gallic combatants (L+S); crupta_F_N = mkN "crupta" ; -- [XXXDX] :: crypt/underground room for rites; vault, grotto, covered gallery/passage/arcade; cruralis_A = mkA "cruralis" "cruralis" "crurale" ; -- [XXXEO] :: of the shin; belonging to the legs (L+S); [fasciae ~ => puttees/leggings]; cruricrepida_M_N = mkN "cruricrepida" ; -- [XXXFO] :: one who has chains clanking about his legs, rattle-shin; slave fighting name; crurifragium_N_N = mkN "crurifragium" ; -- [XXXFE] :: breaking legs of crucified felons; crurifragius_M_N = mkN "crurifragius" ; -- [BXXFS] :: one whose legs/shins are broken; - crus_N_N = mkN "crus" "cruris " neuter ; -- [XBXBO] :: leg; shank; shin; main stem of shrub, stock; upright support of a bridge; - crusma_N_N = mkN "crusma" "crusmatis " neuter ; -- [XDXFO] :: tune, musical air; tune played on a stringed instrument (L+S); + crus_N_N = mkN "crus" "cruris" neuter ; -- [XBXBO] :: leg; shank; shin; main stem of shrub, stock; upright support of a bridge; + crusma_N_N = mkN "crusma" "crusmatis" neuter ; -- [XDXFO] :: tune, musical air; tune played on a stringed instrument (L+S); crusmaticus_A = mkA "crusmaticus" "crusmatica" "crusmaticum" ; -- [DDXFS] :: suitable for playing on a musical instrument; crusta_F_N = mkN "crusta" ; -- [XXXBO] :: |cup holder, embossed work; inlay; plaster/stucco/mosaic work (L+S); crustallinum_N_N = mkN "crustallinum" ; -- [XXXDO] :: vessel made of crystal; crustallinus_A = mkA "crustallinus" "crustallina" "crustallinum" ; -- [XXXCO] :: made of crystal; resembling crystal in appearance/quality; - crustallos_F_N = mkN "crustallos" "crustalli " feminine ; -- [XXXCO] :: ice; rock crystal; crystal drinking cup; crystal-ware (pl.); + crustallos_F_N = mkN "crustallos" "crustalli" feminine ; -- [XXXCO] :: ice; rock crystal; crystal drinking cup; crystal-ware (pl.); crustallum_N_N = mkN "crustallum" ; -- [XXXCO] :: ice; rock crystal; crystal drinking cup; crystal-ware (pl.); crystal-like thing; crustallus_F_N = mkN "crustallus" ; -- [XXXCO] :: ice; rock crystal; crystal drinking cup; crystal-ware (pl.); crustarius_A = mkA "crustarius" "crustaria" "crustarium" ; -- [XXXEO] :: of/pertaining to/selling encrusted/embossed ware (shops); @@ -15107,24 +15107,24 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat crustulum_N_N = mkN "crustulum" ; -- [XXXCO] :: small cake/pastry, cookie; confectionery (L+S); crustum_N_N = mkN "crustum" ; -- [XXXEO] :: pastry, cake; anything baked (L+S); crusulum_N_N = mkN "crusulum" ; -- [XXXFO] :: small leg/shank; - crux_F_N = mkN "crux" "crucis " feminine ; -- [XXXBO] :: cross; hanging tree; impaling stake; crucifixion; torture/torment/trouble/misery + crux_F_N = mkN "crux" "crucis" feminine ; -- [XXXBO] :: cross; hanging tree; impaling stake; crucifixion; torture/torment/trouble/misery crypta_F_N = mkN "crypta" ; -- [XXXCO] :: crypt/underground room for rites; vault, grotto, covered gallery/passage/arcade; cryptarius_M_N = mkN "cryptarius" ; -- [XXXIO] :: crypt-keeper, caretaker of covered gallery where gladiators practiced; crypticus_A = mkA "crypticus" "cryptica" "crypticum" ; -- [DXXFS] :: covered, concealed; - cryptoporticus_F_N = mkN "cryptoporticus" "cryptoporticus " feminine ; -- [XXXFO] :: cloister, covered gallery/passage; vault, hall (L+S); + cryptoporticus_F_N = mkN "cryptoporticus" "cryptoporticus" feminine ; -- [XXXFO] :: cloister, covered gallery/passage; vault, hall (L+S); crysisceptrum_N_N = mkN "crysisceptrum" ; -- [XAXNS] :: small plant from Rhodes; (also called) diacheton; crystallinum_N_N = mkN "crystallinum" ; -- [XXXDO] :: vessel made of crystal; crystallinus_A = mkA "crystallinus" "crystallina" "crystallinum" ; -- [XXXCO] :: made of crystal; resembling crystal in appearance/quality; - crystallion_N_N = mkN "crystallion" "crystallii " neuter ; -- [XAXNO] :: plant; (prob. Plantago psyllium); (also called psyllion L+S); - crystallisatio_F_N = mkN "crystallisatio" "crystallisationis " feminine ; -- [GSXEK] :: crystallization; + crystallion_N_N = mkN "crystallion" "crystallii" neuter ; -- [XAXNO] :: plant; (prob. Plantago psyllium); (also called psyllion L+S); + crystallisatio_F_N = mkN "crystallisatio" "crystallisationis" feminine ; -- [GSXEK] :: crystallization; crystallizo_V = mkV "crystallizare" ; -- [GSXEK] :: crystallize; crystalloides_A = mkA "crystalloides" "crystalloides" "crystalloides" ; -- [XXXFO] :: crystalline; crystal-like (L+S); - crystallos_F_N = mkN "crystallos" "crystalli " feminine ; -- [XXXCO] :: ice; rock crystal; crystal drinking cup; crystal-ware (pl.); + crystallos_F_N = mkN "crystallos" "crystalli" feminine ; -- [XXXCO] :: ice; rock crystal; crystal drinking cup; crystal-ware (pl.); crystallum_N_N = mkN "crystallum" ; -- [XXXCO] :: ice; rock crystal; crystal drinking cup; crystal-ware (pl.); crystal-like thing; crystallus_F_N = mkN "crystallus" ; -- [XXXCO] :: ice; rock crystal; crystal drinking cup; crystal-ware (pl.); cubans_A = mkA "cubans" "cubantis"; -- [XXXDO] :: lying, resting on the ground; low lying; sagging, sloping, liable to subside; - cubatio_F_N = mkN "cubatio" "cubationis " feminine ; -- [XXXFO] :: action of lying down; - cubator_M_N = mkN "cubator" "cubatoris " masculine ; -- [DXXFS] :: one who lies down; + cubatio_F_N = mkN "cubatio" "cubationis" feminine ; -- [XXXFO] :: action of lying down; + cubator_M_N = mkN "cubator" "cubatoris" masculine ; -- [DXXFS] :: one who lies down; cubi_Adv = mkAdv "cubi" ; -- [XXXEO] :: at any place; on any occasion; [w/ne necubi => lest at any place/occasion]; cubicularis_A = mkA "cubicularis" "cubicularis" "cubiculare" ; -- [XXXDO] :: of a bedroom, pertaining to a bedroom; cubicularius_A = mkA "cubicularius" "cubicularia" "cubicularium" ; -- [XXXES] :: of a bedroom, pertaining to a bedroom; @@ -15133,17 +15133,17 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cubiculatus_A = mkA "cubiculatus" "cubiculata" "cubiculatum" ; -- [XWXFS] :: equipped with sleeping apartments/staterooms (ship); cubiculum_N_N = mkN "cubiculum" ; -- [XXXBO] :: |bed (any sort); any room; Emperor's box; inner shrine of temple; tomb/sepulcher cubicus_A = mkA "cubicus" "cubica" "cubicum" ; -- [XSXFO] :: cubic, cubical; of cubes; - cubile_N_N = mkN "cubile" "cubilis " neuter ; -- [XXXBO] :: bed, couch, seat; marriage bed; lair, den, nest, pen, hive of bees; base, bed; - cubital_N_N = mkN "cubital" "cubitalis " neuter ; -- [XXXFO] :: elbow cushion; cushion for leaning on (L+S); + cubile_N_N = mkN "cubile" "cubilis" neuter ; -- [XXXBO] :: bed, couch, seat; marriage bed; lair, den, nest, pen, hive of bees; base, bed; + cubital_N_N = mkN "cubital" "cubitalis" neuter ; -- [XXXFO] :: elbow cushion; cushion for leaning on (L+S); cubitalis_A = mkA "cubitalis" "cubitalis" "cubitale" ; -- [XXXDO] :: cubit long/broad/high; (elbow to finger tip, Roman cubit = 17.4 inches); elbow-; - cubitio_F_N = mkN "cubitio" "cubitionis " feminine ; -- [DXXFS] :: reclining/lying down; + cubitio_F_N = mkN "cubitio" "cubitionis" feminine ; -- [DXXFS] :: reclining/lying down; cubitissim_Adv = mkAdv "cubitissim" ; -- [BXXFS] :: lying down?; cubito_V = mkV "cubitare" ; -- [XXXCO] :: recline, lie down, take rest, sleep; lie down often; lie/sleep (sexual); - cubitor_M_N = mkN "cubitor" "cubitoris " masculine ; -- [XXXFO] :: one who lies down; (on the job); (of an ox refusing to work); + cubitor_M_N = mkN "cubitor" "cubitoris" masculine ; -- [XXXFO] :: one who lies down; (on the job); (of an ox refusing to work); cubitorius_A = mkA "cubitorius" "cubitoria" "cubitorium" ; -- [XXXFO] :: suitable for reclining in at dinner; of a reclining posture (L+S); cubitum_N_N = mkN "cubitum" ; -- [XXXBO] :: elbow; forearm; ulna; cubit (length - 17.4 inches); elbow bend/pipe; cubitura_F_N = mkN "cubitura" ; -- [XXXFO] :: state/action of reclining/lying down/taking rest; bed, couch; - cubitus_M_N = mkN "cubitus" "cubitus " masculine ; -- [XXXCO] :: state/action of reclining/lying down/taking rest; bed, couch; + 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); @@ -15151,10 +15151,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + cuculio_M_N = mkN "cuculio" "cuculionis" masculine ; -- [XXXFO] :: hood, kind of headgear; cuculla_F_N = mkN "cuculla" ; -- [DXXDS] :: hood, cowl; covering for the head; cap (L+S); conical wrapper/case (goods); cucullatus_A = mkA "cucullatus" "cucullata" "cucullatum" ; -- [DXXFS] :: hooded, having a hood; - cucullio_M_N = mkN "cucullio" "cucullionis " masculine ; -- [XXXFO] :: hood, kind of headgear; + cucullio_M_N = mkN "cucullio" "cucullionis" masculine ; -- [XXXFO] :: hood, kind of headgear; cuculliunculum_N_N = mkN "cuculliunculum" ; -- [XXXFO] :: small hood; cucullus_M_N = mkN "cucullus" ; -- [XAXNO] :: plant; strychnon; (of the nightshade family); cuculo_V = mkV "cuculare" ; -- [XAXFO] :: utter the cry of the cuckoo; @@ -15163,23 +15163,23 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cucumella_F_N = mkN "cucumella" ; -- [XXXFO] :: small vessel/kettle; cucumeraceus_A = mkA "cucumeraceus" "cucumeracea" "cucumeraceum" ; -- [DAXFS] :: cucumber-like; of a cucumber; cucumerarium_N_N = mkN "cucumerarium" ; -- [DAXFS] :: cucumber field; (translation of the Hebrew); - cucumis_M_N = mkN "cucumis" "cucumeris " masculine ; -- [XAXCS] :: cucumber (plant/fruit); kind of marine animal (sea cucumber?); - cucumis_N_N = mkN "cucumis" "cucumeris " neuter ; -- [FAXEK] :: cucumber; + cucumis_M_N = mkN "cucumis" "cucumeris" masculine ; -- [XAXCS] :: cucumber (plant/fruit); kind of marine animal (sea cucumber?); + cucumis_N_N = mkN "cucumis" "cucumeris" neuter ; -- [FAXEK] :: cucumber; cucumula_F_N = mkN "cucumula" ; -- [XXXFO] :: cooking vessel (small); cucurbita_F_N = mkN "cucurbita" ; -- [XXXDX] :: gourd (plant/fruit) (Cucurbitaceae); dolt/pumpkin-head; cup, cupping-glass; cucurbitarius_M_N = mkN "cucurbitarius" ; -- [DAXFS] :: gourd planter; - cucurbitatio_F_N = mkN "cucurbitatio" "cucurbitationis " feminine ; -- [DBXFS] :: cupping; (medical); + cucurbitatio_F_N = mkN "cucurbitatio" "cucurbitationis" feminine ; -- [DBXFS] :: cupping; (medical); cucurbitinus_A = mkA "cucurbitinus" "cucurbitina" "cucurbitinum" ; -- [XAXEO] :: variety of pear or fig, (gourd-pear); gourd-like, gourd-; 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); + 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); + 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; cujas_A = mkA "cujas" "cujatis"; -- [XXXCO] :: of what country/town/locality?; whence? (L+S); @@ -15196,12 +15196,12 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat culcitelia_F_N = mkN "culcitelia" ; -- [XXXES] :: small/little stuffed mattress/cushion (for a bed/couch); culcitra_F_N = mkN "culcitra" ; -- [XXXCO] :: stuffed (feathers/wool/hair) mattress/pillow/cushion for a bed/couch; eye patch; culcitula_F_N = mkN "culcitula" ; -- [XXXCO] :: small/little stuffed mattress/cushion (for a bed/couch); - culculare_N_N = mkN "culculare" "culcularis " neuter ; -- [DAXFS] :: fly-net, mosquito net; screen; + culculare_N_N = mkN "culculare" "culcularis" neuter ; -- [DAXFS] :: fly-net, mosquito net; screen; culearis_A = mkA "culearis" "culearis" "culeare" ; -- [XSXES] :: holding a culleus; (20 amphorae); (120 gallons); culeus_M_N = mkN "culeus" ; -- [XLXCO] :: |leather sack in which parricides were sewn up and drowned; this punishment; - culex_M_N = mkN "culex" "culicis " masculine ; -- [DAXFS] :: plant (unidentified); + culex_M_N = mkN "culex" "culicis" masculine ; -- [DAXFS] :: plant (unidentified); culibonia_F_N = mkN "culibonia" ; -- [XXXFD] :: prostitute offering anal intercourse; (rude); - culicare_N_N = mkN "culicare" "culicaris " neuter ; -- [FXXEK] :: screen; + culicare_N_N = mkN "culicare" "culicaris" neuter ; -- [FXXEK] :: screen; culicellus_M_N = mkN "culicellus" ; -- [XAXFO] :: tiny gnat; (or insignificant person); culiculus_M_N = mkN "culiculus" ; -- [XAXFS] :: tiny gnat; (or insignificant person); culigna_F_N = mkN "culigna" ; -- [XXXDO] :: small vessel/cup; cupful; @@ -15211,26 +15211,26 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat culinarius_A = mkA "culinarius" "culinaria" "culinarium" ; -- [XXXES] :: of/pertaining to the kitchen, culinary, kitchen-; culinarius_M_N = mkN "culinarius" ; -- [XXXFO] :: kitchen servant; culiola_F_N = mkN "culiola" ; -- [XXXFD] :: prostitute offering anal intercourse; (rude); - culix_M_N = mkN "culix" "culicis " masculine ; -- [XAXNO] :: plant (unidentified); + culix_M_N = mkN "culix" "culicis" masculine ; -- [XAXNO] :: plant (unidentified); cullearis_A = mkA "cullearis" "cullearis" "culleare" ; -- [XSXEO] :: holding a culleus; (20 amphorae); (120 gallons); cullearius_M_N = mkN "cullearius" ; -- [XXXIO] :: maker/seller of leather sacks (cullei); culleum_N_N = mkN "culleum" ; -- [XLXCO] :: |leather sack in which parricides were sewn up and drowned; this punishment; culleus_M_N = mkN "culleus" ; -- [XLXCO] :: |leather sack in which parricides were sewn up and drowned; this punishment; culliolum_N_N = mkN "culliolum" ; -- [XXXFO] :: small leather sack?; skin of a green nut/walnut?; cullus_M_N = mkN "cullus" ; -- [XWXFO] :: type of windlass using leather; - culmen_N_N = mkN "culmen" "culminis " neuter ; -- [XXXBO] :: height/peak/top/summit/zenith; roof, gable, ridge-pole; head, chief; "keystone"; + culmen_N_N = mkN "culmen" "culminis" neuter ; -- [XXXBO] :: height/peak/top/summit/zenith; roof, gable, ridge-pole; head, chief; "keystone"; culmeus_A = mkA "culmeus" "culmea" "culmeum" ; -- [DAXFS] :: of straw; culminalis_A = mkA "culminalis" "culminalis" "culminale" ; -- [XEXIO] :: of the heights; (perh. of Jupiter); - culminatio_F_N = mkN "culminatio" "culminationis " feminine ; -- [GSXEK] :: culmination (astronomy); + culminatio_F_N = mkN "culminatio" "culminationis" feminine ; -- [GSXEK] :: culmination (astronomy); culmosus_A = mkA "culmosus" "culmosa" "culmosum" ; -- [DAXFS] :: stalk-like; [~ fratres => stalk-like brothers => sprung from the dragon teeth]; 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; 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; + 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); + culpatio_F_N = mkN "culpatio" "culpationis" feminine ; -- [XXXDO] :: censure, rebuke; reproach, blame (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; @@ -15241,33 +15241,33 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cultellulus_M_N = mkN "cultellulus" ; -- [DXXFS] :: little/small knife; cultellus_M_N = mkN "cultellus" ; -- [XXXCO] :: little/small knife; peg/pin; dagger (Bee); culter_M_N = mkN "culter" ; -- [XXXBO] :: knife; (weapon/sacrificial/hunt); pruner edge; spear point; plowshare (L+S); - cultio_F_N = mkN "cultio" "cultionis " feminine ; -- [XAXFS] :: |veneration/reverence - cultor_M_N = mkN "cultor" "cultoris " masculine ; -- [XAXBO] :: inhabitant; husbandman/planter/grower; supporter; worshiper; who has interest; + cultio_F_N = mkN "cultio" "cultionis" feminine ; -- [XAXFS] :: |veneration/reverence + cultor_M_N = mkN "cultor" "cultoris" masculine ; -- [XAXBO] :: inhabitant; husbandman/planter/grower; supporter; worshiper; who has interest; cultrarius_M_N = mkN "cultrarius" ; -- [XEXEO] :: official at sacrifice who wields the knife; slayer of the victim (L+S); cultratus_A = mkA "cultratus" "cultrata" "cultratum" ; -- [XXXNO] :: knife-shaped, shaped like a knife; - cultrix_F_N = mkN "cultrix" "cultricis " feminine ; -- [XXXCO] :: female inhabitant/planter; worshiper/adherent/devotee; she who follows/promotes; + cultrix_F_N = mkN "cultrix" "cultricis" feminine ; -- [XXXCO] :: female inhabitant/planter; worshiper/adherent/devotee; she who follows/promotes; cultualis_A = mkA "cultualis" "cultualis" "cultuale" ; -- [FEXEE] :: liturgical, of worship/cult; 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; 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; + 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; - cumatile_N_N = mkN "cumatile" "cumatilis " neuter ; -- [BXXFS] :: bluish garment; + cuma_N_N = mkN "cuma" "cumatis" neuter ; -- [XAXCS] :: spring shoots of cabbage/similar; hollow sphere (L+S); spherical layer, stratum; + cumatile_N_N = mkN "cumatile" "cumatilis" neuter ; -- [BXXFS] :: bluish garment; cumatilis_A = mkA "cumatilis" "cumatilis" "cumatile" ; -- [XXXEO] :: wave/sea colored; water-colored, blue (L+S); of the waves; [deus ~ => Neptune]; - cumation_N_N = mkN "cumation" "cumatii " neuter ; -- [XTXDS] :: molding; (esp. echinus of Ionic capital); channel, waved molding on ogee (L+S) + cumation_N_N = mkN "cumation" "cumatii" neuter ; -- [XTXDS] :: molding; (esp. echinus of Ionic capital); channel, waved molding on ogee (L+S) cumatium_N_N = mkN "cumatium" ; -- [XTXDO] :: molding; (esp. echinus of Ionic capital); channel, waved molding on ogee (L+S) cumba_F_N = mkN "cumba" ; -- [XWXCO] :: skiff, small boat; (esp. that in which Charon ferried the dead across the Styx); 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); - cumi_V = constV "cumi" ; -- [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); @@ -15275,15 +15275,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cummaxime_Adv = mkAdv "cummaxime" ; -- [XXXCO] :: at the/this/that very moment; most particularly; 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; + 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 = 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; + cumulatio_F_N = mkN "cumulatio" "cumulationis" feminine ; -- [FXXEE] :: accumulation; cumulativus_A = mkA "cumulativus" "cumulativa" "cumulativum" ; -- [FXXEE] :: cumulative; accruing; 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; @@ -15295,16 +15295,16 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cuncta_F_N = mkN "cuncta" ; -- [XXXCO] :: all (pl.) (F); all with a stated/implied exception; cunctabundus_A = mkA "cunctabundus" "cunctabunda" "cunctabundum" ; -- [XXXDO] :: lingering, loitering; slow to action, delaying, hesitating, hesitant; tardy; cunctalis_A = mkA "cunctalis" "cunctalis" "cunctale" ; -- [DXXFS] :: general; - cunctamen_N_N = mkN "cunctamen" "cunctaminis " neuter ; -- [DXXFS] :: delay, delaying, hesitating, hesitation; + cunctamen_N_N = mkN "cunctamen" "cunctaminis" neuter ; -- [DXXFS] :: delay, delaying, hesitating, hesitation; cunctans_A = mkA "cunctans" "cunctantis"; -- [XXXCO] :: hesitant/delaying/slow to act, tardy; clinging; stubborn, resistant to movement; cunctanter_Adv =mkAdv "cunctanter" "cunctius" "cunctissime" ; -- [XXXCO] :: hesitantly, slowly, with delay/hesitation; tardily; stubbornly; - 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; + 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; 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; + cunctiparens_M_N = mkN "cunctiparens" "cunctiparentis" masculine ; -- [DXXFS] :: parent of all; cunctipotens_A = mkA "cunctipotens" "cunctipotentis"; -- [DEXFS] :: omnipotent, all-powerful; cuncto_V = mkV "cunctare" ; -- [XXXDO] :: delay, impede, hold up; hesitate, tarry, linger; be slow to act; dawdle; doubt; cunctor_V = mkV "cunctari" ; -- [XXXBO] :: delay, impede, hold up; hesitate, tarry, linger; be slow to act; dawdle; doubt; @@ -15313,7 +15313,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cunctus_M_N = mkN "cunctus" ; -- [XXXCO] :: all (pl.) (M); all with a stated/implied exception; 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); + 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); cuneiformis_A = mkA "cuneiformis" "cuneiformis" "cuneiforme" ; -- [GXXEK] :: cuneiformed; cunela_F_N = mkN "cunela" ; -- [XAXDO] :: plant (genus Cetera, savory); (also called canal and origanum L+S); @@ -15324,16 +15324,16 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cunicularis_A = mkA "cunicularis" "cunicularis" "cuniculare" ; -- [DAXFS] :: of/pertaining to the rabbit, rabbit-; (of an herb); cunicularius_M_N = mkN "cunicularius" ; -- [DWXES] :: miner; (military slang); (burrows like a rabbit); cuniculatim_Adv = mkAdv "cuniculatim" ; -- [XXXNS] :: in channels; - cuniculator_M_N = mkN "cuniculator" "cuniculatoris " masculine ; -- [DWXFS] :: miner; (burrows like a rabbit); + cuniculator_M_N = mkN "cuniculator" "cuniculatoris" masculine ; -- [DWXFS] :: miner; (burrows like a rabbit); cuniculatus_A = mkA "cuniculatus" "cuniculata" "cuniculatum" ; -- [XXXFS] :: in the form of a channel or tube; cuniculosus_A = mkA "cuniculosus" "cuniculosa" "cuniculosum" ; -- [XAXFO] :: abounding in rabbits, full of rabbits; full of/abounding in caves/burrows (L+S); cuniculum_N_N = mkN "cuniculum" ; -- [XBXFD] :: excrement, filth; (fluxus ventris); (menstrual discharge?); 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); + 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; + 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; cunnus_M_N = mkN "cunnus" ; -- [XXXDX] :: female pudenda/external genitalia; a female; unchaste woman; (rude); cunula_F_N = mkN "cunula" ; -- [XAXDO] :: plant (genus Satureia, savory); (also called conila and origanum L+S); @@ -15342,27 +15342,27 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cupedia_F_N = mkN "cupedia" ; -- [XXXEO] :: gourmandism; fondness for dainties (L+S); daintiness; delicacies (pl.); cupedinarius_A = mkA "cupedinarius" "cupedinaria" "cupedinarium" ; -- [XXXES] :: of/pertaining to dainty dishes/delicacies; [forem ~ => delicacy market in Rome]; cupedium_N_N = mkN "cupedium" ; -- [XXXEO] :: delicacy, tidbit; (usu. pl.) delicacies; dainty dishes, tidbits (L+S); - cupedo_F_N = mkN "cupedo" "cupedinis " feminine ; -- [XXXEO] :: delicacy; desire; [forem ~ => delicacy market in Rome]; - cupedo_M_N = mkN "cupedo" "cupedinis " masculine ; -- [XXXEO] :: delicacy; desire; [forem ~ => delicacy market in Rome]; + cupedo_F_N = mkN "cupedo" "cupedinis" feminine ; -- [XXXEO] :: delicacy; desire; [forem ~ => delicacy market in Rome]; + cupedo_M_N = mkN "cupedo" "cupedinis" masculine ; -- [XXXEO] :: delicacy; desire; [forem ~ => delicacy market in Rome]; cupella_F_N = mkN "cupella" ; -- [XXXES] :: small vat/cask; cupes_A = mkA "cupes" "cupedis"; -- [XXXES] :: gluttonous; fond of delicacies (L+S); dainty; cupide_Adv =mkAdv "cupide" "cupidius" "cupidissime" ; -- [XXXCO] :: eagerly/zealously/passionately; w/alacrity; hastily/rashly; partially/unfairly; - cupiditas_F_N = mkN "cupiditas" "cupiditatis " feminine ; -- [XXXBO] :: enthusiasm/eagerness/passion; (carnal) desire; lust; greed/usury/fraud; ambition + cupiditas_F_N = mkN "cupiditas" "cupiditatis" feminine ; -- [XXXBO] :: enthusiasm/eagerness/passion; (carnal) desire; lust; greed/usury/fraud; ambition 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; + 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; 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; + 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; + 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; cupitus_A = mkA "cupitus" "cupita" "cupitum" ; -- [XXXCO] :: much desired/longed for; cupitus_M_N = mkN "cupitus" ; -- [XXXDO] :: beloved, loved one; cupla_F_N = mkN "cupla" ; -- [DXXES] :: |friendly/close relationship, bond, intimate connection; (used in grammar); - cupo_M_N = mkN "cupo" "cuponis " masculine ; -- [XXXCS] :: shopkeeper, salesman, huckster; innkeeper, keeper of a tavern; + cupo_M_N = mkN "cupo" "cuponis" masculine ; -- [XXXCS] :: shopkeeper, salesman, huckster; innkeeper, keeper of a tavern; cupona_F_N = mkN "cupona" ; -- [DXXCS] :: landlady; (female) shopkeeper, innkeeper; inn, tavern, lodging-house; cuppa_F_N = mkN "cuppa" ; -- [XXXCO] :: barrel, cask, tun; niche in a columbarium (for ashes); cuppedenarius_M_N = mkN "cuppedenarius" ; -- [XXXEO] :: confectioner; maker/seller of delicacies; @@ -15370,15 +15370,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cuppedinarius_A = mkA "cuppedinarius" "cuppedinaria" "cuppedinarium" ; -- [XXXES] :: of/pertaining to dainty dishes/delicacies; [forem ~ => delicacy market in Rome]; cuppedinarius_M_N = mkN "cuppedinarius" ; -- [XXXEO] :: confectioner; maker/seller of delicacies; cuppedium_N_N = mkN "cuppedium" ; -- [XXXEO] :: delicacy, tidbit; (usu. pl.) delicacies; dainty dishes, tidbits (L+S); - cuppedo_F_N = mkN "cuppedo" "cuppedinis " feminine ; -- [XXXEO] :: |delicacy; desire; [forem ~ => delicacy market in Rome]; - cuppedo_M_N = mkN "cuppedo" "cuppedinis " masculine ; -- [XXXEO] :: |delicacy; desire; [forem ~ => delicacy market in Rome]; + cuppedo_F_N = mkN "cuppedo" "cuppedinis" feminine ; -- [XXXEO] :: |delicacy; desire; [forem ~ => delicacy market in Rome]; + cuppedo_M_N = mkN "cuppedo" "cuppedinis" masculine ; -- [XXXEO] :: |delicacy; desire; [forem ~ => delicacy market in Rome]; cuppes_A = mkA "cuppes" "cuppedis"; -- [XXXEO] :: gluttonous; fond of delicacies (L+S); dainty; cuppula_F_N = mkN "cuppula" ; -- [XXXEO] :: small barrel/cask/tub; niche in a columbarium (for ashes); small burying vault; cupressetum_N_N = mkN "cupressetum" ; -- [XAXEO] :: cypress wood/grove/plantation; cupresseus_A = mkA "cupresseus" "cupressea" "cupresseum" ; -- [XAXDO] :: of cypress; of/belonging to cypress trees; made of cypress wood; cypress-; cupressifer_A = mkA "cupressifer" "cupressifera" "cupressiferum" ; -- [XAXEO] :: cypress-bearing; cupressinus_A = mkA "cupressinus" "cupressina" "cupressinum" ; -- [XAXEO] :: of cypress; of/belonging to cypress trees; made of cypress wood; cypress-; - cupressus_F_N = mkN "cupressus" "cupressus " feminine ; -- [XAXCO] :: cypress-tree; cypress oil/wood, cypress-wood casket, spear of cypress-wood; + cupressus_F_N = mkN "cupressus" "cupressus" feminine ; -- [XAXCO] :: cypress-tree; cypress oil/wood, cypress-wood casket, spear of cypress-wood; cupreus_A = mkA "cupreus" "cuprea" "cupreum" ; -- [DXXES] :: copper-. of copper; cuprinus_A = mkA "cuprinus" "cuprina" "cuprinum" ; -- [DXXES] :: copper-. of copper; cupula_F_N = mkN "cupula" ; -- [XXXFS] :: small crooked handle; @@ -15386,45 +15386,45 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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); + curans_M_N = mkN "curans" "curantis" masculine ; -- [XBXEO] :: one who treats a patient; physician (L+S); curara_F_N = mkN "curara" ; -- [GXXEK] :: curare; curate_Adv =mkAdv "curate" "curatius" "curatissime" ; -- [XXXEO] :: carefully, with care; diligently; elaborately; curatela_F_N = mkN "curatela" ; -- [FXXEE] :: guardianship; - curatio_F_N = mkN "curatio" "curationis " feminine ; -- [XXXBO] :: |administration, management, taking charge; office charged with duties; - curator_M_N = mkN "curator" "curatoris " masculine ; -- [XXXDX] :: manager, superintendent, supervisor, overseer; keeper; guardian (of minor/ward); + curatio_F_N = mkN "curatio" "curationis" feminine ; -- [XXXBO] :: |administration, management, taking charge; office charged with duties; + curator_M_N = mkN "curator" "curatoris" masculine ; -- [XXXDX] :: manager, superintendent, supervisor, overseer; keeper; guardian (of minor/ward); curatoria_F_N = mkN "curatoria" ; -- [DLXES] :: guardian; (of minor/woman/imbecile); trustee; (for absent person); curatoricius_A = mkA "curatoricius" "curatoricia" "curatoricium" ; -- [DXXFS] :: of/belonging to an overseer; [equi ~ => horses of the provincial commissary]; curatoritius_A = mkA "curatoritius" "curatoritia" "curatoritium" ; -- [DXXFS] :: of/belonging to an overseer; [equi ~ => horses of the provincial commissary]; 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); + 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 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; + 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); - cures_F_N = mkN "cures" "curis " feminine ; -- [XWXEO] :: spear; (Sabine word); + cures_F_N = mkN "cures" "curis" feminine ; -- [XWXEO] :: spear; (Sabine word); curia_F_N = mkN "curia" ; -- [XLIBO] :: senate; meeting house; curia/division of Roman people; court (Papal/royal); curialis_A = mkA "curialis" "curialis" "curiale" ; -- [XLIDO] :: of/belonging/pertaining to a curia (district/division of the Roman people); - curialis_M_N = mkN "curialis" "curialis " masculine ; -- [XLIDO] :: member of the same curia (district/division of the Roman people); - curialitas_F_N = mkN "curialitas" "curialitatis " feminine ; -- [FXXFM] :: courtesy; courtliness; + curialis_M_N = mkN "curialis" "curialis" masculine ; -- [XLIDO] :: member of the same curia (district/division of the Roman people); + curialitas_F_N = mkN "curialitas" "curialitatis" feminine ; -- [FXXFM] :: courtesy; courtliness; curiatim_Adv = mkAdv "curiatim" ; -- [XXXDX] :: by curia (the 30 divisions of the Roman people); curiatius_A = mkA "curiatius" "curiatia" "curiatium" ; -- [XLIIO] :: of curiae; (w/Comitia) (pl.) assembly in which people voted according to curia; curiatus_A = mkA "curiatus" "curiata" "curiatum" ; -- [XLICO] :: of curiae; (w/Comitia) (pl.) assembly in which people voted according to curia; curilis_A = mkA "curilis" "curilis" "curile" ; -- [DXXFS] :: of/belonging/pertaining to chariots/chariot race; curio_A = mkA "curio" "curionis"; -- [BXXFS] :: lean, emaciated; wasted by sorrow; (pun on curiosus); - curio_M_N = mkN "curio" "curionis " masculine ; -- [XEIEO] :: priest presiding over a curia; crier/herald; [~ maximus => chief of this sect]; - curionatus_M_N = mkN "curionatus" "curionatus " masculine ; -- [XEIFO] :: office of curio (priest presiding over a curia); + curio_M_N = mkN "curio" "curionis" masculine ; -- [XEIEO] :: priest presiding over a curia; crier/herald; [~ maximus => chief of this sect]; + curionatus_M_N = mkN "curionatus" "curionatus" masculine ; -- [XEIFO] :: office of curio (priest presiding over a curia); curionius_A = mkA "curionius" "curionia" "curionium" ; -- [XEXFS] :: of/pertaining to the priest of a curia; curionus_M_N = mkN "curionus" ; -- [XEIFO] :: priest presiding over a curia; crier/herald; [~ maximus => chief of this sect]; 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; + 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; 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); + 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); curius_A = mkA "curius" "curia" "curium" ; -- [BXXFS] :: grievous; full of sorrow; curo_V = mkV "curare" ; -- [XXXAO] :: |undertake; procure; regard w/anxiety/interest; take trouble/interest; desire; @@ -15434,72 +15434,72 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; - cursilitas_F_N = mkN "cursilitas" "cursilitatis " feminine ; -- [DXXFS] :: running about (act/action of); + 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; + cursilitas_F_N = mkN "cursilitas" "cursilitatis" feminine ; -- [DXXFS] :: running about (act/action of); cursim_Adv = mkAdv "cursim" ; -- [XXXDX] :: swiftly/rapidly; hastily, without great pain, cursorily; in passing; at the run; - cursio_F_N = mkN "cursio" "cursionis " feminine ; -- [XXXFO] :: action of running; - cursitatio_F_N = mkN "cursitatio" "cursitationis " feminine ; -- [DXXFS] :: running about to-and-fro/hither-and-thither (act/action of); + cursio_F_N = mkN "cursio" "cursionis" feminine ; -- [XXXFO] :: action of running; + cursitatio_F_N = mkN "cursitatio" "cursitationis" feminine ; -- [DXXFS] :: running about to-and-fro/hither-and-thither (act/action of); cursito_V = mkV "cursitare" ; -- [XXXCO] :: run about/to-and-fro/habitually; race/run races; resort frequently; be in motion cursivus_A = mkA "cursivus" "cursiva" "cursivum" ; -- [GGXEK] :: cursive print, italic print; curso_V = mkV "cursare" ; -- [XXXCO] :: run/rush/hurry to-and-fro/hither-and-thither; run constantly about; run over; - cursor_M_N = mkN "cursor" "cursoris " masculine ; -- [GXXEK] :: |cursor (of an instrument); + cursor_M_N = mkN "cursor" "cursoris" masculine ; -- [GXXEK] :: |cursor (of an instrument); cursoria_F_N = mkN "cursoria" ; -- [DWXFS] :: yacht, cutter; cursorium_N_N = mkN "cursorium" ; -- [DXXFS] :: mail, public post; cursorius_A = mkA "cursorius" "cursoria" "cursorium" ; -- [DXXFS] :: of/pertaining to running/race course; cursualis_A = mkA "cursualis" "cursualis" "cursuale" ; -- [DXXDS] :: hasty/speedy; of running/course; post-; postal; [equi ~ => post-horses]; cursura_F_N = mkN "cursura" ; -- [XXXEO] :: running; (esp. in a race); - cursus_M_N = mkN "cursus" "cursus " masculine ; -- [GXXEK] :: ||lesson; + cursus_M_N = mkN "cursus" "cursus" masculine ; -- [GXXEK] :: ||lesson; curtisanus_M_N = mkN "curtisanus" ; -- [GXXEK] :: courtier; curto_V2 = mkV2 (mkV "curtare") ; -- [XAXCO] :: shorten, cut short, abbreviate; diminish; circumcise; geld; dock (dog's tail); curtus_A = mkA "curtus" "curta" "curtum" ; -- [XAXCO] :: mutilated; incomplete, missing a part; circumcised; castrated, gelded; docked; curulis_A = mkA "curulis" "curulis" "curule" ; -- [DXXFS] :: |of/belonging/pertaining to chariots/chariot race; of ceremonial chariot; - curulis_M_N = mkN "curulis" "curulis " masculine ; -- [XLXDO] :: curule magistrate; (perh. aedile); + curulis_M_N = mkN "curulis" "curulis" masculine ; -- [XLXDO] :: curule magistrate; (perh. aedile); curvabilis_A = mkA "curvabilis" "curvabilis" "curvabile" ; -- [DXXFS] :: flexible; that may be bent; - curvamen_N_N = mkN "curvamen" "curvaminis " neuter ; -- [XSXCO] :: curvature, curve/bend, bending; curved form/outline; arc (of the sky); vaulting; - curvatio_F_N = mkN "curvatio" "curvationis " feminine ; -- [XSXEO] :: curvature; bend; + curvamen_N_N = mkN "curvamen" "curvaminis" neuter ; -- [XSXCO] :: curvature, curve/bend, bending; curved form/outline; arc (of the sky); vaulting; + 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; + 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; - curvor_M_N = mkN "curvor" "curvoris " masculine ; -- [XSXFO] :: curvature; crookedness (L+S); + curvor_M_N = mkN "curvor" "curvoris" masculine ; -- [XSXFO] :: curvature; crookedness (L+S); curvum_N_N = mkN "curvum" ; -- [XSXDO] :: curve; curved object or line; that which is crooked/wrong (L+S); (morally); curvus_A = mkA "curvus" "curva" "curvum" ; -- [XXXBX] :: curved/bent/arched; crooked; morally wrong; stooped/bowed; winding; w/many bends cuscolium_N_N = mkN "cuscolium" ; -- [XAXNS] :: excrescence on kind of holm oak used for scarlet dye; berry of the oak (L+S); cusculium_N_N = mkN "cusculium" ; -- [XAXNO] :: excrescence on kind of holm oak used for scarlet dye; berry of the oak (L+S); cuscussum_N_N = mkN "cuscussum" ; -- [GXXEK] :: couscous; (Moroccan food); - cusio_F_N = mkN "cusio" "cusionis " feminine ; -- [DLXFS] :: stamping of money; (coining?); + cusio_F_N = mkN "cusio" "cusionis" feminine ; -- [DLXFS] :: stamping of money; (coining?); cuso_V2 = mkV2 (mkV "cusare") ; -- [DLXFS] :: coin/stamp money; cuspidatim_Adv = mkAdv "cuspidatim" ; -- [XXXNO] :: like a spear-point; to a point; with a point (L+S); cuspido_V2 = mkV2 (mkV "cuspidare") ; -- [XXXNO] :: tip, provide with a point; make pointed (L+S); - cuspis_F_N = mkN "cuspis" "cuspidis " feminine ; -- [XWXBO] :: point/tip (spear), pointed end; spit/stake; blade; javelin/spear/lance; sting; + cuspis_F_N = mkN "cuspis" "cuspidis" feminine ; -- [XWXBO] :: point/tip (spear), pointed end; spit/stake; blade; javelin/spear/lance; sting; cussiliris_A = mkA "cussiliris" "cussiliris" "cussilire" ; -- [BXXFO] :: lazy/idle/sluggish; spiritless; cowardly, faint-hearted; ignoble, mean; useless; cussinus_M_N = mkN "cussinus" ; -- [FXXEE] :: cushion; custodela_F_N = mkN "custodela" ; -- [XLXDO] :: custody (of person/thing), charge, keeping; watch. guard, care (L+S); 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 + 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; + 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; 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; + 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; cutitus_A = mkA "cutitus" "cutita" "cutitum" ; -- [XXXFO] :: skinned, skinable; (used in sense of having sexual intercourse); - cyamias_F_N = mkN "cyamias" "cyamiae " feminine ; -- [XXXNO] :: precious stone (unidentified); beanstone (L+S); - cyamos_M_N = mkN "cyamos" "cyami " masculine ; -- [XAENO] :: Egyptian bean (Nelumbium speciosum); (also called colocasia L+S); + cyamias_F_N = mkN "cyamias" "cyamiae" feminine ; -- [XXXNO] :: precious stone (unidentified); beanstone (L+S); + cyamos_M_N = mkN "cyamos" "cyami" masculine ; -- [XAENO] :: Egyptian bean (Nelumbium speciosum); (also called colocasia L+S); cyamus_M_N = mkN "cyamus" ; -- [XAENS] :: Egyptian bean (Nelumbium speciosum); (also called colocasia L+S); cyanea_F_N = mkN "cyanea" ; -- [FXXES] :: Cyanea; two rocky islands at Pontus Euxinus; cyaneus_A = mkA "cyaneus" "cyanea" "cyaneum" ; -- [XXXNO] :: dark blue; sea blue (L+S); - cyanos_F_N = mkN "cyanos" "cyani " feminine ; -- [XXXNO] :: precious stone (like lapis-lazuli); blue cornflower/blue-bottle Centaurea cyanus + cyanos_F_N = mkN "cyanos" "cyani" feminine ; -- [XXXNO] :: precious stone (like lapis-lazuli); blue cornflower/blue-bottle Centaurea cyanus cyanus_F_N = mkN "cyanus" ; -- [XXXNO] :: precious stone (like lapis-lazuli); blue cornflower/blue-bottle Centaurea cyanus cyathiscus_M_N = mkN "cyathiscus" ; -- [XBXFO] :: kind of forceps; cyathisso_V = mkV "cyathissare" ; -- [XXXFO] :: ladle out wine; fill a cyathus/ladle (L+S); @@ -15510,120 +15510,120 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cyberneticus_A = mkA "cyberneticus" "cybernetica" "cyberneticum" ; -- [HSXEK] :: cybernetic; cybiarius_M_N = mkN "cybiarius" ; -- [DXXFS] :: dealer in salt fish; (dubious); cybicus_A = mkA "cybicus" "cybica" "cybicum" ; -- [XSXFO] :: cubic, cubical; of cubes; - cybindis_F_N = mkN "cybindis" "cybindidis " feminine ; -- [XAXNO] :: nocturnal bird of prey; night hawk (L+S); - cybion_N_N = mkN "cybion" "cybii " neuter ; -- [XAXCS] :: young tunny; chopped and salted pieces of young tunnyfish; + cybindis_F_N = mkN "cybindis" "cybindidis" feminine ; -- [XAXNO] :: nocturnal bird of prey; night hawk (L+S); + cybion_N_N = mkN "cybion" "cybii" neuter ; -- [XAXCS] :: young tunny; chopped and salted pieces of young tunnyfish; cybium_N_N = mkN "cybium" ; -- [XAXCO] :: young tunny; chopped and salted pieces of young tunnyfish; cybus_M_N = mkN "cybus" ; -- [XSXDO] :: cube (geometric figure), die/dice; lump; cubic number; - cyceon_M_N = mkN "cyceon" "cyceonis " masculine ; -- [DXXFS] :: drink made with barley-grits and grated goat-cheese and wine; + cyceon_M_N = mkN "cyceon" "cyceonis" masculine ; -- [DXXFS] :: drink made with barley-grits and grated goat-cheese and wine; cychramus_M_N = mkN "cychramus" ; -- [XAXNO] :: bird accompanying quail on migration; (perh. corncrake/landrail); (ortolan L+S); cycladatus_A = mkA "cycladatus" "cycladata" "cycladatum" ; -- [XXXFO] :: dressing/dressed in a cyclas (light female outer garment with decorated border); - cyclaminon_N_N = mkN "cyclaminon" "cyclamini " neuter ; -- [XAXES] :: plant cycamen, sowbread; (Cyclamen Europaeum L+S); - cyclaminos_F_N = mkN "cyclaminos" "cyclamini " feminine ; -- [XAXEO] :: plant cycamen, sowbread; (Cyclamen Europaeum L+S); + cyclaminon_N_N = mkN "cyclaminon" "cyclamini" neuter ; -- [XAXES] :: plant cycamen, sowbread; (Cyclamen Europaeum L+S); + cyclaminos_F_N = mkN "cyclaminos" "cyclamini" feminine ; -- [XAXEO] :: plant cycamen, sowbread; (Cyclamen Europaeum L+S); cyclaminum_N_N = mkN "cyclaminum" ; -- [XAXEO] :: plant cycamen, sowbread; (Cyclamen Europaeum L+S); - cyclas_F_N = mkN "cyclas" "cycladis " feminine ; -- [XXXEO] :: female's light outer garment with decorative border; state robe of women (L+S); + cyclas_F_N = mkN "cyclas" "cycladis" feminine ; -- [XXXEO] :: female's light outer garment with decorative border; state robe of women (L+S); cyclicus_A = mkA "cyclicus" "cyclica" "cyclicum" ; -- [XPXFO] :: cyclic; of Epic cycle (poet); (perh.) conventional, commonplace; encyclopedic; cyclophoreticus_A = mkA "cyclophoreticus" "cyclophoretica" "cyclophoreticum" ; -- [DXXFS] :: circular, moving in a circle; cyclus_M_N = mkN "cyclus" ; -- [XXXEE] :: cycle; circle; cycnarium_N_N = mkN "cycnarium" ; -- [XBXIS] :: kind of eye-salve; cycneus_A = mkA "cycneus" "cycnea" "cycneum" ; -- [XAXDO] :: of/pertaining to a swan, swan-like; [vox ~ => swan-song, last utterance]; - cycnion_N_N = mkN "cycnion" "cycnii " neuter ; -- [XBXEO] :: kind of eye-salve; + cycnion_N_N = mkN "cycnion" "cycnii" neuter ; -- [XBXEO] :: kind of eye-salve; cycnium_N_N = mkN "cycnium" ; -- [XBXEO] :: kind of eye-salve; - cycnon_N_N = mkN "cycnon" "cycni " neuter ; -- [XBXEO] :: kind of eye-salve; + cycnon_N_N = mkN "cycnon" "cycni" neuter ; -- [XBXEO] :: kind of eye-salve; cycnus_M_N = mkN "cycnus" ; -- [XAXBO] :: swan; (favorable omen); (drawing chariot of Venus); cydarum_N_N = mkN "cydarum" ; -- [XWXEO] :: kind of small ship; cydonium_N_N = mkN "cydonium" ; -- [DAXNS] :: quince wine/juice; quince (pl.); cydonius_M_N = mkN "cydonius" ; -- [DAXFS] :: quince tree; cygnus_M_N = mkN "cygnus" ; -- [XAXCO] :: swan; (favorable omen); (drawing chariot of Venus); - cyitis_F_N = mkN "cyitis" "cyitidis " feminine ; -- [XXXNO] :: precious stone (unidentified); - cyix_M_N = mkN "cyix" "cyicis " masculine ; -- [XAXNO] :: bulbous plant; + cyitis_F_N = mkN "cyitis" "cyitidis" feminine ; -- [XXXNO] :: precious stone (unidentified); + cyix_M_N = mkN "cyix" "cyicis" masculine ; -- [XAXNO] :: bulbous plant; cylindratus_A = mkA "cylindratus" "cylindrata" "cylindratum" ; -- [XSXNO] :: cylindrical, shaped like a cylinder; cylindricus_A = mkA "cylindricus" "cylindrica" "cylindricum" ; -- [GXXEK] :: cylindrical; cylindrus_M_N = mkN "cylindrus" ; -- [XSXCO] :: cylinder; stone roller (for leveling the ground); gem cut in cylindrical form; cylisterium_N_N = mkN "cylisterium" ; -- [XXXIO] :: kind of exercise room in a bathing establishment; - cylix_F_N = mkN "cylix" "cylicis " feminine ; -- [XXXFO] :: cup; - cylon_N_N = mkN "cylon" "cyli " neuter ; -- [XXXNO] :: kind of azurite; (blue carbonate of copper, valuable ore); + cylix_F_N = mkN "cylix" "cylicis" feminine ; -- [XXXFO] :: cup; + cylon_N_N = mkN "cylon" "cyli" neuter ; -- [XXXNO] :: kind of azurite; (blue carbonate of copper, valuable ore); cyma_F_N = mkN "cyma" ; -- [XAXCO] :: spring shoots of cabbage/similar; hollow sphere (L+S); spherical layer, stratum; - cyma_N_N = mkN "cyma" "cymatis " neuter ; -- [XAXCO] :: spring shoots of cabbage/similar; hollow sphere (L+S); spherical layer, stratum; - cymatile_N_N = mkN "cymatile" "cymatilis " neuter ; -- [BXXFS] :: bluish garment; + cyma_N_N = mkN "cyma" "cymatis" neuter ; -- [XAXCO] :: spring shoots of cabbage/similar; hollow sphere (L+S); spherical layer, stratum; + cymatile_N_N = mkN "cymatile" "cymatilis" neuter ; -- [BXXFS] :: bluish garment; cymatilis_A = mkA "cymatilis" "cymatilis" "cymatile" ; -- [XXXES] :: wave/sea colored; water-colored, blue (L+S); of the waves; [deus ~ => Neptune]; - cymation_N_N = mkN "cymation" "cymatii " neuter ; -- [XTXDS] :: molding; (esp. echinus of Ionic capital); channel, waved molding on ogee (L+S) + cymation_N_N = mkN "cymation" "cymatii" neuter ; -- [XTXDS] :: molding; (esp. echinus of Ionic capital); channel, waved molding on ogee (L+S) cymatium_N_N = mkN "cymatium" ; -- [XTXDO] :: molding; (esp. echinus of Ionic capital); channel, waved molding on ogee (L+S) cymba_F_N = mkN "cymba" ; -- [XWXCO] :: skiff, small boat; (esp. that in which Charon ferried the dead across the Styx); - cymbalaris_F_N = mkN "cymbalaris" "cymbalarisis " feminine ; -- [DAXFS] :: plant; (also called cotyedon); + cymbalaris_F_N = mkN "cymbalaris" "cymbalarisis" feminine ; -- [DAXFS] :: plant; (also called cotyedon); cymbalicus_A = mkA "cymbalicus" "cymbalica" "cymbalicum" ; -- [DDXFS] :: of/pertaining to a cymbal; cymbalisso_V = mkV "cymbalissare" ; -- [XDXFO] :: play/strike the cymbals; cymbalista_M_N = mkN "cymbalista" ; -- [XDXES] :: cymbal-player; - cymbalistes_M_N = mkN "cymbalistes" "cymbalistae " masculine ; -- [XDXEO] :: cymbal-player; + cymbalistes_M_N = mkN "cymbalistes" "cymbalistae" masculine ; -- [XDXEO] :: cymbal-player; cymbalistria_F_N = mkN "cymbalistria" ; -- [XDXEO] :: cymbal-player (female); - cymbalon_N_N = mkN "cymbalon" "cymbali " neuter ; -- [XDXCO] :: cymbal; (term for tedious/stupid speaker); cymbals (usu. pl.); valve; + cymbalon_N_N = mkN "cymbalon" "cymbali" neuter ; -- [XDXCO] :: cymbal; (term for tedious/stupid speaker); cymbals (usu. pl.); valve; cymbalum_N_N = mkN "cymbalum" ; -- [XDXCO] :: cymbal; (term for tedious/stupid speaker); cymbals (usu. pl.); valve; cymbium_N_N = mkN "cymbium" ; -- [XXXCO] :: small cup/bowl/drinking vessel; (especially for wine); lamp in same form (L+S); cymbula_F_N = mkN "cymbula" ; -- [XWXFS] :: small boat; cyminatum_N_N = mkN "cyminatum" ; -- [XXXFS] :: cummin/cumin spice; cyminatus_A = mkA "cyminatus" "cyminata" "cyminatum" ; -- [DXXFS] :: seasoned/mixed with cummin/cumin; - cymindis_F_N = mkN "cymindis" "cymindidis " feminine ; -- [XAXNS] :: nocturnal bird of prey; night hawk (L+S); + cymindis_F_N = mkN "cymindis" "cymindidis" feminine ; -- [XAXNS] :: nocturnal bird of prey; night hawk (L+S); cymininus_A = mkA "cymininus" "cyminina" "cymininum" ; -- [DAXFS] :: of cummin/cumin; (oil); cyminum_N_N = mkN "cyminum" ; -- [XAXCO] :: cummin/cumin (plant/seed); (spice/drug); cymosus_A = mkA "cymosus" "cymosa" "cymosum" ; -- [XAXFO] :: full of/abounding in young sprouts; cymula_F_N = mkN "cymula" ; -- [XTXFO] :: small molding; tender sprout (L+S); cyna_F_N = mkN "cyna" ; -- [XAQNS] :: tree in Arabia that produced cotton; cynacantha_F_N = mkN "cynacantha" ; -- [XAXNO] :: kind of thorn; (perh. dog-rose); - 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; + 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; 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]; - cynifes_F_N = mkN "cynifes" "cynifis " feminine ; -- [DAHES] :: kind of stinging insects; very small flies, gnats; lice/flies/others (OLD); + cynifes_F_N = mkN "cynifes" "cynifis" feminine ; -- [DAHES] :: kind of stinging insects; very small flies, gnats; lice/flies/others (OLD); cyniola_F_N = mkN "cyniola" ; -- [DAXFS] :: kind of lettuce; - cyniphs_F_N = mkN "cyniphs" "cyniphis " feminine ; -- [DAHES] :: kind of stinging insects; very small flies, gnats; lice/flies/others (OLD); + cyniphs_F_N = mkN "cyniphs" "cyniphis" feminine ; -- [DAHES] :: kind of stinging insects; very small flies, gnats; lice/flies/others (OLD); cynismus_M_N = mkN "cynismus" ; -- [DSXFS] :: Cynical philosophy or conduct; - cynocardamon_N_N = mkN "cynocardamon" "cynocardami " neuter ; -- [DAXFS] :: kind of nasturtium; - cynocauma_N_N = mkN "cynocauma" "cynocaumatis " neuter ; -- [XXXNO] :: heat of the dog-days; + cynocardamon_N_N = mkN "cynocardamon" "cynocardami" neuter ; -- [DAXFS] :: kind of nasturtium; + cynocauma_N_N = mkN "cynocauma" "cynocaumatis" neuter ; -- [XXXNO] :: heat of the dog-days; cynocephalea_F_N = mkN "cynocephalea" ; -- [DAXFD] :: plant; (kind of snapdragon Misopates orontium); dog's-head, magic plant (L+S); cynocephalia_F_N = mkN "cynocephalia" ; -- [XAXNO] :: plant; (kind of snapdragon Misopates orontium); dog's-head, magic plant (L+S); - cynocephalion_N_N = mkN "cynocephalion" "cynocephalii " neuter ; -- [DAXFS] :: plant; (kind of snapdragon Misopates orontium); dog's-head, magic plant (L+S); + cynocephalion_N_N = mkN "cynocephalion" "cynocephalii" neuter ; -- [DAXFS] :: plant; (kind of snapdragon Misopates orontium); dog's-head, magic plant (L+S); cynocephalus_M_N = mkN "cynocephalus" ; -- [XXXEC] :: dog-faced baboon; (prob. Simia hamadryas); Anubis (L+S); kind of wild man; cynodon_A = mkA "cynodon" "cynodontis"; -- [DBXFS] :: having pairs of projecting teeth; - cynoglossos_F_N = mkN "cynoglossos" "cynoglossi " feminine ; -- [XAXNO] :: plant, hound's-tongue; another plant producing small burs (L+S); - cynoides_N_N = mkN "cynoides" "cynoidis " neuter ; -- [XAXNO] :: plant; (prob. Plantago psyllium); - cynomazon_N_N = mkN "cynomazon" "cynomazi " neuter ; -- [DAXFS] :: plant, dog-bread; + cynoglossos_F_N = mkN "cynoglossos" "cynoglossi" feminine ; -- [XAXNO] :: plant, hound's-tongue; another plant producing small burs (L+S); + cynoides_N_N = mkN "cynoides" "cynoidis" neuter ; -- [XAXNO] :: plant; (prob. Plantago psyllium); + cynomazon_N_N = mkN "cynomazon" "cynomazi" neuter ; -- [DAXFS] :: plant, dog-bread; cynomia_F_N = mkN "cynomia" ; -- [EAXFW] :: bitting fly (Vulgate); dog-fly (Souter); cynomorium_N_N = mkN "cynomorium" ; -- [XAXNO] :: parasitic plant, dodder; broom-rape (also called orobanche) (L+S); cynomyia_F_N = mkN "cynomyia" ; -- [XAXNO] :: plant; (prob. Plantago psyllium); herb fleabane (L+S); dog-fly (Souter); - cynon_N_N = mkN "cynon" "cyni " neuter ; -- [XBXIO] :: kind of eye-salve; - cynophanis_M_N = mkN "cynophanis" "cynophanis " masculine ; -- [DYXFS] :: men (pl.) with dog's heads; - cynops_M_N = mkN "cynops" "cynopis " masculine ; -- [XAXNO] :: marine animal (unidentified); plant dog's eye (L+S); + cynon_N_N = mkN "cynon" "cyni" neuter ; -- [XBXIO] :: kind of eye-salve; + cynophanis_M_N = mkN "cynophanis" "cynophanis" masculine ; -- [DYXFS] :: men (pl.) with dog's heads; + cynops_M_N = mkN "cynops" "cynopis" masculine ; -- [XAXNO] :: marine animal (unidentified); plant dog's eye (L+S); cynorrhoda_F_N = mkN "cynorrhoda" ; -- [XAXNO] :: dog-rose; kind of lily; blossom of the red lily (L+S); - cynorrhodon_N_N = mkN "cynorrhodon" "cynorrhodi " neuter ; -- [XAXNO] :: dog-rose; kind of lily; blossom of the red lily (L+S); + cynorrhodon_N_N = mkN "cynorrhodon" "cynorrhodi" neuter ; -- [XAXNO] :: dog-rose; kind of lily; blossom of the red lily (L+S); cynorrhodum_N_N = mkN "cynorrhodum" ; -- [XAXNO] :: dog-rose; kind of lily; blossom of the red lily (L+S); cynorroda_F_N = mkN "cynorroda" ; -- [XAXNS] :: dog-rose; kind of lily; blossom of the red lily (L+S); - cynorrodon_N_N = mkN "cynorrodon" "cynorrodi " neuter ; -- [XAXNS] :: dog-rose; kind of lily; blossom of the red lily (L+S); + cynorrodon_N_N = mkN "cynorrodon" "cynorrodi" neuter ; -- [XAXNS] :: dog-rose; kind of lily; blossom of the red lily (L+S); cynorrodum_N_N = mkN "cynorrodum" ; -- [XAXNS] :: dog-rose; kind of lily; blossom of the red lily (L+S); - cynosbatos_F_N = mkN "cynosbatos" "cynosbati " feminine ; -- [XAXNO] :: kind of rose; caper (plant/fruit); dog-rose (L+S); wild-briar; black current; + cynosbatos_F_N = mkN "cynosbatos" "cynosbati" feminine ; -- [XAXNO] :: kind of rose; caper (plant/fruit); dog-rose (L+S); wild-briar; black current; cynosdexia_F_N = mkN "cynosdexia" ; -- [XAXNO] :: marine animal (unidentified); sea-polypus (L+S); - cynosorchis_F_N = mkN "cynosorchis" "cynosorchis " feminine ; -- [XAXNO] :: kind of orchid; plant, hound's-cod (L+S); - cynospastos_F_N = mkN "cynospastos" "cynospasti " feminine ; -- [XAXNS] :: kind of rose; caper (plant/fruit); dog-rose (L+S); wild-briar; black current; + cynosorchis_F_N = mkN "cynosorchis" "cynosorchis" feminine ; -- [XAXNO] :: kind of orchid; plant, hound's-cod (L+S); + cynospastos_F_N = mkN "cynospastos" "cynospasti" feminine ; -- [XAXNS] :: kind of rose; caper (plant/fruit); dog-rose (L+S); wild-briar; black current; cynosurus_A = mkA "cynosurus" "cynosura" "cynosurum" ; -- [XBXNO] :: addled; (of eggs); - cynozolon_N_N = mkN "cynozolon" "cynozoli " neuter ; -- [XAXNO] :: plant; thistle; (also called chamaeleon/ulophonon, prob. Chamaeleon niger L+S); - cyparissias_M_N = mkN "cyparissias" "cyparissiae " masculine ; -- [XAXNS] :: species of tithymatus/spurge; + cynozolon_N_N = mkN "cynozolon" "cynozoli" neuter ; -- [XAXNO] :: plant; thistle; (also called chamaeleon/ulophonon, prob. Chamaeleon niger L+S); + cyparissias_M_N = mkN "cyparissias" "cyparissiae" masculine ; -- [XAXNS] :: species of tithymatus/spurge; cyparissifer_A = mkA "cyparissifer" "cyparissifera" "cyparissiferum" ; -- [DAXFS] :: cypress-bearing; - cyparissos_F_N = mkN "cyparissos" "cyparissi " feminine ; -- [DAXFS] :: plant (unidentified); + cyparissos_F_N = mkN "cyparissos" "cyparissi" feminine ; -- [DAXFS] :: plant (unidentified); cyparissus_F_N = mkN "cyparissus" ; -- [XAXES] :: cypress-tree; cypress oil/wood, cypress-wood casket, spear of cypress-wood; - cyparittias_M_N = mkN "cyparittias" "cyparittiae " masculine ; -- [XAXNO] :: species of spurge; - cyperis_F_N = mkN "cyperis" "cyperidis " feminine ; -- [XAXNS] :: root of the plant cyperos (kind of rush); - cyperon_N_N = mkN "cyperon" "cyperi " neuter ; -- [XAXDO] :: plant, galingale; preparation of its aromatic root; - cyperos_F_N = mkN "cyperos" "cyperi " feminine ; -- [XAXDO] :: plant, galingale; preparation of its aromatic root; - cyperos_M_N = mkN "cyperos" "cyperi " masculine ; -- [XAXDO] :: plant, galingale; preparation of its aromatic root; + cyparittias_M_N = mkN "cyparittias" "cyparittiae" masculine ; -- [XAXNO] :: species of spurge; + cyperis_F_N = mkN "cyperis" "cyperidis" feminine ; -- [XAXNS] :: root of the plant cyperos (kind of rush); + cyperon_N_N = mkN "cyperon" "cyperi" neuter ; -- [XAXDO] :: plant, galingale; preparation of its aromatic root; + cyperos_F_N = mkN "cyperos" "cyperi" feminine ; -- [XAXDO] :: plant, galingale; preparation of its aromatic root; + cyperos_M_N = mkN "cyperos" "cyperi" masculine ; -- [XAXDO] :: plant, galingale; preparation of its aromatic root; cyperum_N_N = mkN "cyperum" ; -- [XAXDO] :: plant, galingale; preparation of its aromatic root; cyperus_C_N = mkN "cyperus" ; -- [XAXDO] :: plant, galingale; preparation of its aromatic root; - cyphi_N_N = mkN "cyphi" "cyphis " neuter ; -- [DXEES] :: Egyptian perfuming powder; + cyphi_N_N = mkN "cyphi" "cyphis" neuter ; -- [DXEES] :: Egyptian perfuming powder; cyphus_M_N = mkN "cyphus" ; -- [FXXCL] :: bowl, goblet, cup; communion cup; cypira_F_N = mkN "cypira" ; -- [XAJNO] :: Indian plant; (prob. turmeris Curcuma longa); - cypiros_F_N = mkN "cypiros" "cypiri " feminine ; -- [XAXNO] :: one/several sorts of gladiolus; (confused with cyperos); - cypiros_M_N = mkN "cypiros" "cypiri " masculine ; -- [XAXNO] :: one/several sorts of gladiolus; (confused with cyperos); + cypiros_F_N = mkN "cypiros" "cypiri" feminine ; -- [XAXNO] :: one/several sorts of gladiolus; (confused with cyperos); + cypiros_M_N = mkN "cypiros" "cypiri" masculine ; -- [XAXNO] :: one/several sorts of gladiolus; (confused with cyperos); cypirus_C_N = mkN "cypirus" ; -- [XAXNO] :: one/several sorts of gladiolus; (confused with cyperos); cypressinus_A = mkA "cypressinus" "cypressina" "cypressinum" ; -- [XAXES] :: of cypress; of/belonging to cypress trees; made of cypress wood; cypress-; cypressus_F_N = mkN "cypressus" ; -- [DAXCS] :: cypress-tree; cypress oil/wood, cypress-wood casket, spear of cypress-wood; @@ -15631,46 +15631,46 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat cyprinum_N_N = mkN "cyprinum" ; -- [XXXNO] :: precious stone (unidentified); cyprinus_A = mkA "cyprinus" "cyprina" "cyprinum" ; -- [XXXEO] :: of the henna tree Lawsonia inermis; henna oil; copper-. of copper (L+S); cyprinus_M_N = mkN "cyprinus" ; -- [XAXNO] :: carp; henna oil; cyprus oil/ointment; - cypros_F_N = mkN "cypros" "cypri " feminine ; -- [XAXNO] :: henna-tree, Egyptian privet Lawsonia inermis; tree which yielded cyprium (L+S); + cypros_F_N = mkN "cypros" "cypri" feminine ; -- [XAXNO] :: henna-tree, Egyptian privet Lawsonia inermis; tree which yielded cyprium (L+S); cyprum_N_N = mkN "cyprum" ; -- [XXXNO] :: henna oil; cyprus_A = mkA "cyprus" "cypra" "cyprum" ; -- [AXXES] :: good; (Sabine for bonus); cyprus_F_N = mkN "cyprus" ; -- [XAXNO] :: henna-tree, Egyptian privet Lawsonia inermis; tree which yielded cyprium (L+S); cypselus_M_N = mkN "cypselus" ; -- [XAXNO] :: bird; (perh. swift); - cysthos_M_N = mkN "cysthos" "cysthi " masculine ; -- [DBXFS] :: female pudenda/exterior genitalia; + cysthos_M_N = mkN "cysthos" "cysthi" masculine ; -- [DBXFS] :: female pudenda/exterior genitalia; cytinus_M_N = mkN "cytinus" ; -- [XAXNO] :: undeveloped flower/calyx of the pomegranate; - cytis_F_N = mkN "cytis" "cytis " feminine ; -- [XAXNO] :: precious stone (unidentified); + cytis_F_N = mkN "cytis" "cytis" feminine ; -- [XAXNO] :: precious stone (unidentified); cytisum_N_N = mkN "cytisum" ; -- [XAXCO] :: fodder plant, tree-medick Medicago arborea; wood of this; scrubby snail-clover; 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); + 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); 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); + 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); dactyliotheca_F_N = mkN "dactyliotheca" ; -- [XXXEO] :: box/case/casket for rings; (and its contents); - dactylis_F_N = mkN "dactylis" "dactylidis " feminine ; -- [XAXFS] :: kind of grape; (long like a finger); - dactylogramma_N_N = mkN "dactylogramma" "dactylogrammatis " neuter ; -- [HTXEK] :: digital print; + dactylis_F_N = mkN "dactylis" "dactylidis" feminine ; -- [XAXFS] :: kind of grape; (long like a finger); + dactylogramma_N_N = mkN "dactylogramma" "dactylogrammatis" neuter ; -- [HTXEK] :: digital print; dactylus_M_N = mkN "dactylus" ; -- [XPXCO] :: dactyl (metrical foot long-short-short); long (finger-like) grape/date/mollusk; daduchus_M_N = mkN "daduchus" ; -- [XEXFO] :: priest carrying torch (who guided initiates to-be at the Eleusinian mysteries); daedale_Adv = mkAdv "daedale" ; -- [XXXFS] :: artistically, skillfully; daedalus_A = mkA "daedalus" "daedala" "daedalum" ; -- [XXXCS] :: |artificial, artificially contrived; variously adorned, ornamented; variegated; - daemon_M_N = mkN "daemon" "daemonis " masculine ; -- [CEXEO] :: spirit, supernatural being, intermediary between man and god; evil demon/devil; + daemon_M_N = mkN "daemon" "daemonis" masculine ; -- [CEXEO] :: spirit, supernatural being, intermediary between man and god; evil demon/devil; daemoniacus_A = mkA "daemoniacus" "daemoniaca" "daemoniacum" ; -- [DEXDS] :: demonic, devilish; pertaining to an evil spirit; daemoniacus_M_N = mkN "daemoniacus" ; -- [DEXES] :: demonic, one possessed by evil spirits; daemonicola_M_N = mkN "daemonicola" ; -- [DEXFS] :: heathen; worshipper of devils; daemonicus_A = mkA "daemonicus" "daemonica" "daemonicum" ; -- [DEXDS] :: demonic, devilish; belonging to an evil spirit; - daemonion_N_N = mkN "daemonion" "daemonii " neuter ; -- [CSXFO] :: spirit; Socrates' indwelling genius; familiar; little spirit (L+S); demon/devil; + 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; + dagnades_F_N = mkN "dagnades" "dagnadis" feminine ; -- [XAEFS] :: kind of bird in Egypt; 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; dama_F_N = mkN "dama" ; -- [XAXCO] :: fallow/red-deer; small member of deer family; gazelle/antelope; doe; slave name; - damalio_M_N = mkN "damalio" "damalionis " masculine ; -- [DAXFO] :: calf; - damasonion_N_N = mkN "damasonion" "damasonii " neuter ; -- [XAXNO] :: water plantain; + damalio_M_N = mkN "damalio" "damalionis" masculine ; -- [DAXFO] :: calf; + damasonion_N_N = mkN "damasonion" "damasonii" neuter ; -- [XAXNO] :: water plantain; damasonium_N_N = mkN "damasonium" ; -- [XAXNO] :: water plantain; damium_N_N = mkN "damium" ; -- [XEXFO] :: sacrifice made in secret in honor of the Bonae Deae; damiurgus_M_N = mkN "damiurgus" ; -- [XLHEO] :: magistrate in various Greek states; play by Turpilus; @@ -15680,9 +15680,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat damnabiliter_Adv = mkAdv "damnabiliter" ; -- [DXXFS] :: culpably; 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]; + 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; + damnator_M_N = mkN "damnator" "damnatoris" masculine ; -- [DXXDS] :: one who condemns; damnatorius_A = mkA "damnatorius" "damnatoria" "damnatorium" ; -- [XLXEO] :: condemnatory; that involves/indicates condemnation; 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); @@ -15695,7 +15695,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; 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; @@ -15707,19 +15707,19 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; 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; + 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); 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; + 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; + 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); 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); @@ -15727,36 +15727,36 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat dartos_A = mkA "dartos" "dartos" "darton" ; -- [XBXFO] :: name of membrane enclosing the testicles; dasea_F_N = mkN "dasea" ; -- [DBXES] :: rough-breathing; dasia_F_N = mkN "dasia" ; -- [DBXES] :: rough-breathing; - dasypus_M_N = mkN "dasypus" "dasypodis " masculine ; -- [XAXNO] :: kind of hare; sort of rabbit (L+S); + dasypus_M_N = mkN "dasypus" "dasypodis" masculine ; -- [XAXNO] :: kind of hare; sort of rabbit (L+S); dataim_Adv = mkAdv "dataim" ; -- [XXXDO] :: by giving in turn/reciprocally/hand-to-hand/from one to another; (sex metaphor); datarius_A = mkA "datarius" "dataria" "datarium" ; -- [XXXEO] :: concerned with giving away; that is given away; be given away (L+S); dathiathum_N_N = mkN "dathiathum" ; -- [XXXNO] :: kind of incense; (reddish L+S); - datio_F_N = mkN "datio" "dationis " feminine ; -- [XXXCO] :: giving/assigning/allotting/handing over (act), transfer; donation/gift; payment; + datio_F_N = mkN "datio" "dationis" feminine ; -- [XXXCO] :: giving/assigning/allotting/handing over (act), transfer; donation/gift; payment; dativus_A = mkA "dativus" "dativa" "dativum" ; -- [XLXCO] :: assigned (guardian); pertaining to giving; given, appointed (L+S); dativus_M_N = mkN "dativus" ; -- [XGXDO] :: |dative; (grammatical case); dato_V2 = mkV2 (mkV "datare") ; -- [XXXDO] :: be in habit of giving; make a practice of giving; give away, administer (L+S); - dator_M_N = mkN "dator" "datoris " masculine ; -- [XXXDO] :: giver, donor, patron; slave who hands the ball to the player (L+S); + dator_M_N = mkN "dator" "datoris" masculine ; -- [XXXDO] :: giver, donor, patron; slave who hands the ball to the player (L+S); datum_N_N = mkN "datum" ; -- [XXXCO] :: present/gift; that which is given; debit; [~ dandis => w/all supplied]; - datus_M_N = mkN "datus" "datus " masculine ; -- [BXXFO] :: act of giving; - daucon_N_N = mkN "daucon" "dauci " neuter ; -- [XAXES] :: name of various plants; (prob. Athamanta cretensis); like parsnip/carrot (L+S); - daucos_F_N = mkN "daucos" "dauci " feminine ; -- [XAXEO] :: name of various plants; (prob. Athamanta cretensis); like parsnip/carrot (L+S); + datus_M_N = mkN "datus" "datus" masculine ; -- [BXXFO] :: act of giving; + daucon_N_N = mkN "daucon" "dauci" neuter ; -- [XAXES] :: name of various plants; (prob. Athamanta cretensis); like parsnip/carrot (L+S); + 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); + 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; + 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; + 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; dealbatus_A = mkA "dealbatus" "dealbata" "dealbatum" ; -- [DXXDS] :: whitewashed; plastered; dealbo_V2 = mkV2 (mkV "dealbare") ; -- [XXXCO] :: whitewash; whiten (over); plaster, parget (L+S); purify, cleanse (eccl.); deambulacrum_N_N = mkN "deambulacrum" ; -- [DXXES] :: promenade, walk, place to walk in; - deambulatio_F_N = mkN "deambulatio" "deambulationis " feminine ; -- [XXXEO] :: walk; action of walking; place for walking; walking abroad, promenading (L+S); + deambulatio_F_N = mkN "deambulatio" "deambulationis" feminine ; -- [XXXEO] :: walk; action of walking; place for walking; walking abroad, promenading (L+S); deambulatorium_N_N = mkN "deambulatorium" ; -- [DXXFS] :: gallery for walking; deambulo_V = mkV "deambulare" ; -- [XXXCO] :: take a walk, go for a walk; walk abroad (L+S); walk much; promenade; deamo_V2 = mkV2 (mkV "deamare") ; -- [XXXCO] :: love dearly; be passionately/desperately in love with; be delighted with/obliged @@ -15766,26 +15766,26 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat deartuo_V2 = mkV2 (mkV "deartuare") ; -- [BXXFO] :: dismember; rend limb from limb (L+S); ruin; deasceo_V2 = mkV2 (mkV "deasceare") ; -- [XXXEO] :: cut/shape smoothly; efface by cutting, rub out; get the better of; hew/cut w/ax; deascio_V2 = mkV2 (mkV "deasciare") ; -- [XXXEO] :: cut/shape smoothly; efface by cutting, rub out; get the better of; hew/cut w/ax; - deaurator_M_N = mkN "deaurator" "deauratoris " masculine ; -- [DXXFS] :: gilder; (one who covers with gold leaf of plate); + deaurator_M_N = mkN "deaurator" "deauratoris" masculine ; -- [DXXFS] :: gilder; (one who covers with gold leaf of plate); deauratus_A = mkA "deauratus" "deaurata" "deauratum" ; -- [DXXFE] :: gilded; (covered with gold leaf/plate); 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; + 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; + 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; 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); + 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); debilito_V2 = mkV2 (mkV "debilitare") ; -- [XXXCO] :: weaken/disable/incapacitate/impair/maim/lame/cripple; deprive of power (to act); - debitio_F_N = mkN "debitio" "debitionis " feminine ; -- [XXXEO] :: indebtedness; state/fact of owing; the debt (L+S); - debitor_M_N = mkN "debitor" "debitoris " masculine ; -- [XXXCO] :: debtor, one who owes; one under obligation to pay; one indebted (for service); - debitrix_F_N = mkN "debitrix" "debitricis " feminine ; -- [XXXEO] :: debtor (female); one under obligation to pay; one indebted (for service); + debitio_F_N = mkN "debitio" "debitionis" feminine ; -- [XXXEO] :: indebtedness; state/fact of owing; the debt (L+S); + debitor_M_N = mkN "debitor" "debitoris" masculine ; -- [XXXCO] :: debtor, one who owes; one under obligation to pay; one indebted (for service); + debitrix_F_N = mkN "debitrix" "debitricis" feminine ; -- [XXXEO] :: debtor (female); one under obligation to pay; one indebted (for service); debitum_N_N = mkN "debitum" ; -- [XXXCO] :: debt/what is owed; (his) due; duty; that due/ought to occur; [w/voli => by vow]; debitus_A = mkA "debitus" "debita" "debitum" ; -- [XXXDX] :: due, owed; owing; appropriate, becoming; doomed, destined, fated; deblatero_V = mkV "deblaterare" ; -- [XXXDO] :: babble, utter in a foolish manner; blab out (L+S); @@ -15798,29 +15798,29 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat decacordum_N_N = mkN "decacordum" ; -- [DDXFS] :: musical instrument of ten strings; decacordus_A = mkA "decacordus" "decacorda" "decacordum" ; -- [DDXFS] :: ten-stringed; decacro_V2 = mkV2 (mkV "decacrare") ; -- [XXXEO] :: consecrate, dedicate; assign/devote (to purpose/function); deify (person) (L+S); - decacuminatio_F_N = mkN "decacuminatio" "decacuminationis " feminine ; -- [XAXNO] :: topping of tree; removal by lopping of the crown of a tree; + decacuminatio_F_N = mkN "decacuminatio" "decacuminationis" feminine ; -- [XAXNO] :: topping of tree; removal by lopping of the crown of a tree; decacumino_V2 = mkV2 (mkV "decacuminare") ; -- [XAXEO] :: top a tree; remove the crown of a tree by lopping; 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; + 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?); + 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; + 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; + 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); decalvo_V2 = mkV2 (mkV "decalvare") ; -- [DXXDS] :: make bald, remove the hair; cut/shear off the hair; decametrum_N_N = mkN "decametrum" ; -- [GXXEK] :: decameter/decametre; linear measure of ten meters; - decanatus_M_N = mkN "decanatus" "decanatus " masculine ; -- [GEXEK] :: function of dean; + 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; + 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; - decantus_M_N = mkN "decantus" "decantus " masculine ; -- [FXXFE] :: deanery; deanship, office of dean; + decantus_M_N = mkN "decantus" "decantus" masculine ; -- [FXXFE] :: deanery; deanship, office of dean; decanus_M_N = mkN "decanus" ; -- [DLXCS] :: dean; chief of ten, one set over ten persons/soldiers/monks; imperial officer; decapito_V = mkV "decapitare" ; -- [FXXEM] :: decapitate; behead; decaprotia_F_N = mkN "decaprotia" ; -- [DLXFS] :: office/dignity of the decaproti; (ten chief men/magistrates in municipia); @@ -15828,13 +15828,13 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; + 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; @@ -15842,20 +15842,20 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat decemmodius_A = mkA "decemmodius" "decemmodia" "decemmodium" ; -- [XSXFS] :: containing ten modii; (total 2.5 bushels); decempeda_F_N = mkN "decempeda" ; -- [XAXCO] :: ten-foot measuring rod; a ten foot pole; length of ten feet; decempedalis_A = mkA "decempedalis" "decempedalis" "decempedale" ; -- [DSXFS] :: ten feet long; - decempedator_M_N = mkN "decempedator" "decempedatoris " masculine ; -- [XAXFO] :: land-surveyor/measurer; (uses a decempeda/ten-foot measuring pole); + decempedator_M_N = mkN "decempedator" "decempedatoris" masculine ; -- [XAXFO] :: land-surveyor/measurer; (uses a decempeda/ten-foot measuring pole); decemplex_A = mkA "decemplex" "decemplicis"; -- [XSXEO] :: ten-fold; decemplicatus_A = mkA "decemplicatus" "decemplicata" "decemplicatum" ; -- [XSXES] :: ten times over; multiplied by ten; decemplico_V2 = mkV2 (mkV "decemplicare") ; -- [XSXFO] :: multiply by ten; decemprimus_M_N = mkN "decemprimus" ; -- [XLXDO] :: one of 10 seniors of the senate/priesthood in municipium/colonia; abb. xprimus; decemremis_A = mkA "decemremis" "decemremis" "decemreme" ; -- [XWXNS] :: ten-oared; having ten banks of oars?; - decemremis_F_N = mkN "decemremis" "decemremis " feminine ; -- [XWXNO] :: large warship; (precise arrangement of oars not determined); ten-oared (L+S); + decemremis_F_N = mkN "decemremis" "decemremis" feminine ; -- [XWXNO] :: large warship; (precise arrangement of oars not determined); ten-oared (L+S); decemscalmus_A = mkA "decemscalmus" "decemscalma" "decemscalmum" ; -- [XWXFO] :: ten-oared; having ten rows/banks of oars; decemvir_M_N = mkN "decemvir" ; -- [XLXCO] :: decemvir, one of ten men; (commission of ten, board with consular powers); decemviralis_A = mkA "decemviralis" "decemviralis" "decemvirale" ; -- [XLXCO] :: of/belonging to a decemvirate (office of decemvir); abb. xviralis; decemviraliter_Adv = mkAdv "decemviraliter" ; -- [DLXFS] :: in the manner of the decemviri; - decemviratus_M_N = mkN "decemviratus" "decemviratus " masculine ; -- [XXXDO] :: office of decemvir; abb. xviratus; + decemviratus_M_N = mkN "decemviratus" "decemviratus" masculine ; -- [XXXDO] :: office of decemvir; abb. xviratus; decendium_N_N = mkN "decendium" ; -- [XXXFE] :: period of ten days; - decennal_N_N = mkN "decennal" "decennalis " neuter ; -- [XLXEO] :: festival (pl.); (originally every 10th anniversary of an emperor's accession); + decennal_N_N = mkN "decennal" "decennalis" neuter ; -- [XLXEO] :: festival (pl.); (originally every 10th anniversary of an emperor's accession); decennalis_A = mkA "decennalis" "decennalis" "decennale" ; -- [XXXEO] :: recurring every tenth year; decennis_A = mkA "decennis" "decennis" "decenne" ; -- [XXXDO] :: of ten years; lasting ten years; ten years old; decennium_N_N = mkN "decennium" ; -- [DLXES] :: period of ten years; festival (pl.) (every 10th anniversary of emperor); @@ -15864,32 +15864,32 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat decens_A = mkA "decens" "decentis"; -- [XXXBO] :: appropriate, decent/seemly/becoming, in approved standard; pleasing/graceful; decenter_Adv =mkAdv "decenter" "decentius" "decentissime" ; -- [XXXCO] :: appropriately/decently, with good taste; becomingly, pleasingly, gracefully; decentia_F_N = mkN "decentia" ; -- [XXXFO] :: propriety, decency; comeliness, becomingness; - deceptio_F_N = mkN "deceptio" "deceptionis " feminine ; -- [DXXDS] :: deception, deceit; deceitfulness; - deceptor_M_N = mkN "deceptor" "deceptoris " masculine ; -- [XXXEO] :: deceiver, betrayer (of); one who plays false (to); + deceptio_F_N = mkN "deceptio" "deceptionis" feminine ; -- [DXXDS] :: deception, deceit; deceitfulness; + deceptor_M_N = mkN "deceptor" "deceptoris" masculine ; -- [XXXEO] :: deceiver, betrayer (of); one who plays false (to); deceptorius_A = mkA "deceptorius" "deceptoria" "deceptorium" ; -- [XXXFO] :: deceptive; deceitful; deceptrix_A = mkA "deceptrix" "deceptricis"; -- [XXXFO] :: that betrays or deceives; (feminine adjective); - deceptrix_F_N = mkN "deceptrix" "deceptricis " feminine ; -- [DXXFS] :: she who betrays or deceives; (female); - deceptus_M_N = mkN "deceptus" "deceptus " masculine ; -- [DXXES] :: deception; + deceptrix_F_N = mkN "deceptrix" "deceptricis" feminine ; -- [DXXFS] :: she who betrays or deceives; (female); + deceptus_M_N = mkN "deceptus" "deceptus" masculine ; -- [DXXES] :: deception; 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; + 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; + 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; decerto_V = mkV "decertare" ; -- [XXXBO] :: fight (issue out/to the finish); contend/dispute/argue; struggle/compete over; decervicatus_A = mkA "decervicatus" "decervicata" "decervicatum" ; -- [DXXFS] :: beheaded, decapitated, decollated; - decessio_F_N = mkN "decessio" "decessionis " feminine ; -- [DGXFS] :: |transition/transferring (of words from primary to derivative meaning); - decessor_M_N = mkN "decessor" "decessoris " masculine ; -- [XXXEO] :: magistrate retiring from his post (in the Roman provincial administration); - decessus_M_N = mkN "decessus" "decessus " masculine ; -- [XXXCO] :: departure; retirement (provincial magistrate); passing/death; decline/fall/ebb; + decessio_F_N = mkN "decessio" "decessionis" feminine ; -- [DGXFS] :: |transition/transferring (of words from primary to derivative meaning); + decessor_M_N = mkN "decessor" "decessoris" masculine ; -- [XXXEO] :: magistrate retiring from his post (in the Roman provincial administration); + decessus_M_N = mkN "decessus" "decessus" masculine ; -- [XXXCO] :: departure; retirement (provincial magistrate); passing/death; decline/fall/ebb; decet_V0 = mkV0 "decet" ; -- [XXXBO] :: it is fitting/right/seemly/suitable/proper; it ought; become/adorn/grace; decetero_Adv = mkAdv "decetero" ; -- [FXXFM] :: henceforth; 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); + 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; @@ -15897,92 +15897,92 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat decimanus_A = mkA "decimanus" "decimana" "decimanum" ; -- [XWXCO] :: of the tenth (legion); huge/outsize; of tithe; [w/porta => rear gate of camp]; decimanus_M_N = mkN "decimanus" ; -- [XWICO] :: man of tenth legion; tax-farmer/who buys right to tithe; line bounding 10 actus; decimarius_A = mkA "decimarius" "decimaria" "decimarium" ; -- [DLXES] :: pertaining to tithes; paying tithes; subject to tithes; - decimatio_F_N = mkN "decimatio" "decimationis " feminine ; -- [DLXDS] :: decimation, taking every tenth man for punishment; taking a tenth; tithing; + decimatio_F_N = mkN "decimatio" "decimationis" feminine ; -- [DLXDS] :: decimation, taking every tenth man for punishment; taking a tenth; tithing; decimatrus_M_N = mkN "decimatrus" ; -- [ALIFS] :: holiday of the Falisci (of Etruscan culture) ten days after the ides; decimetrum_N_N = mkN "decimetrum" ; -- [GXXEK] :: decimeter/decimetre; tenth of a meter; 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; + 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; - decisio_F_N = mkN "decisio" "decisionis " feminine ; -- [XXXDO] :: settlement, agreement, decision; curtailment, diminishment; + decisio_F_N = mkN "decisio" "decisionis" feminine ; -- [XXXDO] :: settlement, agreement, decision; curtailment, diminishment; decisivus_A = mkA "decisivus" "decisiva" "decisivum" ; -- [EXXFE] :: decisive; deciding; decisorius_A = mkA "decisorius" "decisoria" "decisorium" ; -- [EXXFE] :: decisive; deciding; decitans_A = mkA "decitans" "decitantis"; -- [DXXFS] :: causing to glide down; - declamatio_F_N = mkN "declamatio" "declamationis " feminine ; -- [XGXDX] :: delivering set speech; declamation; school exercise speech; using rhetoric; + declamatio_F_N = mkN "declamatio" "declamationis" feminine ; -- [XGXDX] :: delivering set speech; declamation; school exercise speech; using rhetoric; declamatiuncula_F_N = mkN "declamatiuncula" ; -- [XGXFO] :: short argument as oratorical exercise; subject for declamation(L+S); bawling; - declamator_M_N = mkN "declamator" "declamatoris " masculine ; -- [XGXCO] :: one who composes/delivers speeches as oratorical exercise; rhetorical declaimer; + declamator_M_N = mkN "declamator" "declamatoris" masculine ; -- [XGXCO] :: one who composes/delivers speeches as oratorical exercise; rhetorical declaimer; declamatorie_Adv = mkAdv "declamatorie" ; -- [DGXFS] :: in a rhetorical manner; declamatorius_A = mkA "declamatorius" "declamatoria" "declamatorium" ; -- [XGXDO] :: rhetorical, of declamation/exercise of speaking; of/belonging to a rhetorician; declamito_V = mkV "declamitare" ; -- [XGXCO] :: declaim (oratoric exercise) continually/habitually; practice rhetoric; bluster; declamo_V = mkV "declamare" ; -- [XGXCO] :: declaim, make speeches (usu. as an oratorical exercise); bluster/bawl (L+S); - declaratio_F_N = mkN "declaratio" "declarationis " feminine ; -- [XXXEO] :: revelation, disclosure, announcement; act of making known/clear/evident; + declaratio_F_N = mkN "declaratio" "declarationis" feminine ; -- [XXXEO] :: revelation, disclosure, announcement; act of making known/clear/evident; declarative_Adv = mkAdv "declarative" ; -- [DXXFS] :: by way of explanation; declarativus_A = mkA "declarativus" "declarativa" "declarativum" ; -- [DXXES] :: explanatory, serving for explanation; - declarator_M_N = mkN "declarator" "declaratoris " masculine ; -- [XXXFO] :: announcer; one who declares/makes known (L+S); + declarator_M_N = mkN "declarator" "declaratoris" masculine ; -- [XXXFO] :: announcer; one who declares/makes known (L+S); declaratorius_A = mkA "declaratorius" "declaratoria" "declaratorium" ; -- [XXXFE] :: declaratory; declaro_V2 = mkV2 (mkV "declarare") ; -- [XXXBO] :: declare/announce/make known; indicate, reveal, testify, show/prove; mean (word); declinabilis_A = mkA "declinabilis" "declinabilis" "declinabile" ; -- [DGXFS] :: declinable, that can be (grammatically) inflected; - declinatio_F_N = mkN "declinatio" "declinationis " feminine ; -- [XGXBO] :: |turning aside, swerve; avoidance; divergence/variation/digression; inflection; - declinatus_M_N = mkN "declinatus" "declinatus " masculine ; -- [XGXEO] :: inflection, manner of inflecting/declining/modifying words; inflected form; + declinatio_F_N = mkN "declinatio" "declinationis" feminine ; -- [XGXBO] :: |turning aside, swerve; avoidance; divergence/variation/digression; inflection; + declinatus_M_N = mkN "declinatus" "declinatus" masculine ; -- [XGXEO] :: inflection, manner of inflecting/declining/modifying words; inflected form; declinis_A = mkA "declinis" "declinis" "decline" ; -- [XXXCO] :: moving/bending/drooping down; declining/ebbing; turning/bending; skewed/averted; declino_V = mkV "declinare" ; -- [XXXAO] :: |avoid/stray; vary/be different; bend/sink down, subside/decline; lower/descend; declino_V2 = mkV2 (mkV "declinare") ; -- [DGXCO] :: decline/conjugate/inflect (in the same manner/like); change word form, modify; - declive_N_N = mkN "declive" "declivis " neuter ; -- [XXXCO] :: slope, declivity; surface sloping downwards; [per decline => downwards]; + declive_N_N = mkN "declive" "declivis" neuter ; -- [XXXCO] :: slope, declivity; surface sloping downwards; [per decline => downwards]; 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; + 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; + 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); + 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); 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; + 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); decollo_V2 = mkV2 (mkV "decollare") ; -- [XXXCO] :: behead, cause to be beheaded; remove from the neck (according to Nonius); rob; decolo_V = mkV "decolare" ; -- [XXXDO] :: trickle/drain away/from/through; drain (of); come to naught, fail (L+S); decolor_A = mkA "decolor" "decoloris"; -- [XXXCO] :: discolored; not normal color; (dark people); stained/faded; degenerate/depraved; decolorate_Adv =mkAdv "decolorate" "decoloratius" "decoloratissime" ; -- [DXXES] :: degenerately; - decoloratio_F_N = mkN "decoloratio" "decolorationis " feminine ; -- [XXXFO] :: discoloration; discoloring; change of color; + decoloratio_F_N = mkN "decoloratio" "decolorationis" feminine ; -- [XXXFO] :: discoloration; discoloring; change of color; decoloro_V2 = mkV2 (mkV "decolorare") ; -- [XXXCO] :: discolor/stain/deface, alter normal color of; disgrace, bring shame on; corrupt; 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); + 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; + 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); - decoratio_F_N = mkN "decoratio" "decorationis " feminine ; -- [XXXEE] :: decoration; adornment; + 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); + decoratio_F_N = mkN "decoratio" "decorationis" feminine ; -- [XXXEE] :: decoration; adornment; decorativus_A = mkA "decorativus" "decorativa" "decorativum" ; -- [GXXEK] :: decorative; decore_Adv = mkAdv "decore" ; -- [XXXCO] :: beautifully, in a pleasing manner; properly/suitably, in correct/seemly manner; decorio_V2 = mkV2 (mkV "decoriare") ; -- [DXXES] :: skin, peel; deprive of skin or outer coating; decoris_A = mkA "decoris" "decoris" "decore" ; -- [XXXEO] :: beautiful; pleasing to the senses; decoriter_Adv = mkAdv "decoriter" ; -- [XXXFO] :: gracefully, in a pleasing manner; decoro_V = mkV "decorare" ; -- [XXXBO] :: adorn/grace, embellish/add beauty to; glorify, honor/add honor to; do credit to; - decorticatio_F_N = mkN "decorticatio" "decorticationis " feminine ; -- [XXXNO] :: act/process of stripping off bark; peeling (L+S); + 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; decorus_A = mkA "decorus" ; -- [XXXBO] :: |honorable, noble; glorious, decorated; decorous, proper, decent, fitting; - decotes_F_N = mkN "decotes" "decotis " feminine ; -- [XXXFO] :: worn/threadbare toga; + 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); + 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); decretarius_A = mkA "decretarius" "decretaria" "decretarium" ; -- [XLXIO] :: appointed by a resolution of the civic authority; - decretio_F_N = mkN "decretio" "decretionis " feminine ; -- [DLXFS] :: decision, decree; + decretio_F_N = mkN "decretio" "decretionis" feminine ; -- [DLXFS] :: decision, decree; decretista_M_N = mkN "decretista" ; -- [FEXFE] :: decretist, scholar of legal tradition of Decretum of Gratian; decretorius_A = mkA "decretorius" "decretoria" "decretorium" ; -- [XXXDO] :: decisive, critical; leading/belonging to a decision/definitive sentence (L+S); decretum_N_N = mkN "decretum" ; -- [XXXBO] :: |decree, ordinance; legal decision, verdict, order (judge), sentence; vote; @@ -15999,92 +15999,92 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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; - decunx_M_N = mkN "decunx" "decuncis " masculine ; -- [XSXFS] :: measure/weight of ten unciae (ten ounces); (ten-twelfths of a unit); + decunx_M_N = mkN "decunx" "decuncis" masculine ; -- [XSXFS] :: measure/weight of ten unciae (ten ounces); (ten-twelfths of a unit); decuplatus_A = mkA "decuplatus" "decuplata" "decuplatum" ; -- [DSXFS] :: tenfold; decuplus_A = mkA "decuplus" "decupla" "decuplum" ; -- [DSXFS] :: tenfold; decuria_F_N = mkN "decuria" ; -- [XXXBO] :: group/division of ten; class, social club; gang; cavalry squad; ten judges/feet; decurialis_A = mkA "decurialis" "decurialis" "decuriale" ; -- [XXXIO] :: enrolled in a decuria (club of ten); appropriate to a decuria; - decurialis_M_N = mkN "decurialis" "decurialis " masculine ; -- [XXXIO] :: member of a decuria (club of ten); - decuriat_F_N = mkN "decuriat" "decuriatis " feminine ; -- [XLIFO] :: dividing into decuriae; (groups of ten); + decurialis_M_N = mkN "decurialis" "decurialis" masculine ; -- [XXXIO] :: member of a decuria (club of ten); + decuriat_F_N = mkN "decuriat" "decuriatis" feminine ; -- [XLIFO] :: dividing into decuriae; (groups of ten); decuriatim_Adv = mkAdv "decuriatim" ; -- [DXXFS] :: by decuria (club of ten); - decuriatio_F_N = mkN "decuriatio" "decuriationis " feminine ; -- [XLIFO] :: dividing into decuriae; [~ tribulium => voters - for corruption/intimidation]; - decurio_M_N = mkN "decurio" "decurionis " masculine ; -- [XXXCO] :: |member of municipal senate/governing committee of decuria; councillor; + decuriatio_F_N = mkN "decuriatio" "decuriationis" feminine ; -- [XLIFO] :: dividing into decuriae; [~ tribulium => voters - for corruption/intimidation]; + decurio_M_N = mkN "decurio" "decurionis" masculine ; -- [XXXCO] :: |member of municipal senate/governing committee of decuria; councillor; decurio_V2 = mkV2 (mkV "decuriare") ; -- [XWXCO] :: make (cavalry) squads of ten; organize in military fashion; enroll in decuria; decurionalis_A = mkA "decurionalis" "decurionalis" "decurionale" ; -- [XLXIO] :: of/belonging to a (municipal) decurion (member of municipal senate/councillor); decurionatis_A = mkA "decurionatis" "decurionatis" "decurionate" ; -- [XWXDO] :: office/rank of military/municipal decurio; (squad commander/municipal senator); 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; + 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; decurtatus_A = mkA "decurtatus" "decurtata" "decurtatum" ; -- [XGXEO] :: mutilated, deprived of limbs/extremities; cut short; (also of style); decurto_V2 = mkV2 (mkV "decurtare") ; -- [XXXDS] :: cut off/short, curtail; mutilate; decurvatus_A = mkA "decurvatus" "decurvata" "decurvatum" ; -- [DXXFS] :: bent/curved back; - decus_N_N = mkN "decus" "decoris " neuter ; -- [XXXAO] :: glory/splendor; honor/distinction; deeds; dignity/virtue; decorum; grace/beauty; + decus_N_N = mkN "decus" "decoris" neuter ; -- [XXXAO] :: glory/splendor; honor/distinction; deeds; dignity/virtue; decorum; grace/beauty; decusatim_Adv = mkAdv "decusatim" ; -- [XXXEO] :: so as to make an X/produce shape of an X (for ten); crosswise; in form of X; - decusatio_F_N = mkN "decusatio" "decusationis " feminine ; -- [XXXFO] :: intersection/crossing (of lines); - decusis_M_N = mkN "decusis" "decusis " masculine ; -- [XLXCO] :: coin (10 asses); number ten; decade; intersection/cross of two lines, X-mark; + decusatio_F_N = mkN "decusatio" "decusationis" feminine ; -- [XXXFO] :: intersection/crossing (of lines); + decusis_M_N = mkN "decusis" "decusis" masculine ; -- [XLXCO] :: coin (10 asses); number ten; decade; intersection/cross of two lines, X-mark; decussatim_Adv = mkAdv "decussatim" ; -- [XXXEO] :: so as to make an X/produce shape of an X (for ten); crosswise; in form of X; - decussatio_F_N = mkN "decussatio" "decussationis " feminine ; -- [XXXFO] :: intersection/crossing (of lines); - decussio_F_N = mkN "decussio" "decussionis " feminine ; -- [DXXFS] :: rejection; shaking off; - 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; + decussatio_F_N = mkN "decussatio" "decussationis" feminine ; -- [XXXFO] :: intersection/crossing (of lines); + decussio_F_N = mkN "decussio" "decussionis" feminine ; -- [DXXFS] :: rejection; shaking off; + 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); - dedecoratio_F_N = mkN "dedecoratio" "dedecorationis " feminine ; -- [XXXFS] :: disgrace, dishonor; - dedecorator_M_N = mkN "dedecorator" "dedecoratoris " masculine ; -- [DXXFS] :: reviler; blasphemer; one who dishonors; + dedecoratio_F_N = mkN "dedecoratio" "dedecorationis" feminine ; -- [XXXFS] :: disgrace, dishonor; + 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; 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; + 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); + dedicator_M_N = mkN "dedicator" "dedicatoris" masculine ; -- [XXXIO] :: dedicator, one who dedicates; founder, author (L+S); dedicatorius_A = mkA "dedicatorius" "dedicatoria" "dedicatorium" ; -- [GXXEK] :: dedicatory; 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); + 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; + 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); 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; + 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); + 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; + 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; + 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; 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); + 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; + defaecatio_F_N = mkN "defaecatio" "defaecationis" feminine ; -- [DXXFS] :: cleansing, purifying; 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); @@ -16093,119 +16093,119 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; + 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; defectibilis_A = mkA "defectibilis" "defectibilis" "defectibile" ; -- [EXXFP] :: failing easily; - defectibilitas_F_N = mkN "defectibilitas" "defectibilitatis " feminine ; -- [FSXEM] :: imperfection; - defectio_F_N = mkN "defectio" "defectionis " feminine ; -- [XXXCO] :: |weakness/faintness/despondency; swoon/faint, exhaustion (L+S); disappearance; + defectibilitas_F_N = mkN "defectibilitas" "defectibilitatis" feminine ; -- [FSXEM] :: imperfection; + defectio_F_N = mkN "defectio" "defectionis" feminine ; -- [XXXCO] :: |weakness/faintness/despondency; swoon/faint, exhaustion (L+S); disappearance; 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); + defector_M_N = mkN "defector" "defectoris" masculine ; -- [XXXEO] :: rebel, renegade; one who revolts (from); defectrix_A = mkA "defectrix" "defectricis"; -- [DXXFS] :: defective, imperfect; (feminine); 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; + 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); + 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; defensabilis_A = mkA "defensabilis" "defensabilis" "defensabile" ; -- [DXXFS] :: defensible; - defensator_M_N = mkN "defensator" "defensatoris " masculine ; -- [DXXFS] :: defender; - defensatrix_F_N = mkN "defensatrix" "defensatricis " feminine ; -- [DXXFS] :: defender (female), she who defends; + defensator_M_N = mkN "defensator" "defensatoris" masculine ; -- [DXXFS] :: defender; + defensatrix_F_N = mkN "defensatrix" "defensatricis" feminine ; -- [DXXFS] :: defender (female), she who defends; defensibilis_A = mkA "defensibilis" "defensibilis" "defensibile" ; -- [DXXES] :: easily defended; defensibiliter_Adv = mkAdv "defensibiliter" ; -- [DXXFS] :: defensibly; - defensio_F_N = mkN "defensio" "defensionis " feminine ; -- [XXXBS] :: |legal maintenance of a right; legal prosecution, punishment; + defensio_F_N = mkN "defensio" "defensionis" feminine ; -- [XXXBS] :: |legal maintenance of a right; legal prosecution, punishment; defenso_V2 = mkV2 (mkV "defensare") ; -- [XXXCO] :: defend/guard/protect against; act in defense against; ward off; avert constantly - defensor_M_N = mkN "defensor" "defensoris " masculine ; -- [XXXBO] :: defender/protector; supporter/champion/apologist; defendant; defense advocate; + defensor_M_N = mkN "defensor" "defensoris" masculine ; -- [XXXBO] :: defender/protector; supporter/champion/apologist; defendant; defense advocate; defensorius_A = mkA "defensorius" "defensoria" "defensorium" ; -- [DXXES] :: defense, pertaining to defense; - defenstrix_F_N = mkN "defenstrix" "defenstricis " feminine ; -- [XXXFO] :: defender/protector (female); supporter/apologist; defendant; defense advocate; + 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); + 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; + 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; + 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; + 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; + 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); + 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; + 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; + 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; definitivus_A = mkA "definitivus" "definitiva" "definitivum" ; -- [XXXEO] :: definitive, explanatory; involving definition; definite, distinct, plain (L+S); - definitor_M_N = mkN "definitor" "definitoris " masculine ; -- [XGXFO] :: he who makes grammatical pronouncement/ruling; who determines/settles/appoints; + definitor_M_N = mkN "definitor" "definitoris" masculine ; -- [XGXFO] :: he who makes grammatical pronouncement/ruling; who determines/settles/appoints; definitus_A = mkA "definitus" "definita" "definitum" ; -- [XXXCO] :: definite/precise/limited/finite; limited in number; concerned with particulars; defio_V = mkV "deferi" ; -- [XXXCO] :: lack, be lacking; be in short supply; run short; grow less, subside; defioculus_M_N = mkN "defioculus" ; -- [DXXFS] :: one-eye, he who lacks an eye; (used humorously); - defixio_F_N = mkN "defixio" "defixionis " feminine ; -- [DXXFS] :: enchantment; + defixio_F_N = mkN "defixio" "defixionis" feminine ; -- [DXXFS] :: enchantment; defixus_A = mkA "defixus" "defixa" "defixum" ; -- [XXXFO] :: motionless, still; deflaglo_V = mkV "deflaglare" ; -- [XXXFO] :: be burnt down/destroyed by fire; perish; be (emotionally/physically) burnt out; deflaglo_V2 = mkV2 (mkV "deflaglare") ; -- [XXXFO] :: burn down/up/destroy by fire/utterly; parch (sun); die down/abate, burn out; - deflagratio_F_N = mkN "deflagratio" "deflagrationis " feminine ; -- [XXXEO] :: destruction by fire; conflagration (L+S); consuming by fire; destruction; + deflagratio_F_N = mkN "deflagratio" "deflagrationis" feminine ; -- [XXXEO] :: destruction by fire; conflagration (L+S); consuming by fire; destruction; 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); + 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; - deflexio_F_N = mkN "deflexio" "deflexionis " feminine ; -- [DXXES] :: turning/bending aside, deflection; - deflexus_M_N = mkN "deflexus" "deflexus " masculine ; -- [XXXEO] :: bend (in a line); deviation (behavior); transition; bending/turning aside (L+S); + defletio_F_N = mkN "defletio" "defletionis" feminine ; -- [DXXFS] :: violent weeping; + deflexio_F_N = mkN "deflexio" "deflexionis" feminine ; -- [DXXES] :: turning/bending aside, deflection; + deflexus_M_N = mkN "deflexus" "deflexus" masculine ; -- [XXXEO] :: bend (in a line); deviation (behavior); transition; bending/turning aside (L+S); deflo_V2 = mkV2 (mkV "deflare") ; -- [XXXEO] :: blow away, blow on (for purpose of cleansing); brush/blow aside/off; defloccatus_A = mkA "defloccatus" "defloccata" "defloccatum" ; -- [BXXFS] :: bald; shorn of locks; 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); + 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; + 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; + 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; + 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; 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; + 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); 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; + 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; + 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; + 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; + 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; @@ -16221,62 +16221,62 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); - defunctio_F_N = mkN "defunctio" "defunctionis " feminine ; -- [DEXES] :: execution, performance; death; + defunctio_F_N = mkN "defunctio" "defunctionis" feminine ; -- [DEXES] :: execution, performance; death; defunctorie_Adv = mkAdv "defunctorie" ; -- [XXXEO] :: perfunctorily, cursorily; in a spirit which acts for form's sake only; defunctorius_A = mkA "defunctorius" "defunctoria" "defunctorium" ; -- [XXXFO] :: perfunctory; routine; quickly dispatched (L+S); slight, cursory; defunctum_N_N = mkN "defunctum" ; -- [XXXEO] :: things (pl.) which are dead and gone; 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); + 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; + 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); + 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); + 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); + 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; + 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; + 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; + 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 "degunere" "deguno" nonExist nonExist) ; -- [DXXFS] :: taste; - degustatio_F_N = mkN "degustatio" "degustationis " feminine ; -- [XXXFO] :: act of tasting; a tasting (L+S); + 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; + 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; + 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; + 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; + 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; + 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 @@ -16290,31 +16290,31 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat deintegro_V2 = mkV2 (mkV "deintegrare") ; -- [BXXFO] :: impair; deprive of integrity; destroy (L+S); deintus_Adv = mkAdv "deintus" ; -- [DXXDS] :: from within; deisatus_A = mkA "deisatus" "deisata" "deisatum" ; -- [XXXIO] :: having divine ancestor, of divine lineage; descended from a god; - deitas_F_N = mkN "deitas" "deitatis " feminine ; -- [DEXES] :: deity; divine nature; + deitas_F_N = mkN "deitas" "deitatis" feminine ; -- [DEXES] :: deity; divine nature; dejecte_Adv =mkAdv "dejecte" "dejectius" "dejectissime" ; -- [DXXFS] :: low; - dejectio_F_N = mkN "dejectio" "dejectionis " feminine ; -- [XBXCO] :: ejection (from land); purging bowels; diarrhea; degradation; casting out/down; + dejectio_F_N = mkN "dejectio" "dejectionis" feminine ; -- [XBXCO] :: ejection (from land); purging bowels; diarrhea; degradation; casting out/down; dejectiuncula_F_N = mkN "dejectiuncula" ; -- [XBXFO] :: slight attack of diarrhea; slight purging (L+S); dejecto_V2 = mkV2 (mkV "dejectare") ; -- [DXXFS] :: hurl down violently; (intensive verb); - dejector_M_N = mkN "dejector" "dejectoris " masculine ; -- [XXXFO] :: one who throws/casts (things) down; + dejector_M_N = mkN "dejector" "dejectoris" masculine ; -- [XXXFO] :: one who throws/casts (things) down; dejectus_A = mkA "dejectus" "dejecta" "dejectum" ; -- [XXXCO] :: downcast/dismayed/subdued/dejected; drooping/hanging/sunk/cast down; low lying; - 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; + 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 + 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; + 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; + 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); - delacrimatio_F_N = mkN "delacrimatio" "delacrimationis " feminine ; -- [XBXEO] :: watering/tearing/weeping/running of the eyes; (as symptom of disease L+S); + delacrimatio_F_N = mkN "delacrimatio" "delacrimationis" feminine ; -- [XBXEO] :: watering/tearing/weeping/running of the eyes; (as symptom of disease L+S); delacrimatorius_A = mkA "delacrimatorius" "delacrimatoria" "delacrimatorium" ; -- [XBXIO] :: producing watering/running of the eyes; for/belonging to weeping (L+S); 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); @@ -16322,12 +16322,12 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; - delator_M_N = mkN "delator" "delatoris " masculine ; -- [XXXCO] :: informer, who gives information/reports; accuser/denouncer/who accuses of crime; + delatio_F_N = mkN "delatio" "delationis" feminine ; -- [XLXCO] :: accusation/denunciation; laying charge; indicting; informing; offering an oath; + delator_M_N = mkN "delator" "delatoris" masculine ; -- [XXXCO] :: informer, who gives information/reports; accuser/denouncer/who accuses of crime; delatorius_A = mkA "delatorius" "delatoria" "delatorium" ; -- [XLXEO] :: of/belonging to an informer; tell-tale; denunciatory (L+S); delatura_F_N = mkN "delatura" ; -- [DXXES] :: accusation, denunciation; information (about someone); delavo_V2 = mkV2 (mkV "delavare") ; -- [DXXES] :: wash off; wash clean; @@ -16335,48 +16335,48 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + delectatio_F_N = mkN "delectatio" "delectationis" feminine ; -- [DBXES] :: |straining/effort/tenesmus; inclination/futile straining to void bowels/bladder; delectatiuncula_F_N = mkN "delectatiuncula" ; -- [XXXFO] :: little/trifling pleasure; petty delight (L+S); - delectio_F_N = mkN "delectio" "delectionis " feminine ; -- [DXXDS] :: choice; choosing; + delectio_F_N = mkN "delectio" "delectionis" feminine ; -- [DXXDS] :: choice; choosing; delecto_V2 = mkV2 (mkV "delectare") ; -- [XXXBO] :: |(PASS) be delighted/glad, take pleasure; (w/INF) enjoy (being/doing); - delector_M_N = mkN "delector" "delectoris " masculine ; -- [XWXFS] :: one who draws out/selects/levies/recruits; + delector_M_N = mkN "delector" "delectoris" masculine ; -- [XWXFS] :: one who draws out/selects/levies/recruits; delector_V = mkV "delectari" ; -- [XXXDO] :: |(PASS) be delighted/glad, take pleasure; (w/INF) enjoy (being/doing); delectus_A = mkA "delectus" "delecta" "delectum" ; -- [XXXCO] :: picked, chosen, select; (for attaining high standard); - delectus_M_N = mkN "delectus" "delectus " masculine ; -- [XXXEO] :: |selection/choosing; choice (between possibilities), discrimination/distinction; - delegatio_F_N = mkN "delegatio" "delegationis " feminine ; -- [XLXCO] :: assignment/delegation to third party of creditor's interest/debtor's liability; - delegator_M_N = mkN "delegator" "delegatoris " masculine ; -- [DLXFS] :: assignor, one who makes an assignment/delegation (of obligation to another); - delegatus_M_N = mkN "delegatus" "delegatus " masculine ; -- [XLXEO] :: assignment/delegation to third party of creditor's interest/debtor's liability; + delectus_M_N = mkN "delectus" "delectus" masculine ; -- [XXXEO] :: |selection/choosing; choice (between possibilities), discrimination/distinction; + delegatio_F_N = mkN "delegatio" "delegationis" feminine ; -- [XLXCO] :: assignment/delegation to third party of creditor's interest/debtor's liability; + delegator_M_N = mkN "delegator" "delegatoris" masculine ; -- [DLXFS] :: assignor, one who makes an assignment/delegation (of obligation to another); + delegatus_M_N = mkN "delegatus" "delegatus" masculine ; -- [XLXEO] :: assignment/delegation to third party of creditor's interest/debtor's liability; 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; + 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; + 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); 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; + deletio_F_N = mkN "deletio" "deletionis" feminine ; -- [XXXFO] :: destruction, annihilation; deletitius_A = mkA "deletitius" "deletitia" "deletitium" ; -- [DGXFS] :: palimpsest, from which (anything/writing) has been erased/effaced/blotted out; deletrix_A = mkA "deletrix" "deletricis"; -- [XXXFO] :: causing the destruction (of); (feminine adjective); - deletrix_F_N = mkN "deletrix" "deletricis " feminine ; -- [XXXFS] :: she who annihilates/destroys; - deletus_M_N = mkN "deletus" "deletus " masculine ; -- [DXXFS] :: annihilation; + deletrix_F_N = mkN "deletrix" "deletricis" feminine ; -- [XXXFS] :: she who annihilates/destroys; + deletus_M_N = mkN "deletus" "deletus" masculine ; -- [DXXFS] :: annihilation; delevo_V2 = mkV2 (mkV "delevare") ; -- [XXXFO] :: smooth down/off; make smooth (L+S); delibamentum_N_N = mkN "delibamentum" ; -- [XXXFO] :: libation; wine poured out to the gods (L+S); - delibatio_F_N = mkN "delibatio" "delibationis " feminine ; -- [DXXDS] :: diminishing, taking away from; first fruit, sample, representative portion; + delibatio_F_N = mkN "delibatio" "delibationis" feminine ; -- [DXXDS] :: diminishing, taking away from; first fruit, sample, representative portion; deliberabundus_A = mkA "deliberabundus" "deliberabunda" "deliberabundum" ; -- [XXXEO] :: pondering/reflecting; deep in thought/deliberating; weighing carefully (L+S); deliberamentum_N_N = mkN "deliberamentum" ; -- [DXXFS] :: deliberation; - deliberatio_F_N = mkN "deliberatio" "deliberationis " feminine ; -- [XXXCO] :: deliberation/consultation (w/others), consideration; deliberative style speech; + 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; + deliberator_M_N = mkN "deliberator" "deliberatoris" masculine ; -- [XXXFO] :: one who deliberates; 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; + 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 @@ -16392,40 +16392,40 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat delicium_N_N = mkN "delicium" ; -- [XXXCO] :: darling, person one is fond of; pet (animal); delight, source/thing of joy; delicius_M_N = mkN "delicius" ; -- [XXXIS] :: pleasure/delight/fun, activity affording enjoyment; curiosities of art; delico_V2 = mkV2 (mkV "delicare") ; -- [XXXEO] :: reveal, disclose; make clear, clarify, explain; - delictor_M_N = mkN "delictor" "delictoris " masculine ; -- [DXXFS] :: delinquent; offender; + delictor_M_N = mkN "delictor" "delictoris" masculine ; -- [DXXFS] :: delinquent; offender; delictum_N_N = mkN "delictum" ; -- [XXXDX] :: fault/offense/misdeed/crime/transgression; sin; act short of standard; defect; 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 "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; + 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; delimitus_A = mkA "delimitus" "delimita" "delimitum" ; -- [XXXNS] :: filed off; delimo_V2 = mkV2 (mkV "delimare") ; -- [XXXEO] :: file down; produce by filing; - delineatio_F_N = mkN "delineatio" "delineationis " feminine ; -- [DXXFS] :: sketch; delineation; + 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 "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; + 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); + 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; + 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); + 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; deliquo_V2 = mkV2 (mkV "deliquare") ; -- [XXXEO] :: strain (liquid to clear); strain off (solid matter); make clear; clarify/explain deliquus_A = mkA "deliquus" "deliqua" "deliquum" ; -- [DXXEO] :: lacking, wanting; missing; deliramentum_N_N = mkN "deliramentum" ; -- [XXXDO] :: delusion, nonsense; product of a deranged mind; absurdity (L+S); - deliratio_F_N = mkN "deliratio" "delirationis " feminine ; -- [XXXCO] :: going off the balks (harrowing); delirium/madness; folly/silliness/dotage; - deliritas_F_N = mkN "deliritas" "deliritatis " feminine ; -- [XXXFO] :: insanity; + deliratio_F_N = mkN "deliratio" "delirationis" feminine ; -- [XXXCO] :: going off the balks (harrowing); delirium/madness; folly/silliness/dotage; + deliritas_F_N = mkN "deliritas" "deliritatis" feminine ; -- [XXXFO] :: insanity; 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; @@ -16433,27 +16433,27 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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; + 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; 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; + 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; + 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; + 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; dem_1_N = mkN "dem" "demis" masculine ; -- [XXHEO] :: community, a people; administrative district (in Attica); tract of land (L+S); @@ -16462,7 +16462,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; @@ -16473,7 +16473,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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?); + 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); @@ -16483,56 +16483,56 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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 + 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; + demersio_F_N = mkN "demersio" "demersionis" feminine ; -- [DXXES] :: sinking, being sunk down; demersus_A = mkA "demersus" ; -- [DXXES] :: depressed; - demersus_M_N = mkN "demersus" "demersus " masculine ; -- [XXXFO] :: action of sinking/submerging; a sinking (L+S); - 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; + demersus_M_N = mkN "demersus" "demersus" masculine ; -- [XXXFO] :: action of sinking/submerging; a sinking (L+S); + 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; + 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; + 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]; + 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]; deminutus_A = mkA "deminutus" "deminuta" "deminutum" ; -- [DXXFS] :: diminished; small, diminutive; demiror_V = mkV "demirari" ; -- [XXXCO] :: wonder (I wonder how/why); be amazed/utterly astonished at, at loss to imagine; demisse_Adv =mkAdv "demisse" "demissius" "demississime" ; -- [XXXCO] :: dejectedly, in a despondent manner; low/humbly/meekly/modestly; at low altitude; 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 + 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); 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); + 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; + 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; - democratizatio_F_N = mkN "democratizatio" "democratizationis " feminine ; -- [GXXEK] :: democratization; + democratizatio_F_N = mkN "democratizatio" "democratizationis" feminine ; -- [GXXEK] :: democratization; demogrammateus_M_N = mkN "demogrammateus" ; -- [DLXFS] :: public scribe; 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); + 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; - demonstratio_F_N = mkN "demonstratio" "demonstrationis " feminine ; -- [XXXBO] :: |indication; identification; act of pointing out/showing; (boundary of estate); + demonstratio_F_N = mkN "demonstratio" "demonstrationis" feminine ; -- [XXXBO] :: |indication; identification; act of pointing out/showing; (boundary of estate); demonstrativa_F_N = mkN "demonstrativa" ; -- [XGXEO] :: demonstrative oratory (esp. vituperation); display/showing off; demonstrative_Adv = mkAdv "demonstrative" ; -- [DGXFS] :: demonstratively; demonstrativus_A = mkA "demonstrativus" "demonstrativa" "demonstrativum" ; -- [XGXDO] :: demonstrative; (oratory esp. vituperation); for display/show off; designating; - demonstrator_M_N = mkN "demonstrator" "demonstratoris " masculine ; -- [XGXEO] :: indicator, one who points out/indicates; exhibitor (L+S); + demonstrator_M_N = mkN "demonstrator" "demonstratoris" masculine ; -- [XGXEO] :: indicator, one who points out/indicates; exhibitor (L+S); demonstratorius_A = mkA "demonstratorius" "demonstratoria" "demonstratorium" ; -- [XXXFO] :: concerned with definition or specification; pointing out, indicating (L+S); 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; + 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); + 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; @@ -16540,8 +16540,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat demoscopia_F_N = mkN "demoscopia" ; -- [GXXEK] :: opinion-poll; 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; + 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; @@ -16552,8 +16552,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat demussatus_A = mkA "demussatus" "demussata" "demussatum" ; -- [DXXES] :: borne silently; demusso_V2 = mkV2 (mkV "demussare") ; -- [XXXFO] :: swallow/bear/endure in silence; demutabilis_A = mkA "demutabilis" "demutabilis" "demutabile" ; -- [DEXES] :: changeable; - demutatio_F_N = mkN "demutatio" "demutationis " feminine ; -- [XXXFO] :: transformation; change, alteration (esp. for the worse Cas); - demutator_M_N = mkN "demutator" "demutatoris " masculine ; -- [DXXFS] :: changer, transmuter; + demutatio_F_N = mkN "demutatio" "demutationis" feminine ; -- [XXXFO] :: transformation; change, alteration (esp. for the worse Cas); + 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; @@ -16567,47 +16567,47 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - denditio_F_N = mkN "denditio" "denditionis " feminine ; -- [XBXFS] :: teething (of young); - dendrachates_F_N = mkN "dendrachates" "dendrachatae " feminine ; -- [XXXNO] :: kind of agate; - dendritis_F_N = mkN "dendritis" "dendritidis " feminine ; -- [XXXNO] :: precious stone (unidentified); + denditio_F_N = mkN "denditio" "denditionis" feminine ; -- [XBXFS] :: teething (of young); + dendrachates_F_N = mkN "dendrachates" "dendrachatae" feminine ; -- [XXXNO] :: kind of agate; + dendritis_F_N = mkN "dendritis" "dendritidis" feminine ; -- [XXXNO] :: precious stone (unidentified); dendroforus_M_N = mkN "dendroforus" ; -- [XEXIO] :: tree-bearer; (timber workers associated with Cybele/Attis); Silvanus; carpenter; dendroides_A = mkA "dendroides" "dendroides" "dendroides" ; -- [XAXNO] :: tree-like; (defining a botanical species); - dendroides_M_N = mkN "dendroides" "dendroidae " masculine ; -- [XAXNS] :: spurge (tithymalus); sea-spurge (tithymalis); + dendroides_M_N = mkN "dendroides" "dendroidae" masculine ; -- [XAXNS] :: spurge (tithymalus); sea-spurge (tithymalis); dendrophorus_M_N = mkN "dendrophorus" ; -- [XEXIO] :: tree-bearer; (timber workers associated with Cybele/Attis); Silvanus; carpenter; denecalis_A = mkA "denecalis" "denecalis" "denecale" ; -- [XEXEO] :: releasing from death; (days set aside for purification of family of deceased); - denegatio_F_N = mkN "denegatio" "denegationis " feminine ; -- [XXXEE] :: denial; rejection; refusal; + denegatio_F_N = mkN "denegatio" "denegationis" feminine ; -- [XXXEE] :: denial; rejection; refusal; denego_V2 = mkV2 (mkV "denegare") ; -- [XXXCO] :: deny (fact/allegation); say that ... not; deny/refuse (favor/request); denicalis_A = mkA "denicalis" "denicalis" "denicale" ; -- [XEXEO] :: releasing from death; (days set aside for purification of family of deceased); - denigratio_F_N = mkN "denigratio" "denigrationis " feminine ; -- [DXXFS] :: blackening; + denigratio_F_N = mkN "denigratio" "denigrationis" feminine ; -- [DXXFS] :: blackening; denigro_V2 = mkV2 (mkV "denigrare") ; -- [XXXDO] :: blacken, make black; color very black, blacken utterly (L+S); asperse, defame; denique_Adv = mkAdv "denique" ; -- [XXXAO] :: finally, in the end; and then; at worst; in short, to sum up; in fact, indeed; denixe_Adv =mkAdv "denixe" "denixius" "denixissime" ; -- [BXXFS] :: earnestly, assiduously, with strenuous efforts; - denominatio_F_N = mkN "denominatio" "denominationis " feminine ; -- [XGXFO] :: metonymy; derivation; substitution of name of object for another related; + denominatio_F_N = mkN "denominatio" "denominationis" feminine ; -- [XGXFO] :: metonymy; derivation; substitution of name of object for another related; denominative_Adv = mkAdv "denominative" ; -- [XGXFS] :: by derivation; denominativus_A = mkA "denominativus" "denominativa" "denominativum" ; -- [XGXFS] :: derived, formed by derivation; pertaining to derivation; - denominator_M_N = mkN "denominator" "denominatoris " masculine ; -- [GSXEK] :: denominator (math.); + denominator_M_N = mkN "denominator" "denominatoris" masculine ; -- [GSXEK] :: denominator (math.); denomino_V2 = mkV2 (mkV "denominare") ; -- [XGXCO] :: denominate, designate; give a name to (usu. from source expressed/implied); denormo_V2 = mkV2 (mkV "denormare") ; -- [XXXFO] :: put out of shape; make crooked/irregular; disfigure (L+S); - denotatio_F_N = mkN "denotatio" "denotationis " feminine ; -- [XGXFO] :: censure; disparagement; marking, pointing out (L+S); + denotatio_F_N = mkN "denotatio" "denotationis" feminine ; -- [XGXFO] :: censure; disparagement; marking, pointing out (L+S); denotatus_A = mkA "denotatus" "denotata" "denotatum" ; -- [DXXFS] :: conspicuous, marked; marked out; - denotatus_M_N = mkN "denotatus" "denotatus " masculine ; -- [DGXFS] :: marking, pointing out; + denotatus_M_N = mkN "denotatus" "denotatus" masculine ; -- [DGXFS] :: marking, pointing out; denoto_V2 = mkV2 (mkV "denotare") ; -- [XXXCO] :: mark (down); lay on (color); observe; indicate/point out; imply; brand; censure; - dens_M_N = mkN "dens" "dentis " masculine ; -- [XBXBO] :: tooth; tusk; ivory; tooth-like thing, spike; destructive power, envy, ill will; + dens_M_N = mkN "dens" "dentis" masculine ; -- [XBXBO] :: tooth; tusk; ivory; tooth-like thing, spike; destructive power, envy, ill will; densabilis_A = mkA "densabilis" "densabilis" "densabile" ; -- [DXXES] :: astringent, binding; - densatio_F_N = mkN "densatio" "densationis " feminine ; -- [XXXFO] :: thickening; condensation; + densatio_F_N = mkN "densatio" "densationis" feminine ; -- [XXXFO] :: thickening; condensation; densativus_A = mkA "densativus" "densativa" "densativum" ; -- [DXXES] :: astringent, binding; dense_Adv =mkAdv "dense" "densius" "densissime" ; -- [XXXCO] :: closely, thickly, close together; compactly; concisely; often, frequently; 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); + 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; 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); + 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); dentarpaga_F_N = mkN "dentarpaga" ; -- [DBXFS] :: instrument for pulling/extraction of teeth; dentatus_A = mkA "dentatus" "dentata" "dentatum" ; -- [XBXCO] :: toothed; w/(prominent/displayed) teeth; w/spikes/teeth/gears; polished w/tooth; dentefaber_A = mkA "dentefaber" "dentefabra" "dentefabrum" ; -- [XTXFO] :: toothed; spiked; - dentex_M_N = mkN "dentex" "denticis " masculine ; -- [XAXFO] :: kind of bream; + dentex_M_N = mkN "dentex" "denticis" masculine ; -- [XAXFO] :: kind of bream; dentharpaga_F_N = mkN "dentharpaga" ; -- [XBXFO] :: instrument for pulling/extraction of teeth; denticulatum_N_N = mkN "denticulatum" ; -- [FXXEE] :: lace; denticulatus_A = mkA "denticulatus" "denticulata" "denticulatum" ; -- [XXXDO] :: finely toothed, serrated/denticulated, furnished with small teeth/projections; @@ -16621,128 +16621,128 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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; - denumeratio_F_N = mkN "denumeratio" "denumerationis " feminine ; -- [XSXDO] :: action/process of counting/reckoning, calculation; enumeration of points; + denumeratio_F_N = mkN "denumeratio" "denumerationis" feminine ; -- [XSXDO] :: action/process of counting/reckoning, calculation; enumeration of points; denumero_V2 = mkV2 (mkV "denumerare") ; -- [XXXEO] :: pay (money) in full; pay down (loan); - denunciatio_F_N = mkN "denunciatio" "denunciationis " feminine ; -- [DXXES] :: |declaration (war); injunction; admonition; summons, formal legal notice; - denuntiatio_F_N = mkN "denuntiatio" "denuntiationis " feminine ; -- [XXXCO] :: |declaration (war); injunction; admonition; summons, formal legal notice; + denunciatio_F_N = mkN "denunciatio" "denunciationis" feminine ; -- [DXXES] :: |declaration (war); injunction; admonition; summons, formal legal notice; + denuntiatio_F_N = mkN "denuntiatio" "denuntiationis" feminine ; -- [XXXCO] :: |declaration (war); injunction; admonition; summons, formal legal notice; denuntiativus_A = mkA "denuntiativus" "denuntiativa" "denuntiativum" ; -- [DXXFS] :: admonitory, conveying a warning, serving to admonish; indicatory; - denuntiator_M_N = mkN "denuntiator" "denuntiatoris " masculine ; -- [DLXIO] :: |police officer; police inspector; + denuntiator_M_N = mkN "denuntiator" "denuntiatoris" masculine ; -- [DLXIO] :: |police officer; police inspector; denuntio_V = mkV "denuntiare" ; -- [XXXAO] :: |announce, give official information; declare; summon (witness)/deliver summons; denuo_Adv = mkAdv "denuo" ; -- [XXXCO] :: anew, over again, from a fresh beginning; for a second time, once more; in turn; 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); + 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; + 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; + 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); + 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; + 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); + 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; + 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; + 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; + 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; - 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; + deperdo_V2 = mkV2 (mkV "deperdere" "deperdo" "deperdidi" "deperditus") ; -- [XXXCO] :: lose permanently/utterly (destruction); be deprived/desperate; destroy, ruin; + depereo_1_V = mkV "deperire" "depereo" "deperivi" "deperitus" ; -- [XXXCO] :: perish/die; be lost/totally destroyed; be much in love with/love to distraction; + depereo_2_V = mkV "deperire" "depereo" "deperiii" "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; depilatorium_N_N = mkN "depilatorium" ; -- [GXXEK] :: depilatorium; place where hair is removed; 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; + 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; + 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; - deplois_F_N = mkN "deplois" "deploidis " feminine ; -- [EXXFW] :: robe; cloak; double robe wrapped around body; double wrapping; layer (Souter); + deplois_F_N = mkN "deplois" "deploidis" feminine ; -- [EXXFW] :: robe; cloak; double robe wrapped around body; double wrapping; layer (Souter); deplorabundus_A = mkA "deplorabundus" "deplorabunda" "deplorabundum" ; -- [XXXFO] :: complaining/weeping bitterly; - deploratio_F_N = mkN "deploratio" "deplorationis " feminine ; -- [XXXFO] :: lamenting, bewailing, action of lamenting/complaining; + deploratio_F_N = mkN "deploratio" "deplorationis" feminine ; -- [XXXFO] :: lamenting, bewailing, action of lamenting/complaining; 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)]; + 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; + 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; + 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; + 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; - depopulator_M_N = mkN "depopulator" "depopulatoris " masculine ; -- [XWXEO] :: plunderer, pillager, ravager; one who sacks; marauder; - depopulatrix_F_N = mkN "depopulatrix" "depopulatricis " feminine ; -- [DWXFS] :: she who spoils/destroys; plunderer/pillager/ravager (female); + depopulatio_F_N = mkN "depopulatio" "depopulationis" feminine ; -- [XWXFO] :: plundering/pillaging/sacking/marauding/ravaging/laying waste; + depopulator_M_N = mkN "depopulator" "depopulatoris" masculine ; -- [XWXEO] :: plunderer, pillager, ravager; one who sacks; marauder; + depopulatrix_F_N = mkN "depopulatrix" "depopulatricis" feminine ; -- [DWXFS] :: she who spoils/destroys; plunderer/pillager/ravager (female); depopulo_V2 = mkV2 (mkV "depopulare") ; -- [XWXDO] :: sack/plunder/pillage/rob/despoil; ravage/devastate/destroy/lay waste; overgraze; depopulor_V = mkV "depopulari" ; -- [XWXCO] :: sack/plunder/pillage/rob/despoil; ravage/devastate/destroy/lay waste; overgraze; - deportatio_F_N = mkN "deportatio" "deportationis " feminine ; -- [XXXDO] :: deportation, conveyance to exile; taking/carrying home/away; transportation; + deportatio_F_N = mkN "deportatio" "deportationis" feminine ; -- [XXXDO] :: deportation, conveyance to exile; taking/carrying home/away; transportation; deportatorius_A = mkA "deportatorius" "deportatoria" "deportatorium" ; -- [DXXFS] :: transportation-, belonging to removal/transportation; - deportio_F_N = mkN "deportio" "deportionis " feminine ; -- [EXXEW] :: carrying, conveying; conveyance; 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; + 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; - depositor_M_N = mkN "depositor" "depositoris " masculine ; -- [XXXEO] :: depositor, one who deposits (money); who gives up (position)/disowns/disclaims; + depositor_M_N = mkN "depositor" "depositoris" masculine ; -- [XXXEO] :: depositor, one who deposits (money); who gives up (position)/disowns/disclaims; depositum_N_N = mkN "depositum" ; -- [XLXDO] :: deposit, trust; money placed on deposit/safe keeping; contract on trust money; depositus_A = mkA "depositus" "deposita" "depositum" ; -- [XXXDO] :: despaired of/given up; deposited (L+S); of money placed on deposit/safe keeping; - depostulator_M_N = mkN "depostulator" "depostulatoris " masculine ; -- [DEXFS] :: one who demands; (person for punishment/torture); + depostulator_M_N = mkN "depostulator" "depostulatoris" masculine ; -- [DEXFS] :: one who demands; (person for punishment/torture); depostulo_V2 = mkV2 (mkV "depostulare") ; -- [XXXFO] :: demand, press for; require earnestly (L+S); - depraedatio_F_N = mkN "depraedatio" "depraedationis " feminine ; -- [DWXES] :: plundering, pillaging; - depraedator_M_N = mkN "depraedator" "depraedatoris " masculine ; -- [DWXES] :: plunderer/pillager; + depraedatio_F_N = mkN "depraedatio" "depraedationis" feminine ; -- [DWXES] :: plundering, pillaging; + depraedator_M_N = mkN "depraedator" "depraedatoris" masculine ; -- [DWXES] :: plunderer/pillager; depraedico_V = mkV "depraedicare" ; -- [FXXFM] :: preach against; depraedo_V2 = mkV2 (mkV "depraedare") ; -- [DWXFS] :: exhaust by plundering/pillaging; plunder, pillage (L+S); depraedor_V = mkV "depraedari" ; -- [XWXEO] :: exhaust by plundering/pillaging; plunder, pillage (L+S); @@ -16750,38 +16750,38 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat deprandis_A = mkA "deprandis" "deprandis" "deprande" ; -- [DXXFS] :: fasting; deprans_A = mkA "deprans" "deprandis"; -- [XXXFO] :: fasting; depravate_Adv = mkAdv "depravate" ; -- [XXXFO] :: perversely, wrongly; - depravatio_F_N = mkN "depravatio" "depravationis " feminine ; -- [XXXCO] :: abnormality/deformity, deviation in appearance/behavior; perversity/perversion; + depravatio_F_N = mkN "depravatio" "depravationis" feminine ; -- [XXXCO] :: abnormality/deformity, deviation in appearance/behavior; perversity/perversion; depravo_V2 = mkV2 (mkV "depravare") ; -- [XXXCO] :: distort/deform/twist, make crooked; mislead/pervert; deprave, corrupt; deprecabilis_A = mkA "deprecabilis" "deprecabilis" "deprecabile" ; -- [EEXFS] :: exorable; that may be entreated; accessible to entreaty/begging/prayer; deprecabundus_A = mkA "deprecabundus" "deprecabunda" "deprecabundum" ; -- [XXXFO] :: entreating earnestly; deprecaneus_A = mkA "deprecaneus" "deprecanea" "deprecaneum" ; -- [DEXFS] :: exorable; that may be entreated; accessible to entreaty/begging/prayer; - deprecatio_F_N = mkN "deprecatio" "deprecationis " feminine ; -- [XEXCO] :: prayer to avert/ward off; invocation; supplication/entreaty/plea; extenuation; + deprecatio_F_N = mkN "deprecatio" "deprecationis" feminine ; -- [XEXCO] :: prayer to avert/ward off; invocation; supplication/entreaty/plea; extenuation; deprecatiuncula_F_N = mkN "deprecatiuncula" ; -- [DXXFS] :: little deprecation/plea for mercy; trifling plea for pardon; deprecativus_A = mkA "deprecativus" "deprecativa" "deprecativum" ; -- [DXXES] :: deprecative; praying for deliverance from evil; - deprecator_M_N = mkN "deprecator" "deprecatoris " masculine ; -- [XXXCO] :: intercessor, one pleading for mercy; go-between; champion/advocate; mediator; + deprecator_M_N = mkN "deprecator" "deprecatoris" masculine ; -- [XXXCO] :: intercessor, one pleading for mercy; go-between; champion/advocate; mediator; deprecatorius_A = mkA "deprecatorius" "deprecatoria" "deprecatorium" ; -- [EEXFS] :: deprecatory; that prays for deliverance; expressing hope something be averted; - deprecatrix_F_N = mkN "deprecatrix" "deprecatricis " feminine ; -- [DXXFS] :: intercessor (female), one pleading for mercy; go-between; advocate; mediator; - depreciator_M_N = mkN "depreciator" "depreciatoris " masculine ; -- [DXXFS] :: depreciator, one who depreciates/lowers value/undervalues; + deprecatrix_F_N = mkN "deprecatrix" "deprecatricis" feminine ; -- [DXXFS] :: intercessor (female), one pleading for mercy; go-between; advocate; mediator; + depreciator_M_N = mkN "depreciator" "depreciatoris" masculine ; -- [DXXFS] :: depreciator, one who depreciates/lowers value/undervalues; 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; + 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); + 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; 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; + 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); + 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); + 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); + 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; @@ -16789,32 +16789,32 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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); + 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; + 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; + depurgatio_F_N = mkN "depurgatio" "depurgationis" feminine ; -- [DBXFS] :: cleaning by purgatives; purging; depurgo_V2 = mkV2 (mkV "depurgare") ; -- [XXXCO] :: clean out/away (impurities), remove dirt/offal from; rid (things of); purge; depuro_V2 = mkV2 (mkV "depurare") ; -- [FXXCM] :: purify; refine; clear, discharge (of debt); - deputatio_F_N = mkN "deputatio" "deputationis " feminine ; -- [FXXDE] :: deputation; assignment, appointment; + 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; + 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); + 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); + 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); derbiosus_A = mkA "derbiosus" "derbiosa" "derbiosum" ; -- [DBXFS] :: scabby; dercea_F_N = mkN "dercea" ; -- [DAXFS] :: plant; species of solanum; (also called herba Apollinaris); @@ -16824,24 +16824,24 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat derectiangulus_A = mkA "derectiangulus" "derectiangula" "derectiangulum" ; -- [DSXFS] :: rectangular, right-angled; derectilineus_A = mkA "derectilineus" "derectilinea" "derectilineum" ; -- [DSXFS] :: rectilinear; in a straight line; derectim_Adv = mkAdv "derectim" ; -- [XXXFO] :: in a regular manner; directly, straightaway (L+S); - derectio_F_N = mkN "derectio" "derectionis " feminine ; -- [EXXDP] :: |sending (to place); right living; righteousness; fairness/justice; correction; - derectitudo_F_N = mkN "derectitudo" "derectitudinis " feminine ; -- [DXXFS] :: rightness, correctness; fairness; + derectio_F_N = mkN "derectio" "derectionis" feminine ; -- [EXXDP] :: |sending (to place); right living; righteousness; fairness/justice; correction; + derectitudo_F_N = mkN "derectitudo" "derectitudinis" feminine ; -- [DXXFS] :: rightness, correctness; fairness; derectivum_N_N = mkN "derectivum" ; -- [GXXEK] :: directive; guideline; derectivus_A = mkA "derectivus" "derectiva" "derectivum" ; -- [FXXEE] :: directive; helpful, positive; directing (Cal); guiding; derecto_Adv = mkAdv "derecto" ; -- [XXXDO] :: straight, in straight line; directly, immediately, without intervening action; - derector_M_N = mkN "derector" "derectoris " masculine ; -- [FXXDE] :: director; + derector_M_N = mkN "derector" "derectoris" masculine ; -- [FXXDE] :: director; derectorium_N_N = mkN "derectorium" ; -- [FXXFE] :: directory; the Ordo (guide for celebrating Mass and liturgy of daily hours); 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; 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; + 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; + 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; 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; @@ -16849,66 +16849,66 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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); 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); + 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; + 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); derogito_V2 = mkV2 (mkV "derogitare") ; -- [BXXFS] :: ask urgently; 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); + 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.); 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; + 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; + 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; + 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) + 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; + 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; + descriptor_M_N = mkN "descriptor" "descriptoris" masculine ; -- [DXXFS] :: describer, delineator; descriptum_N_N = mkN "descriptum" ; -- [XXXFS] :: diary, journal; things (pl.) recorded, writings; 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; + 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); + 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; - 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); + 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; + 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); 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; + 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); @@ -16917,167 +16917,166 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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); 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; + desidies_F_N = mkN "desidies" "desidiei" feminine ; -- [DXXFS] :: idleness; desidiose_Adv = mkAdv "desidiose" ; -- [XXXFO] :: idly; indolently; slothfully; 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); + 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; + 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; + 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; + 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; - desolator_M_N = mkN "desolator" "desolatoris " masculine ; -- [EEXES] :: that makes lonely/desolate; waster (L+S); that/who abandons (Souter); + desitus_M_N = mkN "desitus" "desitus" masculine ; -- [DXXFS] :: ceasing, stopping; + desolatio_F_N = mkN "desolatio" "desolationis" feminine ; -- [EEXCS] :: desolation; desert; abandonment (Souter); solitude; + desolator_M_N = mkN "desolator" "desolatoris" masculine ; -- [EEXES] :: that makes lonely/desolate; waster (L+S); that/who abandons (Souter); 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); + 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; desparatus_A = mkA "desparatus" "desparata" "desparatum" ; -- [FXXEN] :: given up on; desperate; - despectatio_F_N = mkN "despectatio" "despectationis " feminine ; -- [XXXFO] :: view/looking downwards; prospect (L+S); - despectator_M_N = mkN "despectator" "despectatoris " masculine ; -- [DXXFS] :: despiser; one who looks down on; - despectio_F_N = mkN "despectio" "despectionis " feminine ; -- [XXXFO] :: disdain (for); act of looking down on; (w/GEN); despising, contempt (L+S); + despectatio_F_N = mkN "despectatio" "despectationis" feminine ; -- [XXXFO] :: view/looking downwards; prospect (L+S); + despectator_M_N = mkN "despectator" "despectatoris" masculine ; -- [DXXFS] :: despiser; one who looks down on; + despectio_F_N = mkN "despectio" "despectionis" feminine ; -- [XXXFO] :: disdain (for); act of looking down on; (w/GEN); despising, contempt (L+S); despecto_V2 = mkV2 (mkV "despectare") ; -- [XXXCO] :: look over/down at, survey; overlook; rise above, overtop; despise/look down on; - despector_M_N = mkN "despector" "despectoris " masculine ; -- [DXXFS] :: despiser; one who despises/looks down on; - despectrix_F_N = mkN "despectrix" "despectricis " feminine ; -- [DXXFS] :: despiser (female); she who despises/looks down on; + despector_M_N = mkN "despector" "despectoris" masculine ; -- [DXXFS] :: despiser; one who despises/looks down on; + despectrix_F_N = mkN "despectrix" "despectricis" feminine ; -- [DXXFS] :: despiser (female); she who despises/looks down on; despectus_A = mkA "despectus" "despecta" "despectum" ; -- [XXXDO] :: despicable; suffering contempt; insignificant; contemptible (L+S); - despectus_M_N = mkN "despectus" "despectus " masculine ; -- [XXXCO] :: view down/from above; prospect/panorama; spectacle; (object of) contempt/scorn; + despectus_M_N = mkN "despectus" "despectus" masculine ; -- [XXXCO] :: view down/from above; prospect/panorama; spectacle; (object of) contempt/scorn; despeculo_V2 = mkV2 (mkV "despeculare") ; -- [XXXFO] :: steal/rob of a mirror; desperabilis_A = mkA "desperabilis" "desperabilis" "desperabile" ; -- [EXXFS] :: desperate; incurable; 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); + desperatio_F_N = mkN "desperatio" "desperationis" feminine ; -- [XXXCO] :: desperation; desperate action/conduct/health; despair/hopelessness (of w/GEN); 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); + 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; + despicatio_F_N = mkN "despicatio" "despicationis" feminine ; -- [XXXFO] :: scorn; contempt; 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); + 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; + 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); + 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); despolio_V2 = mkV2 (mkV "despoliare") ; -- [XXXCO] :: rob/plunder; despoil (of); strip, deprive of clothing/covering; (for flogging); despolior_V = mkV "despoliari" ; -- [XXXFS] :: rob/plunder; despoil (of); strip, deprive of clothing/covering; (for flogging); despondeo_V2 = mkV2 (mkV "despondere") ; -- [BXXES] :: betroth, promise (woman) in marriage; pledge, promise; despair/yield/give up; - desponsatio_F_N = mkN "desponsatio" "desponsationis " feminine ; -- [DXXFS] :: betrothal; betrothing; engagement; + desponsatio_F_N = mkN "desponsatio" "desponsationis" feminine ; -- [DXXFS] :: betrothal; betrothing; engagement; desponsatus_A = mkA "desponsatus" "desponsata" "desponsatum" ; -- [DXXFE] :: betrothed; engaged; - desponsio_F_N = mkN "desponsio" "desponsionis " feminine ; -- [DXXFS] :: despairing, desponding; + 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; + 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; + 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; 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; + 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); + 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; + 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); + 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; destimulo_V2 = mkV2 (mkV "destimulare") ; -- [XXXFO] :: goad hard/on; stimulate (L+S); destina_F_N = mkN "destina" ; -- [XXXFO] :: prop, support, stay; destinata_F_N = mkN "destinata" ; -- [XXXES] :: betrothed female; bride; destinatarius_M_N = mkN "destinatarius" ; -- [GXXEK] :: recipient; destinate_Adv = mkAdv "destinate" ; -- [DXXFS] :: resolutely; obstinately; - destinatio_F_N = mkN "destinatio" "destinationis " feminine ; -- [XXXCO] :: designation (of end), specification/design; resolution/determination/obstinacy; + destinatio_F_N = mkN "destinatio" "destinationis" feminine ; -- [XXXCO] :: designation (of end), specification/design; resolution/determination/obstinacy; destinato_Adv = mkAdv "destinato" ; -- [XXXFO] :: according to a previously determined plan; - destinator_M_N = mkN "destinator" "destinatoris " masculine ; -- [DXXFS] :: designer, he who determines/designs; + destinator_M_N = mkN "destinator" "destinatoris" masculine ; -- [DXXFS] :: designer, he who determines/designs; destinatum_N_N = mkN "destinatum" ; -- [XXXCO] :: mark/target/goal, object aimed at; purpose/intention/design; [ex ~ => by plan]; 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; + 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; destrangulo_V2 = mkV2 (mkV "destrangulare") ; -- [XXXFS] :: choke, strangle; destroy; 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; 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; + 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; + 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; - 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; + destructor_M_N = mkN "destructor" "destructoris" masculine ; -- [DXXDS] :: destroyer, one who pulls down; + 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); + 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); + 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; + 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); + desultor_M_N = mkN "desultor" "desultoris" masculine ; -- [XDXCO] :: vaulter/leaper (between horses), circus trick rider; fickle person/lover (L+S); desultorium_N_N = mkN "desultorium" ; -- [GXXEK] :: trampoline; desultorius_A = mkA "desultorius" "desultoria" "desultorium" ; -- [XDXEO] :: of/belonging to a desultor (circus trick rider); desultory (L+S); superficial; 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; - 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; + desum_V = mkV "desse" "desum" "defui" "defuturus" ; -- Comment: [BPXDO] :: be wanting/lacking; fail/miss; abandon/desert, neglect; be away/absent/missing; + 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; + 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; + 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; + 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; deterior_A = mkA "deterior" ; -- [XXXBO] :: low/bad/inferior; poor/mean; unfavorable; weak; degenerate/wicked; @@ -17085,161 +17084,161 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; determinabilis_A = mkA "determinabilis" "determinabilis" "determinabile" ; -- [DXXFS] :: finite, that has an end; bounded, limited; - determinatio_F_N = mkN "determinatio" "determinationis " feminine ; -- [FXXDE] :: boundary; marking off boundary; time limitation; end/conclusion; determination - determinator_M_N = mkN "determinator" "determinatoris " masculine ; -- [DXXFS] :: determinator, one who determines/prescribes; + determinatio_F_N = mkN "determinatio" "determinationis" feminine ; -- [FXXDE] :: boundary; marking off boundary; time limitation; end/conclusion; determination + determinator_M_N = mkN "determinator" "determinatoris" masculine ; -- [DXXFS] :: determinator, one who determines/prescribes; 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; + 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; + detersio_F_N = mkN "detersio" "detersionis" feminine ; -- [DXXFS] :: cleansing; 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; + 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_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; + 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; - detonsio_F_N = mkN "detonsio" "detonsionis " feminine ; -- [DXXFS] :: shearing off; + detonsio_F_N = mkN "detonsio" "detonsionis" feminine ; -- [DXXFS] :: shearing off; detonso_V2 = mkV2 (mkV "detonsare") ; -- [XXXFO] :: clip, shear, crop/prune; shear off (wool), strip off (foliage), cut off/short; detorno_V2 = mkV2 (mkV "detornare") ; -- [XXXEO] :: turn, make by turning on lathe; detorqueo_V2 = mkV2 (mkV "detorquere") ; -- [XXXBO] :: |distort, bend out of shape; pervert, misrepresent, twist sense of, alter form; detorreo_V2 = mkV2 (mkV "detorrere") ; -- [DXXFS] :: scorch, burn; detorso_V2 = mkV2 (mkV "detorsare") ; -- [DXXFS] :: shear off; - detractatio_F_N = mkN "detractatio" "detractationis " feminine ; -- [XXXCO] :: refusal (of a task), evasion, declining; renunciation; disparagement/detraction; - detractator_M_N = mkN "detractator" "detractatoris " masculine ; -- [XXXEO] :: refuser, evader, shirker; one who disparages/belittles; - detractatus_M_N = mkN "detractatus" "detractatus " masculine ; -- [DXXFS] :: treatise; - detractio_F_N = mkN "detractio" "detractionis " feminine ; -- [XXXCO] :: removal, withdrawal; omission (words); blood-letting; purge; slander (Plater); + detractatio_F_N = mkN "detractatio" "detractationis" feminine ; -- [XXXCO] :: refusal (of a task), evasion, declining; renunciation; disparagement/detraction; + detractator_M_N = mkN "detractator" "detractatoris" masculine ; -- [XXXEO] :: refuser, evader, shirker; one who disparages/belittles; + detractatus_M_N = mkN "detractatus" "detractatus" masculine ; -- [DXXFS] :: treatise; + detractio_F_N = mkN "detractio" "detractionis" feminine ; -- [XXXCO] :: removal, withdrawal; omission (words); blood-letting; purge; slander (Plater); detracto_V2 = mkV2 (mkV "detractare") ; -- [XXXBO] :: |disparage/belittle, speak/write slightingly of; reduce/depreciate/detract from; - detractor_M_N = mkN "detractor" "detractoris " masculine ; -- [XXXFO] :: detractor, defamer; disparager/belittler/diminisher; decliner/refuser (L+S); + detractor_M_N = mkN "detractor" "detractoris" masculine ; -- [XXXFO] :: detractor, defamer; disparager/belittler/diminisher; decliner/refuser (L+S); 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); + 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); detrecto_V2 = mkV2 (mkV "detrectare") ; -- [XXXBO] :: |disparage/belittle, speak/write slightingly of; reduce/depreciate/detract from; - detrector_M_N = mkN "detrector" "detrectoris " masculine ; -- [XXXFO] :: detractor, defamer; who disparages/belittles/diminisher; decliner/refuser (L+S); + detrector_M_N = mkN "detrector" "detrectoris" masculine ; -- [XXXFO] :: detractor, defamer; who disparages/belittles/diminisher; decliner/refuser (L+S); detrimentosus_A = mkA "detrimentosus" "detrimentosa" "detrimentosum" ; -- [XXXFO] :: harmful, detrimental, hurtful; detrimentum_N_N = mkN "detrimentum" ; -- [XWXBS] :: |defeat, loss of battle; overthrow; detritus_A = mkA "detritus" "detrita" "detritum" ; -- [XXXFS] :: worn out; trite, hackneyed; - detritus_M_N = mkN "detritus" "detritus " masculine ; -- [XXXFO] :: process of rubbing away; + 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); + 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; + 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; + 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); + 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; + 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); + 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; + 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; + 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; + 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); + 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); + 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); deversor_V = mkV "deversari" ; -- [XXXDX] :: lodge, stay, have lodgings; put up at an inn; deversoriolum_N_N = mkN "deversoriolum" ; -- [XXXEO] :: small lodging place; rooming house; small place to stay; deversorium_N_N = mkN "deversorium" ; -- [FXXEK] :: hotel; 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; + 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); + 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; + 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); devexum_N_N = mkN "devexum" ; -- [XXXDO] :: slope; inclined surface (L+S); downhill, easy; devexus_A = mkA "devexus" "devexa" "devexum" ; -- [XXXBO] :: sloping/inclining downwards/downhill/away; steep; shelving; declining/sinking; - deviatio_F_N = mkN "deviatio" "deviationis " feminine ; -- [XXXFO] :: evasion, avoidance; deviation (Latham); straying; - 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; + deviatio_F_N = mkN "deviatio" "deviationis" feminine ; -- [XXXFO] :: evasion, avoidance; deviation (Latham); straying; + 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]: + 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]: 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; + 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; devirgino_V2 = mkV2 (mkV "devirginare") ; -- [XXXEO] :: deflower, deprive of virginity; violate, ravish; grow up, quit youth (PASS L+S); devito_V = mkV "devitare" ; -- [XXXCO] :: avoid; get/keep clear of; shun (L+S); go out of the way of; dodge/duck/evade; devium_N_N = mkN "devium" ; -- [XXXDO] :: remote/secluded/lonely/unfrequented/out-of-way parts/places (pl.); devius_A = mkA "devius" "devia" "devium" ; -- [XXXBO] :: |erratic/inconsistent, devious; deviating/straying/wandering; foolish (L+S); - devocator_M_N = mkN "devocator" "devocatoris " masculine ; -- [EXXDM] :: challenger; + devocator_M_N = mkN "devocator" "devocatoris" masculine ; -- [EXXDM] :: challenger; 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; + 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; + 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; devoratorium_N_N = mkN "devoratorium" ; -- [XXXFS] :: devouring maw; devoratorius_A = mkA "devoratorius" "devoratoria" "devoratorium" ; -- [XXXFS] :: devouring; destructive to; - devoratrix_F_N = mkN "devoratrix" "devoratricis " feminine ; -- [EXXFS] :: devouress; glutton; she who eats greedily/voraciously; who gobbles/swallows up; + devoratrix_F_N = mkN "devoratrix" "devoratricis" feminine ; -- [EXXFS] :: devouress; glutton; she who eats greedily/voraciously; who gobbles/swallows up; devoro_V2 = mkV2 (mkV "devorare") ; -- [XXXBO] :: |use up; waste; swallow, endure, put up with; repress/suppress, check (emotion); - devorsor_M_N = mkN "devorsor" "devorsoris " masculine ; -- [XXXFO] :: lodger, guest; inmate (L+S); + devorsor_M_N = mkN "devorsor" "devorsoris" masculine ; -- [XXXFO] :: lodger, guest; inmate (L+S); 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; + 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); + devotatio_F_N = mkN "devotatio" "devotationis" feminine ; -- [EEXES] :: consecration, making of vows; curse (Douay); devote_Adv =mkAdv "devote" "devotius" "devotissime" ; -- [XXXCS] :: devotedly, faithfully; devoutly; - devotio_F_N = mkN "devotio" "devotionis " feminine ; -- [XXXBS] :: |devoting/consecrating; fealty/allegiance; piety; prayer; zeal; consideration; + devotio_F_N = mkN "devotio" "devotionis" feminine ; -- [XXXBS] :: |devoting/consecrating; fealty/allegiance; piety; prayer; zeal; consideration; 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; + 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; 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); + 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; 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); + dexteratio_F_N = mkN "dexteratio" "dexterationis" feminine ; -- [DEXFS] :: movement towards the right (in religious ceremonial); dexteratus_A = mkA "dexteratus" "dexterata" "dexteratum" ; -- [DXXFS] :: lying to the right; 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; + 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); + dextrale_N_N = mkN "dextrale" "dextralis" neuter ; -- [EXXFS] :: bracelet; armlet (Ecc); dextraliolum_N_N = mkN "dextraliolum" ; -- [EXXFS] :: little/small bracelet; - dextralis_F_N = mkN "dextralis" "dextralis " feminine ; -- [EXXFS] :: hatchet; - dextrator_M_N = mkN "dextrator" "dextratoris " masculine ; -- [XWXIO] :: soldier (of a particular unknown kind); + dextralis_F_N = mkN "dextralis" "dextralis" feminine ; -- [EXXFS] :: hatchet; + dextrator_M_N = mkN "dextrator" "dextratoris" masculine ; -- [XWXIO] :: soldier (of a particular unknown kind); dextratus_A = mkA "dextratus" "dextrata" "dextratum" ; -- [XTXEO] :: lying to right of survey line; honorific title (position in unknown rite?); dextre_Adv =mkAdv "dextre" "dextrius" "dextrime" ; -- [XXXFS] :: skillfully; dexterously; dextrinum_N_N = mkN "dextrinum" ; -- [GXXEK] :: dextrin, British gum, leiocome; (starch modified by high temperature OED); @@ -17254,22 +17253,22 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat dia_F_N = mkN "dia" ; -- [DEXFS] :: goddess; diabatharius_M_N = mkN "diabatharius" ; -- [XXXFO] :: slipper-maker; maker of diabathri (particular kind of slipper); shoemaker; diabathrum_N_N = mkN "diabathrum" ; -- [XXXFO] :: slipper (of a particular kind); - diabetes_M_N = mkN "diabetes" "diabetae " masculine ; -- [XXXDS] :: siphon; tube for sucking/blowing liquid, straw; fire-engine device; liquid jet; + diabetes_M_N = mkN "diabetes" "diabetae" masculine ; -- [XXXDS] :: siphon; tube for sucking/blowing liquid, straw; fire-engine device; liquid jet; diabeticus_A = mkA "diabeticus" "diabetica" "diabeticum" ; -- [FBXDM] :: diabetic; having diabetes; (medical condition); diabeticus_M_N = mkN "diabeticus" ; -- [FBXDM] :: diabetic; one having diabetes; (medical condition); - diabole_F_N = mkN "diabole" "diaboles " feminine ; -- [ELXFS] :: slander; false accusation; + diabole_F_N = mkN "diabole" "diaboles" feminine ; -- [ELXFS] :: slander; false accusation; diabolicus_A = mkA "diabolicus" "diabolica" "diabolicum" ; -- [EEXCS] :: devilish/diabolic; characteristic of/proceeding/derived from the devil; diabolus_M_N = mkN "diabolus" ; -- [EEXBM] :: devil; The Devil, Satan, Prince of Evil/Darkness; evil one; diabulus_M_N = mkN "diabulus" ; -- [FEXCM] :: devil; The Devil, Satan, Prince of Evil/Darkness; evil one; diacatochia_F_N = mkN "diacatochia" ; -- [ELXFS] :: possession; diacatochus_M_N = mkN "diacatochus" ; -- [ELXFS] :: possessor; - diacecaumeme_F_N = mkN "diacecaumeme" "diacecaumemes " feminine ; -- [DXXES] :: torrid zone; - diacheton_N_N = mkN "diacheton" "diacheti " neuter ; -- [XAXNS] :: small plant from Rhodes; (also called) crysisceptrum; - diachylon_N_N = mkN "diachylon" "diachyli " neuter ; -- [XBXFS] :: medicine (composed of juices OED); - diachyton_N_N = mkN "diachyton" "diachyti " neuter ; -- [XXXNO] :: wine (particular kind); sweet wine (variety of, L+S); - diacisson_N_N = mkN "diacisson" "diacissi " neuter ; -- [DBXFS] :: ointment (kind of); - diacodion_N_N = mkN "diacodion" "diacodii " neuter ; -- [XBXES] :: medicine (prepared from poppy juice); opiate; diacodione/diacode (OED); - diacon_M_N = mkN "diacon" "diaconis " masculine ; -- [EEXDV] :: deacon; cleric of minor orders (first/highest level); + diacecaumeme_F_N = mkN "diacecaumeme" "diacecaumemes" feminine ; -- [DXXES] :: torrid zone; + diacheton_N_N = mkN "diacheton" "diacheti" neuter ; -- [XAXNS] :: small plant from Rhodes; (also called) crysisceptrum; + diachylon_N_N = mkN "diachylon" "diachyli" neuter ; -- [XBXFS] :: medicine (composed of juices OED); + diachyton_N_N = mkN "diachyton" "diachyti" neuter ; -- [XXXNO] :: wine (particular kind); sweet wine (variety of, L+S); + diacisson_N_N = mkN "diacisson" "diacissi" neuter ; -- [DBXFS] :: ointment (kind of); + diacodion_N_N = mkN "diacodion" "diacodii" neuter ; -- [XBXES] :: medicine (prepared from poppy juice); opiate; diacodione/diacode (OED); + diacon_M_N = mkN "diacon" "diaconis" masculine ; -- [EEXDV] :: deacon; cleric of minor orders (first/highest level); diaconalis_A = mkA "diaconalis" "diaconalis" "diaconale" ; -- [EEXEE] :: deaconal/diaconal, of/pertaining to a deacon/deconate/deaconship; diaconandus_M_N = mkN "diaconandus" ; -- [EEXFE] :: deacon-elect, one who is to be made a deacon; diaconatus_M_N = mkN "diaconatus" ; -- [EEXES] :: deaconate, office/position of deacon, deaconship; deaconry (Latham); @@ -17277,109 +17276,109 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat diaconicum_N_N = mkN "diaconicum" ; -- [FEXFE] :: sacristy; place for sorting vessels of the alter (L+S); diaconicus_A = mkA "diaconicus" "diaconica" "diaconicum" ; -- [EEXES] :: of/pertaining to a deacon/deconate/deaconship; diaconissa_F_N = mkN "diaconissa" ; -- [EEXFS] :: deaconess; - diaconissatus_M_N = mkN "diaconissatus" "diaconissatus " masculine ; -- [EEXFE] :: order of deaconesses; + diaconissatus_M_N = mkN "diaconissatus" "diaconissatus" masculine ; -- [EEXFE] :: order of deaconesses; diaconium_N_N = mkN "diaconium" ; -- [EEXES] :: deaconate, office/position of deacon, deaconship; diaconus_M_N = mkN "diaconus" ; -- [EEXDS] :: deacon; cleric of minor orders (first/highest level); - diacope_F_N = mkN "diacope" "diacopes " feminine ; -- [DGXFS] :: tmesis; (separation of a compound word by interposition of another word OED); + diacope_F_N = mkN "diacope" "diacopes" feminine ; -- [DGXFS] :: tmesis; (separation of a compound word by interposition of another word OED); diacopus_M_N = mkN "diacopus" ; -- [XXXFO] :: breach in an embankment; spillway/sluice/opening/channel in dam to drain water; diadata_F_N = mkN "diadata" ; -- [ELXFS] :: distribution; diadema_F_N = mkN "diadema" ; -- [XXXDO] :: diadem/crown; ornamental headband; (sign of sovereignty); dominion; preeminence; - diadema_N_N = mkN "diadema" "diadematis " neuter ; -- [XXXCO] :: diadem/crown; ornamental headband; (sign of sovereignty); dominion; preeminence; + diadema_N_N = mkN "diadema" "diadematis" neuter ; -- [XXXCO] :: diadem/crown; ornamental headband; (sign of sovereignty); dominion; preeminence; diademalis_A = mkA "diademalis" "diademalis" "diademale" ; -- [XLXFS] :: wearing a diadem; pertaining to diadem; diadematus_A = mkA "diadematus" "diademata" "diadematum" ; -- [XLXEO] :: crowned; wearing a diadem; adorned w/diadem (L+S); - diadiapason_N_N = mkN "diadiapason" "diadiapasi " neuter ; -- [XDHFO] :: double octave; (music); (indecl.?); - diadoche_F_N = mkN "diadoche" "diadoches " feminine ; -- [XLXIO] :: succession (in office); - diadochos_M_N = mkN "diadochos" "diadochi " masculine ; -- [XLXIO] :: successor, one who holds office by right of succession; + diadiapason_N_N = mkN "diadiapason" "diadiapasi" neuter ; -- [XDHFO] :: double octave; (music); (indecl.?); + diadoche_F_N = mkN "diadoche" "diadoches" feminine ; -- [XLXIO] :: succession (in office); + diadochos_M_N = mkN "diadochos" "diadochi" masculine ; -- [XLXIO] :: successor, one who holds office by right of succession; diadochus_M_N = mkN "diadochus" ; -- [XLXIO] :: successor, one who holds office by right of succession; diadumenos_A = mkA "diadumenos" "diadumenos" "diadumenon" ; -- [XXXEO] :: engaged in tying one's hair in a band; diadumenus_A = mkA "diadumenus" "diadumena" "diadumenum" ; -- [XXXEO] :: engaged in tying one's hair in a band; wearing a diadem (L+S); - diaeresis_F_N = mkN "diaeresis" "diaeresis " feminine ; -- [XGXFO] :: distribution, separating diphthong/syllable in two pronounced connectively; + diaeresis_F_N = mkN "diaeresis" "diaeresis" feminine ; -- [XGXFO] :: distribution, separating diphthong/syllable in two pronounced connectively; diaeta_F_N = mkN "diaeta" ; -- [XBXFO] :: |diet, regimen; course of treatment, way/mode of living prescribed by physician; diaetarcha_F_N = mkN "diaetarcha" ; -- [XXXIO] :: servant (female) in charge of the rooms in a house; maid; diaetarchus_M_N = mkN "diaetarchus" ; -- [XXXIO] :: servant in charge of the rooms in a house; valet de chambre; diaetarius_M_N = mkN "diaetarius" ; -- [XXXDO] :: servant in charge of the rooms; cabin steward (on ship); valet de chambre (L+S); diaeteta_M_N = mkN "diaeteta" ; -- [DXXFS] :: umpire; judge, arbiter; diaetetica_F_N = mkN "diaetetica" ; -- [XBXFO] :: art of medicine; - diaetetice_F_N = mkN "diaetetice" "diaetetices " feminine ; -- [DBXFS] :: dietetics; nutritional medicine; treating with diet; + diaetetice_F_N = mkN "diaetetice" "diaetetices" feminine ; -- [DBXFS] :: dietetics; nutritional medicine; treating with diet; diaeteticus_A = mkA "diaeteticus" "diaetetica" "diaeteticum" ; -- [XBXFS] :: of diet; treating through diet; diaeteticus_M_N = mkN "diaeteticus" ; -- [XBXFO] :: physician (as opposed to surgeon); doctor who treats with diet (L+S); - diaglaucion_N_N = mkN "diaglaucion" "diaglaucii " neuter ; -- [XBXES] :: salve made of herbs; + diaglaucion_N_N = mkN "diaglaucion" "diaglaucii" neuter ; -- [XBXES] :: salve made of herbs; diaglaucium_N_N = mkN "diaglaucium" ; -- [XBXES] :: salve made of herbs; - diagnosis_F_N = mkN "diagnosis" "diagnosis " feminine ; -- [GBXEK] :: diagnosis; - diagon_M_N = mkN "diagon" "diagonis " masculine ; -- [XSXEO] :: diagonal line, line from one angle to an opposite; (geometry); + diagnosis_F_N = mkN "diagnosis" "diagnosis" feminine ; -- [GBXEK] :: diagnosis; + diagon_M_N = mkN "diagon" "diagonis" masculine ; -- [XSXEO] :: diagonal line, line from one angle to an opposite; (geometry); diagonalis_A = mkA "diagonalis" "diagonalis" "diagonale" ; -- [XSXFO] :: diagonal, from one angle to an opposite; (geometry); diagonios_A = mkA "diagonios" "diagonios" "diagonion" ; -- [XSXFO] :: diagonal, from one angle to an opposite; (geometry); diagonium_N_N = mkN "diagonium" ; -- [XSXFS] :: diagonal line, line from one angle to an opposite; (geometry); diagonus_M_N = mkN "diagonus" ; -- [XSXEO] :: diagonal line, line from one angle to an opposite; (geometry); - diagramma_N_N = mkN "diagramma" "diagrammatis " neuter ; -- [XXXFO] :: diagram, figure; D:scale, gamut, range (music L+S); + diagramma_N_N = mkN "diagramma" "diagrammatis" neuter ; -- [XXXFO] :: diagram, figure; D:scale, gamut, range (music L+S); diagrydium_N_N = mkN "diagrydium" ; -- [DAXFS] :: juice of the plant scammones (Convolvulus Scammonia); (used as purgative); - diaiteon_N_N = mkN "diaiteon" "diaitei " neuter ; -- [DBXFS] :: salve made of juice of willow; + diaiteon_N_N = mkN "diaiteon" "diaitei" neuter ; -- [DBXFS] :: salve made of juice of willow; dialectica_F_N = mkN "dialectica" ; -- [XGXCO] :: dialectics, logic; art of logic/reasoning; dialectice_Adv = mkAdv "dialectice" ; -- [XGXEO] :: dialectically; logically; according to the dialectical method; - dialectice_F_N = mkN "dialectice" "dialectices " feminine ; -- [XGXCS] :: dialectics, logic; art of logic/reasoning; + dialectice_F_N = mkN "dialectice" "dialectices" feminine ; -- [XGXCS] :: dialectics, logic; art of logic/reasoning; dialecticos_A = mkA "dialecticos" "dialectice" "dialecticon" ; -- [XGXCO] :: dialectical, logical; reasoning (creatures); (dialectical method of Academy); dialecticum_N_N = mkN "dialecticum" ; -- [XGXCO] :: dialectics (pl.), logic; art of logic/reasoning; logic questions (L+S); dialecticus_A = mkA "dialecticus" "dialectica" "dialecticum" ; -- [XGXCO] :: dialectical, logical; reasoning (creatures); (dialectical method of Academy); dialecticus_M_N = mkN "dialecticus" ; -- [XGXCO] :: dialectician, logician; Academic philosopher; one who studies logic; - dialectos_F_N = mkN "dialectos" "dialecti " feminine ; -- [XGXEO] :: dialect; form of speech; + dialectos_F_N = mkN "dialectos" "dialecti" feminine ; -- [XGXEO] :: dialect; form of speech; dialectus_F_N = mkN "dialectus" ; -- [XGXFS] :: dialect; form of speech; - dialepidos_F_N = mkN "dialepidos" "dialepidi " feminine ; -- [DBXFS] :: unguent made with scales that fly from metal in hammering; + dialepidos_F_N = mkN "dialepidos" "dialepidi" feminine ; -- [DBXFS] :: unguent made with scales that fly from metal in hammering; dialeucos_A = mkA "dialeucos" "dialeucos" "dialeucon" ; -- [XXXNO] :: partially white; intermixed with white (L+S); whitish; dialibanum_N_N = mkN "dialibanum" ; -- [DBXFS] :: salve made with frankincense; - dialion_N_N = mkN "dialion" "dialii " neuter ; -- [DAXFS] :: heliotrope (plant); - dialogismos_M_N = mkN "dialogismos" "dialogismi " masculine ; -- [XGXFS] :: consideration; (in logical argument); + dialion_N_N = mkN "dialion" "dialii" neuter ; -- [DAXFS] :: heliotrope (plant); + dialogismos_M_N = mkN "dialogismos" "dialogismi" masculine ; -- [XGXFS] :: consideration; (in logical argument); dialogista_M_N = mkN "dialogista" ; -- [EGXFS] :: able disputant; good arguer/reasoner; dialogus_M_N = mkN "dialogus" ; -- [XGXDO] :: discussion, philosophical conversation; dispute; composition in dialog form; dialutensis_A = mkA "dialutensis" "dialutensis" "dialutense" ; -- [XAXNO] :: that lives partly in mud; (like a mussel); - dialysis_F_N = mkN "dialysis" "dialysis " feminine ; -- [XGXFO] :: resolution/dialysis (of diphthong); making two short syllables from long one; - dialyton_N_N = mkN "dialyton" "dialyti " neuter ; -- [DGXFO] :: resolution/dialysis (of diphthong); making two short syllables from long one; - diamastigosis_F_N = mkN "diamastigosis" "diamastigosis " feminine ; -- [XXXFS] :: severe scourging; - diameliloton_N_N = mkN "diameliloton" "diameliloti " neuter ; -- [DBXFS] :: salve made of meliloton (kind of clover); - diameliton_N_N = mkN "diameliton" "diameliti " neuter ; -- [DBXFS] :: salve made of honey; + dialysis_F_N = mkN "dialysis" "dialysis" feminine ; -- [XGXFO] :: resolution/dialysis (of diphthong); making two short syllables from long one; + dialyton_N_N = mkN "dialyton" "dialyti" neuter ; -- [DGXFO] :: resolution/dialysis (of diphthong); making two short syllables from long one; + diamastigosis_F_N = mkN "diamastigosis" "diamastigosis" feminine ; -- [XXXFS] :: severe scourging; + diameliloton_N_N = mkN "diameliloton" "diameliloti" neuter ; -- [DBXFS] :: salve made of meliloton (kind of clover); + diameliton_N_N = mkN "diameliton" "diameliti" neuter ; -- [DBXFS] :: salve made of honey; diameter_M_N = mkN "diameter" ; -- [FSXEM] :: diameter; (geometry); diametralis_A = mkA "diametralis" "diametralis" "diametrale" ; -- [FSXEM] :: diametrical, diametric; (geometry); diametricalis_A = mkA "diametricalis" "diametricalis" "diametricale" ; -- [FSXFM] :: diametrical, diametric; (geometry); diametros_A = mkA "diametros" "diametros" "diametron" ; -- [XSXFO] :: diametral, of/related to diameter; diametric, diametrical (Whitaker); - diametros_F_N = mkN "diametros" "diametri " feminine ; -- [XSXEO] :: diameter; + diametros_F_N = mkN "diametros" "diametri" feminine ; -- [XSXEO] :: diameter; diametrum_N_N = mkN "diametrum" ; -- [XDXES] :: loss; want of; that is wanting to the measure; - diamisyos_F_N = mkN "diamisyos" "diamisyi " feminine ; -- [DBXFS] :: salve made of misy (copper ore/pyrite); - diamoron_N_N = mkN "diamoron" "diamori " neuter ; -- [DBXES] :: medicine made of juice of black mulberries and honey; + diamisyos_F_N = mkN "diamisyos" "diamisyi" feminine ; -- [DBXFS] :: salve made of misy (copper ore/pyrite); + diamoron_N_N = mkN "diamoron" "diamori" neuter ; -- [DBXES] :: medicine made of juice of black mulberries and honey; dianoea_F_N = mkN "dianoea" ; -- [XGXFS] :: dianoetic, display of fact (instead of conception); - dianome_F_N = mkN "dianome" "dianomes " feminine ; -- [XLXFS] :: distribution of money (in canvassing for office); buying votes; + dianome_F_N = mkN "dianome" "dianomes" feminine ; -- [XLXFS] :: distribution of money (in canvassing for office); buying votes; 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.?); - diapente_N = constN "diapente." neuter ; -- [XDHFO] :: interval of a fifth; (music); + diapasma_N_N = mkN "diapasma" "diapasmatis" neuter ; -- [XXXEO] :: scented (body) powder; + diapason_N_N = mkN "diapason" "diapasi" neuter ; -- [XDHFO] :: whole octave; (music); (indecl.?); + 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; + diaphoresis_F_N = mkN "diaphoresis" "diaphoresis" feminine ; -- [DBXES] :: sweat; exhaustion; diaphoreticus_A = mkA "diaphoreticus" "diaphoretica" "diaphoreticum" ; -- [DBXFS] :: inducing/promoting/producing perspiration/sweat, diaphoretic, sudorfic; - diaphragma_N_N = mkN "diaphragma" "diaphragmatis " neuter ; -- [DBHDS] :: diaphragm; septum, partition; midriff; diaphragm (optics/audio/cervical); - diaporesis_F_N = mkN "diaporesis" "diaporesis " feminine ; -- [DGXES] :: perplexity, doubting; sweating it out?; (not pure sweat in classical); - diapsalma_N_N = mkN "diapsalma" "diapsalmatis " neuter ; -- [DDXFS] :: pause in music; + diaphragma_N_N = mkN "diaphragma" "diaphragmatis" neuter ; -- [DBHDS] :: diaphragm; septum, partition; midriff; diaphragm (optics/audio/cervical); + diaporesis_F_N = mkN "diaporesis" "diaporesis" feminine ; -- [DGXES] :: perplexity, doubting; sweating it out?; (not pure sweat in classical); + diapsalma_N_N = mkN "diapsalma" "diapsalmatis" neuter ; -- [DDXFS] :: pause in music; diapsoricum_N_N = mkN "diapsoricum" ; -- [DBXFS] :: eye-salve; diarium_N_N = mkN "diarium" ; -- [XXXDO] :: diary, daily record, journal; daily allowance/ration; newspaper (Cal); diarius_A = mkA "diarius" "diaria" "diarium" ; -- [FXXDE] :: daily; diarrhoea_F_N = mkN "diarrhoea" ; -- [DBXFS] :: diarrhea/diarrhoea; the flux; - diartymaton_N_N = mkN "diartymaton" "diartymati " neuter ; -- [DBXFS] :: salve (of a particular kind); - diasostes_M_N = mkN "diasostes" "diasostae " masculine ; -- [XLXFS] :: policeman (sort of); - diaspermaton_N_N = mkN "diaspermaton" "diaspermati " neuter ; -- [DBXES] :: drug made from seeds; - diastema_N_N = mkN "diastema" "diastematis " neuter ; -- [XXXEO] :: space; distance; interval (L+S); space between; D:interval (in music); + diartymaton_N_N = mkN "diartymaton" "diartymati" neuter ; -- [DBXFS] :: salve (of a particular kind); + diasostes_M_N = mkN "diasostes" "diasostae" masculine ; -- [XLXFS] :: policeman (sort of); + diaspermaton_N_N = mkN "diaspermaton" "diaspermati" neuter ; -- [DBXES] :: drug made from seeds; + diastema_N_N = mkN "diastema" "diastematis" neuter ; -- [XXXEO] :: space; distance; interval (L+S); space between; D:interval (in music); diastematicus_A = mkA "diastematicus" "diastematica" "diastematicum" ; -- [XXXES] :: having pauses/spaces/intervals; - diastole_F_N = mkN "diastole" "diastoles " feminine ; -- [DGXES] :: distole, mark indicating separation or words; comma; + diastole_F_N = mkN "diastole" "diastoles" feminine ; -- [DGXES] :: distole, mark indicating separation or words; comma; diastoleus_M_N = mkN "diastoleus" ; -- [DLXFS] :: auditor of accounts; diastylos_A = mkA "diastylos" "diastylos" "diastylon" ; -- [XTXFO] :: diastyle, having columns at wide intervals; (intervals of 3-4 diameters OED); - diasyrmos_M_N = mkN "diasyrmos" "diasyrmi " masculine ; -- [DXXFS] :: mocking; reviling; disparagement, ridicule (as rhetorical ploy); + diasyrmos_M_N = mkN "diasyrmos" "diasyrmi" masculine ; -- [DXXFS] :: mocking; reviling; disparagement, ridicule (as rhetorical ploy); diasyrtice_Adv = mkAdv "diasyrtice" ; -- [DXXFS] :: mockingly; disparagingly; diasyrticus_A = mkA "diasyrticus" "diasyrtica" "diasyrticum" ; -- [DXXFS] :: mocking; reviling; disparaging, ridiculing; - diataxis_F_N = mkN "diataxis" "diataxis " feminine ; -- [XLXFO] :: instrument of disposition; - diatessaron_N_N = mkN "diatessaron" "diatessari " neuter ; -- [DBXES] :: |medicine made of four ingredients; - diathesis_F_N = mkN "diathesis" "diathesis " feminine ; -- [XBHIO] :: disease; morbid condition; + diataxis_F_N = mkN "diataxis" "diataxis" feminine ; -- [XLXFO] :: instrument of disposition; + diatessaron_N_N = mkN "diatessaron" "diatessari" neuter ; -- [DBXES] :: |medicine made of four ingredients; + diathesis_F_N = mkN "diathesis" "diathesis" feminine ; -- [XBHIO] :: disease; morbid condition; diathyrum_N_N = mkN "diathyrum" ; -- [DXHFS] :: foyer (pl.); enclosure before door of Greek house; (Roman) prothyrum; diatoichum_N_N = mkN "diatoichum" ; -- [XXXFS] :: brick-work (sort of); - diatonicon_N_N = mkN "diatonicon" "diatonici " neuter ; -- [XTXNS] :: masonry filled in with rubble; (band-stone wall binding); + diatonicon_N_N = mkN "diatonicon" "diatonici" neuter ; -- [XTXNS] :: masonry filled in with rubble; (band-stone wall binding); diatonicus_A = mkA "diatonicus" "diatonica" "diatonicum" ; -- [DDXFS] :: diatonic; (music); - diatonon_N_N = mkN "diatonon" "diatoni " neuter ; -- [XDXEO] :: diatonic scale; natural/diatonic series of notes without break (L+S); + diatonon_N_N = mkN "diatonon" "diatoni" neuter ; -- [XDXEO] :: diatonic scale; natural/diatonic series of notes without break (L+S); diatonos_A = mkA "diatonos" "diatonos" "diatonon" ; -- [XDXFO] :: diatonic; (music scale); diatonum_N_N = mkN "diatonum" ; -- [XDXES] :: diatonic scale; natural/diatonic series of notes without break (L+S); diatonus_A = mkA "diatonus" "diatona" "diatonum" ; -- [XTXES] :: band-stones (w/lateres, stones/bricks which run through to bind wall); @@ -17389,32 +17388,32 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat diatriba_F_N = mkN "diatriba" ; -- [XGXEO] :: school for rhetoric/philosophy; learned discussion (L+S); diatritaeus_A = mkA "diatritaeus" "diatritaea" "diatritaeum" ; -- [DXXFS] :: three-day, of the space of three days; diatritus_F_N = mkN "diatritus" ; -- [DBXFS] :: return of fever on third day; - diatyposis_F_N = mkN "diatyposis" "diatyposis " feminine ; -- [DLXFS] :: description; representation; - diaulos_M_N = mkN "diaulos" "diauli " masculine ; -- [XXXFO] :: double course; course/race of two laps; (racing); race out and back (L+S); - diaxylon_N_N = mkN "diaxylon" "diaxyli " neuter ; -- [XAXNO] :: plant, aspalathus or camel thorn; plant from Rhodes, crysisceptrum (L+S); - diazeugmenon_N_N = mkN "diazeugmenon" "diazeugmeni " neuter ; -- [DGXFS] :: separation; disjunction; - diazeuxis_F_N = mkN "diazeuxis" "diazeuxis " feminine ; -- [XGXFS] :: separation; - diazoma_N_N = mkN "diazoma" "diazomatis " neuter ; -- [XDXFO] :: semi-circular gangway/ramp in theater; space between seats in theater (L+S); + diatyposis_F_N = mkN "diatyposis" "diatyposis" feminine ; -- [DLXFS] :: description; representation; + diaulos_M_N = mkN "diaulos" "diauli" masculine ; -- [XXXFO] :: double course; course/race of two laps; (racing); race out and back (L+S); + diaxylon_N_N = mkN "diaxylon" "diaxyli" neuter ; -- [XAXNO] :: plant, aspalathus or camel thorn; plant from Rhodes, crysisceptrum (L+S); + diazeugmenon_N_N = mkN "diazeugmenon" "diazeugmeni" neuter ; -- [DGXFS] :: separation; disjunction; + diazeuxis_F_N = mkN "diazeuxis" "diazeuxis" feminine ; -- [XGXFS] :: separation; + diazoma_N_N = mkN "diazoma" "diazomatis" neuter ; -- [XDXFO] :: semi-circular gangway/ramp in theater; space between seats in theater (L+S); dibalo_V2 = mkV2 (mkV "dibalare") ; -- [XXXFO] :: blab; bleat out; dibapha_F_N = mkN "dibapha" ; -- [XXXNO] :: twice-dyed robe; scarlet striped w/purple robe (of high magistrate L+S); dibaphus_A = mkA "dibaphus" "dibapha" "dibaphum" ; -- [XXXNO] :: twice-dyed; (like robe of magistrater); scarlet striped w/purple (L+S); - dibrachysos_F_N = mkN "dibrachysos" "dibrachi " feminine ; -- [XPXEO] :: dibrach, pyrrhic, metrical foot consisting of two short syllables; + dibrachysos_F_N = mkN "dibrachysos" "dibrachi" feminine ; -- [XPXEO] :: dibrach, pyrrhic, metrical foot consisting of two short syllables; dibucino_V = mkV "dibucinare" ; -- [XXXES] :: trumpet forth; trumpet in different direction; dica_F_N = mkN "dica" ; -- [XLXEO] :: lawsuit; legal action; judicial process (L+S); dicabulum_N_N = mkN "dicabulum" ; -- [DXXES] :: chatter (pl.); idle talk; - dicacitas_F_N = mkN "dicacitas" "dicacitatis " feminine ; -- [XXXEO] :: biting/mordant/caustic/incisive wit/raillery/banter/ridicule; + dicacitas_F_N = mkN "dicacitas" "dicacitatis" feminine ; -- [XXXEO] :: biting/mordant/caustic/incisive wit/raillery/banter/ridicule; dicacule_Adv = mkAdv "dicacule" ; -- [XXXFO] :: banteringly; caustically; facetiously (L+S); keenly; satirically; dicaculus_A = mkA "dicaculus" "dicacula" "dicaculum" ; -- [XXXFS] :: talkative/loquacious; glib; spirited/lively (speech); witty (L+S); facetious; dicaeologia_F_N = mkN "dicaeologia" ; -- [XLXFS] :: plea; defense; dicanicium_N_N = mkN "dicanicium" ; -- [FWXEE] :: mace; dicasterium_N_N = mkN "dicasterium" ; -- [FXXEE] :: office; bureau; - dicatio_F_N = mkN "dicatio" "dicationis " feminine ; -- [XXXFO] :: attachment as citizen to another state; declaring intent to become citizen; - dicator_M_N = mkN "dicator" "dicatoris " masculine ; -- [XXXIO] :: dedicator; + dicatio_F_N = mkN "dicatio" "dicationis" feminine ; -- [XXXFO] :: attachment as citizen to another state; declaring intent to become citizen; + dicator_M_N = mkN "dicator" "dicatoris" masculine ; -- [XXXIO] :: dedicator; dicatus_A = mkA "dicatus" "dicata" "dicatum" ; -- [XXXDE] :: dedicated; hallowed; dicax_A = mkA "dicax" "dicacis"; -- [XXXCO] :: witty; sarcastic; w/ready tongue; given to mocking another; satirical (L+S); dicentetum_N_N = mkN "dicentetum" ; -- [XBXIO] :: eyesalve, (name of) salve for eyes; dichalcum_N_N = mkN "dichalcum" ; -- [XLHFO] :: coin; (1/4 or 1/5 obolus); - dichomenion_N_N = mkN "dichomenion" "dichomenii " neuter ; -- [DAXFS] :: plant (of some kind); + dichomenion_N_N = mkN "dichomenion" "dichomenii" neuter ; -- [DAXFS] :: plant (of some kind); dichoneutus_A = mkA "dichoneutus" "dichoneuta" "dichoneutum" ; -- [DLXFS] :: adulterated; recast; dichoreus_M_N = mkN "dichoreus" ; -- [XPXFO] :: double trochee/choree, metrical foot of two chorees/trochees (_U_U); dichotomia_F_N = mkN "dichotomia" ; -- [FXXEM] :: dichotomy; @@ -17422,36 +17421,36 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat dichronus_A = mkA "dichronus" "dichrona" "dichronum" ; -- [XSXFO] :: common in quantity; common (of two quantities L+S); dicibulum_N_N = mkN "dicibulum" ; -- [DXXES] :: chatter (pl.); idle talk; 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 "dicere" "dico" "dixi" "dictus ") ; -- [XXXAO] :: ||name/call; appoint, fix/set (date); designate, declare intention of giving; + 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 "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); - dictamen_N_N = mkN "dictamen" "dictaminis " neuter ; -- [DGXFS] :: saying/maxim; (late of dictum.); order (Ecc); prescription; command; precept; - dictamnos_F_N = mkN "dictamnos" "dictamni " feminine ; -- [XAXDO] :: dittany (an herb); (also) pennyroyal; (another unidentified); + dictamen_N_N = mkN "dictamen" "dictaminis" neuter ; -- [DGXFS] :: saying/maxim; (late of dictum.); order (Ecc); prescription; command; precept; + dictamnos_F_N = mkN "dictamnos" "dictamni" feminine ; -- [XAXDO] :: dittany (an herb); (also) pennyroyal; (another unidentified); dictamnum_N_N = mkN "dictamnum" ; -- [XAXDO] :: dittany (an herb); (also) pennyroyal; (another unidentified); dictamnus_F_N = mkN "dictamnus" ; -- [XAXDO] :: dittany (an herb); (also) pennyroyal; (another unidentified); - dictatio_F_N = mkN "dictatio" "dictationis " feminine ; -- [XXXFO] :: dictated draft; dictation; + dictatio_F_N = mkN "dictatio" "dictationis" feminine ; -- [XXXFO] :: dictated draft; dictation; dictatiuncula_F_N = mkN "dictatiuncula" ; -- [DXXFS] :: short dictation; - dictator_M_N = mkN "dictator" "dictatoris " masculine ; -- [XLICO] :: dictator; (Roman magistrate having plenary power, appointed in emergency); + dictator_M_N = mkN "dictator" "dictatoris" masculine ; -- [XLICO] :: dictator; (Roman magistrate having plenary power, appointed in emergency); dictatorius_A = mkA "dictatorius" "dictatoria" "dictatorium" ; -- [XLXEO] :: dictatorial; of a dictator; dictatorius_M_N = mkN "dictatorius" ; -- [XLXDO] :: dictator; (Italian municipal officer); Carthaginian military commander; - dictatrix_F_N = mkN "dictatrix" "dictatricis " feminine ; -- [XLXCO] :: dictatress, dictatrix, female dictator; (facetious); mistress (Cas); + dictatrix_F_N = mkN "dictatrix" "dictatricis" feminine ; -- [XLXCO] :: dictatress, dictatrix, female dictator; (facetious); mistress (Cas); dictatum_N_N = mkN "dictatum" ; -- [XXXCS] :: things dictated (pl.); dictated lessons or exercises; lessons; precepts/rules; dictatura_F_N = mkN "dictatura" ; -- [XLXDO] :: dictatorship, office of dictator; dicterium_N_N = mkN "dicterium" ; -- [XXXEO] :: joke, witticism; witty saying (L+S); bon mot; dicticos_A = mkA "dicticos" "dicticos" "dicticon" ; -- [DXXES] :: pointing; demonstrative; - dictio_F_N = mkN "dictio" "dictionis " feminine ; -- [XXXBO] :: |public speaking; method/style/form of speaking; inflection; delivery/speech; + dictio_F_N = mkN "dictio" "dictionis" feminine ; -- [XXXBO] :: |public speaking; method/style/form of speaking; inflection; delivery/speech; dictionarium_N_N = mkN "dictionarium" ; -- [GXXEK] :: dictionary; dictiosus_A = mkA "dictiosus" "dictiosa" "dictiosum" ; -- [XXXFO] :: witty; facetious (L+S); satirical; dictito_V2 = mkV2 (mkV "dictitare") ; -- [XXXCO] :: repeat; persist in saying, keep on saying/speaking of; say/plead/call often; dicto_V2 = mkV2 (mkV "dictare") ; -- [XXXBO] :: |say/declare/assert repeatedly/habitually/often/frequently; reiterate; recite; dictophonum_N_N = mkN "dictophonum" ; -- [GXXEK] :: Dictaphone; - dictor_M_N = mkN "dictor" "dictoris " masculine ; -- [XXXEE] :: speaker; orator; + 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; + 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; didascalus_M_N = mkN "didascalus" ; -- [FGXDM] :: teacher; @@ -17459,100 +17458,99 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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); + 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; + 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) - dies_F_N = mkN "dies" "diei " feminine ; -- [XXXAO] :: |specific day; day in question; date of letter; festival; lifetime, age; time; - dies_M_N = mkN "dies" "diei " masculine ; -- [XXXAO] :: |specific day; day in question; date of letter; festival; lifetime, age; time; - diesis_F_N = mkN "diesis" "diesis " feminine ; -- [XDXEO] :: quarter tone; first audible note of instrument (L+S); - dieteris_F_N = mkN "dieteris" "dieteridis " feminine ; -- [XXXFS] :: period of two years; + dies_F_N = mkN "dies" "diei" feminine ; -- [XXXAO] :: |specific day; day in question; date of letter; festival; lifetime, age; time; + dies_M_N = mkN "dies" "diei" masculine ; -- [XXXAO] :: |specific day; day in question; date of letter; festival; lifetime, age; time; + diesis_F_N = mkN "diesis" "diesis" feminine ; -- [XDXEO] :: quarter tone; first audible note of instrument (L+S); + dieteris_F_N = mkN "dieteris" "dieteridis" feminine ; -- [XXXFS] :: period of two years; 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; + 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; 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); + diffamatio_F_N = mkN "diffamatio" "diffamationis" feminine ; -- [XXXES] :: promulgation, publication; defamation (Ecc); 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); + diffarreatio_F_N = mkN "diffarreatio" "diffarreationis" feminine ; -- [XXXEO] :: ceremony of divorce; ancient form of Roman divorce (L+S); diffensus_A = mkA "diffensus" "diffensa" "diffensum" ; -- [XXXES] :: deferred; protracted; differens_A = mkA "differens" "differentis"; -- [XXXES] :: different; superior; excellent; - differens_N_N = mkN "differens" "differentis " neuter ; -- [XXXFO] :: difference/distinction; differentiating/distinguishing characteristic; + differens_N_N = mkN "differens" "differentis" neuter ; -- [XXXFO] :: difference/distinction; differentiating/distinguishing characteristic; differenter_Adv =mkAdv "differenter" "differentius" "differentissime" ; -- [XXXFS] :: differently; differentia_F_N = mkN "differentia" ; -- [XXXCO] :: difference/diversity/distinction; distinguishing characteristic; different kind; differentialis_A = mkA "differentialis" "differentialis" "differentiale" ; -- [GXXEK] :: differential; - differitas_F_N = mkN "differitas" "differitatis " feminine ; -- [XXXFO] :: difference; - differo_V = mkV "differre" "differo" "distuli" "dilatus " ; -- Comment: [XXXAO] :: |spread abroad; scatter/disperse; separate; defame; confound/bewilder, distract; + differitas_F_N = mkN "differitas" "differitatis" feminine ; -- [XXXFO] :: difference; + differo_V = mkV "differre" "differo" "distuli" "dilatus" ; -- Comment: [XXXAO] :: |spread abroad; scatter/disperse; separate; defame; confound/bewilder, distract; 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; 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; + 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; + 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; difflagito_V2 = mkV2 (mkV "difflagitare") ; -- [XXXFO] :: importune, pester; dun, press, beset; difflatus_A = mkA "difflatus" "difflata" "difflatum" ; -- [XXXFS] :: blowing in an opposite direction; 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); + 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; + 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; + 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; + 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); + 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); 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); + 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); - digamma_N_N = mkN "digamma" "digammatis " neuter ; -- [XGHEO] :: digamma; (archaic Greek letter); Aeolic double gamma; (in Latin use F or V); - digammon_N_N = mkN "digammon" "digammi " neuter ; -- [XGHEO] :: digamma; (archaic Greek letter); Aeolic double gamma; (in Latin use F or V); - digammos_F_N = mkN "digammos" "digammi " feminine ; -- [XGHEO] :: digamma; (archaic Greek letter); Aeolic double gamma; (in Latin use F or V); + digamma_N_N = mkN "digamma" "digammatis" neuter ; -- [XGHEO] :: digamma; (archaic Greek letter); Aeolic double gamma; (in Latin use F or V); + digammon_N_N = mkN "digammon" "digammi" neuter ; -- [XGHEO] :: digamma; (archaic Greek letter); Aeolic double gamma; (in Latin use F or V); + digammos_F_N = mkN "digammos" "digammi" feminine ; -- [XGHEO] :: digamma; (archaic Greek letter); Aeolic double gamma; (in Latin use F or V); 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; + 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; - digestio_F_N = mkN "digestio" "digestionis " feminine ; -- [XAXDO] :: |digestion; dissolving of food; distribution of assimilated food in body (OLD); + digestio_F_N = mkN "digestio" "digestionis" feminine ; -- [XAXDO] :: |digestion; dissolving of food; distribution of assimilated food in body (OLD); digestivus_A = mkA "digestivus" "digestiva" "digestivum" ; -- [XBXFS] :: digestive; of digestion; digestorius_A = mkA "digestorius" "digestoria" "digestorium" ; -- [DBXFS] :: promoting digestion; digestum_N_N = mkN "digestum" ; -- [XLXFO] :: digest of laws (pl.); abstract of body of law arranged systematically; digestus_A = mkA "digestus" "digesta" "digestum" ; -- [XBXFS] :: that has good digestion; - digestus_M_N = mkN "digestus" "digestus " masculine ; -- [XLXFO] :: administration; arrangement and disposal; distribution (L+S); management; + digestus_M_N = mkN "digestus" "digestus" masculine ; -- [XLXFO] :: administration; arrangement and disposal; distribution (L+S); management; digitabulum_N_N = mkN "digitabulum" ; -- [XXXFO] :: finger-stall/protector/guard; glove worn picking olives (L+S); glove (Cal); digitalis_A = mkA "digitalis" "digitalis" "digitale" ; -- [XXXNO] :: measuring a finger's breadth; of/belonging to a finger (L+S); digital (Cal); digitatus_A = mkA "digitatus" "digitata" "digitatum" ; -- [XXXNO] :: having toes; having fingers or toes (L+S); @@ -17564,14 +17562,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat digitus_M_N = mkN "digitus" ; -- [XXXAX] :: finger; toe; finger's breadth, inch; (1/16 of a pes); twig; digladiabilis_A = mkA "digladiabilis" "digladiabilis" "digladiabile" ; -- [DXXFS] :: fierce; contentious; digladior_V = mkV "digladiari" ; -- [XWXEO] :: fight (gladiatorial); fight/struggle fiercely; contend; flourish sword (Cas); - diglossos_F_N = mkN "diglossos" "diglossi " feminine ; -- [DAXFS] :: plant (sedum alum); (diglossia, using two forms of language is modern 1960); - digma_N_N = mkN "digma" "digmatis " neuter ; -- [DSXFS] :: specimen; + diglossos_F_N = mkN "diglossos" "diglossi" feminine ; -- [DAXFS] :: plant (sedum alum); (diglossia, using two forms of language is modern 1960); + digma_N_N = mkN "digma" "digmatis" neuter ; -- [DSXFS] :: specimen; dignabilis_A = mkA "dignabilis" "dignabilis" "dignabile" ; -- [DXXFS] :: worthy, deserving, meriting; dignans_A = mkA "dignans" "dignantis"; -- [FXXEZ] :: dignified?; dignanter_Adv = mkAdv "dignanter" ; -- [DXXES] :: courteously; with complaisance; worthily (Ecc); properly; - dignatio_F_N = mkN "dignatio" "dignationis " feminine ; -- [XXXCO] :: esteem/regard/respect (for); repute/reputation, honor/dignity; rank/status; + dignatio_F_N = mkN "dignatio" "dignationis" feminine ; -- [XXXCO] :: esteem/regard/respect (for); repute/reputation, honor/dignity; rank/status; digne_Adv =mkAdv "digne" "dignius" "dignissime" ; -- [XXXCO] :: worthily; appropriately/suitably; in a fitting manner; becomingly (L+S); - dignitas_F_N = mkN "dignitas" "dignitatis " feminine ; -- [XXXBO] :: |rank/status; merit; dignity; position/authority/office; dignitaries (pl.); + dignitas_F_N = mkN "dignitas" "dignitatis" feminine ; -- [XXXBO] :: |rank/status; merit; dignity; position/authority/office; dignitaries (pl.); dignitos_A = mkA "dignitos" "dignitosis"; -- [XXXFO] :: dignified, having dignified status/position; respectable (L+S); dignitoss_A = mkA "dignitoss" "dignitossis"; -- [XXXFO] :: dignified, having dignified status/position; respectable (L+S); digno_Adv = mkAdv "digno" ; -- [EXXFP] :: worthily; appropriately/suitably; in a fitting manner; becomingly (L+S); @@ -17579,63 +17577,63 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; 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; + 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; + 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); + 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); - dijudicatrix_F_N = mkN "dijudicatrix" "dijudicatricis " feminine ; -- [XXXFO] :: arbitress; adjudicator/judicator/umpire/decider/judge (female); + dijudicatio_F_N = mkN "dijudicatio" "dijudicationis" feminine ; -- [XXXFO] :: judication, action/faculty of deciding/judging/determining (between things); + dijudicatrix_F_N = mkN "dijudicatrix" "dijudicatricis" feminine ; -- [XXXFO] :: arbitress; adjudicator/judicator/umpire/decider/judge (female); dijudico_V = mkV "dijudicare" ; -- [XLXCO] :: decide, settle (conflict); adjudicate/judge; distinguish (between), discern; - dijugatio_F_N = mkN "dijugatio" "dijugationis " feminine ; -- [DXXFS] :: separation; + dijugatio_F_N = mkN "dijugatio" "dijugationis" feminine ; -- [DXXFS] :: separation; dijugo_V2 = mkV2 (mkV "dijugare") ; -- [DXXFS] :: separate; dijuncte_Adv =mkAdv "dijuncte" "dijunctius" "dijunctissime" ; -- [XGXEO] :: separately; disjunctively, in form of disjunctive proposition; dijunctim_Adv = mkAdv "dijunctim" ; -- [XXXFO] :: separately; - dijunctio_F_N = mkN "dijunctio" "dijunctionis " feminine ; -- [XXXCO] :: separation (from person); rupture (relationship); disjunctive proposition; + 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); 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; + 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; + 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 (?); dilancinatus_A = mkA "dilancinatus" "dilancinata" "dilancinatum" ; -- [DXXDS] :: torn apart; torn to pieces; shredded; rent asunder; dilanio_V2 = mkV2 (mkV "dilaniare") ; -- [XXXDO] :: tear to pieces; shred; rend/pull asunder; - dilapidatio_F_N = mkN "dilapidatio" "dilapidationis " feminine ; -- [EXXES] :: squandering; wasting; - dilapidator_M_N = mkN "dilapidator" "dilapidatoris " masculine ; -- [EXXFP] :: squanderer; + dilapidatio_F_N = mkN "dilapidatio" "dilapidationis" feminine ; -- [EXXES] :: squandering; wasting; + 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; + 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; 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); + 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; - dilatio_F_N = mkN "dilatio" "dilationis " feminine ; -- [XLXCO] :: adjournment; postponement, delay; deferral; interval (of space); + dilatio_F_N = mkN "dilatio" "dilationis" feminine ; -- [XLXCO] :: adjournment; postponement, delay; deferral; interval (of space); dilato_V2 = mkV2 (mkV "dilatare") ; -- [XXXBO] :: |exaggerate, magnify; fill out; express more fully; pronounce more broadly; - dilator_M_N = mkN "dilator" "dilatoris " masculine ; -- [XXXFO] :: procrastinator; delayer; dilatory person (L+S); + dilator_M_N = mkN "dilator" "dilatoris" masculine ; -- [XXXFO] :: procrastinator; delayer; dilatory person (L+S); dilatorius_A = mkA "dilatorius" "dilatoria" "dilatorium" ; -- [XXXEO] :: dilatory, delaying; concerned with deferment; dilatura_F_N = mkN "dilatura" ; -- [XXXFS] :: postponement, delay; deferral; dilaudo_V2 = mkV2 (mkV "dilaudare") ; -- [XXXFO] :: praise expansively/widly/highly/much/in all respects; be grateful to (Ecc); dilaxo_V = mkV "dilaxare" ; -- [XXXFS] :: stretch apart; - 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); + 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); 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; + 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; @@ -17643,28 +17641,28 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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 "diligere" "diligo" "dilexi" "dilectus ") ; -- [XXXBO] :: love, hold dear; value/esteem/favor; have special regard for; (milder than amo); + 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); + 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; + 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; 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; + 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; diluvialis_A = mkA "diluvialis" "diluvialis" "diluviale" ; -- [DXXFS] :: of a deluge/flood; - diluvies_F_N = mkN "diluvies" "diluviei " feminine ; -- [XXXEO] :: flood, inundation; deluge (L+S); destruction (by water); - diluvio_F_N = mkN "diluvio" "diluvionis " feminine ; -- [XXXES] :: flood, inundation; deluge (L+S); destruction (by water); + diluvies_F_N = mkN "diluvies" "diluviei" feminine ; -- [XXXEO] :: flood, inundation; deluge (L+S); destruction (by water); + diluvio_F_N = mkN "diluvio" "diluvionis" feminine ; -- [XXXES] :: flood, inundation; deluge (L+S); destruction (by water); diluvio_V2 = mkV2 (mkV "diluviare") ; -- [XXXFO] :: flood, inundate; deluge (L+S); diluvium_N_N = mkN "diluvium" ; -- [XXXDO] :: flood, inundation; deluge (L+S); destruction (by water); dimacha_M_N = mkN "dimacha" ; -- [XWXFO] :: soldiers (pl.) who fight on foot or horseback; dismounted cavalry; dragoons; @@ -17672,46 +17670,46 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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; + 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; dimetria_F_N = mkN "dimetria" ; -- [XPXFS] :: poem consisting of iambic dimeters (two measures or metric feet); - dimetros_M_N = mkN "dimetros" "dimetri " masculine ; -- [XPXFO] :: dimeter; verse of two measures or two/four metric feet; - dimicatio_F_N = mkN "dimicatio" "dimicationis " feminine ; -- [XWXCO] :: fight; instance of a battle/engagement; combat; struggle, conflict; contest; + dimetros_M_N = mkN "dimetros" "dimetri" masculine ; -- [XPXFO] :: dimeter; verse of two measures or two/four metric feet; + dimicatio_F_N = mkN "dimicatio" "dimicationis" feminine ; -- [XWXCO] :: fight; instance of a battle/engagement; combat; struggle, conflict; contest; dimico_V = mkV "dimicare" ; -- [XWXEO] :: fight, battle; struggle/contend/strive; brandish weapons; be in conflict/peril; dimidia_F_N = mkN "dimidia" ; -- [XXXNS] :: half; - dimidiatio_F_N = mkN "dimidiatio" "dimidiationis " feminine ; -- [DXXFS] :: halving; dividing into halves; + dimidiatio_F_N = mkN "dimidiatio" "dimidiationis" feminine ; -- [DXXFS] :: halving; dividing into halves; dimidiatus_A = mkA "dimidiatus" "dimidiata" "dimidiatum" ; -- [XXXCO] :: halved, divided in half; incomplete, imperfect, half; - dimidietas_F_N = mkN "dimidietas" "dimidietatis " feminine ; -- [XXXFS] :: half; + dimidietas_F_N = mkN "dimidietas" "dimidietatis" feminine ; -- [XXXFS] :: half; 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]; + 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); - dimissor_M_N = mkN "dimissor" "dimissoris " masculine ; -- [EEXFS] :: forgiver; pardoner; + dimissio_F_N = mkN "dimissio" "dimissionis" feminine ; -- [XXXDS] :: |sending out/forth/ in different directions; remission (of pain/fever); + dimissor_M_N = mkN "dimissor" "dimissoris" masculine ; -- [EEXFS] :: forgiver; pardoner; 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; + 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; + 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; + 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; - dinumerator_M_N = mkN "dinumerator" "dinumeratoris " masculine ; -- [XSXFS] :: counter, reckoner; enumerator; + dinumeratio_F_N = mkN "dinumeratio" "dinumerationis" feminine ; -- [XSXCO] :: counting/reckoning (action/process); calculation; enumeration of points; + dinumerator_M_N = mkN "dinumerator" "dinumeratoris" masculine ; -- [XSXFS] :: counter, reckoner; enumerator; dinumero_V2 = mkV2 (mkV "dinumerare") ; -- [XXXCO] :: count, calculate (number of); enumerate; reckon; count/pay out (money); dinummium_N_N = mkN "dinummium" ; -- [DLXFS] :: tax of two nummi; dinuptila_F_N = mkN "dinuptila" ; -- [DAXFS] :: plant, bryony; @@ -17720,33 +17718,33 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + diocesis_F_N = mkN "diocesis" "diocesis" feminine ; -- [EEXDM] :: 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; + 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; 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; + 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); dioptrica_F_N = mkN "dioptrica" ; -- [GXXEK] :: dioptric; diopter; (lens) focal length one meter; (2 ~ -> half meter); - dioryx_F_N = mkN "dioryx" "diorygis " feminine ; -- [XXHFS] :: channel; trench; canal; - dioryz_F_N = mkN "dioryz" "diorygis " feminine ; -- [XXHFO] :: channel; trench; canal; + dioryx_F_N = mkN "dioryx" "diorygis" feminine ; -- [XXHFS] :: channel; trench; canal; + dioryz_F_N = mkN "dioryz" "diorygis" feminine ; -- [XXHFO] :: channel; trench; canal; diota_F_N = mkN "diota" ; -- [XXXFO] :: two-handled (wine) jar/vessel; wine-jar (L+S); - diox_M_N = mkN "diox" "diocis " masculine ; -- [XAHFO] :: fish; (from Black Sea); + diox_M_N = mkN "diox" "diocis" masculine ; -- [XAHFO] :: fish; (from Black Sea); diphryges_A = mkA "diphryges" "diphryges" "diphryges" ; -- [XTXNO] :: designation of a slag formed in copper smelting; - diphryges_F_N = mkN "diphryges" "diphrygis " feminine ; -- [XTXES] :: copper-smelting furnace slag; + diphryges_F_N = mkN "diphryges" "diphrygis" feminine ; -- [XTXES] :: copper-smelting furnace slag; diphthongus_F_N = mkN "diphthongus" ; -- [XGXFO] :: diphthong; - diphyes_F_N = mkN "diphyes" "diphyis " feminine ; -- [XXXNO] :: precious stone (unknown); + diphyes_F_N = mkN "diphyes" "diphyis" feminine ; -- [XXXNO] :: precious stone (unknown); diplangium_N_N = mkN "diplangium" ; -- [DXHFS] :: double vessel; (duplex vas); diplasius_A = mkA "diplasius" "diplasia" "diplasium" ; -- [DXXFS] :: duplicate; twofold; diplinthius_A = mkA "diplinthius" "diplinthia" "diplinthium" ; -- [XXXFO] :: two bricks thick, having thickness of two bricks, as thick as two bricks; - diplois_F_N = mkN "diplois" "diploidis " feminine ; -- [XXXEO] :: cloak, robe; double robe wrapped around body; double wrapping; layer (Souter); - diploma_N_N = mkN "diploma" "diplomatis " neuter ; -- [XLXCO] :: |certificate; letter folded double (L+S); diploma (Ecc); charter; + diplois_F_N = mkN "diplois" "diploidis" feminine ; -- [XXXEO] :: cloak, robe; double robe wrapped around body; double wrapping; layer (Souter); + diploma_N_N = mkN "diploma" "diplomatis" neuter ; -- [XLXCO] :: |certificate; letter folded double (L+S); diploma (Ecc); charter; diplomarius_A = mkA "diplomarius" "diplomaria" "diplomarium" ; -- [XLXIO] :: having permit to travel by Imperial post; diplomarius_M_N = mkN "diplomarius" ; -- [XLXIS] :: Imperial officer employed to issue diplomata (Imperial post travel permits); diplomatibus_M_N = mkN "diplomatibus" ; -- [XLXFO] :: Imperial officer employed to issue diplomata (Imperial post travel permits); @@ -17755,20 +17753,20 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat dipondiarius_A = mkA "dipondiarius" "dipondiaria" "dipondiarium" ; -- [XLXEO] :: worth two asses (money, two cents); worthless; weighing two pounds; dipondiarius_M_N = mkN "dipondiarius" ; -- [XLXFO] :: two as piece/coin (money); (two cents); dipondius_M_N = mkN "dipondius" ; -- [XXXDO] :: two asses (weight/money); (two pounds); two feet (linear measure); need/want; - dipsacos_F_N = mkN "dipsacos" "dipsaci " feminine ; -- [XAXNO] :: plant of teasel family; (of genus Dipsacus); - dipsas_F_N = mkN "dipsas" "dipsadis " feminine ; -- [XAXDO] :: snake (whose bite provokes thirst); (as name "thirsty woman"); + dipsacos_F_N = mkN "dipsacos" "dipsaci" feminine ; -- [XAXNO] :: plant of teasel family; (of genus Dipsacus); + dipsas_F_N = mkN "dipsas" "dipsadis" feminine ; -- [XAXDO] :: snake (whose bite provokes thirst); (as name "thirsty woman"); dipteros_A = mkA "dipteros" "dipteros" "dipteron" ; -- [XTHFO] :: having double row of columns all around; with two wings (L+S); - dipteros_F_N = mkN "dipteros" "dipteri " feminine ; -- [XTHFO] :: having double row of columns all around; with two wings (L+S); - diptherias_M_N = mkN "diptherias" "diptheriae " masculine ; -- [XXHFO] :: tough skin, goatskin; old man; + dipteros_F_N = mkN "dipteros" "dipteri" feminine ; -- [XTHFO] :: having double row of columns all around; with two wings (L+S); + diptherias_M_N = mkN "diptherias" "diptheriae" masculine ; -- [XXHFO] :: tough skin, goatskin; old man; dipthongus_F_N = mkN "dipthongus" ; -- [XGXFO] :: diphthong; diptotum_N_N = mkN "diptotum" ; -- [DGXES] :: nouns (usu. pl.) having only two cases; - diptychon_N_N = mkN "diptychon" "diptychi " neuter ; -- [FXHEE] :: diptych; list of commemorations, register of those commemorated by Church;. + diptychon_N_N = mkN "diptychon" "diptychi" neuter ; -- [FXHEE] :: diptych; list of commemorations, register of those commemorated by Church;. 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; + 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; + 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]; dircium_N_N = mkN "dircium" ; -- [DAXFS] :: plant; (also known as Apollinaris herba); kind of solanum (nightshade family); directa_Adv = mkAdv "directa" ; -- [XXXFS] :: perpendicularly; straight down; @@ -17777,79 +17775,79 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat directiangulus_A = mkA "directiangulus" "directiangula" "directiangulum" ; -- [DSXFS] :: rectangular, right-angled; directilineus_A = mkA "directilineus" "directilinea" "directilineum" ; -- [DSXFS] :: rectilinear; in a straight line; directim_Adv = mkAdv "directim" ; -- [XXXFO] :: in a regular manner; directly, straightaway (L+S); - directio_F_N = mkN "directio" "directionis " feminine ; -- [EXXDP] :: |sending (to place); right living; righteousness; fairness/justice; correction; - directitudo_F_N = mkN "directitudo" "directitudinis " feminine ; -- [DXXFS] :: rightness, correctness; fairness; + directio_F_N = mkN "directio" "directionis" feminine ; -- [EXXDP] :: |sending (to place); right living; righteousness; fairness/justice; correction; + directitudo_F_N = mkN "directitudo" "directitudinis" feminine ; -- [DXXFS] :: rightness, correctness; fairness; directivum_N_N = mkN "directivum" ; -- [GXXEK] :: directive; guideline; directivus_A = mkA "directivus" "directiva" "directivum" ; -- [FXXEE] :: directive; helpful, positive; directing (Cal); guiding; directo_Adv = mkAdv "directo" ; -- [XXXDO] :: straight, in straight line; directly, immediately, without intervening action; - director_M_N = mkN "director" "directoris " masculine ; -- [FXXDE] :: director; + director_M_N = mkN "director" "directoris" masculine ; -- [FXXDE] :: director; directorium_N_N = mkN "directorium" ; -- [FXXFE] :: directory; the Ordo (guide for celebrating Mass and liturgy of daily hours); 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; 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; - direptio_F_N = mkN "direptio" "direptionis " feminine ; -- [XWXDO] :: plundering/pillage/sacking; struggle for share; scramble; stealing (L+S); rape; - direptor_M_N = mkN "direptor" "direptoris " masculine ; -- [XWXEO] :: plunderer; pillager; robber; + 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; + direptio_F_N = mkN "direptio" "direptionis" feminine ; -- [XWXDO] :: plundering/pillage/sacking; struggle for share; scramble; stealing (L+S); rape; + direptor_M_N = mkN "direptor" "direptoris" masculine ; -- [XWXEO] :: plunderer; pillager; robber; diribeo_V2 = mkV2 (mkV "diribere") ; -- [XLXDO] :: sort/separate voting tablets/ballots from ballot-box; distribute, dispense; - diribitio_F_N = mkN "diribitio" "diribitionis " feminine ; -- [XLXFO] :: sorting/dividing of votes/voting tablets from ballot-box; - diribitor_M_N = mkN "diribitor" "diribitoris " masculine ; -- [XLXEO] :: officer who sorts voting tablets; election official; distributor (food); waiter; + diribitio_F_N = mkN "diribitio" "diribitionis" feminine ; -- [XLXFO] :: sorting/dividing of votes/voting tablets from ballot-box; + 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); + 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; + 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; + 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); + 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); 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); + 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; discalceatus_A = mkA "discalceatus" "discalceata" "discalceatum" ; -- [FXXEO] :: barefoot, unshod, discalced; shoeless (Ecc); (of Friars); - discantus_M_N = mkN "discantus" "discantus " masculine ; -- [FDXFE] :: descant, upper voice in part singing; + 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; + 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; + 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; + 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; disciplinatus_A = mkA "disciplinatus" "disciplinata" "disciplinatum" ; -- [EXXDS] :: disciplined; instructed/trained/learned/skillful; ordered; of good character; discipula_F_N = mkN "discipula" ; -- [XXXDX] :: female pupil; - discipulatus_M_N = mkN "discipulatus" "discipulatus " masculine ; -- [DXXFE] :: discipleship; + 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; + 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; 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; + 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; + 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; @@ -17860,199 +17858,196 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat discrepantia_F_N = mkN "discrepantia" ; -- [XXXEE] :: discrepancy; discordance; dissimilarity; discrepat_V0 = mkV0 "discrepat" ; -- [XXXDO] :: it is undecided/disputed/a matter of dispute; there is a difference of opinion; discrepo_V = mkV "discrepare" ; -- [XXXBO] :: |be out of tune; differ in sound; be out of harmony/inconsistent with; - 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; + 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; + 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; - discriminatio_F_N = mkN "discriminatio" "discriminationis " feminine ; -- [XXXEE] :: discrimination; wise judgment; + discriminatio_F_N = mkN "discriminatio" "discriminationis" feminine ; -- [XXXEE] :: discrimination; wise judgment; discrimino_V = mkV "discriminare" ; -- [XXXDX] :: divide up, separate; - discriptio_F_N = mkN "discriptio" "discriptionis " feminine ; -- [XXXDX] :: assignment, division; + discriptio_F_N = mkN "discriptio" "discriptionis" feminine ; -- [XXXDX] :: assignment, division; discrucio_V = mkV "discruciare" ; -- [XXXDX] :: torture; - discubitus_M_N = mkN "discubitus" "discubitus " masculine ; -- [EXXFR] :: seat; dining couch; place at the table (Ecc); + 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; + 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; - discutio_V2 = mkV2 (mkV "discutere" "discutio" "discussi" "discussus ") ; -- [XXXCE] :: strike down; shatter, shake violently; dissipate, bring to naught; plead case; + 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); + 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; + disertitudo_F_N = mkN "disertitudo" "disertitudinis" feminine ; -- [EXXES] :: eloquence; skillfully expression; disertus_A = mkA "disertus" "diserta" "disertum" ; -- [XXXDX] :: eloquent; skillfully expressed; disgratia_F_N = mkN "disgratia" ; -- [GXXEK] :: disgrace; - disgregatio_F_N = mkN "disgregatio" "disgregationis " feminine ; -- [FXXFF] :: dispersal; separation, putting apart, disunion; disgregation, disintegration; + 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; + 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; + 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; + 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); 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; + 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; + 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; + 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; + 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); + 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; + 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; + 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; + 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; + 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); + 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; + dispositio_F_N = mkN "dispositio" "dispositionis" feminine ; -- [XXXCO] :: layout; orderly arrangement/disposition of arguments/words/time/activities; dispositivus_A = mkA "dispositivus" "dispositiva" "dispositivum" ; -- [XXXEE] :: arranging, disposing; - 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; + 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; disquiro_V = mkV "disquirere" "disquiro" nonExist nonExist ; -- [XXXEC] :: inquire into, investigate; - disquisitio_F_N = mkN "disquisitio" "disquisitionis " feminine ; -- [XXXDX] :: inquiry; + 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; + 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; + 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 "dissecere" "disseco" nonExist "dissectus ") ; -- [EXXFP] :: divide; penetrate through; open by force; dismember, dissect; - dissectio_F_N = mkN "dissectio" "dissectionis " feminine ; -- [GSXEK] :: dissection; + 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; + 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; + 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; + 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; + 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; + 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; + 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; + 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; 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; dissimilis_A = mkA "dissimilis" ; -- [XXXDX] :: unlike, different, dissimilar; - dissimilitudo_F_N = mkN "dissimilitudo" "dissimilitudinis " feminine ; -- [XXXDX] :: unlikeness, difference; + 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; - dissimulator_M_N = mkN "dissimulator" "dissimulatoris " masculine ; -- [XXXDX] :: dissembler; + dissimulatio_F_N = mkN "dissimulatio" "dissimulationis" feminine ; -- [XXXDX] :: dissimulation dissembling; + dissimulator_M_N = mkN "dissimulator" "dissimulatoris" masculine ; -- [XXXDX] :: dissembler; dissimulo_V = mkV "dissimulare" ; -- [XXXBX] :: conceal, dissemble, disguise, hide; ignore; - dissipatio_F_N = mkN "dissipatio" "dissipationis " feminine ; -- [XXXDX] :: squandering; scattering; + dissipatio_F_N = mkN "dissipatio" "dissipationis" feminine ; -- [XXXDX] :: squandering; scattering; dissipo_V = mkV "dissipare" ; -- [XXXDX] :: scatter, disperse, dissipate, squander; destroy completely; circulate; dissitus_A = mkA "dissitus" "dissita" "dissitum" ; -- [FXXEE] :: widely scattered; dissociabilis_A = mkA "dissociabilis" "dissociabilis" "dissociabile" ; -- [XXXDX] :: incompatible; discordant; separating, dividing; dissociatus_A = mkA "dissociatus" "dissociata" "dissociatum" ; -- [XXXDX] :: disjoined, separated, split into factions, at variance with; 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; + 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; + 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; dissonus_A = mkA "dissonus" "dissona" "dissonum" ; -- [XXXDX] :: dissonant, discordant, different; dissors_A = mkA "dissors" "dissortis"; -- [XXXEC] :: having different lot or fate; dissuadeo_V = mkV "dissuadere" ; -- [XXXDX] :: dissuade, advise against; - 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; + 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); + 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; + 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; - 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; + distendo_V2 = mkV2 (mkV "distendere" "distendo" "distendi" "distentus") ; -- [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; - distichon_N_N = mkN "distichon" "distichi " neuter ; -- [XPXEO] :: couplet, two line poem/verse; + distichon_N_N = mkN "distichon" "distichi" neuter ; -- [XPXEO] :: couplet, two line poem/verse; distichos_A = mkA "distichos" "distichos" "distichon" ; -- [XPXEO] :: consisting of two lines (verse); having two longitudinal rows of grain; distichus_A = mkA "distichus" "disticha" "distichum" ; -- [XPXFO] :: consisting of two lines (verse); having two longitudinal rows of grain; - distillatio_F_N = mkN "distillatio" "distillationis " feminine ; -- [XBXDO] :: cold/rheum/catarrh; runny nose/eyes; bodily fluid; abcess; distillation (Cal); + distillatio_F_N = mkN "distillatio" "distillationis" feminine ; -- [XBXDO] :: cold/rheum/catarrh; runny nose/eyes; bodily fluid; abcess; distillation (Cal); distillo_V = mkV "distillare" ; -- [XXXCO] :: drip/trickle down; wet/sprinkle; distill; have dripping off; fall bit by bit; distimulo_V2 = mkV2 (mkV "distimulare") ; -- [DXXFS] :: goad hard/on; stimulate (L+S); - distinctio_F_N = mkN "distinctio" "distinctionis " feminine ; -- [XXXDX] :: distinction; difference; + 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; + 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; + 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; + 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; + 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; + districtio_F_N = mkN "districtio" "districtionis" feminine ; -- [XXXDE] :: severity, strictness; 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; + 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; + ditator_M_N = mkN "ditator" "ditatoris" masculine ; -- [XXXFE] :: enricher; 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; - ditio_F_N = mkN "ditio" "ditionis " feminine ; -- [FXXEE] :: power; sovereignty, dominion, authority; + ditio_F_N = mkN "ditio" "ditionis" feminine ; -- [FXXEE] :: power; sovereignty, dominion, authority; ditius_Adv =mkAdv "ditius" "ditissime" ; -- [XXXEO] :: richly; in a sumptuous manner; dito_V = mkV "ditare" ; -- [XXXDX] :: enrich; ditonica_F_N = mkN "ditonica" ; -- [FDXFM] :: diatonic melody; @@ -18063,11 +18058,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat ditto_V2 = mkV2 (mkV "dittare") ; -- [FXXDE] :: repeat; declare; diu_Adv =mkAdv "diu" "diutius" "diutissime" ; -- [XXXAO] :: |still further/longer (COMP); any longer/further/more (w/negative); dium_N_N = mkN "dium" ; -- [XXXDO] :: open sky; [sub dio => in the open air]]: - diurnale_N_N = mkN "diurnale" "diurnalis " neuter ; -- [FEXEE] :: Book of Hours; book containing Lauds to Compline; + diurnale_N_N = mkN "diurnale" "diurnalis" neuter ; -- [FEXEE] :: Book of Hours; book containing Lauds to Compline; diurnalismus_M_N = mkN "diurnalismus" ; -- [GXXEK] :: journalism; diurnarius_A = mkA "diurnarius" "diurnaria" "diurnarium" ; -- [GXXEK] :: journalistic; of a journalist; diurnarius_M_N = mkN "diurnarius" ; -- [DLXES] :: journalist; journal/diary keeper; slave who copies acta diurna (daily records); - diurnitas_F_N = mkN "diurnitas" "diurnitatis " feminine ; -- [FXXEM] :: lapse of time; long duration; + diurnitas_F_N = mkN "diurnitas" "diurnitatis" feminine ; -- [FXXEM] :: lapse of time; long duration; diurnum_N_N = mkN "diurnum" ; -- [FEXEE] :: Book of Hors; diurnus_A = mkA "diurnus" "diurna" "diurnum" ; -- [XXXDX] :: by day, of the day; daily; dius_A = mkA "dius" "dia" "dium" ; -- [XXXEO] :: |daylit; charged with brightness of day/daylight; @@ -18075,34 +18070,33 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat dius_M_N = mkN "dius" ; -- [DEXFS] :: god; 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; + diuturnitas_F_N = mkN "diuturnitas" "diuturnitatis" feminine ; -- [XXXDX] :: long duration; 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; - 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; + divello_V2 = mkV2 (mkV "divellere" "divello" "divulsi" "divulsus") ; -- [XXXBO] :: |tear away/open/apart, tear to pieces/in two; break up, sunder/disrupt; divide; 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); + 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; + diversitas_F_N = mkN "diversitas" "diversitatis" feminine ; -- [XXXDX] :: difference; diverso_V = mkV "diversare" ; -- [FXXEZ] :: turn around; diversify; 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; + 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; + 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; + 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; + 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; divinus_A = mkA "divinus" ; -- [XXXAX] :: divine, of a deity/god, godlike; sacred; divinely inspired, prophetic; natural; @@ -18110,14 +18104,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat divise_Adv = mkAdv "divise" ; -- [DXXES] :: separately, distinctly; divisibilis_A = mkA "divisibilis" "divisibilis" "divisibile" ; -- [XSXEE] :: divisible; divisim_Adv = mkAdv "divisim" ; -- [DXXFS] :: separately, apart; - divisio_F_N = mkN "divisio" "divisionis " feminine ; -- [XXXDX] :: division; distribution; - divisor_M_N = mkN "divisor" "divisoris " masculine ; -- [GSXEK] :: divider (math.); - divisus_M_N = mkN "divisus" "divisus " masculine ; -- [XXXDX] :: division; + divisio_F_N = mkN "divisio" "divisionis" feminine ; -- [XXXDX] :: division; distribution; + divisor_M_N = mkN "divisor" "divisoris" masculine ; -- [GSXEK] :: divider (math.); + 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; + 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]; divus_A = mkA "divus" ; -- [DEXES] :: divine; blessed, saint (Latham); @@ -18127,25 +18121,25 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat dochmius_M_N = mkN "dochmius" ; -- [XDXEC] :: metrical foot, the dochmiac; pentasyllabic foot (typically U_U-); docibilis_A = mkA "docibilis" "docibilis" "docibile" ; -- [XXXEE] :: teachable; docilis_A = mkA "docilis" "docilis" "docile" ; -- [XXXDX] :: easily taught, teachable, responsive; docile; - docilitas_F_N = mkN "docilitas" "docilitatis " feminine ; -- [XXXDX] :: aptitude; docility; + docilitas_F_N = mkN "docilitas" "docilitatis" feminine ; -- [XXXDX] :: aptitude; docility; dociliter_Adv = mkAdv "dociliter" ; -- [XXXFE] :: attentively; docilely; doctiloquus_A = mkA "doctiloquus" "doctiloqua" "doctiloquum" ; -- [FXXEM] :: learnedly-speaking; - doctor_M_N = mkN "doctor" "doctoris " masculine ; -- [XXXBX] :: teacher; instructor; trainer; doctor; (academic title); + doctor_M_N = mkN "doctor" "doctoris" masculine ; -- [XXXBX] :: teacher; instructor; trainer; doctor; (academic title); doctoralis_A = mkA "doctoralis" "doctoralis" "doctorale" ; -- [XXXEE] :: doctoral, pertaining to degree of doctor; - doctoratus_M_N = mkN "doctoratus" "doctoratus " masculine ; -- [GXXEK] :: doctorate; + doctoratus_M_N = mkN "doctoratus" "doctoratus" masculine ; -- [GXXEK] :: doctorate; 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; + doctrix_F_N = mkN "doctrix" "doctricis" feminine ; -- [XXXEE] :: teacher (female); instructor; trainer; doctor; 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; + 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; - documentatio_F_N = mkN "documentatio" "documentationis " feminine ; -- [XXXCE] :: documentation, proof; reminder; + documentatio_F_N = mkN "documentatio" "documentationis" feminine ; -- [XXXCE] :: documentation, proof; reminder; documentum_N_N = mkN "documentum" ; -- [XXXDX] :: lesson, instruction; warning, example; document; proof; dodecaedrum_N_N = mkN "dodecaedrum" ; -- [FSXFM] :: dodecahedron; - dodrans_M_N = mkN "dodrans" "dodrantis " masculine ; -- [XXXDX] :: three-fourths; + dodrans_M_N = mkN "dodrans" "dodrantis" masculine ; -- [XXXDX] :: three-fourths; doga_F_N = mkN "doga" ; -- [DXXFS] :: vat; vessel; - dogma_N_N = mkN "dogma" "dogmatis " neuter ; -- [XXXDX] :: doctrine, defined doctrine; philosophic tenet; dogma, teaching; decision; edit; + dogma_N_N = mkN "dogma" "dogmatis" neuter ; -- [XXXDX] :: doctrine, defined doctrine; philosophic tenet; dogma, teaching; decision; edit; dogmatice_Adv = mkAdv "dogmatice" ; -- [EXXEE] :: dogmatically; doctrinally; dogmaticus_A = mkA "dogmaticus" "dogmatica" "dogmaticum" ; -- [EXXCE] :: dogmatic; doctrinal, relating to doctrine or dogma; dogmatizo_V = mkV "dogmatizare" ; -- [EEXFS] :: propound a dogma; dogmatize(Latham); @@ -18156,27 +18150,27 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat dolium_N_N = mkN "dolium" ; -- [XXXCO] :: large earthenware vessel (~60 gal. wine/grain); hogshead (Cas); tun/cask; dollarium_N_N = mkN "dollarium" ; -- [GXXEK] :: dollar; dolo_V2 = mkV2 (mkV "dolare") ; -- [XXXCO] :: hew/chop into shape, fashion/devise; inflict blows, batter/cudgel soundly, drub; - dolor_M_N = mkN "dolor" "doloris " masculine ; -- [XXXAX] :: pain, anguish, grief, sorrow, suffering; resentment, indignation; + dolor_M_N = mkN "dolor" "doloris" masculine ; -- [XXXAX] :: pain, anguish, grief, sorrow, suffering; resentment, indignation; dolorosus_A = mkA "dolorosus" "dolorosa" "dolorosum" ; -- [EEXDX] :: sorrowful; dolose_Adv = mkAdv "dolose" ; -- [XXXDX] :: craftily, cunningly; deceitfully; - dolositas_F_N = mkN "dolositas" "dolositatis " feminine ; -- [FXXDM] :: guile; deceit; deceitfulness; + dolositas_F_N = mkN "dolositas" "dolositatis" feminine ; -- [FXXDM] :: guile; deceit; deceitfulness; dolosus_A = mkA "dolosus" "dolosa" "dolosum" ; -- [XXXDX] :: crafty, cunning; deceitful; dolus_M_N = mkN "dolus" ; -- [XXXBX] :: trick, device, deceit, treachery, trickery, cunning, fraud; - doma_N_N = mkN "doma" "domatis " neuter ; -- [XXXEE] :: roof; dwelling, house; + doma_N_N = mkN "doma" "domatis" neuter ; -- [XXXEE] :: roof; dwelling, house; domabilis_A = mkA "domabilis" "domabilis" "domabile" ; -- [XXXDX] :: able to be tamed; - domesticatus_M_N = mkN "domesticatus" "domesticatus " masculine ; -- [XXXFS] :: office of princeps; + domesticatus_M_N = mkN "domesticatus" "domesticatus" masculine ; -- [XXXFS] :: office of princeps; domesticus_A = mkA "domesticus" "domestica" "domesticum" ; -- [XXXBX] :: domestic, of the house; familiar, native; civil, private, personal; domesticus_M_N = mkN "domesticus" ; -- [XXXES] :: household member; - domicellaris_M_N = mkN "domicellaris" "domicellaris " masculine ; -- [FEXEE] :: candidate for prebend; + domicellaris_M_N = mkN "domicellaris" "domicellaris" masculine ; -- [FEXEE] :: candidate for prebend; domicilium_N_N = mkN "domicilium" ; -- [XXXCW] :: residence, home, dwelling, abode; domigena_C_N = mkN "domigena" ; -- [FXXEN] :: resident of a household; household retinue (pl.); domina_F_N = mkN "domina" ; -- [XXXBX] :: mistress of a family, wife; lady, lady-love; owner; - dominatio_F_N = mkN "dominatio" "dominationis " feminine ; -- [XXXDX] :: mastery, power; domination; domain; despotism; + dominatio_F_N = mkN "dominatio" "dominationis" feminine ; -- [XXXDX] :: mastery, power; domination; domain; despotism; dominativus_A = mkA "dominativus" "dominativa" "dominativum" ; -- [XXXEE] :: ruling, governing; dominating; - dominator_M_N = mkN "dominator" "dominatoris " masculine ; -- [XXXDE] :: ruler; lord; - dominatrix_F_N = mkN "dominatrix" "dominatricis " feminine ; -- [XXXFS] :: mistress; female ruler; - dominatus_M_N = mkN "dominatus" "dominatus " masculine ; -- [XXXDX] :: rule, mastery, domain; tyranny; - dominicale_N_N = mkN "dominicale" "dominicalis " neuter ; -- [EEXFE] :: small linen closet in which the faithful received Holy Communion; + dominator_M_N = mkN "dominator" "dominatoris" masculine ; -- [XXXDE] :: ruler; lord; + dominatrix_F_N = mkN "dominatrix" "dominatricis" feminine ; -- [XXXFS] :: mistress; female ruler; + dominatus_M_N = mkN "dominatus" "dominatus" masculine ; -- [XXXDX] :: rule, mastery, domain; tyranny; + dominicale_N_N = mkN "dominicale" "dominicalis" neuter ; -- [EEXFE] :: small linen closet in which the faithful received Holy Communion; dominicalis_A = mkA "dominicalis" "dominicalis" "dominicale" ; -- [EEXCE] :: of Sunday (Lord's day); of the Lord; divine (Latham); dominicum_N_N = mkN "dominicum" ; -- [EEXDE] :: church with all its possessions; dominicus_A = mkA "dominicus" "dominica" "dominicum" ; -- [XXXBX] :: of/belonging to master/owner; belonging to the Roman Emperor; the Lord's; @@ -18186,20 +18180,20 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat dominus_M_N = mkN "dominus" ; -- [XXXAX] :: owner, lord, master; the Lord; title for ecclesiastics/gentlemen; domiporta_F_N = mkN "domiporta" ; -- [XXXEC] :: one with her house on her back, the snail; domito_V = mkV "domitare" ; -- [XXXDX] :: tame, break in; - domitor_M_N = mkN "domitor" "domitoris " masculine ; -- [XXXDX] :: tamer, breaker; subduer, vanquisher, conqueror; + 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); 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; - domus_F_N = mkN "domus" "domus " feminine ; -- [XXXAX] :: house, building; home, household; (N 4 1, older N 2 1); [domu => at home]; + domus_F_N = mkN "domus" "domus" feminine ; -- [XXXAX] :: house, building; home, household; (N 4 1, older N 2 1); [domu => at home]; donarium_N_N = mkN "donarium" ; -- [XXXDX] :: part of temple where votive offerings were received/stored; treasure chamber; donatarius_M_N = mkN "donatarius" ; -- [FLXFJ] :: donee, recipient of gift; - donatio_F_N = mkN "donatio" "donationis " feminine ; -- [XXXDX] :: donation, gift; + donatio_F_N = mkN "donatio" "donationis" feminine ; -- [XXXDX] :: donation, gift; donativum_N_N = mkN "donativum" ; -- [XXXDX] :: gratuity; - 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; + 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 = 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; @@ -18207,28 +18201,28 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; dormitorius_A = mkA "dormitorius" "dormitoria" "dormitorium" ; -- [XXXEC] :: for sleeping; - dorsuale_N_N = mkN "dorsuale" "dorsualis " neuter ; -- [EEXEE] :: back of chair; curtain around back of altar; + dorsuale_N_N = mkN "dorsuale" "dorsualis" neuter ; -- [EEXEE] :: back of chair; curtain around back of altar; dorsualis_A = mkA "dorsualis" "dorsualis" "dorsuale" ; -- [XXXEO] :: back-; at the back; situated on (animal's) back; dorsum_Adv = mkAdv "dorsum" ; -- [XXXIO] :: down, downwards, beneath, below; (motion/direction/order); in lower situation; dorsum_N_N = mkN "dorsum" ; -- [XXXDX] :: back, range, ridge; slope of a hill; - dorycnion_N_N = mkN "dorycnion" "dorycnii " neuter ; -- [XAXFS] :: poisonous plant (Pliny); - dos_F_N = mkN "dos" "dotis " feminine ; -- [XXXBX] :: dowry, dower; talent, quality; - dosis_F_N = mkN "dosis" "dosis " feminine ; -- [GXXEK] :: dose; + dorycnion_N_N = mkN "dorycnion" "dorycnii" neuter ; -- [XAXFS] :: poisonous plant (Pliny); + dos_F_N = mkN "dos" "dotis" feminine ; -- [XXXBX] :: dowry, dower; talent, quality; + dosis_F_N = mkN "dosis" "dosis" feminine ; -- [GXXEK] :: dose; dotalicium_N_N = mkN "dotalicium" ; -- [FXXFM] :: widower's dower; dotalis_A = mkA "dotalis" "dotalis" "dotale" ; -- [XXXDX] :: forming part of a dowry; relating to a dowry; - dotatio_F_N = mkN "dotatio" "dotationis " feminine ; -- [FEXEE] :: endowment; + dotatio_F_N = mkN "dotatio" "dotationis" feminine ; -- [FEXEE] :: endowment; dotatus_A = mkA "dotatus" "dotata" "dotatum" ; -- [XXXEC] :: richly endowed; doto_V = mkV "dotare" ; -- [XXXEC] :: provide with a dowry, endow; doxa_F_N = mkN "doxa" ; -- [FXXEM] :: glory; adornment; doxologia_F_N = mkN "doxologia" ; -- [EEXEE] :: doxology; (hymn of praise to God); drachma_F_N = mkN "drachma" ; -- [XLHCO] :: drachma; Greek silver coin; (1/6000 talent); (quarter?); weight (4.5-6 grams); drachuma_F_N = mkN "drachuma" ; -- [XLHCO] :: drachma; Greek silver coin; (1/6000 talent); (quarter?); weight (4.5-6 grams); - draco_M_N = mkN "draco" "draconis " masculine ; -- [XXXBX] :: dragon; snake; + draco_M_N = mkN "draco" "draconis" masculine ; -- [XXXBX] :: dragon; snake; draconarius_M_N = mkN "draconarius" ; -- [FXXFE] :: flag bearer; draconigena_C_N = mkN "draconigena" ; -- [XXXEC] :: dragon-born; dracontia_F_N = mkN "dracontia" ; -- [XAXFS] :: precious stone; @@ -18236,7 +18230,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat dracunculus_M_N = mkN "dracunculus" ; -- [GXXEK] :: tarragon; dragagantum_N_N = mkN "dragagantum" ; -- [XAXFS] :: gum-tragacinth; (alt. form of tragacanthum); dragma_F_N = mkN "dragma" ; -- [ELXCW] :: Greek silver coin; (1/6000 talent) (quarter); Greek weight (4.5-6 grams); - drama_N_N = mkN "drama" "dramatis " neuter ; -- [XDXFS] :: drama; play; + drama_N_N = mkN "drama" "dramatis" neuter ; -- [XDXFS] :: drama; play; dramaticus_A = mkA "dramaticus" "dramatica" "dramaticum" ; -- [XDXFS] :: dramatic; drapeta_M_N = mkN "drapeta" ; -- [XXXEC] :: runaway slave; drappus_M_N = mkN "drappus" ; -- [FXXEK] :: cloth; @@ -18245,39 +18239,40 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - dubietas_F_N = mkN "dubietas" "dubietatis " feminine ; -- [FXXDE] :: doubt, irresolution, uncertainty; wavering, hesitation; questioning; + dromo_F_N = mkN "dromo" "dromonis" feminine ; -- [FXXFM] :: dromond; galley; L:Dromo (Roman name); very large medieval long ship; + dubietas_F_N = mkN "dubietas" "dubietatis" feminine ; -- [FXXDE] :: doubt, irresolution, uncertainty; wavering, hesitation; questioning; dubitanter_Adv = mkAdv "dubitanter" ; -- [XXXDX] :: doubtingly; hesitatingly; with doubt/hesitation; - dubitatio_F_N = mkN "dubitatio" "dubitationis " feminine ; -- [XXXBO] :: doubt, irresolution, uncertainty; wavering, hesitation; questioning; + dubitatio_F_N = mkN "dubitatio" "dubitationis" feminine ; -- [XXXBO] :: doubt, irresolution, uncertainty; wavering, hesitation; questioning; dubito_V = mkV "dubitare" ; -- [XXXDX] :: doubt; deliberate; hesitate (over); be uncertain/irresolute; dubium_N_N = mkN "dubium" ; -- [XXXDX] :: doubt; question; dubius_A = mkA "dubius" "dubia" "dubium" ; -- [XXXAX] :: doubtful, dubious, uncertain; variable, dangerous; critical; - ducamen_N_N = mkN "ducamen" "ducaminis " neuter ; -- [FXXEM] :: guidance; duchy; ducal dignity (Nelson); molding; - ducatus_M_N = mkN "ducatus" "ducatus " masculine ; -- [CWIDO] :: leadership; position/function of a leader; generalship; + ducamen_N_N = mkN "ducamen" "ducaminis" neuter ; -- [FXXEM] :: guidance; duchy; ducal dignity (Nelson); molding; + ducatus_M_N = mkN "ducatus" "ducatus" masculine ; -- [CWIDO] :: leadership; position/function of a leader; generalship; ducenarius_A = mkA "ducenarius" "ducenaria" "ducenarium" ; -- [XXXCO] :: of/concerning two hundred; weighing 200 pounds; paid/owing 200,000 sesterces; ducianus_A = mkA "ducianus" "duciana" "ducianum" ; -- [XXXES] :: leader-; of a leader; 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; - duco_V2 = mkV2 (mkV "ducere" "duco" "duxi" "ductus ") ; -- [XXXAX] :: lead, command; think, consider, regard; prolong; +-- 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; + ductilitas_F_N = mkN "ductilitas" "ductilitatis" feminine ; -- [GXXEK] :: malleability; ductim_Adv = mkAdv "ductim" ; -- [XXXEC] :: by drawing; in a stream; - ductio_F_N = mkN "ductio" "ductionis " feminine ; -- [XXXFS] :: leading-away; + ductio_F_N = mkN "ductio" "ductionis" feminine ; -- [XXXFS] :: leading-away; ducto_V = mkV "ductare" ; -- [XXXDX] :: lead; - ductor_M_N = mkN "ductor" "ductoris " masculine ; -- [XXXBX] :: leader, commander; - ductus_M_N = mkN "ductus" "ductus " masculine ; -- [XXXDX] :: conducting; generalship; + ductor_M_N = mkN "ductor" "ductoris" masculine ; -- [XXXBX] :: leader, commander; + ductus_M_N = mkN "ductus" "ductus" masculine ; -- [XXXDX] :: conducting; generalship; 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); + 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); 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); + duellio_F_N = mkN "duellio" "duellionis" feminine ; -- [FWXFM] :: war; strife; L:judicial combat; (also duellum); duello_V = mkV "duellare" ; -- [FXXEE] :: duel; duellum_N_N = mkN "duellum" ; -- [BWXEX] :: war, warfare; battle, combat, fight; duel; military force, arms; 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; + dulce_N_N = mkN "dulce" "dulcis" neuter ; -- [XXXDX] :: sweet drink; sweets (pl.); + dulcedo_F_N = mkN "dulcedo" "dulcedinis" feminine ; -- [XXXBX] :: sweetness, agreeableness; charm; 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; @@ -18287,9 +18282,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + dulcitudo_F_N = mkN "dulcitudo" "dulcitudinis" feminine ; -- [XXXDO] :: sweetness (perceived by senses); desirability; affectionateness; dulco_V2 = mkV2 (mkV "dulcare") ; -- [EXXES] :: sweeten; - dulcor_M_N = mkN "dulcor" "dulcoris " masculine ; -- [DXXES] :: sweetness; + dulcor_M_N = mkN "dulcor" "dulcoris" masculine ; -- [DXXES] :: sweetness; 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; @@ -18305,14 +18300,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat duonus_A = mkA "duonus" "duona" "duonum" ; -- [AXXFS] :: good; (archaic form of bonus); duovir_M_N = mkN "duovir" ; -- [XLICO] :: |special criminal court; keepers of Sibylline books; colony chief magistrates; duplaris_A = mkA "duplaris" "duplaris" "duplare" ; -- [EXXES] :: containing double; two-fold; - duplatio_F_N = mkN "duplatio" "duplationis " feminine ; -- [XSXEM] :: doubling (in number/amount); plea by defendant in reply to replication; - dupleitas_F_N = mkN "dupleitas" "dupleitatis " feminine ; -- [FXXEM] :: doubleness; being double; duplicity; ambiguity; + duplatio_F_N = mkN "duplatio" "duplationis" feminine ; -- [XSXEM] :: doubling (in number/amount); plea by defendant in reply to replication; + dupleitas_F_N = mkN "dupleitas" "dupleitatis" feminine ; -- [FXXEM] :: doubleness; being double; duplicity; ambiguity; duplex_A = mkA "duplex" "duplicis"; -- [XXXBX] :: twofold, double; divided; two-faced; duplicarius_M_N = mkN "duplicarius" ; -- [XWXIS] :: double-paid soldier; soldier who receives double pay as reward; - duplicatio_F_N = mkN "duplicatio" "duplicationis " feminine ; -- [XXXEZ] :: doubling; duplication(?); + duplicatio_F_N = mkN "duplicatio" "duplicationis" feminine ; -- [XXXEZ] :: doubling; duplication(?); duplicatum_N_N = mkN "duplicatum" ; -- [GXXEK] :: duplicate; duplicatus_A = mkA "duplicatus" "duplicata" "duplicatum" ; -- [FXXEE] :: double; - duplicitas_F_N = mkN "duplicitas" "duplicitatis " feminine ; -- [DXXES] :: doubleness; being double; duplicity, deceit; ambiguity; + duplicitas_F_N = mkN "duplicitas" "duplicitatis" feminine ; -- [DXXES] :: doubleness; being double; duplicity, deceit; ambiguity; dupliciter_Adv =mkAdv "dupliciter" "duplicius" "duplicissime" ; -- [XXXCO] :: doubly, twice over, in two ways/a twofold manner, into two parts/categories; duplico_V = mkV "duplicare" ; -- [XXXDX] :: double, bend double; duplicate; enlarge; duplo_Adv = mkAdv "duplo" ; -- [FXXFE] :: doubly; in a double sense; @@ -18322,57 +18317,57 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat dupondiarius_M_N = mkN "dupondiarius" ; -- [XLXFO] :: two as piece/coin (money); (two cents); dupondius_M_N = mkN "dupondius" ; -- [XXXDO] :: two asses (weight/money); (two pounds); two feet (linear measure); need/want; dupundius_M_N = mkN "dupundius" ; -- [XXXDO] :: two asses (weight/money); (two pounds); two feet (linear measure); need/want; - duramen_N_N = mkN "duramen" "duraminis " neuter ; -- [XXXEC] :: hardness; - duratio_F_N = mkN "duratio" "durationis " feminine ; -- [FXXEE] :: duration; + duramen_N_N = mkN "duramen" "duraminis" neuter ; -- [XXXEC] :: hardness; + duratio_F_N = mkN "duratio" "durationis" feminine ; -- [FXXEE] :: duration; duricordia_F_N = mkN "duricordia" ; -- [FXXEE] :: hard-heartedness; duritia_F_N = mkN "duritia" ; -- [XXXDX] :: hardness, insensibility; hardship, oppressiveness; strictness, rigor; - durities_F_N = mkN "durities" "duritiei " feminine ; -- [XXXDX] :: hardness, insensibility; hardship, oppressiveness; strictness, rigor; + durities_F_N = mkN "durities" "duritiei" feminine ; -- [XXXDX] :: hardness, insensibility; hardship, oppressiveness; strictness, rigor; 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.); 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); - duumviralitas_F_N = mkN "duumviralitas" "duumviralitatis " feminine ; -- [XLXFS] :: duumvir's rank; (of commission of two men); - duumviratus_M_N = mkN "duumviratus" "duumviratus " masculine ; -- [XLXFS] :: duumvir's rank; (of commission of two men); - dux_M_N = mkN "dux" "ducis " masculine ; -- [XXXAX] :: leader, guide; commander, general; Duke (medieval, Bee); + duumviralis_M_N = mkN "duumviralis" "duumviralis" masculine ; -- [XLIFS] :: ex-duumvir; (member of commission of two men); + duumviralitas_F_N = mkN "duumviralitas" "duumviralitatis" feminine ; -- [XLXFS] :: duumvir's rank; (of commission of two men); + duumviratus_M_N = mkN "duumviratus" "duumviratus" masculine ; -- [XLXFS] :: duumvir's rank; (of commission of two men); + dux_M_N = mkN "dux" "ducis" masculine ; -- [XXXAX] :: leader, guide; commander, general; Duke (medieval, Bee); dynamica_F_N = mkN "dynamica" ; -- [GXXEK] :: dynamic; dynamicus_A = mkA "dynamicus" "dynamica" "dynamicum" ; -- [FXXDE] :: dynamic, forceful; aggressive; dynamismus_M_N = mkN "dynamismus" ; -- [FXXEE] :: dynamism; strong force/power; - dynastes_M_N = mkN "dynastes" "dynastae " masculine ; -- [XXXDX] :: ruler, prince (esp. oriental); + dynastes_M_N = mkN "dynastes" "dynastae" masculine ; -- [XXXDX] :: ruler, prince (esp. oriental); dynastia_F_N = mkN "dynastia" ; -- [GXXEK] :: dynasty; dyscolus_A = mkA "dyscolus" "dyscola" "dyscolum" ; -- [FXXEE] :: impudent; harsh, severe; peevish, irritable; dysenteria_F_N = mkN "dysenteria" ; -- [XBXEO] :: dysentery; (other similar conditions?); dysentericus_M_N = mkN "dysentericus" ; -- [XBXEO] :: sufferer/patient with dysentery/(similar conditions?); - dysfunctio_F_N = mkN "dysfunctio" "dysfunctionis " feminine ; -- [GXXEK] :: dysfunction; + dysfunctio_F_N = mkN "dysfunctio" "dysfunctionis" feminine ; -- [GXXEK] :: dysfunction; dysinteria_F_N = mkN "dysinteria" ; -- [XBXEO] :: dysentery; (other similar conditions?); dysintericus_M_N = mkN "dysintericus" ; -- [XBXEO] :: sufferer/patient with dysentery/(similar conditions?); 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; + 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; + 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; eboreus_A = mkA "eboreus" "eborea" "eboreum" ; -- [XXXDO] :: ivory-, made of ivory; pertaining to/derived from ivory; ebriacus_A = mkA "ebriacus" "ebriaca" "ebriacum" ; -- [XXXFO] :: drunk, drunken, intoxicated; - ebrietas_F_N = mkN "ebrietas" "ebrietatis " feminine ; -- [XXXDX] :: drunkenness, intoxication; + ebrietas_F_N = mkN "ebrietas" "ebrietatis" feminine ; -- [XXXDX] :: drunkenness, intoxication; 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; + 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; - ebur_N_N = mkN "ebur" "eboris " neuter ; -- [XXXCO] :: ivory; object/statue of ivory; curule chair (of magistrate); elephant/tusk; + ebur_N_N = mkN "ebur" "eboris" neuter ; -- [XXXCO] :: ivory; object/statue of ivory; curule chair (of magistrate); elephant/tusk; eburarius_A = mkA "eburarius" "eburaria" "eburarium" ; -- [XXXIO] :: working/dealing in ivory; eburarius_M_N = mkN "eburarius" ; -- [XXXIO] :: worker/dealer in ivory; eburatus_A = mkA "eburatus" "eburata" "eburatum" ; -- [XXXIO] :: adorned with ivory; inlaid with ivory; @@ -18381,7 +18376,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat eburneus_A = mkA "eburneus" "eburnea" "eburneum" ; -- [XXXCO] :: ivory, of ivory; white as ivory, ivory-colored; [dens ~ => elephant tusk]; eburnus_A = mkA "eburnus" "eburna" "eburnum" ; -- [XXXCO] :: made of ivory; decorated with/made partially out of ivory; white as ivory; ecastor_Interj = ss "ecastor" ; -- [XXXDX] :: by Castor (interjection used by women); - ecbasis_F_N = mkN "ecbasis" "ecbasis " feminine ; -- [XGXFS] :: digression; + ecbasis_F_N = mkN "ecbasis" "ecbasis" feminine ; -- [XGXFS] :: digression; ecca_Interj = ss "ecca" ; -- [XXXFO] :: Here they (neuter) are!; Behold!, Observe!, Lo!; eccam_Interj = ss "eccam" ; -- [XXXDO] :: Here she/it is!; Behold!, Observe!, Lo!; eccas_Interj = ss "eccas" ; -- [XXXEO] :: Here they (feminine) are!; Behold!, Observe!, Lo!; @@ -18401,33 +18396,33 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat ecdicus_M_N = mkN "ecdicus" ; -- [XXXEC] :: solicitor for a community; ecfatum_N_N = mkN "ecfatum" ; -- [XXXDO] :: pronouncement (by seer), prediction; announcement; assertion/proposition/axiom; ecfatus_A = mkA "ecfatus" "ecfata" "ecfatum" ; -- [FXXDE] :: pronounced, designated; determined; established; proclaimed; - ecfatus_M_N = mkN "ecfatus" "ecfatus " masculine ; -- [XXXEO] :: utterance; + 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; + 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; echographia_F_N = mkN "echographia" ; -- [HSXEK] :: scan; - echoos_F_N = mkN "echoos" "echi " feminine ; -- [XXXBO] :: echo; (nymph); repeating words/phrases; same phrase at start and end of speech; + echoos_F_N = mkN "echoos" "echi" feminine ; -- [XXXBO] :: echo; (nymph); repeating words/phrases; same phrase at start and end of speech; eclecticismus_M_N = mkN "eclecticismus" ; -- [GXXEK] :: eclecticism; eclectismus_M_N = mkN "eclectismus" ; -- [GXXEK] :: eclecticism; - ecligma_N_N = mkN "ecligma" "ecligmatis " neuter ; -- [DBXNS] :: melt-in-mouth medicine, electuary, paste of powder+honey held in mouth; - eclipsis_F_N = mkN "eclipsis" "eclipsis " feminine ; -- [EXXES] :: eclipse; + ecligma_N_N = mkN "ecligma" "ecligmatis" neuter ; -- [DBXNS] :: melt-in-mouth medicine, electuary, paste of powder+honey held in mouth; + eclipsis_F_N = mkN "eclipsis" "eclipsis" feminine ; -- [EXXES] :: eclipse; ecliptica_F_N = mkN "ecliptica" ; -- [GXXEK] :: ecliptic; eclipticus_A = mkA "eclipticus" "ecliptica" "eclipticum" ; -- [XLXFS] :: ecliptic; in which moon is eclipsed (astrological signs); of eclipse; ecloga_F_N = mkN "ecloga" ; -- [XXXDX] :: short poem (esp. pastoral); short passage selected from longer work, excerpt; eclogarius_M_N = mkN "eclogarius" ; -- [XGXEC] :: select passages (pl.) or extracts; - ecnephias_M_N = mkN "ecnephias" "ecnephiae " masculine ; -- [XXXFS] :: hurricane; (Pliny-allegedly formed by blasts from two clouds); + ecnephias_M_N = mkN "ecnephias" "ecnephiae" masculine ; -- [XXXFS] :: hurricane; (Pliny-allegedly formed by blasts from two clouds); econtra_Adv = mkAdv "econtra" ; -- [DXXES] :: the_contrary; the_reverse; ecquid_Adv = mkAdv "ecquid" ; -- [XXXDX] :: at all? (interog.); ecstasia_F_N = mkN "ecstasia" ; -- [FEXEM] :: rapture; ecstasy; trance; - ecstasis_F_N = mkN "ecstasis" "ecstasis " feminine ; -- [FEXDM] :: rapture; ecstasy; trance; + ecstasis_F_N = mkN "ecstasis" "ecstasis" feminine ; -- [FEXDM] :: rapture; ecstasy; trance; ecstaticus_A = mkA "ecstaticus" "ecstatica" "ecstaticum" ; -- [FEXEM] :: ecstatic; exalted; [Doctor Ecstaticus => Denis the Carthusian]; ectenia_F_N = mkN "ectenia" ; -- [EEHFE] :: ectene; (prayer in Greek liturgy); ectheta_F_N = mkN "ectheta" ; -- [ETXFP] :: balcony; gallery (Douay); @@ -18437,15 +18432,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; 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; + 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; + editio_F_N = mkN "editio" "editionis" feminine ; -- [XXXDX] :: publishing; edition; statement; + editor_M_N = mkN "editor" "editoris" masculine ; -- [GXXEE] :: |editor; producer, publisher; 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; @@ -18454,59 +18449,57 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat edomo_V2 = mkV2 (mkV "edomare") ; -- [XXXCO] :: |master (vices); overcome (difficulties); bring (land /plants)under cultivation; 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; + 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); + 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; + 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"; - effarcio_V = mkV "effarcire" "effarcio" "effartus" ; -- [XXXEC] :: stuff full; - effascinatio_F_N = mkN "effascinatio" "effascinationis " feminine ; -- [XXXES] :: bewitching; - effatha_V2 = mkV2 (constV "effatha") ; -- Type: TRANS -- Comment: [EEQFE] :: be thou opened; (Mark 7:34); (Aramaic); + effascinatio_F_N = mkN "effascinatio" "effascinationis" feminine ; -- [XXXES] :: bewitching; + 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; + effatus_M_N = mkN "effatus" "effatus" masculine ; -- [XXXEO] :: utterance; effecte_Adv =mkAdv "effecte" "effectius" "effectissime" ; -- [XXXEO] :: consummately, in accomplished style; in practical way; productively; - effectio_F_N = mkN "effectio" "effectionis " feminine ; -- [XXXEO] :: achievement, accomplishment (of aim); efficient cause; doing/performing (Ecc); + effectio_F_N = mkN "effectio" "effectionis" feminine ; -- [XXXEO] :: achievement, accomplishment (of aim); efficient cause; doing/performing (Ecc); effective_Adv = mkAdv "effective" ; -- [EXXEE] :: effectively; productively; effectivus_A = mkA "effectivus" "effectiva" "effectivum" ; -- [XXXEO] :: creative, involving product; of practical implementation; effective/productive; - effector_M_N = mkN "effector" "effectoris " masculine ; -- [XXXDO] :: author, originator, one who creates/causes; maker (Ecc); doer; - effectrix_F_N = mkN "effectrix" "effectricis " feminine ; -- [XXXDO] :: author/originator (feminine), she who creates/causes/effects; maker/doer (Ecc); - effectus_M_N = mkN "effectus" "effectus " masculine ; -- [XXXDX] :: execution, performance; effect; + effector_M_N = mkN "effector" "effectoris" masculine ; -- [XXXDO] :: author, originator, one who creates/causes; maker (Ecc); doer; + effectrix_F_N = mkN "effectrix" "effectricis" feminine ; -- [XXXDO] :: author/originator (feminine), she who creates/causes/effects; maker/doer (Ecc); + 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; 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; + effero_V = mkV "efferre" "effero" "extuli" "elatus" ; -- Comment: [XXXDX] :: carry out; bring out; carry out for burial; raise; effertus_A = mkA "effertus" ; -- [XXXEC] :: stuffed; efferus_A = mkA "efferus" "effera" "efferum" ; -- [XXXDX] :: savage, cruel, barbarous; effervescentia_F_N = mkN "effervescentia" ; -- [GXXEK] :: effervescence; 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); + 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; + efficacitas_F_N = mkN "efficacitas" "efficacitatis" feminine ; -- [XXXEO] :: effectiveness; efficiency; accomplishment (Ecc); power, influence; efficacy; efficaciter_Adv =mkAdv "efficaciter" "efficacius" "efficacissime" ; -- [XXXCO] :: effectually; to good effect; so as to take effect in law; efficax_A = mkA "efficax" "efficacis"; -- [XXXDX] :: effective, capable of filling some function; (person/medicine); legally valid; 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; + 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; + 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; + 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; + 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; + effligo_V2 = mkV2 (mkV "effligere" "effligo" "efflixi" "efflictus") ; -- [XXXEC] :: destroy; efflo_V = mkV "efflare" ; -- [XXXDX] :: blow or breathe out; breathe one's last; 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; @@ -18514,103 +18507,103 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + efformatio_F_N = mkN "efformatio" "efformationis" feminine ; -- [FXXEM] :: formation; shape; efformo_V2 = mkV2 (mkV "efformare") ; -- [FXXEE] :: form, shape, fashion; effractura_F_N = mkN "effractura" ; -- [FXXEK] :: break-in; 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; + 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; + 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; + 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; + effusio_F_N = mkN "effusio" "effusionis" feminine ; -- [XXXDX] :: outpouring, shedding; profusion, lavishness, extravagance, excess; 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; + 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; + 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; + 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; - egressus_M_N = mkN "egressus" "egressus " masculine ; -- [XXXDX] :: landing place; egress; departure; flight; landing; mouth (of a river); - egritudo_F_N = mkN "egritudo" "egritudinis " feminine ; -- [FBXEM] :: sickness; disease; mental illness; [~ regis => king's evil/scrofula]; + egressio_F_N = mkN "egressio" "egressionis" feminine ; -- [XXXEO] :: digression (rhetoric); action of going out; + egressus_M_N = mkN "egressus" "egressus" masculine ; -- [XXXDX] :: landing place; egress; departure; flight; landing; mouth (of a river); + egritudo_F_N = mkN "egritudo" "egritudinis" feminine ; -- [FBXEM] :: sickness; disease; mental illness; [~ regis => king's evil/scrofula]; ehem_Interj = ss "ehem" ; -- [XXXEC] :: oho! well well!; eheu_Interj = ss "eheu" ; -- [XXXDX] :: alas! (exclamation of grief/pain/fear); 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); + 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; + eileton_N_N = mkN "eileton" "eileti" neuter ; -- [FEHFE] :: corporal (in Greek rite); + einlatus_M_N = mkN "einlatus" "einlatus" masculine ; -- [XXXDX] :: wailing, shrieking; ejaculor_V = mkV "ejaculari" ; -- [XXXDX] :: shoot forth, spout forth, discharge; ejectamentum_N_N = mkN "ejectamentum" ; -- [XXXEC] :: ejecta, that which is thrown/cast up/out; - ejectio_F_N = mkN "ejectio" "ejectionis " feminine ; -- [XXXEO] :: banishment/exile, expulsion from one's country; spitting (of blood); ejection; + 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); + 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; + ejulatio_F_N = mkN "ejulatio" "ejulationis" feminine ; -- [XXXEC] :: wailing, lamentation; + ejulatus_M_N = mkN "ejulatus" "ejulatus" masculine ; -- [XXXEC] :: wailing, lamentation; ejulo_V = mkV "ejulare" ; -- [XXXEC] :: wail, lament; 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); + 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; 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; + 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; elate_Adv =mkAdv "elate" "elatius" "elatissime" ; -- [XXXCO] :: haughtily, proudly; insolently; in a grand/lofty style of speech/writing; - elater_N_N = mkN "elater" "elateris " neuter ; -- [GXXEK] :: spring; + 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; + elatio_F_N = mkN "elatio" "elationis" feminine ; -- [XXXCO] :: glorification/extolling/lifting; (ceremonial) carrying out; ecstasy; exaltation; 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); + electio_F_N = mkN "electio" "electionis" feminine ; -- [XXXDX] :: choice, selection; election; E:election to salvation (Ecc); electissimus_M_N = mkN "electissimus" ; -- [GXXEK] :: elite; electivus_A = mkA "electivus" "electiva" "electivum" ; -- [XLXEE] :: elective; - elector_M_N = mkN "elector" "electoris " masculine ; -- [FLXDE] :: elector; - electricitas_F_N = mkN "electricitas" "electricitatis " feminine ; -- [HXXEK] :: electricity; + elector_M_N = mkN "elector" "electoris" masculine ; -- [FLXDE] :: elector; + electricitas_F_N = mkN "electricitas" "electricitatis" feminine ; -- [HXXEK] :: electricity; electricus_A = mkA "electricus" "electrica" "electricum" ; -- [GSXDE] :: electric; - electrificatio_F_N = mkN "electrificatio" "electrificationis " feminine ; -- [HXXEK] :: electrification; + electrificatio_F_N = mkN "electrificatio" "electrificationis" feminine ; -- [HXXEK] :: electrification; electrificina_F_N = mkN "electrificina" ; -- [HXXEK] :: powerhouse; electrifico_V = mkV "electrificare" ; -- [HXXEK] :: electrify; electrinus_A = mkA "electrinus" "electrina" "electrinum" ; -- [GXXEK] :: amber-colored; - electrisatio_F_N = mkN "electrisatio" "electrisationis " feminine ; -- [HXXEK] :: electrification; + electrisatio_F_N = mkN "electrisatio" "electrisationis" feminine ; -- [HXXEK] :: electrification; electriso_V = mkV "electrisare" ; -- [HXXEK] :: charge; electrochemia_F_N = mkN "electrochemia" ; -- [HSXEK] :: electrochemistry; electrochemicus_A = mkA "electrochemicus" "electrochemica" "electrochemicum" ; -- [GSXEK] :: electro-chemical; - electroconvulsio_F_N = mkN "electroconvulsio" "electroconvulsionis " feminine ; -- [HBXEK] :: electroshock; + electroconvulsio_F_N = mkN "electroconvulsio" "electroconvulsionis" feminine ; -- [HBXEK] :: electroshock; electroda_F_N = mkN "electroda" ; -- [GTXEK] :: electrode; electrodus_F_N = mkN "electrodus" ; -- [GTXEK] :: electrode; - electrolysis_F_N = mkN "electrolysis" "electrolysis " feminine ; -- [GSXEK] :: electrolysis; + electrolysis_F_N = mkN "electrolysis" "electrolysis" feminine ; -- [GSXEK] :: electrolysis; electrolyticus_A = mkA "electrolyticus" "electrolytica" "electrolyticum" ; -- [GSXEK] :: electrolytic; electrolytum_N_N = mkN "electrolytum" ; -- [GSXEK] :: electrolyte; electromagneticus_A = mkA "electromagneticus" "electromagnetica" "electromagneticum" ; -- [HSXEK] :: electromagnetic; @@ -18635,69 +18628,69 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat elegeia_F_N = mkN "elegeia" ; -- [XXXDX] :: elegy; elegia_F_N = mkN "elegia" ; -- [XXXDX] :: elegy; elegus_M_N = mkN "elegus" ; -- [XXXDX] :: elegiac verses (pl.), elegy; - eleison_V = constV "eleison" ; -- [EEHDE] :: have mercy (upon us); (Greek imperative); - elelisphacos_M_N = mkN "elelisphacos" "elelisphaci " masculine ; -- [DAXNS] :: sage (Pliny); + 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; elementum_N_N = mkN "elementum" ; -- [XXXBX] :: |element, origin; first principle; elemosina_F_N = mkN "elemosina" ; -- [EEXEB] :: alms, almshouse; gift to a church, religious foundation; pity; (act of) mercy; elemosyna_F_N = mkN "elemosyna" ; -- [DEXEW] :: alms, almshouse; gift to a church, religious foundation; pity; (act of) mercy; elenchus_M_N = mkN "elenchus" ; -- [XXXEC] :: pearl pendant worn as an earring; - elephans_M_N = mkN "elephans" "elephantis " masculine ; -- [XXXEO] :: elephant; ivory; large variety of lobster, large sea creature; elephantiasis; + elephans_M_N = mkN "elephans" "elephantis" masculine ; -- [XXXEO] :: elephant; ivory; large variety of lobster, large sea creature; elephantiasis; elephantus_M_N = mkN "elephantus" ; -- [XXXBO] :: elephant; ivory; large variety of lobster, large sea creature; elephantiasis; - 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; + 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; - 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; + 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; + 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; + 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); + 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); elitismus_M_N = mkN "elitismus" ; -- [GXXEK] :: elitism; - elix_M_N = mkN "elix" "elicis " masculine ; -- [XAXCO] :: furrow in grainfield for draining off water (usu. pl.), trench, drain, ditch; + elix_M_N = mkN "elix" "elicis" masculine ; -- [XAXCO] :: furrow in grainfield for draining off water (usu. pl.), trench, drain, ditch; elixus_A = mkA "elixus" "elixa" "elixum" ; -- [XXXCO] :: boiled; (of meat); elleborum_N_N = mkN "elleborum" ; -- [XAXEC] :: hellebore (plant); (considered a remedy for madness); elleborus_M_N = mkN "elleborus" ; -- [XAXEC] :: hellebore (plant); (considered a remedy for madness); - ellipsois_F_N = mkN "ellipsois" "ellipsoidis " feminine ; -- [GXXEK] :: ellipsoid; + ellipsois_F_N = mkN "ellipsois" "ellipsoidis" feminine ; -- [GXXEK] :: ellipsoid; ellipticus_A = mkA "ellipticus" "elliptica" "ellipticum" ; -- [GXXEK] :: elliptic; elluor_V = mkV "elluari" ; -- [XXXDO] :: spend immoderately (eating/luxuries); be a glutton/gormandize; squander; - elocutio_F_N = mkN "elocutio" "elocutionis " feminine ; -- [XGXEC] :: oratorical delivery, elocution; + elocutio_F_N = mkN "elocutio" "elocutionis" feminine ; -- [XGXEC] :: oratorical delivery, elocution; elocutus_A = mkA "elocutus" "elocuta" "elocutum" ; -- [XXXFS] :: declared, uttered; out spoken; elogium_N_N = mkN "elogium" ; -- [XLXCO] :: clause added to will/codicil; written particulars on prisoner; inscription; elonginquo_V = mkV "elonginquare" ; -- [EXXFS] :: remove; elongo_V = mkV "elongare" ; -- [EXXCS] :: withdraw, depart; remove; keep aloof; - elopsellops_M_N = mkN "elopsellops" "elopsellopis " masculine ; -- [XAXEC] :: fish (perhaps sturgeon); + elopsellops_M_N = mkN "elopsellops" "elopsellopis" masculine ; -- [XAXEC] :: fish (perhaps sturgeon); eloquens_A = mkA "eloquens" "eloquentis"; -- [XXXCO] :: eloquent, expressing thoughts fluently/forcefully; articulate, able in speech;; 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; + 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; - eludo_V2 = mkV2 (mkV "eludere" "eludo" "elusi" "elusus ") ; -- [XXXDX] :: elude, escape from; parry; baffle; cheat; frustrate; mock, make fun of; + 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); + 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; + eluvies_F_N = mkN "eluvies" "eluviei" feminine ; -- [XXXEC] :: flowing out, discharge; a flowing over, flood; + eluvio_F_N = mkN "eluvio" "eluvionis" feminine ; -- [XXXEC] :: inundation; elytrum_N_N = mkN "elytrum" ; -- [GXXEK] :: elytron; outer wing; em_Interj = ss "em" ; -- [XXXDX] :: there! (of wonder); here!; emaculo_V2 = mkV2 (mkV "emaculare") ; -- [XXXEO] :: cleanse of stains/spots, make clean; heal; correct/clear from faults (Erasmus); - emanatio_F_N = mkN "emanatio" "emanationis " feminine ; -- [FEXEE] :: emanation; - emancipatio_F_N = mkN "emancipatio" "emancipationis " feminine ; -- [XLXCO] :: emancipation; release from patria potestas; conveyance/transfer of property; + emanatio_F_N = mkN "emanatio" "emanationis" feminine ; -- [FEXEE] :: emanation; + emancipatio_F_N = mkN "emancipatio" "emancipationis" feminine ; -- [XLXCO] :: emancipation; release from patria potestas; conveyance/transfer of property; emancipatus_A = mkA "emancipatus" "emancipata" "emancipatum" ; -- [XLXEE] :: emancipated, freed; emancipo_V = mkV "emancipare" ; -- [XXXDX] :: emancipate (son from his father's authority); alienate; make subservient; emaneo_V = mkV "emanere" ; -- [XXXEO] :: stay away (from); stay out/beyond; absent oneself; @@ -18705,32 +18698,32 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - emblema_N_N = mkN "emblema" "emblematis " neuter ; -- [FXXEK] :: |marquetry; + embamma_N_N = mkN "embamma" "embammatis" neuter ; -- [FXXEK] :: sauce; + emblem_N_N = mkN "emblem" "emblematis" neuter ; -- [XTXEC] :: inlaid or mosaic work; + emblema_N_N = mkN "emblema" "emblematis" neuter ; -- [FXXEK] :: |marquetry; emblematicus_A = mkA "emblematicus" "emblematica" "emblematicum" ; -- [FXXEE] :: of emblems; checky, with checks (heraldry) (Latham); emboliaria_F_N = mkN "emboliaria" ; -- [XDXES] :: interlude actress; embolismus_M_N = mkN "embolismus" ; -- [FXXEE] :: insertion; (in literary work); embolium_N_N = mkN "embolium" ; -- [XDXEO] :: dramatic interlude, entr'acte; insertion (in literary work); episode (Ecc); embolum_N_N = mkN "embolum" ; -- [XWXFO] :: beak of ship; ram; embolus_M_N = mkN "embolus" ; -- [XXXFO] :: piston; - embryo_M_N = mkN "embryo" "embryonis " masculine ; -- [GBXEK] :: embryo; + embryo_M_N = mkN "embryo" "embryonis" masculine ; -- [GBXEK] :: embryo; embryotomia_F_N = mkN "embryotomia" ; -- [EBHFP] :: cutting up fetus (in womb); embryulcia_F_N = mkN "embryulcia" ; -- [EBHFP] :: extraction of fetus; (abortion); embryulcus_M_N = mkN "embryulcus" ; -- [EBHFP] :: forceps, instrument for extracting fetus; - emendatio_F_N = mkN "emendatio" "emendationis " feminine ; -- [XXXCO] :: correction, removal of errors; amendment; criticism; improvement; amends; + 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; + 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; + 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; + 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; @@ -18744,19 +18737,20 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat emissarium_N_N = mkN "emissarium" ; -- [GXXEK] :: exhaust pipe; emissarius_M_N = mkN "emissarius" ; -- [XXXEO] :: emissary. agent, person sent on particular mission; side-shoot left (vine); emissicius_A = mkA "emissicius" "emissicia" "emissicium" ; -- [XXXEO] :: sent out as emissary or spy; - emissio_F_N = mkN "emissio" "emissionis " feminine ; -- [FEXEE] :: |making religious profession; sending out; letting go; [in ~ => in exile]; + emissio_F_N = mkN "emissio" "emissionis" feminine ; -- [FEXEE] :: |making religious profession; sending out; letting go; [in ~ => in exile]; emissorium_N_N = mkN "emissorium" ; -- [GTXEK] :: emitter; emissorius_A = mkA "emissorius" "emissoria" "emissorium" ; -- [GTXEK] :: emitting; emistrum_N_N = mkN "emistrum" ; -- [GTXEK] :: emitter; - 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; + emitto_V2 = mkV2 (mkV "emittere" "emitto" "emisi" "emissus") ; -- [XXXBX] :: hurl; let go; utter; send out; drive; force; cast; discharge; expel; publish; +-- IGNORED emo_V : V1 emo, emere, additional, forms -- [XXXDX] :: buy; gain, acquire, obtain; + 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; + 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; + 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; @@ -18780,25 +18774,25 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat emporeticus_A = mkA "emporeticus" "emporetica" "emporeticum" ; -- [GXXEK] :: wrapping; enclosing; emporium_N_N = mkN "emporium" ; -- [XXXDX] :: center/place of trade, market town; market, mart; empticius_A = mkA "empticius" "empticia" "empticium" ; -- [XXXDO] :: purchased, bought, obtained by purchase; - emptio_F_N = mkN "emptio" "emptionis " feminine ; -- [XXXCO] :: purchase/acquisition, thing bought; deed of purchase; act of buying/purchasing; - emptor_M_N = mkN "emptor" "emptoris " masculine ; -- [XXXDX] :: buyer, purchaser; + emptio_F_N = mkN "emptio" "emptionis" feminine ; -- [XXXCO] :: purchase/acquisition, thing bought; deed of purchase; act of buying/purchasing; + emptor_M_N = mkN "emptor" "emptoris" masculine ; -- [XXXDX] :: buyer, purchaser; empyreus_A = mkA "empyreus" "empyrea" "empyreum" ; -- [DXXFS] :: fiery; empyrius_A = mkA "empyrius" "empyria" "empyrium" ; -- [DXXFS] :: fiery; - emulsio_F_N = mkN "emulsio" "emulsionis " feminine ; -- [GXXEK] :: emulsion; + emulsio_F_N = mkN "emulsio" "emulsionis" feminine ; -- [GXXEK] :: emulsion; emuncte_Adv = mkAdv "emuncte" ; -- [GXXEK] :: subtly; finely; - emunctio_F_N = mkN "emunctio" "emunctionis " feminine ; -- [XXXFO] :: wiping of the nose; + emunctio_F_N = mkN "emunctio" "emunctionis" feminine ; -- [XXXFO] :: wiping of the nose; emunctorium_N_N = mkN "emunctorium" ; -- [XXXEE] :: snuffer (for trimming candles and lamps); - emundatio_F_N = mkN "emundatio" "emundationis " feminine ; -- [XXXES] :: cleansing, cleaning; + 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; + 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); + 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); - enarmonion_N_N = mkN "enarmonion" "enarmonii " neuter ; -- [DDHES] :: enharmonic; (kind of melody in Greek music); + enarmonion_N_N = mkN "enarmonion" "enarmonii" neuter ; -- [DDHES] :: enharmonic; (kind of melody in Greek music); enarmonius_A = mkA "enarmonius" "enarmonia" "enarmonium" ; -- [DDHES] :: enharmonic; (of kind of melody in Greek music); enarrabilis_A = mkA "enarrabilis" "enarrabilis" "enarrabile" ; -- [XXXDX] :: that may be described or explained; - enarratio_F_N = mkN "enarratio" "enarrationis " feminine ; -- [XXXFS] :: |detailed-exposition; reckoning; G:scanning; + enarratio_F_N = mkN "enarratio" "enarrationis" feminine ; -- [XXXFS] :: |detailed-exposition; reckoning; G:scanning; enarro_V = mkV "enarrare" ; -- [XXXDX] :: describe; explain/relate in detail; enascor_V = mkV "enascari" ; -- [XXXCO] :: sprout/spring forth, arise/be born out of something by natural growth; (day); enato_V = mkV "enatare" ; -- [XXXDX] :: escape by swimming; @@ -18806,74 +18800,75 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat encaenio_V = mkV "encaeniare" ; -- [FEXEE] :: consecrate; put on something new; encaenium_Adv = mkAdv "encaenium" ; -- [FXXFY] :: by mistake; encaenium_N_N = mkN "encaenium" ; -- [FEXEF] :: consecration; dedication; festival; - encephalitis_F_N = mkN "encephalitis" "encephalitidis " feminine ; -- [HBXEK] :: encephalitis; + encephalitis_F_N = mkN "encephalitis" "encephalitidis" feminine ; -- [HBXEK] :: encephalitis; encephalopathia_F_N = mkN "encephalopathia" ; -- [HBXEK] :: encephalopathy; disease of the brain in general; - enchiridion_N_N = mkN "enchiridion" "enchiridii " neuter ; -- [FXXEE] :: manual; handbook; + enchiridion_N_N = mkN "enchiridion" "enchiridii" neuter ; -- [FXXEE] :: manual; handbook; encolpismus_M_N = mkN "encolpismus" ; -- [EBXFP] :: vaginal douche; clyster, enema; encolpium_N_N = mkN "encolpium" ; -- [FEXFE] :: medal (worn on neck); - encomboma_N_N = mkN "encomboma" "encombomatis " neuter ; -- [FXXEK] :: apron; + encomboma_N_N = mkN "encomboma" "encombomatis" neuter ; -- [FXXEK] :: apron; encyclicus_A = mkA "encyclicus" "encyclica" "encyclicum" ; -- [FEXEE] :: general/universal; circular; [~ epistula => encyclical letter/Papal doctrine]; encyclopaedia_F_N = mkN "encyclopaedia" ; -- [GXXEK] :: encyclopedia; endivia_F_N = mkN "endivia" ; -- [GXXEK] :: endive; - endromis_F_N = mkN "endromis" "endromidis " feminine ; -- [XXXEC] :: rough cloak worn after exercise; + endromis_F_N = mkN "endromis" "endromidis" feminine ; -- [XXXEC] :: rough cloak worn after exercise; eneco_V2 = mkV2 (mkV "enecare") ; -- [XXXCO] :: kill/slay; deprive of life; kill off; exhaust/wear out, plague/torture to death; - enema_N_N = mkN "enema" "enematis " neuter ; -- [XBXEP] :: enema, clyster; injection; + enema_N_N = mkN "enema" "enematis" neuter ; -- [XBXEP] :: enema, clyster; injection; energia_F_N = mkN "energia" ; -- [FXXEE] :: energy; efficiency; energumenus_A = mkA "energumenus" "energumena" "energumenum" ; -- [FEXEE] :: possessed by a devil; enervis_A = mkA "enervis" "enervis" "enerve" ; -- [XXXCO] :: powerless, weak; nerveless, feeble, languid; limp/slack/not taut (objects); enerviter_Adv = mkAdv "enerviter" ; -- [XXXEE] :: weakly, feebly; limply, languidly; enervo_V2 = mkV2 (mkV "enervare") ; -- [XXXCO] :: weaken, enervate; make effeminate; deprive of vigor; cut/remove sinews from; enervus_A = mkA "enervus" "enerva" "enervum" ; -- [XXXEO] :: powerless, weak; nerveless, feeble, languid; limp/slack/not taut (objects); - enharmonicon_N_N = mkN "enharmonicon" "enharmonici " neuter ; -- [DDHES] :: enharmonic; (kind of melody in Greek music); - enharmonicos_M_N = mkN "enharmonicos" "enharmonici " masculine ; -- [FDHFZ] :: enharmonic; (of kind of melody in Greek music); + enharmonicon_N_N = mkN "enharmonicon" "enharmonici" neuter ; -- [DDHES] :: enharmonic; (kind of melody in Greek music); + enharmonicos_M_N = mkN "enharmonicos" "enharmonici" masculine ; -- [FDHFZ] :: enharmonic; (of kind of melody in Greek music); enharmonicus_A = mkA "enharmonicus" "enharmonica" "enharmonicum" ; -- [DDHES] :: enharmonic; (of kind of melody in Greek music); - enharmonios_M_N = mkN "enharmonios" "enharmonii " masculine ; -- [FDHFZ] :: enharmonic; (of kind of melody in Greek music); + enharmonios_M_N = mkN "enharmonios" "enharmonii" masculine ; -- [FDHFZ] :: enharmonic; (of kind of melody in Greek music); enharmonius_A = mkA "enharmonius" "enharmonia" "enharmonium" ; -- [DDHES] :: enharmonic; (of kind of melody in Greek music); - enhydris_F_N = mkN "enhydris" "enhydridis " feminine ; -- [DAXNS] :: water-snake (Pliny); + 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; + enigma_N_N = mkN "enigma" "enigmatis" neuter ; -- [FXXCE] :: puzzle, enigma, riddle, obscure expression/saying; 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; 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; + 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; - enodatio_F_N = mkN "enodatio" "enodationis " feminine ; -- [XXXEC] :: untying; explanation; + enodatio_F_N = mkN "enodatio" "enodationis" feminine ; -- [XXXEC] :: untying; explanation; enodis_A = mkA "enodis" "enodis" "enode" ; -- [XXXDX] :: without knots; smooth; enodo_V2 = mkV2 (mkV "enodare") ; -- [FXXDE] :: make clear; enormis_A = mkA "enormis" "enormis" "enorme" ; -- [XXXCO] :: irregular; ill-fitting, shapeless; immense, huge, enormous; unusually large; enormiter_Adv = mkAdv "enormiter" ; -- [XXXEO] :: irregularly; unsymmetrically; enormously (Ecc); immoderately; unusually; - ens_N_N = mkN "ens" "entis " neuter ; -- [FEXDF] :: being; something having esse/existence; (basic concept of St. Thomas Aquinas); + ens_N_N = mkN "ens" "entis" neuter ; -- [FEXDF] :: being; something having esse/existence; (basic concept of St. Thomas Aquinas); ensicula_M_N = mkN "ensicula" ; -- [GXXEK] :: opener; [ensiculus chartorum => letter opener); ensifer_A = mkA "ensifer" "ensifera" "ensiferum" ; -- [XXXDV] :: sword-bearing; ensiger_A = mkA "ensiger" "ensigera" "ensigerum" ; -- [XXXDV] :: sword-bearing; - ensis_M_N = mkN "ensis" "ensis " masculine ; -- [XXXBX] :: sword; + ensis_M_N = mkN "ensis" "ensis" masculine ; -- [XXXBX] :: sword; entheca_F_N = mkN "entheca" ; -- [XXXES] :: hoard; store; magazine; enthusiasmus_M_N = mkN "enthusiasmus" ; -- [GXXEK] :: enthusiasm; enthusiasticus_A = mkA "enthusiasticus" "enthusiastica" "enthusiasticum" ; -- [GXXEK] :: enthusiastic; - enthymema_N_N = mkN "enthymema" "enthymematis " neuter ; -- [XGXEC] :: thought, line of thought, argument; kind of syllogism; - entitas_F_N = mkN "entitas" "entitatis " feminine ; -- [FXXFM] :: |entity; existence; + enthymema_N_N = mkN "enthymema" "enthymematis" neuter ; -- [XGXEC] :: thought, line of thought, argument; kind of syllogism; + entitas_F_N = mkN "entitas" "entitatis" feminine ; -- [FXXFM] :: |entity; existence; entitativus_A = mkA "entitativus" "entitativa" "entitativum" ; -- [FEXEE] :: of nature/character of a being; 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; + 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; - enumeratio_F_N = mkN "enumeratio" "enumerationis " feminine ; -- [XXXCO] :: enumeration, act of listing; recapitulation/summing up; argument by elimination; + enumeratio_F_N = mkN "enumeratio" "enumerationis" feminine ; -- [XXXCO] :: enumeration, act of listing; recapitulation/summing up; argument by elimination; enumero_V = mkV "enumerare" ; -- [XXXDX] :: count up, pay out; specify, enumerate; enuntiabilis_A = mkA "enuntiabilis" "enuntiabilis" "enuntiabile" ; -- [FXXFM] :: utterable; - enuntiatio_F_N = mkN "enuntiatio" "enuntiationis " feminine ; -- [XXXEZ] :: proposition (Collins); + 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); + enutrio_V2 = mkV2 (mkV "enutrire" "enutrio" "enutrivi" "enutritus") ; -- [XXXCO] :: nurture, rear (offspring); enzymum_N_N = mkN "enzymum" ; -- [GSXEK] :: enzyme; + 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" "iii" "itus" ; -- [XXXAX] :: go, walk; march, advance; pass; flow; pass (time); ride; sail; eo_Adv = mkAdv "eo" ; -- [XXXBO] :: |there, to/toward that place; in that direction; to that object/point/stage; - 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; + eo_V = mkV "eare" ; -- [FXXFZ] :: go, walk; march, advance; pass; flow; pass (time); ride; be in the middle; 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; @@ -18881,56 +18876,56 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat ephebia_F_N = mkN "ephebia" ; -- [EGXEE] :: school for youth; 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); + ephemeris_F_N = mkN "ephemeris" "ephemeridis" feminine ; -- [XXXEC] :: journal, diary; newspaper (Cal); 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); 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; + 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; - 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); + ephphatha_V2 = mkV2 (constV "ephphatha") ; -- Type: TRANS -- Comment: [EEQFE] :: be thou opened; (Mark 7:34); (Aramaic); + ephpheta_V2 = mkV2 (constV "ephpheta") ; -- Type: TRANS -- 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; + epichirema_N_N = mkN "epichirema" "epichirematis" neuter ; -- [XGXFS] :: type of argument; epicinium_N_N = mkN "epicinium" ; -- [EXXFW] :: aftermath, afterwards; (victory); - epiclesis_F_N = mkN "epiclesis" "epiclesis " feminine ; -- [EXXFE] :: invocation; calling down; summoning; + epiclesis_F_N = mkN "epiclesis" "epiclesis" feminine ; -- [EXXFE] :: invocation; calling down; summoning; epicopus_A = mkA "epicopus" "epicopa" "epicopum" ; -- [XWXEC] :: provided with oars; epicrocus_A = mkA "epicrocus" "epicroca" "epicrocum" ; -- [XXXEC] :: transparent, fine; epicus_A = mkA "epicus" "epica" "epicum" ; -- [XXXEC] :: epic; epicyclus_M_N = mkN "epicyclus" ; -- [EXXES] :: epicycle; small circle centered on perimeter of larger circle; epidemia_F_N = mkN "epidemia" ; -- [GXXEK] :: epidemic; 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; + 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; 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; + 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; epigraphicus_A = mkA "epigraphicus" "epigraphica" "epigraphicum" ; -- [GXXEK] :: epigraphic; epigraphista_M_N = mkN "epigraphista" ; -- [GXXEK] :: epigraphist; epilempsia_F_N = mkN "epilempsia" ; -- [EBXEP] :: epilepsy; - epilempsis_F_N = mkN "epilempsis" "epilempsis " feminine ; -- [EBXEP] :: epilepsy; + epilempsis_F_N = mkN "epilempsis" "epilempsis" feminine ; -- [EBXEP] :: epilepsy; epilempticus_A = mkA "epilempticus" "epilemptica" "epilempticum" ; -- [EBXEP] :: epileptic, suffering from epilepsy; of/pertaining to epilepsy; epilepsia_F_N = mkN "epilepsia" ; -- [EBXEP] :: epilepsy; epilepticus_A = mkA "epilepticus" "epileptica" "epilepticum" ; -- [EBXEP] :: epileptic, suffering from epilepsy; of/pertaining to epilepsy; epilogus_M_N = mkN "epilogus" ; -- [XXXEC] :: conclusion, peroration, epilogue; - epimanikon_N_N = mkN "epimanikon" "epimaniki " neuter ; -- [EEHFE] :: maniple in Greek rite; a Eucharistic vestment; - epimedion_N_N = mkN "epimedion" "epimedii " neuter ; -- [GXXEK] :: staircase-rail; + epimanikon_N_N = mkN "epimanikon" "epimaniki" neuter ; -- [EEHFE] :: maniple in Greek rite; a Eucharistic vestment; + epimedion_N_N = mkN "epimedion" "epimedii" neuter ; -- [GXXEK] :: staircase-rail; epimenium_N_N = mkN "epimenium" ; -- [XXXEC] :: month's rations (pl.); - epinicion_N_N = mkN "epinicion" "epinicii " neuter ; -- [XXXFO] :: song of victory; + epinicion_N_N = mkN "epinicion" "epinicii" neuter ; -- [XXXFO] :: song of victory; epinicium_N_N = mkN "epinicium" ; -- [XXXFO] :: song of victory; - epinikion_N_N = mkN "epinikion" "epinikii " neuter ; -- [EXXFW] :: song of victory; + epinikion_N_N = mkN "epinikion" "epinikii" neuter ; -- [EXXFW] :: song of victory; epiphonus_M_N = mkN "epiphonus" ; -- [EDXFE] :: second of two musical notes and smaller than first; epiphora_F_N = mkN "epiphora" ; -- [XBXES] :: flowing, afflux; running down/defluxion of humors; repetition; epiredium_N_N = mkN "epiredium" ; -- [XXXEC] :: strap by which a horse was fastened to a vehicle; a trace; episcopalis_A = mkA "episcopalis" "episcopalis" "episcopale" ; -- [EEXDX] :: episcopal, of a bishop; episcopaliter_Adv = mkAdv "episcopaliter" ; -- [EEXEE] :: in episcopal fashion; - episcopatus_M_N = mkN "episcopatus" "episcopatus " masculine ; -- [EEXCE] :: bishopric; episcopate; bishop's office/dignity/see; overseer; post of authority; + episcopatus_M_N = mkN "episcopatus" "episcopatus" masculine ; -- [EEXCE] :: bishopric; episcopate; bishop's office/dignity/see; overseer; post of authority; episcopium_N_N = mkN "episcopium" ; -- [EEXDE] :: bishop's see; bishop's residence; episcopus_M_N = mkN "episcopus" ; -- [EEXAE] :: bishop; patriarch; [~ castrensis => military bishop; ~ chori => choir director]; - episema_N_N = mkN "episema" "episematis " neuter ; -- [FDXFE] :: tail on note in music to show prolongation; + episema_N_N = mkN "episema" "episematis" neuter ; -- [FDXFE] :: tail on note in music to show prolongation; epistola_F_N = mkN "epistola" ; -- [XXXCO] :: letter/dispatch/written communication; imperial rescript; epistle; preface; epistolaris_A = mkA "epistolaris" "epistolaris" "epistolare" ; -- [XXXEO] :: of/concerned with letter/letters; epistulary; epistolella_F_N = mkN "epistolella" ; -- [EEXEE] :: short epistle; @@ -18941,21 +18936,21 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat epitaphium_N_N = mkN "epitaphium" ; -- [XXXEC] :: funeral oration; epithalamium_N_N = mkN "epithalamium" ; -- [XXXEC] :: nuptial song; epitheca_F_N = mkN "epitheca" ; -- [XXXEC] :: addition; - epitheton_N_N = mkN "epitheton" "epitheti " neuter ; -- [XGXES] :: epithet; adjective; + epitheton_N_N = mkN "epitheton" "epitheti" neuter ; -- [XGXES] :: epithet; adjective; epitoma_F_N = mkN "epitoma" ; -- [XXXDX] :: epitome, abridgement; - epitome_F_N = mkN "epitome" "epitomes " feminine ; -- [XXXDX] :: epitome, abridgement; + epitome_F_N = mkN "epitome" "epitomes" feminine ; -- [XXXDX] :: epitome, abridgement; epitomo_V = mkV "epitomare" ; -- [DXXES] :: abridge, epitomize; epitonium_N_N = mkN "epitonium" ; -- [FXXEK] :: faucet; - epitrachelion_N_N = mkN "epitrachelion" "epitrachelii " neuter ; -- [EEXFE] :: stole; + epitrachelion_N_N = mkN "epitrachelion" "epitrachelii" neuter ; -- [EEXFE] :: stole; epitritos_A = mkA "epitritos" "epitritos" "epitriton" ; -- [XPXEO] :: four-thirds, having ratio 4:3; - epitritos_M_N = mkN "epitritos" "epitriti " masculine ; -- [XPXEO] :: epitrite, metrical foot with one short and three longs; + epitritos_M_N = mkN "epitritos" "epitriti" masculine ; -- [XPXEO] :: epitrite, metrical foot with one short and three longs; epitritus_A = mkA "epitritus" "epitrita" "epitritum" ; -- [FPXEZ] :: four-thirds, having ratio 4:3; epitropous_M_N = mkN "epitropous" ; -- [XSXES] :: factor; steward; epizootia_F_N = mkN "epizootia" ; -- [GXXEK] :: epizootic disease, one temporarily prevalent among animals; (cattle plague); epogdoos_A = mkA "epogdoos" "epogdoos" "epogdoon" ; -- [DDXES] :: nine-eighths; (music); whole and eighth; epogdous_A = mkA "epogdous" "epogdoa" "epogdoum" ; -- [DDXES] :: nine-eighths; (music); whole and eighth; - epops_M_N = mkN "epops" "epopis " masculine ; -- [XXXEC] :: hoopoe, bird of family Upupidae; - epos_N_N = mkN "epos" "- " neuter ; -- [XXXDX] :: epic poem (only in NOM and ACC S); + epops_M_N = mkN "epops" "epopis" masculine ; -- [XXXEC] :: hoopoe, bird of family Upupidae; + 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; eppheta_V = constV "eppheta" ; -- [EEQFW] :: be thou opened (Mark 7:34); (Aramaic); @@ -18963,98 +18958,98 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - eq_N = constN "eq." masculine ; -- [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); + 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; - equester_M_N = mkN "equester" "equestris " masculine ; -- [XXXDO] :: knight; one of equestrian order/class (in Rome > 67 BC w/400_000 sesterces); + equester_M_N = mkN "equester" "equestris" masculine ; -- [XXXDO] :: knight; one of equestrian order/class (in Rome > 67 BC w/400_000 sesterces); equestr_A = mkA "equestr" "equestris"; -- [XXXDO] :: equestrian, mounted on horse; of/belonging to/consisting of horseman/cavalry; - equestre_N_N = mkN "equestre" "equestris " neuter ; -- [XXXDO] :: seats (pl.) in theater reserved for members of equestrian order/class; + equestre_N_N = mkN "equestre" "equestris" neuter ; -- [XXXDO] :: seats (pl.) in theater reserved for members of equestrian order/class; equidem_Adv = mkAdv "equidem" ; -- [XXXBX] :: truly, indeed; for my part; - equile_N_N = mkN "equile" "equilis " neuter ; -- [XAXES] :: horse-stable; + equile_N_N = mkN "equile" "equilis" neuter ; -- [XAXES] :: horse-stable; equinus_A = mkA "equinus" "equina" "equinum" ; -- [XXXDX] :: concerning horses; equipollenter_Adv = mkAdv "equipollenter" ; -- [FXXEE] :: equivalently; - equiso_M_N = mkN "equiso" "equisonis " masculine ; -- [XXXDO] :: groom, stable-boy; person in charge of horses; - equitatio_F_N = mkN "equitatio" "equitationis " feminine ; -- [XXXEO] :: horsemanship, equitation, riding; - equitatus_M_N = mkN "equitatus" "equitatus " masculine ; -- [XXXEO] :: |horsemanship, equitation, riding; creature in heat (mare) (L+S); + equiso_M_N = mkN "equiso" "equisonis" masculine ; -- [XXXDO] :: groom, stable-boy; person in charge of horses; + equitatio_F_N = mkN "equitatio" "equitationis" feminine ; -- [XXXEO] :: horsemanship, equitation, riding; + equitatus_M_N = mkN "equitatus" "equitatus" masculine ; -- [XXXEO] :: |horsemanship, equitation, riding; creature in heat (mare) (L+S); equito_V = mkV "equitare" ; -- [XXXDX] :: ride (horseback); equivalenter_Adv = mkAdv "equivalenter" ; -- [FXXEE] :: equivalently; equuleus_M_N = mkN "equuleus" ; -- [XXXCO] :: little horse, colt; rack, instrument of torture; 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); + 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; + erectio_F_N = mkN "erectio" "erectionis" feminine ; -- [XXXEO] :: erection, lifting p; act of placing in upright position; permit to travel; 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); + ereptio_F_N = mkN "ereptio" "ereptionis" feminine ; -- [XXXDS] :: seizure; forcible taking; + 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; + 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; + 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; - ero_M_N = mkN "ero" "eronis " masculine ; -- [XXXFS] :: kind of basket made with plaited reeds; hamper; (aero); - erodio_F_N = mkN "erodio" "erodionis " feminine ; -- [EAXFW] :: heron; (pure Latin - ardea); hamper; (aero); - erogatio_F_N = mkN "erogatio" "erogationis " feminine ; -- [XXXDX] :: paying out, distribution; + ero_M_N = mkN "ero" "eronis" masculine ; -- [XXXFS] :: kind of basket made with plaited reeds; hamper; (aero); + erodio_F_N = mkN "erodio" "erodionis" feminine ; -- [EAXFW] :: heron; (pure Latin - ardea); hamper; (aero); + erogatio_F_N = mkN "erogatio" "erogationis" feminine ; -- [XXXDX] :: paying out, distribution; erogo_V = mkV "erogare" ; -- [XXXDX] :: pay out, expend; eroticus_A = mkA "eroticus" "erotica" "eroticum" ; -- [XXXEO] :: erotic; amatory, concerned with love; errabundus_A = mkA "errabundus" "errabunda" "errabundum" ; -- [XXXDX] :: wandering; erraticus_A = mkA "erraticus" "erratica" "erraticum" ; -- [XXXDX] :: roving, erratic; wild; erratum_N_N = mkN "erratum" ; -- [XXXCO] :: error, mistake (in thought/action); moral error, lapse; erraum_N_N = mkN "erraum" ; -- [XXXDX] :: error, mistake; lapse; - erro_M_N = mkN "erro" "erronis " masculine ; -- [XXXDX] :: truant; vagabond, wanderer; + erro_M_N = mkN "erro" "erronis" masculine ; -- [XXXDX] :: truant; vagabond, wanderer; erro_V = mkV "errare" ; -- [XXXBX] :: wander, go astray; make a mistake, err; vacillate; 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; + error_M_N = mkN "error" "erroris" masculine ; -- [XXXDX] :: wandering; error; winding, maze; uncertainty; deception; 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; + 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 "erugere" "erugo" nonExist "eructus ") ; -- [XXXEO] :: disgorge noisily (food/drink); + 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); + 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; + 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; + erutor_M_N = mkN "erutor" "erutoris" masculine ; -- [FXXEE] :: rescuer; ervilia_F_N = mkN "ervilia" ; -- [XAXES] :: kind of vetch; (Lathyrus sativus/cicera); bitter-vetch (L+S); kind of pulse; ervum_N_N = mkN "ervum" ; -- [XXXDO] :: kind of cultivated vetch; (Vicia/Ervum ervilia); its seeds; - erynge_F_N = mkN "erynge" "erynges " feminine ; -- [XAXNO] :: sea holly; genus of prickly plants; (Eryngium maritimum and allies); - eryngion_N_N = mkN "eryngion" "eryngii " neuter ; -- [XAXNO] :: sea holly; genus of prickly plants; (Eryngium maritimum and allies); + erynge_F_N = mkN "erynge" "erynges" feminine ; -- [XAXNO] :: sea holly; genus of prickly plants; (Eryngium maritimum and allies); + eryngion_N_N = mkN "eryngion" "eryngii" neuter ; -- [XAXNO] :: sea holly; genus of prickly plants; (Eryngium maritimum and allies); eryngium_N_N = mkN "eryngium" ; -- [XAXNO] :: sea holly; genus of prickly plants; (Eryngium maritimum and allies); - erysimon_N_N = mkN "erysimon" "erysimi " neuter ; -- [XAXNO] :: plant; (prob.) species of hedge-mustard; (also irio); a grain (L+S); + erysimon_N_N = mkN "erysimon" "erysimi" neuter ; -- [XAXNO] :: plant; (prob.) species of hedge-mustard; (also irio); a grain (L+S); erysimum_N_N = mkN "erysimum" ; -- [XAXNO] :: plant; (prob.) species of hedge-mustard; (also irio); a grain (L+S); erysisceptrum_N_N = mkN "erysisceptrum" ; -- [XXXES] :: low thorny scrub; 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; + 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); esculentus_A = mkA "esculentus" "esculenta" "esculentum" ; -- [XXXEC] :: edible, eatable, esculent; fit for food, fit to be eaten; - esecutio_F_N = mkN "esecutio" "esecutionis " feminine ; -- [XXXCS] :: performance, carrying out; enforcement (law), act to right wrong; discussion; + esecutio_F_N = mkN "esecutio" "esecutionis" feminine ; -- [XXXCS] :: performance, carrying out; enforcement (law), act to right wrong; discussion; esicia_F_N = mkN "esicia" ; -- [FAXFM] :: salmon; a fish; esotericismus_M_N = mkN "esotericismus" ; -- [FSXFE] :: theory of esotericism/esoterism; holding esoteric doctrines; esotericus_A = mkA "esotericus" "esoterica" "esotericum" ; -- [GXXEK] :: esoteric; designed for/appropriate to an inner circle of privileged disciples; @@ -19065,43 +19060,43 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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.); + essential_N_N = mkN "essential" "essentialis" neuter ; -- [ESXEM] :: essential qualities (pl.); essentialis_A = mkA "essentialis" "essentialis" "essentiale" ; -- [EXXCM] :: essential; essentialiter_Adv = mkAdv "essentialiter" ; -- [DXXES] :: essentially; - essentificatio_F_N = mkN "essentificatio" "essentificationis " feminine ; -- [EEXEM] :: realization, making real; + 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; + 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; essuriens_A = mkA "essuriens" "essurientis"; -- [XXXDO] :: hungry; ravenous, starving; - essuriens_F_N = mkN "essuriens" "essurientis " feminine ; -- [XXXEE] :: hungry person; - essuriens_M_N = mkN "essuriens" "essurientis " masculine ; -- [XXXEE] :: hungry person; + essuriens_F_N = mkN "essuriens" "essurientis" feminine ; -- [XXXEE] :: hungry person; + essuriens_M_N = mkN "essuriens" "essurientis" masculine ; -- [XXXEE] :: hungry person; essurienter_Adv = mkAdv "essurienter" ; -- [XXXFO] :: hungrily, ravenously; - estimatio_F_N = mkN "estimatio" "estimationis " feminine ; -- [FLXFM] :: valuation; + estimatio_F_N = mkN "estimatio" "estimationis" feminine ; -- [FLXFM] :: valuation; estimo_V = mkV "estimare" ; -- [FLXFM] :: value; estimate; estoverium_N_N = mkN "estoverium" ; -- [FLXFJ] :: estovers, necessities allowed (to tenant) by law (espec. of wood); estuans_A = mkA "estuans" "estuantis"; -- [FXXEM] :: passionate?; estuanter_Adv = mkAdv "estuanter" ; -- [FXXEM] :: passionately; esuriens_A = mkA "esuriens" "esurientis"; -- [XXXDO] :: hungry; ravenous, starving; - esuriens_F_N = mkN "esuriens" "esurientis " feminine ; -- [XXXEE] :: hungry person; - esuriens_M_N = mkN "esuriens" "esurientis " masculine ; -- [XXXEE] :: hungry person; + esuriens_F_N = mkN "esuriens" "esurientis" feminine ; -- [XXXEE] :: hungry person; + esuriens_M_N = mkN "esuriens" "esurientis" masculine ; -- [XXXEE] :: hungry person; 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; + 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 = 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; - etc_N = constN "etc." neuter ; -- [GXXBZ] :: etcetra, and so forth; abb. etc.; (in use in modern Latin texts if not before); + etas_F_N = mkN "etas" "etatis" feminine ; -- [EXXAO] :: lifetime, age, generation; period; stage, period of life, time, era; + 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; - ethice_F_N = mkN "ethice" "ethices " feminine ; -- [XXXEO] :: ethics; moral philosophy; science of right and wrong; + ethice_F_N = mkN "ethice" "ethices" feminine ; -- [XXXEO] :: ethics; moral philosophy; science of right and wrong; ethicum_N_N = mkN "ethicum" ; -- [FXXEF] :: ethics (pl.); moral philosophy; science of right and wrong; ethicus_A = mkA "ethicus" "ethica" "ethicum" ; -- [XXXEO] :: ethical, of/belonging to ethics/morals; of character; psychological; ethnicus_A = mkA "ethnicus" "ethnica" "ethnicum" ; -- [EEXES] :: heathen; pagan; @@ -19124,13 +19119,13 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat eu_Interj = ss "eu" ; -- [XXXDX] :: well done! bravo!; splendid! (sometimes ironic); eucharis_A = mkA "eucharis" "eucharis" "euchare" ; -- [EXXEP] :: gracious; eucharistia_F_N = mkN "eucharistia" ; -- [EEXDP] :: Eucharist/Communion; (elements of); any consecrated offering; thanksgiving; - eucharistial_N_N = mkN "eucharistial" "eucharistialis " neuter ; -- [EEXEE] :: vessel for preserving the Holy Eucharist; + eucharistial_N_N = mkN "eucharistial" "eucharistialis" neuter ; -- [EEXEE] :: vessel for preserving the Holy Eucharist; eucharistialus_A = mkA "eucharistialus" "eucharistiala" "eucharistialum" ; -- [EEXCE] :: Eucharistic, pertaining to Holy Eucharist; - eucharisticon_N_N = mkN "eucharisticon" "eucharistici " neuter ; -- [XXHFO] :: thanksgiving; Eucharist/Communion; + eucharisticon_N_N = mkN "eucharisticon" "eucharistici" neuter ; -- [XXHFO] :: thanksgiving; Eucharist/Communion; eucharisticus_A = mkA "eucharisticus" "eucharistica" "eucharisticum" ; -- [EEXCE] :: Eucharistic/pertaining to Holy Eucharist; [Doctor ~ => St. John of Chrystostom]; eucharistium_N_N = mkN "eucharistium" ; -- [EEXDP] :: consecrated elements (pl.) of the Eucharist/Communion; - euchelaion_N_N = mkN "euchelaion" "euchelaii " neuter ; -- [EEHFE] :: holy oil; sacrament of anointing in Greek rite; - euchologion_N_N = mkN "euchologion" "euchologii " neuter ; -- [FEHEE] :: euchologion, book of liturgies/prayers for administration of Orthodox sacraments + euchelaion_N_N = mkN "euchelaion" "euchelaii" neuter ; -- [EEHFE] :: holy oil; sacrament of anointing in Greek rite; + euchologion_N_N = mkN "euchologion" "euchologii" neuter ; -- [FEHEE] :: euchologion, book of liturgies/prayers for administration of Orthodox sacraments eugae_Interj = ss "eugae" ; -- [XXXDX] :: oh, good! fine! well done! (delight/pleasure/surprise, sometimes ironic); euge_Interj = ss "euge" ; -- [XXXDX] :: oh, good! fine! well done! (delight/pleasure/surprise, sometimes ironic); eugeneus_A = mkA "eugeneus" "eugenea" "eugeneum" ; -- [XXXES] :: well-born; noble; generous; @@ -19148,8 +19143,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat euresilogus_M_N = mkN "euresilogus" ; -- [FSXEP] :: sophist, sophistical person; euripus_M_N = mkN "euripus" ; -- [XXXDX] :: channel, canal; eurisilogus_M_N = mkN "eurisilogus" ; -- [FSXEP] :: sophist, sophistical person; - euro_M_N = mkN "euro" "euphonis " masculine ; -- [GXXEK] :: euro (currency); - euroaquilo_M_N = mkN "euroaquilo" "euroaquilonis " masculine ; -- [XSXIO] :: north-east wind; + euro_M_N = mkN "euro" "euphonis" masculine ; -- [GXXEK] :: euro (currency); + euroaquilo_M_N = mkN "euroaquilo" "euroaquilonis" masculine ; -- [XSXIO] :: north-east wind; eurocrata_M_N = mkN "eurocrata" ; -- [GXXEK] :: Eurocrat; euronotus_M_N = mkN "euronotus" ; -- [XSXEO] :: south-east wind; euronummus_M_N = mkN "euronummus" ; -- [GXXEK] :: Euro (currency); @@ -19158,9 +19153,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat eurus_M_N = mkN "eurus" ; -- [XXXDX] :: east (or south east) wind; the east; euthanasia_F_N = mkN "euthanasia" ; -- [GBXFE] :: euthanasia; eutyches_A = mkA "eutyches" "eutychetis"; -- [FXXFM] :: fortunate; - euus_M_N = mkN "euus" "euus " masculine ; -- [XXXDO] :: eating; taking of food; + 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; + 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; evalesco_V2 = mkV2 (mkV "evalescere" "evalesco" "evalui" nonExist ) ; -- [XXXDX] :: increase in strength; prevail, have sufficient strength (to); @@ -19170,70 +19165,70 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat evangelista_M_N = mkN "evangelista" ; -- [EEXES] :: preacher (of the Gospel); evangelist; evangelistarium_N_N = mkN "evangelistarium" ; -- [EEXFE] :: book of Gospels; evangelium_N_N = mkN "evangelium" ; -- [XEXES] :: Good news; Gospel; - evangelizatio_F_N = mkN "evangelizatio" "evangelizationis " feminine ; -- [EEXEE] :: evangelization, preaching the Gospel - evangelizator_M_N = mkN "evangelizator" "evangelizatoris " masculine ; -- [EEXES] :: preacher (of the Gospel); evangelist; + evangelizatio_F_N = mkN "evangelizatio" "evangelizationis" feminine ; -- [EEXEE] :: evangelization, preaching the Gospel + 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; + 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; + 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; + 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; + 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; + 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; evidenter_Adv =mkAdv "evidenter" "evidentius" "evidentissime" ; -- [XXXCO] :: clearly, obviously/manifestly/evidently; vividly, giving realistic impression; evidentia_F_N = mkN "evidentia" ; -- [XXXCO] :: evidence; obviousness; vividness; quality of being manifest/evident; - evigilatio_F_N = mkN "evigilatio" "evigilationis " feminine ; -- [XXXEE] :: awakening; + 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; + 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; evitabilis_A = mkA "evitabilis" "evitabilis" "evitabile" ; -- [XXXDX] :: avoidable; evitandus_A = mkA "evitandus" "evitanda" "evitandum" ; -- [XXXEE] :: that which must be avoided; evito_V = mkV "evitare" ; -- [XXXDX] :: shun, avoid; - evocatio_F_N = mkN "evocatio" "evocationis " feminine ; -- [XXXEO] :: summoning/evocation; calling/ordering out the troops; calling up dead spirits; - evocator_M_N = mkN "evocator" "evocatoris " masculine ; -- [XXXDX] :: one who orders out troops; + evocatio_F_N = mkN "evocatio" "evocationis" feminine ; -- [XXXEO] :: summoning/evocation; calling/ordering out the troops; calling up dead spirits; + evocator_M_N = mkN "evocator" "evocatoris" masculine ; -- [XXXDX] :: one who orders out troops; evocatus_M_N = mkN "evocatus" ; -- [XXXDX] :: veteran; volunteer; veterans again called to service (pl.); evoco_V = mkV "evocare" ; -- [XXXDX] :: call forth; lure/entice out; summon, evoke; 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); + evolutio_F_N = mkN "evolutio" "evolutionis" feminine ; -- [XXXEO] :: development, unfolding; action of reading through; evolution (Ecc); evolutivus_A = mkA "evolutivus" "evolutiva" "evolutivum" ; -- [GXXEE] :: evolutionary; - 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; + 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; + 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; - exacerbatio_F_N = mkN "exacerbatio" "exacerbationis " feminine ; -- [EXXES] :: provocation; exasperation; + 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; + 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; + 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; + 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; exadversus_Adv = mkAdv "exadversus" ; -- [XXXEC] :: opposite; @@ -19242,10 +19237,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat exaestuo_V = mkV "exaestuare" ; -- [XXXDX] :: boil up; seethe, rage; exaggero_V = mkV "exaggerare" ; -- [XXXDX] :: heap up, accumulate; magnify; exagito_V = mkV "exagitare" ; -- [XXXDX] :: drive out; stir up, disturb continually, harass; attack, scold, discuss; - exaltatio_F_N = mkN "exaltatio" "exaltationis " feminine ; -- [DEXDS] :: exaltation, elevation; pride, haughtiness; + exaltatio_F_N = mkN "exaltatio" "exaltationis" feminine ; -- [DEXDS] :: exaltation, elevation; pride, haughtiness; exalto_V2 = mkV2 (mkV "exaltare") ; -- [DEXCS] :: exalt, elevate, raise; praise; deepen; - examen_N_N = mkN "examen" "examinis " neuter ; -- [XXXCO] :: |swarm (bees); crowd; agony; - examinator_M_N = mkN "examinator" "examinatoris " masculine ; -- [XXXEE] :: examiner; arbitrator; + examen_N_N = mkN "examen" "examinis" neuter ; -- [XXXCO] :: |swarm (bees); crowd; agony; + examinator_M_N = mkN "examinator" "examinatoris" masculine ; -- [XXXEE] :: examiner; arbitrator; examinatus_A = mkA "examinatus" "examinata" "examinatum" ; -- [XXXEE] :: careful, scrupulous; exact; examino_V = mkV "examinare" ; -- [XXXDX] :: weigh, examine, consider; examussim_Adv = mkAdv "examussim" ; -- [XXXFS] :: according to rule, exactly, quite; @@ -19256,26 +19251,26 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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); - 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; + 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; - exasperator_M_N = mkN "exasperator" "exasperatoris " masculine ; -- [EXXEE] :: provoker, one who provokes/irritates; - exasperatrix_F_N = mkN "exasperatrix" "exasperatricis " feminine ; -- [EXXEE] :: provoker (female), she who provokes/irritates; + exasperatio_F_N = mkN "exasperatio" "exasperationis" feminine ; -- [XXXEO] :: irritation; exasperation (Ecc); bitterness; + exasperator_M_N = mkN "exasperator" "exasperatoris" masculine ; -- [EXXEE] :: provoker, one who provokes/irritates; + exasperatrix_F_N = mkN "exasperatrix" "exasperatricis" feminine ; -- [EXXEE] :: provoker (female), she who provokes/irritates; exaspero_V = mkV "exasperare" ; -- [XXXDX] :: roughen; irritate; exatio_V = mkV "exatiare" ; -- [XXXDX] :: satisfy, satiate; glut; 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; + 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; excaeco_V2 = mkV2 (mkV "excaecare") ; -- [XXXCO] :: blind (completely), confuse/hide/obscure; dull/dim; block channel; de-eye plant; excalceatus_A = mkA "excalceatus" "excalceata" "excalceatum" ; -- [XXXEO] :: barefoot; unshod; excalceo_V2 = mkV2 (mkV "excalceare") ; -- [XXXEO] :: remove the shoes from; @@ -19285,155 +19280,154 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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; + 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; - 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; + excelsitas_F_N = mkN "excelsitas" "excelsitatis" feminine ; -- [XXXEO] :: loftiness; height; preeminence; sublimity; excelsum_N_N = mkN "excelsum" ; -- [EEXCP] :: |altar, temple (pl.); citadel; [in ~is/in ~o => in the highest/on high]; excelsus_A = mkA "excelsus" "excelsa" "excelsum" ; -- [EDXDP] :: high pitched (sound/note); - excentricitas_F_N = mkN "excentricitas" "excentricitatis " feminine ; -- [GSXEK] :: eccentricity (geometry); + excentricitas_F_N = mkN "excentricitas" "excentricitatis" feminine ; -- [GSXEK] :: eccentricity (geometry); excentricus_M_N = mkN "excentricus" ; -- [FSXFM] :: eccentric orbit; - exceptio_F_N = mkN "exceptio" "exceptionis " feminine ; -- [XXXDX] :: exception, qualification; + exceptio_F_N = mkN "exceptio" "exceptionis" feminine ; -- [XXXDX] :: exception, qualification; exceptionalis_A = mkA "exceptionalis" "exceptionalis" "exceptionale" ; -- [EXXEE] :: exceptional; excepto_V = mkV "exceptare" ; -- [XXXDX] :: take out, take up; inhale, take (to oneself); 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; + 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; + 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; - excido_V2 = mkV2 (mkV "excidere" "excido" "excidi" "excisus ") ; -- [XXXDX] :: cut out/off/down; raze, destroy; + 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; + 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; + 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; - excitor_M_N = mkN "excitor" "excitoris " masculine ; -- [FEXEE] :: awakener; [Excitor mentium => Christ, awakener of souls]; - exclamatio_F_N = mkN "exclamatio" "exclamationis " feminine ; -- [XXXDX] :: exclamation, saying; + excitor_M_N = mkN "excitor" "excitoris" masculine ; -- [FEXEE] :: awakener; [Excitor mentium => Christ, awakener of souls]; + exclamatio_F_N = mkN "exclamatio" "exclamationis" feminine ; -- [XXXDX] :: exclamation, saying; 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); + 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; + 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; + 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); + 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); + 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; + 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; + 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; + 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); + 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); + 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; + 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; excusabilis_A = mkA "excusabilis" "excusabilis" "excusabile" ; -- [XXXDX] :: excusable; excusamentum_N_N = mkN "excusamentum" ; -- [DXXFS] :: excuse; - excusatio_F_N = mkN "excusatio" "excusationis " feminine ; -- [XXXDX] :: excuse; + excusatio_F_N = mkN "excusatio" "excusationis" feminine ; -- [XXXDX] :: excuse; excuso_V2 = mkV2 (mkV "excusare") ; -- [XXXAO] :: excuse/justify/explain; make excuse for/plead as excuse; allege; absolve/exempt; - excussio_F_N = mkN "excussio" "excussionis " feminine ; -- [EXXEE] :: interrogation, examination; act of shaking (down); + 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; + 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; + execratio_F_N = mkN "execratio" "execrationis" feminine ; -- [XXXDX] :: imprecation, curse; 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; + 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; - 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; + 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_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); + 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; exemplabilis_A = mkA "exemplabilis" "exemplabilis" "exemplabile" ; -- [FXXFM] :: pattern-formed; - exemplar_N_N = mkN "exemplar" "exemplaris " neuter ; -- [XXXBO] :: model, pattern, example, original, ideal; copy/reproduction; typical instance; - exemplare_N_N = mkN "exemplare" "exemplaris " neuter ; -- [XXXFO] :: model, pattern, example, original, ideal; copy/reproduction; typical instance; + exemplar_N_N = mkN "exemplar" "exemplaris" neuter ; -- [XXXBO] :: model, pattern, example, original, ideal; copy/reproduction; typical instance; + exemplare_N_N = mkN "exemplare" "exemplaris" neuter ; -- [XXXFO] :: model, pattern, example, original, ideal; copy/reproduction; typical instance; exemplaris_A = mkA "exemplaris" "exemplaris" "exemplare" ; -- [XXXEO] :: exemplary, serving as example/pattern; - exemplaris_M_N = mkN "exemplaris" "exemplaris " masculine ; -- [XXXEO] :: copy; transcript; - exemplaritas_F_N = mkN "exemplaritas" "exemplaritatis " feminine ; -- [FSXEM] :: model, exemplar; archetypical quality; - exemplator_M_N = mkN "exemplator" "exemplatoris " masculine ; -- [FXXEM] :: copyist; + exemplaris_M_N = mkN "exemplaris" "exemplaris" masculine ; -- [XXXEO] :: copy; transcript; + exemplaritas_F_N = mkN "exemplaritas" "exemplaritatis" feminine ; -- [FSXEM] :: model, exemplar; archetypical quality; + exemplator_M_N = mkN "exemplator" "exemplatoris" masculine ; -- [FXXEM] :: copyist; exemplo_V2 = mkV2 (mkV "exemplare") ; -- [FSXDF] :: adduce/serve as example/model/pattern; form after a pattern; exemplum_N_N = mkN "exemplum" ; -- [XXXAO] :: |pattern, model; parallel, analogy; archetype; copy/reproduction, transcription; - exempoator_M_N = mkN "exempoator" "exempoatoris " masculine ; -- [FXXEN] :: model, example; - exemptio_F_N = mkN "exemptio" "exemptionis " feminine ; -- [XLXEO] :: removal, taking out; preventing person's court appearance; exemption (Ecc); + exempoator_M_N = mkN "exempoator" "exempoatoris" masculine ; -- [FXXEN] :: model, example; + exemptio_F_N = mkN "exemptio" "exemptionis" feminine ; -- [XLXEO] :: removal, taking out; preventing person's court appearance; exemption (Ecc); exemptus_A = mkA "exemptus" "exempta" "exemptum" ; -- [XXXEE] :: exempt; - exemptus_M_N = mkN "exemptus" "exemptus " masculine ; -- [XXXFO] :: removal, action of removing/taking out; + exemptus_M_N = mkN "exemptus" "exemptus" masculine ; -- [XXXFO] :: removal, action of removing/taking out; exenium_Adv = mkAdv "exenium" ; -- [FXXFY] :: by mistake; exentero_V = mkV "exenterare" ; -- [XXXDX] :: disembowel; exeo_V = mkV "exire" ; -- [XXXAO] :: |discharge (fluid); rise (river); become visible; issue/emerge/escape; sprout; exequia_F_N = mkN "exequia" ; -- [XEXCO] :: funeral procession/rites/services (pl.), obsequies; [~ ire => attend funeral]; - exequiale_N_N = mkN "exequiale" "exequialis " neuter ; -- [XXXEO] :: funeral rites (pl.); + 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; + 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; + exercitatio_F_N = mkN "exercitatio" "exercitationis" feminine ; -- [XXXDX] :: exercise, training, practice; discipline; 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); + exercitor_M_N = mkN "exercitor" "exercitoris" masculine ; -- [XXXEO] :: trainer; exerciser; sports trainer (Cal); exercitorius_A = mkA "exercitorius" "exercitoria" "exercitorium" ; -- [XXXEO] :: concerning operator of business; 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); + 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; + 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; + 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; + exheredatio_F_N = mkN "exheredatio" "exheredationis" feminine ; -- [XXXEO] :: disinheritance; act of disinheriting; exheredito_V = mkV "exhereditare" ; -- [ELXFS] :: disinherit; exheredo_V2 = mkV2 (mkV "exheredare") ; -- [XLXEC] :: disinherit; exheres_A = mkA "exheres" "exheredis"; -- [XLXEC] :: disinherited; exhibeo_V = mkV "exhibere" ; -- [XXXBX] :: present; furnish; exhibit; produce; - exhibitio_F_N = mkN "exhibitio" "exhibitionis " feminine ; -- [FXXEE] :: display, exhibition; example; + exhibitio_F_N = mkN "exhibitio" "exhibitionis" feminine ; -- [FXXEE] :: display, exhibition; example; exhibitorius_A = mkA "exhibitorius" "exhibitoria" "exhibitorium" ; -- [XLXEO] :: exibitory, of/connected with production in curt; of handing over/giving up; exhilaro_V2 = mkV2 (mkV "exhilarare") ; -- [XXXCO] :: gladden, cheer; brighten, spruce up, enhance appearance; - exhonoratio_F_N = mkN "exhonoratio" "exhonorationis " feminine ; -- [FXXEE] :: shame; + 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; 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; + 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; exhortor_V = mkV "exhortari" ; -- [XXXDX] :: exhort, encourage, incite; @@ -19441,58 +19435,58 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; 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); + 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); + 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; + 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); + 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; existentialis_A = mkA "existentialis" "existentialis" "existentiale" ; -- [GXXEK] :: existential; existentialismus_M_N = mkN "existentialismus" ; -- [FEXFE] :: existentialism (doctrine of); - 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; + 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; + 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; exitabiliter_Adv = mkAdv "exitabiliter" ; -- [FXXFE] :: ruinously; perniciously; exitiabilis_A = mkA "exitiabilis" "exitiabilis" "exitiabile" ; -- [XXXDX] :: destructive, deadly; exitialis_A = mkA "exitialis" "exitialis" "exitiale" ; -- [XXXDX] :: destructive, deadly; exitiosus_A = mkA "exitiosus" "exitiosa" "exitiosum" ; -- [XXXDX] :: destructive, pernicious, deadly; exitium_N_N = mkN "exitium" ; -- [XXXBX] :: destruction, ruin; death; mischief; - exitus_M_N = mkN "exitus" "exitus " masculine ; -- [XXXBX] :: exit, departure; end, solution; death; outlet, mouth (of river); + 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; + 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; + 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; exorabilis_A = mkA "exorabilis" "exorabilis" "exorabile" ; -- [XXXDX] :: capable of being moved by entreaty; - exoratio_F_N = mkN "exoratio" "exorationis " feminine ; -- [EEXDE] :: prayer; petition; mercy; + exoratio_F_N = mkN "exoratio" "exorationis" feminine ; -- [EEXDE] :: prayer; petition; mercy; exorbito_V = mkV "exorbitare" ; -- [GXXEK] :: derail; exorcismus_M_N = mkN "exorcismus" ; -- [XEXES] :: exorcism; exorcista_M_N = mkN "exorcista" ; -- [EEXCV] :: exorcist; cleric of minor orders (second level from top/deacon); - exorcistatus_M_N = mkN "exorcistatus" "exorcistatus " masculine ; -- [FEXFE] :: exorcist, third of four lesser orders of Catholic Church; (no longer exists); + 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; + 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); + 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; exornatus_A = mkA "exornatus" ; -- [XXXFO] :: ornamented; embellished; exorno_V = mkV "exornare" ; -- [XXXDX] :: furnish with, adorn, embellish; @@ -19509,215 +19503,215 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; expavesco_V2 = mkV2 (mkV "expavescere" "expavesco" "expavi" nonExist ) ; -- [XXXDX] :: become frightened; - expectatio_F_N = mkN "expectatio" "expectationis " feminine ; -- [XXXDX] :: expectation; suspense; + 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; + 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; 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; + 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; + 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; + 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; + 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; + 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; + 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; + 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; + 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; expio_V = mkV "expiare" ; -- [XXXDX] :: expiate, atone for; avert by expiatory rites; expiro_V = mkV "expirare" ; -- [XXXDX] :: breathe out; exhale; expire; die; cease; expiscor_V = mkV "expiscari" ; -- [XXXEO] :: angle/fish for (information); search/fish/find out; inquire; (slang?); - explanatio_F_N = mkN "explanatio" "explanationis " feminine ; -- [XXXDO] :: exposition, setting out/enunciating clearly in words; explanation (Ecc); + 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; + 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); + expletio_F_N = mkN "expletio" "expletionis" feminine ; -- [XXXFO] :: fulfillment; process of perfecting; completion; satisfaction; obedience (to); expletium_N_N = mkN "expletium" ; -- [FLXFJ] :: issue; expletivus_A = mkA "expletivus" "expletiva" "expletivum" ; -- [EXXFE] :: expletive, serving to fill out, introduced to occupy space or make up number; - explicatio_F_N = mkN "explicatio" "explicationis " feminine ; -- [XXXCO] :: |planning (buildings, etc.), laying out; uncoiling; method/style of exposition; + 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); 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; + 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; + explorator_M_N = mkN "explorator" "exploratoris" masculine ; -- [XXXCO] :: investigator, one who searches out; scout, spy; exploro_V = mkV "explorare" ; -- [XXXBX] :: search out, explore; test, try out; reconnoiter, investigate; - explosio_F_N = mkN "explosio" "explosionis " feminine ; -- [GWXEK] :: explosion; + 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.); + 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); + 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; + exportator_M_N = mkN "exportator" "exportatoris" masculine ; -- [GXXEK] :: exporter; exporto_V = mkV "exportare" ; -- [XXXDX] :: export, carry out; 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; + 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) + expressio_F_N = mkN "expressio" "expressionis" feminine ; -- [XXXEO] :: expulsion/forcing out; elevating section (watermain); molding; expression (Ecc) 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; + 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; + 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); + 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; - expugnator_M_N = mkN "expugnator" "expugnatoris " masculine ; -- [XXXDX] :: conqueror; + expugnatio_F_N = mkN "expugnatio" "expugnationis" feminine ; -- [XXXDX] :: storming, taking by storm; assault; + expugnator_M_N = mkN "expugnator" "expugnatoris" masculine ; -- [XXXDX] :: conqueror; expugnax_A = mkA "expugnax" "expugnacis"; -- [XXXDX] :: effectual in overcoming resistance; 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; + 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; + 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; exsatio_V = mkV "exsatiare" ; -- [XXXDX] :: satisfy, satiate; glut; exsaturabilis_A = mkA "exsaturabilis" "exsaturabilis" "exsaturabile" ; -- [XXXDX] :: capable of being satiated; 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); + 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; + 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; + exsecratio_F_N = mkN "exsecratio" "exsecrationis" feminine ; -- [XXXDX] :: imprecation, curse; 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; + 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; + 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.); + 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); + 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; + exsistimatio_F_N = mkN "exsistimatio" "exsistimationis" feminine ; -- [XXXBO] :: opinion (good); reputation/name; esteem; judgment/view/estimation; credit; 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; + 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; + 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; + 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; 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; + 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; + exstasis_F_N = mkN "exstasis" "exstasis" feminine ; -- [FEXDF] :: rapture; ecstasy; trance; 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; + 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; + 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; + 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; + 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; exsufflo_V2 = mkV2 (mkV "exsufflare") ; -- [DXXCS] :: blow at/upon; blow away; exsuflatora_M_N = mkN "exsuflatora" ; -- [DXXFS] :: one who blows at/upon; mocker; despiser; (exsufflator with 1 f - Whitaker); exsuflo_V2 = mkV2 (mkV "exsuflare") ; -- [EXXCS] :: blow at/upon; blow away; (exsufflo with 1 f - Whitaker); - exsul_F_N = mkN "exsul" "exsulis " feminine ; -- [XXXBX] :: exile (M/F), banished person; wanderer; - exsul_M_N = mkN "exsul" "exsulis " masculine ; -- [XXXBX] :: exile (M/F), banished person; wanderer; + exsul_F_N = mkN "exsul" "exsulis" feminine ; -- [XXXBX] :: exile (M/F), banished person; wanderer; + exsul_M_N = mkN "exsul" "exsulis" masculine ; -- [XXXBX] :: exile (M/F), banished person; wanderer; exsulo_V = mkV "exsulare" ; -- [XXXDX] :: be exile, live in exile; be banished; be a stranger; exsultabilis_A = mkA "exsultabilis" "exsultabilis" "exsultabile" ; -- [XXXEE] :: joyful; - exsultatio_F_N = mkN "exsultatio" "exsultationis " feminine ; -- [XXXDX] :: exultation, joy; + exsultatio_F_N = mkN "exsultatio" "exsultationis" feminine ; -- [XXXDX] :: exultation, joy; exsultim_Adv = mkAdv "exsultim" ; -- [XXXEC] :: friskily; exsulto_V = mkV "exsultare" ; -- [XXXBX] :: rejoice; boast; exalt; jump about, let oneself go; 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; + 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; + extasis_F_N = mkN "extasis" "extasis" feminine ; -- [FEXDF] :: rapture; ecstasy; trance; 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; + 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); + 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); + 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; 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); + 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; + exterminator_M_N = mkN "exterminator" "exterminatoris" masculine ; -- [XXXEE] :: destroyer; exterminator; exterminium_N_N = mkN "exterminium" ; -- [EXXEE] :: extermination, utter destruction; extermino_V = mkV "exterminare" ; -- [XXXDX] :: banish, expel; dismiss; externo_V = mkV "externare" ; -- [XXXDX] :: terrify greatly, frighten; madden; @@ -19729,10 +19723,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; @@ -19741,13 +19735,13 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; @@ -19755,77 +19749,77 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat extraneus_A = mkA "extraneus" "extranea" "extraneum" ; -- [XXXDX] :: external, extraneous, foreign; not belonging to one's family or household; extraneus_M_N = mkN "extraneus" ; -- [XXXEE] :: foreigner (male); extraordinarius_A = mkA "extraordinarius" "extraordinaria" "extraordinarium" ; -- [XXXDX] :: supplementary; special; immoderate; - extrapolatio_F_N = mkN "extrapolatio" "extrapolationis " feminine ; -- [GXXEK] :: extrapolation; + extrapolatio_F_N = mkN "extrapolatio" "extrapolationis" feminine ; -- [GXXEK] :: extrapolation; extrarius_A = mkA "extrarius" "extraria" "extrarium" ; -- [XXXCO] :: external; strange, not of one's household; not directly connected; extraneous; extrasacramentalis_A = mkA "extrasacramentalis" "extrasacramentalis" "extrasacramentale" ; -- [FEXFE] :: extrasacramental; extremismus_M_N = mkN "extremismus" ; -- [GXXEK] :: extremism; extremista_M_N = mkN "extremista" ; -- [GXXEK] :: extremist; - extremitas_F_N = mkN "extremitas" "extremitatis " feminine ; -- [XXXCO] :: border/outline/perimeter; end/extremity; ending/suffix; extreme condition/case; + extremitas_F_N = mkN "extremitas" "extremitatis" feminine ; -- [XXXCO] :: border/outline/perimeter; end/extremity; ending/suffix; extreme condition/case; extremum_N_N = mkN "extremum" ; -- [XXXDX] :: limit, outside; end; extremus_M_N = mkN "extremus" ; -- [XXXAX] :: rear (pl.); extrico_V = mkV "extricare" ; -- [XXXDX] :: disentangle, extricate, free; extrinsecus_A = mkA "extrinsecus" "extrinseca" "extrinsecum" ; -- [XXXCE] :: outer; outside, external; extrinsic; unessential; extraneous; 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; + 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; + 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; - exul_F_N = mkN "exul" "exulis " feminine ; -- [XXXDX] :: exile (M/F), banished person; wanderer; - exul_M_N = mkN "exul" "exulis " masculine ; -- [XXXDX] :: exile (M/F), banished person; wanderer; - exulceratio_F_N = mkN "exulceratio" "exulcerationis " feminine ; -- [XBXDO] :: ulceration, condition of being raw/unhealed; irritation, that which exasperates; + exul_F_N = mkN "exul" "exulis" feminine ; -- [XXXDX] :: exile (M/F), banished person; wanderer; + exul_M_N = mkN "exul" "exulis" masculine ; -- [XXXDX] :: exile (M/F), banished person; wanderer; + exulceratio_F_N = mkN "exulceratio" "exulcerationis" feminine ; -- [XBXDO] :: ulceration, condition of being raw/unhealed; irritation, that which exasperates; exulo_V = mkV "exulare" ; -- [XXXDX] :: be exile, live in exile; be banished; be a stranger; - exultatio_F_N = mkN "exultatio" "exultationis " feminine ; -- [XXXDX] :: exultation, joy; + exultatio_F_N = mkN "exultatio" "exultationis" feminine ; -- [XXXDX] :: exultation, joy; 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; + 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; + 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; - 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.; + 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; + 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); - fabricator_M_N = mkN "fabricator" "fabricatoris " masculine ; -- [XXXDX] :: builder, maker, fashioner; - fabricensis_M_N = mkN "fabricensis" "fabricensis " masculine ; -- [EXXES] :: armorer; + fabricatio_F_N = mkN "fabricatio" "fabricationis" feminine ; -- [XXXEE] :: structure; something made; act of making; factory-mark (Cal); + fabricator_M_N = mkN "fabricator" "fabricatoris" masculine ; -- [XXXDX] :: builder, maker, fashioner; + fabricensis_M_N = mkN "fabricensis" "fabricensis" masculine ; -- [EXXES] :: armorer; fabrico_V2 = mkV2 (mkV "fabricare") ; -- [XXXBO] :: build/construct/fashion/forge/shape; train; get ready (meal); invent/devise; fabricor_V = mkV "fabricari" ; -- [XXXCO] :: build/construct/fashion/forge/shape; train; get ready (meal); invent/devise; - fabrile_N_N = mkN "fabrile" "fabrilis " neuter ; -- [XXXEE] :: carpenter's tools (pl.); work done by carpenter; + fabrile_N_N = mkN "fabrile" "fabrilis" neuter ; -- [XXXEE] :: carpenter's tools (pl.); work done by carpenter; fabrilis_A = mkA "fabrilis" "fabrilis" "fabrile" ; -- [XXXDX] :: of/belonging to a workman; of a metal-worker/carpenter/builder; fabriliter_Adv = mkAdv "fabriliter" ; -- [XXXEE] :: skillfully; in workmanlike manner; fabula_F_N = mkN "fabula" ; -- [XXXAX] :: story, tale, fable; play, drama; [fabulae! => rubbish!, nonsense!]; - fabulatio_F_N = mkN "fabulatio" "fabulationis " feminine ; -- [XXXEE] :: fable; idle talk; lie; gossip; - fabulator_M_N = mkN "fabulator" "fabulatoris " masculine ; -- [XXXDX] :: storyteller, story-teller; + fabulatio_F_N = mkN "fabulatio" "fabulationis" feminine ; -- [XXXEE] :: fable; idle talk; lie; gossip; + fabulator_M_N = mkN "fabulator" "fabulatoris" masculine ; -- [XXXDX] :: storyteller, story-teller; fabulo_V = mkV "fabulare" ; -- [FXXEE] :: talk (familiarly), chat, converse; invent a story, make up a fable; 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); + 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; + 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; + 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; 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; + 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; facinarose_Adv = mkAdv "facinarose" ; -- [XXXFS] :: viciously; scandalously; @@ -19833,51 +19827,52 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat facinerosus_A = mkA "facinerosus" "facinerosa" "facinerosum" ; -- [XXXES] :: wicked, criminal; villainous; vicious; (facinosus); 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; - facio_V2 = mkV2 (mkV "facere" "facio" "feci" "factus ") ; -- [XXXAO] :: |||compose/write; classify; provide; do/perform; commit crime; suppose/imagine; + 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; + factio_F_N = mkN "factio" "factionis" feminine ; -- [XXXDX] :: party, faction; partisanship; factiosus_A = mkA "factiosus" "factiosa" "factiosum" ; -- [XXXDX] :: factious, seditious, turbulent; - factispecies_F_N = mkN "factispecies" "factispeciei " feminine ; -- [ELXEE] :: specific details; facts of case; - factitator_M_N = mkN "factitator" "factitatoris " masculine ; -- [EXXEE] :: maker; doer; perpetrator; + factispecies_F_N = mkN "factispecies" "factispeciei" feminine ; -- [ELXEE] :: specific details; facts of case; + factitator_M_N = mkN "factitator" "factitatoris" masculine ; -- [EXXEE] :: maker; doer; perpetrator; factitius_A = mkA "factitius" "factitia" "factitium" ; -- [FXXEE] :: artificial; factito_V = mkV "factitare" ; -- [XXXDX] :: do frequently, practice; - factor_M_N = mkN "factor" "factoris " masculine ; -- [XXXCO] :: maker; perpetrator (of a crime); player (in a ballgame); + factor_M_N = mkN "factor" "factoris" masculine ; -- [XXXCO] :: maker; perpetrator (of a crime); player (in a ballgame); factum_N_N = mkN "factum" ; -- [XXXDX] :: fact, deed, act; achievement; factura_F_N = mkN "factura" ; -- [XXXEE] :: creation; work; deed; performance; handiwork; facula_F_N = mkN "facula" ; -- [XXXEC] :: little torch; - facultas_F_N = mkN "facultas" "facultatis " feminine ; -- [XXXBX] :: means; ability, skill; opportunity, chance; resources (pl.), supplies; + facultas_F_N = mkN "facultas" "facultatis" feminine ; -- [XXXBX] :: means; ability, skill; opportunity, chance; resources (pl.), supplies; facultativus_A = mkA "facultativus" "facultativa" "facultativum" ; -- [EXXEE] :: optional; facunde_Adv =mkAdv "facunde" "facundius" "facundissime" ; -- [XXXDX] :: eloquently; fluently; facundia_F_N = mkN "facundia" ; -- [XXXDX] :: eloquence; - facunditas_F_N = mkN "facunditas" "facunditatis " feminine ; -- [FBXEM] :: fertility; G:readiness of speech; (=f(a)(e)cunditas); + facunditas_F_N = mkN "facunditas" "facunditatis" feminine ; -- [FBXEM] :: fertility; G:readiness of speech; (=f(a)(e)cunditas); facundus_A = mkA "facundus" "facunda" "facundum" ; -- [XXXBX] :: eloquent; fluent; able to express eloquently/fluently (speech/written); faecatus_A = mkA "faecatus" "faecata" "faecatum" ; -- [XXXES] :: made-from-dregs; faecula_F_N = mkN "faecula" ; -- [XXXDX] :: lees/dregs of wine (used as a condiment or medicine); faeculentia_F_N = mkN "faeculentia" ; -- [EXXES] :: dregs; filth; faeculentus_A = mkA "faeculentus" "faeculenta" "faeculentum" ; -- [XXXES] :: full of dregs/sediment; worthless; thick; impure, filthy; faedus_M_N = mkN "faedus" ; -- [BAXEO] :: kid, young goat; two stars in constellation Auriga (Charioteer), "The Kid"; - faeles_F_N = mkN "faeles" "faelis " feminine ; -- [XAXDO] :: cat; marten/ferret/polecat/wild cat; mouser; inveigler, seducer, tom-cat; thief; + faeles_F_N = mkN "faeles" "faelis" feminine ; -- [XAXDO] :: cat; marten/ferret/polecat/wild cat; mouser; inveigler, seducer, tom-cat; thief; faenebris_A = mkA "faenebris" "faenebris" "faenebre" ; -- [XXXDX] :: pertaining to usury; lent at interest; - faeneratio_F_N = mkN "faeneratio" "faenerationis " feminine ; -- [XXXDX] :: usury, money-lending; - faenerator_M_N = mkN "faenerator" "faeneratoris " masculine ; -- [XXXDX] :: usurer, money-lender; + faeneratio_F_N = mkN "faeneratio" "faenerationis" feminine ; -- [XXXDX] :: usury, money-lending; + faenerator_M_N = mkN "faenerator" "faeneratoris" masculine ; -- [XXXDX] :: usurer, money-lender; faenero_V = mkV "faenerare" ; -- [XXXCO] :: lend money at interest; make interest/profit; invest/finance/supply; borrow; faeneror_V = mkV "faenerari" ; -- [XXXDO] :: lend money at interest; make interest/profit; invest/finance/supply; borrow; faeneus_A = mkA "faeneus" "faenea" "faeneum" ; -- [XAXEC] :: of hay; [w/homines => men of straw]; faeniculum_N_N = mkN "faeniculum" ; -- [XAXES] :: fennel; - faenile_N_N = mkN "faenile" "faenilis " neuter ; -- [XXXDX] :: hayloft (pl.), place for storing hay; barn; + faenile_N_N = mkN "faenile" "faenilis" neuter ; -- [XXXDX] :: hayloft (pl.), place for storing hay; barn; faeniseca_M_N = mkN "faeniseca" ; -- [XAXEC] :: mower; a country-man; faenisecium_N_N = mkN "faenisecium" ; -- [XAXDO] :: mowing, cutting of hay; mown grass, hay; faenisicia_F_N = mkN "faenisicia" ; -- [XAXEO] :: mowing, cutting of hay; mown grass, hay; faenisicium_N_N = mkN "faenisicium" ; -- [XAXDO] :: mowing, cutting of hay; mown grass, hay; faenum_N_N = mkN "faenum" ; -- [XXXCO] :: hay; [~ Graecum => fenugreek]; - faenus_N_N = mkN "faenus" "faenoris " neuter ; -- [XXXDX] :: interest (on capital), usury; profit, gain; advantage; + faenus_N_N = mkN "faenus" "faenoris" neuter ; -- [XXXDX] :: interest (on capital), usury; profit, gain; advantage; faeteo_V = mkV "faetere" ; -- [XXXDO] :: stink; have a bad/offensive smell/odor; faetidus_A = mkA "faetidus" "fatida" "fatidum" ; -- [XXXCO] :: stinking; foul-smelling; having a bad smell/odor; - faetor_M_N = mkN "faetor" "faetoris " masculine ; -- [XXXDO] :: stench; bad/foul smell, stink; foulness, noisomeness (L+S); + faetor_M_N = mkN "faetor" "faetoris" masculine ; -- [XXXDO] :: stench; bad/foul smell, stink; foulness, noisomeness (L+S); faetulentus_A = mkA "faetulentus" "faetulenta" "faetulentum" ; -- [XXXFO] :: stinking; foul-smelling; fetulent (L+S); faetutina_F_N = mkN "faetutina" ; -- [XXXEO] :: stinking/noisome place, cesspool, midden; - faex_F_N = mkN "faex" "faecis " feminine ; -- [XXXDX] :: dregs, grounds; sediment, lees; deposits; dregs of society; + faex_F_N = mkN "faex" "faecis" feminine ; -- [XXXDX] :: dregs, grounds; sediment, lees; deposits; dregs of society; fagineus_A = mkA "fagineus" "faginea" "fagineum" ; -- [XXXDX] :: of the beech tree; of beech-wood, beechen; faginus_A = mkA "faginus" "fagina" "faginum" ; -- [XXXDX] :: of the beech tree; of beech-wood, beechen; fagottum_N_N = mkN "fagottum" ; -- [GDXEK] :: bassoon; @@ -19888,90 +19883,90 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat falcarius_M_N = mkN "falcarius" ; -- [XAXEC] :: sickle-maker, scythe-maker; falcatus_A = mkA "falcatus" "falcata" "falcatum" ; -- [XXXDX] :: armed with scythes; sickle-shaped, curved, hooked; falcifer_A = mkA "falcifer" "falcifera" "falciferum" ; -- [XXXDX] :: carrying a scythe; scythed; - falcitas_F_N = mkN "falcitas" "falcitatis " feminine ; -- [FXXEE] :: falseness; + falcitas_F_N = mkN "falcitas" "falcitatis" feminine ; -- [FXXEE] :: falseness; falda_F_N = mkN "falda" ; -- [FEXEE] :: falda; (garment of white silk worn by Pope on solemn occasions); faldistorium_N_N = mkN "faldistorium" ; -- [EXXFE] :: faldstool; (chair with armrest but no back); (used by bishop not in his church); - falere_N_N = mkN "falere" "faleris " neuter ; -- [XAXFO] :: platform (in a pen for birds); + falere_N_N = mkN "falere" "faleris" neuter ; -- [XAXFO] :: platform (in a pen for birds); falisca_F_N = mkN "falisca" ; -- [BXXFS] :: rack in a manger; fallacia_F_N = mkN "fallacia" ; -- [XXXCO] :: deceit, trick, stratagem; deceptive behavior or an instance of this; - fallacies_F_N = mkN "fallacies" "fallaciei " feminine ; -- [XXXFO] :: deceit, trick, stratagem; deceptive behavior or an instance of this; + fallacies_F_N = mkN "fallacies" "fallaciei" feminine ; -- [XXXFO] :: deceit, trick, stratagem; deceptive behavior or an instance of this; fallaciloquus_A = mkA "fallaciloquus" "fallaciloqua" "fallaciloquum" ; -- [XXXFO] :: of deceptive/deceitful speech; speaking deceitfully/falsely (L+S); fallaciosus_A = mkA "fallaciosus" "fallaciosa" "fallaciosum" ; -- [XXXEO] :: full of deception/deceit; deceitful, deceptive, fallacious (L+S); - fallacitas_F_N = mkN "fallacitas" "fallacitatis " feminine ; -- [XXXFO] :: deceptiveness; untrustworthiness; deceit, artifice (L+S); + 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; + 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; + falsificatio_F_N = mkN "falsificatio" "falsificationis" feminine ; -- [GXXEK] :: falsification; falsifico_V = mkV "falsificare" ; -- [GXXEK] :: falsify; falsiloquus_A = mkA "falsiloquus" "falsiloqua" "falsiloquum" ; -- [XXXEC] :: lying; - falsitas_F_N = mkN "falsitas" "falsitatis " feminine ; -- [DXXCS] :: falsehood, untruth, fraud, deceit; (sometimes pl.); + falsitas_F_N = mkN "falsitas" "falsitatis" feminine ; -- [DXXCS] :: falsehood, untruth, fraud, deceit; (sometimes pl.); falso_Adv = mkAdv "falso" ; -- [FXXEE] :: falsely; deceptively; spuriously; falso_V2 = mkV2 (mkV "falsare") ; -- [XXXEE] :: falsify; falsum_N_N = mkN "falsum" ; -- [XXXDX] :: falsehood, untruth, fraud, deceit; 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; + 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; 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; + 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; - famigerator_M_N = mkN "famigerator" "famigeratoris " masculine ; -- [XXXEC] :: rumor-monger; + famigerator_M_N = mkN "famigerator" "famigeratoris" masculine ; -- [XXXEC] :: rumor-monger; familia_F_N = mkN "familia" ; -- [XXXBX] :: household; household of slaves; family; clan; religious community (Ecc); familialis_A = mkA "familialis" "familialis" "familiale" ; -- [FXXEE] :: of/relating to family; familiaris_A = mkA "familiaris" "familiaris" "familiare" ; -- [XXXBX] :: domestic; of family; intimate; [familiaris res => one's property or fortune]; - familiaris_F_N = mkN "familiaris" "familiaris " feminine ; -- [XXXCO] :: member of household (family/servant/esp. slave); familiar acquaintance/friend; - 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; + familiaris_F_N = mkN "familiaris" "familiaris" feminine ; -- [XXXCO] :: member of household (family/servant/esp. slave); familiar acquaintance/friend; + 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; 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; + famulamen_N_N = mkN "famulamen" "famulaminis" neuter ; -- [FXXFM] :: servanthood; famularis_A = mkA "famularis" "famularis" "famulare" ; -- [XXXDX] :: of slaves, servile; - famulatus_M_N = mkN "famulatus" "famulatus " masculine ; -- [XXXEE] :: service; obedience; slavery; + famulatus_M_N = mkN "famulatus" "famulatus" masculine ; -- [XXXEE] :: service; obedience; slavery; famulitium_N_N = mkN "famulitium" ; -- [XXXES] :: servitude, slavery; the servants of a house; famulor_V = mkV "famulari" ; -- [XXXDX] :: be a servant, attend; famulus_A = mkA "famulus" "famula" "famulum" ; -- [XXXDX] :: serving; serviceable; servile; subject; famulus_M_N = mkN "famulus" ; -- [XXXAX] :: slave (male), servant; attendant; - fanale_N_N = mkN "fanale" "fanalis " neuter ; -- [XXXEE] :: torch; candle; + fanale_N_N = mkN "fanale" "fanalis" neuter ; -- [XXXEE] :: torch; candle; fanaticus_A = mkA "fanaticus" "fanatica" "fanaticum" ; -- [XXXDX] :: fanatic, frantic; belonging to a temple; fanatismus_M_N = mkN "fanatismus" ; -- [GXXEK] :: fanaticism; fandus_A = mkA "fandus" "fanda" "fandum" ; -- [XXXDX] :: that may be spoken; proper, lawful; - fano_M_N = mkN "fano" "fanonis " masculine ; -- [FEXEE] :: maniple, striped amice worn by Pope; + fano_M_N = mkN "fano" "fanonis" masculine ; -- [FEXEE] :: maniple, striped amice worn by Pope; fano_V2 = mkV2 (mkV "fanare") ; -- [EEXEE] :: dedicate; consecrate; fantasia_F_N = mkN "fantasia" ; -- [ESXEP] :: phase; (of the moon); fanulum_N_N = mkN "fanulum" ; -- [XEXEE] :: small temple; shrine; fanum_N_N = mkN "fanum" ; -- [XXXDX] :: sanctuary, temple; - fanus_N_N = mkN "fanus" "fanoris " neuter ; -- [XXXDX] :: that which is produced; interest on money/capital, usury, profit, gain; - far_N_N = mkN "far" "farris " neuter ; -- [XXXDX] :: husked wheat; grain, spelt; coarse meal, grits; sacrificial meal; dog's bread; + fanus_N_N = mkN "fanus" "fanoris" neuter ; -- [XXXDX] :: that which is produced; interest on money/capital, usury, profit, gain; + 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); + 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; - farrago_F_N = mkN "farrago" "farraginis " feminine ; -- [XXXDX] :: mixed fodder, mash; mixture, medley; a hodgepodge; trifle; + farrago_F_N = mkN "farrago" "farraginis" feminine ; -- [XXXDX] :: mixed fodder, mash; mixture, medley; a hodgepodge; trifle; farratus_A = mkA "farratus" "farrata" "farratum" ; -- [XXXEC] :: provided with grain; made of grain; 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; + fars_F_N = mkN "fars" "fartis" feminine ; -- [XXXEO] :: stuffing; minced meat; farsia_F_N = mkN "farsia" ; -- [EEXFE] :: insertion into parts of Mass; 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); - fascinatio_F_N = mkN "fascinatio" "fascinationis " feminine ; -- [XXXEE] :: fascination; bewitching; - fascinator_M_N = mkN "fascinator" "fascinatoris " masculine ; -- [XXXEE] :: charmer; enchanter; + fascinatio_F_N = mkN "fascinatio" "fascinationis" feminine ; -- [XXXEE] :: fascination; bewitching; + fascinator_M_N = mkN "fascinator" "fascinatoris" masculine ; -- [XXXEE] :: charmer; enchanter; fascino_V = mkV "fascinare" ; -- [XXXDX] :: cast a spell on, bewitch; fasciola_F_N = mkN "fasciola" ; -- [XXXEC] :: little bandage; - fascis_M_N = mkN "fascis" "fascis " masculine ; -- [XLIBO] :: |power/office of magistrate; bundle (esp. sticks/books); faggot; burden/load; + fascis_M_N = mkN "fascis" "fascis" masculine ; -- [XLIBO] :: |power/office of magistrate; bundle (esp. sticks/books); faggot; burden/load; fascismus_M_N = mkN "fascismus" ; -- [GXXEK] :: fascism; fascista_M_N = mkN "fascista" ; -- [GXXEK] :: fascist; 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; + 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; @@ -19981,8 +19976,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat fastosus_A = mkA "fastosus" "fastosa" "fastosum" ; -- [XXXDO] :: haughty, disdainful; proud, full of pride (L+S); fastuosus_A = mkA "fastuosus" "fastuosa" "fastuosum" ; -- [DXXES] :: haughty, disdainful; proud, full of pride (L+S); fastus_A = mkA "fastus" "fasta" "fastum" ; -- [XXXDX] :: not forbidden; [~ dies => day on which praetor's court was open, judicial day]; - fastus_M_N = mkN "fastus" "fastus " masculine ; -- [XXXDX] :: scornful contempt, destain, haughtiness, arrogance, pride; - fatale_N_N = mkN "fatale" "fatalis " neuter ; -- [ELXEE] :: deadline (pl.); time limit; [fatalia legis=> time limit of law; legal deadline]; + fastus_M_N = mkN "fastus" "fastus" masculine ; -- [XXXDX] :: scornful contempt, destain, haughtiness, arrogance, pride; + fatale_N_N = mkN "fatale" "fatalis" neuter ; -- [ELXEE] :: deadline (pl.); time limit; [fatalia legis=> time limit of law; legal deadline]; fatalis_A = mkA "fatalis" "fatalis" "fatale" ; -- [XXXBX] :: fated, destined; fatal, deadly; fatalismus_M_N = mkN "fatalismus" ; -- [GXXEK] :: fatalism; fataliter_Adv = mkAdv "fataliter" ; -- [XXXCO] :: by destiny; by decree of fate; @@ -19991,7 +19986,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat faticinus_A = mkA "faticinus" "faticina" "faticinum" ; -- [XXXEC] :: prophetic; fatidicus_A = mkA "fatidicus" "fatidica" "fatidicum" ; -- [XXXDX] :: prophetic; fatifer_A = mkA "fatifer" "fatifera" "fatiferum" ; -- [XXXDX] :: deadly, fatal; - fatigatio_F_N = mkN "fatigatio" "fatigationis " feminine ; -- [XXXCO] :: fatigue, weariness; exhaustion; (also of land); + fatigatio_F_N = mkN "fatigatio" "fatigationis" feminine ; -- [XXXCO] :: fatigue, weariness; exhaustion; (also of land); 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; @@ -19999,63 +19994,63 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + fatuitas_F_N = mkN "fatuitas" "fatuitatis" feminine ; -- [FXXEM] :: foolishness; folly; fatum_N_N = mkN "fatum" ; -- [XPXAX] :: utterance, oracle; fate, destiny; natural term of life; doom, death, calamity; fatuus_A = mkA "fatuus" "fatua" "fatuum" ; -- [XXXDX] :: foolish, silly; idiotic; fatuus_M_N = mkN "fatuus" ; -- [XXXEE] :: fool; - faucitas_F_N = mkN "faucitas" "faucitatis " feminine ; -- [FEXEE] :: prosperity; + faucitas_F_N = mkN "faucitas" "faucitatis" feminine ; -- [FEXEE] :: prosperity; fauna_F_N = mkN "fauna" ; -- [GXXEK] :: fauna; faustus_A = mkA "faustus" "fausta" "faustum" ; -- [XXXDX] :: favorable; auspicious; lucky, prosperous; - fautor_M_N = mkN "fautor" "fautoris " masculine ; -- [XXXCO] :: patron, protector; admirer; supporter, partisan; who promotes/fosters interests; - fautrix_F_N = mkN "fautrix" "fautricis " feminine ; -- [XXXDO] :: patroness/protector; admirer/supporter/partisan; she promotes/fosters interests; - faux_F_N = mkN "faux" "faucis " feminine ; -- [XXXAO] :: pharynx (usu pl.), gullet/throat/neck/jaws/maw; narrow pass/shaft/strait; chasm; + fautor_M_N = mkN "fautor" "fautoris" masculine ; -- [XXXCO] :: patron, protector; admirer; supporter, partisan; who promotes/fosters interests; + fautrix_F_N = mkN "fautrix" "fautricis" feminine ; -- [XXXDO] :: patroness/protector; admirer/supporter/partisan; she promotes/fosters interests; + 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; + 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; + favor_M_N = mkN "favor" "favoris" masculine ; -- [XXXDX] :: favor, goodwill; bias; applause; 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; + fax_F_N = mkN "fax" "facis" feminine ; -- [XPXAX] :: torch, firebrand, fire; flame of love; torment; 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; + febris_F_N = mkN "febris" "febris" feminine ; -- [XXXDX] :: fever, attack of fever; februum_N_N = mkN "februum" ; -- [XXXEC] :: religious purification; Roman feast (pl.) of purification; - feclinditas_F_N = mkN "feclinditas" "feclinditatis " feminine ; -- [XXXDX] :: fertility fecundity; + feclinditas_F_N = mkN "feclinditas" "feclinditatis" feminine ; -- [XXXDX] :: fertility fecundity; feculentia_F_N = mkN "feculentia" ; -- [FXXEN] :: dregs, lees; impurities, filth; - fecundatio_F_N = mkN "fecundatio" "fecundationis " feminine ; -- [XXXEE] :: fertilization; act of making fertile/fruitful/productive; - fecunditas_F_N = mkN "fecunditas" "fecunditatis " feminine ; -- [XXXFE] :: fruitfulness; + 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; fecundus_A = mkA "fecundus" ; -- [XXXBO] :: fertile, fruitful; productive (of offspring), prolific; abundant; imaginative; - feditas_F_N = mkN "feditas" "feditatis " feminine ; -- [FXXFM] :: filthy object; nuisance; + 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]; 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; + 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; + 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); - fellator_M_N = mkN "fellator" "fellatoris " masculine ; -- [XXXEO] :: fellator, one who practices fellatio; - fellatrix_F_N = mkN "fellatrix" "fellatricis " feminine ; -- [XXXIO] :: fellatrix, she who practices fellatio; + fellator_M_N = mkN "fellator" "fellatoris" masculine ; -- [XXXEO] :: fellator, one who practices fellatio; + fellatrix_F_N = mkN "fellatrix" "fellatricis" feminine ; -- [XXXIO] :: fellatrix, she who practices fellatio; fellico_V = mkV "fellicare" ; -- [EXXDE] :: suck (milk) (from); fellate, practice fellatio; (active participant); fellito_V = mkV "fellitare" ; -- [EXXDE] :: suck (milk) (from); fellate, practice fellatio; (active participant); fello_V = mkV "fellare" ; -- [XXXDO] :: suck (milk) (from); fellate, practice fellatio; (active participant); - felo_M_N = mkN "felo" "felonis " masculine ; -- [FLXFJ] :: felon; + felo_M_N = mkN "felo" "felonis" masculine ; -- [FLXFJ] :: felon; felo_V = mkV "felare" ; -- [XXXFO] :: suck (milk) (from); fellate, practice fellatio; (active participant); felonia_F_N = mkN "felonia" ; -- [FLXFJ] :: felony; femella_F_N = mkN "femella" ; -- [XXXEC] :: young woman, girl; - femen_N_N = mkN "femen" "feminis " neuter ; -- [XBXCO] :: thigh (human/animal); flat vertical band on triglyph; [~ bubulum => plant]; + femen_N_N = mkN "femen" "feminis" neuter ; -- [XBXCO] :: thigh (human/animal); flat vertical band on triglyph; [~ bubulum => plant]; femina_F_N = mkN "femina" ; -- [XXXAX] :: woman; female; - feminal_N_N = mkN "feminal" "feminalis " neuter ; -- [XBXEO] :: female external genitalia/private parts; thigh coverings (pl.); breeches (Ecc); + feminal_N_N = mkN "feminal" "feminalis" neuter ; -- [XBXEO] :: female external genitalia/private parts; thigh coverings (pl.); breeches (Ecc); feminalum_N_N = mkN "feminalum" ; -- [XXXEO] :: female external genitalia/private parts; thigh coverings (pl.), breech-cloth; femineus_A = mkA "femineus" "feminea" "femineum" ; -- [XXXBO] :: woman's; female, feminine; proper to/typical of a woman; effeminate, cowardly; femininus_A = mkA "femininus" "feminina" "femininum" ; -- [XXXCO] :: woman's; female, feminine; proper to/typical of a woman; @@ -20063,7 +20058,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat feministria_F_N = mkN "feministria" ; -- [GXXEK] :: feminist; feminus_A = mkA "feminus" "femina" "feminum" ; -- [XXXEE] :: female; femoralum_N_N = mkN "femoralum" ; -- [FXXEE] :: female external genitalia/private parts; breeches (pl.), breech-cloth; - femur_N_N = mkN "femur" "femoris " neuter ; -- [XBXBO] :: thigh (human/animal); flat vertical band on triglyph; [~ bubulum => plant]; + femur_N_N = mkN "femur" "femoris" neuter ; -- [XBXBO] :: thigh (human/animal); flat vertical band on triglyph; [~ bubulum => plant]; fenero_V = mkV "fenerare" ; -- [XXXDO] :: lend money at interest; make interest/profit; invest/finance/supply; borrow; feneror_V = mkV "fenerari" ; -- [XXXEO] :: lend money at interest; make interest/profit; invest/finance/supply; borrow; fenestella_F_N = mkN "fenestella" ; -- [XXXES] :: little window; small window, opening for light; niche (Ecc); @@ -20073,13 +20068,13 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat fenisicia_F_N = mkN "fenisicia" ; -- [XAXEO] :: mowing, cutting of hay; mown grass, hay; fenisicium_N_N = mkN "fenisicium" ; -- [XAXDO] :: mowing, cutting of hay; mown grass, hay; fenum_N_N = mkN "fenum" ; -- [XXXCO] :: hay; [~ Graecum => fenugreek]; - fenus_N_N = mkN "fenus" "fenoris " neuter ; -- [XXXDX] :: interest, usury, profit on capital; investments; advantage, profit, gain; - feodalis_M_N = mkN "feodalis" "feodalis " masculine ; -- [GXXEK] :: vassal; + fenus_N_N = mkN "fenus" "fenoris" neuter ; -- [XXXDX] :: interest, usury, profit on capital; investments; advantage, profit, gain; + feodalis_M_N = mkN "feodalis" "feodalis" masculine ; -- [GXXEK] :: vassal; feoffamentum_N_N = mkN "feoffamentum" ; -- [FLXFJ] :: enfoeffment, infeftment (Scot.); investment of person with fief or fee; - feoffator_M_N = mkN "feoffator" "feoffatoris " masculine ; -- [FLXFJ] :: enfeoffor; one who settles land under feudal system; + 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; - fer_N = constN "fer." feminine ; -- [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; @@ -20093,7 +20088,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat feretrum_N_N = mkN "feretrum" ; -- [XXXDX] :: bier; feria_F_N = mkN "feria" ; -- [FXXDF] :: weekday; abb. fer.; [(w/ordinals) quintus feria => fifth day/Thursday]; ferialis_A = mkA "ferialis" "ferialis" "feriale" ; -- [XXXFE] :: ferial, of/pertaining to feria/weekday; - feriatio_F_N = mkN "feriatio" "feriationis " feminine ; -- [XXXFE] :: feast; celebration of feast; + feriatio_F_N = mkN "feriatio" "feriationis" feminine ; -- [XXXFE] :: feast; celebration of feast; feriatus_A = mkA "feriatus" "feriata" "feriatum" ; -- [XXXDX] :: keeping holiday, at leisure; feriatus_M_N = mkN "feriatus" ; -- [GXXEK] :: vacationer; fericulum_N_N = mkN "fericulum" ; -- [XXXBE] :: food tray; dish, course; food; bread; bier (Ecc); litter; @@ -20101,17 +20096,17 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat ferinus_A = mkA "ferinus" "ferina" "ferinum" ; -- [XXXDX] :: of wild beasts; 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; + 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; ferme_Adv = mkAdv "ferme" ; -- [XXXBX] :: nearly, almost, about; (with negatives) hardly ever; fermentaceus_M_N = mkN "fermentaceus" ; -- [EEXFE] :: person who uses unleavened bread; fermentatus_A = mkA "fermentatus" "fermentata" "fermentatum" ; -- [EXXEE] :: fermented; loose; soft, spoiled, corrupted; fermento_V2 = mkV2 (mkV "fermentare") ; -- [XAXCO] :: leaven; cause fermentation in; aerate (soil); 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; + 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; + 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; ferraiola_F_N = mkN "ferraiola" ; -- [FEXFE] :: short cape reaching halfway to elbow); @@ -20130,35 +20125,35 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat ferrous_A = mkA "ferrous" "ferroa" "ferroum" ; -- [XXXDX] :: of iron, iron; hard, cruel firm; ferrugineus_A = mkA "ferrugineus" "ferruginea" "ferrugineum" ; -- [XXXDX] :: of the color of iron-rust, somber; ferruginus_A = mkA "ferruginus" "ferrugina" "ferruginum" ; -- [XXXEC] :: rust-colored, dun; - ferrugo_F_N = mkN "ferrugo" "ferruginis " feminine ; -- [XXXDX] :: iron-rust; color of iron rust, dusky color; + ferrugo_F_N = mkN "ferrugo" "ferruginis" feminine ; -- [XXXDX] :: iron-rust; color of iron rust, dusky color; 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); + ferrumen_N_N = mkN "ferrumen" "ferruminis" neuter ; -- [EXXFS] :: cement; solder; glue; iron-rust (Pliny); ferrumino_V = mkV "ferruminare" ; -- [XXXES] :: cement, solder; glue; bind; 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; + 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; ferula_F_N = mkN "ferula" ; -- [XXXDX] :: stick, rod; 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; + 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; 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; + 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; festinantia_F_N = mkN "festinantia" ; -- [FXXFM] :: haste; speed; festinatim_Adv = mkAdv "festinatim" ; -- [XXXEO] :: promptly, speedily, quickly; with (excessive/undue) haste; hurriedly; - festinatio_F_N = mkN "festinatio" "festinationis " feminine ; -- [XXXDX] :: haste, speed, hurry; + festinatio_F_N = mkN "festinatio" "festinationis" feminine ; -- [XXXDX] :: haste, speed, hurry; festinato_Adv =mkAdv "festinato" "festinatius" "festinatissime" ; -- [XXXCO] :: promptly, speedily, quickly; with (excessive/undue) haste; hurriedly; festino_V = mkV "festinare" ; -- [XXXBX] :: hasten, hurry; festinus_A = mkA "festinus" "festina" "festinum" ; -- [XXXCO] :: swift/quick/rapid; fast moving (troops); impatient, in a hurry; early/premature; 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; + 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; 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; @@ -20167,27 +20162,27 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat festus_A = mkA "festus" "festa" "festum" ; -- [XXXAX] :: festive, joyous; holiday; feast day; merry; solemn; feteo_V = mkV "fetere" ; -- [XXXDO] :: stink; have a bad/offensive smell/odor; fetialis_A = mkA "fetialis" "fetialis" "fetiale" ; -- [XXXEO] :: of college/functions of fetiales (priests representing Rome diplomatically); - fetialis_M_N = mkN "fetialis" "fetialis " masculine ; -- [XXXDO] :: Roman priest/college of priests (pl.) representing Rome in diplomatic dealings; + fetialis_M_N = mkN "fetialis" "fetialis" masculine ; -- [XXXDO] :: Roman priest/college of priests (pl.) representing Rome in diplomatic dealings; fetidus_A = mkA "fetidus" "fetida" "fetidum" ; -- [XXXCO] :: stinking; foul-smelling; having a bad smell/odor; fetifer_A = mkA "fetifer" "fetifera" "fetiferum" ; -- [XXXNS] :: fertilizing; causing fruitfulness; making fruitful; enriching the soil (W); fetifico_V = mkV "fetificare" ; -- [XXXNO] :: breed/spawn; hatch/bring forth offspring/young; fetificus_A = mkA "fetificus" "fetifica" "fetificum" ; -- [XXXNO] :: reproductive; genital; fructifying (L+S); feto_V = mkV "fetare" ; -- [XXXFO] :: breed/spawn; hatch/bring forth offspring/young; impregnate, make fruitful (L+S); - fetor_M_N = mkN "fetor" "fetoris " masculine ; -- [XXXDO] :: stench; bad/foul smell, stink; foulness, noisomeness (L+S); + fetor_M_N = mkN "fetor" "fetoris" masculine ; -- [XXXDO] :: stench; bad/foul smell, stink; foulness, noisomeness (L+S); fetosus_A = mkA "fetosus" "fetosa" "fetosum" ; -- [EXXFS] :: prolific; fetulentus_A = mkA "fetulentus" "fetulenta" "fetulentum" ; -- [XXXFO] :: stinking; foul-smelling; fetulent (L+S); fetuosus_A = mkA "fetuosus" "fetuosa" "fetuosum" ; -- [DXXFS] :: prolific; fetura_F_N = mkN "fetura" ; -- [XXXCO] :: |laying/hatching eggs; brood, litter, young offspring; young shoots (of vine); feturatus_A = mkA "feturatus" "feturata" "feturatum" ; -- [DXXFS] :: made into a fetus (of semen); fetus_A = mkA "fetus" "feta" "fetum" ; -- [XXXBO] :: |having newly brought forth/given birth/whelped/calved; bearing/reproducing; - fetus_M_N = mkN "fetus" "fetus " masculine ; -- [XXXAO] :: |||fruit of plant; produce/crop; offshoot/branch/sucker/sapling; bearing fruit; + fetus_M_N = mkN "fetus" "fetus" masculine ; -- [XXXAO] :: |||fruit of plant; produce/crop; offshoot/branch/sucker/sapling; bearing fruit; fetutina_F_N = mkN "fetutina" ; -- [XXXEO] :: stinking/noisome place, cesspool, midden; feudum_N_N = mkN "feudum" ; -- [GXXEK] :: fief; fiala_F_N = mkN "fiala" ; -- [XXXEZ] :: drinking plate; (Greek); fiber_M_N = mkN "fiber" ; -- [XAXCO] :: beaver; fibiculaa_F_N = mkN "fibiculaa" ; -- [GXXEK] :: paper-staple; fibra_F_N = mkN "fibra" ; -- [XXXDX] :: fiber, filament; entrails; leaf, blade (of grasses, etc); - fibroma_N_N = mkN "fibroma" "fibromatis " neuter ; -- [GXXEK] :: fibroma, fibrous tumor; + fibroma_N_N = mkN "fibroma" "fibromatis" neuter ; -- [GXXEK] :: fibroma, fibrous tumor; fibula_F_N = mkN "fibula" ; -- [XXXDX] :: clasp, buckle, brooch; fibulo_V2 = mkV2 (mkV "fibulare") ; -- [XXXFO] :: join; bond; knit together; fasten; buckle up/together;unfasten; unbuckle; ficatum_N_N = mkN "ficatum" ; -- [FXXEK] :: foie gras (liver); @@ -20196,37 +20191,35 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat ficte_Adv = mkAdv "ficte" ; -- [XXXEE] :: falsely; fictice_Adv = mkAdv "fictice" ; -- [XXXFS] :: in fictitious/pretended manner; in pretense; falsely; by way of pretense/sham; ficticius_A = mkA "ficticius" "ficticia" "ficticium" ; -- [XXXDS] :: fictitious; artificial; counterfeit, not genuine; feigned, pretended, sham; - fictile_N_N = mkN "fictile" "fictilis " neuter ; -- [XXXDX] :: earthenware vessel or statue; + fictile_N_N = mkN "fictile" "fictilis" neuter ; -- [XXXDX] :: earthenware vessel or statue; fictilis_A = mkA "fictilis" "fictilis" "fictile" ; -- [XXXDX] :: of clay; made of earthenware, earthen; - fictio_F_N = mkN "fictio" "fictionis " feminine ; -- [XXXCO] :: fashioning, action of shaping; coining (word); pretense/feigning; legal fiction; + fictio_F_N = mkN "fictio" "fictionis" feminine ; -- [XXXCO] :: fashioning, action of shaping; coining (word); pretense/feigning; legal fiction; fictitius_A = mkA "fictitius" "fictitia" "fictitium" ; -- [XXXDS] :: fictitious; artificial; counterfeit, not genuine; feigned, pretended; - fictor_M_N = mkN "fictor" "fictoris " masculine ; -- [XXXDX] :: one who devises or makes; + fictor_M_N = mkN "fictor" "fictoris" masculine ; -- [XXXDX] :: one who devises or makes; fictus_A = mkA "fictus" "ficta" "fictum" ; -- [XXXDX] :: feigned, false; counterfeit; ficulneus_A = mkA "ficulneus" "ficulnea" "ficulneum" ; -- [XAXDO] :: of the fig or fig tree, fig-; ficulnus_A = mkA "ficulnus" "ficulna" "ficulnum" ; -- [XAXDO] :: of the fig or fig tree, fig-; ficus_C_N = mkN "ficus" ; -- [XAXBO] :: fig; fig tree; hemorrhoids/piles (sg./pl.); [primus ficus => early autumn]; - ficus_M_N = mkN "ficus" "ficus " masculine ; -- [XAXCO] :: fig; fig tree; hemorrhoids/piles (sg./pl.); [primus ficus => early autumn]; + ficus_M_N = mkN "ficus" "ficus" masculine ; -- [XAXCO] :: fig; fig tree; hemorrhoids/piles (sg./pl.); [primus ficus => early autumn]; fideicommissarius_A = mkA "fideicommissarius" "fideicommissaria" "fideicommissarium" ; -- [XLXEC] :: of fideicommissa/conferring by will requesting executor to deliver to 3rd party; 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; + 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; + 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); fidelis_A = mkA "fidelis" ; -- [XXXBO] :: faithful/loyal/devoted; true/trustworthy/dependable/reliable; constant/lasting; - fidelitas_F_N = mkN "fidelitas" "fidelitatis " feminine ; -- [XXXDX] :: faithfulness, fidelity; + 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; - fides_F_N = mkN "fides" "fidis " feminine ; -- [XXXBO] :: chord, instrument string; constellation Lyra; stringed instrument (pl.); lyre; - fidicen_M_N = mkN "fidicen" "fidicinis " masculine ; -- [XDXDO] :: lyre-player; writer of lyric poetry; lyricist; + fides_F_N = mkN "fides" "fidis" feminine ; -- [XXXBO] :: chord, instrument string; constellation Lyra; stringed instrument (pl.); lyre; + fidicen_M_N = mkN "fidicen" "fidicinis" masculine ; -- [XDXDO] :: lyre-player; writer of lyric poetry; lyricist; fidicina_F_N = mkN "fidicina" ; -- [XDXEO] :: lyre-player (female); 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); + fidis_F_N = mkN "fidis" "fidis" feminine ; -- [XXXBO] :: chord, instrument string; constellation Lyra; stringed instrument (pl.); lyre; 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; @@ -20234,22 +20227,22 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; figuraliter_Adv = mkAdv "figuraliter" ; -- [DXXES] :: figuratively; - figuratio_F_N = mkN "figuratio" "figurationis " feminine ; -- [XXXES] :: forming; shaping; imagination; G:form of word; + figuratio_F_N = mkN "figuratio" "figurationis" feminine ; -- [XXXES] :: forming; shaping; imagination; G:form of word; figuro_V = mkV "figurare" ; -- [XXXDX] :: form, fashion, shape; filetum_N_N = mkN "filetum" ; -- [GXXEK] :: filet (cut of meat or of fish); filia_F_N = mkN "filia" ; -- [XXXBX] :: daughter; - filiatio_F_N = mkN "filiatio" "filiationis " feminine ; -- [FLXEZ] :: descent-from-father; (father has paternitas, son has filiatio); + filiatio_F_N = mkN "filiatio" "filiationis" feminine ; -- [FLXEZ] :: descent-from-father; (father has paternitas, son has filiatio); filicatus_A = mkA "filicatus" "filicata" "filicatum" ; -- [XXXEC] :: adorned with ferns; embossed with fern leaves; filiformis_A = mkA "filiformis" "filiformis" "filiforme" ; -- [GXXEK] :: threadlike; filiola_F_N = mkN "filiola" ; -- [XXXDX] :: little daughter; filiolus_M_N = mkN "filiolus" ; -- [XXXDX] :: little son; filius_M_N = mkN "filius" ; -- [XXXAX] :: son; - filix_F_N = mkN "filix" "filicis " feminine ; -- [XXXDX] :: fern, bracken; + filix_F_N = mkN "filix" "filicis" feminine ; -- [XXXDX] :: fern, bracken; filtrum_N_N = mkN "filtrum" ; -- [GXXEK] :: filter; filum_N_N = mkN "filum" ; -- [XXXBX] :: thread, string, filament, fiber; texture, style, nature; fimbria_F_N = mkN "fimbria" ; -- [XXXEC] :: fringe (pl.), border, edge; @@ -20257,33 +20250,33 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat fimum_N_N = mkN "fimum" ; -- [XXXDX] :: dung, excrement; fimus_M_N = mkN "fimus" ; -- [XXXDX] :: dung, excrement; finalis_A = mkA "finalis" "finalis" "finale" ; -- [XXXEO] :: of/concerned w/boundaries; limited/bounded (Souter); of ultimate goal; - finalitas_F_N = mkN "finalitas" "finalitatis " feminine ; -- [FXXEM] :: limitation; finality, end (Red); + finalitas_F_N = mkN "finalitas" "finalitatis" feminine ; -- [FXXEM] :: limitation; finality, end (Red); 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]; - 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; + 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; finitimus_M_N = mkN "finitimus" ; -- [XXXDX] :: neighbors (pl.); - finitio_F_N = mkN "finitio" "finitionis " feminine ; -- [XXXBO] :: |end/conclusion/death; limit/restriction; definition, exact description; + finitio_F_N = mkN "finitio" "finitionis" feminine ; -- [XXXBO] :: |end/conclusion/death; limit/restriction; definition, exact description; finitumus_A = mkA "finitumus" "finituma" "finitumum" ; -- [EXXES] :: adjoining; neighboring; fio_V = mkV "feri" ; -- [XXXAO] :: ||be made/become; (facio PASS); [fiat => so be it, very well; it is being done]; firmaculum_N_N = mkN "firmaculum" ; -- [FXXFM] :: brooch; clasp; buckle; fastener; - firmale_N_N = mkN "firmale" "firmalis " neuter ; -- [FXXEE] :: brooch (for a cope); clasp (Latham); buckle; fastener; - firmamen_N_N = mkN "firmamen" "firmaminis " neuter ; -- [XXXDX] :: support, prop, mainstay; strengthening; + firmale_N_N = mkN "firmale" "firmalis" neuter ; -- [FXXEE] :: brooch (for a cope); clasp (Latham); buckle; fastener; + firmamen_N_N = mkN "firmamen" "firmaminis" neuter ; -- [XXXDX] :: support, prop, mainstay; strengthening; firmamentum_N_N = mkN "firmamentum" ; -- [XXXDX] :: support, prop, mainstay; support group; firmarius_M_N = mkN "firmarius" ; -- [FLXFJ] :: termor; term-holder of lands, who holds land/tenement for term of years or life; - firmitas_F_N = mkN "firmitas" "firmitatis " feminine ; -- [XXXDX] :: firmness, strength; + firmitas_F_N = mkN "firmitas" "firmitatis" feminine ; -- [XXXDX] :: firmness, strength; firmiter_Adv = mkAdv "firmiter" ; -- [XXXDX] :: really, strongly, firmly; steadfastly; - firmitudo_F_N = mkN "firmitudo" "firmitudinis " feminine ; -- [XXXDX] :: stability; strength; + firmitudo_F_N = mkN "firmitudo" "firmitudinis" feminine ; -- [XXXDX] :: stability; strength; firmo_V = mkV "firmare" ; -- [XXXBX] :: strengthen, harden; support; declare; prove, confirm, establish; 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; + 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; fiscina_F_N = mkN "fiscina" ; -- [XXXDX] :: small basket of wicker work; @@ -20291,7 +20284,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat fissilis_A = mkA "fissilis" "fissilis" "fissile" ; -- [XXXDX] :: easily split; split; fistuca_F_N = mkN "fistuca" ; -- [XXXEC] :: rammer, mallet; fistula_F_N = mkN "fistula" ; -- [XXXBX] :: shepherd's pipe; tube; waterpipe; - fistulator_M_N = mkN "fistulator" "fistulatoris " masculine ; -- [XDXEC] :: one who plays the reed-pipe; + fistulator_M_N = mkN "fistulator" "fistulatoris" masculine ; -- [XDXEC] :: one who plays the reed-pipe; fixatorium_N_N = mkN "fixatorium" ; -- [GXXEK] :: hair-lacquer; fixtura_F_N = mkN "fixtura" ; -- [EXXES] :: fixing, fastening; print of nails; print/imprint (Ecc); opening, perforation; fixum_N_N = mkN "fixum" ; -- [XXXFO] :: fixtures (pl.), fittings; @@ -20304,8 +20297,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + flagitatio_F_N = mkN "flagitatio" "flagitationis" feminine ; -- [XXXDX] :: importunate request, demand; + flagitator_M_N = mkN "flagitator" "flagitatoris" masculine ; -- [XXXDX] :: importuner, dun; 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; @@ -20315,8 +20308,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat flagritriba_M_N = mkN "flagritriba" ; -- [XXXEC] :: one that wears out whips, whipping boy; flagro_V = mkV "flagrare" ; -- [XXXBX] :: be on fire; blaze, flame, burn; be inflamed/excited; flagrum_N_N = mkN "flagrum" ; -- [XXXEC] :: scourge, whip; - flamen_M_N = mkN "flamen" "flaminis " masculine ; -- [XEXBO] :: priest, flamen; priest of specific deity; [~ Dialis => high priest of Jupiter]; - flamen_N_N = mkN "flamen" "flaminis " neuter ; -- [XXXCO] :: gust/blast (of wind); gale; breath/exhalation; wind/breeze; note on woodwind; + flamen_M_N = mkN "flamen" "flaminis" masculine ; -- [XEXBO] :: priest, flamen; priest of specific deity; [~ Dialis => high priest of Jupiter]; + flamen_N_N = mkN "flamen" "flaminis" neuter ; -- [XXXCO] :: gust/blast (of wind); gale; breath/exhalation; wind/breeze; note on woodwind; flamina_F_N = mkN "flamina" ; -- [XEXIO] :: wife of a flamen/priest; priestess; flaminia_F_N = mkN "flaminia" ; -- [XEXFS] :: priest-assistantess; female assistant to flamen; flamen's dwelling; flaminica_F_N = mkN "flaminica" ; -- [XEXDO] :: wife of a flamen/priest; priestess; @@ -20334,31 +20327,31 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat flammula_F_N = mkN "flammula" ; -- [XXXEC] :: little flame; flandrensis_A = mkA "flandrensis" "flandrensis" "flandrense" ; -- [FXXEM] :: Flemish; from Flanders; flatilis_A = mkA "flatilis" "flatilis" "flatile" ; -- [XXXFO] :: blown, of/produced by blowing; - flatus_M_N = mkN "flatus" "flatus " masculine ; -- [XXXDX] :: blowing; snorting; breath; breeze; - flavedo_F_N = mkN "flavedo" "flavedinis " feminine ; -- [FXXFM] :: yellowness; yellow-color; + 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; 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); + 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; + 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; + 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; flexibilis_A = mkA "flexibilis" "flexibilis" "flexibile" ; -- [XXXDX] :: flexible, pliant; - flexibilitas_F_N = mkN "flexibilitas" "flexibilitatis " feminine ; -- [FEXFS] :: flexibility, pliability; + flexibilitas_F_N = mkN "flexibilitas" "flexibilitatis" feminine ; -- [FEXFS] :: flexibility, pliability; 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; 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; + 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); + 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; @@ -20367,24 +20360,24 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat floridus_A = mkA "floridus" "florida" "floridum" ; -- [XXXBX] :: blooming; flowery; florid; florifer_A = mkA "florifer" "florifera" "floriferum" ; -- [XXXEO] :: flowery; flower bearing, producing flowers; carrying flowers; floriger_A = mkA "floriger" "florigera" "florigerum" ; -- [DXXES] :: flowery; flower bearing, producing flowers; carrying flowers; - flos_M_N = mkN "flos" "floris " masculine ; -- [XXXAX] :: flower, blossom; youthful prime; + flos_M_N = mkN "flos" "floris" masculine ; -- [XXXAX] :: flower, blossom; youthful prime; flosculus_M_N = mkN "flosculus" ; -- [XXXDX] :: little flower, floweret; the best of anything, the "flower"; fluctifragus_A = mkA "fluctifragus" "fluctifraga" "fluctifragum" ; -- [XXXEC] :: wave-breaking; - fluctio_F_N = mkN "fluctio" "fluctionis " feminine ; -- [XXXES] :: flowing; flow; + fluctio_F_N = mkN "fluctio" "fluctionis" feminine ; -- [XXXES] :: flowing; flow; fluctivagus_A = mkA "fluctivagus" "fluctivaga" "fluctivagum" ; -- [FTXEM] :: wave-tossed; wave-driven; - fluctuatio_F_N = mkN "fluctuatio" "fluctuationis " feminine ; -- [XXXCO] :: swaying/shaking, restless movement (wave); vacillation/uncertainty/fluctuation; + fluctuatio_F_N = mkN "fluctuatio" "fluctuationis" feminine ; -- [XXXCO] :: swaying/shaking, restless movement (wave); vacillation/uncertainty/fluctuation; fluctuo_V = mkV "fluctuare" ; -- [XXXDX] :: rise in waves, surge, swell, undulate, fluctuate; float; be agitated/restless; fluctuor_V = mkV "fluctuari" ; -- [XXXDX] :: waver, be in doubt, hesitate; fluctuosus_A = mkA "fluctuosus" "fluctuosa" "fluctuosum" ; -- [XXXEC] :: full of waves, stormy; - fluctus_M_N = mkN "fluctus" "fluctus " masculine ; -- [XXXDX] :: wave; disorder; flood, flow, tide, billow, surge; turbulence, commotion; + fluctus_M_N = mkN "fluctus" "fluctus" masculine ; -- [XXXDX] :: wave; disorder; flood, flow, tide, billow, surge; turbulence, commotion; fluenter_Adv = mkAdv "fluenter" ; -- [XXXFO] :: in a stream or flood; fluentisonus_A = mkA "fluentisonus" "fluentisona" "fluentisonum" ; -- [XXXFO] :: resounding with the sound of waves; fluentum_N_N = mkN "fluentum" ; -- [XXXDO] :: stream/river; flood; (waters of) lake; flow (L+S); current/draft/draught of air; fluentus_A = mkA "fluentus" "fluenta" "fluentum" ; -- [FXXEO] :: flowing; 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; + 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); @@ -20396,8 +20389,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat fluvius_M_N = mkN "fluvius" ; -- [XXXBX] :: river, stream; running water; fluxilis_A = mkA "fluxilis" "fluxilis" "fluxile" ; -- [EXXES] :: fluid; fluxus_A = mkA "fluxus" "fluxa" "fluxum" ; -- [XXXDX] :: flowing; fluid; loose; transient, frail, dissolute; - focal_N_N = mkN "focal" "focalis " neuter ; -- [XXXEC] :: wrapper for the neck; - focale_N_N = mkN "focale" "focalis " neuter ; -- [GXXEK] :: tie; + focal_N_N = mkN "focal" "focalis" neuter ; -- [XXXEC] :: wrapper for the neck; + focale_N_N = mkN "focale" "focalis" neuter ; -- [GXXEK] :: tie; focaria_F_N = mkN "focaria" ; -- [XXXEO] :: kitchen-maid; cook; soldier's concubine; housekeeper (L+S); focarius_M_N = mkN "focarius" ; -- [XXXEO] :: kitchen-boy/servant; focillo_V = mkV "focillare" ; -- [XXXEC] :: warm up, refresh by warmth; @@ -20406,7 +20399,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; @@ -20417,45 +20410,45 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat foederatus_A = mkA "foederatus" "foederata" "foederatum" ; -- [XLXCO] :: allied; treaty bound to Rome); federated; leagued together, confederated (L+S); foedero_V2 = mkV2 (mkV "foederare") ; -- [XLXFO] :: seal; ratify (an agreement); establish by treaty/league (L+S); 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; + 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); 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); + 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; + foenus_N_N = mkN "foenus" "foenoris" neuter ; -- [XXXCE] :: interest (on capital), usury; profit, gain; advantage; foeteo_V = mkV "foetere" ; -- [XXXDO] :: stink; have a bad/offensive smell/odor; foetidus_A = mkA "foetidus" "foetida" "foetidum" ; -- [XXXCO] :: stinking; foul-smelling; having a bad smell/odor; foetifer_A = mkA "foetifer" "foetifera" "foetiferum" ; -- [XXXNS] :: fertilizing; causing fruitfulness; making fruitful; enriching the soil (W); foetifico_V = mkV "foetificare" ; -- [XXXNS] :: breed/spawn; hatch/bring forth offspring/young; foetificus_A = mkA "foetificus" "foetifica" "foetificum" ; -- [XXXNS] :: reproductive; genital; fructifying (L+S); foeto_V = mkV "foetare" ; -- [XXXFS] :: breed/spawn; hatch/bring forth offspring/young; impregnate, make fruitful (L+S); - foetor_M_N = mkN "foetor" "foetoris " masculine ; -- [XXXDO] :: stench; bad/foul smell, stink; foulness, noisomeness (L+S); + foetor_M_N = mkN "foetor" "foetoris" masculine ; -- [XXXDO] :: stench; bad/foul smell, stink; foulness, noisomeness (L+S); foetosus_A = mkA "foetosus" "foetosa" "foetosum" ; -- [EXXFS] :: prolific; foetulentus_A = mkA "foetulentus" "foetulenta" "foetulentum" ; -- [XXXFO] :: stinking; foul-smelling; fetulent (L+S); foetuosus_A = mkA "foetuosus" "foetuosa" "foetuosum" ; -- [DXXFS] :: prolific; foetura_F_N = mkN "foetura" ; -- [XXXCS] :: |laying/hatching eggs; brood, litter, young offspring; young shoots (of vine); foeturatus_A = mkA "foeturatus" "foeturata" "foeturatum" ; -- [DXXFS] :: made into a fetus (of semen); foetus_A = mkA "foetus" "foeta" "foetum" ; -- [XXXBS] :: |having newly brought forth/given birth/whelped/calved; bearing/reproducing; - foetus_M_N = mkN "foetus" "foetus " masculine ; -- [XXXAO] :: |||fruit of plant; produce/crop; offshoot/branch/sucker/sapling; bearing fruit; + foetus_M_N = mkN "foetus" "foetus" masculine ; -- [XXXAO] :: |||fruit of plant; produce/crop; offshoot/branch/sucker/sapling; bearing fruit; foetutina_F_N = mkN "foetutina" ; -- [XXXEO] :: stinking/noisome place, cesspool, midden; foliatum_N_N = mkN "foliatum" ; -- [XBXEC] :: salve or oil of spikenard leaves; foliatus_A = mkA "foliatus" "foliata" "foliatum" ; -- [XXXEC] :: leafy; laminated (Cal); foliothecula_F_N = mkN "foliothecula" ; -- [GXXEK] :: wallet; folium_N_N = mkN "folium" ; -- [XAXBX] :: leaf; folliculus_M_N = mkN "folliculus" ; -- [XXXDX] :: bag or sack; pod; shell; follicle (Cal); - follis_M_N = mkN "follis" "follis " masculine ; -- [XXXDX] :: bag, purse; handball; pair of bellows; scrotum; + follis_M_N = mkN "follis" "follis" masculine ; -- [XXXDX] :: bag, purse; handball; pair of bellows; scrotum; fomentum_N_N = mkN "fomentum" ; -- [XXXCO] :: poultice/dressing; hot/cold compress; solace, alleviation; kindling; wick; - fomes_M_N = mkN "fomes" "fomitis " masculine ; -- [XXXDX] :: chips of wood, etc for kindling/feeding a fire; - fons_M_N = mkN "fons" "fontis " masculine ; -- [XXXAE] :: spring, fountain, well; source/fount; principal cause; font; baptistry; + fomes_M_N = mkN "fomes" "fomitis" masculine ; -- [XXXDX] :: chips of wood, etc for kindling/feeding a fire; + fons_M_N = mkN "fons" "fontis" masculine ; -- [XXXAE] :: spring, fountain, well; source/fount; principal cause; font; baptistry; fontalis_A = mkA "fontalis" "fontalis" "fontale" ; -- [XXXEE] :: fountain-, of a fountain; fountain-like; fontanus_A = mkA "fontanus" "fontana" "fontanum" ; -- [XXXDX] :: of a spring; fonticulus_M_N = mkN "fonticulus" ; -- [XXXEC] :: little fountain or spring; for_V = mkV "fari" ; -- [XXXBX] :: speak, talk; say; forabilis_A = mkA "forabilis" "forabilis" "forabile" ; -- [DXXES] :: penetrable; can be pierced; vulnerable; - foramen_N_N = mkN "foramen" "foraminis " neuter ; -- [XXXBX] :: hole, aperture; fissure; + foramen_N_N = mkN "foramen" "foraminis" neuter ; -- [XXXBX] :: hole, aperture; fissure; foraneus_A = mkA "foraneus" "foranea" "foraneum" ; -- [GXXEK] :: fairground-; foras_Adv = mkAdv "foras" ; -- [XXXBX] :: out of doors, abroad, forth, out; - forceps_F_N = mkN "forceps" "forcipis " feminine ; -- [XXXDX] :: pair of tongs, pincers; + forceps_F_N = mkN "forceps" "forcipis" feminine ; -- [XXXDX] :: pair of tongs, pincers; forcia_F_N = mkN "forcia" ; -- [FLXFJ] :: accessory of crime; forda_F_N = mkN "forda" ; -- [XXXDX] :: one who is pregnant/with young; cow in/with calf; fordeaceus_A = mkA "fordeaceus" "fordeacea" "fordeaceum" ; -- [AAXCO] :: barley-, of/connected to barley; (used as term of contempt); @@ -20466,25 +20459,25 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat fordus_A = mkA "fordus" "forda" "fordum" ; -- [XXXDX] :: pregnant; with young; forensis_A = mkA "forensis" "forensis" "forense" ; -- [XXXDX] :: public; pertaining to the courts; foresta_F_N = mkN "foresta" ; -- [FXXEM] :: forest; land under forest law; - forfex_F_N = mkN "forfex" "forficis " feminine ; -- [XXXEC] :: pair of shears or scissors; + forfex_F_N = mkN "forfex" "forficis" feminine ; -- [XXXEC] :: pair of shears or scissors; foricula_F_N = mkN "foricula" ; -- [FXXEK] :: shutter; forinsecum_N_N = mkN "forinsecum" ; -- [FXXEM] :: foreign service; 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; + 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; formalismus_M_N = mkN "formalismus" ; -- [GXXEK] :: formalism; formaliter_Adv = mkAdv "formaliter" ; -- [GXXEK] :: formally; positively; formamentum_N_N = mkN "formamentum" ; -- [XXXEC] :: conformation; - formatrix_F_N = mkN "formatrix" "formatricis " feminine ; -- [EXXFS] :: founder; she who forms; + formatrix_F_N = mkN "formatrix" "formatricis" feminine ; -- [EXXFS] :: founder; she who forms; 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; 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_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; formidolosus_A = mkA "formidolosus" ; -- [XXXCO] :: terrible, scary; dangerous, alarming; formidable; fearful/timorous/frightened; @@ -20499,19 +20492,19 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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?); + fornax_F_N = mkN "fornax" "fornacis" feminine ; -- [XXXCO] :: furnace/oven/kiln; (baths/smelting/limestone/brick); (goddess of ovens?); fornicaria_F_N = mkN "fornicaria" ; -- [DEXCS] :: fornicatress; woman (unmarried) who has voluntary sex; prostitute/whore; fornicarius_M_N = mkN "fornicarius" ; -- [DEXCS] :: fornicator; man (usu. unmarried) who has voluntary sex with (unmarried) woman; fornicatim_Adv = mkAdv "fornicatim" ; -- [XTXNO] :: archwise, in an arched manner; in the form of an arch (L+S); - fornicatio_F_N = mkN "fornicatio" "fornicationis " feminine ; -- [DEXCS] :: |fornication, (unmarried) sex; prostitution/whoredom; - fornicator_M_N = mkN "fornicator" "fornicatoris " masculine ; -- [DEXDS] :: fornicator; man (usu. unmarried) who has voluntary sex with (unmarried) woman; - fornicatrix_F_N = mkN "fornicatrix" "fornicatricis " feminine ; -- [DEXDS] :: fornicatress; woman (unmarried) who has sex; prostitute/whore; + fornicatio_F_N = mkN "fornicatio" "fornicationis" feminine ; -- [DEXCS] :: |fornication, (unmarried) sex; prostitution/whoredom; + fornicator_M_N = mkN "fornicator" "fornicatoris" masculine ; -- [DEXDS] :: fornicator; man (usu. unmarried) who has voluntary sex with (unmarried) woman; + fornicatrix_F_N = mkN "fornicatrix" "fornicatricis" feminine ; -- [DEXDS] :: fornicatress; woman (unmarried) who has sex; prostitute/whore; fornicatus_A = mkA "fornicatus" "fornicata" "fornicatum" ; -- [XXXEO] :: arched, vaulted; (Via Fornicata, a street in Rome); fornico_V = mkV "fornicare" ; -- [FEXCE] :: fornicate; commit fornication/whoredom; prostitute/devote to unworthy use (Def); fornicor_V = mkV "fornicari" ; -- [DEXCS] :: fornicate; commit fornication/whoredom; prostitute/devote to unworthy use (Def); - fornix_M_N = mkN "fornix" "fornicis " masculine ; -- [XXXDX] :: arch, vault, vaulted opening; monument arch; brothel, cellar for prostitution; - forpex_F_N = mkN "forpex" "forpicis " feminine ; -- [XXXEO] :: tongs, pincers; shears; - fors_F_N = mkN "fors" "fortis " feminine ; -- [XXXBX] :: chance; luck, fortune; accident; + fornix_M_N = mkN "fornix" "fornicis" masculine ; -- [XXXDX] :: arch, vault, vaulted opening; monument arch; brothel, cellar for prostitution; + forpex_F_N = mkN "forpex" "forpicis" feminine ; -- [XXXEO] :: tongs, pincers; shears; + fors_F_N = mkN "fors" "fortis" feminine ; -- [XXXBX] :: chance; luck, fortune; accident; forsan_Adv = mkAdv "forsan" ; -- [XXXDX] :: perhaps; forsit_Adv = mkAdv "forsit" ; -- [XXXDX] :: perhaps; forsitam_Adv = mkAdv "forsitam" ; -- [EXXFP] :: perhaps; (= forsitan); @@ -20520,11 +20513,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat fortassis_Adv = mkAdv "fortassis" ; -- [XXXCO] :: perhaps, possibly; it may be; forte_Adv = mkAdv "forte" ; -- [XXXDX] :: by chance; perhaps, perchance; as luck would have it; forticulus_A = mkA "forticulus" "forticula" "forticulum" ; -- [XXXEC] :: fairly bold; - fortificatio_F_N = mkN "fortificatio" "fortificationis " feminine ; -- [FEXDF] :: strengthening, fortifying; fortification; [~ missa => celebration of mass]; + 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; 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; + fortitudo_F_N = mkN "fortitudo" "fortitudinis" feminine ; -- [XXXBX] :: strength, courage, valor; firmness; fortuito_Adv = mkAdv "fortuito" ; -- [XXXDX] :: accidentally, by chance, fortuitously; casually; fortuitu_Adv = mkAdv "fortuitu" ; -- [DXXDX] :: accidentally, by chance, fortuitously; casually; fortuitum_N_N = mkN "fortuitum" ; -- [XXXDX] :: accidents (pl.), casualties; @@ -20542,22 +20535,22 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat fossatus_A = mkA "fossatus" "fossata" "fossatum" ; -- [XXXFZ] :: ditch-provided; fossatus_M_N = mkN "fossatus" ; -- [DXXES] :: boundary; (defined by a ditch?); fossicius_A = mkA "fossicius" "fossicia" "fossicium" ; -- [XAXES] :: dug up; dug out; - fossile_N_N = mkN "fossile" "fossilis " neuter ; -- [GXXEK] :: fossil; + fossile_N_N = mkN "fossile" "fossilis" neuter ; -- [GXXEK] :: fossil; fossilis_A = mkA "fossilis" "fossilis" "fossile" ; -- [XXXES] :: dug up/out; fossil-; - fossio_F_N = mkN "fossio" "fossionis " feminine ; -- [XXXFS] :: digging; ditch; - fossor_M_N = mkN "fossor" "fossoris " masculine ; -- [XXXDX] :: one who digs the ground; + fossio_F_N = mkN "fossio" "fossionis" feminine ; -- [XXXFS] :: digging; ditch; + 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.); + 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; + fragilitas_F_N = mkN "fragilitas" "fragilitatis" feminine ; -- [XXXDX] :: brittleness; frailty; fraglans_A = mkA "fraglans" "fraglantis"; -- [XXXBO] :: |burning (w/desire), ardent/passionate; outrageous/monstrous/flagrant (crime); fraglanter_Adv =mkAdv "fraglanter" "fraglantius" "fraglantissime" ; -- [XXXEO] :: ardently, passionately; vehemently, heatedly; eagerly; fraglantia_F_N = mkN "fraglantia" ; -- [XXXCO] :: blaze, burning; scorching heat; passionate glow (eyes); passionate love/ardor; - fragmen_N_N = mkN "fragmen" "fragminis " neuter ; -- [XXXDX] :: fragment, piece broken off; fragments (pl.), chips, ruins; chips of wood (pl.); + fragmen_N_N = mkN "fragmen" "fragminis" neuter ; -- [XXXDX] :: fragment, piece broken off; fragments (pl.), chips, ruins; chips of wood (pl.); fragmentum_N_N = mkN "fragmentum" ; -- [XXXDX] :: fragment; - fragor_M_N = mkN "fragor" "fragoris " masculine ; -- [XXXDX] :: noise, crash; + fragor_M_N = mkN "fragor" "fragoris" masculine ; -- [XXXDX] :: noise, crash; fragosus_A = mkA "fragosus" "fragosa" "fragosum" ; -- [XXXDX] :: brittle; ragged; fragrantia_F_N = mkN "fragrantia" ; -- [FXXEK] :: perfume; fragro_V = mkV "fragrare" ; -- [XXXDX] :: smell strongly; @@ -20565,10 +20558,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + fraternitas_F_N = mkN "fraternitas" "fraternitatis" feminine ; -- [XXXDO] :: brotherhood, fraternity; the relationship of brothers; fraternus_A = mkA "fraternus" "fraterna" "fraternum" ; -- [XXXCO] :: brotherly/brother's; of/belonging to a brother; fraternal; friendly; of cousin; fratricida_M_N = mkN "fratricida" ; -- [XXXEC] :: one who kills a brother, a fratricide; fraudo_V2 = mkV2 (mkV "fraudare") ; -- [XXXBO] :: |embezzle, take (money) dishonestly, steal; violate; evade/trick intent of law; @@ -20576,17 +20569,17 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat fraudulentia_F_N = mkN "fraudulentia" ; -- [XXXFO] :: fraud, deceit; dishonesty; knavery; deceitfulness; disposition to defraud; 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; + 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; fraxinus_A = mkA "fraxinus" "fraxina" "fraxinum" ; -- [XXXDX] :: of ash; ashen; fraxinus_F_N = mkN "fraxinus" ; -- [XXXDX] :: ash-tree; spear or javelin of ash; 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; + 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; + 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; @@ -20597,20 +20590,20 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat fretum_N_N = mkN "fretum" ; -- [XXXBX] :: sea; narrow sea, straits; fretus_A = mkA "fretus" "freta" "fretum" ; -- [XXXDX] :: relying on, trusting to, supported by (w/ABL); fribusculum_N_N = mkN "fribusculum" ; -- [DXXES] :: slight cold; coolness/disagreement between man and wife; (frigus-culus); - fricatio_F_N = mkN "fricatio" "fricationis " feminine ; -- [EXXES] :: rubbing; friction; - fricatus_M_N = mkN "fricatus" "fricatus " masculine ; -- [DXXNS] :: rubbing-down (Pliny); + fricatio_F_N = mkN "fricatio" "fricationis" feminine ; -- [EXXES] :: rubbing; friction; + fricatus_M_N = mkN "fricatus" "fricatus" masculine ; -- [DXXNS] :: rubbing-down (Pliny); frico_V = mkV "fricare" ; -- [XXXDX] :: rub, chafe; - 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); + 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); 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; 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; + 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; @@ -20625,90 +20618,90 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat frixura_F_N = mkN "frixura" ; -- [DXXES] :: frying pan; frixus_A = mkA "frixus" "frixa" "frixum" ; -- [XXXES] :: roasted; fried; fromo_V = mkV "fromare" ; -- [XXXEZ] :: throw up; - frondator_M_N = mkN "frondator" "frondatoris " masculine ; -- [XAXDX] :: pruner; + 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); 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; - frons_F_N = mkN "frons" "frontis " feminine ; -- [XXXAX] :: forehead, brow; face; look; front; fore part of anything; - frons_M_N = mkN "frons" "frontis " masculine ; -- [XXXAX] :: forehead, brow; face; look; front; fore part of anything; - frontal_N_N = mkN "frontal" "frontalis " neuter ; -- [XAXEC] :: frontlet (pl.) of a horse; - fronto_M_N = mkN "fronto" "frontonis " masculine ; -- [XXXFO] :: man with broad/bulging forehead; + frons_F_N = mkN "frons" "frontis" feminine ; -- [XXXAX] :: forehead, brow; face; look; front; fore part of anything; + frons_M_N = mkN "frons" "frontis" masculine ; -- [XXXAX] :: forehead, brow; face; look; front; fore part of anything; + frontal_N_N = mkN "frontal" "frontalis" neuter ; -- [XAXEC] :: frontlet (pl.) of a horse; + fronto_M_N = mkN "fronto" "frontonis" masculine ; -- [XXXFO] :: man with broad/bulging forehead; fructifer_A = mkA "fructifer" "fructifera" "fructiferum" ; -- [XAXEO] :: fruitful; fruit-bearing, bearing fruit; 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; 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; + fructus_M_N = mkN "fructus" "fructus" masculine ; -- [XXXAX] :: produce, crops; fruit; profit; enjoyment; reward; frucuosus_A = mkA "frucuosus" "frucuosa" "frucuosum" ; -- [XXXDX] :: fruitful; profitable; 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; + 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; 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; frugiparus_A = mkA "frugiparus" "frugipara" "frugiparum" ; -- [XXXEC] :: fruitful, prolific; - fruitio_F_N = mkN "fruitio" "fruitionis " feminine ; -- [XXXDS] :: enjoyment; + fruitio_F_N = mkN "fruitio" "fruitionis" feminine ; -- [XXXDS] :: enjoyment; frumentarius_A = mkA "frumentarius" "frumentaria" "frumentarium" ; -- [XXXDX] :: grain producing; of/concerning grain; [res frumentaria => grain supply]; - frumentatio_F_N = mkN "frumentatio" "frumentationis " feminine ; -- [XXXDX] :: foraging; collecting of grain; - frumentator_M_N = mkN "frumentator" "frumentatoris " masculine ; -- [XXXDX] :: forager; + frumentatio_F_N = mkN "frumentatio" "frumentationis" feminine ; -- [XXXDX] :: foraging; collecting of grain; + 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; 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); + 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; - frustramen_N_N = mkN "frustramen" "frustraminis " neuter ; -- [XXXEC] :: deception; - frustratio_F_N = mkN "frustratio" "frustrationis " feminine ; -- [XXXDX] :: deceiving, disappointment; + frustramen_N_N = mkN "frustramen" "frustraminis" neuter ; -- [XXXEC] :: deception; + frustratio_F_N = mkN "frustratio" "frustrationis" feminine ; -- [XXXDX] :: deceiving, disappointment; frustro_V2 = mkV2 (mkV "frustrare") ; -- [EXXDP] :: |reject; delay; rob/defraud/cheat; pretend; refute (argument); corrupt/falsify; frustror_V = mkV "frustrari" ; -- [EXXCP] :: |reject; delay; rob/defraud/cheat; pretend; refute (argument); corrupt/falsify; frustum_N_N = mkN "frustum" ; -- [XXXDX] :: crumb, morsel, scrap of food; frutectosus_A = mkA "frutectosus" "frutectosa" "frutectosum" ; -- [XXXNO] :: shrubby, abounding in thickets; bushy, resembling a bush/shrub; frutectum_N_N = mkN "frutectum" ; -- [XXXCO] :: thicket of shrubs/bushes, covert; shrubs/bushes (pl.); frutetum_N_N = mkN "frutetum" ; -- [XXXDS] :: thicket, covert; place full of shrubs/bushes; - frutex_M_N = mkN "frutex" "fruticis " masculine ; -- [XXXCO] :: shrub, bush; shoot, stem, stalk, growth; "blockhead"; + frutex_M_N = mkN "frutex" "fruticis" masculine ; -- [XXXCO] :: shrub, bush; shoot, stem, stalk, growth; "blockhead"; fruticetum_N_N = mkN "fruticetum" ; -- [XXXDS] :: thicket, covert; place full of shrubs/bushes; frutico_V = mkV "fruticare" ; -- [XAXCO] :: put forth shoots, bush/branch out; (antlers); become bushy, grow thickly (hair); fruticor_V = mkV "fruticari" ; -- [XAXBO] :: put forth shoots, bush/branch out; (antlers); become bushy, grow thickly (hair); fruticosus_A = mkA "fruticosus" "fruticosa" "fruticosum" ; -- [XXXDX] :: bushy; - frux_F_N = mkN "frux" "frugis " feminine ; -- [XXXBX] :: crops (pl.), fruits, produce, legumes; honest men; + frux_F_N = mkN "frux" "frugis" feminine ; -- [XXXBX] :: crops (pl.), fruits, produce, legumes; honest men; fuco_V = mkV "fucare" ; -- [XXXDX] :: color; paint; dye; fucosus_A = mkA "fucosus" "fucosa" "fucosum" ; -- [XXXDX] :: sham, bogus; 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; + 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; + 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; + 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; 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; + 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; + 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); fulguritus_A = mkA "fulguritus" "fulgurita" "fulguritum" ; -- [XXXEC] :: struck by lightning; fulguro_V = mkV "fulgurare" ; -- [XXXCO] :: glitter/flash/shine brightly, gleam; light up; (IMPERS) it lightens; fulica_F_N = mkN "fulica" ; -- [XXXDX] :: water-fowl; (probably coot); - fuligo_F_N = mkN "fuligo" "fuliginis " feminine ; -- [XXXDX] :: soot; lamp-black; - fullo_M_N = mkN "fullo" "fullonis " masculine ; -- [XXXEC] :: cloth-fuller; + fuligo_F_N = mkN "fuligo" "fuliginis" feminine ; -- [XXXDX] :: soot; lamp-black; + fullo_M_N = mkN "fullo" "fullonis" masculine ; -- [XXXEC] :: cloth-fuller; fullonia_F_N = mkN "fullonia" ; -- [XTXFS] :: fuller's trade; fullonica_F_N = mkN "fullonica" ; -- [XXXEC] :: art of fulling; fullonium_N_N = mkN "fullonium" ; -- [XTXFS] :: fuller's shop; - fulmen_N_N = mkN "fulmen" "fulminis " neuter ; -- [XXXBX] :: lightning, flash; thunderbolt; crushing blow; + fulmen_N_N = mkN "fulmen" "fulminis" neuter ; -- [XXXBX] :: lightning, flash; thunderbolt; crushing blow; fulmenta_F_N = mkN "fulmenta" ; -- [XXXES] :: prop; support; shoe-heel; fulmentum_N_N = mkN "fulmentum" ; -- [XXXES] :: bedpost; prop; support; fulmineus_A = mkA "fulmineus" "fulminea" "fulmineum" ; -- [XXXDX] :: of lightning; destructive; @@ -20716,7 +20709,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat fultus_A = mkA "fultus" "fulta" "fultum" ; -- [XXXDX] :: propped up; supported; fulvus_A = mkA "fulvus" "fulva" "fulvum" ; -- [XXXBX] :: tawny, reddish yellow; yellow; fumaculum_N_N = mkN "fumaculum" ; -- [GXXEK] :: pipe; - fumator_M_N = mkN "fumator" "fumatoris " masculine ; -- [GXXEK] :: smoker; + fumator_M_N = mkN "fumator" "fumatoris" masculine ; -- [GXXEK] :: smoker; fumeus_A = mkA "fumeus" "fumea" "fumeum" ; -- [XXXDX] :: smoky; fumidus_A = mkA "fumidus" "fumida" "fumidum" ; -- [XXXDX] :: full of smoke, smoky; fumifer_A = mkA "fumifer" "fumifera" "fumiferum" ; -- [XXXDX] :: smoky; @@ -20731,64 +20724,64 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat fumo_V = mkV "fumare" ; -- [XXXDX] :: smoke, steam, fume, reek; fumosus_A = mkA "fumosus" "fumosa" "fumosum" ; -- [XXXDX] :: full of smoke, smoky, smoked; gray-smoke-colored (Cal); fumus_M_N = mkN "fumus" ; -- [XXXBX] :: smoke, steam, vapor, fume; - funale_N_N = mkN "funale" "funalis " neuter ; -- [XXXDX] :: torch of wax or tallow soaked rope; chandelier; + funale_N_N = mkN "funale" "funalis" neuter ; -- [XXXDX] :: torch of wax or tallow soaked rope; chandelier; funambulus_M_N = mkN "funambulus" ; -- [XXXEC] :: rope-dancer; - functio_F_N = mkN "functio" "functionis " feminine ; -- [GSXEK] :: |function (math.); + functio_F_N = mkN "functio" "functionis" feminine ; -- [GSXEK] :: |function (math.); functionalis_A = mkA "functionalis" "functionalis" "functionale" ; -- [GXXEK] :: functional; functionaliter_Adv = mkAdv "functionaliter" ; -- [GXXEK] :: functionally; funda_F_N = mkN "funda" ; -- [XXXDX] :: sling; casting net; pocket (Cal); - fundaitor_M_N = mkN "fundaitor" "fundaitoris " masculine ; -- [XXXDX] :: founder; - fundamen_N_N = mkN "fundamen" "fundaminis " neuter ; -- [XXXDX] :: foundation; + fundaitor_M_N = mkN "fundaitor" "fundaitoris" masculine ; -- [XXXDX] :: founder; + fundamen_N_N = mkN "fundamen" "fundaminis" neuter ; -- [XXXDX] :: foundation; fundamentum_N_N = mkN "fundamentum" ; -- [XXXBX] :: foundation; beginning; basis; - fundatio_F_N = mkN "fundatio" "fundationis " feminine ; -- [FXXFM] :: foundation; E:endowment; G:basis; - fundatrix_F_N = mkN "fundatrix" "fundatricis " feminine ; -- [FXXFM] :: foundress; she who founded/founds; + fundatio_F_N = mkN "fundatio" "fundationis" feminine ; -- [FXXFM] :: foundation; E:endowment; G:basis; + fundatrix_F_N = mkN "fundatrix" "fundatricis" feminine ; -- [FXXFM] :: foundress; she who founded/founds; fundibalarius_M_N = mkN "fundibalarius" ; -- [EXXES] :: slinger; (classical funditor); fundibalum_N_N = mkN "fundibalum" ; -- [DWXDS] :: catapult, slinging/hurling machine; fundibalus_M_N = mkN "fundibalus" ; -- [DWXDS] :: catapult, slinging/hurling machine; fundibulum_N_N = mkN "fundibulum" ; -- [DWXDS] :: catapult, slinging/hurling machine; fundimentum_N_N = mkN "fundimentum" ; -- [XXXDX] :: foundation, ground work, basis; - funditor_M_N = mkN "funditor" "funditoris " masculine ; -- [XXXDX] :: slinger; + funditor_M_N = mkN "funditor" "funditoris" masculine ; -- [XXXDX] :: slinger; 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; + 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.); + funebre_N_N = mkN "funebre" "funebris" neuter ; -- [XXXDX] :: funeral rites (pl.); funebris_A = mkA "funebris" "funebris" "funebre" ; -- [XXXDX] :: funeral, deadly, fatal; funereal; funereus_A = mkA "funereus" "funerea" "funereum" ; -- [XXXDX] :: funereal; deadly; fatal; funero_V2 = mkV2 (mkV "funerare") ; -- [XXXEC] :: bury solemnly, inter with the funeral rites; 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); + 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; - funis_M_N = mkN "funis" "funis " masculine ; -- [XXXDX] :: rope; line, cord, sheet, cable; measuring-line/rope, lot (Plater); + funis_M_N = mkN "funis" "funis" masculine ; -- [XXXDX] :: rope; line, cord, sheet, cable; measuring-line/rope, lot (Plater); funivia_F_N = mkN "funivia" ; -- [GTXEK] :: cablecar; - funus_N_N = mkN "funus" "funeris " neuter ; -- [XXXAX] :: burial, funeral; funeral rites; ruin; corpse; death; - fur_F_N = mkN "fur" "furis " feminine ; -- [XXXBO] :: thief, robber; robber bee; the Devil (personified) (Souter); - fur_M_N = mkN "fur" "furis " masculine ; -- [XXXBO] :: thief, robber; robber bee; the Devil (personified) (Souter); + funus_N_N = mkN "funus" "funeris" neuter ; -- [XXXAX] :: burial, funeral; funeral rites; ruin; corpse; death; + fur_F_N = mkN "fur" "furis" feminine ; -- [XXXBO] :: thief, robber; robber bee; the Devil (personified) (Souter); + fur_M_N = mkN "fur" "furis" masculine ; -- [XXXBO] :: thief, robber; robber bee; the Devil (personified) (Souter); furax_A = mkA "furax" "furacis"; -- [FXXEN] :: thieving (Collins); inclined to steal (Nelson); furca_F_N = mkN "furca" ; -- [XXXDX] :: (two-pronged) fork; prop; furcifer_M_N = mkN "furcifer" ; -- [XXXDX] :: yoke-bearer; rascal, scoundrel, rogue; gallows-bird; jailbird; furcilla_F_N = mkN "furcilla" ; -- [XXXEC] :: little fork; furcillo_V2 = mkV2 (mkV "furcillare") ; -- [XXXEC] :: support; furcula_F_N = mkN "furcula" ; -- [XXXDX] :: forked prop; forks (pl.), narrow pass (esp. the Caudine Forks); - furfur_F_N = mkN "furfur" "furfuris " feminine ; -- [XAXCO] :: husks of grain, bran; scaly infection of the skin; - furfur_M_N = mkN "furfur" "furfuris " masculine ; -- [XAXCO] :: husks of grain, bran; scaly infection of the skin; + furfur_F_N = mkN "furfur" "furfuris" feminine ; -- [XAXCO] :: husks of grain, bran; scaly infection of the skin; + furfur_M_N = mkN "furfur" "furfuris" masculine ; -- [XAXCO] :: husks of grain, bran; scaly infection of the skin; furia_F_N = mkN "furia" ; -- [XXXDX] :: frenzy, fury; rage (pl.); mad craving; Furies, avenging spirits; furialis_A = mkA "furialis" "furialis" "furiale" ; -- [XXXDX] :: frenzied, mad; avenging; furibundus_A = mkA "furibundus" "furibunda" "furibundum" ; -- [XXXDX] :: raging, mad, furious; inspired; furio_V = mkV "furiare" ; -- [XXXDX] :: madden, enrage; 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?); + 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; 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_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); - furs_M_N = mkN "furs" "furis " masculine ; -- [DXXFP] :: thief, robber; robber bee; the Devil (personified); + furs_F_N = mkN "furs" "furis" feminine ; -- [DXXFP] :: thief, robber; robber bee; the Devil (personified); + furs_M_N = mkN "furs" "furis" masculine ; -- [DXXFP] :: thief, robber; robber bee; the Devil (personified); furtificus_A = mkA "furtificus" "furtifica" "furtificum" ; -- [XXXDX] :: thievish; furtim_Adv = mkAdv "furtim" ; -- [XXXBX] :: stealthily, secretly; imperceptibly; furtivus_A = mkA "furtivus" "furtiva" "furtivum" ; -- [XXXDX] :: stolen; secret, furtive; @@ -20802,14 +20795,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat fusiformis_A = mkA "fusiformis" "fusiformis" "fusiforme" ; -- [GXXEK] :: spindle-shaped; fusilis_A = mkA "fusilis" "fusilis" "fusile" ; -- [XXXDX] :: molded; molten, fluid, liquid; fustibalus_M_N = mkN "fustibalus" ; -- [XWXES] :: sling-staff; - fustis_M_N = mkN "fustis" "fustis " masculine ; -- [XXXDX] :: staff club; stick; + fustis_M_N = mkN "fustis" "fustis" masculine ; -- [XXXDX] :: staff club; stick; fustuarium_N_N = mkN "fustuarium" ; -- [XXXDX] :: death by beating (punishment meted out to soldiers); fusus_A = mkA "fusus" "fusa" "fusum" ; -- [XXXDX] :: spread out, broad, flowing; fusus_M_N = mkN "fusus" ; -- [XXXDX] :: spindle; (e.g., of the Fates); 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); + 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; @@ -20823,7 +20816,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat galaxia_F_N = mkN "galaxia" ; -- [FSXEM] :: the Milky Way; galaxicus_A = mkA "galaxicus" "galaxica" "galaxicum" ; -- [GXXEK] :: galactic; galba_F_N = mkN "galba" ; -- [XXXES] :: small worm, ash borer/larva of ash spinner; fat paunch, big belly; - galbanen_N_N = mkN "galbanen" "galbaninis " neuter ; -- [EAQEW] :: gum resin of umbelliferous plant in Persia/Syria (species of Ferula), galbanum; + galbanen_N_N = mkN "galbanen" "galbaninis" neuter ; -- [EAQEW] :: gum resin of umbelliferous plant in Persia/Syria (species of Ferula), galbanum; galbanum_N_N = mkN "galbanum" ; -- [XAQES] :: gum resin of umbelliferous plant in Persia/Syria (species of Ferula), galbanum; galbanus_A = mkA "galbanus" "galbana" "galbanum" ; -- [XAXEO] :: galbaneous, characteristic of galbanum/gum resin from species of Ferula; galbeolus_M_N = mkN "galbeolus" ; -- [XAXFO] :: bee-eater; @@ -20853,28 +20846,28 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat gallus_M_N = mkN "gallus" ; -- [XXXDX] :: cock, rooster; gammarus_M_N = mkN "gammarus" ; -- [XAXEO] :: lobster, sea crab; 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; + 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; + 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); garda_F_N = mkN "garda" ; -- [FLXFM] :: wardship; guardianship; town-division; gardinum_N_N = mkN "gardinum" ; -- [FAXEM] :: garden; gargarisso_V = mkV "gargarissare" ; -- [XBXDO] :: gargle; - gargarizatio_F_N = mkN "gargarizatio" "gargarizationis " feminine ; -- [XBXEO] :: gargling, action of gargling; + 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); + 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; garum_N_N = mkN "garum" ; -- [XXXEC] :: fish-sauce; - garyophyllon_N_N = mkN "garyophyllon" "garyophylli " neuter ; -- [XAXNO] :: dried flower-buds of the clove; cloves; + garyophyllon_N_N = mkN "garyophyllon" "garyophylli" neuter ; -- [XAXNO] :: dried flower-buds of the clove; cloves; gasalis_A = mkA "gasalis" "gasalis" "gasale" ; -- [GXXEK] :: of gas, to gas; gasificatrum_N_N = mkN "gasificatrum" ; -- [GTXEK] :: carburetor; gasometrum_N_N = mkN "gasometrum" ; -- [GTXEK] :: gasometer; gasosus_A = mkA "gasosus" "gasosa" "gasosum" ; -- [GXXEK] :: sparkling; - gastritis_F_N = mkN "gastritis" "gastritidis " feminine ; -- [GBXEK] :: gastritis, inflammation of the stomach; + gastritis_F_N = mkN "gastritis" "gastritidis" feminine ; -- [GBXEK] :: gastritis, inflammation of the stomach; gasum_N_N = mkN "gasum" ; -- [GXXEK] :: gas; gata_F_N = mkN "gata" ; -- [FXXEM] :: bowl, trough; jar; gateleia_F_N = mkN "gateleia" ; -- [FXXFM] :: toll, payment for passage; @@ -20888,8 +20881,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat gaunacuma_F_N = mkN "gaunacuma" ; -- [XXXDX] :: oriental cloak; gausapa_F_N = mkN "gausapa" ; -- [XXXCO] :: cloth of woolen frieze (coarse wool cloth w/nap); cloak of this material; gausapatus_A = mkA "gausapatus" "gausapata" "gausapatum" ; -- [XXXEO] :: wearing cloak/cloth of woolen frieze (coarse wool cloth w/nap); - gausape_N_N = mkN "gausape" "gausapis " neuter ; -- [XXXCO] :: cloth of woolen frieze (coarse wool cloth w/nap); cloak of this material; - gausapes_F_N = mkN "gausapes" "gausapis " feminine ; -- [XXXCO] :: cloth of woolen frieze (coarse wool cloth w/nap); cloak of this material; + gausape_N_N = mkN "gausape" "gausapis" neuter ; -- [XXXCO] :: cloth of woolen frieze (coarse wool cloth w/nap); cloak of this material; + gausapes_F_N = mkN "gausapes" "gausapis" feminine ; -- [XXXCO] :: cloth of woolen frieze (coarse wool cloth w/nap); cloak of this material; gausapina_F_N = mkN "gausapina" ; -- [GXXEK] :: bath-towel; gausapinus_A = mkA "gausapinus" "gausapina" "gausapinum" ; -- [XXXDO] :: made of cloth of woolen frieze (coarse wool cloth w/nap); gausapum_N_N = mkN "gausapum" ; -- [XXXCO] :: cloth of woolen frieze (coarse wool cloth w/nap); cloak of this material; @@ -20899,7 +20892,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat gazophylachium_N_N = mkN "gazophylachium" ; -- [DEHEF] :: treasury (royal); offertory box; gehenna_F_N = mkN "gehenna" ; -- [DEQDS] :: hell; (from valley near Jerusalem where children were sacrificed to Moloch); gehennalis_A = mkA "gehennalis" "gehennalis" "gehennale" ; -- [DEQES] :: hellish, of hell; (from valley where children were sacrificed to Moloch); - gelamen_N_N = mkN "gelamen" "gelaminis " neuter ; -- [FXXEM] :: assembly, gathering; + gelamen_N_N = mkN "gelamen" "gelaminis" neuter ; -- [FXXEM] :: assembly, gathering; gelasinus_M_N = mkN "gelasinus" ; -- [XXXEC] :: dimple; gelatina_F_N = mkN "gelatina" ; -- [GXXEK] :: gelatin; gelatorius_A = mkA "gelatorius" "gelatoria" "gelatorium" ; -- [GXXEK] :: freezing; @@ -20911,83 +20904,83 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat gelide_Adv = mkAdv "gelide" ; -- [XXXDX] :: sluggishly, without enthusiasm; coldly, weakly, feebly; gelidus_A = mkA "gelidus" "gelida" "gelidum" ; -- [XXXBX] :: ice cold, icy; gelo_V = mkV "gelare" ; -- [XXXDX] :: cause to freeze; (pass.) be frozen, be chilled; - gelu_N_N = mkN "gelu" "gelus " neuter ; -- [XXXCO] :: frost, ice, snow; frosty weather; cold, chilliness (of old age/death/fear); + gelu_N_N = mkN "gelu" "gelus" neuter ; -- [XXXCO] :: frost, ice, snow; frosty weather; cold, chilliness (of old age/death/fear); gelum_N_N = mkN "gelum" ; -- [XXXCO] :: frost, ice, snow; frosty weather; cold, chilliness (of old age/death/fear); - gelus_M_N = mkN "gelus" "gelus " masculine ; -- [XXXCO] :: frost, ice, snow; frosty weather; cold, chilliness (of old age/death/fear); + gelus_M_N = mkN "gelus" "gelus" masculine ; -- [XXXCO] :: frost, ice, snow; frosty weather; cold, chilliness (of old age/death/fear); gemebundus_A = mkA "gemebundus" "gemebunda" "gemebundum" ; -- [XXXEC] :: groaning, sighing; - gemellio_F_N = mkN "gemellio" "gemellionis " feminine ; -- [FXXFE] :: small cruet; + gemellio_F_N = mkN "gemellio" "gemellionis" feminine ; -- [FXXFE] :: small cruet; gemellipara_F_N = mkN "gemellipara" ; -- [XXXEC] :: twin-bearing; gemellus_A = mkA "gemellus" "gemella" "gemellum" ; -- [XXXDX] :: twin-born; gemellus_M_N = mkN "gemellus" ; -- [XXXDX] :: twin; - geminatio_F_N = mkN "geminatio" "geminationis " feminine ; -- [XXXDS] :: doubling; + geminatio_F_N = mkN "geminatio" "geminationis" feminine ; -- [XXXDS] :: doubling; gemino_V = mkV "geminare" ; -- [XXXDX] :: double; repeat; double the force of; pair (with); geminus_A = mkA "geminus" "gemina" "geminum" ; -- [XXXBX] :: twin, double; twin-born; both; geminus_M_N = mkN "geminus" ; -- [XXXDX] :: twins (pl.); - gemitus_M_N = mkN "gemitus" "gemitus " masculine ; -- [XXXBX] :: groan, sigh; roaring; + gemitus_M_N = mkN "gemitus" "gemitus" masculine ; -- [XXXBX] :: groan, sigh; roaring; gemma_F_N = mkN "gemma" ; -- [XXXBO] :: bud; jewel, gem, precious stone; amber; cup (material); seal, signet; game piece gemmarius_M_N = mkN "gemmarius" ; -- [XXXIO] :: jeweler; gemmatus_A = mkA "gemmatus" "gemmata" "gemmatum" ; -- [XXXDX] :: jeweled; 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); + 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; genealogus_M_N = mkN "genealogus" ; -- [XXXEC] :: genealogist; gener_M_N = mkN "gener" ; -- [XXXBX] :: son-in-law; generalis_A = mkA "generalis" "generalis" "generale" ; -- [XXXBO] :: general, generic; shared by/common to a class/kind; of the nature of a thing; - generalis_M_N = mkN "generalis" "generalis " masculine ; -- [GWXEK] :: general (military rank); - generalitas_F_N = mkN "generalitas" "generalitatis " feminine ; -- [DXXES] :: generality; + 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; + 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; - generator_M_N = mkN "generator" "generatoris " masculine ; -- [XXXDX] :: begetter, father, sire; + generator_M_N = mkN "generator" "generatoris" masculine ; -- [XXXDX] :: begetter, father, sire; generatrum_N_N = mkN "generatrum" ; -- [GXXEK] :: generator; - generilitas_F_N = mkN "generilitas" "generilitatis " feminine ; -- [FXXFZ] :: generality; + generilitas_F_N = mkN "generilitas" "generilitatis" feminine ; -- [FXXFZ] :: generality; genero_V = mkV "generare" ; -- [XXXDX] :: beget, father, produce, procreate; spring/descend from (PASSIVE); generose_Adv =mkAdv "generose" "generosius" "generosissime" ; -- [XXXDX] :: nobly; with dignity; - generositas_F_N = mkN "generositas" "generositatis " feminine ; -- [XXXDO] :: breeding, excellence/nobility (of stock/men/animals/plants); generosity; + generositas_F_N = mkN "generositas" "generositatis" feminine ; -- [XXXDO] :: breeding, excellence/nobility (of stock/men/animals/plants); generosity; generosus_A = mkA "generosus" "generosa" "generosum" ; -- [XXXBX] :: noble, of noble birth; of good family/stock; - genes_F_N = mkN "genes" "genesis " feminine ; -- [XXXCO] :: birth, nativity, beginning; one's birth (astrologically), horoscope, destiny; + genes_F_N = mkN "genes" "genesis" feminine ; -- [XXXCO] :: birth, nativity, beginning; one's birth (astrologically), horoscope, destiny; genesta_F_N = mkN "genesta" ; -- [XXXDX] :: Spanish broom, greenweed and similar shrubs; genetica_F_N = mkN "genetica" ; -- [HSXEK] :: genetic; geneticus_A = mkA "geneticus" "genetica" "geneticum" ; -- [HSXEK] :: genetic; genetivus_A = mkA "genetivus" "genetiva" "genetivum" ; -- [XXXDX] :: acquired at birth; - genetrix_F_N = mkN "genetrix" "genetricis " feminine ; -- [XXXBX] :: mother, ancestress; + genetrix_F_N = mkN "genetrix" "genetricis" feminine ; -- [XXXBX] :: mother, ancestress; genialis_A = mkA "genialis" "genialis" "geniale" ; -- [XXXDX] :: nuptial, connected with marriage; festive, merry, genial; geniculatus_A = mkA "geniculatus" "geniculata" "geniculatum" ; -- [XXXEC] :: knotty, full of knots; - genimen_N_N = mkN "genimen" "geniminis " neuter ; -- [DEXES] :: product, fruit; progeny; brood (pl.); [~ viperarum => brood of vipers]; + genimen_N_N = mkN "genimen" "geniminis" neuter ; -- [DEXES] :: product, fruit; progeny; brood (pl.); [~ viperarum => brood of vipers]; genista_F_N = mkN "genista" ; -- [XXXDX] :: Spanish broom, greenweed and similar shrubs; - genital_N_N = mkN "genital" "genitalis " neuter ; -- [XXXDX] :: reproductive/genital organs (male or female); seminal fluid; + genital_N_N = mkN "genital" "genitalis" neuter ; -- [XXXDX] :: reproductive/genital organs (male or female); seminal fluid; genitalis_A = mkA "genitalis" "genitalis" "genitale" ; -- [XXXDX] :: of creation/procreation, reproductive; fruitful; connected with birth, inborn; - genitor_M_N = mkN "genitor" "genitoris " masculine ; -- [XXXBX] :: father; creator; originator; + 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; 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; + genoma_N_N = mkN "genoma" "genomatis" neuter ; -- [HSXEK] :: genome; + gens_F_N = mkN "gens" "gentis" feminine ; -- [XXXAX] :: tribe, clan; nation, people; Gentiles; gentiana_F_N = mkN "gentiana" ; -- [XAXFS] :: gentian herb (Pliny); genticus_A = mkA "genticus" "gentica" "genticum" ; -- [XXXEC] :: of a nation, national; - gentil_M_N = mkN "gentil" "gentilis " masculine ; -- [XXXDO] :: member of the same Roman gens; fellow countryman; + gentil_M_N = mkN "gentil" "gentilis" masculine ; -- [XXXDO] :: member of the same Roman gens; fellow countryman; gentilicius_A = mkA "gentilicius" "gentilicia" "gentilicium" ; -- [XXXDO] :: of/proper or belonging to a particular Roman gens; tribal, national; gentilis_A = mkA "gentilis" "gentilis" "gentile" ; -- [XXXCO] :: of same gens (Roman); of the same house or family/tribe or race; native; - gentilis_M_N = mkN "gentilis" "gentilis " masculine ; -- [GEXEK] :: pagan; + gentilis_M_N = mkN "gentilis" "gentilis" masculine ; -- [GEXEK] :: pagan; gentilismus_M_N = mkN "gentilismus" ; -- [GEXEK] :: heathenism; - gentilitas_F_N = mkN "gentilitas" "gentilitatis " feminine ; -- [DXXCS] :: kinship; relatives with same name; clan relationship; paganism; heathens/pagans; + gentilitas_F_N = mkN "gentilitas" "gentilitatis" feminine ; -- [DXXCS] :: kinship; relatives with same name; clan relationship; paganism; heathens/pagans; gentilitius_A = mkA "gentilitius" "gentilitia" "gentilitium" ; -- [XXXCS] :: of or belonging to a particular Roman gens; tribal, national; - 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; + 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; genum_N_N = mkN "genum" ; -- [HSXEK] :: gene; - genus_N_N = mkN "genus" "generis " neuter ; -- [XXXDX] :: |noble birth; kind/sort/variety; class/rank; mode/method/style/fashion/way; + genus_N_N = mkN "genus" "generis" neuter ; -- [XXXDX] :: |noble birth; kind/sort/variety; class/rank; mode/method/style/fashion/way; geocentricus_A = mkA "geocentricus" "geocentrica" "geocentricum" ; -- [GSXEK] :: geocentric; geocentrismus_M_N = mkN "geocentrismus" ; -- [GSXEK] :: geocentrism; geochemia_F_N = mkN "geochemia" ; -- [GSXEK] :: geochemistry; @@ -20998,62 +20991,62 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat geologia_F_N = mkN "geologia" ; -- [GSXEK] :: geology; geologicus_A = mkA "geologicus" "geologica" "geologicum" ; -- [GXXEK] :: geological; geologus_M_N = mkN "geologus" ; -- [GSXEK] :: geologist; - geometres_M_N = mkN "geometres" "geometrae " masculine ; -- [XSXEC] :: geometer; + geometres_M_N = mkN "geometres" "geometrae" masculine ; -- [XSXEC] :: geometer; geometria_F_N = mkN "geometria" ; -- [XXXDX] :: geometry; geometricus_A = mkA "geometricus" "geometrica" "geometricum" ; -- [XSXEC] :: geometrical; geometricus_M_N = mkN "geometricus" ; -- [XSXEC] :: geometer; georgicus_A = mkA "georgicus" "georgica" "georgicum" ; -- [XAXEC] :: agricultural; geriatria_F_N = mkN "geriatria" ; -- [GXXEK] :: geriatrics; germana_M_N = mkN "germana" ; -- [XXXDX] :: sister, own sister; full sister; - germanitas_F_N = mkN "germanitas" "germanitatis " feminine ; -- [XXXDX] :: brotherhood, sisterhood; affinity between things deriving from the same source; + germanitas_F_N = mkN "germanitas" "germanitatis" feminine ; -- [XXXDX] :: brotherhood, sisterhood; affinity between things deriving from the same source; germanus_A = mkA "germanus" "germana" "germanum" ; -- [XXXDX] :: own/full (of brother/sister); genuine, real, actual, true; germanus_M_N = mkN "germanus" ; -- [XXXDX] :: own brother; full brother; - germen_N_N = mkN "germen" "germinis " neuter ; -- [XAXBX] :: sprout, bud; shoot; + germen_N_N = mkN "germen" "germinis" neuter ; -- [XAXBX] :: sprout, bud; shoot; germinalis_A = mkA "germinalis" "germinalis" "germinale" ; -- [GXXEK] :: germinal; - germinatio_F_N = mkN "germinatio" "germinationis " feminine ; -- [XAXDS] :: sprouting forth; germination; a shoot; + 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); + 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!]; - gerro_M_N = mkN "gerro" "gerronis " masculine ; -- [XXXEO] :: term of opprobrium/disgrace/reproach; buffoon?; + gerro_M_N = mkN "gerro" "gerronis" masculine ; -- [XXXEO] :: term of opprobrium/disgrace/reproach; buffoon?; gerula_F_N = mkN "gerula" ; -- [XXXEO] :: bearer (female), porter, carrier; she who bears/carries (L+S); worker bee; gerulum_N_N = mkN "gerulum" ; -- [DXXFS] :: bearer, carrier; gerulus_M_N = mkN "gerulus" ; -- [XXXCO] :: bearer, porter, carrier; doer, one who does something; gerundium_N_N = mkN "gerundium" ; -- [GGXEK] :: gerund; gerundivum_N_N = mkN "gerundivum" ; -- [GGXEK] :: gerundive; verbal adjective; - 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; + 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; + 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; - gestus_M_N = mkN "gestus" "gestus " masculine ; -- [XXXDX] :: movement of the limbs, bodily action, carriage, gesture; performance (duty); + gestus_M_N = mkN "gestus" "gestus" masculine ; -- [XXXDX] :: movement of the limbs, bodily action, carriage, gesture; performance (duty); gibber_A = mkA "gibber" "gibbera" "gibberum" ; -- [XXXDX] :: humpbacked; - gibber_M_N = mkN "gibber" "gibberis " masculine ; -- [XXXDX] :: hump; + gibber_M_N = mkN "gibber" "gibberis" masculine ; -- [XXXDX] :: hump; 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); + 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; + gildo_M_N = mkN "gildo" "gildonis" masculine ; -- [FXXFM] :: camp-follower; gilvus_A = mkA "gilvus" "gilva" "gilvum" ; -- [XXXES] :: pale yellow; dun-colored (OLD); gimel_N = constN "gimel" neuter ; -- [DEQEW] :: gimel; (3rd letter of Hebrew alphabet); (transliterate as G); - gingiber_N_N = mkN "gingiber" "gingiberis " neuter ; -- [GXXEK] :: ginger; + gingiber_N_N = mkN "gingiber" "gingiberis" neuter ; -- [GXXEK] :: ginger; gingiva_F_N = mkN "gingiva" ; -- [XXXDX] :: gum (in which the teeth are set); 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); + glabrio_F_N = mkN "glabrio" "glabrionis" feminine ; -- [FXXFM] :: hairless-person; ringworm; L:Glabrio (Roman surname); glacialis_A = mkA "glacialis" "glacialis" "glaciale" ; -- [XXXDX] :: icy, frozen; glaciarium_N_N = mkN "glaciarium" ; -- [GXXEK] :: glacier; - glacies_F_N = mkN "glacies" "glaciei " feminine ; -- [XXXDX] :: ice; ice fields (pl.); + glacies_F_N = mkN "glacies" "glaciei" feminine ; -- [XXXDX] :: ice; ice fields (pl.); glacio_V = mkV "glaciare" ; -- [XXXEC] :: freeze; - gladiator_M_N = mkN "gladiator" "gladiatoris " masculine ; -- [XXXDX] :: gladiator; + gladiator_M_N = mkN "gladiator" "gladiatoris" masculine ; -- [XXXDX] :: gladiator; gladiatorius_A = mkA "gladiatorius" "gladiatoria" "gladiatorium" ; -- [XXXDX] :: gladiatorial; gladiatura_F_N = mkN "gladiatura" ; -- [XXXEC] :: profession of gladiator; gladiolus_M_N = mkN "gladiolus" ; -- [FAXEK] :: gladiolus; @@ -21061,32 +21054,32 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat glaeba_F_N = mkN "glaeba" ; -- [XXXDX] :: clod/lump of earth/turf; land, soil; hard soil; piece, lump, mass; glaesum_N_N = mkN "glaesum" ; -- [XXXEC] :: amber; glandifer_A = mkA "glandifer" "glandifera" "glandiferum" ; -- [XAXEO] :: acorn-bearing; - glans_F_N = mkN "glans" "glandis " feminine ; -- [XAXCO] :: mast/acorn/beechnut/chestnut; missile/bullet thrown/discharged from sling; + glans_F_N = mkN "glans" "glandis" feminine ; -- [XAXCO] :: mast/acorn/beechnut/chestnut; missile/bullet thrown/discharged from sling; glarea_F_N = mkN "glarea" ; -- [XXXDX] :: gravel; glareosus_A = mkA "glareosus" "glareosa" "glareosum" ; -- [XXXDX] :: gravelly; glaria_F_N = mkN "glaria" ; -- [FXXFM] :: gravel; earth; - glas_F_N = mkN "glas" "glandis " feminine ; -- [XAXEO] :: mast/acorn/beachnut/chestnut; missile/bullet thrown/discharged from sling; - glaucom_N_N = mkN "glaucom" "glaucomis " neuter ; -- [XBXEC] :: disease of the eye, cataract; - glaucoma_N_N = mkN "glaucoma" "glaucomatis " neuter ; -- [XBXEC] :: disease of the eye, cataract; "mist before the eyes" (Erasmus); + glas_F_N = mkN "glas" "glandis" feminine ; -- [XAXEO] :: mast/acorn/beachnut/chestnut; missile/bullet thrown/discharged from sling; + glaucom_N_N = mkN "glaucom" "glaucomis" neuter ; -- [XBXEC] :: disease of the eye, cataract; + glaucoma_N_N = mkN "glaucoma" "glaucomatis" neuter ; -- [XBXEC] :: disease of the eye, cataract; "mist before the eyes" (Erasmus); glaucus_A = mkA "glaucus" "glauca" "glaucum" ; -- [XXXDX] :: bluish gray; gleba_F_N = mkN "gleba" ; -- [XXXDX] :: clod/lump of earth/turf; land, soil; hard soil; piece, lump, mass; glebula_F_N = mkN "glebula" ; -- [XAXEC] :: little clod or lump; a little farm or estate; 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; + glis_M_N = mkN "glis" "gliris" masculine ; -- [XXXDX] :: dormouse; 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); globus_M_N = mkN "globus" ; -- [XXXDX] :: ball, sphere; dense mass, close packed throng, crowd; clique, band; globe; - glomeramen_N_N = mkN "glomeramen" "glomeraminis " neuter ; -- [XXXEC] :: round mass, globe; + glomeramen_N_N = mkN "glomeramen" "glomeraminis" neuter ; -- [XXXEC] :: round mass, globe; glomero_V = mkV "glomerare" ; -- [XXXDX] :: collect, amass, assemble; form into a ball; - glomus_N_N = mkN "glomus" "glomeris " neuter ; -- [XXXDX] :: ball-shaped mass; ball made by winding, ball of thread, skein; + glomus_N_N = mkN "glomus" "glomeris" neuter ; -- [XXXDX] :: ball-shaped mass; ball made by winding, ball of thread, skein; gloria_F_N = mkN "gloria" ; -- [XXXAX] :: glory, fame; ambition; renown; vainglory, boasting; gloriabundus_A = mkA "gloriabundus" "gloriabunda" "gloriabundum" ; -- [FEXFM] :: triumphant; glorianter_Adv = mkAdv "glorianter" ; -- [FXXFE] :: boastingly; exultingly; - gloriatio_F_N = mkN "gloriatio" "gloriationis " feminine ; -- [XXXES] :: exalting, boasting, vaunting, glorying; - glorificatio_F_N = mkN "glorificatio" "glorificationis " feminine ; -- [DEXFS] :: glorification; + gloriatio_F_N = mkN "gloriatio" "gloriationis" feminine ; -- [XXXES] :: exalting, boasting, vaunting, glorying; + glorificatio_F_N = mkN "glorificatio" "glorificationis" feminine ; -- [DEXFS] :: glorification; glorifico_V2 = mkV2 (mkV "glorificare") ; -- [DEXDS] :: glorify; magnify, honor, worship (Def); exalt in thought/speech; uplift; glorificus_A = mkA "glorificus" "glorifica" "glorificum" ; -- [FEXEM] :: glorious, full of glory; gloriola_F_N = mkN "gloriola" ; -- [XXXEC] :: little glory; @@ -21095,68 +21088,68 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + glosema_N_N = mkN "glosema" "glosematis" neuter ; -- [XGXEO] :: unusual word requiring interpretation; collection/list (pl.) of such words; glossa_F_N = mkN "glossa" ; -- [XGXFO] :: glossary, collection/list of unfamiliar/unusual words (needing interpretation); - glossema_N_N = mkN "glossema" "glossematis " neuter ; -- [XGXEO] :: unusual word requiring interpretation; collection/list (pl.) of such words; + glossema_N_N = mkN "glossema" "glossematis" neuter ; -- [XGXEO] :: unusual word requiring interpretation; collection/list (pl.) of such words; 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; + 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; + 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; + 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; + 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; + 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; + 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); + 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); 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; + gorytos_M_N = mkN "gorytos" "goryti" masculine ; -- [XWXDO] :: quiver, case holding arrows; gorytus_M_N = mkN "gorytus" ; -- [XWXDO] :: quiver, case holding arrows; gossypium_N_N = mkN "gossypium" ; -- [GXXEK] :: cotton wool, cotton; 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; 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); + 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); + 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; + gradualitas_F_N = mkN "gradualitas" "gradualitatis" feminine ; -- [FXXEM] :: grade, degree; gradualiter_Adv = mkAdv "gradualiter" ; -- [FXXEM] :: by degrees; - gradus_M_N = mkN "gradus" "gradus " masculine ; -- [XXXBX] :: step; position; + gradus_M_N = mkN "gradus" "gradus" masculine ; -- [XXXBX] :: step; position; graecisso_V = mkV "graecissare" ; -- [XXXEC] :: imitate the Greeks; graecor_V = mkV "graecari" ; -- [XXXEC] :: imitate the Greeks; graecus_A = mkA "graecus" "graeca" "graecum" ; -- [XXXDX] :: Greek; - grallator_M_N = mkN "grallator" "grallatoris " masculine ; -- [XDXEC] :: one that walks on stilts; - gramen_N_N = mkN "gramen" "graminis " neuter ; -- [XXXBX] :: grass, turf; herb; plant; + grallator_M_N = mkN "grallator" "grallatoris" masculine ; -- [XDXEC] :: one that walks on stilts; + gramen_N_N = mkN "gramen" "graminis" neuter ; -- [XXXBX] :: grass, turf; herb; plant; gramineus_A = mkA "gramineus" "graminea" "gramineum" ; -- [XXXDX] :: of grass, grassy; made of grass or turf; graminus_A = mkA "graminus" "gramina" "graminum" ; -- [XAXES] :: grassy; full of grass; - gramma_N_N = mkN "gramma" "grammatis " neuter ; -- [XXXDS] :: scruple-weight; gram (Cal); + gramma_N_N = mkN "gramma" "grammatis" neuter ; -- [XXXDS] :: scruple-weight; gram (Cal); grammatica_F_N = mkN "grammatica" ; -- [XXXDX] :: grammar; philology; grammatice_Adv = mkAdv "grammatice" ; -- [XGXFO] :: with strict observance of grammatical rules, grammatically; - grammatice_F_N = mkN "grammatice" "grammatices " feminine ; -- [XGXES] :: grammar; philology; + grammatice_F_N = mkN "grammatice" "grammatices" feminine ; -- [XGXES] :: grammar; philology; grammaticus_A = mkA "grammaticus" "grammatica" "grammaticum" ; -- [XXXDX] :: grammatical, of grammar; grammaticus_M_N = mkN "grammaticus" ; -- [XXXBX] :: grammarian; philologist; scholar, expert on linguistics/literature; grammatista_M_N = mkN "grammatista" ; -- [XGXFO] :: one who teaches letters; elementary schoolmaster; @@ -21164,7 +21157,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat granata_F_N = mkN "granata" ; -- [GWXEK] :: grenade; granatum_N_N = mkN "granatum" ; -- [FAXEK] :: pomegranate (fruit); 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; + granatus_M_N = mkN "granatus" "granatus" masculine ; -- [XXXDX] :: production of a crop; grandaevus_A = mkA "grandaevus" "grandaeva" "grandaevum" ; -- [XXXDX] :: of great age, old; grandesco_V = mkV "grandescere" "grandesco" nonExist nonExist ; -- [XXXDX] :: grow, increase in size or quantity; grandiculus_A = mkA "grandiculus" "grandicula" "grandiculum" ; -- [XXXEC] :: rather large; @@ -21174,55 +21167,55 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + granditas_F_N = mkN "granditas" "granditatis" feminine ; -- [XXXEO] :: grandeur; elevation (of style); advanced condition/greatness (of person's age); granditer_Adv = mkAdv "granditer" ; -- [FXXEE] :: strongly; mightily; grandiusculus_A = mkA "grandiusculus" "grandiuscula" "grandiusculum" ; -- [FXXFM] :: fair-sized; - grando_F_N = mkN "grando" "grandinis " feminine ; -- [XXXDX] :: hail, hail-storm; + grando_F_N = mkN "grando" "grandinis" feminine ; -- [XXXDX] :: hail, hail-storm; granifer_A = mkA "granifer" "granifera" "graniferum" ; -- [XAXEC] :: grain-carrying; granitum_N_N = mkN "granitum" ; -- [GXXEK] :: granite; granulum_N_N = mkN "granulum" ; -- [XXXDX] :: granule; granum_N_N = mkN "granum" ; -- [XXXDX] :: grain; seed; - grapheocrates_M_N = mkN "grapheocrates" "grapheocratae " masculine ; -- [GXXEK] :: bureaucrat; + grapheocrates_M_N = mkN "grapheocrates" "grapheocratae" masculine ; -- [GXXEK] :: bureaucrat; grapheocratia_F_N = mkN "grapheocratia" ; -- [GXXEK] :: bureaucracy; grapheocraticus_A = mkA "grapheocraticus" "grapheocratica" "grapheocraticum" ; -- [GXXEK] :: bureaucratic; grapheum_N_N = mkN "grapheum" ; -- [GXXEK] :: office; 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; + 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; + graphis_F_N = mkN "graphis" "graphidis" feminine ; -- [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; + 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; gratanter_Adv = mkAdv "gratanter" ; -- [DXXCS] :: with joy; with rejoicing; grate_Adv =mkAdv "grate" "gratius" "gratissime" ; -- [XXXDX] :: with pleasure/delight; agreeably, pleasantly; with gratitude, thankfully; - grates_F_N = mkN "grates" "gratis " feminine ; -- [XXXCO] :: thanks (pl.); (esp. to gods); thanksgivings; [~es agere => give thanks]; + grates_F_N = mkN "grates" "gratis" feminine ; -- [XXXCO] :: thanks (pl.); (esp. to gods); thanksgivings; [~es agere => give thanks]; gratia_F_N = mkN "gratia" ; -- [XXXAO] :: ||agreeableness, charm; grace; [Doctor Gratiae => St. Augustine of Hippo]; - gratificatio_F_N = mkN "gratificatio" "gratificationis " feminine ; -- [XXXFS] :: showing kindness; complaisance; + gratificatio_F_N = mkN "gratificatio" "gratificationis" feminine ; -- [XXXFS] :: showing kindness; complaisance; gratifico_V2 = mkV2 (mkV "gratificare") ; -- [EXXFW] :: oblige, gratify, humor, show kindness to; bestow, make a present of; gratificor_V = mkV "gratificari" ; -- [XXXCO] :: oblige, gratify, humor, show kindness to; bestow, make a present of; gratiosus_A = mkA "gratiosus" "gratiosa" "gratiosum" ; -- [XXXDX] :: agreeable, enjoying favor; kind; gratis_Adv = mkAdv "gratis" ; -- [XXXCO] :: gratis, without payment, for nothing; freely; for no reward but thanks; - gratitudo_F_N = mkN "gratitudo" "gratitudinis " feminine ; -- [XXXDX] :: gratitude; + gratitudo_F_N = mkN "gratitudo" "gratitudinis" feminine ; -- [XXXDX] :: gratitude; grator_V = mkV "gratari" ; -- [XXXDX] :: congratulate (w/DAT); rejoice with; - gratuitas_F_N = mkN "gratuitas" "gratuitatis " feminine ; -- [FXXEM] :: favor; gift; + gratuitas_F_N = mkN "gratuitas" "gratuitatis" feminine ; -- [FXXEM] :: favor; gift; gratuito_Adv = mkAdv "gratuito" ; -- [XXXDX] :: gratis, without pay, for naught, gratuitously; for no special reason; wantonly; gratuitus_A = mkA "gratuitus" "gratuita" "gratuitum" ; -- [XXXDX] :: free, gratuitous; without pay; unremunerative; gratulabundus_A = mkA "gratulabundus" "gratulabunda" "gratulabundum" ; -- [XXXDX] :: congratulating; gratulanter_Adv = mkAdv "gratulanter" ; -- [FXXEV] :: with grateful/thankful heart/soul; - gratulatio_F_N = mkN "gratulatio" "gratulationis " feminine ; -- [XXXDX] :: congratulation; rejoicing; + 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; 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; + 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; 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; + gravedo_F_N = mkN "gravedo" "gravedinis" feminine ; -- [XXXDX] :: cold in the head, catarrh; graveolens_A = mkA "graveolens" "graveolentis"; -- [XXXEC] :: strong-smelling, rank; graveolentia_F_N = mkN "graveolentia" ; -- [XXXFS] :: foul smell (Pliny); gravida_F_N = mkN "gravida" ; -- [FXXEE] :: pregnant woman; @@ -21230,54 +21223,54 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; 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; + 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; gravo_V2 = mkV2 (mkV "gravare") ; -- [XXXBO] :: load/weigh down; burden, oppress; pollute (air); accuse, incriminate; aggravate; gravor_V = mkV "gravari" ; -- [XXXDX] :: show/bear with reluctance/annoyance; be burdened/vexed; take amiss; hesitate; grecus_A = mkA "grecus" "greca" "grecum" ; -- [EXXDX] :: Greek; (medieval form for Graecus, ae -> e); gregalis_A = mkA "gregalis" "gregalis" "gregale" ; -- [XXXES] :: of the herd/flock; - gregalis_M_N = mkN "gregalis" "gregalis " masculine ; -- [XXXES] :: comrade (usu. pl.); one of same party/company/gang/herd/flock; associate/crony; + gregalis_M_N = mkN "gregalis" "gregalis" masculine ; -- [XXXES] :: comrade (usu. pl.); one of same party/company/gang/herd/flock; associate/crony; gregarius_A = mkA "gregarius" "gregaria" "gregarium" ; -- [XXXDX] :: of/belonging to rank and file; [miles gregarius => common soldier]; gregatim_Adv = mkAdv "gregatim" ; -- [XXXDX] :: in flocks; grego_V = mkV "gregare" ; -- [EXXDX] :: gather, assemble; - gremiale_N_N = mkN "gremiale" "gremialis " neuter ; -- [EEXFE] :: gremial, apron/lap cloth for bishop at Mass/pontifical functions; + gremiale_N_N = mkN "gremiale" "gremialis" neuter ; -- [EEXFE] :: gremial, apron/lap cloth for bishop at Mass/pontifical functions; gremialis_A = mkA "gremialis" "gremialis" "gremiale" ; -- [XAXFO] :: suitable for firewood; (trees); gremium_N_N = mkN "gremium" ; -- [XXXEO] :: firewood; (singular or collective); - gressus_M_N = mkN "gressus" "gressus " masculine ; -- [XXXDX] :: going; step; the feet (pl.); - grex_F_N = mkN "grex" "gregis " feminine ; -- [XXXBO] :: flock, herd; crowd; company, crew; people/animals assembled; set/faction/class; - grex_M_N = mkN "grex" "gregis " masculine ; -- [XXXBO] :: flock, herd; crowd; company, crew; people/animals assembled; set/faction/class; - griffo_M_N = mkN "griffo" "griffonis " masculine ; -- [FXXFM] :: griffin; + gressus_M_N = mkN "gressus" "gressus" masculine ; -- [XXXDX] :: going; step; the feet (pl.); + grex_F_N = mkN "grex" "gregis" feminine ; -- [XXXBO] :: flock, herd; crowd; company, crew; people/animals assembled; set/faction/class; + grex_M_N = mkN "grex" "gregis" masculine ; -- [XXXBO] :: flock, herd; crowd; company, crew; people/animals assembled; set/faction/class; + griffo_M_N = mkN "griffo" "griffonis" masculine ; -- [FXXFM] :: griffin; grillus_M_N = mkN "grillus" ; -- [XXXEO] :: cricket; grasshopper; cartoon, comic illustration; caricature (Cal); 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; + grossitudo_F_N = mkN "grossitudo" "grossitudinis" feminine ; -- [DXXES] :: thickness; 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; + 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; + 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; 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; + grypho_M_N = mkN "grypho" "gryphonis" masculine ; -- [FYXFM] :: 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; - gubernatio_F_N = mkN "gubernatio" "gubernationis " feminine ; -- [XWXDO] :: steering, pilotage; direction, control; management; - gubernator_M_N = mkN "gubernator" "gubernatoris " masculine ; -- [XWXCO] :: helmsman, pilot; one who directs/controls; - gubernatrix_F_N = mkN "gubernatrix" "gubernatricis " feminine ; -- [XWXEO] :: helmsman, pilot (female); she who directs/controls; + gubernatio_F_N = mkN "gubernatio" "gubernationis" feminine ; -- [XWXDO] :: steering, pilotage; direction, control; management; + gubernator_M_N = mkN "gubernator" "gubernatoris" masculine ; -- [XWXCO] :: helmsman, pilot; one who directs/controls; + gubernatrix_F_N = mkN "gubernatrix" "gubernatricis" feminine ; -- [XWXEO] :: helmsman, pilot (female); she who directs/controls; gubernium_N_N = mkN "gubernium" ; -- [FWXEE] :: helm, rudder, steering oar of ship; government; management; gubernius_M_N = mkN "gubernius" ; -- [XWXFO] :: helmsman, pilot; one who directs/controls; manager; guberno_V = mkV "gubernare" ; -- [XXXBX] :: steer, drive, pilot, direct, manage, conduct, guide, control, govern; @@ -21289,23 +21282,23 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat gumia_F_N = mkN "gumia" ; -- [XXXES] :: glutton; gourmand; 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; + gummis_F_N = mkN "gummis" "gummis" feminine ; -- [XAXCO] :: gum, vicid secretion from trees; + gummitio_F_N = mkN "gummitio" "gummitionis" feminine ; -- [XXXFO] :: application of gum; gunna_F_N = mkN "gunna" ; -- [GXXEK] :: skirt; guoma_F_N = mkN "guoma" ; -- [XTXEO] :: instrument for taking bearings to fix lines of orientation; (surveying); - gurculio_F_N = mkN "gurculio" "gurculionis " feminine ; -- [BAXCS] :: grain-worm/weevil; weevil; - gurges_M_N = mkN "gurges" "gurgitis " masculine ; -- [XXXBX] :: whirlpool; raging abyss; gulf, the sea; "flood", "stream"; - gurgulio_M_N = mkN "gurgulio" "gurgulionis " masculine ; -- [XBXEC] :: windpipe; + gurculio_F_N = mkN "gurculio" "gurculionis" feminine ; -- [BAXCS] :: grain-worm/weevil; weevil; + gurges_M_N = mkN "gurges" "gurgitis" masculine ; -- [XXXBX] :: whirlpool; raging abyss; gulf, the sea; "flood", "stream"; + gurgulio_M_N = mkN "gurgulio" "gurgulionis" masculine ; -- [XBXEC] :: windpipe; gurgustium_N_N = mkN "gurgustium" ; -- [XXXEC] :: hut, hovel; - gustatus_M_N = mkN "gustatus" "gustatus " masculine ; -- [XXXCO] :: taste, sense of taste; tasting; + gustatus_M_N = mkN "gustatus" "gustatus" masculine ; -- [XXXCO] :: taste, sense of taste; tasting; gusto_V = mkV "gustare" ; -- [XXXBX] :: taste, sip; have some experience of; enjoy; - gustus_M_N = mkN "gustus" "gustus " masculine ; -- [XXXDX] :: tasting, appetite; draught of water; + gustus_M_N = mkN "gustus" "gustus" masculine ; -- [XXXDX] :: tasting, appetite; draught of water; gutta_F_N = mkN "gutta" ; -- [XXXDX] :: drop, spot, speck; guttatim_Adv = mkAdv "guttatim" ; -- [XSXES] :: drop-by-drop; - gutter_N_N = mkN "gutter" "gutteris " neuter ; -- [FXXEL] :: throat, neck; gullet; (reference to gluttony/appetite); swollen throat, goiter; + gutter_N_N = mkN "gutter" "gutteris" neuter ; -- [FXXEL] :: throat, neck; gullet; (reference to gluttony/appetite); swollen throat, goiter; guttula_F_N = mkN "guttula" ; -- [XXXEC] :: little drop; - guttur_M_N = mkN "guttur" "gutturis " masculine ; -- [XXXEO] :: throat, neck; gullet; (reference to gluttony/appetite); swollen throat, goiter; - guttur_N_N = mkN "guttur" "gutturis " neuter ; -- [XXXCO] :: throat, neck; gullet; (reference to gluttony/appetite); swollen throat, goiter; + guttur_M_N = mkN "guttur" "gutturis" masculine ; -- [XXXEO] :: throat, neck; gullet; (reference to gluttony/appetite); swollen throat, goiter; + guttur_N_N = mkN "guttur" "gutturis" neuter ; -- [XXXCO] :: throat, neck; gullet; (reference to gluttony/appetite); swollen throat, goiter; gutturalis_A = mkA "gutturalis" "gutturalis" "gutturale" ; -- [GXXEK] :: guttural; guttus_M_N = mkN "guttus" ; -- [XXXEC] :: jug; gwerra_F_N = mkN "gwerra" ; -- [FWXEM] :: war; retaliation, feud; @@ -21333,24 +21326,24 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat ha_Interj = ss "ha" ; -- [EXXBT] :: Ah!; (distress/regret/pity, appeal/entreaty, surprise/joy, objection/contempt); habena_F_N = mkN "habena" ; -- [XXXDX] :: thong, strap; whip; halter; reins (pl.); direction, management, government; habeo_V = mkV "habere" ; -- [XXXAX] :: have, hold, consider, think, reason; manage, keep; spend/pass (time); - habetudo_F_N = mkN "habetudo" "habetudinis " feminine ; -- [XXXFE] :: dullness; + habetudo_F_N = mkN "habetudo" "habetudinis" feminine ; -- [XXXFE] :: dullness; habilis_A = mkA "habilis" "habilis" "habile" ; -- [XXXDX] :: handy, manageable; apt, fit; - habilitas_F_N = mkN "habilitas" "habilitatis " feminine ; -- [XXXEE] :: ability; aptitude; + habilitas_F_N = mkN "habilitas" "habilitatis" feminine ; -- [XXXEE] :: ability; aptitude; habilito_V = mkV "habilitare" ; -- [FXXFM] :: enable; make suitable; habitabilis_A = mkA "habitabilis" "habitabilis" "habitabile" ; -- [XXXDX] :: habitable; habitaculum_N_N = mkN "habitaculum" ; -- [XXXFO] :: dwelling place; home, residence; habitation (Bee); - habitans_F_N = mkN "habitans" "habitantis " feminine ; -- [XXXEE] :: inhabitant; dweller; - habitans_M_N = mkN "habitans" "habitantis " masculine ; -- [XXXEE] :: inhabitant; dweller; - habitatio_F_N = mkN "habitatio" "habitationis " feminine ; -- [XXXDX] :: lodging, residence; - habitator_M_N = mkN "habitator" "habitatoris " masculine ; -- [XXXDX] :: dweller, inhabitant; - habitatrix_F_N = mkN "habitatrix" "habitatricis " feminine ; -- [XXXFS] :: inhabiters; she who inhabits; + habitans_F_N = mkN "habitans" "habitantis" feminine ; -- [XXXEE] :: inhabitant; dweller; + habitans_M_N = mkN "habitans" "habitantis" masculine ; -- [XXXEE] :: inhabitant; dweller; + habitatio_F_N = mkN "habitatio" "habitationis" feminine ; -- [XXXDX] :: lodging, residence; + habitator_M_N = mkN "habitator" "habitatoris" masculine ; -- [XXXDX] :: dweller, inhabitant; + habitatrix_F_N = mkN "habitatrix" "habitatricis" feminine ; -- [XXXFS] :: inhabiters; she who inhabits; habito_V = mkV "habitare" ; -- [XXXAX] :: inhabit, dwell; live, stay; habitualis_A = mkA "habitualis" "habitualis" "habituale" ; -- [FXXEM] :: habitual; customary; habitualiter_Adv = mkAdv "habitualiter" ; -- [XXXEE] :: habitual; habitudinalis_A = mkA "habitudinalis" "habitudinalis" "habitudinale" ; -- [FXXEM] :: habitual; customary; - habitudo_F_N = mkN "habitudo" "habitudinis " feminine ; -- [XXXEC] :: condition; + habitudo_F_N = mkN "habitudo" "habitudinis" feminine ; -- [XXXEC] :: condition; habituo_V = mkV "habituare" ; -- [DXXES] :: habituate, bring into condition/habit (body); (PASS) be conditioned/in habit; - habitus_M_N = mkN "habitus" "habitus " masculine ; -- [XXXBX] :: condition, state; garment/dress/"get-up"; expression, demeanor; character; + habitus_M_N = mkN "habitus" "habitus" masculine ; -- [XXXBX] :: condition, state; garment/dress/"get-up"; expression, demeanor; character; habrodiaetus_M_N = mkN "habrodiaetus" ; -- [CXXFS] :: living delicately, epithet of the painter Parrhasius; habrotonum_N_N = mkN "habrotonum" ; -- [XAXFS] :: aromatic plant, southern-wood (medicine); hac_Adv = mkAdv "hac" ; -- [XXXDX] :: here, by this side, this way; @@ -21363,18 +21356,18 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat haedulus_M_N = mkN "haedulus" ; -- [XAXFO] :: little kid, little young goat; haedus_M_N = mkN "haedus" ; -- [XAXCO] :: kid, young goat; two stars in constellation Auriga (Charioteer), "The Kid"; haemorrhagia_F_N = mkN "haemorrhagia" ; -- [GBXEK] :: hemorrhage; - haemorrhois_F_N = mkN "haemorrhois" "haemorrhoidis " feminine ; -- [EAXFS] :: poisonous snake (Pliny); + haemorrhois_F_N = mkN "haemorrhois" "haemorrhoidis" feminine ; -- [EAXFS] :: poisonous snake (Pliny); haemorrhoissus_A = mkA "haemorrhoissus" "haemorrhoissa" "haemorrhoissum" ; -- [FBXFE] :: hemorrhaging; having flow of blood; (menstrual?); haemorroida_F_N = mkN "haemorroida" ; -- [XBXES] :: hemorrhoid, pile; (also haemorrhoida); - haereditas_F_N = mkN "haereditas" "haereditatis " feminine ; -- [XXXBX] :: inheritance, possession; hereditary succession; generation; heirship; + 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); + haeresis_F_N = mkN "haeresis" "haeresis" feminine ; -- [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; + haesitatio_F_N = mkN "haesitatio" "haesitationis" feminine ; -- [XXXFS] :: hesitation, hesitating; stammering; resolution; haesito_V = mkV "haesitare" ; -- [XXXDX] :: stick hesitate, be undecided; be stuck; hagiographia_F_N = mkN "hagiographia" ; -- [EEHFE] :: hagiography, lives of saints; sacred/holy writing; hagiographicus_A = mkA "hagiographicus" "hagiographica" "hagiographicum" ; -- [GXXEK] :: hagiographic; @@ -21383,21 +21376,21 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat hagios_A = mkA "hagios" "hagia" "hagion" ; -- [FXHFE] :: holy (Greek); hahahae_Interj = ss "hahahae" ; -- [EXXES] :: Ha ha!; (laughter, derision); hahahe_Interj = ss "hahahe" ; -- [EXXES] :: Ha ha!; (laughter, derision); - haicu_N_N = mkN "haicu" "haicus " neuter ; -- [HPXFT] :: haiku, formal short verse (popular in Japan); - halatio_F_N = mkN "halatio" "halationis " feminine ; -- [EBXEE] :: breath; breathing; - halcycon_F_N = mkN "halcycon" "halcyonis " feminine ; -- [XAXEX] :: halcyon; kingfisher; sea birds (pl.); - haliaeetos_M_N = mkN "haliaeetos" "haliaeeti " masculine ; -- [XAXEC] :: sea-eagle, osprey; + haicu_N_N = mkN "haicu" "haicus" neuter ; -- [HPXFT] :: haiku, formal short verse (popular in Japan); + halatio_F_N = mkN "halatio" "halationis" feminine ; -- [EBXEE] :: breath; breathing; + halcycon_F_N = mkN "halcycon" "halcyonis" feminine ; -- [XAXEX] :: halcyon; kingfisher; sea birds (pl.); + haliaeetos_M_N = mkN "haliaeetos" "haliaeeti" masculine ; -- [XAXEC] :: sea-eagle, osprey; halica_F_N = mkN "halica" ; -- [XXXEO] :: emmer (wheat) grots; porridge/gruel made with these; halicacius_A = mkA "halicacius" "halicacia" "halicacium" ; -- [XAXEO] :: made of emmer (wheat), grots; connected with emmer (wheat) production; halicastrum_N_N = mkN "halicastrum" ; -- [XAXEO] :: early -ripening variety of emmer (wheat); halito_V = mkV "halitare" ; -- [EBXEE] :: breathe; - halitus_M_N = mkN "halitus" "halitus " masculine ; -- [XXXDX] :: breath, steam, vapor; - hallec_N_N = mkN "hallec" "hallecis " neuter ; -- [XXXDX] :: herrings; a fish sauce; pickle; - hallucinator_M_N = mkN "hallucinator" "hallucinatoris " masculine ; -- [DXXFS] :: idle dreamer, silly fellow; one who is wandering in mind; + halitus_M_N = mkN "halitus" "halitus" masculine ; -- [XXXDX] :: breath, steam, vapor; + hallec_N_N = mkN "hallec" "hallecis" neuter ; -- [XXXDX] :: herrings; a fish sauce; pickle; + hallucinator_M_N = mkN "hallucinator" "hallucinatoris" masculine ; -- [DXXFS] :: idle dreamer, silly fellow; one who is wandering in mind; hallus_M_N = mkN "hallus" ; -- [XBXFO] :: big toe; halmaturus_M_N = mkN "halmaturus" ; -- [GXXEK] :: kangaroo; halo_V = mkV "halare" ; -- [XXXDX] :: emit (vapor, etc); be fragrant; - halucinatio_F_N = mkN "halucinatio" "halucinationis " feminine ; -- [XXXEO] :: wandering in mind, idle dream, delusion; idle/aimless behavior (w/mentis); + 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); hamadryas_1_N = mkN "hamadryas" "hamadryadis" feminine ; -- [XXXDX] :: wood-nymph, hamadryad, dryad; @@ -21416,7 +21409,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat harenarium_N_N = mkN "harenarium" ; -- [XXXFS] :: sand-pit; harenarius_A = mkA "harenarius" "harenaria" "harenarium" ; -- [DXXES] :: of/pertaining to sand; or to the arena/amphitheater; [~ lapis => sandstone]; harenarius_M_N = mkN "harenarius" ; -- [DXXES] :: combatant in the arena, gladiator; teacher of mathematics (figures in sand); - harenatio_F_N = mkN "harenatio" "harenationis " feminine ; -- [XTXES] :: sanding, plastering with sand; plastering, cementing; + harenatio_F_N = mkN "harenatio" "harenationis" feminine ; -- [XTXES] :: sanding, plastering with sand; plastering, cementing; harenatum_N_N = mkN "harenatum" ; -- [XTXFS] :: sand mortar; harenatus_A = mkA "harenatus" "harenata" "harenatum" ; -- [XTXFS] :: sanded, covered/mixed with sand; harenifodina_F_N = mkN "harenifodina" ; -- [DXXES] :: sand-pit; @@ -21431,31 +21424,31 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat harmonia_F_N = mkN "harmonia" ; -- [XDXCO] :: harmony/concord; (between parts of body); melody, order of notes; coupling; harmonica_F_N = mkN "harmonica" ; -- [XDXEO] :: theory of music/harmony; harmonics; science of sound; harmonice_Adv = mkAdv "harmonice" ; -- [XXXEE] :: harmoniously; - harmonice_F_N = mkN "harmonice" "harmonices " feminine ; -- [XDXEO] :: theory of music/harmony; harmonics; science of sound; + harmonice_F_N = mkN "harmonice" "harmonices" feminine ; -- [XDXEO] :: theory of music/harmony; harmonics; science of sound; harmonicus_A = mkA "harmonicus" "harmonica" "harmonicum" ; -- [XDXEO] :: harmonious; of harmony/natural proportion; in unison; harmonic (Ecc); harmonium_N_N = mkN "harmonium" ; -- [GDXEK] :: harmonium; harpagatus_A = mkA "harpagatus" "harpagata" "harpagatum" ; -- [XXXDX] :: hooked; - harpago_M_N = mkN "harpago" "harpagonis " masculine ; -- [XXXDX] :: hook; grappling iron; + harpago_M_N = mkN "harpago" "harpagonis" masculine ; -- [XXXDX] :: hook; grappling iron; harpastum_N_N = mkN "harpastum" ; -- [GXXEK] :: rugby; harpax_A = mkA "harpax" "harpacis"; -- [XXXFS] :: drawing to itself; rapacious; - harpe_F_N = mkN "harpe" "harpes " feminine ; -- [XWXDO] :: curved sword, scimitar; sickle; marine bird of prey (unidentified); + harpe_F_N = mkN "harpe" "harpes" feminine ; -- [XWXDO] :: curved sword, scimitar; sickle; marine bird of prey (unidentified); harpyria_F_N = mkN "harpyria" ; -- [XXXES] :: Harpy; rapacious person; harum_N_N = mkN "harum" ; -- [XAXEO] :: plants of genus arum; harundifer_A = mkA "harundifer" "harundifera" "harundiferum" ; -- [XXXEC] :: reed-bearing; harundinetum_N_N = mkN "harundinetum" ; -- [XAXCO] :: reed-bed; thicket/jungle/growth of reeds/rushes (L+S); stubble (Vulgate); harundineus_A = mkA "harundineus" "harundinea" "harundineum" ; -- [XXXEE] :: reed-, of reeds; like a reed; harundinosus_A = mkA "harundinosus" "harundinosa" "harundinosum" ; -- [XXXEC] :: full of reeds; - harundo_F_N = mkN "harundo" "harundinis " feminine ; -- [XXXBX] :: reed, cane, fishing rod, limed twigs for catching birds; arrow shaft; pipe; - haruspex_M_N = mkN "haruspex" "haruspicis " masculine ; -- [XXXDX] :: soothsayer, diviner; inspector of entrails of victims; + harundo_F_N = mkN "harundo" "harundinis" feminine ; -- [XXXBX] :: reed, cane, fishing rod, limed twigs for catching birds; arrow shaft; pipe; + haruspex_M_N = mkN "haruspex" "haruspicis" masculine ; -- [XXXDX] :: soothsayer, diviner; inspector of entrails of victims; haruspicina_F_N = mkN "haruspicina" ; -- [XEXEC] :: divination; haruspicinus_A = mkA "haruspicinus" "haruspicina" "haruspicinum" ; -- [XXXEC] :: concerned with divination; harviga_F_N = mkN "harviga" ; -- [XEXFS] :: ram for offering/sacrifice; - harvix_F_N = mkN "harvix" "harvigis " feminine ; -- [XEXFS] :: ram for offering/sacrifice; + harvix_F_N = mkN "harvix" "harvigis" feminine ; -- [XEXFS] :: ram for offering/sacrifice; hasisum_N_N = mkN "hasisum" ; -- [GXXEK] :: hashish; hasta_F_N = mkN "hasta" ; -- [XXXBO] :: spear/lance/javelin; spear stuck in ground for public auction/centumviral court; hastatus_A = mkA "hastatus" "hastata" "hastatum" ; -- [XXXDX] :: armed with spear/spears; first line of a Roman army (pl.); hastatus_M_N = mkN "hastatus" ; -- [XWXCO] :: spearman; soldier in unit in front of Roman battle-formation; its centurion; - hastile_N_N = mkN "hastile" "hastilis " neuter ; -- [XXXDX] :: spear shaft; spear; cane; + hastile_N_N = mkN "hastile" "hastilis" neuter ; -- [XXXDX] :: spear shaft; spear; cane; hastilis_A = mkA "hastilis" "hastilis" "hastile" ; -- [XXXFE] :: on a (spear) shaft; supported by a shaft/staff; hau_Adv = mkAdv "hau" ; -- [XXXCL] :: not, not at all, by no means; not (as a particle); hau_Interj = ss "hau" ; -- [XXXFS] :: oh! ow! oh dear! goodness gracious! (used by women to express consternation); @@ -21463,9 +21456,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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); + 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; @@ -21476,7 +21469,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + hebdomas_F_N = mkN "hebdomas" "hebdomadis" feminine ; -- [EXXCS] :: |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); @@ -21484,10 +21477,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat hebes_A = mkA "hebes" "hebetis"; -- [XXXDX] :: blunt, dun; languid; stupid; 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; + hebetudo_F_N = mkN "hebetudo" "hebetudinis" feminine ; -- [FXXDV] :: sluggishness, sloth, inertness; dullness; dimness (color/light); feebleness; hebria_F_N = mkN "hebria" ; -- [DXXFS] :: wine vessel; hecatolitrum_N_N = mkN "hecatolitrum" ; -- [GSXEK] :: hectoliter; 100 hundred liters; - hecatombe_F_N = mkN "hecatombe" "hecatombes " feminine ; -- [XEHFO] :: hecatomb; large public sacrifice; (100 oxen/animals); sacrifice w/many victims; + hecatombe_F_N = mkN "hecatombe" "hecatombes" feminine ; -- [XEHFO] :: hecatomb; large public sacrifice; (100 oxen/animals); sacrifice w/many victims; hecatometrum_N_N = mkN "hecatometrum" ; -- [GSXEK] :: hectometer; 100 meters; hectarea_F_N = mkN "hectarea" ; -- [GSXEK] :: hectare; 100 meters square; hedera_F_N = mkN "hedera" ; -- [XXXDX] :: ivy; @@ -21506,14 +21499,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat helleborus_M_N = mkN "helleborus" ; -- [XAXEC] :: hellebore (plant); (considered a remedy for madness); hellenismus_M_N = mkN "hellenismus" ; -- [GXXEK] :: Hellenism; hellenisticus_A = mkA "hellenisticus" "hellenistica" "hellenisticum" ; -- [GXXEK] :: Hellenistic; - helluatio_F_N = mkN "helluatio" "helluationis " feminine ; -- [XXXFO] :: debauch; revel; gluttony, gormandizing; - helluo_M_N = mkN "helluo" "helluonis " masculine ; -- [XXXDO] :: glutton, gourmand; squanderer; one who spends immoderately on eating; + helluatio_F_N = mkN "helluatio" "helluationis" feminine ; -- [XXXFO] :: debauch; revel; gluttony, gormandizing; + helluo_M_N = mkN "helluo" "helluonis" masculine ; -- [XXXDO] :: glutton, gourmand; squanderer; one who spends immoderately on eating; helluor_V = mkV "helluari" ; -- [XXXDO] :: spend immoderately (eating/luxuries); be a glutton/gormandize; squander; - helops_M_N = mkN "helops" "helopis " masculine ; -- [XAXEC] :: fish; (perhaps sturgeon); - heluo_M_N = mkN "heluo" "heluonis " masculine ; -- [DXXDS] :: glutton, gourmand; squanderer; one who spends immoderately on eating; + helops_M_N = mkN "helops" "helopis" masculine ; -- [XAXEC] :: fish; (perhaps sturgeon); + heluo_M_N = mkN "heluo" "heluonis" masculine ; -- [DXXDS] :: glutton, gourmand; squanderer; one who spends immoderately on eating; heluor_V = mkV "heluari" ; -- [XXXDS] :: spend immoderately (eating/luxuries); be a glutton, gormandize; squander; helvella_F_N = mkN "helvella" ; -- [XAXEC] :: small pot-herb; - helxine_F_N = mkN "helxine" "helxines " feminine ; -- [DAXNS] :: prickly plant (Pliny); + helxine_F_N = mkN "helxine" "helxines" feminine ; -- [DAXNS] :: prickly plant (Pliny); hem_Interj = ss "hem" ; -- [XXXCO] :: what's that? (surprise/concern); Ah!/alas! (unhappiness); there/here! (wonder); hemera_F_N = mkN "hemera" ; -- [FXXFM] :: day; hemerodromus_M_N = mkN "hemerodromus" ; -- [XXXEC] :: special courier, express; @@ -21524,19 +21517,19 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat hemina_F_N = mkN "hemina" ; -- [XSXEC] :: measure of capacity; (about half a pint); heminarium_N_N = mkN "heminarium" ; -- [XXXFO] :: quarter pint, half hemina, quarter sextarius; vessel/present of that measure; hemiolios_A = mkA "hemiolios" "hemiolios" "hemiolion" ; -- [XXXFO] :: one-and-a-half; consisting of three halves as much; - hemisphaerion_N_N = mkN "hemisphaerion" "hemisphaerii " neuter ; -- [XSXCO] :: hemisphere; half globe; hemispherical sundial; + hemisphaerion_N_N = mkN "hemisphaerion" "hemisphaerii" neuter ; -- [XSXCO] :: hemisphere; half globe; hemispherical sundial; hemisphaerium_N_N = mkN "hemisphaerium" ; -- [XSXCO] :: hemisphere; half globe; hemispherical sundial; - hemitonion_N_N = mkN "hemitonion" "hemitonii " neuter ; -- [XDXEO] :: semi-tone; interval of halftone; [foramina ~iorum => holes for catapult ropes]; + hemitonion_N_N = mkN "hemitonion" "hemitonii" neuter ; -- [XDXEO] :: semi-tone; interval of halftone; [foramina ~iorum => holes for catapult ropes]; hemitonium_N_N = mkN "hemitonium" ; -- [XDXEO] :: semi-tone; interval of halftone; [foramina ~iorum => holes for catapult ropes]; hemorrhoissa_F_N = mkN "hemorrhoissa" ; -- [FBXFE] :: one hemorrhaging; hemorrhoissus_A = mkA "hemorrhoissus" "hemorrhoissa" "hemorrhoissum" ; -- [FBXFE] :: hemorrhaging; having flow of blood; (menstruating?); hendecasyllabus_A = mkA "hendecasyllabus" "hendecasyllaba" "hendecasyllabum" ; -- [XXXDX] :: verses consisting of eleven syllables; 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; + hepatitis_F_N = mkN "hepatitis" "hepatitidis" feminine ; -- [GBXEK] :: hepatitis; 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; + 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); @@ -21555,15 +21548,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat hercule_Interj = ss "hercule" ; -- [XXXDX] :: by Hercules!; assuredly, indeed; here_Adv = mkAdv "here" ; -- [XXXDX] :: yesterday; hereditarius_A = mkA "hereditarius" "hereditaria" "hereditarium" ; -- [XXXEC] :: of inheritance; inherited, hereditary; - hereditas_F_N = mkN "hereditas" "hereditatis " feminine ; -- [XXXBX] :: inheritance, possession; hereditary succession; generation; heirship; + hereditas_F_N = mkN "hereditas" "hereditatis" feminine ; -- [XXXBX] :: inheritance, possession; hereditary succession; generation; heirship; heredito_V2 = mkV2 (mkV "hereditare") ; -- [DLXES] :: inherit; heremita_M_N = mkN "heremita" ; -- [FEXFB] :: hermit, eremite; anchorite; recluse; heremiticus_A = mkA "heremiticus" "heremitica" "heremiticum" ; -- [FEXFF] :: solitary, secluded, recluse; living like a hermit; heremus_A = mkA "heremus" "herema" "heremum" ; -- [FXXCB] :: waste, desert; heremus_M_N = mkN "heremus" ; -- [FXXCB] :: wilderness, wasteland, desert; hereo_V = mkV "herere" ; -- [DXXCW] :: stick, adhere, cling to; hesitate; be in difficulties (sticky situation?); - heres_F_N = mkN "heres" "heredis " feminine ; -- [XXXBX] :: heir/heiress; - heres_M_N = mkN "heres" "heredis " masculine ; -- [XXXBX] :: heir/heiress; + heres_F_N = mkN "heres" "heredis" feminine ; -- [XXXBX] :: heir/heiress; + heres_M_N = mkN "heres" "heredis" masculine ; -- [XXXBX] :: heir/heiress; hereticus_A = mkA "hereticus" "heretica" "hereticum" ; -- [FEXDS] :: heretical, of heretical religious doctrines; hereticus_M_N = mkN "hereticus" ; -- [FEXDS] :: heretic; teacher of false doctrine (Dif); heri_Adv = mkAdv "heri" ; -- [XXXDX] :: yesterday; @@ -21576,18 +21569,18 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat hermeticus_A = mkA "hermeticus" "hermetica" "hermeticum" ; -- [GXXEK] :: hermetic; air-tight; hermitonium_N_N = mkN "hermitonium" ; -- [FDXEE] :: semi-tone; interval of halftone; [foramina ~iorum => holes for catapult ropes]; herniosus_A = mkA "herniosus" "herniosa" "herniosum" ; -- [XBXEE] :: ruptured; - herodio_M_N = mkN "herodio" "herodionis " masculine ; -- [EAXES] :: bird (unidentified); perh. stork; little owl; heron (Douay); + herodio_M_N = mkN "herodio" "herodionis" masculine ; -- [EAXES] :: bird (unidentified); perh. stork; little owl; heron (Douay); herodius_M_N = mkN "herodius" ; -- [EAXES] :: bird (unidentified); perh. stork; little owl; heron (Douay); - heroicitas_F_N = mkN "heroicitas" "heroicitatis " feminine ; -- [XXXEE] :: heroism; + heroicitas_F_N = mkN "heroicitas" "heroicitatis" feminine ; -- [XXXEE] :: heroism; 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); + heroine_F_N = mkN "heroine" "heroines" feminine ; -- [XYXEO] :: 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.); + 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; - hesitatio_F_N = mkN "hesitatio" "hesitationis " feminine ; -- [XXXFS] :: hesitation, hesitating; stammering; resolution; + hesitatio_F_N = mkN "hesitatio" "hesitationis" feminine ; -- [XXXFS] :: hesitation, hesitating; stammering; resolution; hesperius_A = mkA "hesperius" "hesperia" "hesperium" ; -- [XXXDX] :: western; hesternus_A = mkA "hesternus" "hesterna" "hesternum" ; -- [XXXBX] :: of yesterday; hetaeria_F_N = mkN "hetaeria" ; -- [XXXEO] :: society, guild, fraternity; brotherhood; @@ -21601,7 +21594,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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!; - hexagonon_N_N = mkN "hexagonon" "hexagoni " neuter ; -- [XSXEO] :: hexagon, six-sided figure; + hexagonon_N_N = mkN "hexagonon" "hexagoni" neuter ; -- [XSXEO] :: hexagon, six-sided figure; hexagonum_N_N = mkN "hexagonum" ; -- [XSXEO] :: hexagon, six-sided figure; hexameter_A = mkA "hexameter" "hexametra" "hexametrum" ; -- [XPXDO] :: hexameter; with six metrical feet; (of verse); hexameter_M_N = mkN "hexameter" ; -- [XPXEO] :: hexameter line; verse in hexameter; @@ -21611,10 +21604,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat hexaphorum_N_N = mkN "hexaphorum" ; -- [XXXES] :: six-man litter; 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; + 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; - hiatus_M_N = mkN "hiatus" "hiatus " masculine ; -- [XXXBO] :: |hiatus; action of gaping/yawning/splitting open; greedy desire (for w/GEN); + hiatus_M_N = mkN "hiatus" "hiatus" masculine ; -- [XXXBO] :: |hiatus; action of gaping/yawning/splitting open; greedy desire (for w/GEN); hibernaculum_N_N = mkN "hibernaculum" ; -- [XXXDX] :: winter quarters; hibernalis_A = mkA "hibernalis" "hibernalis" "hibernale" ; -- [XXXCE] :: wintry; stormy, of/for winter time/rainy season; hiberno_V = mkV "hibernare" ; -- [XXXDX] :: spend the winter; be in winter quarters; @@ -21622,14 +21615,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat hibernus_A = mkA "hibernus" "hiberna" "hibernum" ; -- [XXXCO] :: wintry; stormy, of/for winter time/rainy season; [hiberno => in winter]; hibiscum_N_N = mkN "hibiscum" ; -- [XAXEO] :: marsh mallow; (Althea officinalis); (shrubby herb, grows near salt marshes); hibiscus_F_N = mkN "hibiscus" ; -- [XAXES] :: marsh mallow; (Althea officinalis); (shrubby herb, grows near salt marshes); - hibix_M_N = mkN "hibix" "hibicis " masculine ; -- [EAXFW] :: ibex; wild goat (Douay/KJames); + hibix_M_N = mkN "hibix" "hibicis" masculine ; -- [EAXFW] :: ibex; wild goat (Douay/KJames); hibrida_F_N = mkN "hibrida" ; -- [XAXEC] :: hybrid; hic_Adv = mkAdv "hic" ; -- [XXXDX] :: here, in this place; in the present circumstances; hiemalis_A = mkA "hiemalis" "hiemalis" "hiemale" ; -- [XXXDX] :: wintry; stormy; of/for winter time/rainy season; hiemans_A = mkA "hiemans" "hiemantis"; -- [EXXEE] :: stormy, raging; wintry; frozen, cold; hiemo_V = mkV "hiemare" ; -- [XXXDX] :: winter, pass the winter, keep winter quarters; be wintry/frozen/stormy; - hiemps_F_N = mkN "hiemps" "hiemis " feminine ; -- [XXXDX] :: winter, winter time; rainy season; cold, frost; storm, stormy weather; - hiems_F_N = mkN "hiems" "hiemis " feminine ; -- [XXXAX] :: winter, winter time; rainy season; cold, frost; storm, stormy weather; + hiemps_F_N = mkN "hiemps" "hiemis" feminine ; -- [XXXDX] :: winter, winter time; rainy season; cold, frost; storm, stormy weather; + hiems_F_N = mkN "hiems" "hiemis" feminine ; -- [XXXAX] :: winter, winter time; rainy season; cold, frost; storm, stormy weather; hiera_F_N = mkN "hiera" ; -- [XXXFO] :: drawn contest; (the prize being awarded to a god); hierarcha_M_N = mkN "hierarcha" ; -- [FEXEF] :: bishop; hierarch, member of hierarchy; hierarchia_F_N = mkN "hierarchia" ; -- [FEXEE] :: hierarchy; governing body of Church; @@ -21642,15 +21635,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; 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; 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; + 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); hinnus_M_N = mkN "hinnus" ; -- [XAXEC] :: mule; @@ -21659,8 +21652,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat hippagogus_M_N = mkN "hippagogus" ; -- [XWXEC] :: transports (pl.) for cavalry; hippocampus_M_N = mkN "hippocampus" ; -- [XXXES] :: sea-horse; hippocentaurus_M_N = mkN "hippocentaurus" ; -- [XYXEC] :: centaur; - hippodromos_M_N = mkN "hippodromos" "hippodromi " masculine ; -- [XXXEC] :: hippodrome racecourse; - hippomanes_N_N = mkN "hippomanes" "hippomanis " neuter ; -- [XAXCO] :: |small black membrane on forehead of foal; (for love potion/to arouse passion); + hippodromos_M_N = mkN "hippodromos" "hippodromi" masculine ; -- [XXXEC] :: hippodrome racecourse; + hippomanes_N_N = mkN "hippomanes" "hippomanis" neuter ; -- [XAXCO] :: |small black membrane on forehead of foal; (for love potion/to arouse passion); hippotoxota_M_N = mkN "hippotoxota" ; -- [XXXDX] :: mounted archers (pl.); hippurus_M_N = mkN "hippurus" ; -- [GXXEK] :: gilt-head fish; hircinus_A = mkA "hircinus" "hircina" "hircinum" ; -- [XAXEC] :: of a goat; goat-like; @@ -21672,9 +21665,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat hirniosus_A = mkA "hirniosus" "hirniosa" "hirniosum" ; -- [EBXFW] :: having hernia/rupture/enlarged scrotum; hirsutus_A = mkA "hirsutus" "hirsuta" "hirsutum" ; -- [XXXDX] :: rough, shaggy, hairy, bristly, prickly; rude; hirtus_A = mkA "hirtus" "hirta" "hirtum" ; -- [XAXCO] :: hairy/shaggy, covered with hair/wool; thick growth (plants); rough/unpolished; - hirudo_F_N = mkN "hirudo" "hirudinis " feminine ; -- [XXXDX] :: leech; + hirudo_F_N = mkN "hirudo" "hirudinis" feminine ; -- [XXXDX] :: leech; hirundininus_A = mkA "hirundininus" "hirundinina" "hirundininum" ; -- [XAXES] :: swallow-; of swallows; - hirundo_F_N = mkN "hirundo" "hirundinis " feminine ; -- [XXXDX] :: swallow; martin; small bird; flying fish; + hirundo_F_N = mkN "hirundo" "hirundinis" feminine ; -- [XXXDX] :: swallow; martin; small bird; flying fish; hisco_V = mkV "hiscare" ; -- [XXXDX] :: (begin to) open, gape; open the mouth to speak; hisopum_N_N = mkN "hisopum" ; -- [XAXDO] :: aromatic herb; (perh. various species of origanum); Hyssopus officinalis (L+S); hisopus_F_N = mkN "hisopus" ; -- [XAXDO] :: aromatic herb; (perh. various species of origanum); Hyssopus officinalis (L+S); @@ -21688,7 +21681,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat historiographus_M_N = mkN "historiographus" ; -- [EDXES] :: history-writer; histriatus_A = mkA "histriatus" "histriata" "histriatum" ; -- [ETXFW] :: chamfered/fluted/grooved (Douay); w/knobs/bosses/studs/protuberances (K.James); histricus_A = mkA "histricus" "histrica" "histricum" ; -- [XDXEC] :: of actors; - histrio_M_N = mkN "histrio" "histrionis " masculine ; -- [XXXDX] :: actor; performer in pantomime; + histrio_M_N = mkN "histrio" "histrionis" masculine ; -- [XXXDX] :: actor; performer in pantomime; histronia_F_N = mkN "histronia" ; -- [XXXFS] :: dramatic art; assume character of actor; hiulcus_A = mkA "hiulcus" "hiulca" "hiulcum" ; -- [XXXDX] :: gaping, having the mouth wide open, insatiable, greedy; cracked; disconnected; hocceus_M_N = mkN "hocceus" ; -- [GXXEK] :: hockey; @@ -21702,15 +21695,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat hoedus_M_N = mkN "hoedus" ; -- [XAXCS] :: kid, young goat; two stars in constellation Auriga (Charioteer), "The Kid"; 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); + holocaustoma_N_N = mkN "holocaustoma" "holocaustomatis" neuter ; -- [DEQES] :: 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); + 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; holosericus_A = mkA "holosericus" "holoserica" "holosericum" ; -- [GXXET] :: all silk, made entirely of silk; (Erasmus); holoverus_A = mkA "holoverus" "holovera" "holoverum" ; -- [XXXFS] :: quite real; wholly of purple; - holus_N_N = mkN "holus" "holeris " neuter ; -- [XXXDX] :: vegetables; cabbage, turnips, greens; kitchen/pot herbs; edible grass (Cal); + holus_N_N = mkN "holus" "holeris" neuter ; -- [XXXDX] :: vegetables; cabbage, turnips, greens; kitchen/pot herbs; edible grass (Cal); holusculum_N_N = mkN "holusculum" ; -- [XXXDX] :: vegetables (in depreciatory sense); homagium_N_N = mkN "homagium" ; -- [FLXFJ] :: homage; homicida_C_N = mkN "homicida" ; -- [XXXCO] :: murderer, homicide; killer of men (applied to epic heroes); @@ -21719,9 +21712,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat homileticus_A = mkA "homileticus" "homiletica" "homileticum" ; -- [FEXFE] :: of homilies; of preaching; homilia_F_N = mkN "homilia" ; -- [FEXDE] :: homily; homiliarium_N_N = mkN "homiliarium" ; -- [FEXEF] :: collection of homilies; - homo_M_N = mkN "homo" "hominis " masculine ; -- [XXXAX] :: man, human being, person, fellow; [novus homo => nouveau riche]; - homoeoteleuton_N_N = mkN "homoeoteleuton" "homoeoteleuti " neuter ; -- [XPXES] :: like-ending; rhyme; - homogeneitas_F_N = mkN "homogeneitas" "homogeneitatis " feminine ; -- [GXXEK] :: homogeneity; + homo_M_N = mkN "homo" "hominis" masculine ; -- [XXXAX] :: man, human being, person, fellow; [novus homo => nouveau riche]; + homoeoteleuton_N_N = mkN "homoeoteleuton" "homoeoteleuti" neuter ; -- [XPXES] :: like-ending; rhyme; + homogeneitas_F_N = mkN "homogeneitas" "homogeneitatis" feminine ; -- [GXXEK] :: homogeneity; homogeneus_A = mkA "homogeneus" "homogenea" "homogeneum" ; -- [GXXEK] :: homogeneous; homogium_N_N = mkN "homogium" ; -- [FXXEE] :: homage; homographus_A = mkA "homographus" "homographa" "homographum" ; -- [DGXES] :: autograph; entirely autograph, wholly written by one's own hand; @@ -21729,18 +21722,18 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat homologus_M_N = mkN "homologus" ; -- [FXXEK] :: counterpart; homologue; homoousius_A = mkA "homoousius" "homoousia" "homoousium" ; -- [FEXEE] :: consubstantial, of same subtance; homosexualis_A = mkA "homosexualis" "homosexualis" "homosexuale" ; -- [HXXEE] :: homosexual; - homosexualis_F_N = mkN "homosexualis" "homosexualis " feminine ; -- [HXXEE] :: homosexual (person); - homosexualis_M_N = mkN "homosexualis" "homosexualis " masculine ; -- [HXXEE] :: homosexual (person); - homosexualitas_F_N = mkN "homosexualitas" "homosexualitatis " feminine ; -- [HXXEE] :: homosexuality; + homosexualis_F_N = mkN "homosexualis" "homosexualis" feminine ; -- [HXXEE] :: homosexual (person); + homosexualis_M_N = mkN "homosexualis" "homosexualis" masculine ; -- [HXXEE] :: homosexual (person); + homosexualitas_F_N = mkN "homosexualitas" "homosexualitatis" feminine ; -- [HXXEE] :: homosexuality; homullus_M_N = mkN "homullus" ; -- [XXXEC] :: little man, manikin; - homuncio_M_N = mkN "homuncio" "homuncionis " masculine ; -- [XXXEC] :: little man, manikin; + homuncio_M_N = mkN "homuncio" "homuncionis" masculine ; -- [XXXEC] :: little man, manikin; homunculus_M_N = mkN "homunculus" ; -- [XXXEC] :: little man, manikin; - honestas_F_N = mkN "honestas" "honestatis " feminine ; -- [XXXDX] :: honor, integrity, honesty; wealth (Plater); + honestas_F_N = mkN "honestas" "honestatis" feminine ; -- [XXXDX] :: honor, integrity, honesty; wealth (Plater); 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; 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; + 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; @@ -21754,7 +21747,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + honos_M_N = mkN "honos" "honoris" masculine ; -- [BXXAO] :: honor; respect/regard; mark of esteem, reward; dignity/grace; public office; hoplomachus_M_N = mkN "hoplomachus" ; -- [XXXEC] :: gladiator; hora_F_N = mkN "hora" ; -- [XXXAX] :: hour; time; season; [Horae => Seasons]; horalis_A = mkA "horalis" "horalis" "horale" ; -- [GXXEK] :: hourly; @@ -21778,9 +21771,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat hornotinus_A = mkA "hornotinus" "hornotina" "hornotinum" ; -- [XXXEC] :: of this year, this year's; hornus_A = mkA "hornus" "horna" "hornum" ; -- [XXXDX] :: this year's; born/produced in the current year; horologiarius_M_N = mkN "horologiarius" ; -- [GXXEK] :: watchmaker; - horologion_N_N = mkN "horologion" "horologii " neuter ; -- [EEHEE] :: horologion (in Eastern Church, book of prayers/hymns for daily hours); + horologion_N_N = mkN "horologion" "horologii" neuter ; -- [EEHEE] :: horologion (in Eastern Church, book of prayers/hymns for daily hours); horologium_N_N = mkN "horologium" ; -- [XXXDX] :: clock, sundial; - horoma_N_N = mkN "horoma" "horomatis " neuter ; -- [DEXEZ] :: vision; + 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; horresco_V2 = mkV2 (mkV "horrescere" "horresco" "horrui" nonExist ) ; -- [XXXDX] :: dread, become terrified; bristle up; begin to shake/tremble/shudder/shiver; @@ -21790,16 +21783,16 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; horrificus_A = mkA "horrificus" "horrifica" "horrificum" ; -- [XXXDX] :: awful, horrible, dreadful; frightening, chilling, exciting terror; - horripilatio_F_N = mkN "horripilatio" "horripilationis " feminine ; -- [XXXFE] :: bristling (of hair); + horripilatio_F_N = mkN "horripilatio" "horripilationis" feminine ; -- [XXXFE] :: bristling (of hair); horripilo_V = mkV "horripilare" ; -- [XXXFO] :: become bristly/hairy; be shaggy (L+S); shudder/shake (Sou); pierce (Douay); horrisonus_A = mkA "horrisonus" "horrisona" "horrisonum" ; -- [XXXDX] :: sounding dreadfully; - horror_M_N = mkN "horror" "horroris " masculine ; -- [XXXBX] :: shivering, dread, awe rigidity (from cold, etc); + horror_M_N = mkN "horror" "horroris" masculine ; -- [XXXBX] :: shivering, dread, awe rigidity (from cold, etc); hortalitium_N_N = mkN "hortalitium" ; -- [FAXFY] :: garden; - hortamen_N_N = mkN "hortamen" "hortaminis " neuter ; -- [XXXDX] :: encouragement; + hortamen_N_N = mkN "hortamen" "hortaminis" neuter ; -- [XXXDX] :: encouragement; hortamentum_N_N = mkN "hortamentum" ; -- [XXXEC] :: exhortation, encouragement, incitement; - hortatio_F_N = mkN "hortatio" "hortationis " feminine ; -- [XXXDX] :: encouragement; exhortation; + hortatio_F_N = mkN "hortatio" "hortationis" feminine ; -- [XXXDX] :: encouragement; exhortation; hortativus_A = mkA "hortativus" "hortativa" "hortativum" ; -- [XXXEC] :: of encouragement; - hortator_M_N = mkN "hortator" "hortatoris " masculine ; -- [XXXCO] :: inciter; encourager, exhorter; urger (sight/sound) of horses in chariot races; + hortator_M_N = mkN "hortator" "hortatoris" masculine ; -- [XXXCO] :: inciter; encourager, exhorter; urger (sight/sound) of horses in chariot races; hortatorius_A = mkA "hortatorius" "hortatoria" "hortatorium" ; -- [XXXEE] :: cheering, comforting; encouraging; hortatus_A = mkA "hortatus" "hortata" "hortatum" ; -- [XXXDX] :: encouragement, urging; hortensis_A = mkA "hortensis" "hortensis" "hortense" ; -- [XAXFO] :: grown in gardens; belonging to/in a garden; @@ -21810,11 +21803,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat hortulus_M_N = mkN "hortulus" ; -- [XXXDX] :: small/little garden; park (pl.); pleasure grounds; hortus_M_N = mkN "hortus" ; -- [XXXAX] :: garden, fruit/kitchen garden; pleasure garden; park (pl.); hospes_A = mkA "hospes" "hospitis"; -- [XXXCO] :: of relation between host and guest; that hosts; that guests; foreign, alien; - hospes_M_N = mkN "hospes" "hospitis " masculine ; -- [XXXBO] :: host; guest, visitor, stranger; soldier in billets; one who billets soldiers; + hospes_M_N = mkN "hospes" "hospitis" masculine ; -- [XXXBO] :: host; guest, visitor, stranger; soldier in billets; one who billets soldiers; hospita_F_N = mkN "hospita" ; -- [XXXCO] :: female guest; hostess, wife of host; landlady; stranger, alien; - hospitale_N_N = mkN "hospitale" "hospitalis " neuter ; -- [XXXEE] :: hospital; guesthouse, guestroom; + hospitale_N_N = mkN "hospitale" "hospitalis" neuter ; -- [XXXEE] :: hospital; guesthouse, guestroom; hospitalis_A = mkA "hospitalis" "hospitalis" "hospitale" ; -- [XXXDX] :: of or for a guest; hospitable; - hospitalitas_F_N = mkN "hospitalitas" "hospitalitatis " feminine ; -- [XXXEO] :: hospitality, entertainment of guests; + hospitalitas_F_N = mkN "hospitalitas" "hospitalitatis" feminine ; -- [XXXEO] :: hospitality, entertainment of guests; hospitaliter_Adv = mkAdv "hospitaliter" ; -- [XXXDX] :: in a hospitable manner; hospitium_N_N = mkN "hospitium" ; -- [XXXBX] :: hospitality, entertainment; lodging; guest room/lodging; inn; hospito_V2 = mkV2 (mkV "hospitare") ; -- [EXXFW] :: play/act as host; offer hospitality; put up guests/lodgers; @@ -21824,12 +21817,12 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat hostiaria_F_N = mkN "hostiaria" ; -- [EEXEE] :: vessel for hosts (consecrated bread/wafers); hosticus_A = mkA "hosticus" "hostica" "hosticum" ; -- [XXXDX] :: of or belonging to an enemy, hostile; hostilis_A = mkA "hostilis" "hostilis" "hostile" ; -- [XWXDX] :: hostile, enemy; of/belonging to an enemy; involving/performed by an enemy; - hostilitas_F_N = mkN "hostilitas" "hostilitatis " feminine ; -- [XXXEE] :: hostility, enmity; + 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; 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.); + 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.); 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; @@ -21840,7 +21833,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat humanista_M_N = mkN "humanista" ; -- [GXXEK] :: humanist; humanisticus_A = mkA "humanisticus" "humanistica" "humanisticum" ; -- [FSXFE] :: humanist; humanistic; humanitarius_A = mkA "humanitarius" "humanitaria" "humanitarium" ; -- [GXXEK] :: humanitarian; - humanitas_F_N = mkN "humanitas" "humanitatis " feminine ; -- [XXXBO] :: human nature/character/feeling; kindness/courtesy; culture/civilization; + humanitas_F_N = mkN "humanitas" "humanitatis" feminine ; -- [XXXBO] :: human nature/character/feeling; kindness/courtesy; culture/civilization; humaniter_Adv = mkAdv "humaniter" ; -- [XXXDO] :: reasonably, moderately; in manner becoming a man; in kindly/friendly manner; 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); @@ -21849,27 +21842,27 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat humecto_V2 = mkV2 (mkV "humectare") ; -- [XXXEE] :: moisten; humectus_A = mkA "humectus" "humecta" "humectum" ; -- [XXXEC] :: moist; humens_A = mkA "humens" "humentis"; -- [XXXDX] :: moist, wet; - humerale_N_N = mkN "humerale" "humeralis " neuter ; -- [XXXFO] :: cape, protective shoulder cover; outer robe; ecclesiastic humeral; amice; + humerale_N_N = mkN "humerale" "humeralis" neuter ; -- [XXXFO] :: cape, protective shoulder cover; outer robe; ecclesiastic humeral; amice; humerulus_M_N = mkN "humerulus" ; -- [XXXFE] :: side; humerus_M_N = mkN "humerus" ; -- [XXXDX] :: upper arm, shoulder; humi_Adv = mkAdv "humi" ; -- [XXXDX] :: on/to the ground; - humicubatio_F_N = mkN "humicubatio" "humicubationis " feminine ; -- [EEXEE] :: humicubation, lying on ground as penance; - humiditas_F_N = mkN "humiditas" "humiditatis " feminine ; -- [XXXBO] :: |degradation, debasement; humiliation; submissiveness, subservience; humility; + humicubatio_F_N = mkN "humicubatio" "humicubationis" feminine ; -- [EEXEE] :: humicubation, lying on ground as penance; + humiditas_F_N = mkN "humiditas" "humiditatis" feminine ; -- [XXXBO] :: |degradation, debasement; humiliation; submissiveness, subservience; humility; humidum_N_N = mkN "humidum" ; -- [XXXDX] :: swamp; humidus_A = mkA "humidus" "humida" "humidum" ; -- [XXXDX] :: damp, moist, dank, wet, humid; - humiliatio_F_N = mkN "humiliatio" "humiliationis " feminine ; -- [DXXES] :: humiliation, humbling; + humiliatio_F_N = mkN "humiliatio" "humiliationis" feminine ; -- [DXXES] :: humiliation, humbling; humilio_V2 = mkV2 (mkV "humiliare") ; -- [DXXCS] :: humble; abase; humiliate (Def); 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); + 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; - humor_M_N = mkN "humor" "humoris " masculine ; -- [XXXDX] :: fluid, liquid, moisture, humor; [Bacchi ~ => wine]; + humor_M_N = mkN "humor" "humoris" masculine ; -- [XXXDX] :: fluid, liquid, moisture, humor; [Bacchi ~ => wine]; humus_F_N = mkN "humus" ; -- [XXXAX] :: ground, soil, earth, land, country; hundredum_N_N = mkN "hundredum" ; -- [FLXFZ] :: hundred (name of land area or court); hutesium_N_N = mkN "hutesium" ; -- [FLXFJ] :: pursuit; hue and cry; hyacinthina_F_N = mkN "hyacinthina" ; -- [XXXEE] :: amethyst; dark-colored precious stone; hyacinthinus_A = mkA "hyacinthinus" "hyacinthina" "hyacinthinum" ; -- [XXXEO] :: of/belonging to hyacinth; hyacinth-colored/violet/blue/sapphire/purple; - hyacinthos_M_N = mkN "hyacinthos" "hyacinthi " masculine ; -- [XXXCO] :: iris; (prob. not hyacinth); sapphire; blue-dyed cloth (Souter); + hyacinthos_M_N = mkN "hyacinthos" "hyacinthi" masculine ; -- [XXXCO] :: iris; (prob. not hyacinth); sapphire; blue-dyed cloth (Souter); hyacinthus_M_N = mkN "hyacinthus" ; -- [XXXCO] :: iris; (prob. not hyacinth); sapphire; blue-dyed cloth (Souter); hyaena_F_N = mkN "hyaena" ; -- [XXXEC] :: hyena; hyalus_M_N = mkN "hyalus" ; -- [XXXDX] :: glass; @@ -21888,15 +21881,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat hydrographia_F_N = mkN "hydrographia" ; -- [GSXEK] :: hydrography; hydrographicus_A = mkA "hydrographicus" "hydrographica" "hydrographicum" ; -- [GSXEK] :: hydrographic; hydrologicus_A = mkA "hydrologicus" "hydrologica" "hydrologicum" ; -- [HSXEK] :: hydrologic; - hydromel_N_N = mkN "hydromel" "hydromellis " neuter ; -- [EXXEO] :: mead; honey-water; (beverage of fermented honey and water); hydromel; - hydromeli_N_N = mkN "hydromeli" "hydromelitis " neuter ; -- [XXXDO] :: mead; honey-water; (beverage of fermented honey and water); hydromel; + hydromel_N_N = mkN "hydromel" "hydromellis" neuter ; -- [EXXEO] :: mead; honey-water; (beverage of fermented honey and water); hydromel; + hydromeli_N_N = mkN "hydromeli" "hydromelitis" neuter ; -- [XXXDO] :: mead; honey-water; (beverage of fermented honey and water); hydromel; hydromellum_N_N = mkN "hydromellum" ; -- [FXXEM] :: mead; honey-water; (beverage of fermented honey and water); hydromel; wort; hydropicus_A = mkA "hydropicus" "hydropica" "hydropicum" ; -- [XBXCO] :: dropsical, suffering from dropsy; - hydropisis_F_N = mkN "hydropisis" "hydropisis " feminine ; -- [XBXNO] :: 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; + hydrops_M_N = mkN "hydrops" "hydropis" masculine ; -- [XBXEO] :: dropsy; hydrosphaera_F_N = mkN "hydrosphaera" ; -- [GTXEK] :: hydrosphere; hydrostatica_F_N = mkN "hydrostatica" ; -- [GSXEK] :: hydrostatic; hydrostaticus_A = mkA "hydrostaticus" "hydrostatica" "hydrostaticum" ; -- [GSXEK] :: hydrostatic; @@ -21911,20 +21904,20 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat hymnicus_A = mkA "hymnicus" "hymnica" "hymnicum" ; -- [FEXFE] :: of hymns; hymnizo_V = mkV "hymnizare" ; -- [FEXEE] :: sing hymns; worship in song; hymnodia_F_N = mkN "hymnodia" ; -- [FEXFE] :: singing of hymns; - hymnologion_N_N = mkN "hymnologion" "hymnologii " neuter ; -- [FEHFE] :: hymnal, hymn-book (in Greek rite); + hymnologion_N_N = mkN "hymnologion" "hymnologii" neuter ; -- [FEHFE] :: hymnal, hymn-book (in Greek rite); hymnus_M_N = mkN "hymnus" ; -- [EEXDX] :: hymn; hyoscyamus_M_N = mkN "hyoscyamus" ; -- [XAXES] :: henbane; (annual herb Hyoscyamus niger); - hypaethros_M_N = mkN "hypaethros" "hypaethri " masculine ; -- [XEXES] :: open temple; + hypaethros_M_N = mkN "hypaethros" "hypaethri" masculine ; -- [XEXES] :: open temple; hypaethrum_N_N = mkN "hypaethrum" ; -- [XXXES] :: open building; hypaethrus_A = mkA "hypaethrus" "hypaethra" "hypaethrum" ; -- [XXXES] :: uncovered; - hypallage_F_N = mkN "hypallage" "hypallages " feminine ; -- [XGXES] :: rhetorical figure; interchanged relations between things; - hypate_F_N = mkN "hypate" "hypates " feminine ; -- [XDXFO] :: bass string (instrument); lowest note of tetrachord; notes of lowest tetrachord; - hypaton_N_N = mkN "hypaton" "hypati " neuter ; -- [FDXEZ] :: deepest/lowest string/note; (of tetrachord); - hyperbaton_N_N = mkN "hyperbaton" "hyperbati " neuter ; -- [XGXEC] :: transposition of words; + hypallage_F_N = mkN "hypallage" "hypallages" feminine ; -- [XGXES] :: rhetorical figure; interchanged relations between things; + hypate_F_N = mkN "hypate" "hypates" feminine ; -- [XDXFO] :: bass string (instrument); lowest note of tetrachord; notes of lowest tetrachord; + hypaton_N_N = mkN "hypaton" "hypati" neuter ; -- [FDXEZ] :: deepest/lowest string/note; (of tetrachord); + hyperbaton_N_N = mkN "hyperbaton" "hyperbati" neuter ; -- [XGXEC] :: transposition of words; hyperbola_F_N = mkN "hyperbola" ; -- [GSXEK] :: hyperbole (math.); - hyperbolaeos_F_N = mkN "hyperbolaeos" "hyperbolaei " feminine ; -- [XDXEO] :: notes/strings in highest pitch tetrachord; highest tetrachord in 2-octave scale; + hyperbolaeos_F_N = mkN "hyperbolaeos" "hyperbolaei" feminine ; -- [XDXEO] :: notes/strings in highest pitch tetrachord; highest tetrachord in 2-octave scale; hyperbolaeus_A = mkA "hyperbolaeus" "hyperbolaea" "hyperbolaeum" ; -- [DXXFS] :: extreme; - hyperbole_F_N = mkN "hyperbole" "hyperboles " feminine ; -- [XGXEO] :: exaggeration, hyperbole, overstatement; + hyperbole_F_N = mkN "hyperbole" "hyperboles" feminine ; -- [XGXEO] :: exaggeration, hyperbole, overstatement; hyperboleus_F_N = mkN "hyperboleus" ; -- [EDXEP] :: notes/strings in highest pitch tetrachord; highest tetrachord in 2-octave scale; hyperbolice_Adv = mkAdv "hyperbolice" ; -- [DXXFS] :: excessively; hyperbolically; with exaggeration; hyperbolicus_A = mkA "hyperbolicus" "hyperbolica" "hyperbolicum" ; -- [DXXFS] :: excessive, overstrained, hyperbolical/hyperbolic; insolent (Latham); @@ -21932,17 +21925,17 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat hyperdulia_F_N = mkN "hyperdulia" ; -- [FEXFE] :: superior veneration; veneration due Blessed Virgin Mary; hypermetricus_A = mkA "hypermetricus" "hypermetrica" "hypermetricum" ; -- [HSXFE] :: over/exceeding a meter; hypertrophia_F_N = mkN "hypertrophia" ; -- [GXXEK] :: hypertrophy; enlargement of part/organ, excessive growth/development; - hypnosis_F_N = mkN "hypnosis" "hypnosis " feminine ; -- [GXXEK] :: hypnosis; + hypnosis_F_N = mkN "hypnosis" "hypnosis" feminine ; -- [GXXEK] :: hypnosis; hypnotismus_M_N = mkN "hypnotismus" ; -- [HSXFE] :: hypnotism; hypnotista_M_N = mkN "hypnotista" ; -- [GXXEK] :: hypnotist; hypnotizo_V = mkV "hypnotizare" ; -- [GXXEK] :: hypnotize; - hypocauston_N_N = mkN "hypocauston" "hypocausti " neuter ; -- [XXXDX] :: system of hot-air channels for heating baths; + hypocauston_N_N = mkN "hypocauston" "hypocausti" neuter ; -- [XXXDX] :: system of hot-air channels for heating baths; hypocaustum_N_N = mkN "hypocaustum" ; -- [XXXET] :: system of hot-air channels for heating baths; room heated from below; (Erasmus); hypochondria_F_N = mkN "hypochondria" ; -- [GXXEK] :: hypochondria; hypochondriacus_A = mkA "hypochondriacus" "hypochondriaca" "hypochondriacum" ; -- [GXXEK] :: hypochondriac; - hypocrisis_F_N = mkN "hypocrisis" "hypocrisis " feminine ; -- [EEXES] :: hypocrisy, pretended sanctity; mimicry, imitation of speech/gestures; + hypocrisis_F_N = mkN "hypocrisis" "hypocrisis" feminine ; -- [EEXES] :: hypocrisy, pretended sanctity; mimicry, imitation of speech/gestures; hypocrita_M_N = mkN "hypocrita" ; -- [XDXEO] :: actor; mime accompanying actor's delivery w/gestures (L+S); hypocrite; - hypocrites_M_N = mkN "hypocrites" "hypocritae " masculine ; -- [XDXEO] :: actor; mime accompanying actor's delivery w/gestures (L+S); hypocrite; + hypocrites_M_N = mkN "hypocrites" "hypocritae" masculine ; -- [XDXEO] :: actor; mime accompanying actor's delivery w/gestures (L+S); hypocrite; hypodiaconus_M_N = mkN "hypodiaconus" ; -- [FEXFE] :: subdeacon; hypodiaconxus_M_N = mkN "hypodiaconxus" ; -- [GXXET] :: subdeacon; (Erasmus); hypodidascalus_M_N = mkN "hypodidascalus" ; -- [XXXEC] :: under-teacher, under-master; @@ -21951,19 +21944,19 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat hypogeum_N_N = mkN "hypogeum" ; -- [XXXEO] :: crypt; vault; underground chamber/room; hypogeus_A = mkA "hypogeus" "hypogea" "hypogeum" ; -- [XXXIO] :: underground; hypolydius_A = mkA "hypolydius" "hypolydia" "hypolydium" ; -- [EDXEP] :: hypolydian (scale in music); type of music; - hypomnema_N_N = mkN "hypomnema" "hypomnematis " neuter ; -- [XXXEC] :: memorandum, note; + hypomnema_N_N = mkN "hypomnema" "hypomnematis" neuter ; -- [XXXEC] :: memorandum, note; hypophrygius_A = mkA "hypophrygius" "hypophrygia" "hypophrygium" ; -- [EDXEP] :: hypophrygian (scale in music); type of music; - hypostasis_F_N = mkN "hypostasis" "hypostasis " feminine ; -- [FEXDF] :: basis, foundation; single substance; rational single substance, person; + hypostasis_F_N = mkN "hypostasis" "hypostasis" feminine ; -- [FEXDF] :: basis, foundation; single substance; rational single substance, person; hypostaticus_A = mkA "hypostaticus" "hypostatica" "hypostaticum" ; -- [FEXDF] :: hypostatic, pertaining to the person; hypotenusa_F_N = mkN "hypotenusa" ; -- [XSXEO] :: hypotenuse; hypotheca_F_N = mkN "hypotheca" ; -- [XLXEO] :: security for a loan or debt; hypothecarius_A = mkA "hypothecarius" "hypothecaria" "hypothecarium" ; -- [XLXEO] :: concerning security for loan/debt; [actio ~=>suit on claim to property pledged]; hypotheco_V = mkV "hypothecare" ; -- [GXXEK] :: mortgage; - hypothesis_F_N = mkN "hypothesis" "hypothesis " feminine ; -- [GXXEK] :: hypothesis; + hypothesis_F_N = mkN "hypothesis" "hypothesis" feminine ; -- [GXXEK] :: hypothesis; hypotheticus_A = mkA "hypotheticus" "hypothetica" "hypotheticum" ; -- [FXXFM] :: hypothetical; hypotheticus_M_N = mkN "hypotheticus" ; -- [XSXFS] :: hypothetician; mathematician who proceeds hypothetically; hypozonium_N_N = mkN "hypozonium" ; -- [GXXEK] :: underskirt; - hyrax_M_N = mkN "hyrax" "hyracis " masculine ; -- [HAXFE] :: hyrax, rock badger, rock rabbit; (previously classified as Rodentia); + hyrax_M_N = mkN "hyrax" "hyracis" masculine ; -- [HAXFE] :: hyrax, rock badger, rock rabbit; (previously classified as Rodentia); hysginum_N_N = mkN "hysginum" ; -- [DAXNS] :: dark-red dye (Pliny); hysopum_N_N = mkN "hysopum" ; -- [XAXDO] :: aromatic herb; (perh. various species of origanum); Hyssopus officinalis (L+S); hysopus_F_N = mkN "hysopus" ; -- [XAXDO] :: aromatic herb; (perh. various species of origanum); Hyssopus officinalis (L+S); @@ -21979,26 +21972,26 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat iambicus_M_N = mkN "iambicus" ; -- [XPXFO] :: writer of iambic (satiric) verse; iambus_M_N = mkN "iambus" ; -- [XPXCO] :: iambus, metrical foot (one short-one long); iambic trimeter (as invective); ianus_M_N = mkN "ianus" ; -- [FXXEN] :: arcade, covered passage; - ibex_F_N = mkN "ibex" "ibicis " feminine ; -- [XAXNO] :: ibex; (species of wild mountain goat w/large ridged recurved diverging horns); + 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); + ibis_F_N = mkN "ibis" "ibis" feminine ; -- [XAXCO] :: 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]; + 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; + 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; 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); + icosaedron_N_N = mkN "icosaedron" "icosaedri" neuter ; -- [FSXFM] :: icosahedron; (solid figure with 20 sides); ictericus_A = mkA "ictericus" "icterica" "ictericum" ; -- [XBXEC] :: jaundiced; - ictus_M_N = mkN "ictus" "ictus " masculine ; -- [XPXAX] :: blow, stroke; musical/metrical beat; measure (music); + ictus_M_N = mkN "ictus" "ictus" masculine ; -- [XPXAX] :: blow, stroke; musical/metrical beat; measure (music); idcirco_Adv = mkAdv "idcirco" ; -- [XXXDX] :: on that account; therefore; idea_F_N = mkN "idea" ; -- [XSXFO] :: idea; eternal prototype (Platonic philosophy); idealismus_M_N = mkN "idealismus" ; -- [GXXEK] :: idealism; @@ -22007,31 +22000,31 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat ideirco_Adv = mkAdv "ideirco" ; -- [XXXDX] :: therefore, for that reason; identicus_A = mkA "identicus" "identica" "identicum" ; -- [GXXEK] :: identical; identidem_Adv = mkAdv "identidem" ; -- [XXXDX] :: repeatedly; again and again, continually; - identificatio_F_N = mkN "identificatio" "identificationis " feminine ; -- [GXXEK] :: identification; + identificatio_F_N = mkN "identificatio" "identificationis" feminine ; -- [GXXEK] :: identification; identifico_V = mkV "identificare" ; -- [GXXEK] :: identify; - identitas_F_N = mkN "identitas" "identitatis " feminine ; -- [FXXEZ] :: identity?; IDENTITAT; + identitas_F_N = mkN "identitas" "identitatis" feminine ; -- [FXXEZ] :: identity?; IDENTITAT; ideo_Adv = mkAdv "ideo" ; -- [XXXAX] :: therefore, for the reason that, for that reason; ideologia_F_N = mkN "ideologia" ; -- [GXXEK] :: ideology; ideologicus_A = mkA "ideologicus" "ideologica" "ideologicum" ; -- [GXXEK] :: ideological; - idioma_N_N = mkN "idioma" "idiomatis " neuter ; -- [GXXEK] :: idiom; + idioma_N_N = mkN "idioma" "idiomatis" neuter ; -- [GXXEK] :: idiom; idiota_M_N = mkN "idiota" ; -- [XXXEC] :: ignorant/uneducated man; idipsum_Adv = mkAdv "idipsum" ; -- [FXXEE] :: together; forthwith; completely; that very thing; [~ sapere => be of one mind]; idolatra_C_N = mkN "idolatra" ; -- [EEXEE] :: idolater, idol worshipper; - idolatres_F_N = mkN "idolatres" "idolatrae " feminine ; -- [EEXEE] :: idolater, idol worshipper; - idolatres_M_N = mkN "idolatres" "idolatrae " masculine ; -- [EEXEE] :: idolater, idol worshipper; + idolatres_F_N = mkN "idolatres" "idolatrae" feminine ; -- [EEXEE] :: idolater, idol worshipper; + idolatres_M_N = mkN "idolatres" "idolatrae" masculine ; -- [EEXEE] :: idolater, idol worshipper; idolatria_C_N = mkN "idolatria" ; -- [EEXFE] :: idolater, idol worshipper; idolatria_F_N = mkN "idolatria" ; -- [EEXEE] :: idolatry, idol worship; idoleum_N_N = mkN "idoleum" ; -- [DEXDS] :: idol-temple; idolatry, paganism (Souter); idolicus_A = mkA "idolicus" "idolica" "idolicum" ; -- [DEXDS] :: of/belonging to idols/image of pagan god, idol-; idolatrous; heretical; pagan; idolium_N_N = mkN "idolium" ; -- [DEXDS] :: idol-temple, temple for an idol/pagan god; idolatry, paganism (Souter); - idololatres_M_N = mkN "idololatres" "idololatrae " masculine ; -- [DEXES] :: idolater, idol worshipper; + idololatres_M_N = mkN "idololatres" "idololatrae" masculine ; -- [DEXES] :: idolater, idol worshipper; idololatria_F_N = mkN "idololatria" ; -- [DEXES] :: idolatry, idol worship; idololatricus_A = mkA "idololatricus" "idololatrica" "idololatricum" ; -- [DEXEP] :: sacrificed to idols; idololatrio_V2 = mkV2 (mkV "idololatriare") ; -- [DEXFP] :: worship an idol; - idololatris_F_N = mkN "idololatris" "idololatridis " feminine ; -- [DEXES] :: idolatress, idol worshipper (female); + idololatris_F_N = mkN "idololatris" "idololatridis" feminine ; -- [DEXES] :: idolatress, idol worshipper (female); idololatrix_A = mkA "idololatrix" "idololatricis"; -- [DEXEP] :: sacrificed to idols; - idolon_N_N = mkN "idolon" "idoli " neuter ; -- [DXXDS] :: specter, apparition; image, form; idol (eccl.), image of pagan god; - idolothyton_N_N = mkN "idolothyton" "idolothyti " neuter ; -- [DEXEP] :: food offered to idols; something sacrificed to idols/images of false/pagan gods; + idolon_N_N = mkN "idolon" "idoli" neuter ; -- [DXXDS] :: specter, apparition; image, form; idol (eccl.), image of pagan god; + idolothyton_N_N = mkN "idolothyton" "idolothyti" neuter ; -- [DEXEP] :: food offered to idols; something sacrificed to idols/images of false/pagan gods; idolothytum_N_N = mkN "idolothytum" ; -- [DEXFP] :: food offered to idols; something sacrificed to idols/images of false/pagan gods; idolothytus_A = mkA "idolothytus" "idolothyta" "idolothytum" ; -- [DEXES] :: of/pertaining to sacrifices to idols; concerning idolatry (Souter); idolotitum_N_N = mkN "idolotitum" ; -- [DEXFP] :: something that has been sacrificed to idols/images of false/pagan gods; @@ -22049,27 +22042,27 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; 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; + ignobilitas_F_N = mkN "ignobilitas" "ignobilitatis" feminine ; -- [XXXDX] :: obscurity, want of fame; low birth; ignominia_F_N = mkN "ignominia" ; -- [XXXDX] :: disgrace, ignominy, dishonor; ignominiosus_A = mkA "ignominiosus" "ignominiosa" "ignominiosum" ; -- [XXXDX] :: disgraced; disgraceful; ignorans_A = mkA "ignorans" "ignorantis"; -- [DXXES] :: ignorant (of), unaware, not knowing; ignorant of Christian truth (Souter); ignoranter_Adv = mkAdv "ignoranter" ; -- [DXXES] :: ignorantly; unintentionally/not knowingly, unconsciously (Souter); unexpectedly; ignorantia_F_N = mkN "ignorantia" ; -- [XXXCO] :: ignorance; lack of knowledge; absence of data on which to make judgment; - 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; + 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); + 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; + 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; iliacus_A = mkA "iliacus" "iliaca" "iliacum" ; -- [XBXES] :: colicky; iliacus_C_N = mkN "iliacus" ; -- [XBXES] :: colic-sufferer; ilicet_Interj = ss "ilicet" ; -- [XXXCO] :: you may go/off with you; it's over; at once; [~ malam crucem => to Hell with]; @@ -22077,7 +22070,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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; @@ -22089,7 +22082,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat illatebro_V2 = mkV2 (mkV "illatebrare") ; -- [XXXFS] :: hide in a corner; illatinismus_M_N = mkN "illatinismus" ; -- [GXXEK] :: bad Latin; illatinus_A = mkA "illatinus" "illatina" "illatinum" ; -- [GXXEK] :: bad Latin-writing; - illatio_F_N = mkN "illatio" "illationis " feminine ; -- [EXXCP] :: |contribution/pension; tribute/tax; offering/sacrifice; petition; offer (oath); + illatio_F_N = mkN "illatio" "illationis" feminine ; -- [EXXCP] :: |contribution/pension; tribute/tax; offering/sacrifice; petition; offer (oath); illatro_V = mkV "illatrare" ; -- [XPXES] :: bark; illecebra_F_N = mkN "illecebra" ; -- [XXXDX] :: allurement, enticement, means of attraction; incitement; enticement by magic; illecebrosus_A = mkA "illecebrosus" "illecebrosa" "illecebrosum" ; -- [XXXDS] :: very enticing; seductive; @@ -22099,22 +22092,22 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat illegitimus_M_N = mkN "illegitimus" ; -- [FLXFJ] :: bastard; illepidus_A = mkA "illepidus" "illepida" "illepidum" ; -- [XXXDX] :: lacking grace or refinement; illex_A = mkA "illex" "illicis"; -- [EXXCV] :: false, fraudulent; - illex_F_N = mkN "illex" "illicis " feminine ; -- [XXXCO] :: one who entices/allures; decoy; - illex_M_N = mkN "illex" "illicis " masculine ; -- [XXXCO] :: one who entices/allures; decoy; + illex_F_N = mkN "illex" "illicis" feminine ; -- [XXXCO] :: one who entices/allures; decoy; + illex_M_N = mkN "illex" "illicis" masculine ; -- [XXXCO] :: one who entices/allures; decoy; illibatus_A = mkA "illibatus" "illibata" "illibatum" ; -- [XXXCO] :: intact, undiminished, kept/left whole/entire; unimpaired; illiberalis_A = mkA "illiberalis" "illiberalis" "illiberale" ; -- [XXXCO] :: ill-bred, ignoble, unworthy/unsuited to free man; niggardly/mean/ungenerous; - illiberalitas_F_N = mkN "illiberalitas" "illiberalitatis " feminine ; -- [XXXFO] :: stinginess, meanness, lack of generosity; + 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; + 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); + 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; + 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; @@ -22123,53 +22116,53 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat illuc_Adv = mkAdv "illuc" ; -- [XXXAX] :: there, thither, to that place/point; illuceo_V = mkV "illucere" ; -- [XXXEO] :: illuminate, shine on; 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; + 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; illumino_V2 = mkV2 (mkV "illuminare") ; -- [XXXCO] :: illuminate, give light to; light up; reveal/throw light on; brighten (w/color); illunius_A = mkA "illunius" "illunia" "illunium" ; -- [XXXDS] :: moonless; - illusio_F_N = mkN "illusio" "illusionis " feminine ; -- [DXXCS] :: irony; mocking, jeering; illusion; deceit; - illusor_M_N = mkN "illusor" "illusoris " masculine ; -- [DXXES] :: scoffer; mocker; + illusio_F_N = mkN "illusio" "illusionis" feminine ; -- [DXXCS] :: irony; mocking, jeering; illusion; deceit; + 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); 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; + illuvies_F_N = mkN "illuvies" "illuviei" feminine ; -- [XXXDX] :: dirt, filth; filthy condition; illyricianus_A = mkA "illyricianus" "illyriciana" "illyricianum" ; -- [XXKDS] :: Illyrian; from Illyricum/NE Adriatic/Dalmatia/Croatia/Albania; ilum_N_N = mkN "ilum" ; -- [XXXDX] :: groin, private parts; area from hips to groin (pl.), loin; guts/entrails; imaginarius_A = mkA "imaginarius" "imaginaria" "imaginarium" ; -- [XXXEC] :: imaginary; - imaginatio_F_N = mkN "imaginatio" "imaginationis " feminine ; -- [XXXEC] :: imagination, fancy; + imaginatio_F_N = mkN "imaginatio" "imaginationis" feminine ; -- [XXXEC] :: imagination, fancy; imaginativus_A = mkA "imaginativus" "imaginativa" "imaginativum" ; -- [GXXEK] :: imaginative; 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; + 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; 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; + imbecillitas_F_N = mkN "imbecillitas" "imbecillitatis" feminine ; -- [XXXDX] :: weakness, feebleness; moral/intellectual weakness; 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); + 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; + 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; + 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); + 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; + imitamen_N_N = mkN "imitamen" "imitaminis" neuter ; -- [XXXDX] :: imitation; copy; imitamentum_N_N = mkN "imitamentum" ; -- [XXXEC] :: imitating, imitation; - imitatio_F_N = mkN "imitatio" "imitationis " feminine ; -- [XXXDX] :: imitation, copy, mimicking; - imitator_M_N = mkN "imitator" "imitatoris " masculine ; -- [XXXDX] :: one who imitates or copies; - imitatrix_F_N = mkN "imitatrix" "imitatricis " feminine ; -- [XXXDX] :: female imitator; + imitatio_F_N = mkN "imitatio" "imitationis" feminine ; -- [XXXDX] :: imitation, copy, mimicking; + imitator_M_N = mkN "imitator" "imitatoris" masculine ; -- [XXXDX] :: one who imitates or copies; + imitatrix_F_N = mkN "imitatrix" "imitatricis" feminine ; -- [XXXDX] :: female imitator; imito_V2 = mkV2 (mkV "imitare") ; -- [XXXDO] :: imitate/copy/mimic; follow; make an imitation/reproduction; resemble; simulate; 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; 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; + 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; @@ -22178,38 +22171,38 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - immemoratio_F_N = mkN "immemoratio" "immemorationis " feminine ; -- [EXXFS] :: forgetfulness, unmindfulness; + immemoratio_F_N = mkN "immemoratio" "immemorationis" feminine ; -- [EXXFS] :: forgetfulness, unmindfulness; immemoratum_N_N = mkN "immemoratum" ; -- [XXXEW] :: things (pl.) not told/related; things not mentioned; immemoratus_A = mkA "immemoratus" "immemorata" "immemoratum" ; -- [XXXEO] :: unmentioned; hitherto untold; not yet related, new (L+S); immensum_Adv = mkAdv "immensum" ; -- [XXXDO] :: to an enormous extent/degree; 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; + 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; immetatus_A = mkA "immetatus" "immetata" "immetatum" ; -- [XXXEC] :: unmeasured; - immigratio_F_N = mkN "immigratio" "immigrationis " feminine ; -- [GXXEK] :: immigration; + 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); + 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; immisericors_A = mkA "immisericors" "immisericordis"; -- [XXXEC] :: unmerciful; immissarium_N_N = mkN "immissarium" ; -- [FXXEK] :: reservoir; - immissio_F_N = mkN "immissio" "immissionis " feminine ; -- [XXXEO] :: insertion/engrafting, action of putting/sending in, of allowing to enter; + 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); 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; + 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; - immobilitas_F_N = mkN "immobilitas" "immobilitatis " feminine ; -- [EXXCP] :: insensibility (is/can not be moved); firmness/constancy/steadfastness; inertia; + immobilitas_F_N = mkN "immobilitas" "immobilitatis" feminine ; -- [EXXCP] :: insensibility (is/can not be moved); firmness/constancy/steadfastness; inertia; immobiliter_Adv = mkAdv "immobiliter" ; -- [EXXEP] :: immovably, without movement; changelessly, unalterably, constantly, fixedly; - immoderatio_F_N = mkN "immoderatio" "immoderationis " feminine ; -- [XXXEC] :: excess; + immoderatio_F_N = mkN "immoderatio" "immoderationis" feminine ; -- [XXXEC] :: excess; immoderatus_A = mkA "immoderatus" "immoderata" "immoderatum" ; -- [XXXDX] :: unlimited, immoderate, disorderly; immodeste_Adv = mkAdv "immodeste" ; -- [XXXEC] :: extravagantly; immodestia_F_N = mkN "immodestia" ; -- [XXXEC] :: want of restraint; @@ -22220,40 +22213,40 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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; + 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; + 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); + 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; + immunitas_F_N = mkN "immunitas" "immunitatis" feminine ; -- [XXXDX] :: immunity, freedom from taxes; immunitus_A = mkA "immunitus" "immunita" "immunitum" ; -- [XXXEC] :: unfortified; unpaved; immunius_A = mkA "immunius" "immunia" "immunium" ; -- [XXXDX] :: unfortified; immurmuro_V = mkV "immurmurare" ; -- [XXXDX] :: murmur, mutter (at or to); immusulus_M_N = mkN "immusulus" ; -- [XAXFS] :: immusul; vulture or falcon or sea-eagle; disputed in ancient times; immutabilis_A = mkA "immutabilis" "immutabilis" "immutabile" ; -- [XXXCO] :: unchangeable/unalterable; (rarely) liable to be changed; - immutatio_F_N = mkN "immutatio" "immutationis " feminine ; -- [XXXCO] :: change, alteration, process of changing; substitution/replacement; + immutatio_F_N = mkN "immutatio" "immutationis" feminine ; -- [XXXCO] :: change, alteration, process of changing; substitution/replacement; 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; - imp_N = constN "imp." masculine ; -- [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; + 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); imparatus_A = mkA "imparatus" ; -- [XXXDX] :: not prepared; unready; - imparilitas_F_N = mkN "imparilitas" "imparilitatis " feminine ; -- [XXXFS] :: inequality; difference; - impartio_V2 = mkV2 (mkV "impartire" "impartio" "impartivi" "impartitus ") ; -- [XXXDS] :: bestow, impart, give a share (of); communicate (w/DAT); (=impertio); + imparilitas_F_N = mkN "imparilitas" "imparilitatis" feminine ; -- [XXXFS] :: inequality; difference; + 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); + 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; impatiencia_F_N = mkN "impatiencia" ; -- [FXXCO] :: impatience; inability/unwillingness to endure/bear; impassivity/lack of emotion; @@ -22261,24 +22254,24 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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.); - impedio_V2 = mkV2 (mkV "impedire" "impedio" "impedivi" "impeditus ") ; -- [XXXBX] :: hinder, impede, hamper, obstruct, prevent from (w/ne, quin, or quominus); + 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; + 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); + 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; impensus_A = mkA "impensus" "impensa" "impensum" ; -- [XXXDX] :: immoderate, excessive; - imperator_M_N = mkN "imperator" "imperatoris " masculine ; -- [XXXAX] :: emperor; general; ruler; commander (-in-chief); + imperator_M_N = mkN "imperator" "imperatoris" masculine ; -- [XXXAX] :: emperor; general; ruler; commander (-in-chief); imperatorius_A = mkA "imperatorius" "imperatoria" "imperatorium" ; -- [XXXDX] :: of/belonging to a general/commanding officer; imperial; imperatum_N_N = mkN "imperatum" ; -- [XXXDX] :: command, order; imperceptibilis_A = mkA "imperceptibilis" "imperceptibilis" "imperceptibile" ; -- [FXXFM] :: imperceptible; imperceptus_A = mkA "imperceptus" "impercepta" "imperceptum" ; -- [XXXEC] :: unperceived; impercussus_A = mkA "impercussus" "impercussa" "impercussum" ; -- [XXXEC] :: not struck; imperditus_A = mkA "imperditus" "imperdita" "imperditum" ; -- [XXXEC] :: not slain; undestroyed; - imperfectio_F_N = mkN "imperfectio" "imperfectionis " feminine ; -- [DXXFS] :: imperfection; + imperfectio_F_N = mkN "imperfectio" "imperfectionis" feminine ; -- [DXXFS] :: imperfection; imperfectus_A = mkA "imperfectus" "imperfecta" "imperfectum" ; -- [XXXCO] :: unfinished, incomplete; imperfect; not complete in every respect; undigested; imperfossus_A = mkA "imperfossus" "imperfossa" "imperfossum" ; -- [XXXEC] :: unpierced; unstabbed; imperialis_A = mkA "imperialis" "imperialis" "imperiale" ; -- [XXXEO] :: imperial; of the (Roman) emperor; @@ -22297,25 +22290,25 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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; impetibilis_A = mkA "impetibilis" "impetibilis" "impetibile" ; -- [XXXEC] :: insufferable; 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; + 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; + 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; + 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; - impietas_F_N = mkN "impietas" "impietatis " feminine ; -- [XXXDX] :: failure in duty or respect, etc; + impietas_F_N = mkN "impietas" "impietatis" feminine ; -- [XXXDX] :: failure in duty or respect, etc; 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; + 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; @@ -22325,52 +22318,52 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat implacidus_A = mkA "implacidus" "implacida" "implacidum" ; -- [XXXDX] :: restless, unquiet; implacito_V = mkV "implacitare" ; -- [FLXFJ] :: implead; be pleaded against; implano_V2 = mkV2 (mkV "implanare") ; -- [EXXFS] :: deceive, delude; lead astray; - implantatio_F_N = mkN "implantatio" "implantationis " feminine ; -- [EXXFE] :: implementation; implanting; putting in; + implantatio_F_N = mkN "implantatio" "implantationis" feminine ; -- [EXXFE] :: implementation; implanting; putting in; implanto_V2 = mkV2 (mkV "implantare") ; -- [EXXFE] :: implant; put in; add; plant; establish; - implastratio_F_N = mkN "implastratio" "implastrationis " feminine ; -- [FTXFM] :: wall-plastering; + implastratio_F_N = mkN "implastratio" "implastrationis" feminine ; -- [FTXFM] :: wall-plastering; impleo_V = mkV "implere" ; -- [XXXAX] :: fill up; satisfy, fulfill; fill, finish, complete; spend (time); implexus_A = mkA "implexus" "implexa" "implexum" ; -- [XXXEC] :: involved, entwined; - implicatio_F_N = mkN "implicatio" "implicationis " feminine ; -- [XXXDS] :: entanglement; interweaving; involvement; + implicatio_F_N = mkN "implicatio" "implicationis" feminine ; -- [XXXDS] :: entanglement; interweaving; involvement; implicatus_A = mkA "implicatus" "implicata" "implicatum" ; -- [XXXDO] :: entangled, confused, obscure; implicated, involved; implicite_Adv = mkAdv "implicite" ; -- [XXXDX] :: intricately; implicitus_A = mkA "implicitus" "implicita" "implicitum" ; -- [XXXEO] :: entangled, confused, obscure; implicated, involved; 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; + 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; + 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; + 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; importuosus_A = mkA "importuosus" "importuosa" "importuosum" ; -- [XXXDX] :: having no harbors; impos_A = mkA "impos" "impotis"; -- [XXXDX] :: not in control/possession (of mind w/animi/mentis, demented); not responsible; - impositio_F_N = mkN "impositio" "impositionis " feminine ; -- [XGXFS] :: application (of name to thing); E:of hands; + impositio_F_N = mkN "impositio" "impositionis" feminine ; -- [XGXFS] :: application (of name to thing); E:of hands; impossibilis_A = mkA "impossibilis" "impossibilis" "impossibile" ; -- [XXXCO] :: impossible; - impostor_M_N = mkN "impostor" "impostoris " masculine ; -- [XXXES] :: deceiver; impostor; + impostor_M_N = mkN "impostor" "impostoris" masculine ; -- [XXXES] :: deceiver; impostor; impostus_A = mkA "impostus" "imposta" "impostum" ; -- [XXXES] :: placed; set upon; (alt vpar of impono); impotens_A = mkA "impotens" "impotentis"; -- [XXXBX] :: powerless, impotent, wild, headstrong; having no control (over), incapable (of); impotentia_F_N = mkN "impotentia" ; -- [XXXDX] :: weakness; immoderate behavior, violence; impraegno_V = mkV "impraegnare" ; -- [EBXES] :: impregnate; make pregnant; impraesentiarum_Adv = mkAdv "impraesentiarum" ; -- [XXXEC] :: in present circumstances, for the present; impransus_A = mkA "impransus" "impransa" "impransum" ; -- [XXXEC] :: without breakfast, fasting; - imprecatio_F_N = mkN "imprecatio" "imprecationis " feminine ; -- [XXXEO] :: calling down of curses; imprecation, invoking evil/divine intervention; + imprecatio_F_N = mkN "imprecatio" "imprecationis" feminine ; -- [XXXEO] :: calling down of curses; imprecation, invoking evil/divine intervention; imprecor_V = mkV "imprecari" ; -- [XXXDX] :: call down/upon, invoke; pray for; utter curses; - impressio_F_N = mkN "impressio" "impressionis " feminine ; -- [XXXCO] :: |impression, impressed mark; mark by pressure/stamping; edition of book (Cal); + impressio_F_N = mkN "impressio" "impressionis" feminine ; -- [XXXCO] :: |impression, impressed mark; mark by pressure/stamping; edition of book (Cal); impressionismus_M_N = mkN "impressionismus" ; -- [GXXEK] :: impressionism; impressionista_M_N = mkN "impressionista" ; -- [GXXEK] :: impressionist; impressorium_N_N = mkN "impressorium" ; -- [GXXEK] :: printing company; 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; + 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; + improbitas_F_N = mkN "improbitas" "improbitatis" feminine ; -- [XXXCO] :: wickedness unscrupulousness, dishonesty; shamelessness; want of principle; improbo_V2 = mkV2 (mkV "improbare") ; -- [XXXCO] :: disapprove of, express disapproval of, condemn; reject; improbulus_A = mkA "improbulus" "improbula" "improbulum" ; -- [XXXFO] :: somewhat audacious/impudent; somewhat wicked (Cas); improbus_A = mkA "improbus" "improba" "improbum" ; -- [XXXAO] :: wicked/flagrant; morally unsound; greedy/rude; immoderate; disloyal; shameless; @@ -22392,7 +22385,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat improtectus_A = mkA "improtectus" "improtecta" "improtectum" ; -- [DXXFS] :: undefended; unprotected; improvidentia_F_N = mkN "improvidentia" ; -- [DXXES] :: improvidence; lack of foresight; improvidus_A = mkA "improvidus" "improvida" "improvidum" ; -- [XXXDX] :: improvident; thoughtless; unwary; - improvisatio_F_N = mkN "improvisatio" "improvisationis " feminine ; -- [GXXEK] :: improvisation; + improvisatio_F_N = mkN "improvisatio" "improvisationis" feminine ; -- [GXXEK] :: improvisation; improvisus_A = mkA "improvisus" "improvisa" "improvisum" ; -- [XXXBO] :: unforeseen/unexpected; [de improviso => unexpectedly/suddenly, without warning]; imprudens_A = mkA "imprudens" "imprudentis"; -- [XXXBO] :: ignorant; unaware; unintentional, unsuspecting; foolish/incautious/unthinking; imprudenter_Adv =mkAdv "imprudenter" "imprudentius" "imprudentissime" ; -- [XXXCO] :: rashly, unwisely; carelessly, unmindfully; unintentionally, without design; @@ -22405,30 +22398,30 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat impudicitia_F_N = mkN "impudicitia" ; -- [XXXDX] :: sexual impurity (often of homosexuality); impudicus_A = mkA "impudicus" "impudica" "impudicum" ; -- [XXXDX] :: shameless; unchaste; flaunting accepted sexual code; impugno_V = mkV "impugnare" ; -- [XXXDX] :: fight against, attack, assail; - impulsio_F_N = mkN "impulsio" "impulsionis " feminine ; -- [XXXDS] :: external pressure; influence; incitement; + impulsio_F_N = mkN "impulsio" "impulsionis" feminine ; -- [XXXDS] :: external pressure; influence; incitement; impulsivus_A = mkA "impulsivus" "impulsiva" "impulsivum" ; -- [GXXEK] :: impulsive; - impulsor_M_N = mkN "impulsor" "impulsoris " masculine ; -- [XXXDX] :: instigator; - impulsus_M_N = mkN "impulsus" "impulsus " masculine ; -- [XXXDX] :: shock, impact; incitement; + impulsor_M_N = mkN "impulsor" "impulsoris" masculine ; -- [XXXDX] :: instigator; + impulsus_M_N = mkN "impulsus" "impulsus" masculine ; -- [XXXDX] :: shock, impact; incitement; impune_Adv =mkAdv "impune" "impunius" "impunissime" ; -- [XXXCO] :: with impunity; without punishment/retribution/restraint/consequences/harm; impunis_A = mkA "impunis" "impunis" "impune" ; -- [XXXFO] :: unpunished; - impunitas_F_N = mkN "impunitas" "impunitatis " feminine ; -- [XXXDX] :: impunity; freedom from punishment; safety; + 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; 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; + impuritas_F_N = mkN "impuritas" "impuritatis" feminine ; -- [XXXFO] :: impurity; foulness; impuritia_F_N = mkN "impuritia" ; -- [XXXFO] :: impurity; foulness; impurus_A = mkA "impurus" "impura" "impurum" ; -- [XXXDX] :: unclean, filthy, foul; impure; morally foul; imputabilis_A = mkA "imputabilis" "imputabilis" "imputabile" ; -- [XXXEE] :: imputable; attributable, ascribable; blameworthy, reprehensible, culpable; - imputabilitas_F_N = mkN "imputabilitas" "imputabilitatis " feminine ; -- [XXXFE] :: imputability; responsibility; culpability; - imputatio_F_N = mkN "imputatio" "imputationis " feminine ; -- [XXXFO] :: entry in account; charge, accusation (Ecc); + imputabilitas_F_N = mkN "imputabilitas" "imputabilitatis" feminine ; -- [XXXFE] :: imputability; responsibility; culpability; + imputatio_F_N = mkN "imputatio" "imputationis" feminine ; -- [XXXFO] :: entry in account; charge, accusation (Ecc); imputatus_A = mkA "imputatus" "imputata" "imputatum" ; -- [XXXEO] :: untrimmed; unpruned; imputo_V = mkV "imputare" ; -- [XXXAO] :: |claim credit/recompense for; make a favor a cause for obligation; 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; @@ -22442,10 +22435,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat inadustus_A = mkA "inadustus" "inadusta" "inadustum" ; -- [XXXEC] :: unsinged; not scorched; inaedifico_V = mkV "inaedificare" ; -- [XXXDX] :: build (in a place); wall up; 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; + inaequabilitas_F_N = mkN "inaequabilitas" "inaequabilitatis" feminine ; -- [XXXEO] :: lack of uniformity; irregularity; inaequabiliter_Adv = mkAdv "inaequabiliter" ; -- [XXXEO] :: unevenly; without regularity or uniformity; 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; + 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; @@ -22459,18 +22452,18 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat inambitiosus_A = mkA "inambitiosus" "inambitiosa" "inambitiosum" ; -- [XXXEC] :: unpretentious; inambulo_V = mkV "inambulare" ; -- [XXXDX] :: walk up and down; inamoenus_A = mkA "inamoenus" "inamoena" "inamoenum" ; -- [XXXDX] :: cheerless; disagreeable; unlovely; - inane_N_N = mkN "inane" "inanis " neuter ; -- [XXXDX] :: empty space/expanse/part of structure, hollow, void; space devoid of matter; + inane_N_N = mkN "inane" "inanis" neuter ; -- [XXXDX] :: empty space/expanse/part of structure, hollow, void; space devoid of matter; inanilogista_M_N = mkN "inanilogista" ; -- [BXXFO] :: blabberer, one that talks nonsense; inaniloquum_N_N = mkN "inaniloquum" ; -- [EXXFS] :: vain-talking, that talks in vain; that blabbers/talks nonsense; inaniloquus_A = mkA "inaniloquus" "inaniloqua" "inaniloquum" ; -- [BXXFS] :: vain-talking; - inanimale_N_N = mkN "inanimale" "inanimalis " neuter ; -- [XXXEO] :: lifeless/inanimate things (pl.); + inanimale_N_N = mkN "inanimale" "inanimalis" neuter ; -- [XXXEO] :: lifeless/inanimate things (pl.); inanimans_A = mkA "inanimans" "inanimantis"; -- [DXXFS] :: lifeless, inanimate; without/deprived of/not endowed with breath; - inanimans_N_N = mkN "inanimans" "inanimantis " neuter ; -- [XXXEO] :: lifeless/inanimate things (pl.); + inanimans_N_N = mkN "inanimans" "inanimantis" neuter ; -- [XXXEO] :: lifeless/inanimate things (pl.); inanimatus_A = mkA "inanimatus" "inanimata" "inanimatum" ; -- [DXXDS] :: lifeless, inanimate; without/deprived of/not endowed with breath; 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; + 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.); @@ -22484,35 +22477,35 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; - inauris_F_N = mkN "inauris" "inauris " feminine ; -- [XXXDO] :: ear rings (pl.); ornaments worn in ears; ear drops (L+S); nose ring (Souter); + inauris_F_N = mkN "inauris" "inauris" feminine ; -- [XXXDO] :: ear rings (pl.); ornaments worn in ears; ear drops (L+S); nose ring (Souter); 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; 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; + inbecillitas_F_N = mkN "inbecillitas" "inbecillitatis" feminine ; -- [XXXDX] :: weakness, feebleness; moral/intellectual weakness; 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; + 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); incalesco_V2 = mkV2 (mkV "incalescere" "incalesco" "incalui" nonExist ) ; -- [XXXDX] :: grow hot; become heated; incallidus_A = mkA "incallidus" "incallida" "incallidum" ; -- [XXXDX] :: not shrewd, simple; 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; + 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); - incantator_M_N = mkN "incantator" "incantatoris " masculine ; -- [DEXES] :: enchanter, wizard; magician, soothsayer (Souter); - incantatrix_F_N = mkN "incantatrix" "incantatricis " feminine ; -- [FEXEL] :: enchantress; witch; + incantatio_F_N = mkN "incantatio" "incantationis" feminine ; -- [DEXCS] :: enchantment; spell; incantation (Def); (false) statement (Souter); + incantator_M_N = mkN "incantator" "incantatoris" masculine ; -- [DEXES] :: enchanter, wizard; magician, soothsayer (Souter); + incantatrix_F_N = mkN "incantatrix" "incantatricis" feminine ; -- [FEXEL] :: enchantress; witch; incanto_V = mkV "incantare" ; -- [XXXDS] :: sing; say over; consecrate with spells; incanus_A = mkA "incanus" "incana" "incanum" ; -- [XXXDX] :: quite gray, hoary; incapabilis_A = mkA "incapabilis" "incapabilis" "incapabile" ; -- [EEXES] :: incomprehensible; that cannot be taken in (Latham); - incapabilitas_F_N = mkN "incapabilitas" "incapabilitatis " feminine ; -- [EEXES] :: incomprehensibility; inconceivability; - incapacitas_F_N = mkN "incapacitas" "incapacitatis " feminine ; -- [FXXEM] :: incapacity; disqualification; + incapabilitas_F_N = mkN "incapabilitas" "incapabilitatis" feminine ; -- [EEXES] :: incomprehensibility; inconceivability; + incapacitas_F_N = mkN "incapacitas" "incapacitatis" feminine ; -- [FXXEM] :: incapacity; disqualification; incapacito_V2 = mkV2 (mkV "incapacitare") ; -- [XXXFO] :: bridle; put a halter on; halter, muzzle (L+S); fetter, entangle; make ass of; incapax_A = mkA "incapax" "incapaxis"; -- [DXXES] :: incapable; indestructible; indissoluble; incapiabilis_A = mkA "incapiabilis" "incapiabilis" "incapiabile" ; -- [FXXEM] :: impregnable; @@ -22520,39 +22513,39 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat incarceratus_A = mkA "incarceratus" "incarcerata" "incarceratum" ; -- [FXXEF] :: imprisoned, incarcerated, confined, shut up in prison, jailed; incarceratus_M_N = mkN "incarceratus" ; -- [FXXEM] :: prisoner; incarcero_V2 = mkV2 (mkV "incarcerare") ; -- [FXXDF] :: imprison, incarcerate, confine, shut up in prison, jail; - incardinatio_F_N = mkN "incardinatio" "incardinationis " feminine ; -- [FEXFE] :: incardination; incorporating clergyman into diocese/church; raise to cardinal; + incardinatio_F_N = mkN "incardinatio" "incardinationis" feminine ; -- [FEXFE] :: incardination; incorporating clergyman into diocese/church; raise to cardinal; incardinatus_M_N = mkN "incardinatus" ; -- [FEXFQ] :: incardinatus, one (clergy) who has right to succeed to a church; incardino_V2 = mkV2 (mkV "incardinare") ; -- [FEXEE] :: incardinate; become member of diocese (clergy); raise to cardinal; - incarnatio_F_N = mkN "incarnatio" "incarnationis " feminine ; -- [DEXCF] :: incarnation, embodiment; union of divine and human in Christ; + incarnatio_F_N = mkN "incarnatio" "incarnationis" feminine ; -- [DEXCF] :: incarnation, embodiment; union of divine and human in Christ; incarnatus_A = mkA "incarnatus" "incarnata" "incarnatum" ; -- [DEXCE] :: incarnate; flesh-like/flesh-colored (Cal); incarno_V2 = mkV2 (mkV "incarnare") ; -- [EEXCS] :: make incarnate, make into flesh; (PASS) be made flesh, become incarnate; incaro_V2 = mkV2 (mkV "incarare") ; -- [EEXFE] :: make incarnate, make into flesh; (PASS) be made flesh, become incarnate; 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; + 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; + 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; + 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; incensitus_A = mkA "incensitus" "incensita" "incensitum" ; -- [DLXFS] :: unassessed, not assessed; unregistered, not registered/enrolled in census; incenso_V = mkV "incensare" ; -- [EXXEP] :: burn incense; - incensor_M_N = mkN "incensor" "incensoris " masculine ; -- [XXXEO] :: one who kindles/sets fire to/lights beacons (L+S); inciter, instigator; + incensor_M_N = mkN "incensor" "incensoris" masculine ; -- [XXXEO] :: one who kindles/sets fire to/lights beacons (L+S); inciter, instigator; incensorium_N_N = mkN "incensorium" ; -- [EEXDE] :: censer, vessel in which incense is burnt; thurible; incensum_N_N = mkN "incensum" ; -- [EEXDP] :: incense; sacrifice (w/incense/burning victims); lighting (L+S); setting fire; incensus_A = mkA "incensus" "incensa" "incensum" ; -- [XLXEO] :: unassessed, not assessed; unregistered, not registered/enrolled in census; - incensus_M_N = mkN "incensus" "incensus " masculine ; -- [EEXEP] :: incense; fire; - incentio_F_N = mkN "incentio" "incentionis " feminine ; -- [EDXFS] :: instrument playing; X:enchantment; + incensus_M_N = mkN "incensus" "incensus" masculine ; -- [EEXEP] :: incense; fire; + incentio_F_N = mkN "incentio" "incentionis" feminine ; -- [EDXFS] :: instrument playing; X:enchantment; incentivus_A = mkA "incentivus" "incentiva" "incentivum" ; -- [XDXFO] :: playing the tune; (of the right-hand tube in pair of pipes - other modulates); - incentor_M_N = mkN "incentor" "incentoris " masculine ; -- [XXXCS] :: precentor/choir director; leads congregation singing; starts/sets tune; inciter; + incentor_M_N = mkN "incentor" "incentoris" masculine ; -- [XXXCS] :: precentor/choir director; leads congregation singing; starts/sets tune; inciter; inceps_Adv = mkAdv "inceps" ; -- [XXXFO] :: subsequently; thereafter; - inceptio_F_N = mkN "inceptio" "inceptionis " feminine ; -- [XXXDO] :: start, beginning; undertaking, enterprise; + 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; @@ -22561,8 +22554,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; incestuosus_A = mkA "incestuosus" "incestuosa" "incestuosum" ; -- [XSXES] :: incestuous; lewd; @@ -22575,27 +22568,27 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + incineratio_F_N = mkN "incineratio" "incinerationis" feminine ; -- [GXXEK] :: incineration; incinero_V = mkV "incinerare" ; -- [FXXFM] :: burn to ashes; - incingo_V2 = mkV2 (mkV "incingere" "incingo" "incinxi" "incinctus ") ; -- [XXXDX] :: gird (with); wrap (tightly) round (with); + 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; + 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; + 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; incircumcisus_M_N = mkN "incircumcisus" ; -- [EEXEP] :: uncircumcised male, one w/foreskin intact; (still) a sinner; incircumscripte_Adv = mkAdv "incircumscripte" ; -- [FXXFF] :: without limitation; infinitely; incomprehensibly; incircumscriptibilis_A = mkA "incircumscriptibilis" "incircumscriptibilis" "incircumscriptibile" ; -- [FSXEF] :: boundless/infinite; incapable of being limited/circumscribed/measured/deceived; incircumscriptus_A = mkA "incircumscriptus" "incircumscripta" "incircumscriptum" ; -- [FSXDF] :: infinite, boundless; uncircumscribed; incomprehensible, unfathomable; incisim_Adv = mkAdv "incisim" ; -- [XXXEC] :: in short clauses; - incisio_F_N = mkN "incisio" "incisionis " feminine ; -- [XXXEX] :: clause (Collins); + incisio_F_N = mkN "incisio" "incisionis" feminine ; -- [XXXEX] :: clause (Collins); incitamentum_N_N = mkN "incitamentum" ; -- [XXXDX] :: incentive, stimulus; - incitatio_F_N = mkN "incitatio" "incitationis " feminine ; -- [XXXDX] :: ardor, enthusiasm; + incitatio_F_N = mkN "incitatio" "incitationis" feminine ; -- [XXXDX] :: ardor, enthusiasm; incitatrum_N_N = mkN "incitatrum" ; -- [GTXEK] :: starter; incitatus_A = mkA "incitatus" "incitata" "incitatum" ; -- [XXXDX] :: fast-moving, aroused, passionate; [equo incitato => at full gallop]; incito_V = mkV "incitare" ; -- [XXXDX] :: enrage; urge on; inspire; arouse; @@ -22607,11 +22600,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat inclemens_A = mkA "inclemens" "inclementis"; -- [XXXDX] :: harsh; inclementer_Adv = mkAdv "inclementer" ; -- [XXXDX] :: harshly, severely; inclementia_F_N = mkN "inclementia" ; -- [XXXDX] :: harshness; - inclinatio_F_N = mkN "inclinatio" "inclinationis " feminine ; -- [XXXDX] :: act of leaning, tendency, inclination; + 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); 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; + 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; @@ -22623,28 +22616,28 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat incoho_V = mkV "incohare" ; -- [BXXAO] :: begin/start (work); set going, establish; draft/sketch/outline; enter upon; 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?); + incolatus_M_N = mkN "incolatus" "incolatus" masculine ; -- [XXXIO] :: residence (in a town) without citizenship; status of resident alien; (exile?); 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; + incolumitas_F_N = mkN "incolumitas" "incolumitatis" feminine ; -- [XXXDX] :: safety; incomitatus_A = mkA "incomitatus" "incomitata" "incomitatum" ; -- [XXXDX] :: unaccompanied; - incommatio_F_N = mkN "incommatio" "incommationis " feminine ; -- [FEXEE] :: imperfect state; + incommatio_F_N = mkN "incommatio" "incommationis" feminine ; -- [FEXEE] :: imperfect state; incommendatus_A = mkA "incommendatus" "incommendata" "incommendatum" ; -- [XXXEC] :: not entrusted; without protector; incommensurabilis_A = mkA "incommensurabilis" "incommensurabilis" "incommensurabile" ; -- [EXXEP] :: immeasurable; incommode_Adv = mkAdv "incommode" ; -- [XXXDX] :: disastrously, unfortunately; - incommoditas_F_N = mkN "incommoditas" "incommoditatis " feminine ; -- [XXXCO] :: disadvantage, inconvenience, importunity; importunity; misfortune; + 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; 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; + incommutabilitas_F_N = mkN "incommutabilitas" "incommutabilitatis" feminine ; -- [EXXFP] :: unchangeableness; incommutabiliter_Adv = mkAdv "incommutabiliter" ; -- [EXXEP] :: without change; incomparabilis_A = mkA "incomparabilis" "incomparabilis" "incomparabile" ; -- [XXXES] :: incomparable; cannot be equaled; incomparabiliter_Adv = mkAdv "incomparabiliter" ; -- [XXXFS] :: incomparably; incompatibilis_A = mkA "incompatibilis" "incompatibilis" "incompatibile" ; -- [GXXEK] :: incompatible; - incompatibilitas_F_N = mkN "incompatibilitas" "incompatibilitatis " feminine ; -- [GXXEK] :: incompatibility; + incompatibilitas_F_N = mkN "incompatibilitas" "incompatibilitatis" feminine ; -- [GXXEK] :: incompatibility; incompertus_A = mkA "incompertus" "incomperta" "incompertum" ; -- [XXXDX] :: not known; incompetens_A = mkA "incompetens" "incompetentis"; -- [EXXES] :: insufficient; incomposite_Adv = mkAdv "incomposite" ; -- [XXXDX] :: in a clumsy/disorganized manner; awkwardly; irregularly; @@ -22666,9 +22659,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat inconrupte_Adv =mkAdv "inconrupte" "inconruptius" "inconruptissime" ; -- [XXXEO] :: honestly, uprightly, without being influenced by bribes; correctly/faultlessly; inconruptela_F_N = mkN "inconruptela" ; -- [EEXDS] :: incorruptibility, imperishability; inconruptibilis_A = mkA "inconruptibilis" "inconruptibilis" "inconruptibile" ; -- [EEXES] :: incorruptible, imperishable; - inconruptibilitas_F_N = mkN "inconruptibilitas" "inconruptibilitatis " feminine ; -- [EEXES] :: incorruptibility, imperishability; + inconruptibilitas_F_N = mkN "inconruptibilitas" "inconruptibilitatis" feminine ; -- [EEXES] :: incorruptibility, imperishability; inconruptibiliter_Adv = mkAdv "inconruptibiliter" ; -- [EEXFS] :: incorruptibly, imperishably; - inconruptio_F_N = mkN "inconruptio" "inconruptionis " feminine ; -- [EEXES] :: incorruptibility, imperishability; + 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; inconruptus_A = mkA "inconruptus" ; -- [XXXBO] :: intact, uncorrupted, unspoiled/untainted; genuine; pure; chaste; imperishable; @@ -22678,8 +22671,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat inconsiderantia_F_N = mkN "inconsiderantia" ; -- [XXXES] :: inconsideration; inconsideratus_A = mkA "inconsideratus" "inconsiderata" "inconsideratum" ; -- [XXXEC] :: thoughtless, inconsiderate; unadvised, reckless (passive); inconstabilis_A = mkA "inconstabilis" "inconstabilis" "inconstabile" ; -- [EXXFP] :: unreliable; - inconstabilitas_F_N = mkN "inconstabilitas" "inconstabilitatis " feminine ; -- [EXXFP] :: helplessness; - inconstabilitio_F_N = mkN "inconstabilitio" "inconstabilitionis " feminine ; -- [EXXFS] :: not standing firmly; trembling (Souter); indecision (Vulgate); + inconstabilitas_F_N = mkN "inconstabilitas" "inconstabilitatis" feminine ; -- [EXXFP] :: helplessness; + inconstabilitio_F_N = mkN "inconstabilitio" "inconstabilitionis" feminine ; -- [EXXFS] :: not standing firmly; trembling (Souter); indecision (Vulgate); inconstabilitus_A = mkA "inconstabilitus" "inconstabilita" "inconstabilitum" ; -- [EXXFP] :: unstable; inconstans_A = mkA "inconstans" "inconstantis"; -- [XXXDX] :: changeable, fickle; inconstanter_Adv =mkAdv "inconstanter" "inconstantius" "inconstantissime" ; -- [XXXDX] :: irregularly, inconsistently, capriciously, irresolutely; not evenly/steadily; @@ -22687,7 +22680,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat inconsulte_Adv =mkAdv "inconsulte" "inconsultius" "inconsultissime" ; -- [XXXDX] :: rashly, ill-advisedly, incautiously; without due care and consideration; inconsultus_A = mkA "inconsultus" "inconsulta" "inconsultum" ; -- [XXXDX] :: rash, ill-advised, thoughtless, injudicious; unconsulted, not asked; inconsummabilis_A = mkA "inconsummabilis" "inconsummabilis" "inconsummabile" ; -- [EEXFM] :: incompleteable, impossible of completion; - inconsummatio_F_N = mkN "inconsummatio" "inconsummationis " feminine ; -- [FEXFE] :: nonconsumation; incompleteness; + inconsummatio_F_N = mkN "inconsummatio" "inconsummationis" feminine ; -- [FEXFE] :: nonconsumation; incompleteness; inconsummatus_A = mkA "inconsummatus" "inconsummata" "inconsummatum" ; -- [FEXEM] :: incomplete; inconsumptus_A = mkA "inconsumptus" "inconsumpta" "inconsumptum" ; -- [XXXEC] :: unconsumed, undiminished; incontaminabilis_A = mkA "incontaminabilis" "incontaminabilis" "incontaminabile" ; -- [EXXES] :: undefileable; @@ -22697,19 +22690,19 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; incorrectus_A = mkA "incorrectus" "incorrecta" "incorrectum" ; -- [XXXEC] :: unamended, unimproved; incorrigibilis_A = mkA "incorrigibilis" "incorrigibilis" "incorrigibile" ; -- [FXXDM] :: incorrigible; - incorrigibilitas_F_N = mkN "incorrigibilitas" "incorrigibilitatis " feminine ; -- [FXXEM] :: incorrigibility; + incorrigibilitas_F_N = mkN "incorrigibilitas" "incorrigibilitatis" feminine ; -- [FXXEM] :: incorrigibility; incorrupte_Adv =mkAdv "incorrupte" "incorruptius" "incorruptissime" ; -- [XXXEO] :: honestly, uprightly, without being influenced by bribes; correctly/faultlessly; incorruptela_F_N = mkN "incorruptela" ; -- [EEXDS] :: incorruptibility, imperishability; incorruptibilis_A = mkA "incorruptibilis" "incorruptibilis" "incorruptibile" ; -- [EEXES] :: incorruptible, imperishable; - incorruptibilitas_F_N = mkN "incorruptibilitas" "incorruptibilitatis " feminine ; -- [EEXES] :: incorruptibility, imperishability; + incorruptibilitas_F_N = mkN "incorruptibilitas" "incorruptibilitatis" feminine ; -- [EEXES] :: incorruptibility, imperishability; incorruptibiliter_Adv = mkAdv "incorruptibiliter" ; -- [EEXFS] :: incorruptibly, imperishably; - incorruptio_F_N = mkN "incorruptio" "incorruptionis " feminine ; -- [EEXES] :: incorruptibility, imperishability; + 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; incorruptus_A = mkA "incorruptus" ; -- [XXXBO] :: intact, uncorrupted, unspoiled/untainted; genuine; pure; chaste; imperishable; @@ -22717,11 +22710,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat incrasso_V2 = mkV2 (mkV "incrassare") ; -- [DXXEF] :: fatten; make thick/stout; 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); + 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; incrementabiliter_Adv = mkAdv "incrementabiliter" ; -- [FXXEN] :: increasingly; incrementum_N_N = mkN "incrementum" ; -- [XXXDX] :: growth, development, increase; germ (of idea); offshoot; advancement (rank); - increpatio_F_N = mkN "increpatio" "increpationis " feminine ; -- [DXXCF] :: rebuke; chiding; reproof; + increpatio_F_N = mkN "increpatio" "increpationis" feminine ; -- [DXXCF] :: rebuke; chiding; reproof; 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; @@ -22729,18 +22722,18 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; 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; + 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); + 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); @@ -22752,27 +22745,27 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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); + 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; - indagatus_M_N = mkN "indagatus" "indagatus " masculine ; -- [XXXFO] :: act of hunting/tracking down/searching out; investigation; - indago_F_N = mkN "indago" "indaginis " feminine ; -- [XXXDX] :: ring of huntsmen/nets/troops/forts; encircling with snares; tracking down; + 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; + indagatus_M_N = mkN "indagatus" "indagatus" masculine ; -- [XXXFO] :: act of hunting/tracking down/searching out; investigation; + 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); + 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; @@ -22792,11 +22785,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat indejectus_A = mkA "indejectus" "indejecta" "indejectum" ; -- [XXXDX] :: not thrown down; indelebilis_A = mkA "indelebilis" "indelebilis" "indelebile" ; -- [XXXEC] :: imperishable; indelibatus_A = mkA "indelibatus" "indelibata" "indelibatum" ; -- [XXXEC] :: uninjured, undiminished; - indemnatas_F_N = mkN "indemnatas" "indemnatatis " feminine ; -- [XLXDO] :: security from financial loss; + indemnatas_F_N = mkN "indemnatas" "indemnatatis" feminine ; -- [XLXDO] :: security from financial loss; indemnatus_A = mkA "indemnatus" "indemnata" "indemnatum" ; -- [XXXDX] :: uncondemned; indemnis_A = mkA "indemnis" "indemnis" "indemne" ; -- [XLXDO] :: uninjured; suffering no damage/loss; suffering no loss of wealth/property; indemutabilis_A = mkA "indemutabilis" "indemutabilis" "indemutabile" ; -- [EXXES] :: unchangeable; - indentitas_F_N = mkN "indentitas" "indentitatis " feminine ; -- [FXXEK] :: identity; + indentitas_F_N = mkN "indentitas" "indentitatis" feminine ; -- [FXXEK] :: identity; independens_A = mkA "independens" "independentis"; -- [GXXEK] :: independent; independenter_Adv = mkAdv "independenter" ; -- [GXXEK] :: independently; independentia_F_N = mkN "independentia" ; -- [GXXEK] :: independence; @@ -22807,15 +22800,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat indestrictus_A = mkA "indestrictus" "indestricta" "indestrictum" ; -- [XXXEC] :: untouched, unhurt; indetonsus_A = mkA "indetonsus" "indetonsa" "indetonsum" ; -- [XXXEC] :: unshorn; indevitatus_A = mkA "indevitatus" "indevitata" "indevitatum" ; -- [XXXEC] :: unavoided; - indevotio_F_N = mkN "indevotio" "indevotionis " feminine ; -- [DEXES] :: lack of religion; irreligion; hostility to/disregard of religion; - index_F_N = mkN "index" "indicis " feminine ; -- [XXXDX] :: sign, token, proof; informer, tale bearer; - index_M_N = mkN "index" "indicis " masculine ; -- [GXXEK] :: hand/needle of a watch; + indevotio_F_N = mkN "indevotio" "indevotionis" feminine ; -- [DEXES] :: lack of religion; irreligion; hostility to/disregard of religion; + index_F_N = mkN "index" "indicis" feminine ; -- [XXXDX] :: sign, token, proof; informer, tale bearer; + index_M_N = mkN "index" "indicis" masculine ; -- [GXXEK] :: hand/needle of a watch; indicativus_A = mkA "indicativus" "indicativa" "indicativum" ; -- [XXXDX] :: indicative; 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; + 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; indies_Adv = mkAdv "indies" ; -- [XXXDS] :: from day to day; (= in dies); @@ -22830,9 +22823,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat indigestus_A = mkA "indigestus" "indigesta" "indigestum" ; -- [XXXDX] :: disordered, confused, chaotic; jumbled; indignabundus_A = mkA "indignabundus" "indignabunda" "indignabundum" ; -- [XXXDO] :: indignant, furious; indignanter_Adv = mkAdv "indignanter" ; -- [DXXDS] :: indignantly; - indignatio_F_N = mkN "indignatio" "indignationis " feminine ; -- [XXXDX] :: indignation; anger; angry outburst; + indignatio_F_N = mkN "indignatio" "indignationis" feminine ; -- [XXXDX] :: indignation; anger; angry outburst; indigne_Adv =mkAdv "indigne" "indignius" "indigissime" ; -- [XXXCO] :: |dishonorably (L+S); indignantly; [~ fero => be indignant at; resent/take ill]; - indignitas_F_N = mkN "indignitas" "indignitatis " feminine ; -- [XXXDX] :: vileness, baseness, shamelessness; outrageousness; indignity, humiliation; + 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; indignus_A = mkA "indignus" ; -- [XXXBS] :: unworthy, undeserving, undeserved; unbecoming; shameful; intolerable; cruel; @@ -22841,11 +22834,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; - indisciplinatio_F_N = mkN "indisciplinatio" "indisciplinationis " feminine ; -- [DXXFS] :: want of discipline; + indisciplinatio_F_N = mkN "indisciplinatio" "indisciplinationis" feminine ; -- [DXXFS] :: want of discipline; indisciplinatus_A = mkA "indisciplinatus" "indisciplinata" "indisciplinatum" ; -- [DXXFS] :: undisciplined, without discipline; indisciplinosus_A = mkA "indisciplinosus" "indisciplinosa" "indisciplinosum" ; -- [DXXFS] :: undisciplined, without discipline; indiscrete_Adv = mkAdv "indiscrete" ; -- [EXXDB] :: indiscriminately, unwisely, indiscreetly; alike (L+S); @@ -22857,7 +22850,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat indispositus_A = mkA "indispositus" "indisposita" "indispositum" ; -- [XXXEC] :: disorderly, confused; indissimilis_A = mkA "indissimilis" "indissimilis" "indissimile" ; -- [XXXFS] :: not unlike; indissolubilis_A = mkA "indissolubilis" "indissolubilis" "indissolubile" ; -- [XXXEO] :: indestructible/imperishable; that cannot be dissolved/loosened/untied (knot); - indissolubilitas_F_N = mkN "indissolubilitas" "indissolubilitatis " feminine ; -- [XXXEE] :: indestructibility; indissolubility; + indissolubilitas_F_N = mkN "indissolubilitas" "indissolubilitatis" feminine ; -- [XXXEE] :: indestructibility; indissolubility; indissolubiliter_Adv = mkAdv "indissolubiliter" ; -- [XXXFS] :: indestructibly; imperishably; indissolutus_A = mkA "indissolutus" "indissoluta" "indissolutum" ; -- [XXXFO] :: indestructible/imperishable; that cannot be dissolved/loosened/untied (knot); indistinctus_A = mkA "indistinctus" "indistincta" "indistinctum" ; -- [XXXEC] :: not separated; indistinct, obscure; unpretentious; @@ -22866,23 +22859,23 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat individualismus_M_N = mkN "individualismus" ; -- [GXXEK] :: individualism; individualista_M_N = mkN "individualista" ; -- [GXXEK] :: individualist; individualisticus_A = mkA "individualisticus" "individualistica" "individualisticum" ; -- [GXXEK] :: individualist; - individualitas_F_N = mkN "individualitas" "individualitatis " feminine ; -- [FXXEM] :: individuality; + individualitas_F_N = mkN "individualitas" "individualitatis" feminine ; -- [FXXEM] :: individuality; individuum_N_N = mkN "individuum" ; -- [XSXEC] :: atom; individuus_A = mkA "individuus" "individua" "individuum" ; -- [XXXEC] :: indivisible, inseparable; indivisibilis_A = mkA "indivisibilis" "indivisibilis" "indivisibile" ; -- [EXXEP] :: indivisible, inseparable; - indivisibilitas_F_N = mkN "indivisibilitas" "indivisibilitatis " feminine ; -- [EXXFP] :: indivisibility; + indivisibilitas_F_N = mkN "indivisibilitas" "indivisibilitatis" feminine ; -- [EXXFP] :: indivisibility; indivisibiliter_Adv = mkAdv "indivisibiliter" ; -- [EXXEP] :: in indivisible condition; - indivisio_F_N = mkN "indivisio" "indivisionis " feminine ; -- [EGXEP] :: indivisible item; that cannot be divided; + 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; + 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; + indoles_F_N = mkN "indoles" "indolis" feminine ; -- [XXXDX] :: innate character; inborn quality; 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); + 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; @@ -22891,19 +22884,19 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; indulgentia_F_N = mkN "indulgentia" ; -- [FEXBE] :: |indulgence, remission before God of temporal punishment for sin; indulgeo_V2 = mkV2 (mkV "indulgere") Dat_Prep ; -- [XXXAO] :: indulge; be indulgent/lenient/kind; grant/bestow; gratify oneself; give in to; - indulgitas_F_N = mkN "indulgitas" "indulgitatis " feminine ; -- [XXXEO] :: leniency, concession, pardon; kindness, gentleness; favor bounty; indulging; + indulgitas_F_N = mkN "indulgitas" "indulgitatis" feminine ; -- [XXXEO] :: leniency, concession, pardon; kindness, gentleness; favor bounty; indulging; indultarius_M_N = mkN "indultarius" ; -- [FEXEE] :: person having an indult (leave/permission from Church superior); indultivus_M_N = mkN "indultivus" ; -- [FXXFE] :: indult; grant; leave; permission; 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]; + 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; @@ -22912,14 +22905,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat indusium_N_N = mkN "indusium" ; -- [XXXEO] :: outer tunic; shirt (Ecc); woman's undergarment (L+S); shift; industria_F_N = mkN "industria" ; -- [XXXBO] :: industry; purpose/diligence; purposeful/diligent activity; purposefulness (pl.); industrialis_A = mkA "industrialis" "industrialis" "industriale" ; -- [HXXDE] :: industrial; - industrializatio_F_N = mkN "industrializatio" "industrializationis " feminine ; -- [HXXEE] :: industrialization; + industrializatio_F_N = mkN "industrializatio" "industrializationis" feminine ; -- [HXXEE] :: industrialization; 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; 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; + indutrix_F_N = mkN "indutrix" "indutricis" feminine ; -- [GXXEK] :: model; induvia_F_N = mkN "induvia" ; -- [FXXEM] :: clothing, garb, clothes; (induvie ferree = armor); inebrio_V2 = mkV2 (mkV "inebriare") ; -- [XXXCO] :: intoxicate, make drunk; saturate/drench (with any liquid); inedia_F_N = mkN "inedia" ; -- [XXXDX] :: fasting, starvation; @@ -22931,11 +22924,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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; - 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]; + ineo_1_V = mkV "inire" "ineo" "inivi" "initus" ; -- [XXXBX] :: enter; undertake; begin; go in; enter upon; [consilium ~ => form a plan]; + ineo_2_V = mkV "inire" "ineo" "iniii" "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; @@ -22947,7 +22940,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat iners_A = mkA "iners" "inertis"; -- [XXXBX] :: helpless, weak, inactive, inert, sluggish, stagnant; unskillful, incompetent; 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); + ineruditio_F_N = mkN "ineruditio" "ineruditionis" feminine ; -- [DXXFS] :: want/lack of learning/education; ignorance (Vulgate Sirach 4:25/30); 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; @@ -22983,15 +22976,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat infacetus_A = mkA "infacetus" "infaceta" "infacetum" ; -- [XXXDX] :: coarse, boorish; 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); + infallibilitas_F_N = mkN "infallibilitas" "infallibilitatis" feminine ; -- [FXXEF] :: infallibility (in knowledge); infallibiliter_Adv = mkAdv "infallibiliter" ; -- [DXXEF] :: infallibly; in an unfailing manner; inevitably; infamia_F_N = mkN "infamia" ; -- [XXXBX] :: disgrace, dishonor; infamy; infamis_A = mkA "infamis" "infamis" "infame" ; -- [XXXDX] :: notorious, disreputable, infamous; infamo_V = mkV "infamare" ; -- [XXXDX] :: bring into disrepute; defame; infandus_A = mkA "infandus" "infanda" "infandum" ; -- [XXXDX] :: unspeakable, unutterable; abominable, monstrous; infans_A = mkA "infans" "infantis"; -- [XXXDX] :: speechless, inarticulate; new born; childish, foolish; - infans_F_N = mkN "infans" "infantis " feminine ; -- [XXXBX] :: infant; child (Bee); - infans_M_N = mkN "infans" "infantis " masculine ; -- [XXXBX] :: infant; child (Bee); + infans_F_N = mkN "infans" "infantis" feminine ; -- [XXXBX] :: infant; child (Bee); + infans_M_N = mkN "infans" "infantis" masculine ; -- [XXXBX] :: infant; child (Bee); infantaria_F_N = mkN "infantaria" ; -- [XXXEO] :: woman who looks after babies; woman fond of infants (L+S); murderess of infants; infantarius_M_N = mkN "infantarius" ; -- [XXXIO] :: man who looks after babies; sacrificers (pl.) of infants; infantia_F_N = mkN "infantia" ; -- [XXXDX] :: infancy; inability to speak; @@ -23000,15 +22993,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat infantiliter_Adv = mkAdv "infantiliter" ; -- [EXXES] :: childishly; infantula_F_N = mkN "infantula" ; -- [XXXFO] :: baby girl; infantulus_M_N = mkN "infantulus" ; -- [XXXEO] :: baby boy; little babe; little infant; - infarctus_M_N = mkN "infarctus" "infarctus " masculine ; -- [GBXEK] :: heart attack; + infarctus_M_N = mkN "infarctus" "infarctus" masculine ; -- [GBXEK] :: heart attack; infatigabilis_A = mkA "infatigabilis" "infatigabilis" "infatigabile" ; -- [XXXES] :: indefatigable; infatigabiliter_Adv = mkAdv "infatigabiliter" ; -- [XXXFS] :: indefatigably; infatuo_V2 = mkV2 (mkV "infatuare") ; -- [XXXEC] :: make a fool of; infaustus_A = mkA "infaustus" "infausta" "infaustum" ; -- [XXXDX] :: unlucky, unfortunate; inauspicious; infectus_A = mkA "infectus" "infecta" "infectum" ; -- [XXXDX] :: unfinished, undone, incomplete; infecta re = without having accomplished it; - infecunditas_F_N = mkN "infecunditas" "infecunditatis " feminine ; -- [XXXDX] :: barrenness; + infecunditas_F_N = mkN "infecunditas" "infecunditatis" feminine ; -- [XXXDX] :: barrenness; infecundus_A = mkA "infecundus" "infecunda" "infecundum" ; -- [XXXDX] :: unfruitful, infertile; - infelicitas_F_N = mkN "infelicitas" "infelicitatis " feminine ; -- [XXXDX] :: misfortune; + infelicitas_F_N = mkN "infelicitas" "infelicitatis" feminine ; -- [XXXDX] :: misfortune; infeliciter_Adv =mkAdv "infeliciter" "infelicius" "infelicissime" ; -- [XXXCO] :: unfortunately; without good luck; without success; infelicito_V = mkV "infelicitare" ; -- [BXXES] :: make unhappy; infelico_V = mkV "infelicare" ; -- [BXXFS] :: make unhappy; @@ -23016,9 +23009,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat infenso_V = mkV "infensare" ; -- [XXXDX] :: treat in a hostile manner; infensus_A = mkA "infensus" "infensa" "infensum" ; -- [XXXDX] :: hostile, bitterly hostile, enraged; 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; + 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; + 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; inferne_Adv = mkAdv "inferne" ; -- [XXXDX] :: underneath, below, on the lower side; infernally; infernum_N_N = mkN "infernum" ; -- [XXXDX] :: lower regions (pl.), infernal regions, hell; @@ -23027,32 +23020,32 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat infero_V2 = mkV2 (mkV "inferre") ; -- [XXXAO] :: ||put/throw/thrust in/on, insert; bury/inter; pay; charge as expense; append; 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; + 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; 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; + 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; + 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; + 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; + 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; + infinitas_F_N = mkN "infinitas" "infinitatis" feminine ; -- [XXXDX] :: limitless extent; infinity; the Infinite; infinitesimalis_A = mkA "infinitesimalis" "infinitesimalis" "infinitesimale" ; -- [GXXEK] :: infinitesimal; - infinitio_F_N = mkN "infinitio" "infinitionis " feminine ; -- [XXXEC] :: infinity; + infinitio_F_N = mkN "infinitio" "infinitionis" feminine ; -- [XXXEC] :: infinity; infinitus_A = mkA "infinitus" "infinita" "infinitum" ; -- [XXXBX] :: boundless, unlimited, endless; infinite; infio_V = mkV "inferi" ; -- [XXXCO] :: begin (to do something); begin to speak; (infit is only classical example); infirme_Adv = mkAdv "infirme" ; -- [XXXCO] :: weakly, faintly; cravenly; not powerfully/effectively/dependably/soundly; infirmis_A = mkA "infirmis" "infirmis" "infirme" ; -- [EXXDS] :: weak/fragile/frail/feeble; unwell/sick/infirm; - infirmitas_F_N = mkN "infirmitas" "infirmitatis " feminine ; -- [XXXBX] :: weakness; sickness; + infirmitas_F_N = mkN "infirmitas" "infirmitatis" feminine ; -- [XXXBX] :: weakness; sickness; 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.); @@ -23060,32 +23053,32 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - infitiatio_F_N = mkN "infitiatio" "infitiationis " feminine ; -- [XXXFS] :: denial; + infitiatio_F_N = mkN "infitiatio" "infitiationis" feminine ; -- [XXXFS] :: denial; infitior_V = mkV "infitiari" ; -- [XXXDX] :: deny; not confess/acknowledge; withhold; disown; repudiate (claim); contradict; inflammabilis_A = mkA "inflammabilis" "inflammabilis" "inflammabile" ; -- [GXXEK] :: flammable; - inflammatio_F_N = mkN "inflammatio" "inflammationis " feminine ; -- [XBXCO] :: inflammation; action of setting ablaze, kindling; + inflammatio_F_N = mkN "inflammatio" "inflammationis" feminine ; -- [XBXCO] :: inflammation; action of setting ablaze, kindling; 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; + inflatio_F_N = mkN "inflatio" "inflationis" feminine ; -- [XXXCS] :: inflation, swelling/blowing/puffing (up); flatulence; inflammation; insolence; inflatus_A = mkA "inflatus" ; -- [XXXDX] :: inflated, puffed up; bombastic; turgid; - inflecto_V2 = mkV2 (mkV "inflectere" "inflecto" "inflexi" "inflexus ") ; -- [XXXDX] :: bend; curve; change; + 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; + 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; + 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; + informatio_F_N = mkN "informatio" "informationis" feminine ; -- [GXXEK] :: information; informis_A = mkA "informis" "informis" "informe" ; -- [XXXDX] :: formless, shapeless; deformed; ugly, hideous; - informitas_F_N = mkN "informitas" "informitatis " feminine ; -- [EXXES] :: unshapeliness; ugliness; + informitas_F_N = mkN "informitas" "informitatis" feminine ; -- [EXXES] :: unshapeliness; ugliness; 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; @@ -23100,7 +23093,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; @@ -23108,19 +23101,19 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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); + 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); + 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; @@ -23130,13 +23123,13 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; + 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; @@ -23144,36 +23137,36 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; 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; + 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; inhabilis_A = mkA "inhabilis" "inhabilis" "inhabile" ; -- [XXXDX] :: difficult to handle; not fitted, awkward; inhabilito_V = mkV "inhabilitare" ; -- [FXXEM] :: disqualify; incapacitate; inhabitabilis_A = mkA "inhabitabilis" "inhabitabilis" "inhabitabile" ; -- [XXXDO] :: uninhabitable; - inhabitantis_M_N = mkN "inhabitantis" "inhabitantis " masculine ; -- [XXXDS] :: inhabitant, dweller, occupant; + inhabitantis_M_N = mkN "inhabitantis" "inhabitantis" masculine ; -- [XXXDS] :: inhabitant, dweller, occupant; inhabito_V = mkV "inhabitare" ; -- [XXXCO] :: dwell in, inhabit, occupy; wear (garments) (L+S); 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; 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; + inhalatio_F_N = mkN "inhalatio" "inhalationis" feminine ; -- [GXXEK] :: inhalation; inhalo_V = mkV "inhalare" ; -- [XXXES] :: breathe; breathe on; inheredito_V2 = mkV2 (mkV "inhereditare") ; -- [ELXFS] :: appoint an heir; inheredo_V2 = mkV2 (mkV "inheredare") ; -- [ELXFS] :: appoint an heir; inhianter_Adv = mkAdv "inhianter" ; -- [FXXFE] :: greedily; eagerly; with open mouth; inhibeo_V = mkV "inhibere" ; -- [XXXDX] :: restrain, curb; prevent; inhio_V = mkV "inhiare" ; -- [XXXDX] :: gape, be open mouthed with astonishment; covet, desire; - inhonestas_F_N = mkN "inhonestas" "inhonestatis " feminine ; -- [EXXES] :: dishonor; + inhonestas_F_N = mkN "inhonestas" "inhonestatis" feminine ; -- [EXXES] :: dishonor; inhoneste_Adv = mkAdv "inhoneste" ; -- [XXXDX] :: shamefully; dishonorably; inhonesto_V = mkV "inhonestare" ; -- [XXXDX] :: disgrace; 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); + inhonoratio_F_N = mkN "inhonoratio" "inhonorationis" feminine ; -- [EXXFS] :: dishonoring; dishonor (Vulgate); inhonoratus_A = mkA "inhonoratus" "inhonorata" "inhonoratum" ; -- [XXXDX] :: not honored; inhonoris_A = mkA "inhonoris" "inhonoris" "inhonore" ; -- [EXXES] :: unhonored, without honor; inhonoro_V2 = mkV2 (mkV "inhonorare") ; -- [XXXES] :: dishonor; @@ -23181,36 +23174,36 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat inhorreo_V = mkV "inhorrere" ; -- [XXXES] :: stand on end; bristle up; shiver all over; 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; + 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; - inhumanatio_F_N = mkN "inhumanatio" "inhumanationis " feminine ; -- [XXXFS] :: being-made-man; incarnation; + inhumanatio_F_N = mkN "inhumanatio" "inhumanationis" feminine ; -- [XXXFS] :: being-made-man; incarnation; 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; + inhumanitas_F_N = mkN "inhumanitas" "inhumanitatis" feminine ; -- [XXXDX] :: churlishness; 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; + 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; 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); + ininnascor_V = mkV "ininnasci" "ininnascor" "ininnatus sum" ; -- [XXXDX] :: be born in; + iniquitas_F_N = mkN "iniquitas" "iniquitatis" feminine ; -- [XXXDX] :: unfairness, inequality, unevenness (of terrain); iniquus_A = mkA "iniquus" ; -- [XXXBX] :: unjust, unfair; disadvantageous, uneven; unkind, hostile; - initiale_N_N = mkN "initiale" "initialis " neuter ; -- [XXXIO] :: original/founding members (of society); + 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; + 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); + 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); + 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; @@ -23222,50 +23215,50 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat injurus_A = mkA "injurus" "injura" "injurum" ; -- [XXXEO] :: unjust; lawless; injussu_Adv = mkAdv "injussu" ; -- [XXXDX] :: without (the) orders (of ) (w/GEN); injussus_A = mkA "injussus" "injussa" "injussum" ; -- [XXXDX] :: unbidden, voluntary, of one's own accord; without orders/command; forbidden; - injussus_M_N = mkN "injussus" "injussus " masculine ; -- [XXXDX] :: without orders, unbidden, voluntary, of one's own accord; + injussus_M_N = mkN "injussus" "injussus" masculine ; -- [XXXDX] :: without orders, unbidden, voluntary, of one's own accord; 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); + 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); inlacrimor_V = mkV "inlacrimari" ; -- [XXXCO] :: weep over/at (with DAT); shed tears; water (eyes); inlaesus_A = mkA "inlaesus" "inlaesa" "inlaesum" ; -- [XXXEC] :: unhurt, uninjured; - inlagatio_F_N = mkN "inlagatio" "inlagationis " feminine ; -- [FLXFJ] :: inlawry; return from outlawry; + inlagatio_F_N = mkN "inlagatio" "inlagationis" feminine ; -- [FLXFJ] :: inlawry; return from outlawry; inlagatus_M_N = mkN "inlagatus" ; -- [FLXFJ] :: inlaw; one accepted back from outlawry; inlago_V = mkV "inlagare" ; -- [FLXFJ] :: inlaw; return to law from outlawry; reverse outlawry of person; - inlatio_F_N = mkN "inlatio" "inlationis " feminine ; -- [EXXCP] :: |contribution/pension; tribute/tax; offering/sacrifice; petition; offer (oath); + inlatio_F_N = mkN "inlatio" "inlationis" feminine ; -- [EXXCP] :: |contribution/pension; tribute/tax; offering/sacrifice; petition; offer (oath); inlaudatus_A = mkA "inlaudatus" "inlaudata" "inlaudatum" ; -- [XXXEC] :: unpraised, obscure; not to be praised, bad; inlautus_A = mkA "inlautus" "inlauta" "inlautum" ; -- [XXXEC] :: unwashed, unclean; inlecebra_F_N = mkN "inlecebra" ; -- [XXXEC] :: allurement, attraction, charm; a decoy bird; inlecebrose_Adv = mkAdv "inlecebrose" ; -- [XXXEC] :: attractively, enticingly; inlecebrosus_A = mkA "inlecebrosus" "inlecebrosa" "inlecebrosum" ; -- [XXXEC] :: attractive, enticing; inlectus_A = mkA "inlectus" "inlecta" "inlectum" ; -- [XXXEC] :: unread; - inlectus_M_N = mkN "inlectus" "inlectus " masculine ; -- [XXXEC] :: enticement; + inlectus_M_N = mkN "inlectus" "inlectus" masculine ; -- [XXXEC] :: enticement; inlepide_Adv = mkAdv "inlepide" ; -- [XXXEC] :: inelegantly, rudely; inlepidus_A = mkA "inlepidus" "inlepida" "inlepidum" ; -- [XXXEC] :: inelegant, rude, unmannerly; inlex_A = mkA "inlex" "inlegis"; -- [XXXFO] :: lawless, obeying no laws; - inlex_F_N = mkN "inlex" "inlicis " feminine ; -- [XXXCO] :: one who entices/allures; decoy; - inlex_M_N = mkN "inlex" "inlicis " masculine ; -- [XXXCO] :: one who entices/allures; decoy; + inlex_F_N = mkN "inlex" "inlicis" feminine ; -- [XXXCO] :: one who entices/allures; decoy; + inlex_M_N = mkN "inlex" "inlicis" masculine ; -- [XXXCO] :: one who entices/allures; decoy; inlibatus_A = mkA "inlibatus" "inlibata" "inlibatum" ; -- [XXXCO] :: intact, undiminished, kept/left whole/entire; unimpaired; inliberalis_A = mkA "inliberalis" "inliberalis" "inliberale" ; -- [XXXCO] :: ill-bred, ignoble, unworthy/unsuited to free man; niggardly/mean/ungenerous; - inliberalitas_F_N = mkN "inliberalitas" "inliberalitatis " feminine ; -- [XXXFO] :: stinginess, meanness, lack of generosity; + inliberalitas_F_N = mkN "inliberalitas" "inliberalitatis" feminine ; -- [XXXFO] :: stinginess, meanness, lack of generosity; 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; + 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); + 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; + 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); inlotus_A = mkA "inlotus" "inlota" "inlotum" ; -- [XXXEC] :: unwashed, unclean; inluceo_V = mkV "inlucere" ; -- [XXXEO] :: illuminate, shine on; - inluminatio_F_N = mkN "inluminatio" "inluminationis " feminine ; -- [XXXFO] :: glory, illustriousness; enlightening (Ecc); lighting/illumination; + inluminatio_F_N = mkN "inluminatio" "inluminationis" feminine ; -- [XXXFO] :: glory, illustriousness; enlightening (Ecc); lighting/illumination; inlumino_V2 = mkV2 (mkV "inluminare") ; -- [XXXCO] :: illuminate, give light to; light up; reveal/throw light on; brighten (w/color); - inlusio_F_N = mkN "inlusio" "inlusionis " feminine ; -- [DXXCS] :: irony; mocking, jeering; illusion; deceit; - inlusor_M_N = mkN "inlusor" "inlusoris " masculine ; -- [DXXES] :: scoffer; mocker; + inlusio_F_N = mkN "inlusio" "inlusionis" feminine ; -- [DXXCS] :: irony; mocking, jeering; illusion; deceit; + 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); inlustris_A = mkA "inlustris" ; -- [XXXBO] :: bright, shining, brilliant; clear, lucid; illustrious, distinguished, famous; @@ -23273,79 +23266,79 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; 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; + inmanitas_F_N = mkN "inmanitas" "inmanitatis" feminine ; -- [XXXCO] :: brutality, savage character, frightfulness; huge/vast size; barbarity; monster; 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; + inmemoratio_F_N = mkN "inmemoratio" "inmemorationis" feminine ; -- [EXXFS] :: forgetfulness, unmindfulness; inmemoratum_N_N = mkN "inmemoratum" ; -- [XXXEW] :: things (pl.) not told/related; things not mentioned; inmemoratus_A = mkA "inmemoratus" "inmemorata" "inmemoratum" ; -- [XXXEO] :: unmentioned; hitherto untold; not yet related, new (L+S); inmensum_Adv = mkAdv "inmensum" ; -- [XXXDO] :: to an enormous extent/degree; inmensurabilis_A = mkA "inmensurabilis" "inmensurabilis" "inmensurabile" ; -- [EXXFP] :: immeasurable; 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; + 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; inmolatitius_A = mkA "inmolatitius" "inmolatitia" "inmolatitium" ; -- [DXXES] :: of/for a sacrifice; inmortalis_A = mkA "inmortalis" "inmortalis" "inmortale" ; -- [XXXBO] :: immortal, not subject to death; eternal, everlasting, perpetual; imperishable; - inmortalis_M_N = mkN "inmortalis" "inmortalis " masculine ; -- [XEXDO] :: immortal, god; - inmortalitas_F_N = mkN "inmortalitas" "inmortalitatis " feminine ; -- [XXXCO] :: immortality; divinity, being a god; indestructibility; permanence; remembrance; + inmortalis_M_N = mkN "inmortalis" "inmortalis" masculine ; -- [XEXDO] :: immortal, god; + inmortalitas_F_N = mkN "inmortalitas" "inmortalitatis" feminine ; -- [XXXCO] :: immortality; divinity, being a god; indestructibility; permanence; remembrance; inmunditia_F_N = mkN "inmunditia" ; -- [XXXDO] :: dirtiness/untidiness; foulness (moral); lust/wantonness; dirty conditions (pl.); inmundus_A = mkA "inmundus" "inmunda" "inmundum" ; -- [XXXDX] :: dirty, filthy, foul; unclean. impure; inmunis_A = mkA "inmunis" "inmunis" "inmune" ; -- [XXXDX] :: free from taxes/tribute, exempt; immune; inmutabilis_A = mkA "inmutabilis" "inmutabilis" "inmutabile" ; -- [XXXCO] :: unchangeable/unalterable; (rarely) liable to be changed; - inmutatio_F_N = mkN "inmutatio" "inmutationis " feminine ; -- [XXXCO] :: change, alteration, process of changing; substitution/replacement; + 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); + 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); + 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; 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; + 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 = mkV2 (mkV "innubere" "innubo" "innupsi" "innuptus ") Dat_Prep ; -- [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); + 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; + 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; + 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; - inobediens_F_N = mkN "inobediens" "inobedientis " feminine ; -- [EEXEP] :: disobedience; + inobediens_F_N = mkN "inobediens" "inobedientis" feminine ; -- [EEXEP] :: disobedience; 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; + 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; inoboediens_A = mkA "inoboediens" "inoboedientis"; -- [EEXCP] :: disobedient; - inoboediens_F_N = mkN "inoboediens" "inoboedientis " feminine ; -- [EEXEP] :: disobedience; + inoboediens_F_N = mkN "inoboediens" "inoboedientis" feminine ; -- [EEXEP] :: disobedience; 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; + 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; @@ -23355,7 +23348,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; @@ -23369,47 +23362,47 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat inordinaliter_Adv = mkAdv "inordinaliter" ; -- [DXXFS] :: irregularly; at irregular intervals; without regard for rules; inordinate_Adv = mkAdv "inordinate" ; -- [XXXEO] :: irregularly; at irregular intervals; without regard for rules; inordinatim_Adv = mkAdv "inordinatim" ; -- [DXXFS] :: irregularly; at irregular intervals; without regard for rules; - inordinatio_F_N = mkN "inordinatio" "inordinationis " feminine ; -- [DXXES] :: disorder; + inordinatio_F_N = mkN "inordinatio" "inordinationis" feminine ; -- [DXXES] :: disorder; inordinatum_N_N = mkN "inordinatum" ; -- [XXXES] :: disorder; inordinatus_A = mkA "inordinatus" "inordinata" "inordinatum" ; -- [XXXCO] :: |occurring irregularly; in confusion; W:not in formation (troops); inormis_A = mkA "inormis" "inormis" "inorme" ; -- [XXXFS] :: immoderate; enormous; inornate_Adv =mkAdv "inornate" "inornatius" "inornatissime" ; -- [XXXEO] :: plainly; with lack of (stylistic) ornament; inornatus_A = mkA "inornatus" "inornata" "inornatum" ; -- [XXXDX] :: unadorned; uncelebrated; inpaciencia_F_N = mkN "inpaciencia" ; -- [FXXCO] :: impatience; inability/unwillingness to endure/bear; impassivity/lack of emotion; - inpages_F_N = mkN "inpages" "inpagis " feminine ; -- [XTXEO] :: crosspiece; batten (on door, etc.); framework/border around panel of door; + inpages_F_N = mkN "inpages" "inpagis" feminine ; -- [XTXEO] :: crosspiece; batten (on door, etc.); framework/border around panel of door; inpar_A = mkA "inpar" "inparis"; -- [XXXAO] :: unequal (size/number/rank/esteem); uneven, odd; inferior; not a match (for); inpassibilis_A = mkA "inpassibilis" "inpassibilis" "inpassibile" ; -- [DXXES] :: passionless; incapable of passion/suffering; insensible; - inpassibilitas_F_N = mkN "inpassibilitas" "inpassibilitatis " feminine ; -- [DEXES] :: incapacity for suffering, impassibility; apathy, insensibility (Def); + inpassibilitas_F_N = mkN "inpassibilitas" "inpassibilitatis" feminine ; -- [DEXES] :: incapacity for suffering, impassibility; apathy, insensibility (Def); inpassibiliter_Adv = mkAdv "inpassibiliter" ; -- [DXXFS] :: without passion; 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.); - inpedio_V2 = mkV2 (mkV "inpedire" "inpedio" "inpedivi" "inpeditus ") ; -- [FXXDX] :: hinder, impede, hamper, obstruct, prevent from (w/ne, quin, or quominus); + 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; + 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; - inperfectio_F_N = mkN "inperfectio" "inperfectionis " feminine ; -- [DXXFS] :: imperfection; + inperfectio_F_N = mkN "inperfectio" "inperfectionis" feminine ; -- [DXXFS] :: imperfection; inperfectus_A = mkA "inperfectus" "inperfecta" "inperfectum" ; -- [XXXCO] :: unfinished, incomplete; imperfect; not complete in every respect; undigested; 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; + 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; + 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); + 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; + 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); inprobus_A = mkA "inprobus" "inproba" "inprobum" ; -- [XXXAO] :: wicked/flagrant; morally unsound; greedy/rude; immoderate; disloyal; shameless; @@ -23427,39 +23420,39 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat inpudens_A = mkA "inpudens" "inpudentis"; -- [FXXDX] :: shameless, impudent; inpudenter_Adv = mkAdv "inpudenter" ; -- [FXXDX] :: shamelessly, impudently; inpudentia_F_N = mkN "inpudentia" ; -- [FXXDX] :: shamelessness; effrontery; - inpulsio_F_N = mkN "inpulsio" "inpulsionis " feminine ; -- [XXXDS] :: external pressure; influence; incitement; + inpulsio_F_N = mkN "inpulsio" "inpulsionis" feminine ; -- [XXXDS] :: external pressure; influence; incitement; inpune_Adv =mkAdv "inpune" "inpunius" "inpunissime" ; -- [XXXCO] :: with impunity; without punishment/retribution/restraint/consequences/harm; inpunis_A = mkA "inpunis" "inpunis" "inpune" ; -- [XXXFO] :: unpunished; - inpuritas_F_N = mkN "inpuritas" "inpuritatis " feminine ; -- [XXXFO] :: impurity; foulness; + inpuritas_F_N = mkN "inpuritas" "inpuritatis" feminine ; -- [XXXFO] :: impurity; foulness; inpuritia_F_N = mkN "inpuritia" ; -- [XXXFO] :: impurity; foulness; 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); - inquiam_V = mkV0 "inquiam" ; -- [XXXAX] :: say (defective); (postpositive - for direct quote); [inquiens => saying]; +-- TODO inquiam_V : V1 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; + inquietudo_F_N = mkN "inquietudo" "inquietudinis" feminine ; -- [XXXFO] :: disturbance, troubles; outbreak of disorder; 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; + 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; + 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); + 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); inquit_V0 = mkV0 "inquit" ; -- [XXXDX] :: it is said, one says; - inradiatio_F_N = mkN "inradiatio" "inradiationis " feminine ; -- [EXXFP] :: illumination; + inradiatio_F_N = mkN "inradiatio" "inradiationis" feminine ; -- [EXXFP] :: illumination; inrasus_A = mkA "inrasus" "inrasa" "inrasum" ; -- [XXXEC] :: unshaved; - inrationabile_N_N = mkN "inrationabile" "inrationabilis " neuter ; -- [DXXFS] :: unreasoning creatures; dumb animals; + inrationabile_N_N = mkN "inrationabile" "inrationabilis" neuter ; -- [DXXFS] :: unreasoning creatures; dumb animals; inrationabilis_A = mkA "inrationabilis" "inrationabilis" "inrationabile" ; -- [XXXEO] :: irrational, unreasoning; inrationabiliter_Adv = mkAdv "inrationabiliter" ; -- [DXXES] :: irrationally, unreasoningly; - inrational_N_N = mkN "inrational" "inrationalis " neuter ; -- [EXXES] :: unreasoning creature; + 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; + 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; inrecusabilis_A = mkA "inrecusabilis" "inrecusabilis" "inrecusabile" ; -- [DEXES] :: not to be refused; that cannot be refused; @@ -23471,7 +23464,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat inrefrenabilis_A = mkA "inrefrenabilis" "inrefrenabilis" "inrefrenabile" ; -- [EEXFE] :: uncontrollable; unquenchable; inregressibilis_A = mkA "inregressibilis" "inregressibilis" "inregressibile" ; -- [DEXFS] :: from which there is no return; inregularis_A = mkA "inregularis" "inregularis" "inregulare" ; -- [EXXDE] :: irregular; - inregularitas_F_N = mkN "inregularitas" "inregularitatis " feminine ; -- [FXXEE] :: irregularity; impediment (to reception/exercise of sacred orders); + inregularitas_F_N = mkN "inregularitas" "inregularitatis" feminine ; -- [FXXEE] :: irregularity; impediment (to reception/exercise of sacred orders); inreligatus_A = mkA "inreligatus" "inreligata" "inreligatum" ; -- [XXXEO] :: unfastened, unbound, unmoored; not fastened/bound/moored; inreligiose_Adv = mkAdv "inreligiose" ; -- [XEXFO] :: impiously; blasphemously; irreligiously; inreligiosus_A = mkA "inreligiosus" "inreligiosa" "inreligiosum" ; -- [XEXDO] :: irreligious; impious; @@ -23485,7 +23478,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat inreprehensibilis_A = mkA "inreprehensibilis" "inreprehensibilis" "inreprehensibile" ; -- [DXXES] :: irreprehensible, not blameworthy; irreproachable; not liable to reproof/blame; inreprehensus_A = mkA "inreprehensus" "inreprehensa" "inreprehensum" ; -- [XXXEC] :: unblamed, blameless; inrepticius_A = mkA "inrepticius" "inrepticia" "inrepticium" ; -- [FXXEM] :: surreptitious; - inreptio_F_N = mkN "inreptio" "inreptionis " feminine ; -- [FXXEM] :: creeping in; + inreptio_F_N = mkN "inreptio" "inreptionis" feminine ; -- [FXXEM] :: creeping in; inrequietus_A = mkA "inrequietus" "inrequieta" "inrequietum" ; -- [XXXEC] :: restless, troubled; inresectus_A = mkA "inresectus" "inresecta" "inresectum" ; -- [XXXEC] :: not cut, uncut; inresolutus_A = mkA "inresolutus" "inresoluta" "inresolutum" ; -- [XXXEC] :: not loosed, not slackened; @@ -23498,45 +23491,45 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat inrevocatus_A = mkA "inrevocatus" "inrevocata" "inrevocatum" ; -- [XXXEC] :: not called back; inrideo_V = mkV "inridere" ; -- [XXXDX] :: laugh at, ridicule; inridicule_Adv = mkAdv "inridicule" ; -- [XXXDX] :: without wit; unwittingly; unamusingly; - inrigatio_F_N = mkN "inrigatio" "inrigationis " feminine ; -- [XXXEC] :: watering, irrigation; + inrigatio_F_N = mkN "inrigatio" "inrigationis" feminine ; -- [XXXEC] :: watering, irrigation; inrigo_V2 = mkV2 (mkV "inrigare") ; -- [XXXBO] :: water/irrigate; inundate/flood; refresh; wet/moisten; diffuse, shed (sensation); inriguus_A = mkA "inriguus" "inrigua" "inriguum" ; -- [XXXEC] :: watering, irrigating; refreshing; watered, soaked; - inrisio_F_N = mkN "inrisio" "inrisionis " feminine ; -- [XXXDS] :: derision; mockery; + inrisio_F_N = mkN "inrisio" "inrisionis" feminine ; -- [XXXDS] :: derision; mockery; inritamentum_N_N = mkN "inritamentum" ; -- [XXXEC] :: incitement, incentive; - inritator_M_N = mkN "inritator" "inritatoris " masculine ; -- [XXXFO] :: instigator, prompter; provoker, inciter; - inritatrix_F_N = mkN "inritatrix" "inritatricis " feminine ; -- [EXXFS] :: inciter, she who incites; + inritator_M_N = mkN "inritator" "inritatoris" masculine ; -- [XXXFO] :: instigator, prompter; provoker, inciter; + inritatrix_F_N = mkN "inritatrix" "inritatricis" feminine ; -- [EXXFS] :: inciter, she who incites; inritus_A = mkA "inritus" "inrita" "inritum" ; -- [XXXDX] :: ineffective, useless, invalid; in vain; - inrogatio_F_N = mkN "inrogatio" "inrogationis " feminine ; -- [XXXEC] :: imposing of a fine or penalty; + inrogatio_F_N = mkN "inrogatio" "inrogationis" feminine ; -- [XXXEC] :: imposing of a fine or penalty; 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; + 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; + 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; + 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; 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; + 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; + 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; + 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; + insectatio_F_N = mkN "insectatio" "insectationis" feminine ; -- [XXXDX] :: hostile pursuit; criticism; insecticidium_N_N = mkN "insecticidium" ; -- [GXXEK] :: insecticide; insecto_V = mkV "insectare" ; -- [XXXDX] :: pursue with hostile intent; pursue with hostile speech, etc; insector_V = mkV "insectari" ; -- [XXXDX] :: pursue with hostile intent; pursue with hostile speech, etc; @@ -23550,45 +23543,45 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat inseparatus_A = mkA "inseparatus" "inseparata" "inseparatum" ; -- [EEXES] :: not separate; unseparated; insepultus_A = mkA "insepultus" "insepulta" "insepultum" ; -- [XXXDX] :: unburied; 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; + 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 = mkV2 (mkV "inservire" "inservio" "inservivi" "inservitus ") Dat_Prep ; -- [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; insideo_V = mkV "insidere" ; -- [XXXBS] :: ||be fixed/stamped in; adhere to; grip; take possession of; hold/occupy; insidia_F_N = mkN "insidia" ; -- [XXXAO] :: ambush/ambuscade (pl.); plot; treachery, treacherous attack/device; trap/snare; - insidiator_M_N = mkN "insidiator" "insidiatoris " masculine ; -- [XXXCO] :: one lying in ambush/wait (attack/rob); lurker; who plots/sets traps; deceiver; + insidiator_M_N = mkN "insidiator" "insidiatoris" masculine ; -- [XXXCO] :: one lying in ambush/wait (attack/rob); lurker; who plots/sets traps; deceiver; 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; 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; + 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); + insile_N_N = mkN "insile" "insilis" neuter ; -- [XXXFS] :: treadle (pl.) of a loom; (or perhaps leash-rods); 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; - insinuatio_F_N = mkN "insinuatio" "insinuationis " feminine ; -- [XGXEO] :: ingratiating; beginning speech currying favor with judge; + insinuatio_F_N = mkN "insinuatio" "insinuationis" feminine ; -- [XGXEO] :: ingratiating; beginning speech currying favor with judge; insinuo_V = mkV "insinuare" ; -- [XXXDX] :: push in, work in, creep in, insinuate; insipidus_A = mkA "insipidus" "insipida" "insipidum" ; -- [EXXES] :: tasteless; insipid; 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; + 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; 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; + 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; insito_V2 = mkV2 (mkV "insitare") ; -- [FXXFM] :: graft; - insitor_M_N = mkN "insitor" "insitoris " masculine ; -- [XXXEC] :: grafter; + insitor_M_N = mkN "insitor" "insitoris" masculine ; -- [XXXEC] :: grafter; insitus_A = mkA "insitus" "insita" "insitum" ; -- [XXXCO] :: inserted, incorporated, attached; grafting (plant); innate; insociabilis_A = mkA "insociabilis" "insociabilis" "insociabile" ; -- [XXXDX] :: intractable, implacable; insolabiliter_Adv = mkAdv "insolabiliter" ; -- [XXXEC] :: inconsolably; @@ -23606,15 +23599,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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); + 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; @@ -23624,43 +23617,43 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat instanter_Adv =mkAdv "instanter" "instantius" "instantissime" ; -- [XXXDO] :: vehemently; violently; urgently, insistently; instantia_F_N = mkN "instantia" ; -- [XXXCO] :: earnestness; insistence/urgency; concentration; being present/impending; 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; + 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; + 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; - instinctor_M_N = mkN "instinctor" "instinctoris " masculine ; -- [XXXEC] :: instigator; + instinctor_M_N = mkN "instinctor" "instinctoris" masculine ; -- [XXXEC] :: instigator; instinctus_A = mkA "instinctus" "instincta" "instinctum" ; -- [XXXDX] :: roused, fired; infuriated; - instinctus_M_N = mkN "instinctus" "instinctus " masculine ; -- [XXXDX] :: inspiration; instigation; + instinctus_M_N = mkN "instinctus" "instinctus" masculine ; -- [XXXDX] :: inspiration; instigation; instita_F_N = mkN "instita" ; -- [XXXDX] :: band on a dress; - institio_F_N = mkN "institio" "institionis " feminine ; -- [XXXEC] :: standing still; - institor_M_N = mkN "institor" "institoris " masculine ; -- [XXXCO] :: shopkeeper, peddler; who displays (thing) as if for sale; + institio_F_N = mkN "institio" "institionis" feminine ; -- [XXXEC] :: standing still; + institor_M_N = mkN "institor" "institoris" masculine ; -- [XXXCO] :: shopkeeper, peddler; who displays (thing) as if for sale; 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; + 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; + 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; + 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; + instructor_M_N = mkN "instructor" "instructoris" masculine ; -- [XXXDX] :: one who equips/arranges; preparer/arranger; 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; + 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; + 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; 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; + 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; @@ -23670,21 +23663,21 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat insulanus_M_N = mkN "insulanus" ; -- [XXXEC] :: islander; insulinum_N_N = mkN "insulinum" ; -- [GXXEK] :: insulin; 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; + 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; - insultatio_F_N = mkN "insultatio" "insultationis " feminine ; -- [XXXEO] :: insult; insulting remark/action; mockery; assault, attack (Latham); + insultatio_F_N = mkN "insultatio" "insultationis" feminine ; -- [XXXEO] :: insult; insulting remark/action; mockery; assault, attack (Latham); insulto_V = mkV "insultare" ; -- [XXXBO] :: |insult; behave insultingly, mock/scoff/jeer (at); assault/attack (Latham); 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; - 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; + insum_V = mkV "inesse" "insum" "infui" "infuturus" ; -- Comment: [XXXBX] :: be in/on/there; belong to; be involved in; + 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; + insurgo_V2 = mkV2 (mkV "insurgere" "insurgo" "insurrexi" "insurrectus") ; -- [XXXDX] :: rise up; rise up against; insusurro_V = mkV "insusurrare" ; -- [XXXFS] :: insinuate; suggest; whisper; intabesco_V2 = mkV2 (mkV "intabescere" "intabesco" "intabui" nonExist ) ; -- [XXXDX] :: pine away; melt away; intactus_A = mkA "intactus" "intacta" "intactum" ; -- [XXXBX] :: untouched, intact; untried; virgin; @@ -23695,25 +23688,26 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat integellus_A = mkA "integellus" "integella" "integellum" ; -- [XXXDX] :: unharmed; 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.); + 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; integrasco_V = mkV "integrascere" "integrasco" nonExist nonExist ; -- [XXXEC] :: break out afresh; - integratio_F_N = mkN "integratio" "integrationis " feminine ; -- [GXXEK] :: integration; + 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; integrista_M_N = mkN "integrista" ; -- [GXXEK] :: fundamentalist; - integritas_F_N = mkN "integritas" "integritatis " feminine ; -- [XXXDX] :: soundness; chastity; integrity; + integritas_F_N = mkN "integritas" "integritatis" feminine ; -- [XXXDX] :: soundness; chastity; integrity; integro_V = mkV "integrare" ; -- [XXXDX] :: renew; refresh; integrate (Cal); integumentum_N_N = mkN "integumentum" ; -- [XXXDX] :: covering, shield, guard; intellectibilis_A = mkA "intellectibilis" "intellectibilis" "intellectibile" ; -- [EXXEP] :: intelligible; intellectualis_A = mkA "intellectualis" "intellectualis" "intellectuale" ; -- [EXXEP] :: intellectual, of the mind or understanding; intellectualiter_Adv = mkAdv "intellectualiter" ; -- [EXXEP] :: intellectually, according to the intellect; - intellectus_M_N = mkN "intellectus" "intellectus " masculine ; -- [XXXBO] :: comprehension/understanding; recognition/discerning; intellect; meaning/sense; + intellectus_M_N = mkN "intellectus" "intellectus" masculine ; -- [XXXBO] :: comprehension/understanding; recognition/discerning; intellect; meaning/sense; 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; - intellego_V2 = mkV2 (mkV "intellegere" "intellego" "intellexi" "intellectus ") ; -- [XXXAX] :: understand; realize; +-- 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; 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; @@ -23723,60 +23717,60 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat intemperate_Adv =mkAdv "intemperate" "intemperatius" "intemperatissime" ; -- [XXXDX] :: immoderately, intemperately; intemperatus_A = mkA "intemperatus" "intemperata" "intemperatum" ; -- [XXXEO] :: intemperate, untempered, immoderate; inclement (L+S); unmixed (w/vinum); intemperia_F_N = mkN "intemperia" ; -- [XXXFS] :: intemperateness (weather, pl.); folly; - intemperies_F_N = mkN "intemperies" "intemperiei " feminine ; -- [XXXDX] :: lack of temperateness (of weather, etc); outrageous behavior; + intemperies_F_N = mkN "intemperies" "intemperiei" feminine ; -- [XXXDX] :: lack of temperateness (of weather, etc); outrageous behavior; 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; + 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; 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; + 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; intentus_A = mkA "intentus" ; -- [XXXBO] :: eager/intent, closely attentive; strict; intense, strenuous; serious/earnest; intepeo_V = mkV "intepere" ; -- [XXXES] :: be lukewarm; 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; + 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; interaneus_A = mkA "interaneus" "interanea" "interaneum" ; -- [XXXES] :: interior; 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; - intercido_V2 = mkV2 (mkV "intercidere" "intercido" "intercidi" "intercisus ") ; -- [XXXDX] :: cut through, sever; + 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; + 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; + 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; + 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); + 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; interdius_Adv = mkAdv "interdius" ; -- [BXXFS] :: in the daytime; by day; (archaic form of interdiu); - interductus_M_N = mkN "interductus" "interductus " masculine ; -- [XGXEC] :: interpunctuation; point inserted in writing; hyphen (Cal); + 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; - 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; + 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_V = mkV "interire" "intereo" "interivi" "interitus" ; -- [XXXBX] :: perish, die; be ruined; cease; + intereo_2_V = mkV "interire" "intereo" "interiii" "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; + 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); 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; @@ -23784,25 +23778,25 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; + 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; + 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; + 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; + 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; + 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; interluo_V2 = mkV2 (mkV "interluere" "interluo" "interluxi" nonExist ) ; -- [XXXDX] :: flow between; intermedius_A = mkA "intermedius" "intermedia" "intermedium" ; -- [XXXES] :: intermediate; @@ -23815,70 +23809,70 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; + internatus_M_N = mkN "internatus" "internatus" masculine ; -- [GXXEK] :: residency; internecinus_A = mkA "internecinus" "internecina" "internecinum" ; -- [XXXEC] :: murderous, deadly; - internecio_F_N = mkN "internecio" "internecionis " feminine ; -- [XXXCO] :: slaughter, massacre; extermination, total destruction of life; cause of such; + internecio_F_N = mkN "internecio" "internecionis" feminine ; -- [XXXCO] :: slaughter, massacre; extermination, total destruction of life; cause of such; internecivus_A = mkA "internecivus" "interneciva" "internecivum" ; -- [XXXCO] :: murderous, deadly (quarrels); devastating (disease); fought to the death (war); - internicio_F_N = mkN "internicio" "internicionis " feminine ; -- [XXXCO] :: slaughter, massacre; extermination, total destruction of life; cause of such; + internicio_F_N = mkN "internicio" "internicionis" feminine ; -- [XXXCO] :: slaughter, massacre; extermination, total destruction of life; cause of such; internicivus_A = mkA "internicivus" "interniciva" "internicivum" ; -- [XXXCO] :: murderous, deadly (quarrels); devastating (disease); fought to the death (war); 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; + 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; interordinium_N_N = mkN "interordinium" ; -- [XXXFS] :: two-row space; space between two rows; - interpellatio_F_N = mkN "interpellatio" "interpellationis " feminine ; -- [XXXDX] :: interruption in speaking; + 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; + 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; interpretamentum_N_N = mkN "interpretamentum" ; -- [EXXFS] :: explanation; interpretation; - interpretatio_F_N = mkN "interpretatio" "interpretationis " feminine ; -- [XXXDX] :: interpretation; meaning; + interpretatio_F_N = mkN "interpretatio" "interpretationis" feminine ; -- [XXXDX] :: interpretation; meaning; interpreto_V2 = mkV2 (mkV "interpretare") ; -- [EXXEW] :: explain/expound; interpret/prophesy from (dream/omen); understand/comprehend; 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; + 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; + 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; + interrete_N_N = mkN "interrete" "interretis" neuter ; -- [HXXEK] :: Internet; interretialis_A = mkA "interretialis" "interretialis" "interretiale" ; -- [HXXEK] :: Internet-derived; interretiarius_M_N = mkN "interretiarius" ; -- [HXXEK] :: Internet user; - interrex_M_N = mkN "interrex" "interregis " masculine ; -- [XXXDX] :: one who holds office between the death of a supreme magistrate and the appoint; + interrex_M_N = mkN "interrex" "interregis" masculine ; -- [XXXDX] :: one who holds office between the death of a supreme magistrate and the appoint; interritus_A = mkA "interritus" "interrita" "interritum" ; -- [XXXDX] :: unafraid, fearless; - interrivatio_F_N = mkN "interrivatio" "interrivationis " feminine ; -- [DXXFS] :: drawing off of water between two places; - interrogatio_F_N = mkN "interrogatio" "interrogationis " feminine ; -- [XXXDX] :: interrogation, inquiry, questioning; + interrivatio_F_N = mkN "interrivatio" "interrivationis" feminine ; -- [DXXFS] :: drawing off of water between two places; + 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; + 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; + 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; + 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; + intersum_V = mkV "interesse" "intersum" "interfui" "interfuturus" ; -- Comment: [XXXBX] :: be/lie between, be in the midst; be present; take part in; be different; intertextus_A = mkA "intertextus" "intertexta" "intertextum" ; -- [XXXEC] :: interwoven; - intertributio_F_N = mkN "intertributio" "intertributionis " feminine ; -- [ELXFS] :: contribution; - intertrigo_F_N = mkN "intertrigo" "intertriginis " feminine ; -- [XXXFS] :: chafing (of skin); + intertributio_F_N = mkN "intertributio" "intertributionis" feminine ; -- [ELXFS] :: contribution; + intertrigo_F_N = mkN "intertrigo" "intertriginis" feminine ; -- [XXXFS] :: chafing (of skin); intertrimentum_N_N = mkN "intertrimentum" ; -- [XXXEC] :: loss, damage; interula_F_N = mkN "interula" ; -- [XXXEO] :: underwear worn by both sexes; inner garment (Erasmus); interulus_A = mkA "interulus" "interula" "interulum" ; -- [XXXEO] :: underwear; [w/tunica => undergarment worn by both sexes]; @@ -23886,26 +23880,26 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; + 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; intibus_M_N = mkN "intibus" ; -- [XXXDX] :: endive or chicory; 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); + 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; @@ -23916,18 +23910,18 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; intramuranus_A = mkA "intramuranus" "intramurana" "intramuranum" ; -- [XXXFS] :: within the walls; intransmeabilis_A = mkA "intransmeabilis" "intransmeabilis" "intransmeabile" ; -- [XXXFS] :: impassable; - intransmutabil_F_N = mkN "intransmutabil" "intransmutabilis " feminine ; -- [XXXES] :: immutability; unchangeability; + intransmutabil_F_N = mkN "intransmutabil" "intransmutabilis" feminine ; -- [XXXES] :: immutability; unchangeability; intransmutabilis_A = mkA "intransmutabilis" "intransmutabilis" "intransmutabile" ; -- [XXXES] :: immutable; unchangeable; 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; + intributio_F_N = mkN "intributio" "intributionis" feminine ; -- [DXXFS] :: contribution; intricatus_A = mkA "intricatus" "intricata" "intricatum" ; -- [FXXEK] :: complex; intrico_V2 = mkV2 (mkV "intricare") ; -- [XXXES] :: entangle; embarrass; intrinsecus_A = mkA "intrinsecus" "intrinseca" "intrinsecum" ; -- [DXXFS] :: inward; internal (Souter); @@ -23935,23 +23929,23 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); - 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; + 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); + introeo_1_V = mkV "introire" "introeo" "introivi" "introitus" ; -- [XXXBX] :: enter, go in or into; invade; + introeo_2_V = mkV "introire" "introeo" "introiii" "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; + 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; - intrusio_F_N = mkN "intrusio" "intrusionis " feminine ; -- [FLXFJ] :: intrusion; - intrusor_M_N = mkN "intrusor" "intrusoris " masculine ; -- [FLXFJ] :: intruder; + introversio_F_N = mkN "introversio" "introversionis" feminine ; -- [FXXEZ] :: introversion, turning (thoughts) inward; contemplation of spiritual things; + intrusio_F_N = mkN "intrusio" "intrusionis" feminine ; -- [FLXFJ] :: intrusion; + intrusor_M_N = mkN "intrusor" "intrusoris" masculine ; -- [FLXFJ] :: intruder; intubum_N_N = mkN "intubum" ; -- [XXXDX] :: endive or chicory; intubus_M_N = mkN "intubus" ; -- [XXXDX] :: endive or chicory; intueor_V = mkV "intueri" ; -- [XXXAX] :: look at; consider, regard; admire; stare; @@ -23960,51 +23954,51 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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; inula_F_N = mkN "inula" ; -- [XAXEC] :: plant elecampane; inultus_A = mkA "inultus" "inulta" "inultum" ; -- [XXXBO] :: unpunished, scot-free; acting with impunity; having no recompense, unavenged; inumbro_V = mkV "inumbrare" ; -- [XXXDX] :: cast a shadow; - inundatio_F_N = mkN "inundatio" "inundationis " feminine ; -- [XXXDX] :: flood; + 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); + 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; + 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; 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.); + 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; + 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; + 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; + 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; - inventrix_F_N = mkN "inventrix" "inventricis " feminine ; -- [XXXDX] :: inventress; + 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; + inventrix_F_N = mkN "inventrix" "inventricis" feminine ; -- [XXXDX] :: inventress; inventum_N_N = mkN "inventum" ; -- [XXXDX] :: invention, discovery; 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; 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; + 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; + 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); - investio_V2 = mkV2 (mkV "investire" "investio" "investivi" "investitus ") ; -- [XXXES] :: clothe; cover; + 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; + 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; invicem_Adv = mkAdv "invicem" ; -- [XXXBX] :: in turn; by turns; reciprocally/mutually; [ab invicem => from one another]; @@ -24027,11 +24021,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; - invitatio_F_N = mkN "invitatio" "invitationis " feminine ; -- [XXXDX] :: invitation; + invitatio_F_N = mkN "invitatio" "invitationis" feminine ; -- [XXXDX] :: invitation; invitatorius_A = mkA "invitatorius" "invitatoria" "invitatorium" ; -- [DXXES] :: inviting; invitatory; of/pertaining to invitation; invito_V = mkV "invitare" ; -- [XXXBX] :: invite, summon; challenge, incite; encourage; attract, allure, entice; invituperabilis_A = mkA "invituperabilis" "invituperabilis" "invituperabile" ; -- [XEXFS] :: unblamable; @@ -24043,9 +24037,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat involucrum_N_N = mkN "involucrum" ; -- [XXXEC] :: wrap, cover; envelope (Cal); 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; + 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; @@ -24062,7 +24056,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; 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; @@ -24071,22 +24065,22 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat irenismus_M_N = mkN "irenismus" ; -- [GXXEK] :: pacifism; irinum_N_N = mkN "irinum" ; -- [XAXCO] :: extract of iris root; irinus_A = mkA "irinus" "irina" "irinum" ; -- [XAXEO] :: of/derived from the iris plant/root; - iris_F_N = mkN "iris" "iris " feminine ; -- [XAXCO] :: iris (plant)i; preparation of iris root; iridescent stone; - iris_M_N = mkN "iris" "iris " masculine ; -- [XAXFO] :: hedgehog; + iris_F_N = mkN "iris" "iris" feminine ; -- [XAXCO] :: iris (plant)i; preparation of iris root; iridescent stone; + iris_M_N = mkN "iris" "iris" masculine ; -- [XAXFO] :: hedgehog; irnea_F_N = mkN "irnea" ; -- [BXXEO] :: jug; kind of jug; irneacus_A = mkA "irneacus" "irneaca" "irneacum" ; -- [XBXIO] :: having hernia/rupture/enlarged scrotum; irneosus_A = mkA "irneosus" "irneosa" "irneosum" ; -- [XBXFO] :: having hernia/rupture/enlarged scrotum; iro_V = mkV "irare" ; -- [FXXDE] :: get/be/become angry; fly into a rage; be angry at (with DAT); feel resentment; ironia_F_N = mkN "ironia" ; -- [XXXEC] :: irony; ironice_Adv = mkAdv "ironice" ; -- [FXXEM] :: ironically; - irradiatio_F_N = mkN "irradiatio" "irradiationis " feminine ; -- [EXXFP] :: illumination; irradiation (Cal); + irradiatio_F_N = mkN "irradiatio" "irradiationis" feminine ; -- [EXXFP] :: illumination; irradiation (Cal); irradio_V = mkV "irradiare" ; -- [FSXEN] :: beam forth; - irrationabile_N_N = mkN "irrationabile" "irrationabilis " neuter ; -- [DXXFS] :: unreasoning creatures; dumb animals; + irrationabile_N_N = mkN "irrationabile" "irrationabilis" neuter ; -- [DXXFS] :: unreasoning creatures; dumb animals; irrationabilis_A = mkA "irrationabilis" "irrationabilis" "irrationabile" ; -- [XXXEO] :: irrational, unreasoning; irrationabiliter_Adv = mkAdv "irrationabiliter" ; -- [DXXES] :: irrationally, unreasoningly; - irrational_N_N = mkN "irrational" "irrationalis " neuter ; -- [EXXES] :: unreasoning creature; + irrational_N_N = mkN "irrational" "irrationalis" neuter ; -- [EXXES] :: unreasoning creature; irrationalis_A = mkA "irrationalis" "irrationalis" "irrationale" ; -- [EXXES] :: irrational, unreasoning; - irrecogitatio_F_N = mkN "irrecogitatio" "irrecogitationis " feminine ; -- [DXXFS] :: thoughtlessness; inconsiderateness; + irrecogitatio_F_N = mkN "irrecogitatio" "irrecogitationis" feminine ; -- [DXXFS] :: thoughtlessness; inconsiderateness; irrecordabilis_A = mkA "irrecordabilis" "irrecordabilis" "irrecordabile" ; -- [DEXFS] :: not to be remembered; irrecuperabilis_A = mkA "irrecuperabilis" "irrecuperabilis" "irrecuperabile" ; -- [DEXFS] :: irreparable; unalterable; irrecoverable; irrecusabilis_A = mkA "irrecusabilis" "irrecusabilis" "irrecusabile" ; -- [DEXES] :: not to be refused; that cannot be refused; @@ -24098,7 +24092,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat irrefrenabilis_A = mkA "irrefrenabilis" "irrefrenabilis" "irrefrenabile" ; -- [EEXFE] :: uncontrollable; unquenchable; irregressibilis_A = mkA "irregressibilis" "irregressibilis" "irregressibile" ; -- [EEXFS] :: from which there is no return; irregularis_A = mkA "irregularis" "irregularis" "irregulare" ; -- [EXXDE] :: irregular; - irregularitas_F_N = mkN "irregularitas" "irregularitatis " feminine ; -- [FXXEE] :: irregularity; impediment (to reception/exercise of sacred orders); + irregularitas_F_N = mkN "irregularitas" "irregularitatis" feminine ; -- [FXXEE] :: irregularity; impediment (to reception/exercise of sacred orders); irreligatus_A = mkA "irreligatus" "irreligata" "irreligatum" ; -- [XXXEO] :: unfastened, unbound, unmoored; not fastened/bound/moored; irreligiose_Adv = mkAdv "irreligiose" ; -- [XEXFO] :: impiously; blasphemously; irreligiosus_A = mkA "irreligiosus" "irreligiosa" "irreligiosum" ; -- [XEXDO] :: irreligious; impious; @@ -24113,9 +24107,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; @@ -24124,30 +24118,30 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat irridicule_Adv = mkAdv "irridicule" ; -- [XXXDX] :: without wit; unwittingly; unamusingly; irrigo_V2 = mkV2 (mkV "irrigare") ; -- [XXXBO] :: water/irrigate; inundate/flood; refresh; wet/moisten; diffuse, shed (sensation); irriguus_A = mkA "irriguus" "irrigua" "irriguum" ; -- [XXXDX] :: watering; well watered; - irrimator_M_N = mkN "irrimator" "irrimatoris " masculine ; -- [XXXEO] :: one who submits to fellatio; vile person (L+S); (term of abuse); (rude); + irrimator_M_N = mkN "irrimator" "irrimatoris" masculine ; -- [XXXEO] :: one who submits to fellatio; vile person (L+S); (term of abuse); (rude); irrimo_V2 = mkV2 (mkV "irrimare") ; -- [XXXEO] :: force receptive male oral sex; treat in shameful manner; abuse; defile; (rude); - irrisio_F_N = mkN "irrisio" "irrisionis " feminine ; -- [XXXDS] :: derision; mockery; - irrisor_M_N = mkN "irrisor" "irrisoris " masculine ; -- [XXXDX] :: mocker, scoffer; - irrisus_M_N = mkN "irrisus" "irrisus " masculine ; -- [XXXDX] :: mockery; laughingstock; + irrisio_F_N = mkN "irrisio" "irrisionis" feminine ; -- [XXXDS] :: derision; mockery; + irrisor_M_N = mkN "irrisor" "irrisoris" masculine ; -- [XXXDX] :: mocker, scoffer; + irrisus_M_N = mkN "irrisus" "irrisus" masculine ; -- [XXXDX] :: mockery; laughingstock; irritabilis_A = mkA "irritabilis" "irritabilis" "irritabile" ; -- [XXXDX] :: easily provoked, sensitive; - irritamen_N_N = mkN "irritamen" "irritaminis " neuter ; -- [XXXDX] :: incentive, stimulus; + irritamen_N_N = mkN "irritamen" "irritaminis" neuter ; -- [XXXDX] :: incentive, stimulus; irritamentum_N_N = mkN "irritamentum" ; -- [XXXDX] :: incentive, stimulus; - irritatio_F_N = mkN "irritatio" "irritationis " feminine ; -- [XXXDX] :: incitement, provocation; - irritator_M_N = mkN "irritator" "irritatoris " masculine ; -- [XXXFO] :: instigator, prompter; provoker, inciter; - irritatrix_F_N = mkN "irritatrix" "irritatricis " feminine ; -- [EXXFS] :: inciter, she who incites; + irritatio_F_N = mkN "irritatio" "irritationis" feminine ; -- [XXXDX] :: incitement, provocation; + irritator_M_N = mkN "irritator" "irritatoris" masculine ; -- [XXXFO] :: instigator, prompter; provoker, inciter; + irritatrix_F_N = mkN "irritatrix" "irritatricis" feminine ; -- [EXXFS] :: inciter, she who incites; irrito_V = mkV "irritare" ; -- [XXXDX] :: excite; exasperate, provoke, aggravate, annoy, irritate; irritus_A = mkA "irritus" "irrita" "irritum" ; -- [XXXBX] :: ineffective, useless; invalid, void, of no effect; in vain; irrogo_V2 = mkV2 (mkV "irrogare") ; -- [XXXCO] :: impose/inflict (penalty/burden); demand/propose/call for (penalties/fines); irroro_V = mkV "irrorare" ; -- [XXXDX] :: wet with dew; besprinkle, water; rain on; - irrotulatio_F_N = mkN "irrotulatio" "irrotulationis " feminine ; -- [FLXFJ] :: enrollment; + 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); + 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; + 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; + 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; ischium_N_N = mkN "ischium" ; -- [XBXFS] :: hip joint; @@ -24173,30 +24167,30 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat itaque_Adv = mkAdv "itaque" ; -- [XXXAX] :: and so, accordingly; thus, therefore, consequently; 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); + 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); itero_V = mkV "iterare" ; -- [XXXDX] :: do a second time; repeat; renew, revise; iterum_Adv = mkAdv "iterum" ; -- [XXXAX] :: again; a second time; for the second time; ithyphallicus_A = mkA "ithyphallicus" "ithyphallica" "ithyphallicum" ; -- [XXXFS] :: ithyphallic; special-metric; itidem_Adv = mkAdv "itidem" ; -- [XXXCO] :: in the same manner/way, just so; likewise, similarly, also; - itiner_N_N = mkN "itiner" "itineris " neuter ; -- [BXXDX] :: journey; road; passage, path; march [route magnum => forced march]; + itiner_N_N = mkN "itiner" "itineris" neuter ; -- [BXXDX] :: journey; road; passage, path; march [route magnum => forced march]; itinerans_A = mkA "itinerans" "itinerantis"; -- [FXXFJ] :: itinerant; itinero_V = mkV "itinerare" ; -- [FXXEM] :: travel; go on eyre/judge's circuit; - itus_M_N = mkN "itus" "itus " masculine ; -- [XXXDX] :: going, gait; departure; - ixon_N_N = mkN "ixon" "ixi " neuter ; -- [EAXFW] :: ringtail; (bird); (female hen-harrier, formerly thought distinct species OED); + itus_M_N = mkN "itus" "itus" masculine ; -- [XXXDX] :: going, gait; departure; + 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; + 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; - jactatio_F_N = mkN "jactatio" "jactationis " feminine ; -- [XXXDX] :: shaking; boasting; showing off; - jactio_F_N = mkN "jactio" "jactionis " feminine ; -- [GXXET] :: throwing; (Erasmus); + jactatio_F_N = mkN "jactatio" "jactationis" feminine ; -- [XXXDX] :: shaking; boasting; showing off; + jactio_F_N = mkN "jactio" "jactionis" feminine ; -- [GXXET] :: throwing; (Erasmus); jactito_V2 = mkV2 (mkV "jactitare") ; -- [XXXEQ] :: mention; bandy; (Col); jacto_V = mkV "jactare" ; -- [XXXAX] :: throw away, throw out, throw, jerk about; disturb; boast, discuss; jactura_F_N = mkN "jactura" ; -- [XXXDX] :: loss; sacrifice; expense, cost; throwing away/overboard; - jactus_M_N = mkN "jactus" "jactus " masculine ; -- [XXXDX] :: throwing, hurling, cast, throw; - jaculator_M_N = mkN "jaculator" "jaculatoris " masculine ; -- [XXXDX] :: javelin thrower; + jactus_M_N = mkN "jactus" "jactus" masculine ; -- [XXXDX] :: throwing, hurling, cast, throw; + jaculator_M_N = mkN "jaculator" "jaculatoris" masculine ; -- [XXXDX] :: javelin thrower; jaculor_V = mkV "jaculari" ; -- [XXXDX] :: throw a javelin; hurl, cast; shoot at; jaculum_N_N = mkN "jaculum" ; -- [XXXBX] :: javelin; dart; jaculus_A = mkA "jaculus" "jacula" "jaculum" ; -- [XXXEC] :: thrown, darting; @@ -24205,15 +24199,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat jamjam_Adv = mkAdv "jamjam" ; -- [XXXCS] :: already; now; jamjamque_Adv = mkAdv "jamjamque" ; -- [XXXCS] :: just now, at this very moment; already, now, just; jampridem_Adv = mkAdv "jampridem" ; -- [XXXBO] :: long ago/since; well before now/then; for a long time now/past; - janitor_M_N = mkN "janitor" "janitoris " masculine ; -- [XXXDX] :: doorkeeper, porter; janitor; - janitrix_F_N = mkN "janitrix" "janitricis " feminine ; -- [XPXEC] :: poetress; + janitor_M_N = mkN "janitor" "janitoris" masculine ; -- [XXXDX] :: doorkeeper, porter; janitor; + janitrix_F_N = mkN "janitrix" "janitricis" feminine ; -- [XPXEC] :: poetress; janthinus_A = mkA "janthinus" "janthina" "janthinum" ; -- [XXXEC] :: violet-colored; janua_F_N = mkN "janua" ; -- [XXXAX] :: door, entrance; jasminum_N_N = mkN "jasminum" ; -- [GXXEK] :: jasmine; - jaspis_F_N = mkN "jaspis" "jaspidis " feminine ; -- [XXXDX] :: jasper; - jecur_N_N = mkN "jecur" "jecoris " neuter ; -- [XBXBO] :: liver; (food, medicine, drug, for divination, as seat of feelings); + jaspis_F_N = mkN "jaspis" "jaspidis" feminine ; -- [XXXDX] :: jasper; + jecur_N_N = mkN "jecur" "jecoris" neuter ; -- [XBXBO] :: liver; (food, medicine, drug, for divination, as seat of feelings); jecusculum_N_N = mkN "jecusculum" ; -- [XBXEO] :: little liver; - jejunitas_F_N = mkN "jejunitas" "jejunitatis " feminine ; -- [FXXEN] :: hunger, emptiness; meagerness, poverty; + 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; jejunus_A = mkA "jejunus" ; -- [XXXBX] :: fasting, abstinent, hungry; dry, barren, unproductive; scanty, meager; @@ -24222,7 +24216,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat jobeleus_M_N = mkN "jobeleus" ; -- [EEQEW] :: year of the jubilee among Jews; (slaves freed and property reverts); 50th year; jobileus_M_N = mkN "jobileus" ; -- [EEQEW] :: year of the jubilee among Jews; (slaves freed and property reverts); 50th year; jocabundus_A = mkA "jocabundus" "jocabunda" "jocabundum" ; -- [XXXEO] :: jesting, joking; making jokes; - jocatio_F_N = mkN "jocatio" "jocationis " feminine ; -- [XXXDX] :: joke, jest; + jocatio_F_N = mkN "jocatio" "jocationis" feminine ; -- [XXXDX] :: joke, jest; jocinerosus_A = mkA "jocinerosus" "jocinerosa" "jocinerosum" ; -- [EBXEP] :: liverish, with bad/ailing liver; joco_V = mkV "jocare" ; -- [BXXFS] :: joke, jest; say in jest; make merry; jocor_V = mkV "jocari" ; -- [DXXCS] :: joke, jest; say in jest; make merry; @@ -24231,45 +24225,45 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat jocularis_A = mkA "jocularis" "jocularis" "joculare" ; -- [XXXDX] :: laughable; joculor_V = mkV "joculari" ; -- [XXXDX] :: jest; joke; jocunde_Adv =mkAdv "jocunde" "jocundius" "jocundissime" ; -- [XXXCO] :: pleasantly; delightfully; pleasingly, gratifyingly, agreeably; - 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.); + 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; 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); + 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; 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; + 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; jubelaeus_M_N = mkN "jubelaeus" ; -- [DEQES] :: year of the jubilee among Jews; (slaves freed and property reverts); 50th year; jubeo_V2 = mkV2 (mkV "jubere") ; -- [XXXAO] :: order/tell/command/direct; enjoin/command; decree/enact; request/ask/bid; pray; jubilaeus_M_N = mkN "jubilaeus" ; -- [DEQES] :: year of the jubilee among Jews; (slaves freed and property reverts); 50th year; jubilarius_A = mkA "jubilarius" "jubilaria" "jubilarium" ; -- [DEQFE] :: jubilee-, of a jubilee; - jubilatio_F_N = mkN "jubilatio" "jubilationis " feminine ; -- [XXXEO] :: wild/loud shouting; whooping; jubilation/rejoicing (Ecc); gladness; retirement; - jubilatus_M_N = mkN "jubilatus" "jubilatus " masculine ; -- [XXXEO] :: wild/loud shouting; whooping; jubilation/rejoicing (Ecc); gladness; retirement; + jubilatio_F_N = mkN "jubilatio" "jubilationis" feminine ; -- [XXXEO] :: wild/loud shouting; whooping; jubilation/rejoicing (Ecc); gladness; retirement; + jubilatus_M_N = mkN "jubilatus" "jubilatus" masculine ; -- [XXXEO] :: wild/loud shouting; whooping; jubilation/rejoicing (Ecc); gladness; retirement; jubilo_V = mkV "jubilare" ; -- [XXXEO] :: shout/sing out/joyfully, rejoice; invoke with/let out shouts/whoops, halloo; jubilum_N_N = mkN "jubilum" ; -- [XXXEO] :: wild/joyful shout/cry; whoop of joy; halloo; shepherd's song (L+S); jubilus_M_N = mkN "jubilus" ; -- [XXXFE] :: joyful melody; jubo_V2 = mkV2 (mkV "jubere") ; -- [XXXCO] :: order/tell/command/direct; enjoin/command; decree/enact; request/ask/bid; pray; juctim_Adv = mkAdv "juctim" ; -- [XXXCO] :: together, side-by-side; in succession, consecutively; 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.); + 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; jucundus_A = mkA "jucundus" ; -- [XXXBO] :: pleasant/agreeable/delightful/pleasing (experience/person/senses); congenial; - judex_M_N = mkN "judex" "judicis " masculine ; -- [XLXAX] :: judge; juror; + 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; + judicatio_F_N = mkN "judicatio" "judicationis" feminine ; -- [XLXBO] :: judicial enquiry, act of deciding case; question/point at issue; opinion; judiciarius_A = mkA "judiciarius" "judiciaria" "judiciarium" ; -- [XXXCC] :: of a court of justice, judicial; judicium_N_N = mkN "judicium" ; -- [XLXAO] :: |judgment/sentence/verdict; judging; jurisdiction/authority; opinion/belief; judico_V = mkV "judicare" ; -- [XLXDX] :: judge, give judgment; sentence; conclude, decide; declare, appraise; juditium_N_N = mkN "juditium" ; -- [ELXAZ] :: |judgment/sentence/verdict; judging; jurisdiction/authority; opinion/belief; jugalis_A = mkA "jugalis" "jugalis" "jugale" ; -- [XXXDX] :: yoked together; nuptial; - juger_N_N = mkN "juger" "jugeris " neuter ; -- [XSXCO] :: jugerum (area 5/8 acre/length 240 Roman feet); acres/fields/broad expanse (pl.); + juger_N_N = mkN "juger" "jugeris" neuter ; -- [XSXCO] :: jugerum (area 5/8 acre/length 240 Roman feet); acres/fields/broad expanse (pl.); jugerum_N_N = mkN "jugerum" ; -- [XSXBO] :: jugerum (area 5/8 acre/length 240 Roman feet); acres/fields/broad expanse (pl.); jugis_A = mkA "jugis" "jugis" "juge" ; -- [XXXDX] :: continual; ever-flowing; jugiter_Adv = mkAdv "jugiter" ; -- [XXXCO] :: continually, unendingly; in unbroken succession; continuously; constantly (Bee); - juglans_F_N = mkN "juglans" "juglandis " feminine ; -- [XAXCO] :: walnut tree; walnut (nut); + 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; jugulans_1_N = mkN "jugulans" "jugulandis" feminine ; -- [XAXEO] :: walnut tree; walnut (nut); @@ -24278,7 +24272,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat jugulum_N_N = mkN "jugulum" ; -- [XXXDX] :: throat, neck; collarbone; jugulus_M_N = mkN "jugulus" ; -- [XXXDX] :: throat, neck; collarbone; jugum_N_N = mkN "jugum" ; -- [XXXAX] :: yoke; team, pair (of horses); ridge (mountain), summit, chain; - julis_F_N = mkN "julis" "julis " feminine ; -- [DAXNS] :: rock-fish (Pliny); + julis_F_N = mkN "julis" "julis" feminine ; -- [DAXNS] :: rock-fish (Pliny); julus_M_N = mkN "julus" ; -- [DAXNS] :: plant-down; woolly part of plant (Pliny); jumentum_N_N = mkN "jumentum" ; -- [XXXDX] :: mule; beast of burden; junceus_A = mkA "junceus" "juncea" "junceum" ; -- [XAXES] :: made of rushes; @@ -24286,9 +24280,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat junctura_F_N = mkN "junctura" ; -- [XXXDX] :: joint; association; 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; + 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); + 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; @@ -24297,29 +24291,29 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat jureconsultus_M_N = mkN "jureconsultus" ; -- [XLXEO] :: lawyer, jurist; (also two words); jureiuro_V = mkV "jureiurare" ; -- [XLXEC] :: swear an oath; jureperitus_A = mkA "jureperitus" "jureperita" "jureperitum" ; -- [XXXEC] :: skilled or experienced in the law; - jurgator_M_N = mkN "jurgator" "jurgatoris " masculine ; -- [EEXEE] :: quarrelsome person; + jurgator_M_N = mkN "jurgator" "jurgatoris" masculine ; -- [EEXEE] :: quarrelsome person; jurgatorus_A = mkA "jurgatorus" "jurgatora" "jurgatorum" ; -- [DXXFS] :: quarrelsome; - jurgatrix_F_N = mkN "jurgatrix" "jurgatricis " feminine ; -- [EEXES] :: quarrelsome woman; + jurgatrix_F_N = mkN "jurgatrix" "jurgatricis" feminine ; -- [EEXES] :: quarrelsome woman; jurgium_N_N = mkN "jurgium" ; -- [XXXCO] :: quarrel/dispute/strife; abuse/vituperation/invective; L:separation (man+wife); jurgo_V = mkV "jurgare" ; -- [XXXDX] :: quarrel, scold; juridicialis_A = mkA "juridicialis" "juridicialis" "juridiciale" ; -- [XXXEC] :: relating to right or justice; juridicus_A = mkA "juridicus" "juridica" "juridicum" ; -- [ELXES] :: judiciary; juridicus_M_N = mkN "juridicus" ; -- [ELXES] :: judge; administrator of justice; jurisconsultus_M_N = mkN "jurisconsultus" ; -- [XLXEO] :: lawyer, jurist; (also two words); - jurisdictio_F_N = mkN "jurisdictio" "jurisdictionis " feminine ; -- [XXXDX] :: jurisdiction, legal authority; administration of justice; + jurisdictio_F_N = mkN "jurisdictio" "jurisdictionis" feminine ; -- [XXXDX] :: jurisdiction, legal authority; administration of justice; jurisperitus_A = mkA "jurisperitus" "jurisperita" "jurisperitum" ; -- [XXXEC] :: skilled or experienced in the law; juro_V = mkV "jurare" ; -- [XXXAX] :: swear; call to witness; vow obedience to; [jus jurandum => oath]; conspire; jurulentus_A = mkA "jurulentus" "jurulenta" "jurulentum" ; -- [EXXES] :: juicy; not dried; - jus_N_N = mkN "jus" "juris " neuter ; -- [XLXAO] :: law; legal system; code; right; duty; justice; court; binding decision; oath; + jus_N_N = mkN "jus" "juris" neuter ; -- [XLXAO] :: law; legal system; code; right; duty; justice; court; binding decision; oath; juscellum_N_N = mkN "juscellum" ; -- [EXXFS] :: broth; soup; jusculum_N_N = mkN "jusculum" ; -- [XXXFS] :: broth; jusjurandum_N_N = mkN "jusjurandum" ; -- [FXXEV] :: oath; - jussio_F_N = mkN "jussio" "jussionis " feminine ; -- [XXXDO] :: order, command; magistrate's order; requisition; + jussio_F_N = mkN "jussio" "jussionis" feminine ; -- [XXXDO] :: order, command; magistrate's order; requisition; jussum_N_N = mkN "jussum" ; -- [XXXDX] :: order, command, decree, ordinance, law; physician's prescription; - jussus_M_N = mkN "jussus" "jussus " masculine ; -- [XXXDX] :: order, command, decree, ordinance; [only ABL S => by order/decree/command]; + jussus_M_N = mkN "jussus" "jussus" masculine ; -- [XXXDX] :: order, command, decree, ordinance; [only ABL S => by order/decree/command]; 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; + justificatio_F_N = mkN "justificatio" "justificationis" feminine ; -- [DXXCS] :: justification; due formality; doing right (Def); cleansing of injustice; 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); @@ -24327,7 +24321,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat justum_N_N = mkN "justum" ; -- [XXXDX] :: justice; what is fair/equitable/right/due/proper; funeral rites/offerings; 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; + 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; juvenalis_A = mkA "juvenalis" "juvenalis" "juvenale" ; -- [XXXDX] :: youthful, young; juvenaliter_Adv = mkAdv "juvenaliter" ; -- [XXXDX] :: youthfully, like a youth; @@ -24336,72 +24330,72 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - juvenis_M_N = mkN "juvenis" "juvenis " masculine ; -- [XXXDX] :: youth, young man/woman; + juvenis_F_N = mkN "juvenis" "juvenis" feminine ; -- [XXXDX] :: youth, young man/woman; + juvenis_M_N = mkN "juvenis" "juvenis" masculine ; -- [XXXDX] :: youth, young man/woman; juvenor_V = mkV "juvenari" ; -- [XXXEC] :: act like a youth, be impetuous; juventa_F_N = mkN "juventa" ; -- [XXXBX] :: youth; - 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; + 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; + juxtapositio_F_N = mkN "juxtapositio" "juxtapositionis" feminine ; -- [GXXEK] :: juxtaposition; + 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; + 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; kalatorius_A = mkA "kalatorius" "kalatoria" "kalatorium" ; -- [DEXFS] :: pertaining to a servant of a priest; kalendarium_N_N = mkN "kalendarium" ; -- [XXXDO] :: calendar; ledger/account book (for monthly interest payments); kalo_V2 = mkV2 (mkV "kalare") ; -- [BXXEO] :: announce, proclaim; summon, convoke, call forth/together; kalumnia_F_N = mkN "kalumnia" ; -- [XLXBO] :: sophistry, sham; false accusation/claim/statement/pretenses/objection; quibble; - kalumniator_M_N = mkN "kalumniator" "kalumniatoris " masculine ; -- [XLXCO] :: false accuser; pettifogger, chicaner; perverter of the law; carping critic; - kalumniatrix_F_N = mkN "kalumniatrix" "kalumniatricis " feminine ; -- [XLXFO] :: false accuser/claimant (female); + kalumniator_M_N = mkN "kalumniator" "kalumniatoris" masculine ; -- [XLXCO] :: false accuser; pettifogger, chicaner; perverter of the law; carping critic; + kalumniatrix_F_N = mkN "kalumniatrix" "kalumniatricis" feminine ; -- [XLXFO] :: false accuser/claimant (female); 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; + 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; 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; koppa_N = constN "koppa" neuter ; -- [XXXEO] :: archaic Greek letter koppa; - kum_V = constV "kum" ; -- [EEQFE] :: arise; (Aramaic); (Mark 5:41); + 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; 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; + 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; - labes_F_N = mkN "labes" "labis " feminine ; -- [XXXBO] :: landslip/subsidence; disaster/debacle; fault/defect/blot/stain/blemish/dishonor; + labes_F_N = mkN "labes" "labis" feminine ; -- [XXXBO] :: landslip/subsidence; disaster/debacle; fault/defect/blot/stain/blemish/dishonor; labia_F_N = mkN "labia" ; -- [XBXES] :: lip; (alt. form of labium); labiosus_A = mkA "labiosus" "labiosa" "labiosum" ; -- [XXXDX] :: with/having large lips; 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; + 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; laboriose_Adv = mkAdv "laboriose" ; -- [XXXDX] :: laboriously; laboriosus_A = mkA "laboriosus" "laboriosa" "laboriosum" ; -- [XXXDX] :: laborious, painstaking; laboro_V = mkV "laborare" ; -- [XXXAX] :: work, labor; produce, take pains; be troubled/sick/oppressed, be in distress; - labos_M_N = mkN "labos" "laboris " masculine ; -- [BXXAO] :: |preoccupation/concern; struggle/suffering/distress/hardship/stress; wear+tear; + labos_M_N = mkN "labos" "laboris" masculine ; -- [BXXAO] :: |preoccupation/concern; struggle/suffering/distress/hardship/stress; wear+tear; labrum_N_N = mkN "labrum" ; -- [XXXBO] :: lip (of person/vessel/ditch/river), rim, edge; labrusca_F_N = mkN "labrusca" ; -- [XXXDX] :: wild vine; labruscum_N_N = mkN "labruscum" ; -- [XXXDX] :: fruit if the wild vine, wild grape; labyrintheus_A = mkA "labyrintheus" "labyrinthea" "labyrintheum" ; -- [XXXDX] :: of a labyrinth; labyrinthus_M_N = mkN "labyrinthus" ; -- [XXXDX] :: labyrinth, maze; - lac_N_N = mkN "lac" "lactis " neuter ; -- [XXXBX] :: milk; milky juice of plants; spat/spawn (of oyster); + lac_N_N = mkN "lac" "lactis" neuter ; -- [XXXBX] :: milk; milky juice of plants; spat/spawn (of oyster); lacer_A = mkA "lacer" "lacera" "lacerum" ; -- [XXXDX] :: mangled, torn, rent, mutilated; maimed, dismembered; - laceratio_F_N = mkN "laceratio" "lacerationis " feminine ; -- [XXXDX] :: mangling; tearing; - laceratrix_F_N = mkN "laceratrix" "laceratricis " feminine ; -- [XXXFS] :: female lacerator/mangler/mutilator; cruel critic; draining life blood (Souter); + laceratio_F_N = mkN "laceratio" "lacerationis" feminine ; -- [XXXDX] :: mangling; tearing; + laceratrix_F_N = mkN "laceratrix" "laceratricis" feminine ; -- [XXXFS] :: female lacerator/mangler/mutilator; cruel critic; draining life blood (Souter); lacerna_F_N = mkN "lacerna" ; -- [XXXCO] :: open mantle/cloak; (fastened at the shoulder); lacero_V = mkV "lacerare" ; -- [XXXBX] :: mangle; slander, torment, harass; waste; destroy; cut; 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; + 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; @@ -24420,14 +24414,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat lacrimula_F_N = mkN "lacrimula" ; -- [XXXEC] :: little tear; lacruma_F_N = mkN "lacruma" ; -- [BXXFO] :: tear; exuded gum/sap; bit of lead; quicksilver from ore; weeping (pl.); dirge; lacryma_F_N = mkN "lacryma" ; -- [XXXFO] :: tear; exuded gum/sap; bit of lead; quicksilver from ore; weeping (pl.); dirge; - lact_N_N = mkN "lact" "lactis " neuter ; -- [XXXBO] :: milk; milky juice of plants; spat/spawn (of oyster); + lact_N_N = mkN "lact" "lactis" neuter ; -- [XXXBO] :: milk; milky juice of plants; spat/spawn (of oyster); lactans_A = mkA "lactans" "lactantis"; -- [XXXDX] :: giving milk, lactating; lactarium_N_N = mkN "lactarium" ; -- [GXXET] :: milk food; (Erasmus); - lactatio_F_N = mkN "lactatio" "lactationis " feminine ; -- [XXXDX] :: enticement, inducement; allure; - lacte_N_N = mkN "lacte" "lactis " neuter ; -- [BXXBO] :: milk; milky juice of plants; spat/spawn (of oyster); + lactatio_F_N = mkN "lactatio" "lactationis" feminine ; -- [XXXDX] :: enticement, inducement; allure; + lacte_N_N = mkN "lacte" "lactis" neuter ; -- [BXXBO] :: milk; milky juice of plants; spat/spawn (of oyster); 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; + 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; 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.); @@ -24436,18 +24430,18 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat lactuca_F_N = mkN "lactuca" ; -- [XXXDX] :: lettuce; laculatus_A = mkA "laculatus" "laculata" "laculatum" ; -- [GXXEK] :: girded; moated?; lacuna_F_N = mkN "lacuna" ; -- [XXXCO] :: pit/hollow/cavity/depression; pool; gap/deficiency; [~ legis => gap in the law]; - lacunar_N_N = mkN "lacunar" "lacunaris " neuter ; -- [XXXDX] :: paneled ceiling; + lacunar_N_N = mkN "lacunar" "lacunaris" neuter ; -- [XXXDX] :: paneled ceiling; lacuno_V = mkV "lacunare" ; -- [XXXEC] :: panel, work in panels, do paneling; 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; + 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; + 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; + 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; laetabundus_A = mkA "laetabundus" "laetabunda" "laetabundum" ; -- [EXXFS] :: greatly-rejoicing; laetans_A = mkA "laetans" "laetantis"; -- [XXXDX] :: rejoicing; - laetatio_F_N = mkN "laetatio" "laetationis " feminine ; -- [XXXES] :: rejoicing; joy; + laetatio_F_N = mkN "laetatio" "laetationis" feminine ; -- [XXXES] :: rejoicing; joy; laete_Adv =mkAdv "laete" "laetius" "laetissime" ; -- [XXXCO] :: joyfully, gladly; luxuriantly/lushly/abundantly; in rich/florid style; laeter_A = mkA "laeter" "laetra" "laetrum" ; -- [XXXFO] :: left; laetifico_V2 = mkV2 (mkV "laetificare") ; -- [XXXDO] :: fertilize, enrich, make fruitful (land); delight, cheer, gladden, rejoice; @@ -24463,27 +24457,27 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat laevus_A = mkA "laevus" "laeva" "laevum" ; -- [XXXBX] :: left, on the left hand; from the left; unpropitious, unfavorable, harmful; laganum_N_N = mkN "laganum" ; -- [XXXEC] :: cake; lagena_F_N = mkN "lagena" ; -- [XXXCO] :: flask/flagon; bottle w/narrow neck; big earthen jar w/handles; pitcher (Douay); - lageos_F_N = mkN "lageos" "lagei " feminine ; -- [XXXEC] :: Greek kind of vine; + lageos_F_N = mkN "lageos" "lagei" feminine ; -- [XXXEC] :: Greek kind of vine; lagoena_F_N = mkN "lagoena" ; -- [XXXCO] :: flask/flagon; bottle w/narrow neck; big earthen jar w/handles; pitcher (Douay); - lagois_F_N = mkN "lagois" "lagoidis " feminine ; -- [XAXEC] :: bird, perhaps heathcock/grouse; + lagois_F_N = mkN "lagois" "lagoidis" feminine ; -- [XAXEC] :: bird, perhaps heathcock/grouse; lagona_F_N = mkN "lagona" ; -- [XXXCO] :: flask, flagon, bottle with narrow neck; (esp. wine); pitcher (Douay); laguena_F_N = mkN "laguena" ; -- [EXXFW] :: flask, flagon, bottle with narrow neck; (esp. wine); pitcher (Douay); - laguenos_M_N = mkN "laguenos" "lagueni " masculine ; -- [EXXFP] :: flask, flagon, bottle with narrow neck; (esp. wine); pitcher (Douay); + laguenos_M_N = mkN "laguenos" "lagueni" masculine ; -- [EXXFP] :: flask, flagon, bottle with narrow neck; (esp. wine); pitcher (Douay); laguncula_F_N = mkN "laguncula" ; -- [XXXFO] :: small/little flask/bottle; (for wine); laicalis_A = mkA "laicalis" "laicalis" "laicale" ; -- [EEXCE] :: lay, common; of the laity/people; not priestly/in orders/consecrated; - laicalis_M_N = mkN "laicalis" "laicalis " masculine ; -- [EEXEE] :: layman, one not belonging to the priesthood/in orders; - laicatus_M_N = mkN "laicatus" "laicatus " masculine ; -- [EEXFE] :: lay state; religious condition of things not consecrated/priestly/in orders; + laicalis_M_N = mkN "laicalis" "laicalis" masculine ; -- [EEXEE] :: layman, one not belonging to the priesthood/in orders; + laicatus_M_N = mkN "laicatus" "laicatus" masculine ; -- [EEXFE] :: lay state; religious condition of things not consecrated/priestly/in orders; laiciso_V2 = mkV2 (mkV "laicisare") ; -- [FEXFE] :: laicize; make lay, reduce to lay state; secularize, make (office) lay tenable; 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; - lambo_V2 = mkV2 (mkV "lambere" "lambo" "lambui" "lambitus ") ; -- [DXXBS] :: lick; lap/lick/suck up, absorb; wash/bathe; surround; fondle/caress (L+S); fawn; + 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; lamentarius_A = mkA "lamentarius" "lamentaria" "lamentarium" ; -- [XXXFS] :: mournful; sorrowful; - lamentatio_F_N = mkN "lamentatio" "lamentationis " feminine ; -- [XXXDX] :: lamentation, wailing; + lamentatio_F_N = mkN "lamentatio" "lamentationis" feminine ; -- [XXXDX] :: lamentation, wailing; 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; @@ -24498,23 +24492,23 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + lampas_F_N = mkN "lampas" "lampadis" feminine ; -- [XXXBO] :: 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; 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; + 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; + 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; 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; 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; + 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; laniger_A = mkA "laniger" "lanigera" "lanigerum" ; -- [XXXDX] :: wool-bearing, fleecy; woolly; @@ -24528,9 +24522,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat lanterna_F_N = mkN "lanterna" ; -- [XXXDO] :: lantern; lamp (L+S); torch; lanternarius_M_N = mkN "lanternarius" ; -- [XXXEC] :: lantern-bearer; lantgravius_M_N = mkN "lantgravius" ; -- [FLXFM] :: landgrave (German); a superior Count; - lanugo_F_N = mkN "lanugo" "lanuginis " feminine ; -- [XXXDX] :: down, youth; - lanx_M_N = mkN "lanx" "lancis " masculine ; -- [XXXCO] :: plate, metal dish, tray, platter, charger; pan of a pair of scales; - laophoron_N_N = mkN "laophoron" "laophori " neuter ; -- [GXXEK] :: bus; + lanugo_F_N = mkN "lanugo" "lanuginis" feminine ; -- [XXXDX] :: down, youth; + lanx_M_N = mkN "lanx" "lancis" masculine ; -- [XXXCO] :: plate, metal dish, tray, platter, charger; pan of a pair of scales; + laophoron_N_N = mkN "laophoron" "laophori" neuter ; -- [GXXEK] :: bus; lapathium_N_N = mkN "lapathium" ; -- [BAXFS] :: sorrel; (archaic form of lapthum); lapathum_N_N = mkN "lapathum" ; -- [XXXDX] :: sorrel; lapathus_C_N = mkN "lapathus" ; -- [XXXDX] :: sorrel; @@ -24544,15 +24538,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat lapido_V = mkV "lapidare" ; -- [XXXDX] :: throw stones at; stone; [lapidat => it rains stones]; lapidosus_A = mkA "lapidosus" "lapidosa" "lapidosum" ; -- [XXXDX] :: stony, full of stones; gritty; lapillus_M_N = mkN "lapillus" ; -- [XXXDX] :: little stone, pebble; precious stone, gem, jewel; - lapis_F_N = mkN "lapis" "lapis " feminine ; -- [BXXDX] :: stone; milestone; jewel; - lapis_M_N = mkN "lapis" "lapidis " masculine ; -- [XXXAX] :: stone; milestone; jewel; + lapis_F_N = mkN "lapis" "lapis" feminine ; -- [BXXDX] :: stone; milestone; jewel; + lapis_M_N = mkN "lapis" "lapidis" masculine ; -- [XXXAX] :: stone; milestone; jewel; lappa_F_N = mkN "lappa" ; -- [XXXDX] :: bur; plants bearing burs; lapsana_F_N = mkN "lapsana" ; -- [XAXFS] :: charlock plant (Pliny); - lapsio_F_N = mkN "lapsio" "lapsionis " feminine ; -- [BXXFS] :: tendency; inclination; + lapsio_F_N = mkN "lapsio" "lapsionis" feminine ; -- [BXXFS] :: tendency; inclination; lapso_V = mkV "lapsare" ; -- [XXXDX] :: slip, Nose one's footing; - lapsus_M_N = mkN "lapsus" "lapsus " masculine ; -- [XXXBX] :: gliding, sliding; slipping and falling; - laquear_N_N = mkN "laquear" "laquearis " neuter ; -- [XXXCS] :: paneled/fretted ceiling (usu. pl.); rafter, ceiling, panel; - laqueare_N_N = mkN "laqueare" "laquearis " neuter ; -- [XXXCS] :: paneled/fretted ceiling (usu. pl.); rafter, ceiling, panel; + lapsus_M_N = mkN "lapsus" "lapsus" masculine ; -- [XXXBX] :: gliding, sliding; slipping and falling; + laquear_N_N = mkN "laquear" "laquearis" neuter ; -- [XXXCS] :: paneled/fretted ceiling (usu. pl.); rafter, ceiling, panel; + laqueare_N_N = mkN "laqueare" "laquearis" neuter ; -- [XXXCS] :: paneled/fretted ceiling (usu. pl.); rafter, ceiling, panel; laqueatus_A = mkA "laqueatus" "laqueata" "laqueatum" ; -- [XXXDX] :: paneled; laqueum_N_N = mkN "laqueum" ; -- [XXXDX] :: noose, halter; snare, trap; lasso; bond, tie; laqueus_M_N = mkN "laqueus" ; -- [XXXDX] :: noose; snare, trap; @@ -24561,20 +24555,20 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + largitio_F_N = mkN "largitio" "largitionis" feminine ; -- [XXXDX] :: generosity, lavish giving, largess; bribery; distribution of dole/land; largitionalis_A = mkA "largitionalis" "largitionalis" "largitionale" ; -- [DLXES] :: of/belonging to imperial treasury; - largitionalis_M_N = mkN "largitionalis" "largitionalis " masculine ; -- [DLXFS] :: treasury officer; official of imperial treasury; - largitor_M_N = mkN "largitor" "largitoris " masculine ; -- [XXXDX] :: liberal giver; briber; + largitionalis_M_N = mkN "largitionalis" "largitionalis" masculine ; -- [DLXFS] :: treasury officer; official of imperial treasury; + largitor_M_N = mkN "largitor" "largitoris" masculine ; -- [XXXDX] :: liberal giver; briber; largo_V = mkV "largare" ; -- [FXXFM] :: enlarge; largus_A = mkA "largus" "larga" "largum" ; -- [XPXBX] :: lavish; plentiful; bountiful; laridum_N_N = mkN "laridum" ; -- [XXXDX] :: bacon; - larix_F_N = mkN "larix" "laricis " feminine ; -- [XAXNO] :: larch, larch tree; - larix_M_N = mkN "larix" "laricis " masculine ; -- [XAXNO] :: larch, larch tree; - laros_M_N = mkN "laros" "lari " masculine ; -- [EAXFS] :: gull; ravenous sea bird (Vulgate); mew; common gull (Larus canus); + larix_F_N = mkN "larix" "laricis" feminine ; -- [XAXNO] :: larch, larch tree; + larix_M_N = mkN "larix" "laricis" masculine ; -- [XAXNO] :: larch, larch tree; + laros_M_N = mkN "laros" "lari" masculine ; -- [EAXFS] :: gull; ravenous sea bird (Vulgate); mew; common gull (Larus canus); larua_C_N = mkN "larua" ; -- [XXXFS] :: evil spirit/demon/devil; horrific mask; model skeleton; ghost/specter/hobgoblin; larualis_A = mkA "larualis" "larualis" "laruale" ; -- [XXXFS] :: specter-like; deathly; resembling demon/evil spirit; ghostly (L+S); larus_M_N = mkN "larus" ; -- [EAXFS] :: gull; ravenous sea bird (Vulgate); mew; common gull (Larus canus); @@ -24585,12 +24579,12 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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); + 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; lassesco_V = mkV "lassescare" ; -- [FXXEM] :: become tired, grow weary; - lassitudo_F_N = mkN "lassitudo" "lassitudinis " feminine ; -- [XXXDX] :: weariness, exhaustion, faintness; lassitude; + lassitudo_F_N = mkN "lassitudo" "lassitudinis" feminine ; -- [XXXDX] :: weariness, exhaustion, faintness; lassitude; lasso_V = mkV "lassare" ; -- [XXXDX] :: tire, weary, exhaust, wear out; lassulus_A = mkA "lassulus" "lassula" "lassulum" ; -- [XXXEC] :: rather tired; lassus_A = mkA "lassus" "lassa" "lassum" ; -- [XXXBX] :: tired, weary; languid; @@ -24602,9 +24596,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat latens_A = mkA "latens" "latentis"; -- [XXXCO] :: hidden, concealed; secret, not revealed; [in latenti => in secret]; latenter_Adv =mkAdv "latenter" "latentius" "latentissime" ; -- [XXXCO] :: secretly, privately; in concealment, without being seen/perceived; lateo_V = mkV "latere" ; -- [XXXAX] :: lie hidden, lurk; live a retired life, escape notice; - later_M_N = mkN "later" "lateris " masculine ; -- [XXXDX] :: brick; brickwork/bricks; block; bar/ingot; tile (L+S); [~ lictro => mercury]; + later_M_N = mkN "later" "lateris" masculine ; -- [XXXDX] :: brick; brickwork/bricks; block; bar/ingot; tile (L+S); [~ lictro => mercury]; lateralis_A = mkA "lateralis" "lateralis" "laterale" ; -- [XBXFO] :: lateral, of/on side of body; - lateramen_N_N = mkN "lateramen" "lateraminis " neuter ; -- [XXXEC] :: pottery; + lateramen_N_N = mkN "lateramen" "lateraminis" neuter ; -- [XXXEC] :: pottery; laterculus_M_N = mkN "laterculus" ; -- [XXXCO] :: small brick, tile; (brick-shaped) block; hard cake/biscuit; parcel of land; latericium_N_N = mkN "latericium" ; -- [XXXES] :: brickwork; latericius_A = mkA "latericius" "latericia" "latericium" ; -- [XXXDX] :: made of bricks; @@ -24612,45 +24606,45 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; laticlavius_M_N = mkN "laticlavius" ; -- [XXXES] :: senator; patrician; one who wears purple; latifolius_A = mkA "latifolius" "latifolia" "latifolium" ; -- [DAXNS] :: broad-leaved (Pliny); latifundium_N_N = mkN "latifundium" ; -- [XXXDX] :: large estate, farm; latinista_M_N = mkN "latinista" ; -- [GGXFK] :: Latinist; - latinitas_F_N = mkN "latinitas" "latinitatis " feminine ; -- [XGXES] :: Latinity; pure Latin style; L:Latin Law; + latinitas_F_N = mkN "latinitas" "latinitatis" feminine ; -- [XGXES] :: Latinity; pure Latin style; L:Latin Law; latinizo_V2 = mkV2 (mkV "latinizare") ; -- [DGXFS] :: translate into Latin; latino_V2 = mkV2 (mkV "latinare") ; -- [DGXFS] :: translate into Latin; - latio_F_N = mkN "latio" "lationis " feminine ; -- [XLXDS] :: |rendering (assistance/accounts); + latio_F_N = mkN "latio" "lationis" feminine ; -- [XLXDS] :: |rendering (assistance/accounts); latito_V = mkV "latitare" ; -- [XXXDX] :: keep hiding oneself, remain in hiding, be hidden; lie low; lurk; - latitudo_F_N = mkN "latitudo" "latitudinis " feminine ; -- [GXXEK] :: |latitude; + latitudo_F_N = mkN "latitudo" "latitudinis" feminine ; -- [GXXEK] :: |latitude; latomus_M_N = mkN "latomus" ; -- [EXXEP] :: quarryman; stonemason; hewer of stone (Douay); - lator_M_N = mkN "lator" "latoris " masculine ; -- [XXXDX] :: mover or proposer (of a law); - latrator_M_N = mkN "latrator" "latratoris " masculine ; -- [XXXDX] :: barker, one who barks; - latratus_M_N = mkN "latratus" "latratus " masculine ; -- [XXXCO] :: barking/baying (of dogs); shouting, bawling; roaring (of the sea); - latraus_M_N = mkN "latraus" "latraus " masculine ; -- [XXXDX] :: barking; + lator_M_N = mkN "lator" "latoris" masculine ; -- [XXXDX] :: mover or proposer (of a law); + latrator_M_N = mkN "latrator" "latratoris" masculine ; -- [XXXDX] :: barker, one who barks; + latratus_M_N = mkN "latratus" "latratus" masculine ; -- [XXXCO] :: barking/baying (of dogs); shouting, bawling; roaring (of the sea); + latraus_M_N = mkN "latraus" "latraus" masculine ; -- [XXXDX] :: barking; latreuticus_A = mkA "latreuticus" "latreutica" "latreuticum" ; -- [EEXEE] :: pertaining to the worship of God; latrina_F_N = mkN "latrina" ; -- [XXXDO] :: latrine, privy; washing-place, bathroom; latrinum_N_N = mkN "latrinum" ; -- [XXXEO] :: latrine, privy; washing-place, bathroom; - latro_M_N = mkN "latro" "latronis " masculine ; -- [XXXBX] :: robber, brigand, bandit; plunderer; + latro_M_N = mkN "latro" "latronis" masculine ; -- [XXXBX] :: robber, brigand, bandit; plunderer; latro_V = mkV "latrare" ; -- [XXXDX] :: bark, bark at; 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; latus_A = mkA "latus" ; -- [XXXAX] :: wide, broad; spacious, extensive; - latus_N_N = mkN "latus" "lateris " neuter ; -- [XXXAX] :: side; flank; + 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; - laudabilitas_F_N = mkN "laudabilitas" "laudabilitatis " feminine ; -- [ELXFS] :: excellency (a title of Comes Metallorum); - laudatio_F_N = mkN "laudatio" "laudationis " feminine ; -- [XXXDX] :: commendation, praising; eulogy; - laudator_M_N = mkN "laudator" "laudatoris " masculine ; -- [XXXDX] :: praiser, one who praises; eulogist; + laudabilitas_F_N = mkN "laudabilitas" "laudabilitatis" feminine ; -- [ELXFS] :: excellency (a title of Comes Metallorum); + laudatio_F_N = mkN "laudatio" "laudationis" feminine ; -- [XXXDX] :: commendation, praising; eulogy; + laudator_M_N = mkN "laudator" "laudatoris" masculine ; -- [XXXDX] :: praiser, one who praises; eulogist; laudo_V = mkV "laudare" ; -- [XXXAX] :: recommend; praise, approve, extol; call upon, name; deliver eulogy on; laura_F_N = mkN "laura" ; -- [EEEFE] :: monastery; settlement of anchorites in Egypt; laurea_F_N = mkN "laurea" ; -- [XXXCO] :: laurel/bay tree; laurel crown/wreath/branch; triumph, victory; honor (poets); laureata_F_N = mkN "laureata" ; -- [XXXFO] :: laurel wreathed dispatch announcing victory (pl.); - laureatio_F_N = mkN "laureatio" "laureationis " feminine ; -- [FXXFM] :: crowning w/laurel; - laureator_M_N = mkN "laureator" "laureatoris " masculine ; -- [FXXFM] :: giver of crowns; (of laurel); + laureatio_F_N = mkN "laureatio" "laureationis" feminine ; -- [FXXFM] :: crowning w/laurel; + laureator_M_N = mkN "laureator" "laureatoris" masculine ; -- [FXXFM] :: giver of crowns; (of laurel); laureatus_A = mkA "laureatus" "laureata" "laureatum" ; -- [XXXCO] :: wearing/adorned w/laurel; laureate; [w/litterae => dispatch w/news of victory]; laurentius_A = mkA "laurentius" "laurentia" "laurentium" ; -- [XXXFE] :: crowned w/laurel; laureola_F_N = mkN "laureola" ; -- [XXXEO] :: small laurel branch, sprig of bay; (announces victory); little laurel/victory; @@ -24660,8 +24654,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat laurifer_A = mkA "laurifer" "laurifera" "lauriferum" ; -- [XXXEO] :: bearing/producing laurels; decked/crowned w/laurels; laurel-wreathed/crowned; lauriger_A = mkA "lauriger" "laurigera" "laurigerum" ; -- [XXXDO] :: bearing/producing laurels; decked/crowned w/laurels; laurel-wreathed/crowned; laurinus_A = mkA "laurinus" "laurina" "laurinum" ; -- [XXXFO] :: laurel-, of laurel; (oil); - laurus_F_N = mkN "laurus" "laurus " feminine ; -- [XXXBO] :: laurel/bay tree/foliage/sprig/branch (medicine/magic); triumph/victory; honor; - laus_F_N = mkN "laus" "laudis " feminine ; -- [XXXAX] :: praise, approval, merit; glory; renown; + laurus_F_N = mkN "laurus" "laurus" feminine ; -- [XXXBO] :: laurel/bay tree/foliage/sprig/branch (medicine/magic); triumph/victory; honor; + laus_F_N = mkN "laus" "laudis" feminine ; -- [XXXAX] :: praise, approval, merit; glory; renown; laute_Adv =mkAdv "laute" "lautius" "lautissime" ; -- [XXXCO] :: elegantly, sumptuously, fashionably, finely; liberally; 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; @@ -24672,7 +24666,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat lavabrum_N_N = mkN "lavabrum" ; -- [XXXFO] :: bath-tub; lavacrum_N_N = mkN "lavacrum" ; -- [DXXCS] :: bath; lavandula_F_N = mkN "lavandula" ; -- [GXXEK] :: lavender; - lavatio_F_N = mkN "lavatio" "lavationis " feminine ; -- [XXXDS] :: washing, bathing; bathing apparatus; bathing place; + lavatio_F_N = mkN "lavatio" "lavationis" feminine ; -- [XXXDS] :: washing, bathing; bathing apparatus; bathing place; lavatorium_N_N = mkN "lavatorium" ; -- [GXXEK] :: washer; lavatrina_F_N = mkN "lavatrina" ; -- [XXXDS] :: latrine, privy; washing-place, bathroom; lavendulus_A = mkA "lavendulus" "lavendula" "lavendulum" ; -- [GXXEK] :: lavender-colored; @@ -24681,107 +24675,107 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat laxativum_N_N = mkN "laxativum" ; -- [GXXEK] :: laxative; 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; + laxitas_F_N = mkN "laxitas" "laxitatis" feminine ; -- [XXXDX] :: roominess, largeness; laxo_V = mkV "laxare" ; -- [XXXDX] :: loosen, slaken, relax, weaken; expand, open up, extend; 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; - lebes_M_N = mkN "lebes" "lebetis " masculine ; -- [XXXDL] :: copper cauldron, kettle; basin (washing); (prize in the Grecian games); + lebes_M_N = mkN "lebes" "lebetis" masculine ; -- [XXXDL] :: copper cauldron, kettle; basin (washing); (prize in the Grecian games); lectica_F_N = mkN "lectica" ; -- [XXXDX] :: litter; lecticarius_M_N = mkN "lecticarius" ; -- [XXXDX] :: litter-bearer; lecticula_F_N = mkN "lecticula" ; -- [XXXDX] :: small litter; - lectio_F_N = mkN "lectio" "lectionis " feminine ; -- [XXXBX] :: reading (aloud); perusal; choosing; lecture (Bee); narrative; - lectisterniator_M_N = mkN "lectisterniator" "lectisterniatoris " masculine ; -- [BXXFS] :: couch-arranger; + lectio_F_N = mkN "lectio" "lectionis" feminine ; -- [XXXBX] :: reading (aloud); perusal; choosing; lecture (Bee); narrative; + lectisterniator_M_N = mkN "lectisterniator" "lectisterniatoris" masculine ; -- [BXXFS] :: couch-arranger; lectisternium_N_N = mkN "lectisternium" ; -- [XXXDX] :: special feast of supplication to the gods, couches for them to recline upon; lectito_V = mkV "lectitare" ; -- [XXXDX] :: read repeatedly; be in the habit of reading; lectiuncula_F_N = mkN "lectiuncula" ; -- [XXXFO] :: short/light reading; E:short lesson; - lector_M_N = mkN "lector" "lectoris " masculine ; -- [XXXBX] :: reader; - lectrix_F_N = mkN "lectrix" "lectricis " feminine ; -- [XXXES] :: female reader; + 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; 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; + 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; - leg_N = constN "leg." feminine ; -- [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; + legalitas_F_N = mkN "legalitas" "legalitatis" feminine ; -- [FLXEM] :: legal status; law-worthiness; legatarius_M_N = mkN "legatarius" ; -- [XXXEC] :: legatee; - legatio_F_N = mkN "legatio" "legationis " feminine ; -- [XXXDX] :: embassy; member of an embassy; mission; - legator_M_N = mkN "legator" "legatoris " masculine ; -- [XLXFS] :: will-writer; testator; + legatio_F_N = mkN "legatio" "legationis" feminine ; -- [XXXDX] :: embassy; member of an embassy; mission; + legator_M_N = mkN "legator" "legatoris" masculine ; -- [XLXFS] :: will-writer; testator; legatum_N_N = mkN "legatum" ; -- [XXXDX] :: bequest, legacy; legatus_M_N = mkN "legatus" ; -- [XXXBX] :: envoy, ambassador, legate; commander of a legion; officer; deputy; legifer_A = mkA "legifer" "legifera" "legiferum" ; -- [XXXDX] :: law-giving; - legio_F_N = mkN "legio" "legionis " feminine ; -- [XXXAX] :: legion; army; + legio_F_N = mkN "legio" "legionis" feminine ; -- [XXXAX] :: legion; army; legionarius_A = mkA "legionarius" "legionaria" "legionarium" ; -- [XXXDX] :: legionary, of a legion; legirupa_M_N = mkN "legirupa" ; -- [XLXES] :: law-breaker; - legirupio_M_N = mkN "legirupio" "legirupionis " masculine ; -- [BLXFS] :: law-breaker; - legisdoctor_M_N = mkN "legisdoctor" "legisdoctoris " masculine ; -- [DLXES] :: doctor/teacher of the law; - legislatio_F_N = mkN "legislatio" "legislationis " feminine ; -- [EEXFS] :: giving of the law; + legirupio_M_N = mkN "legirupio" "legirupionis" masculine ; -- [BLXFS] :: law-breaker; + legisdoctor_M_N = mkN "legisdoctor" "legisdoctoris" masculine ; -- [DLXES] :: doctor/teacher of the law; + legislatio_F_N = mkN "legislatio" "legislationis" feminine ; -- [EEXFS] :: giving of the law; legislativus_A = mkA "legislativus" "legislativa" "legislativum" ; -- [GXXEK] :: legislative; - legislator_M_N = mkN "legislator" "legislatoris " masculine ; -- [XLXCO] :: legislator; law-giver; proposer of a law; + legislator_M_N = mkN "legislator" "legislatoris" masculine ; -- [XLXCO] :: legislator; law-giver; proposer of a law; legisperitus_M_N = mkN "legisperitus" ; -- [ELXFS] :: lawyer; one learned/expert in the law; - legitimatio_F_N = mkN "legitimatio" "legitimationis " feminine ; -- [GXXEK] :: recognition; - legitimitas_F_N = mkN "legitimitas" "legitimitatis " feminine ; -- [GXXEK] :: legitimacy; + legitimatio_F_N = mkN "legitimatio" "legitimationis" feminine ; -- [GXXEK] :: recognition; + legitimitas_F_N = mkN "legitimitas" "legitimitatis" feminine ; -- [GXXEK] :: legitimacy; legitimo_V = mkV "legitimare" ; -- [GXXEK] :: legitimize; 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; + 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; + 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; lema_Adv = mkAdv "lema" ; -- [XEQFE] :: why; (Aramaic); lema_Interj = ss "lema" ; -- [EEQFW] :: Eli Eli lama sabacthani/My God, my God why hast thou forsaken me Matthew 27:46; lembus_M_N = mkN "lembus" ; -- [XXXDX] :: small fast-sailing boat; lemma_Adv = mkAdv "lemma" ; -- [EEQFW] :: My God; [Heli Heli ~ sabacthani => My God, my God why hast thou forsaken me]; - lemma_N_N = mkN "lemma" "lemmatis " neuter ; -- [XXXEC] :: theme, title; epigram; + lemma_N_N = mkN "lemma" "lemmatis" neuter ; -- [XXXEC] :: theme, title; epigram; lemniscatus_A = mkA "lemniscatus" "lemniscata" "lemniscatum" ; -- [XXXEC] :: ribboned; lemniscus_M_N = mkN "lemniscus" ; -- [XXXEC] :: ribbon; - lemur_M_N = mkN "lemur" "lemuris " masculine ; -- [XXXDX] :: malevolent ghosts of the dead, specters, shades; + lemur_M_N = mkN "lemur" "lemuris" masculine ; -- [XXXDX] :: malevolent ghosts of the dead, specters, shades; lena_F_N = mkN "lena" ; -- [XXXDX] :: procuress; brothel-keeper; - lenimen_N_N = mkN "lenimen" "leniminis " neuter ; -- [XXXDX] :: alleviation, solace; + 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" "lenio" "lenivi" "lenitus ") ; -- [XXXBO] :: |mollify; explain away, gloss over; beguile, pass pleasantly; abate; + 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; + 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; - leno_M_N = mkN "leno" "lenonis " masculine ; -- [XXXDX] :: brothel keeper; bawd; procurer, pimp; panderer; + lenitudo_F_N = mkN "lenitudo" "lenitudinis" feminine ; -- [DXXFS] :: softness; mildness; calmness; + leno_M_N = mkN "leno" "lenonis" masculine ; -- [XXXDX] :: brothel keeper; bawd; procurer, pimp; panderer; lenocinium_N_N = mkN "lenocinium" ; -- [XXXDX] :: pandering; allurement, enticement; flattery; 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); + lens_F_N = mkN "lens" "lentis" feminine ; -- [GXXDX] :: lentil; lentil-plant; S:lens (Cal); lente_Adv = mkAdv "lente" ; -- [XXXDX] :: slowly; 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; + lentigo_F_N = mkN "lentigo" "lentiginis" feminine ; -- [XXXES] :: lentil-shaped spot; B:freckle; lentiscifer_A = mkA "lentiscifer" "lentiscifra" "lentiscifrum" ; -- [XPXFS] :: mastic-tree bearing; lentiscum_N_N = mkN "lentiscum" ; -- [XAXEC] :: mastic-tree; lentiscus_F_N = mkN "lentiscus" ; -- [XAXEC] :: mastic-tree; - lentitudo_F_N = mkN "lentitudo" "lentitudinis " feminine ; -- [XXXDX] :: slowness in action; apathy; + lentitudo_F_N = mkN "lentitudo" "lentitudinis" feminine ; -- [XXXDX] :: slowness in action; apathy; lento_V = mkV "lentare" ; -- [XXXDX] :: bend under strain; - lentor_M_N = mkN "lentor" "lentoris " masculine ; -- [XXXFS] :: pliancy, flexibility; toughness; viscosity; + lentor_M_N = mkN "lentor" "lentoris" masculine ; -- [XXXFS] :: pliancy, flexibility; toughness; viscosity; lentulus_A = mkA "lentulus" "lentula" "lentulum" ; -- [XXXEC] :: somewhat slow; 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; + 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); + 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); 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); lepidus_A = mkA "lepidus" ; -- [XXXDX] :: agreeable, charming, delightful, nice; amusing, witty (remarks/books); - lepor_M_N = mkN "lepor" "leporis " masculine ; -- [XXXBX] :: charm, pleasantness; + 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; leporinus_A = mkA "leporinus" "leporina" "leporinum" ; -- [XXXES] :: hare-; of a hare; - lepos_M_N = mkN "lepos" "leporis " masculine ; -- [XXXDX] :: charm, grace; wit; humor; + lepos_M_N = mkN "lepos" "leporis" masculine ; -- [XXXDX] :: charm, grace; wit; humor; lepra_F_N = mkN "lepra" ; -- [XBXDO] :: leprosy; various inflammatory skin diseases; psoriasis; (usu. pl.); leprosus_A = mkA "leprosus" "leprosa" "leprosum" ; -- [DBXES] :: leprous; inflicted with various inflammatory skin diseases/psoriasis; leprosus_C_N = mkN "leprosus" ; -- [FBXEB] :: leper; one inflicted with leprosy; - lepus_M_N = mkN "lepus" "leporis " masculine ; -- [XXXDX] :: hare; + lepus_M_N = mkN "lepus" "leporis" masculine ; -- [XXXDX] :: hare; lepusculus_M_N = mkN "lepusculus" ; -- [XXXEC] :: young hare; lesbianismus_M_N = mkN "lesbianismus" ; -- [XXXEE] :: lesbianism, tribadism; lesbius_A = mkA "lesbius" "lesbia" "lesbium" ; -- [XXXEE] :: lesbian, tribade; (woman who engages in sexual activity with other women); @@ -24795,13 +24789,13 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat leto_V2 = mkV2 (mkV "letare") ; -- [XXXFS] :: kill; letum_N_N = mkN "letum" ; -- [XXXCO] :: death; (usu. violent); Death (personified); manner of dying; P:destruction; leucacantha_F_N = mkN "leucacantha" ; -- [DAXNS] :: white thorn (Pliny); - leucacanthos_M_N = mkN "leucacanthos" "leucacanthi " masculine ; -- [DAXNS] :: white thorn (Pliny); + leucacanthos_M_N = mkN "leucacanthos" "leucacanthi" masculine ; -- [DAXNS] :: white thorn (Pliny); leucaemia_F_N = mkN "leucaemia" ; -- [GXXEK] :: leukemia; leucaspis_A = mkA "leucaspis" "leucaspidis"; -- [XWXEC] :: having white shields; leunculus_M_N = mkN "leunculus" ; -- [EAXES] :: small/little lion; (as statue/carving); - levamen_N_N = mkN "levamen" "levaminis " neuter ; -- [XXXAX] :: alleviation, solace; + 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); + levatio_F_N = mkN "levatio" "levationis" feminine ; -- [XXXDO] :: relief, mitigation, alleviation, lessening, diminishing; lifting (action); 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; @@ -24810,24 +24804,24 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat levigo_V2 = mkV2 (mkV "levigare") ; -- [XXXCO] :: smooth, make smooth, smooth out, remove roughness; pulverize; make small (L+S); 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; + 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; + 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; + lex_F_N = mkN "lex" "legis" feminine ; -- [XLXAX] :: law; motion, bill, statute; principle; condition; lexicalis_A = mkA "lexicalis" "lexicalis" "lexicale" ; -- [GGXEK] :: lexical; lexicographia_F_N = mkN "lexicographia" ; -- [GGXEK] :: lexicography; lexicographicus_A = mkA "lexicographicus" "lexicographica" "lexicographicum" ; -- [GGXEK] :: lexicographical; lexicographus_M_N = mkN "lexicographus" ; -- [GGXEK] :: lexicographer; - lexicon_N_N = mkN "lexicon" "lexici " neuter ; -- [GGXEK] :: lexicon; + lexicon_N_N = mkN "lexicon" "lexici" neuter ; -- [GGXEK] :: lexicon; liana_F_N = mkN "liana" ; -- [GXXEK] :: liana; thick twining vine; - libamen_N_N = mkN "libamen" "libaminis " neuter ; -- [XXXDX] :: drink-offering; first fruits; + libamen_N_N = mkN "libamen" "libaminis" neuter ; -- [XXXDX] :: drink-offering; first fruits; libamentum_N_N = mkN "libamentum" ; -- [XXXEC] :: libation, offering to the gods; libamenum_N_N = mkN "libamenum" ; -- [XXXDX] :: drink-offering; first fruits; - libanotis_F_N = mkN "libanotis" "libanotidis " feminine ; -- [DAXNS] :: rosemary (Pliny); - libatio_F_N = mkN "libatio" "libationis " feminine ; -- [XEXEO] :: libation, sacrificial offering (esp. of drink); + libanotis_F_N = mkN "libanotis" "libanotidis" feminine ; -- [DAXNS] :: rosemary (Pliny); + libatio_F_N = mkN "libatio" "libationis" feminine ; -- [XEXEO] :: libation, sacrificial offering (esp. of drink); libella_F_N = mkN "libella" ; -- [XXXDX] :: small silver coin, plumbline; level; libellus_M_N = mkN "libellus" ; -- [XXXAX] :: little/small book; memorial; petition; pamphlet, defamatory publication; libens_A = mkA "libens" "libentis"; -- [XXXAO] :: willing, cheerful; glad, pleased; @@ -24836,14 +24830,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - liberalitas_F_N = mkN "liberalitas" "liberalitatis " feminine ; -- [XXXBX] :: courtesy, kindness, nobleness; generosity; frankness; gift; + liberalitas_F_N = mkN "liberalitas" "liberalitatis" feminine ; -- [XXXBX] :: courtesy, kindness, nobleness; generosity; frankness; gift; liberaliter_Adv = mkAdv "liberaliter" ; -- [XXXDX] :: graciously, courteously; liberally; - liberatio_F_N = mkN "liberatio" "liberationis " feminine ; -- [XLXCO] :: liberation/setting free, release/deliverance (from) (debt); acquittal/discharge; - liberator_M_N = mkN "liberator" "liberatoris " masculine ; -- [XXXDX] :: liberator, deliverer; savior; + liberatio_F_N = mkN "liberatio" "liberationis" feminine ; -- [XLXCO] :: liberation/setting free, release/deliverance (from) (debt); acquittal/discharge; + liberator_M_N = mkN "liberator" "liberatoris" masculine ; -- [XXXDX] :: liberator, deliverer; savior; libere_Adv = mkAdv "libere" ; -- [XXXDX] :: freely; frankly; shamelessly; libero_V = mkV "liberare" ; -- [XXXAX] :: free; acquit, absolve; manumit; liberate, release; liberta_F_N = mkN "liberta" ; -- [XXXCO] :: freedwoman; ex-slave; - libertas_F_N = mkN "libertas" "libertatis " feminine ; -- [XXXAX] :: freedom, liberty; frankness of speech, outspokenness; + libertas_F_N = mkN "libertas" "libertatis" feminine ; -- [XXXAX] :: freedom, liberty; frankness of speech, outspokenness; libertina_F_N = mkN "libertina" ; -- [XXXDX] :: freedman; libertinus_A = mkA "libertinus" "libertina" "libertinum" ; -- [XXXDX] :: of a freedman; libertinus_M_N = mkN "libertinus" ; -- [XXXDX] :: freedman; @@ -24852,22 +24846,22 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat libet_V0 = mkV0 "libet" ; -- [XXXBX] :: it pleases, is pleasing/agreeable; (w/qui whatever, whichever, no matter); libidinor_V = mkV "libidinari" ; -- [XXXEO] :: gratify/indulge lust/passion; libidinosus_A = mkA "libidinosus" "libidinosa" "libidinosum" ; -- [XXXDX] :: lustful, wanton; capricious; - libido_F_N = mkN "libido" "libidinis " feminine ; -- [XXXAO] :: desire/longing/wish/fancy; lust, wantonness; will/pleasure; passion/lusts (pl.); + libido_F_N = mkN "libido" "libidinis" feminine ; -- [XXXAO] :: desire/longing/wish/fancy; lust, wantonness; will/pleasure; passion/lusts (pl.); libitinarius_M_N = mkN "libitinarius" ; -- [XXXDX] :: undertaker; libo_V = mkV "libare" ; -- [XXXBX] :: nibble, sip; pour in offering/a libation; impair; graze, touch, skim (over); libra_F_N = mkN "libra" ; -- [XXXBX] :: scales, balance; level; Roman pound, 12 unciae/ounces; (3/4 pound avoirdupois); - libramen_N_N = mkN "libramen" "libraminis " neuter ; -- [FXXEN] :: poise, balance; + libramen_N_N = mkN "libramen" "libraminis" neuter ; -- [FXXEN] :: poise, balance; libramentum_N_N = mkN "libramentum" ; -- [XXXDX] :: weight, counterpoise; libraria_F_N = mkN "libraria" ; -- [GXXEK] :: bookstore; librariolus_M_N = mkN "librariolus" ; -- [XXXES] :: copyist; scribe; librarium_N_N = mkN "librarium" ; -- [GXXEK] :: library (piece of furniture); librarius_A = mkA "librarius" "libraria" "librarium" ; -- [XXXDX] :: of books; librarius_M_N = mkN "librarius" ; -- [GXXEK] :: bookseller; - libratio_F_N = mkN "libratio" "librationis " feminine ; -- [XXXES] :: level-making; horizontal position; hurling off; + libratio_F_N = mkN "libratio" "librationis" feminine ; -- [XXXES] :: level-making; horizontal position; hurling off; libricola_M_N = mkN "libricola" ; -- [GXXEK] :: bibliophile; librilis_A = mkA "librilis" "librilis" "librile" ; -- [XXXDX] :: weighing a (Roman) pound; - libripens_M_N = mkN "libripens" "libripentis " masculine ; -- [XXXDO] :: one who holds the balance (in ceremony of mancipium), man in charge of scales; - libritor_M_N = mkN "libritor" "libritoris " masculine ; -- [XWXEC] :: artilleryman; + libripens_M_N = mkN "libripens" "libripentis" masculine ; -- [XXXDO] :: one who holds the balance (in ceremony of mancipium), man in charge of scales; + libritor_M_N = mkN "libritor" "libritoris" masculine ; -- [XWXEC] :: artilleryman; libro_V = mkV "librare" ; -- [XXXDX] :: balance,swing; hurl; libum_N_N = mkN "libum" ; -- [XXXDX] :: cake/pancake; consecrated cake (to gods on 50 birthday); liquid/drink offering; liburna_F_N = mkN "liburna" ; -- [XWKCO] :: light, fast-sailing warship; (Liburian/Illyrian/Croatian galley/brigantine); @@ -24881,37 +24875,37 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat liceor_V = mkV "liceri" ; -- [XXXCO] :: bid on/for, bid, bid at auction; make a bid; 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; + 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; liciatorium_N_N = mkN "liciatorium" ; -- [EXXFS] :: weaver's beam; - licitatio_F_N = mkN "licitatio" "licitationis " feminine ; -- [XXXCO] :: bidding, offering of a price; + licitatio_F_N = mkN "licitatio" "licitationis" feminine ; -- [XXXCO] :: bidding, offering of a price; licitus_A = mkA "licitus" "licita" "licitum" ; -- [XXXDX] :: lawful, permitted; licium_N_N = mkN "licium" ; -- [XXXDX] :: thread; leash or heddle (in weaving); - lictor_M_N = mkN "lictor" "lictoris " masculine ; -- [XXXDX] :: lictor, an attendant upon a magistrate; - lien_M_N = mkN "lien" "lienis " masculine ; -- [XBXDO] :: spleen; diseased/enlarged condition of the spleen; - lienis_M_N = mkN "lienis" "lienis " masculine ; -- [XBXEO] :: spleen; diseased/enlarged condition of the spleen; + lictor_M_N = mkN "lictor" "lictoris" masculine ; -- [XXXDX] :: lictor, an attendant upon a magistrate; + lien_M_N = mkN "lien" "lienis" masculine ; -- [XBXDO] :: spleen; diseased/enlarged condition of the spleen; + lienis_M_N = mkN "lienis" "lienis" masculine ; -- [XBXEO] :: spleen; diseased/enlarged condition of the spleen; lienosus_A = mkA "lienosus" "lienosa" "lienosum" ; -- [XBXDO] :: affected by a disorder of the spleen; lienosus_M_N = mkN "lienosus" ; -- [XBXEO] :: one suffering from a disorder of the spleen; liga_F_N = mkN "liga" ; -- [FXXFM] :: league; confederacy; - ligamen_N_N = mkN "ligamen" "ligaminis " neuter ; -- [XXXDX] :: bandage; string, fastening, tie; nerve or ligament; + ligamen_N_N = mkN "ligamen" "ligaminis" neuter ; -- [XXXDX] :: bandage; string, fastening, tie; nerve or ligament; ligamentum_N_N = mkN "ligamentum" ; -- [XXXEC] :: bandage; - ligator_M_N = mkN "ligator" "ligatoris " masculine ; -- [GXXEK] :: bookbinder; + ligator_M_N = mkN "ligator" "ligatoris" masculine ; -- [GXXEK] :: bookbinder; ligatura_F_N = mkN "ligatura" ; -- [GXXEK] :: bookbinding; ligia_F_N = mkN "ligia" ; -- [FLXFM] :: confederacy; league; lignarius_M_N = mkN "lignarius" ; -- [XXXDX] :: carpenter; timber merchant; - lignatio_F_N = mkN "lignatio" "lignationis " feminine ; -- [XXXDX] :: getting/collecting firewood; - lignator_M_N = mkN "lignator" "lignatoris " masculine ; -- [XXXDX] :: one who collects firewood; + lignatio_F_N = mkN "lignatio" "lignationis" feminine ; -- [XXXDX] :: getting/collecting firewood; + lignator_M_N = mkN "lignator" "lignatoris" masculine ; -- [XXXDX] :: one who collects firewood; ligneolus_A = mkA "ligneolus" "ligneola" "ligneolum" ; -- [XXXEC] :: wooden; ligneus_A = mkA "ligneus" "lignea" "ligneum" ; -- [XXXCO] :: wooden, wood-; woody, like wood, tough/stringy; [soleae ~ => worn by parricide]; lignor_V = mkV "lignari" ; -- [XXXDX] :: collect firewood; lignosus_A = mkA "lignosus" "lignosa" "lignosum" ; -- [XXXFS] :: wood-like; having kernel (Pliny); lignum_N_N = mkN "lignum" ; -- [FEXDE] :: ||the Cross; staff, cudgel, club; gallows/stocks; [~ pedaneum => altar step]; - ligo_M_N = mkN "ligo" "ligonis " masculine ; -- [XXXDX] :: mattock; hoe; + 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; + 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; + 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; @@ -24920,20 +24914,20 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat limatulus_A = mkA "limatulus" "limatula" "limatulum" ; -- [XXXEC] :: rather polished, refined; limatura_F_N = mkN "limatura" ; -- [FXXEK] :: filing; 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; + 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; - limen_N_N = mkN "limen" "liminis " neuter ; -- [XXXAX] :: threshold, entrance; lintel; house; - limes_M_N = mkN "limes" "limitis " masculine ; -- [XXXBX] :: path, track; limit; strip of uncultivated ground marking boundary; + limen_N_N = mkN "limen" "liminis" neuter ; -- [XXXAX] :: threshold, entrance; lintel; house; + limes_M_N = mkN "limes" "limitis" masculine ; -- [XXXBX] :: path, track; limit; strip of uncultivated ground marking boundary; limino_V2 = mkV2 (mkV "liminare") ; -- [XXXIO] :: illuminate, light up; limitaneus_A = mkA "limitaneus" "limitanea" "limitaneum" ; -- [EXXES] :: border-situated; limitaris_A = mkA "limitaris" "limitaris" "limitare" ; -- [EXXES] :: bordering; - limitatio_F_N = mkN "limitatio" "limitationis " feminine ; -- [EXXES] :: fixing; determination; + limitatio_F_N = mkN "limitatio" "limitationis" feminine ; -- [EXXES] :: fixing; determination; limito_V = mkV "limitare" ; -- [EXXEZ] :: bound; limit (Nelson); limitotrophus_A = mkA "limitotrophus" "limitotropha" "limitotrophum" ; -- [XXXFS] :: neighboring, bordering; [~ agri => lands to support/supply frontier troops]; limitrophis_A = mkA "limitrophis" "limitrophis" "limitrophe" ; -- [EXXEE] :: neighboring, bordering; [~ agri => lands to support/supply frontier troops]; limitrophus_A = mkA "limitrophus" "limitropha" "limitrophum" ; -- [XXXEE] :: neighboring, bordering; [~ agri => lands to support/supply frontier troops]; - limma_N_N = mkN "limma" "limmatis " neuter ; -- [XDXFO] :: semi-tone; + limma_N_N = mkN "limma" "limmatis" neuter ; -- [XDXFO] :: semi-tone; 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; @@ -24947,7 +24941,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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; @@ -24957,16 +24951,16 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; + linteo_M_N = mkN "linteo" "linteonis" masculine ; -- [BTXFS] :: linen-weaver; linteolum_N_N = mkN "linteolum" ; -- [XBXDO] :: piece/strip of linen; (esp. as used in medicine); bandage; - linter_F_N = mkN "linter" "lintris " feminine ; -- [XXXDX] :: boat, skiff, small light boat; trough, vat; - linter_M_N = mkN "linter" "lintris " masculine ; -- [XXXDX] :: boat, skiff, small light boat; trough, vat; + linter_F_N = mkN "linter" "lintris" feminine ; -- [XXXDX] :: boat, skiff, small light boat; trough, vat; + linter_M_N = mkN "linter" "lintris" masculine ; -- [XXXDX] :: boat, skiff, small light boat; trough, vat; linteum_N_N = mkN "linteum" ; -- [XXXDX] :: linen cloth; linen; sail; napkin; awning; bedsheet (Cal); linteus_A = mkA "linteus" "lintea" "linteum" ; -- [XXXDX] :: linen-, of linen; lintriculus_M_N = mkN "lintriculus" ; -- [XXXFS] :: small boat; @@ -24975,22 +24969,22 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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; + 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; 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.]; 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_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; + 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; + litatio_F_N = mkN "litatio" "litationis" feminine ; -- [BEXFS] :: favorable sacrifice; litera_F_N = mkN "litera" ; -- [XXXDX] :: letter (alphabet); (pl.) letter, epistle; literature, books, records, account; literula_F_N = mkN "literula" ; -- [XXXCO] :: ||literary compositions/activities (pl.); erudition, knowledge of books; literum_N_N = mkN "literum" ; -- [FEXDM] :: litter; bedding; @@ -24998,7 +24992,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat lithographia_F_N = mkN "lithographia" ; -- [GXXEK] :: lithograph; lithostrotum_N_N = mkN "lithostrotum" ; -- [XXXFS] :: mosaic; lithostrotus_A = mkA "lithostrotus" "lithostrota" "lithostrotum" ; -- [XXXFS] :: inlaid with stones; - litigator_M_N = mkN "litigator" "litigatoris " masculine ; -- [XLXCO] :: litigant, one engaged in a lawsuit; + litigator_M_N = mkN "litigator" "litigatoris" masculine ; -- [XLXCO] :: litigant, one engaged in a lawsuit; litigiosus_A = mkA "litigiosus" "litigiosa" "litigiosum" ; -- [XXXDX] :: quarrelsome, contentions; litigo_V = mkV "litigare" ; -- [XXXDX] :: quarrel; go to law; lito_V = mkV "litare" ; -- [XXXDX] :: obtain/give favorable omens from sacrifice; make (acceptable) offering (to); @@ -25010,26 +25004,26 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat litteralis_A = mkA "litteralis" "litteralis" "litterale" ; -- [DXXES] :: belonging/pertaining to writing/letters/books; epistolary; of reading/writing; litterarius_A = mkA "litterarius" "litteraria" "litterarium" ; -- [XXXDX] :: literary; pertaining to writing; [ludus litterarius => an elementary school]; litterate_Adv =mkAdv "litterate" "litteratius" "litteratissime" ; -- [XXXDS] :: |in cultivated/erudite manner; learnedly/scientifically/elegantly/cleverly; - litteratio_F_N = mkN "litteratio" "litterationis " feminine ; -- [XGXFO] :: instruction in reading and writing; study of reading/writing/languages (Ecc); - litterator_M_N = mkN "litterator" "litteratoris " masculine ; -- [XGXDO] :: elementary schoolmaster, one who teaches the elements; (often disparagingly); + litteratio_F_N = mkN "litteratio" "litterationis" feminine ; -- [XGXFO] :: instruction in reading and writing; study of reading/writing/languages (Ecc); + litterator_M_N = mkN "litterator" "litteratoris" masculine ; -- [XGXDO] :: elementary schoolmaster, one who teaches the elements; (often disparagingly); litteratorius_A = mkA "litteratorius" "litteratoria" "litteratorium" ; -- [XGXFS] :: grammatical; litteratura_F_N = mkN "litteratura" ; -- [XGXBO] :: |writing, literature; scholarship, what is learned from books, book-learning; litteratus_A = mkA "litteratus" "litterata" "litteratum" ; -- [XXXCO] :: |marked/branded/tattooed w/letters (of slaves, as sign of disgrace); litterosus_A = mkA "litterosus" "litterosa" "litterosum" ; -- [XXXFO] :: learned, cultured, erudite, well versed in literature; litterula_F_N = mkN "litterula" ; -- [XXXCO] :: ||literary compositions/activities (pl.); erudition, knowledge of books; - littus_N_N = mkN "littus" "littoris " neuter ; -- [XXXBO] :: shore, seashore, coast, strand; river bank; beach, landing place; + littus_N_N = mkN "littus" "littoris" neuter ; -- [XXXBO] :: shore, seashore, coast, strand; river bank; beach, landing place; litura_F_N = mkN "litura" ; -- [XXXDX] :: correction; erasure; blot, smear; liturarium_N_N = mkN "liturarium" ; -- [FXXEK] :: rough draft; liturgia_F_N = mkN "liturgia" ; -- [EEXDP] :: liturgy; liturgicus_A = mkA "liturgicus" "liturgica" "liturgicum" ; -- [FXXDE] :: of the liturgy; liturgic (Vatican); - litus_N_N = mkN "litus" "litoris " neuter ; -- [XXXEO] :: shore, seashore, coast, strand; river bank; beach, landing place; + litus_N_N = mkN "litus" "litoris" neuter ; -- [XXXEO] :: shore, seashore, coast, strand; river bank; beach, landing place; 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; + livor_M_N = mkN "livor" "livoris" masculine ; -- [XXXDX] :: bluish discoloration (produced by bruising, etc); envy, spite; lixa_M_N = mkN "lixa" ; -- [XXXDX] :: camp-follower; lixivus_A = mkA "lixivus" "lixiva" "lixivum" ; -- [XAXES] :: made into lye; pressed grape must; lo_Interj = ss "lo" ; -- [EXXFP] :: Lo!; (magic word to cure bite of mad dog); @@ -25039,8 +25033,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat localis_A = mkA "localis" "localis" "locale" ; -- [XXXFO] :: local; of/relating to place; localiter_Adv = mkAdv "localiter" ; -- [XXXFS] :: locally; locarium_N_N = mkN "locarium" ; -- [FXXEK] :: rent; - locatio_F_N = mkN "locatio" "locationis " feminine ; -- [XXXDX] :: renting, hiring out or letting (of property); - locator_M_N = mkN "locator" "locatoris " masculine ; -- [XXXCO] :: lessor, who lets out property; one who gives a contract; jobmaster (Erasmus); + locatio_F_N = mkN "locatio" "locationis" feminine ; -- [XXXDX] :: renting, hiring out or letting (of property); + locator_M_N = mkN "locator" "locatoris" masculine ; -- [XXXCO] :: lessor, who lets out property; one who gives a contract; jobmaster (Erasmus); locatorius_A = mkA "locatorius" "locatoria" "locatorium" ; -- [XXXEC] :: concerned with leases; locellus_M_N = mkN "locellus" ; -- [XXXEO] :: casket, small box; loco_Adv = mkAdv "loco" ; -- [XXXES] :: for, in the place of, instead of; @@ -25050,54 +25044,54 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat loculosus_A = mkA "loculosus" "loculosa" "loculosum" ; -- [XXXNO] :: compartmented, divided into compartments/cells; loculus_M_N = mkN "loculus" ; -- [XXXCO] :: |compartmented box (pl.), money-box; school satchel, case for writing material; locum_N_N = mkN "locum" ; -- [XXXCS] :: |region, places (pl.); places connected with each other; - locumtenens_M_N = mkN "locumtenens" "locumtenentis " masculine ; -- [GWXEK] :: lieutenant; + locumtenens_M_N = mkN "locumtenens" "locumtenentis" masculine ; -- [GWXEK] :: lieutenant; locuples_A = mkA "locuples" "locupletis"; -- [XXXDX] :: substantial, opulent, wealthy; rich in lands; rich, richly provided; trusty; locupleto_V = mkV "locupletare" ; -- [XXXDX] :: enrich; locus_M_N = mkN "locus" ; -- [XBXCO] :: |part of the body; female genitals (pl.); grounds of proof; locusta_F_N = mkN "locusta" ; -- [XAXCO] :: locust; crustacean, lobster (w/marina/maris); - locutio_F_N = mkN "locutio" "locutionis " feminine ; -- [XXXCO] :: speech, act of speaking; style of speaking; phrase/expression; pronunciation; - lodix_F_N = mkN "lodix" "lodicis " feminine ; -- [XXXEC] :: blanket, rug; + locutio_F_N = mkN "locutio" "locutionis" feminine ; -- [XXXCO] :: speech, act of speaking; style of speaking; phrase/expression; pronunciation; + lodix_F_N = mkN "lodix" "lodicis" feminine ; -- [XXXEC] :: blanket, rug; logarithmus_M_N = mkN "logarithmus" ; -- [GSXEK] :: logarithm; logicaliter_Adv = mkAdv "logicaliter" ; -- [FXXEM] :: logically; logicum_N_N = mkN "logicum" ; -- [XSXEC] :: logic (pl.); logicus_A = mkA "logicus" "logica" "logicum" ; -- [XXXEC] :: logical; - loginquitas_F_N = mkN "loginquitas" "loginquitatis " feminine ; -- [FXXEN] :: distance, remoteness, isolation (Nelson); time-length (Redmond); - logion_N_N = mkN "logion" "logii " neuter ; -- [EEQEP] :: breastplate (oracular); priestly breastplate/pectoral; (of Jewish high priest); + loginquitas_F_N = mkN "loginquitas" "loginquitatis" feminine ; -- [FXXEN] :: distance, remoteness, isolation (Nelson); time-length (Redmond); + logion_N_N = mkN "logion" "logii" neuter ; -- [EEQEP] :: breastplate (oracular); priestly breastplate/pectoral; (of Jewish high priest); logium_N_N = mkN "logium" ; -- [EEQEP] :: breastplate (oracular); priestly breastplate/pectoral; (of Jewish high priest); - logos_M_N = mkN "logos" "logi " masculine ; -- [XXXDX] :: word; mere words (pl.), joke, jest, bon mot; + logos_M_N = mkN "logos" "logi" masculine ; -- [XXXDX] :: word; mere words (pl.), joke, jest, bon mot; logus_M_N = mkN "logus" ; -- [XXXDX] :: word; mere words (pl.), joke, jest, bon mot; loliarius_A = mkA "loliarius" "loliaria" "loliarium" ; -- [XAXES] :: of darnel; lolium_N_N = mkN "lolium" ; -- [XXXDX] :: darnel/lolium; (grass found as weed in grain); (mistakenly) cockle, tares; - lolligo_F_N = mkN "lolligo" "lolliginis " feminine ; -- [XAXEC] :: cuttle-fish; + lolligo_F_N = mkN "lolligo" "lolliginis" feminine ; -- [XAXEC] :: cuttle-fish; lomentum_N_N = mkN "lomentum" ; -- [GXXEK] :: |soap; (Cal); - longaevitas_F_N = mkN "longaevitas" "longaevitatis " feminine ; -- [GXXET] :: long life; (Erasmus); + longaevitas_F_N = mkN "longaevitas" "longaevitatis" feminine ; -- [GXXET] :: long life; (Erasmus); longaevus_A = mkA "longaevus" "longaeva" "longaevum" ; -- [XXXDX] :: aged; of great age, ancient; longaminus_A = mkA "longaminus" "longamina" "longaminum" ; -- [FXXEM] :: patient; long-suffering; longanimis_A = mkA "longanimis" "longanimis" "longanime" ; -- [EXXES] :: patient, long-suffering; - longanimitas_F_N = mkN "longanimitas" "longanimitatis " feminine ; -- [EXXES] :: patience, forebearance, long-suffering; + longanimitas_F_N = mkN "longanimitas" "longanimitatis" feminine ; -- [EXXES] :: patience, forebearance, long-suffering; longanimiter_Adv = mkAdv "longanimiter" ; -- [EXXES] :: patiently, with forebearance/long-suffering; longe_Adv =mkAdv "longe" "longius" "longissime" ; -- [XXXAO] :: far (off), distant, a long way; by far; for a long while, far (in future/past); longinque_Adv =mkAdv "longinque" "longinquius" "longinquissime" ; -- [XXXEO] :: far/long way (off), distant, at a distance; for a long while; longwindedly; - longinquitas_F_N = mkN "longinquitas" "longinquitatis " feminine ; -- [XXXDX] :: distance, length, duration; remoteness; + longinquitas_F_N = mkN "longinquitas" "longinquitatis" feminine ; -- [XXXDX] :: distance, length, duration; remoteness; 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; 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); + 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); longule_Adv = mkAdv "longule" ; -- [XXXEC] :: rather far, at a little distance; 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; 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; + 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; + 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; @@ -25111,9 +25105,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat lorum_N_N = mkN "lorum" ; -- [XXXBX] :: leather strap, thong; shoe strap; rawhide whip; dog leash; reins (usu. pl.); lorus_M_N = mkN "lorus" ; -- [XXXDX] :: leather strap, thong; shoe strap; rawhide whip; dog leash; reins (usu. pl.); lotium_N_N = mkN "lotium" ; -- [XBXDO] :: urine; (liquid for washing - urine used for bleaching); (rude/veterinary); - 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; + 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; 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; @@ -25121,12 +25115,12 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat lubenter_Adv =mkAdv "lubenter" "lubentius" "lubentissime" ; -- [XXXCO] :: willingly; gladly, with pleasure; lubet_V0 = mkV0 "lubet" ; -- [XXXCO] :: it pleases/is pleasing/agreeable; please/want/feel like; [w/qui => no matter]; lubidinor_V = mkV "lubidinari" ; -- [XXXEO] :: gratify/indulge lust/passion; - lubido_F_N = mkN "lubido" "lubidinis " feminine ; -- [XXXAO] :: desire/longing/wish/fancy; lust, wantonness; will/pleasure; passion/lusts (pl.); + lubido_F_N = mkN "lubido" "lubidinis" feminine ; -- [XXXAO] :: desire/longing/wish/fancy; lust, wantonness; will/pleasure; passion/lusts (pl.); lubrico_V2 = mkV2 (mkV "lubricare") ; -- [XXXFO] :: make slippery; slip (especially morally) (Souter); render uncertain; lubricor_V = mkV "lubricari" ; -- [EXXFP] :: slip (morally); lubricosus_A = mkA "lubricosus" "lubricosa" "lubricosum" ; -- [XXXFO] :: sticky; clayey; lubricus_A = mkA "lubricus" "lubrica" "lubricum" ; -- [XXXBX] :: slippery; sinuous; inconstant; hazardous, ticklish; deceitful; - lucar_N_N = mkN "lucar" "lucaris " neuter ; -- [XDXCO] :: money set for public entertainment; sacred grove; forest tax (for actors L+S); + lucar_N_N = mkN "lucar" "lucaris" neuter ; -- [XDXCO] :: money set for public entertainment; sacred grove; forest tax (for actors L+S); 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; @@ -25144,25 +25138,24 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat lucius_M_N = mkN "lucius" ; -- [FXXEK] :: pike; lucrativus_A = mkA "lucrativus" "lucrativa" "lucrativum" ; -- [XXXES] :: gainful; L:bequeathed; 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; lucrum_N_N = mkN "lucrum" ; -- [XXXBX] :: gain, profit; avarice; - luctamen_N_N = mkN "luctamen" "luctaminis " neuter ; -- [XXXDX] :: struggling, exertion; - luctator_M_N = mkN "luctator" "luctatoris " masculine ; -- [XXXDX] :: wrestler; + luctamen_N_N = mkN "luctamen" "luctaminis" neuter ; -- [XXXDX] :: struggling, exertion; + luctator_M_N = mkN "luctator" "luctatoris" masculine ; -- [XXXDX] :: wrestler; luctificus_A = mkA "luctificus" "luctifica" "luctificum" ; -- [XXXDX] :: dire, calamitous; luctisonus_A = mkA "luctisonus" "luctisona" "luctisonum" ; -- [XXXEC] :: sad-sounding; luctor_V = mkV "luctari" ; -- [XXXDX] :: wrestle; struggle; fight (against); luctuosus_A = mkA "luctuosus" "luctuosa" "luctuosum" ; -- [XXXDX] :: mournful; grievous; - luctus_M_N = mkN "luctus" "luctus " masculine ; -- [XXXBX] :: grief, sorrow, lamentation, mourning; cause of grief; + luctus_M_N = mkN "luctus" "luctus" masculine ; -- [XXXBX] :: grief, sorrow, lamentation, mourning; cause of grief; lucubra_F_N = mkN "lucubra" ; -- [FXXEM] :: lamp; - lucubratio_F_N = mkN "lucubratio" "lucubrationis " feminine ; -- [XXXES] :: night work; work-by-nightlamp; nocturnal study; "burning the midnight oil"; + lucubratio_F_N = mkN "lucubratio" "lucubrationis" feminine ; -- [XXXES] :: night work; work-by-nightlamp; nocturnal study; "burning the midnight oil"; lucubro_V = mkV "lucubrare" ; -- [XXXDX] :: work by lamp-light, "burn the midnight oil"; make or produce at night; luculentus_A = mkA "luculentus" "luculenta" "luculentum" ; -- [XXXEC] :: shining, bright, brilliant, splendid; luculenus_A = mkA "luculenus" "luculena" "luculenum" ; -- [XXXDX] :: excellent; fine; beautiful; - lucumo_F_N = mkN "lucumo" "lucumonis " feminine ; -- [XXXFS] :: one possessed; an Etrurian; - lucumo_M_N = mkN "lucumo" "lucumonis " masculine ; -- [XXXFS] :: one possessed; an Etrurian; + lucumo_F_N = mkN "lucumo" "lucumonis" feminine ; -- [XXXFS] :: one possessed; an Etrurian; + lucumo_M_N = mkN "lucumo" "lucumonis" masculine ; -- [XXXFS] :: one possessed; an Etrurian; lucus_M_N = mkN "lucus" ; -- [XXXAX] :: grove; sacred grove; lucusta_F_N = mkN "lucusta" ; -- [XAXCO] :: locust; crustacean, lobster(?) (w/marina/maris); ludia_F_N = mkN "ludia" ; -- [XXXES] :: actress; female gladiator; @@ -25172,70 +25165,70 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat ludicer_A = mkA "ludicer" "ludicera" "ludicerum" ; -- [XXXDX] :: connected with sport or the stage; ludicrum_N_N = mkN "ludicrum" ; -- [XXXDX] :: stage play; show; source of fun, plaything; ludicrus_A = mkA "ludicrus" "ludicra" "ludicrum" ; -- [XXXDX] :: connected with sport or the stage; - ludificatio_F_N = mkN "ludificatio" "ludificationis " feminine ; -- [XXXDX] :: mockery; - ludificator_M_N = mkN "ludificator" "ludificatoris " masculine ; -- [BXXFS] :: mocker; one who mocks; + ludificatio_F_N = mkN "ludificatio" "ludificationis" feminine ; -- [XXXDX] :: mockery; + ludificator_M_N = mkN "ludificator" "ludificatoris" masculine ; -- [BXXFS] :: mocker; one who mocks; ludifico_V = mkV "ludificare" ; -- [XXXDX] :: make fun/sport of, treat as a plaything; trifle with; ludificor_V = mkV "ludificari" ; -- [XXXDX] :: make fun/sport of, treat as a plaything; trifle with; ludimagister_M_N = mkN "ludimagister" ; -- [XXXFS] :: teacher; school-master; - ludio_M_N = mkN "ludio" "ludionis " masculine ; -- [XDXEO] :: dancer; stage performer; + 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; + 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; + lues_F_N = mkN "lues" "luis" feminine ; -- [XXXDX] :: plague, pestilence; scourge, affliction; lugeo_V = mkV "lugere" ; -- [XXXBO] :: mourn, grieve (over); bewail, lament; be in mourning; - lugubre_N_N = mkN "lugubre" "lugubris " neuter ; -- [XXXES] :: mourning dress (as pl.); + lugubre_N_N = mkN "lugubre" "lugubris" neuter ; -- [XXXES] :: mourning dress (as pl.); lugubris_A = mkA "lugubris" "lugubris" "lugubre" ; -- [XXXDX] :: mourning; mournful; grievous; - lumbare_N_N = mkN "lumbare" "lumbaris " neuter ; -- [EXXES] :: apron/girdle for the loins; loin-cloth (Souter); + lumbare_N_N = mkN "lumbare" "lumbaris" neuter ; -- [EXXES] :: apron/girdle for the loins; loin-cloth (Souter); lumbarium_N_N = mkN "lumbarium" ; -- [XXXFO] :: loin-cloth; lumbus_M_N = mkN "lumbus" ; -- [XXXDX] :: loins; loins as the seat of sexual excitement; - lumen_N_N = mkN "lumen" "luminis " neuter ; -- [XXXAX] :: light; lamp, torch; eye (of a person); life; day, daylight; - luminare_N_N = mkN "luminare" "luminaris " neuter ; -- [XXXEC] :: window-shutter, window; + lumen_N_N = mkN "lumen" "luminis" neuter ; -- [XXXAX] :: light; lamp, torch; eye (of a person); life; day, daylight; + luminare_N_N = mkN "luminare" "luminaris" neuter ; -- [XXXEC] :: window-shutter, window; lumino_V2 = mkV2 (mkV "luminare") ; -- [XXXCO] :: illuminate, give light to; light up; reveal/throw light on; brighten (w/color); luminosus_A = mkA "luminosus" "luminosa" "luminosum" ; -- [XXXEC] :: bright; luna_F_N = mkN "luna" ; -- [XXXAX] :: moon; month; lunaris_A = mkA "lunaris" "lunaris" "lunare" ; -- [XXXDX] :: lunar; pertaining to the moon; lunatus_A = mkA "lunatus" "lunata" "lunatum" ; -- [XXXDX] :: crescent-shaped; 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; + 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; + lupanar_N_N = mkN "lupanar" "lupanaris" neuter ; -- [XXXDX] :: brothel; lupatria_F_N = mkN "lupatria" ; -- [XXXDX] :: term of abuse for a woman; lupatum_N_N = mkN "lupatum" ; -- [XXXDX] :: jagged toothed bit (pl.); club armed with sharp teeth; lupatus_A = mkA "lupatus" "lupata" "lupatum" ; -- [XXXDX] :: furnished with jagged/wolf's teeth/sharp points; 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; + 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; - lurcho_M_N = mkN "lurcho" "lurchonis " masculine ; -- [XXXEO] :: glutton; gourmand; (also general form of abuse); + lurcho_M_N = mkN "lurcho" "lurchonis" masculine ; -- [XXXEO] :: glutton; gourmand; (also general form of abuse); lurcho_V2 = mkV2 (mkV "lurchare") ; -- [XXXEO] :: eat greedily; guzzle, gorge; devour (Ecc); eat voraciously (L+S); lurchor_V = mkV "lurchari" ; -- [XXXFO] :: eat greedily; guzzle, gorge; devour (Ecc); eat voraciously (L+S); lurcinabundus_A = mkA "lurcinabundus" "lurcinabunda" "lurcinabundum" ; -- [XXXFO] :: eating greedily; guzzling, gorging; devouring; - lurco_M_N = mkN "lurco" "lurconis " masculine ; -- [XXXEO] :: glutton; gourmand; (also general form of abuse); + lurco_M_N = mkN "lurco" "lurconis" masculine ; -- [XXXEO] :: glutton; gourmand; (also general form of abuse); lurco_V2 = mkV2 (mkV "lurcare") ; -- [XXXEO] :: eat greedily; guzzle, gorge; devour (Ecc); eat voraciously (L+S); lurcor_V = mkV "lurcari" ; -- [XXXFO] :: eat greedily; guzzle, gorge; devour (Ecc); eat voraciously (L+S); luridus_A = mkA "luridus" "lurida" "luridum" ; -- [XXXDX] :: sallow, wan, ghastly; - luror_M_N = mkN "luror" "luroris " masculine ; -- [XXXEC] :: ghastliness, paleness; + luror_M_N = mkN "luror" "luroris" masculine ; -- [XXXEC] :: ghastliness, paleness; luscinia_F_N = mkN "luscinia" ; -- [XXXDX] :: nightingale; lusciosus_A = mkA "lusciosus" "lusciosa" "lusciosum" ; -- [XXXEC] :: purblind, dim-sighted; luscitiosus_A = mkA "luscitiosus" "luscitiosa" "luscitiosum" ; -- [XXXEC] :: purblind, dim-sighted; luscus_A = mkA "luscus" "lusca" "luscum" ; -- [XXXEC] :: one-eyed; - lusio_F_N = mkN "lusio" "lusionis " feminine ; -- [XXXES] :: play; act of playing; + lusio_F_N = mkN "lusio" "lusionis" feminine ; -- [XXXES] :: play; act of playing; lusito_V = mkV "lusitare" ; -- [XXXEO] :: amuse oneself; play (often); play sport (Erasmus); - lusor_M_N = mkN "lusor" "lusoris " masculine ; -- [XXXDX] :: player; tease; one who treats (of a subject) lightly; + lusor_M_N = mkN "lusor" "lusoris" masculine ; -- [XXXDX] :: player; tease; one who treats (of a subject) lightly; lusorius_A = mkA "lusorius" "lusoria" "lusorium" ; -- [GXXEK] :: of playing; lustralis_A = mkA "lustralis" "lustralis" "lustrale" ; -- [XXXDX] :: relating to purification; serving to avert evil; [fons ~ => holy water font]; - lustro_M_N = mkN "lustro" "lustronis " masculine ; -- [XXXFO] :: frequenter of brothels and similar haunts; + lustro_M_N = mkN "lustro" "lustronis" masculine ; -- [XXXFO] :: frequenter of brothels and similar haunts; lustro_V = mkV "lustrare" ; -- [XXXBO] :: review/inspect, look around, seek; illuminate; traverse/roam/move over/through; lustror_V = mkV "lustrari" ; -- [XXXEO] :: haunt/frequent brothels; 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; + luter_M_N = mkN "luter" "luteris" masculine ; -- [EXXES] :: hand basin; washing/bath tub; laver/brazen vessel for ablutions of priests; 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; @@ -25244,19 +25237,19 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat lutulentus_A = mkA "lutulentus" "lutulenta" "lutulentum" ; -- [XXXDX] :: muddy; turbid; dirty; morally polluted; lutum_N_N = mkN "lutum" ; -- [XXXEO] :: weld/plant giving yellow dye (Reseda Luteola); the dye; yellow color; (long u); lutus_M_N = mkN "lutus" ; -- [XXXCO] :: mud, dirt, clay; (for modelling/building); [pro ~ => common as dirt]; - lux_F_N = mkN "lux" "lucis " feminine ; -- [XXXAX] :: light, daylight, light of day; life; world; day; [prima luce => at daybreak]; - luxatio_F_N = mkN "luxatio" "luxationis " feminine ; -- [DBXFS] :: dislocation; + lux_F_N = mkN "lux" "lucis" feminine ; -- [XXXAX] :: light, daylight, light of day; life; world; day; [prima luce => at daybreak]; + luxatio_F_N = mkN "luxatio" "luxationis" feminine ; -- [DBXFS] :: dislocation; luxatura_F_N = mkN "luxatura" ; -- [DBXFS] :: dislocation; luxo_V2 = mkV2 (mkV "luxare") ; -- [XBXCO] :: sprain (limb), dislocate; displace, force out of position; put out of joint; luxuria_F_N = mkN "luxuria" ; -- [XXXBX] :: luxury; extravagance; thriving condition; - luxuries_F_N = mkN "luxuries" "luxuriei " feminine ; -- [XXXDX] :: luxury, extravagance, thriving condition; + luxuries_F_N = mkN "luxuries" "luxuriei" feminine ; -- [XXXDX] :: luxury, extravagance, thriving condition; luxurio_V = mkV "luxuriare" ; -- [XXXBO] :: grow luxuriantly/rank; luxuriate; frisk/gambol; revel/run riot; indulge oneself; luxurior_V = mkV "luxuriari" ; -- [XXXDO] :: grow luxuriantly/rank; luxuriate; frisk/gambol; revel/run riot; indulge oneself; luxuriosus_A = mkA "luxuriosus" "luxuriosa" "luxuriosum" ; -- [XXXDX] :: luxuriant, exuberant; immoderate; wanton, luxurious, self-indulgent; - luxus_M_N = mkN "luxus" "luxus " masculine ; -- [XXXDX] :: luxury, soft living; sumptuousness; + luxus_M_N = mkN "luxus" "luxus" masculine ; -- [XXXDX] :: luxury, soft living; sumptuousness; lycaonice_Adv = mkAdv "lycaonice" ; -- [XXQFS] :: in the dialect of Lycaonia (district in southern Asia Minor), in Lycaonian; lyceum_N_N = mkN "lyceum" ; -- [XGHEO] :: gymnasium of Aristotle; Cicero's Tusculan gymnasium; high school (Ecc); college; - lychanos_M_N = mkN "lychanos" "lychani " masculine ; -- [XDHFO] :: second highest tetrachord note; (lychanos/lichanos); + lychanos_M_N = mkN "lychanos" "lychani" masculine ; -- [XDHFO] :: second highest tetrachord note; (lychanos/lichanos); lychnuchus_M_N = mkN "lychnuchus" ; -- [XXXCO] :: lamp-holder; lamp stand; lychnus_M_N = mkN "lychnus" ; -- [XXXCO] :: lamp (esp. one hung from the ceiling); lycopersicum_N_N = mkN "lycopersicum" ; -- [GXXEK] :: tomato; @@ -25264,25 +25257,25 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat lymphans_A = mkA "lymphans" "lymphantis"; -- [XXXDX] :: frenzied, frantic; distracted; deranged, crazy; lymphaticus_A = mkA "lymphaticus" "lymphatica" "lymphaticum" ; -- [XXXDX] :: frenzied; lymphatus_A = mkA "lymphatus" "lymphata" "lymphatum" ; -- [XXXDX] :: frenzied, frantic; distracted; deranged, crazy; - lymphatus_M_N = mkN "lymphatus" "lymphatus " masculine ; -- [XXXNO] :: frenzy, madness; + lymphatus_M_N = mkN "lymphatus" "lymphatus" masculine ; -- [XXXNO] :: frenzy, madness; lympho_V2 = mkV2 (mkV "lymphare") ; -- [XXXCO] :: derange, drive crazy; (PASS) be in state of frenzy; - lyncurion_N_N = mkN "lyncurion" "lyncurii " neuter ; -- [XXXES] :: ligure/precious gem; hard transparent gem, tourmaline? (L+S); amber (OLD); + lyncurion_N_N = mkN "lyncurion" "lyncurii" neuter ; -- [XXXES] :: ligure/precious gem; hard transparent gem, tourmaline? (L+S); amber (OLD); lyncurium_N_N = mkN "lyncurium" ; -- [XXXNO] :: ligure/precious gem; hard transparent gem, tourmaline? (L+S); amber (OLD); lyncurius_M_N = mkN "lyncurius" ; -- [XXXFS] :: ligure/precious gem; hard transparent gem, tourmaline? (L+S); amber (OLD); - lynx_F_N = mkN "lynx" "lyncis " feminine ; -- [XAXCO] :: lynx; lynx skin/pelt; fictitious tree (invented to explain lyncurium/ligure); - lynx_M_N = mkN "lynx" "lyncis " masculine ; -- [XAXCO] :: lynx; lynx skin/pelt; fictitious tree (invented to explain lyncurium/ligure); + lynx_F_N = mkN "lynx" "lyncis" feminine ; -- [XAXCO] :: lynx; lynx skin/pelt; fictitious tree (invented to explain lyncurium/ligure); + lynx_M_N = mkN "lynx" "lyncis" masculine ; -- [XAXCO] :: lynx; lynx skin/pelt; fictitious tree (invented to explain lyncurium/ligure); lyra_F_N = mkN "lyra" ; -- [XXXAX] :: lyre; lyric poetry/inspiration/genius; Lyra/the Lyre (constellation); lute/harp; lyricus_A = mkA "lyricus" "lyrica" "lyricum" ; -- [XXXDX] :: lyric; lytrum_N_N = mkN "lytrum" ; -- [XXXDX] :: ransom (pl.); macaronicus_A = mkA "macaronicus" "macaronica" "macaronicum" ; -- [GXXFK] :: of macaroni; - maccarono_M_N = mkN "maccarono" "maccaronis " masculine ; -- [GXXFK] :: macaroni; - maccis_F_N = mkN "maccis" "maccidis " feminine ; -- [GXXEK] :: mace/macis; nutmeg spice; imaginary spice (OLD); + maccarono_M_N = mkN "maccarono" "maccaronis" masculine ; -- [GXXFK] :: macaroni; + maccis_F_N = mkN "maccis" "maccidis" feminine ; -- [GXXEK] :: mace/macis; nutmeg spice; imaginary spice (OLD); 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; 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); + 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; @@ -25290,11 +25283,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat machinalis_A = mkA "machinalis" "machinalis" "machinale" ; -- [GXXEK] :: machine-like; machinamentum_N_N = mkN "machinamentum" ; -- [XXXDX] :: siege-engine; machinarius_M_N = mkN "machinarius" ; -- [GXXEK] :: driver; - machinatio_F_N = mkN "machinatio" "machinationis " feminine ; -- [XXXDX] :: machine; engine (of war), mechanism, contrivance, artifice; trick, device; - machinator_M_N = mkN "machinator" "machinatoris " masculine ; -- [XXXDX] :: engineer, one who devises/constructs machines; contriver of plots/events; + machinatio_F_N = mkN "machinatio" "machinationis" feminine ; -- [XXXDX] :: machine; engine (of war), mechanism, contrivance, artifice; trick, device; + machinator_M_N = mkN "machinator" "machinatoris" masculine ; -- [XXXDX] :: engineer, one who devises/constructs machines; contriver of plots/events; 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; + macies_F_N = mkN "macies" "maciei" feminine ; -- [XXXDX] :: leanness, meagerness; poverty; macilentus_A = mkA "macilentus" ; -- [XXXEO] :: thin, lean; meager (L+S); macium_N_N = mkN "macium" ; -- [FWXFM] :: mace; club; macresco_V = mkV "macrescere" "macresco" nonExist nonExist ; -- [XXXDX] :: become thin, waste away; @@ -25306,7 +25299,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat macronosia_F_N = mkN "macronosia" ; -- [FBXEM] :: prolonged illness; 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; + mactator_M_N = mkN "mactator" "mactatoris" masculine ; -- [XXXFO] :: slaughterer, one who slaughters/kills; 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; @@ -25314,7 +25307,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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; @@ -25327,13 +25320,13 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat maenianum_N_N = mkN "maenianum" ; -- [FXXEK] :: balcony; maerens_A = mkA "maerens" "maerentis"; -- [XXXCO] :: sad, melancholy; mournful, gloomy woeful, doleful; mourning, lamenting (L+S); maereo_V = mkV "maerere" ; -- [XXXBO] :: grieve, be sad, mourn; bewail/mourn for/lament; utter mournfully; - maeror_M_N = mkN "maeror" "maeroris " masculine ; -- [XXXCO] :: grief, sorrow, sadness; mourning; lamentation (L+S); + maeror_M_N = mkN "maeror" "maeroris" masculine ; -- [XXXCO] :: grief, sorrow, sadness; mourning; lamentation (L+S); maeste_Adv = mkAdv "maeste" ; -- [XXXFO] :: sadly; mournfully; sorrowfully (Latham); with sadness (L+S); maestifico_V2 = mkV2 (mkV "maestificare") ; -- [DXXES] :: grieve, make sad/sorrowful, sadden; maestificus_A = mkA "maestificus" "maestifica" "maestificum" ; -- [EEXFS] :: saddening; maestiter_Adv = mkAdv "maestiter" ; -- [XXXFO] :: sadly; mournfully; sorrowfully (Latham); in a way to indicate sorrow (L+S); 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; + 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); 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; @@ -25345,16 +25338,16 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat magisterium_N_N = mkN "magisterium" ; -- [GXXEK] :: master (academic title); magisterius_A = mkA "magisterius" "magisteria" "magisterium" ; -- [DLXFS] :: magisterial; official; magistra_F_N = mkN "magistra" ; -- [XXXDX] :: instructress; - magistratus_M_N = mkN "magistratus" "magistratus " masculine ; -- [XXXBX] :: magistracy, civil office; office; magistrate, functionary; - magma_N_N = mkN "magma" "magmatis " neuter ; -- [XXXFS] :: unguent dregs (Pliny); - magnale_N_N = mkN "magnale" "magnalis " neuter ; -- [DEXCS] :: great things (pl.); mighty works/deeds/words; - magnanemitas_F_N = mkN "magnanemitas" "magnanemitatis " feminine ; -- [XXXDO] :: magnanimity; generosity; highmindedness, loftiness of spirit; - magnanimitas_F_N = mkN "magnanimitas" "magnanimitatis " feminine ; -- [EXXFO] :: magnanimity; generosity; highmindedness, loftiness of spirit; + magistratus_M_N = mkN "magistratus" "magistratus" masculine ; -- [XXXBX] :: magistracy, civil office; office; magistrate, functionary; + magma_N_N = mkN "magma" "magmatis" neuter ; -- [XXXFS] :: unguent dregs (Pliny); + magnale_N_N = mkN "magnale" "magnalis" neuter ; -- [DEXCS] :: great things (pl.); mighty works/deeds/words; + magnanemitas_F_N = mkN "magnanemitas" "magnanemitatis" feminine ; -- [XXXDO] :: magnanimity; generosity; highmindedness, loftiness of spirit; + magnanimitas_F_N = mkN "magnanimitas" "magnanimitatis" feminine ; -- [EXXFO] :: magnanimity; generosity; highmindedness, loftiness of spirit; magnanimus_A = mkA "magnanimus" "magnanima" "magnanimum" ; -- [XXXCO] :: brave, bold, noble in spirit (esp. kings/heroes); generous; - magnas_M_N = mkN "magnas" "magnatis " masculine ; -- [DXXCS] :: great man; important person; magnate; vassal (Z); tenant-in-chief; baron; + magnas_M_N = mkN "magnas" "magnatis" masculine ; -- [DXXCS] :: great man; important person; magnate; vassal (Z); tenant-in-chief; baron; magnatus_M_N = mkN "magnatus" ; -- [DXXCS] :: great man; important person; magnate; vassal (Z); tenant-in-chief; baron; magnes_A = mkA "magnes" "magnetis"; -- [XSXCO] :: magnetic; of a magnet/lodestone; of Magnesia; [~ lapis => magnet, lodestone]; - magnes_M_N = mkN "magnes" "magnetis " masculine ; -- [XSXCO] :: magnet, lodestone; inhabitants of Magnesia (pl.); + magnes_M_N = mkN "magnes" "magnetis" masculine ; -- [XSXCO] :: magnet, lodestone; inhabitants of Magnesia (pl.); magnesium_N_N = mkN "magnesium" ; -- [GSXEK] :: magnesium; magneticus_A = mkA "magneticus" "magnetica" "magneticum" ; -- [DSXCS] :: magnetic; magnetismus_M_N = mkN "magnetismus" ; -- [GSXEK] :: magnetism; @@ -25370,7 +25363,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + magnitudo_F_N = mkN "magnitudo" "magnitudinis" feminine ; -- [XXXAX] :: size, magnitude, bulk; greatness. importance, intensity; magnopere_Adv = mkAdv "magnopere" ; -- [XXXBO] :: greatly, exceedingly; with great effort; very much; particularly, especially; magnufice_Adv =mkAdv "magnufice" "magnuficentius" "magnuficentissime" ; -- [XXXCO] :: splendidly, in fine/lordly manner/language; superbly; proudly/boastfully; magnuficenter_Adv = mkAdv "magnuficenter" ; -- [XXXFO] :: splendidly, in fine/lordly manner/language; superbly; proudly/boastfully; @@ -25385,12 +25378,12 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); - majestas_F_N = mkN "majestas" "majestatis " feminine ; -- [XXXAO] :: |grandeur, greatness; dignity/majesty (of language); [crimen ~ => high treason]; + majalis_M_N = mkN "majalis" "majalis" masculine ; -- [XAXDO] :: gelded/castrated hog/boar; barrow pig/hog; swine; (term of abuse); + majestas_F_N = mkN "majestas" "majestatis" feminine ; -- [XXXAO] :: |grandeur, greatness; dignity/majesty (of language); [crimen ~ => high treason]; majestativus_A = mkA "majestativus" "majestativa" "majestativum" ; -- [GXXEK] :: majestic; majestuosus_A = mkA "majestuosus" "majestuosa" "majestuosum" ; -- [GXXEK] :: majestic; - major_M_N = mkN "major" "majoris " masculine ; -- [GXXEK] :: mayor; - majoritas_F_N = mkN "majoritas" "majoritatis " feminine ; -- [FXXEM] :: majority (the biggest number); greater size/rank; + major_M_N = mkN "major" "majoris" masculine ; -- [GXXEK] :: mayor; + majoritas_F_N = mkN "majoritas" "majoritatis" feminine ; -- [FXXEM] :: majority (the biggest number); greater size/rank; majuscula_F_N = mkN "majuscula" ; -- [GGXEK] :: capital letter; majuscule_Adv = mkAdv "majuscule" ; -- [GGXEK] :: capitalized; with capital letter; majusculus_A = mkA "majusculus" "majuscula" "majusculum" ; -- [XXXEC] :: somewhat greater; little older; @@ -25400,7 +25393,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat malacia_F_N = mkN "malacia" ; -- [XXXDX] :: calm; dead calm; malacus_A = mkA "malacus" "malaca" "malacum" ; -- [XXXEC] :: soft, pliable; effeminate, delicate; malagma_F_N = mkN "malagma" ; -- [XXXCO] :: emollient; poultice; mixture (of unguents) (Souter); - malagma_N_N = mkN "malagma" "malagmatis " neuter ; -- [XXXCO] :: emollient; poultice; mixture (of unguents) (Souter); + malagma_N_N = mkN "malagma" "malagmatis" neuter ; -- [XXXCO] :: emollient; poultice; mixture (of unguents) (Souter); malagranata_F_N = mkN "malagranata" ; -- [EAXES] :: pomegranate; (Vulgate spelling 2 Chron 3:16/4:13); malagranatum_N_N = mkN "malagranatum" ; -- [EAXCS] :: pomegranate; (Vulgate spelling 2 Chron 3:16/4:13); malaria_F_N = mkN "malaria" ; -- [GXXEK] :: malaria; @@ -25408,12 +25401,12 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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; + 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; @@ -25435,8 +25428,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat malifer_A = mkA "malifer" "malifera" "maliferum" ; -- [XXXDX] :: apple-bearing; 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; + 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; maligno_V2 = mkV2 (mkV "malignare") ; -- [EXXCS] :: malign; act/do/contrive maliciously; act badly/wickedly (Ecc); malignor_V = mkV "malignari" ; -- [EXXCS] :: malign; act/do/contrive maliciously; act badly/wickedly (Ecc); malignus_A = mkA "malignus" "maligna" "malignum" ; -- [XXXBX] :: spiteful; niggardly; narrow; @@ -25450,7 +25443,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat malivolentia_F_N = mkN "malivolentia" ; -- [XXXCO] :: ill-will/spite/malice; malevolence; dislike/hatred/envy (L+S); evil disposition; malivolus_A = mkA "malivolus" "malivola" "malivolum" ; -- [XXXCO] :: spiteful, malevolent; ill-disposed; disaffected (L+S); envious; malivolus_M_N = mkN "malivolus" ; -- [XXXFS] :: enemy/foe/ill-wisher; ill-disposed person; - malleator_M_N = mkN "malleator" "malleatoris " masculine ; -- [XXXEO] :: hammerer, beater, he who pounds/hammers/beats; + malleator_M_N = mkN "malleator" "malleatoris" masculine ; -- [XXXEO] :: hammerer, beater, he who pounds/hammers/beats; malleatus_A = mkA "malleatus" "malleata" "malleatum" ; -- [XXXEO] :: hammered, beaten; malleolus_M_N = mkN "malleolus" ; -- [XXXDX] :: fire-dart; brush for burning (Vulgate Prayer of Azariah 1:23); malleus_M_N = mkN "malleus" ; -- [XXXCO] :: hammer; mallet, maul; (also medical for the inner ear bone); @@ -25469,18 +25462,18 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat malvaceus_A = mkA "malvaceus" "malvacea" "malvaceum" ; -- [GXXEK] :: mauve-colored; 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; + mammale_N_N = mkN "mammale" "mammalis" neuter ; -- [GXXEK] :: mammal; 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); + 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); - mamonas_M_N = mkN "mamonas" "mamonae " masculine ; -- [EEXEP] :: riches, wealth; (gain of wickedness, quasi-personification of covetousness OED); + mamonas_M_N = mkN "mamonas" "mamonae" masculine ; -- [EEXEP] :: riches, wealth; (gain of wickedness, quasi-personification of covetousness OED); 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); + 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); 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; + 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; mancupium_N_N = mkN "mancupium" ; -- [XLXES] :: formal acceptance; possession; formal purchase; (mancipium); @@ -25492,11 +25485,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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); - manduco_M_N = mkN "manduco" "manduconis " masculine ; -- [XXXEO] :: glutton; gourmand; big eater; + mandragoras_M_N = mkN "mandragoras" "mandragorae" masculine ; -- [XAXDO] :: mandrake; (plant used in medicine as soporific/sleep inducing); + manduco_M_N = mkN "manduco" "manduconis" masculine ; -- [XXXEO] :: glutton; gourmand; big eater; 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; @@ -25507,7 +25500,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat manga_F_N = mkN "manga" ; -- [GAXEK] :: mango; 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); + mango_M_N = mkN "mango" "mangonis" masculine ; -- [XXXEZ] :: dealer (Collins); 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; @@ -25518,7 +25511,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat manicula_F_N = mkN "manicula" ; -- [XXXEC] :: little hand; manicura_F_N = mkN "manicura" ; -- [GXXEK] :: manicurist; manifestarius_A = mkA "manifestarius" "manifestaria" "manifestarium" ; -- [XXXES] :: |plain; clear; evident; - manifestatio_F_N = mkN "manifestatio" "manifestationis " feminine ; -- [FXXDF] :: manifestation; manifesting; demonstration, revelation, display; + manifestatio_F_N = mkN "manifestatio" "manifestationis" feminine ; -- [FXXDF] :: manifestation; manifesting; demonstration, revelation, display; manifestative_Adv = mkAdv "manifestative" ; -- [FXXFF] :: demonstratively, revealingly; 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; @@ -25528,41 +25521,41 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; manipularis_A = mkA "manipularis" "manipularis" "manipulare" ; -- [XXXDX] :: of/belonging to maniple; belonging to the ranks; private; - manipularis_M_N = mkN "manipularis" "manipularis " masculine ; -- [XXXDX] :: soldier of a maniple; common soldier, private; marine; comrades (pl.); + manipularis_M_N = mkN "manipularis" "manipularis" masculine ; -- [XXXDX] :: soldier of a maniple; common soldier, private; marine; comrades (pl.); manipulatim_Adv = mkAdv "manipulatim" ; -- [XXXDX] :: in handfuls; in companies; 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; + 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); 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; manometrum_N_N = mkN "manometrum" ; -- [GXXEK] :: manometer; - mansio_F_N = mkN "mansio" "mansionis " feminine ; -- [XXXBO] :: lodging, stop; day's journey, stage; staying away; abode/quarters/home/dwelling; - mansionariatus_M_N = mkN "mansionariatus" "mansionariatus " masculine ; -- [FEXFE] :: office of resident priest; + mansio_F_N = mkN "mansio" "mansionis" feminine ; -- [XXXBO] :: lodging, stop; day's journey, stage; staying away; abode/quarters/home/dwelling; + mansionariatus_M_N = mkN "mansionariatus" "mansionariatus" masculine ; -- [FEXFE] :: office of resident priest; 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; + 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; + 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; + 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; - mantele_N_N = mkN "mantele" "mantelis " neuter ; -- [XXXDO] :: handtowel; napkin; towel, cloth; tablecloth (L+S); + mantele_N_N = mkN "mantele" "mantelis" neuter ; -- [XXXDO] :: handtowel; napkin; towel, cloth; tablecloth (L+S); mantelium_N_N = mkN "mantelium" ; -- [XXXDO] :: handtowel; napkin; towel, cloth; tablecloth (L+S); mantelletum_N_N = mkN "mantelletum" ; -- [FEXEE] :: mantel covering the surplice of prelate; cape, cope; mantellum_N_N = mkN "mantellum" ; -- [XXXEO] :: cloak, mantel; handtowel (L+S); napkin; towel, cloth; mantelum_N_N = mkN "mantelum" ; -- [XXXEO] :: handtowel; napkin; towel, cloth; cloak, mantel (L+S); mantica_F_N = mkN "mantica" ; -- [XXXDX] :: traveling-bag, knapsack; - mantile_N_N = mkN "mantile" "mantilis " neuter ; -- [XXXDS] :: handtowel; napkin; towel, cloth; tablecloth; + mantile_N_N = mkN "mantile" "mantilis" neuter ; -- [XXXDS] :: handtowel; napkin; towel, cloth; tablecloth; mantilium_N_N = mkN "mantilium" ; -- [XXXDS] :: handtowel; napkin; towel, cloth; tablecloth; mantum_N_N = mkN "mantum" ; -- [XXXFS] :: Spanish cloak; 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; + 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; @@ -25572,19 +25565,19 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + manus_F_N = mkN "manus" "manus" feminine ; -- [XXXAX] :: hand, fist; team; gang, band of soldiers; handwriting; (elephant's) trunk; manuscriptum_N_N = mkN "manuscriptum" ; -- [GXXEK] :: manuscript; manuscriptus_A = mkA "manuscriptus" "manuscripta" "manuscriptum" ; -- [GXXEK] :: hand-written; manutergium_N_N = mkN "manutergium" ; -- [GXXEK] :: towel; manzer_A = mkA "manzer" "manzeris"; -- [EEQFS] :: bastard, illegitimate; (Hebrew); - manzer_F_N = mkN "manzer" "manzeris " feminine ; -- [EEXFS] :: bastard, one of illegitimate birth; mongrel (Latham); (Hebrew); - manzer_M_N = mkN "manzer" "manzeris " masculine ; -- [EEXFS] :: bastard, one of illegitimate birth; mongrel (Latham); (Hebrew); + manzer_F_N = mkN "manzer" "manzeris" feminine ; -- [EEXFS] :: bastard, one of illegitimate birth; mongrel (Latham); (Hebrew); + manzer_M_N = mkN "manzer" "manzeris" masculine ; -- [EEXFS] :: bastard, one of illegitimate birth; mongrel (Latham); (Hebrew); manzerinus_C_N = mkN "manzerinus" ; -- [EEXFM] :: bastard, one of illegitimate birth; mongrel (Latham); (Hebrew); - mapale_N_N = mkN "mapale" "mapalis " neuter ; -- [XXXCS] :: huts (pl.) of African nomads; house of ill repute; follies, useless things; + mapale_N_N = mkN "mapale" "mapalis" neuter ; -- [XXXCS] :: huts (pl.) of African nomads; house of ill repute; follies, useless things; mappa_F_N = mkN "mappa" ; -- [XXXDX] :: white cloth; napkin; handkerchief; cloth dropped as start signal; tablecloth; mappula_F_N = mkN "mappula" ; -- [GXXEK] :: table-napkin; maranatha_Interj = ss "maranatha" ; -- [DEXEP] :: our Lord cometh; (Aramaic through Greek); @@ -25592,19 +25585,19 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; + mare_N_N = mkN "mare" "maris" neuter ; -- [XXXAX] :: sea; sea water; margarinum_N_N = mkN "margarinum" ; -- [GXXEK] :: margarine; margarita_F_N = mkN "margarita" ; -- [XXXDX] :: pearl; marginalis_A = mkA "marginalis" "marginalis" "marginale" ; -- [GXXEK] :: marginal; margino_V = mkV "marginare" ; -- [XXXDX] :: provide with borders; - margo_F_N = mkN "margo" "marginis " feminine ; -- [XXXCO] :: margin, edge, flange, rim, border; threshold; bank, retaining wall; gunwale; + margo_F_N = mkN "margo" "marginis" feminine ; -- [XXXCO] :: margin, edge, flange, rim, border; threshold; bank, retaining wall; gunwale; marinus_A = mkA "marinus" "marina" "marinum" ; -- [XXXDX] :: marine; of the sea; sea born; marisca_F_N = mkN "marisca" ; -- [XAXDO] :: kind of large/inferior fig; hemorrhoids (pl.), piles; mariscus_A = mkA "mariscus" "marisca" "mariscum" ; -- [XAXDO] :: kind of large/inferior fig; @@ -25618,48 +25611,48 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat maritus_M_N = mkN "maritus" ; -- [XXXDX] :: husband, married man; lover; mate; marlo_V = mkV "marlare" ; -- [FAXDM] :: apply clay; add marl to the soil; marmelata_F_N = mkN "marmelata" ; -- [GXXEK] :: marmalade; - marmor_N_N = mkN "marmor" "marmoris " neuter ; -- [XXXBX] :: marble, block of marble, marble monument/statue; surface of the sea; + marmor_N_N = mkN "marmor" "marmoris" neuter ; -- [XXXBX] :: marble, block of marble, marble monument/statue; surface of the sea; marmoratus_A = mkA "marmoratus" "marmorata" "marmoratum" ; -- [XXXDX] :: marbled; overlaid with marble; marmoreus_A = mkA "marmoreus" "marmorea" "marmoreum" ; -- [XXXDX] :: marble; of marble; marble-like; marmus_A = mkA "marmus" "marma" "marmum" ; -- [XXXDX] :: marine; belonging to the sea; marra_F_N = mkN "marra" ; -- [XXXEC] :: hoe; marsupium_N_N = mkN "marsupium" ; -- [FXXEK] :: purse; marsuppium_N_N = mkN "marsuppium" ; -- [XXXEC] :: purse, pouch; - martipanis_M_N = mkN "martipanis" "martipanis " masculine ; -- [GXXEK] :: marzipan; - martyr_F_N = mkN "martyr" "martyris " feminine ; -- [DEXCS] :: martyr; witness; one who by his death bears witness to the truth of Christ; - martyr_M_N = mkN "martyr" "martyris " masculine ; -- [DEXCS] :: martyr; witness; one who by his death bears witness to the truth of Christ; + martipanis_M_N = mkN "martipanis" "martipanis" masculine ; -- [GXXEK] :: marzipan; + martyr_F_N = mkN "martyr" "martyris" feminine ; -- [DEXCS] :: martyr; witness; one who by his death bears witness to the truth of Christ; + martyr_M_N = mkN "martyr" "martyris" masculine ; -- [DEXCS] :: martyr; witness; one who by his death bears witness to the truth of Christ; martyrium_N_N = mkN "martyrium" ; -- [DEXCS] :: martyrdom; testimony w/one's blood of faith in Christ; martyr's grave/church; martyrologium_N_N = mkN "martyrologium" ; -- [EEXFE] :: martyology; list of martyrs/saints (about 600 AD bearing name of St. Jerome); mas_A = mkA "mas" "maris"; -- [XXXCO] :: male; masculine, of the male sex; manly, virile, brave, noble; G:masculine; - mas_M_N = mkN "mas" "maris " masculine ; -- [XXXCO] :: male (human/animal/plant); man; + mas_M_N = mkN "mas" "maris" masculine ; -- [XXXCO] :: male (human/animal/plant); man; masculinus_A = mkA "masculinus" "masculina" "masculinum" ; -- [XXXCO] :: masculine, of the male sex; of masculine gender (grammar); masculus_A = mkA "masculus" "mascula" "masculum" ; -- [XXXCO] :: male/masculine, proper to males; manly/virile; (large/coarse plants); (plugs); masochismus_M_N = mkN "masochismus" ; -- [GXXEK] :: masochism; masochista_M_N = mkN "masochista" ; -- [GXXEK] :: masochistic; massa_F_N = mkN "massa" ; -- [XXXDX] :: mass, bulk; heavy weight, load, burden; lump; kneaded dough; massarius_M_N = mkN "massarius" ; -- [FWXFM] :: mace-bearer; - masso_M_N = mkN "masso" "massonis " masculine ; -- [GXXEK] :: freemason; + masso_M_N = mkN "masso" "massonis" masculine ; -- [GXXEK] :: freemason; massuelius_M_N = mkN "massuelius" ; -- [FWXEM] :: mace; club; massuerius_M_N = mkN "massuerius" ; -- [FWXFM] :: mace-bearer; - masterbator_M_N = mkN "masterbator" "masterbatoris " masculine ; -- [XXXFO] :: masturbator; one who defiles himself (L+S); - masterbio_F_N = mkN "masterbio" "masterbionis " feminine ; -- [XXXFP] :: masturbation; + masterbator_M_N = mkN "masterbator" "masterbatoris" masculine ; -- [XXXFO] :: masturbator; one who defiles himself (L+S); + masterbio_F_N = mkN "masterbio" "masterbionis" feminine ; -- [XXXFP] :: masturbation; masterbor_V = mkV "masterbari" ; -- [XXXFO] :: masturbate; defile oneself (L+S); - mastex_F_N = mkN "mastex" "mastechis " feminine ; -- [EAXFP] :: mastic, gum/resin of Pistacia lentiscus/other trees; - mastice_F_N = mkN "mastice" "mastices " feminine ; -- [XAXES] :: mastic, gum/resin of Pistacia lentiscus/other trees; + mastex_F_N = mkN "mastex" "mastechis" feminine ; -- [EAXFP] :: mastic, gum/resin of Pistacia lentiscus/other trees; + mastice_F_N = mkN "mastice" "mastices" feminine ; -- [XAXES] :: mastic, gum/resin of Pistacia lentiscus/other trees; masticha_F_N = mkN "masticha" ; -- [DAXFS] :: mastic, gum/resin of Pistacia lentiscus/other trees; - mastiche_F_N = mkN "mastiche" "mastiches " feminine ; -- [XAXEO] :: mastic, gum/resin of Pistacia lentiscus/other trees; + mastiche_F_N = mkN "mastiche" "mastiches" feminine ; -- [XAXEO] :: mastic, gum/resin of Pistacia lentiscus/other trees; mastichum_N_N = mkN "mastichum" ; -- [DAXES] :: mastic, gum/resin of Pistacia lentiscus/other trees; - mastigatus_M_N = mkN "mastigatus" "mastigatus " masculine ; -- [EXXFW] :: whipping; punishment; + mastigatus_M_N = mkN "mastigatus" "mastigatus" masculine ; -- [EXXFW] :: whipping; punishment; mastigia_M_N = mkN "mastigia" ; -- [XXXDX] :: one who deserves a whipping, rascal; mastigo_V2 = mkV2 (mkV "mastigare") ; -- [DXXFS] :: whip; scourge; - mastix_F_N = mkN "mastix" "masticis " feminine ; -- [EXXFP] :: lash; punishment; anguish (Vulgate); + mastix_F_N = mkN "mastix" "masticis" feminine ; -- [EXXFP] :: lash; punishment; anguish (Vulgate); mastruca_F_N = mkN "mastruca" ; -- [XXXEC] :: sheepskin; - masturbatio_F_N = mkN "masturbatio" "masturbationis " feminine ; -- [XXXFD] :: masturbation; - masturbator_M_N = mkN "masturbator" "masturbatoris " masculine ; -- [XXXFS] :: masturbator; + masturbatio_F_N = mkN "masturbatio" "masturbationis" feminine ; -- [XXXFD] :: masturbation; + masturbator_M_N = mkN "masturbator" "masturbatoris" masculine ; -- [XXXFS] :: masturbator; masturbor_V = mkV "masturbari" ; -- [XXXES] :: masturbate; matara_F_N = mkN "matara" ; -- [XXXDX] :: javelin, spear; - matellio_M_N = mkN "matellio" "matellionis " masculine ; -- [XXXEC] :: small pot, vessel; - mater_F_N = mkN "mater" "matris " feminine ; -- [XXXAX] :: mother, foster mother; lady, matron; origin, source, motherland, mother city; + matellio_M_N = mkN "matellio" "matellionis" masculine ; -- [XXXEC] :: small pot, vessel; + mater_F_N = mkN "mater" "matris" feminine ; -- [XXXAX] :: mother, foster mother; lady, matron; origin, source, motherland, mother city; matercula_F_N = mkN "matercula" ; -- [XXXDX] :: affectionate term for mother; materia_F_N = mkN "materia" ; -- [XXXAO] :: ||means, occasion, condition effecting action; latent ability/potential; materialis_A = mkA "materialis" "materialis" "materiale" ; -- [XXXFO] :: material; of/related to subject matter; of/belonging to matter; @@ -25669,16 +25662,16 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat materialiter_Adv = mkAdv "materialiter" ; -- [DXXFS] :: materially; according to the occasion; materiarius_A = mkA "materiarius" "materiaria" "materiarium" ; -- [XXXEO] :: timber-, of/concerned with timber; materiarius_M_N = mkN "materiarius" ; -- [XXXEO] :: timber merchant; - materiatio_F_N = mkN "materiatio" "materiationis " feminine ; -- [XXXEO] :: woodwork, carpentry; wooden structure; timbering; framework (Cal); + materiatio_F_N = mkN "materiatio" "materiationis" feminine ; -- [XXXEO] :: woodwork, carpentry; wooden structure; timbering; framework (Cal); materiatura_F_N = mkN "materiatura" ; -- [XXXFO] :: woodwork, carpentry; - materies_F_N = mkN "materies" "materiei " feminine ; -- [XXXAO] :: ||means, occasion, condition effecting action; latent ability/potential; + materies_F_N = mkN "materies" "materiei" feminine ; -- [XXXAO] :: ||means, occasion, condition effecting action; latent ability/potential; materior_V = mkV "materiari" ; -- [XXXDX] :: get timber; maternus_A = mkA "maternus" "materna" "maternum" ; -- [XXXBX] :: maternal, motherly, of a mother; matertera_F_N = mkN "matertera" ; -- [XXXEC] :: maternal aunt; mathematica_F_N = mkN "mathematica" ; -- [XXXDX] :: mathematics; astrology; mathematicus_A = mkA "mathematicus" "mathematica" "mathematicum" ; -- [XXXDX] :: mathematical; astrological; mathematicus_M_N = mkN "mathematicus" ; -- [XXXDX] :: mathematician; astrologer; - mathesis_F_N = mkN "mathesis" "mathesis " feminine ; -- [XXXES] :: maths; science; astrology; + mathesis_F_N = mkN "mathesis" "mathesis" feminine ; -- [XXXES] :: maths; science; astrology; matricalis_A = mkA "matricalis" "matricalis" "matricale" ; -- [GXXEK] :: of a matrix; matricida_C_N = mkN "matricida" ; -- [XXXEC] :: matricide; matricidium_N_N = mkN "matricidium" ; -- [XXXEC] :: slaying of a mother, matricide; @@ -25688,17 +25681,17 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat matrimonialiter_Adv = mkAdv "matrimonialiter" ; -- [XXXET] :: matrimonially; matrimonium_N_N = mkN "matrimonium" ; -- [XXXBX] :: marriage; matrimony; matrimus_A = mkA "matrimus" "matrima" "matrimum" ; -- [XXXDX] :: having mother living; - matrix_F_N = mkN "matrix" "matricis " feminine ; -- [XAXCO] :: dam, female animal kept for breeding; parent tree; register, list; + matrix_F_N = mkN "matrix" "matricis" feminine ; -- [XAXCO] :: dam, female animal kept for breeding; parent tree; register, list; matrona_F_N = mkN "matrona" ; -- [XXXDX] :: wife; matron; matronalis_A = mkA "matronalis" "matronalis" "matronale" ; -- [XXXDX] :: of or befitting a married woman; matta_F_N = mkN "matta" ; -- [XXXEC] :: mat of rushes; mattea_F_N = mkN "mattea" ; -- [XXXEC] :: dainty dish; mattya_F_N = mkN "mattya" ; -- [XXXEC] :: dainty dish; matula_F_N = mkN "matula" ; -- [XXXDX] :: jar, vessel for liquids; chamber pot; blockhead; - maturatio_F_N = mkN "maturatio" "maturationis " feminine ; -- [GXXEK] :: maturation; + maturatio_F_N = mkN "maturatio" "maturationis" feminine ; -- [GXXEK] :: maturation; mature_Adv = mkAdv "mature" ; -- [XXXDX] :: quickly; at the right time; in time; early, prematurely; maturesco_V2 = mkV2 (mkV "maturescere" "maturesco" "maturui" nonExist ) ; -- [XXXDX] :: become ripe, ripen mature; - maturitas_F_N = mkN "maturitas" "maturitatis " feminine ; -- [XXXDX] :: ripeness; + 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; maturus_A = mkA "maturus" ; -- [XXXAX] :: early, speedy; ripe; mature, mellow; timely, seasonable; @@ -25708,28 +25701,28 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat maxillaris_A = mkA "maxillaris" "maxillaris" "maxillare" ; -- [XBXEO] :: of/belonging to the jaw; molar (teeth); maximalista_M_N = mkN "maximalista" ; -- [GXXEK] :: maximalist; maxime_Adv = mkAdv "maxime" ; -- [XXXAO] :: especially, chiefly; certainly; most, very much; (forms SUPER w/ADJ/ADV); - maximitas_F_N = mkN "maximitas" "maximitatis " feminine ; -- [XXXEC] :: greatness, size; + maximitas_F_N = mkN "maximitas" "maximitatis" feminine ; -- [XXXEC] :: greatness, size; maximopere_Adv = mkAdv "maximopere" ; -- [XXXFS] :: greatly, exceedingly, with great endeavor; very much; particularly, especially; maximus_A = mkA "maximus" "maxima" "maximum" ; -- [XXXAO] :: greatest/biggest/largest; longest; oldest; highest, utmost; leading, chief; maxume_Adv = mkAdv "maxume" ; -- [BXXAO] :: especially, chiefly; certainly; most, very much; (forms SUPER w/ADJ/ADV); maxumus_A = mkA "maxumus" "maxuma" "maxumum" ; -- [BXXAO] :: greatest/biggest/largest; longest; oldest; highest, utmost; leading, chief; - mazer_F_N = mkN "mazer" "mazeris " feminine ; -- [EEXFM] :: bastard, one of illegitimate birth; mongrel (Latham); (Hebrew); - mazer_M_N = mkN "mazer" "mazeris " masculine ; -- [EEXFM] :: bastard, one of illegitimate birth; mongrel (Latham); (Hebrew); - mazonomon_N_N = mkN "mazonomon" "mazonomi " neuter ; -- [XXXEC] :: charger, large dish; + mazer_F_N = mkN "mazer" "mazeris" feminine ; -- [EEXFM] :: bastard, one of illegitimate birth; mongrel (Latham); (Hebrew); + mazer_M_N = mkN "mazer" "mazeris" masculine ; -- [EEXFM] :: bastard, one of illegitimate birth; mongrel (Latham); (Hebrew); + mazonomon_N_N = mkN "mazonomon" "mazonomi" neuter ; -- [XXXEC] :: charger, large dish; mazonomus_M_N = mkN "mazonomus" ; -- [XXXEC] :: charger, large dish; mazza_F_N = mkN "mazza" ; -- [FWXFE] :: mace; club; mazzerius_M_N = mkN "mazzerius" ; -- [FWXFE] :: mace-bearer; measurabilis_A = mkA "measurabilis" "measurabilis" "measurabile" ; -- [GSXEE] :: measurable; - meator_M_N = mkN "meator" "meatoris " masculine ; -- [XXXFO] :: traveler; passer-by; (of Mercury as messenger of gods L+S); (not meteor?); - meatus_M_N = mkN "meatus" "meatus " masculine ; -- [XXXCO] :: movement along line, course/path; progress; line followed; channel; passage-way; + meator_M_N = mkN "meator" "meatoris" masculine ; -- [XXXFO] :: traveler; passer-by; (of Mercury as messenger of gods L+S); (not meteor?); + meatus_M_N = mkN "meatus" "meatus" masculine ; -- [XXXCO] :: movement along line, course/path; progress; line followed; channel; passage-way; mecastor_Interj = ss "mecastor" ; -- [XXXDO] :: by Castor!; (oath used by women); mechanicus_A = mkA "mechanicus" "mechanica" "mechanicum" ; -- [XXXEO] :: mechanical; of/concerned with machines/engineering; mechanicus_M_N = mkN "mechanicus" ; -- [XXXEO] :: engineer; mechanic; acrobat performing w/gymnastic apparatus; mechanismus_M_N = mkN "mechanismus" ; -- [GXXEK] :: mechanism; - meddix_M_N = mkN "meddix" "meddicis " masculine ; -- [XLIEC] :: Oscan magistrate; + meddix_M_N = mkN "meddix" "meddicis" masculine ; -- [XLIEC] :: Oscan magistrate; medela_F_N = mkN "medela" ; -- [XBXCO] :: cure, remedial treatment; healing, healing power (Sax); health; medella_F_N = mkN "medella" ; -- [XBXCO] :: cure, remedial treatment; healing, healing power (Sax); health; - medens_M_N = mkN "medens" "medentis " masculine ; -- [XXXDX] :: physician, doctor; + medens_M_N = mkN "medens" "medentis" masculine ; -- [XXXDX] :: physician, doctor; medeor_V = mkV "mederi" ; -- [XXXDX] :: heal, cure; remedy, assuage, comfort, amend; mediaevalis_A = mkA "mediaevalis" "mediaevalis" "mediaevale" ; -- [GXXEK] :: medieval; medians_A = mkA "medians" "mediantis"; -- [DXXEE] :: halved, divided in the middle; @@ -25738,33 +25731,33 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat medianus_A = mkA "medianus" "mediana" "medianum" ; -- [EXXFS] :: in-the-middle; middle; mediastinus_M_N = mkN "mediastinus" ; -- [XXXEC] :: drudge; mediate_Adv = mkAdv "mediate" ; -- [FXXEE] :: by means of; - mediator_M_N = mkN "mediator" "mediatoris " masculine ; -- [XXXFO] :: mediator; intermediary, go between; middle man; - mediatrix_F_N = mkN "mediatrix" "mediatricis " feminine ; -- [XXXFO] :: mediator (female); intermediary, go between; + mediator_M_N = mkN "mediator" "mediatoris" masculine ; -- [XXXFO] :: mediator; intermediary, go between; middle man; + mediatrix_F_N = mkN "mediatrix" "mediatricis" feminine ; -- [XXXFO] :: mediator (female); intermediary, go between; medica_F_N = mkN "medica" ; -- [XAXEO] :: kind of clover; lucerne (Medicago sativa, resembles clover); (elecampane?); medicabilis_A = mkA "medicabilis" "medicabilis" "medicabile" ; -- [XBXDX] :: curable; - medicamen_N_N = mkN "medicamen" "medicaminis " neuter ; -- [XBXBO] :: drug, remedy, medicine; cosmetic; substance to treat seeds/plants; dye; + medicamen_N_N = mkN "medicamen" "medicaminis" neuter ; -- [XBXBO] :: drug, remedy, medicine; cosmetic; substance to treat seeds/plants; dye; medicamentum_N_N = mkN "medicamentum" ; -- [XBXDX] :: drug, remedy, medicine; - medice_F_N = mkN "medice" "medices " feminine ; -- [XBXEO] :: doctor (female), physician, healer; + medice_F_N = mkN "medice" "medices" feminine ; -- [XBXEO] :: doctor (female), physician, healer; medicina_F_N = mkN "medicina" ; -- [XBXBO] :: art/practice of medicine, medicine; clinic; treatment, dosing; remedy, cure; medicinus_A = mkA "medicinus" "medicina" "medicinum" ; -- [XBXEO] :: of the art/practice of medicine/healing, medical; [w/ars or res => medicine]; medico_V = mkV "medicare" ; -- [XBXDX] :: heal, cure; medicate; dye; medicor_V = mkV "medicari" ; -- [XBXDX] :: heal, cure; medicus_A = mkA "medicus" "medica" "medicum" ; -- [XBXBO] :: healing, curative, medical; [digitus ~ => fourth finger of the hand]; medicus_M_N = mkN "medicus" ; -- [XBXCO] :: doctor, physician; fourth finger of the hand; - medidies_M_N = mkN "medidies" "medidiei " masculine ; -- [XXXFS] :: noon; midday; south; (meridies); + medidies_M_N = mkN "medidies" "medidiei" masculine ; -- [XXXFS] :: noon; midday; south; (meridies); medie_Adv = mkAdv "medie" ; -- [XXXDX] :: moderately; in a manner avoiding both extremely, moderate; ambiguous; - medietas_F_N = mkN "medietas" "medietatis " feminine ; -- [XXXCO] :: center/mid point/part; half; intermediate course/state; fact of being in middle; + medietas_F_N = mkN "medietas" "medietatis" feminine ; -- [XXXCO] :: center/mid point/part; half; intermediate course/state; fact of being in middle; medimnum_N_N = mkN "medimnum" ; -- [XSXDX] :: dry measure, Greek bushel (6 modii); measure of land in Cyrenaica; medimnus_M_N = mkN "medimnus" ; -- [XSXDX] :: dry measure, Greek bushel (6 modii); measure of land in Cyrenaica; medio_V = mkV "mediare" ; -- [DXXES] :: halve, divide in the middle; be in the middle; mediocris_A = mkA "mediocris" "mediocris" "mediocre" ; -- [XXXBO] :: |commonplace; undistinguished; of humble station; mediocre; fairly small; minor; - mediocritas_F_N = mkN "mediocritas" "mediocritatis " feminine ; -- [XXXBO] :: |mediocrity; limited powers/ability; smallness; humbleness (of station); + mediocritas_F_N = mkN "mediocritas" "mediocritatis" feminine ; -- [XXXBO] :: |mediocrity; limited powers/ability; smallness; humbleness (of station); mediocriter_Adv =mkAdv "mediocriter" "mediocrius" "mediocrissime" ; -- [XXXCO] :: to moderate/subdued extent/degree, ordinarily/moderately/tolerably; not very; medioximus_A = mkA "medioximus" "medioxima" "medioximum" ; -- [EXXDX] :: middlemost; meditabundus_A = mkA "meditabundus" "meditabunda" "meditabundum" ; -- [DXXFS] :: earnestly mediating/considering/reflecting; designing; meditamentum_N_N = mkN "meditamentum" ; -- [XXXEC] :: preparation, practice; meditamenum_N_N = mkN "meditamenum" ; -- [XXXDX] :: training exercise; - meditatio_F_N = mkN "meditatio" "meditationis " feminine ; -- [XXXDX] :: contemplation, meditation; practicing; + meditatio_F_N = mkN "meditatio" "meditationis" feminine ; -- [XXXDX] :: contemplation, meditation; practicing; mediterraneus_A = mkA "mediterraneus" "mediterranea" "mediterraneum" ; -- [XXXDX] :: inland, remote from the coast; medito_V = mkV "meditare" ; -- [FXXCE] :: ||rehearse; go over, say to oneself; declaim, work over (song) in performance; meditor_V = mkV "meditari" ; -- [XXXAO] :: ||rehearse; go over, say to oneself; declaim, work over (song) in performance; @@ -25775,30 +25768,30 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat medulla_F_N = mkN "medulla" ; -- [XXXBX] :: marrow, kernel; innermost part; quintessence; medullitus_Adv = mkAdv "medullitus" ; -- [XXXDO] :: inwardly, from depths of heart/mind; from the marrow; megalophonum_N_N = mkN "megalophonum" ; -- [GTXEK] :: loudspeaker; - megestanis_M_N = mkN "megestanis" "megestanis " masculine ; -- [ELXDW] :: nobles (pl.), grandees, magnates, leaders; nobles of Parthia/eastern countries; + megestanis_M_N = mkN "megestanis" "megestanis" masculine ; -- [ELXDW] :: nobles (pl.), grandees, magnates, leaders; nobles of Parthia/eastern countries; megestanus_M_N = mkN "megestanus" ; -- [ELXDW] :: nobles (pl.), grandees, magnates, leaders; nobles of Parthia/eastern countries; - megistanis_M_N = mkN "megistanis" "megistanis " masculine ; -- [XLXDO] :: nobles (pl.), grandees, magnates, leaders; nobles of Parthia/eastern countries; + megistanis_M_N = mkN "megistanis" "megistanis" masculine ; -- [XLXDO] :: nobles (pl.), grandees, magnates, leaders; nobles of Parthia/eastern countries; megistanus_M_N = mkN "megistanus" ; -- [ELXDW] :: nobles (pl.), grandees, magnates, leaders; nobles of Parthia/eastern countries; mehercle_Interj = ss "mehercle" ; -- [XXXDX] :: By Hercules! assuredly, indeed; 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]; + 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; melicus_A = mkA "melicus" "melica" "melicum" ; -- [XXXDX] :: musical, lyrical; melicus_M_N = mkN "melicus" ; -- [XXXDX] :: lyric poet; - melilotos_F_N = mkN "melilotos" "meliloti " feminine ; -- [XAXNO] :: clover (species of, Melilotus or Trifolium); melilotus; serta Campanica; + melilotos_F_N = mkN "melilotos" "meliloti" feminine ; -- [XAXNO] :: clover (species of, Melilotus or Trifolium); melilotus; serta Campanica; melilotum_N_N = mkN "melilotum" ; -- [XAXNO] :: clover (species of, Melilotus or Trifolium); melilotus; serta Campanica; melimelum_N_N = mkN "melimelum" ; -- [XAXEC] :: honey apples (pl.); - melioratio_F_N = mkN "melioratio" "meliorationis " feminine ; -- [FXXEM] :: improvement; + melioratio_F_N = mkN "melioratio" "meliorationis" feminine ; -- [FXXEM] :: improvement; melioro_V = mkV "meliorare" ; -- [EXXCS] :: improve; make better; - melisma_N_N = mkN "melisma" "melismatis " neuter ; -- [FEXFE] :: modulation in chant; + melisma_N_N = mkN "melisma" "melismatis" neuter ; -- [FEXFE] :: modulation in chant; melismaticus_A = mkA "melismaticus" "melismatica" "melismaticum" ; -- [FEXFE] :: melodious; melisphyllum_N_N = mkN "melisphyllum" ; -- [XXXEC] :: balm; melissa_F_N = mkN "melissa" ; -- [GXXEK] :: balm; - melissophyllon_N_N = mkN "melissophyllon" "melissophylli " neuter ; -- [XXXEC] :: balm; + melissophyllon_N_N = mkN "melissophyllon" "melissophylli" neuter ; -- [XXXEC] :: balm; meliuscule_Adv = mkAdv "meliuscule" ; -- [XXXEC] :: somewhat better, pretty well; meliusculus_A = mkA "meliusculus" "meliuscula" "meliusculum" ; -- [XXXEC] :: somewhat better; melleus_A = mkA "melleus" "mellea" "melleum" ; -- [XAXFS] :: honey-; of honey; @@ -25806,22 +25799,22 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat mellificus_A = mkA "mellificus" "mellifica" "mellificum" ; -- [EAXFS] :: honey-making; mellitus_A = mkA "mellitus" "mellita" "mellitum" ; -- [XXXDX] :: sweetened with honey; honey-sweet; mello_V = mkV "mellare" ; -- [XXXES] :: make honey; collect honey; - melo_M_N = mkN "melo" "melonis " masculine ; -- [XAXDS] :: melon (esp. apple-shaped); [Melo => old name for river Nile]; - melodes_F_N = mkN "melodes" "melodis " feminine ; -- [DDXES] :: pleasant/charming singer; - melodes_M_N = mkN "melodes" "melodis " masculine ; -- [DDXES] :: pleasant/charming singer; + melo_M_N = mkN "melo" "melonis" masculine ; -- [XAXDS] :: melon (esp. apple-shaped); [Melo => old name for river Nile]; + melodes_F_N = mkN "melodes" "melodis" feminine ; -- [DDXES] :: pleasant/charming singer; + melodes_M_N = mkN "melodes" "melodis" masculine ; -- [DDXES] :: pleasant/charming singer; melodia_F_N = mkN "melodia" ; -- [DDXES] :: melody; pleasant song; - melodrama_N_N = mkN "melodrama" "melodramatis " neuter ; -- [GXXEK] :: opera; + melodrama_N_N = mkN "melodrama" "melodramatis" neuter ; -- [GXXEK] :: opera; melodramaticus_A = mkA "melodramaticus" "melodramatica" "melodramaticum" ; -- [GXXEK] :: melodramatic; (theatrum melodramaticum = opera); melodramatium_N_N = mkN "melodramatium" ; -- [GXXEK] :: operetta; melodum_N_N = mkN "melodum" ; -- [XPXFO] :: poetry, songs (pl.); melodus_M_N = mkN "melodus" ; -- [XPXFO] :: poets (pl.); melongena_F_N = mkN "melongena" ; -- [GAXEK] :: eggplant; - melopepo_M_N = mkN "melopepo" "melopeponis " masculine ; -- [GAXEK] :: watermelon; - melos_N_N = mkN "melos" "meli " neuter ; -- [XDXCS] :: song, tune, air, strain, lay, melody; hymn; + melopepo_M_N = mkN "melopepo" "melopeponis" masculine ; -- [GAXEK] :: watermelon; + melos_N_N = mkN "melos" "meli" neuter ; -- [XDXCS] :: song, tune, air, strain, lay, melody; hymn; melota_F_N = mkN "melota" ; -- [EAXES] :: sheepskin; - melote_F_N = mkN "melote" "melotes " feminine ; -- [EAXES] :: sheepskin; - melotes_F_N = mkN "melotes" "melotedis " feminine ; -- [EAXFS] :: sheepskin; - melotis_F_N = mkN "melotis" "melotidis " feminine ; -- [EAXFS] :: sheepskin; + melote_F_N = mkN "melote" "melotes" feminine ; -- [EAXES] :: sheepskin; + melotes_F_N = mkN "melotes" "melotedis" feminine ; -- [EAXFS] :: sheepskin; + 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; mem_N = constN "mem" neuter ; -- [DEQEW] :: mem; (13th letter of Hebrew alphabet); (transliterate as M); @@ -25833,10 +25826,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat memorabilis_A = mkA "memorabilis" "memorabilis" "memorabile" ; -- [XXXDX] :: memorable; remarkable; memorandum_N_N = mkN "memorandum" ; -- [GXXEK] :: memorandum; memoria_F_N = mkN "memoria" ; -- [XXXAX] :: memory, recollection; history; time within memory [~ tenere => to remember]; - memorial_N_N = mkN "memorial" "memorialis " neuter ; -- [XXXDO] :: memorial; records/memoranda (pl.); sign of remembrance, monument (Souter); - memoriale_N_N = mkN "memoriale" "memorialis " neuter ; -- [GXXEK] :: memorandum; memory; + memorial_N_N = mkN "memorial" "memorialis" neuter ; -- [XXXDO] :: memorial; records/memoranda (pl.); sign of remembrance, monument (Souter); + memoriale_N_N = mkN "memoriale" "memorialis" neuter ; -- [GXXEK] :: memorandum; memory; memorialis_A = mkA "memorialis" "memorialis" "memoriale" ; -- [XXXDO] :: serving as a memorial; memorial; [w/liber => book of records/memoranda]; - memorialis_M_N = mkN "memorialis" "memorialis " masculine ; -- [DXXFS] :: historiographer royal, man employed in the emperor's secretarial bureau; + memorialis_M_N = mkN "memorialis" "memorialis" masculine ; -- [DXXFS] :: historiographer royal, man employed in the emperor's secretarial bureau; memoriola_F_N = mkN "memoriola" ; -- [XXXEC] :: memory; memoriter_Adv = mkAdv "memoriter" ; -- [XXXDX] :: from memory; memoro_V = mkV "memorare" ; -- [XXXAX] :: remember; be mindful of (w/GEN/ACC); mention/recount/relate, remind/speak of; @@ -25846,21 +25839,21 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat mendacium_N_N = mkN "mendacium" ; -- [XXXDX] :: lie, lying, falsehood, untruth; counterfeit, fraud; mendaciunculum_N_N = mkN "mendaciunculum" ; -- [XXXDX] :: white lie, fib, little untruth; mendax_A = mkA "mendax" "mendacis"; -- [XXXBX] :: lying, false; deceitful; counterfeit; - mendicatio_F_N = mkN "mendicatio" "mendicationis " feminine ; -- [XXXDX] :: begging; - mendicitas_F_N = mkN "mendicitas" "mendicitatis " feminine ; -- [XXXEC] :: beggary; + mendicatio_F_N = mkN "mendicatio" "mendicationis" feminine ; -- [XXXDX] :: begging; + mendicitas_F_N = mkN "mendicitas" "mendicitatis" feminine ; -- [XXXEC] :: beggary; mendico_V = mkV "mendicare" ; -- [XXXCO] :: beg for; be a beggar, go begging; mendicor_V = mkV "mendicari" ; -- [XXXDO] :: beg for; be a beggar, go begging; mendicus_A = mkA "mendicus" "mendica" "mendicum" ; -- [XXXEC] :: poor as a beggar, beggarly; paltry, pitiful; mendosus_A = mkA "mendosus" "mendosa" "mendosum" ; -- [XXXDX] :: full of faults, faulty; erroneous; prone to error; mendum_N_N = mkN "mendum" ; -- [XXXDX] :: bodily defect, blemish; fault, error (usu. in writing); - mens_F_N = mkN "mens" "mentis " feminine ; -- [XXXAX] :: mind; reason, intellect, judgment; plan, intention, frame of mind; courage; + mens_F_N = mkN "mens" "mentis" feminine ; -- [XXXAX] :: mind; reason, intellect, judgment; plan, intention, frame of mind; courage; mensa_F_N = mkN "mensa" ; -- [XXXBX] :: table; course, meal; banker's counter; mensalis_A = mkA "mensalis" "mensalis" "mensale" ; -- [GXXEK] :: table-; of a table; mensarius_M_N = mkN "mensarius" ; -- [XXXDX] :: money-changer, banker; treasury official; - mensis_M_N = mkN "mensis" "mensis " masculine ; -- [XXXAX] :: month; - mensor_M_N = mkN "mensor" "mensoris " masculine ; -- [XXXDX] :: land-surveyor; surveyor of building-works; + mensis_M_N = mkN "mensis" "mensis" masculine ; -- [XXXAX] :: month; + mensor_M_N = mkN "mensor" "mensoris" masculine ; -- [XXXDX] :: land-surveyor; surveyor of building-works; menstrualis_A = mkA "menstrualis" "menstrualis" "menstruale" ; -- [XBXEO] :: liable to menstruate (monthly); in process of menstruation; lasting a month; - menstruatio_F_N = mkN "menstruatio" "menstruationis " feminine ; -- [GXXEK] :: menstruation; + menstruatio_F_N = mkN "menstruatio" "menstruationis" feminine ; -- [GXXEK] :: menstruation; menstruo_V = mkV "menstruare" ; -- [DXXES] :: menstruate, have period; have monthly term; menstruo_V2 = mkV2 (mkV "menstruare") ; -- [DEXDS] :: pollute; defile; menstruum_N_N = mkN "menstruum" ; -- [XXXCO] :: monthly payment/term; menstrual discharge (usu. pl.); monthly sacrifices (L+S); @@ -25872,24 +25865,24 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat menta_F_N = mkN "menta" ; -- [XXXDX] :: mint; any cultivated mint; 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; + 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); meo_V = mkV "meare" ; -- [XXXBX] :: go along, pass, travel; - mephitis_F_N = mkN "mephitis" "mephitis " feminine ; -- [XBXEC] :: noxious exhalation; malaria; + mephitis_F_N = mkN "mephitis" "mephitis" feminine ; -- [XBXEC] :: noxious exhalation; malaria; meracus_A = mkA "meracus" "meraca" "meracum" ; -- [XXXDX] :: undiluted, neat; mercantia_F_N = mkN "mercantia" ; -- [EXXFS] :: trade; - mercator_M_N = mkN "mercator" "mercatoris " masculine ; -- [XXXDX] :: trader, merchant; + mercator_M_N = mkN "mercator" "mercatoris" masculine ; -- [XXXDX] :: trader, merchant; mercatura_F_N = mkN "mercatura" ; -- [XXXDX] :: trade, commerce; - mercatus_M_N = mkN "mercatus" "mercatus " masculine ; -- [XXXDX] :: gathering for the purposes of commerce, market; fair; + mercatus_M_N = mkN "mercatus" "mercatus" masculine ; -- [XXXDX] :: gathering for the purposes of commerce, market; fair; mercedula_F_N = mkN "mercedula" ; -- [XXXEC] :: low wages or rent; mercenarius_A = mkA "mercenarius" "mercenaria" "mercenarium" ; -- [XXXDX] :: hired for wages; paid, hired; mercenarius_M_N = mkN "mercenarius" ; -- [XXXDX] :: laborer, working man; mercennarius_A = mkA "mercennarius" "mercennaria" "mercennarium" ; -- [XXXDX] :: hired, mercenary; mercennarius_M_N = mkN "mercennarius" ; -- [XXXDX] :: hired worker; mercenary; - merces_F_N = mkN "merces" "mercedis " feminine ; -- [XXXDX] :: pay, recompense, hire, salary, reward; rent, price; bribe; + merces_F_N = mkN "merces" "mercedis" feminine ; -- [XXXDX] :: pay, recompense, hire, salary, reward; rent, price; bribe; mercimonium_N_N = mkN "mercimonium" ; -- [XXXEC] :: goods, merchandise; mercor_V = mkV "mercari" ; -- [XXXDX] :: trade; buy; merda_F_N = mkN "merda" ; -- [XXXDX] :: dung, excrement; (rude); @@ -25900,16 +25893,16 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat meretricium_N_N = mkN "meretricium" ; -- [XXXCO] :: art of courtesan; trade of harlot; association with courtesans; meretricius_A = mkA "meretricius" "meretricia" "meretricium" ; -- [XXXCO] :: of/belonging to/typical of a courtesan/prostitute/harlot; meretricula_F_N = mkN "meretricula" ; -- [XXXCO] :: courtesan; (often derogatory); harlot; - meretrix_F_N = mkN "meretrix" "meretricis " feminine ; -- [XXXCO] :: courtesan, kept woman; public prostitute; harlot; + 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; + 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; meridianus_M_N = mkN "meridianus" ; -- [GSXEK] :: meridian (geography); - meridiatio_F_N = mkN "meridiatio" "meridiationis " feminine ; -- [XXXDX] :: midday nap, siesta; - meridies_M_N = mkN "meridies" "meridiei " masculine ; -- [XXXDX] :: noon; midday; south; + meridiatio_F_N = mkN "meridiatio" "meridiationis" feminine ; -- [XXXDX] :: midday nap, siesta; + meridies_M_N = mkN "meridies" "meridiei" masculine ; -- [XXXDX] :: noon; midday; south; meridio_V = mkV "meridiare" ; -- [XXXEC] :: take a siesta; meridionalis_A = mkA "meridionalis" "meridionalis" "meridionale" ; -- [DXXFS] :: southern; merito_Adv = mkAdv "merito" ; -- [XXXDX] :: deservedly; rightly; @@ -25917,68 +25910,68 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat meritorius_A = mkA "meritorius" "meritoria" "meritorium" ; -- [XXXEC] :: hired; meritum_N_N = mkN "meritum" ; -- [XXXDX] :: merit, service; value, due reward; meritus_A = mkA "meritus" "merita" "meritum" ; -- [XXXDX] :: deserved, due; - merops_F_N = mkN "merops" "meropis " feminine ; -- [XAXEC] :: bird, the bee-eater; + merops_F_N = mkN "merops" "meropis" feminine ; -- [XAXEC] :: bird, the bee-eater; merso_V = mkV "mersare" ; -- [XXXDX] :: dip (in), immerse; overwhelm, drown; merula_F_N = mkN "merula" ; -- [XXXDX] :: blackbird; a dark-colored fish, the wrasse; merum_N_N = mkN "merum" ; -- [XXXDX] :: wine (unmixed with water); merus_A = mkA "merus" "mera" "merum" ; -- [XXXAX] :: unmixed (wine), pure, only; bare, mere, sheer; - merx_F_N = mkN "merx" "mercis " feminine ; -- [XXXAX] :: commodity; merchandise (pl.), goods; + merx_F_N = mkN "merx" "mercis" feminine ; -- [XXXAX] :: commodity; merchandise (pl.), goods; 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; + 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; 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; - messis_M_N = mkN "messis" "messis " masculine ; -- [XXXBX] :: harvest, crop; harvest time; - messor_M_N = mkN "messor" "messoris " masculine ; -- [XXXDX] :: reaper, harvester; + messis_F_N = mkN "messis" "messis" feminine ; -- [XXXBX] :: harvest, crop; harvest time; + messis_M_N = mkN "messis" "messis" masculine ; -- [XXXBX] :: harvest, crop; harvest time; + messor_M_N = mkN "messor" "messoris" masculine ; -- [XXXDX] :: reaper, harvester; mestitius_A = mkA "mestitius" "mestitia" "mestitium" ; -- [EXXEE] :: of mixed race; mixed-blood; half-breed; mestizo; mongrel; mesuagium_N_N = mkN "mesuagium" ; -- [FLXFJ] :: messuage, building with land and out-buildings; meta_F_N = mkN "meta" ; -- [XXXDX] :: cone, pyramid; conical column, turning point at circus, goal; end, boundary; metabolicus_A = mkA "metabolicus" "metabolica" "metabolicum" ; -- [GXXEK] :: metabolic; metabolismus_M_N = mkN "metabolismus" ; -- [GXXEK] :: metabolism; metallum_N_N = mkN "metallum" ; -- [XXXBX] :: metal; mine; quarry; - metamorphosis_F_N = mkN "metamorphosis" "metamorphosis " feminine ; -- [XXXDX] :: metamorphosis, transformation; (pl.) a poem by Ovid; + metamorphosis_F_N = mkN "metamorphosis" "metamorphosis" feminine ; -- [XXXDX] :: metamorphosis, transformation; (pl.) a poem by Ovid; metaphora_F_N = mkN "metaphora" ; -- [XGXEC] :: metaphor; metaphoricus_A = mkA "metaphoricus" "metaphorica" "metaphoricum" ; -- [ESXDX] :: metaphoric, metaphorical; - metaphrastes_F_N = mkN "metaphrastes" "metaphrastae " feminine ; -- [GGXEE] :: translator of a book; - metaphrastes_M_N = mkN "metaphrastes" "metaphrastae " masculine ; -- [GGXEE] :: translator of a book; + metaphrastes_F_N = mkN "metaphrastes" "metaphrastae" feminine ; -- [GGXEE] :: translator of a book; + metaphrastes_M_N = mkN "metaphrastes" "metaphrastae" masculine ; -- [GGXEE] :: translator of a book; metaphysica_F_N = mkN "metaphysica" ; -- [GXXEK] :: metaphysics; metaphysicus_A = mkA "metaphysicus" "metaphysica" "metaphysicum" ; -- [GXXEK] :: metaphysical; metaphysicus_M_N = mkN "metaphysicus" ; -- [GXXEK] :: metaphysician; metaplasmus_M_N = mkN "metaplasmus" ; -- [EGXFS] :: metaplasm; grammatical change; irregularity; transposition of words/letters; - metastasis_F_N = mkN "metastasis" "metastasis " feminine ; -- [GXXEK] :: metastasis; - metempsychis_F_N = mkN "metempsychis" "metempsychis " feminine ; -- [XEXES] :: soul-migration; transmigration of soul; - metempsychosis_F_N = mkN "metempsychosis" "metempsychosis " feminine ; -- [XEXFS] :: soul transmigration (from one body to another); + metastasis_F_N = mkN "metastasis" "metastasis" feminine ; -- [GXXEK] :: metastasis; + metempsychis_F_N = mkN "metempsychis" "metempsychis" feminine ; -- [XEXES] :: soul-migration; transmigration of soul; + metempsychosis_F_N = mkN "metempsychosis" "metempsychosis" feminine ; -- [XEXFS] :: soul transmigration (from one body to another); meteoricus_A = mkA "meteoricus" "meteorica" "meteoricum" ; -- [GXXEK] :: meteoric; meteorologia_F_N = mkN "meteorologia" ; -- [GSXEK] :: meteorology; meteorologicus_A = mkA "meteorologicus" "meteorologica" "meteorologicum" ; -- [GSXEK] :: meteorological; meteorologus_M_N = mkN "meteorologus" ; -- [GSXEK] :: meteorologist; meteorum_N_N = mkN "meteorum" ; -- [GXXEK] :: meteor; - methados_F_N = mkN "methados" "methadi " feminine ; -- [FXXDE] :: method; mode of proceeding; way of teaching (L+S); + methados_F_N = mkN "methados" "methadi" feminine ; -- [FXXDE] :: method; mode of proceeding; way of teaching (L+S); methanolum_N_N = mkN "methanolum" ; -- [GXXEK] :: methanol (wood alcohol); methodice_Adv = mkAdv "methodice" ; -- [GXXFM] :: methodically; methodicus_A = mkA "methodicus" "methodica" "methodicum" ; -- [GXXEM] :: methodical; methodium_N_N = mkN "methodium" ; -- [XXXEO] :: trick, artifice; jest, joke (L+S); methodologia_F_N = mkN "methodologia" ; -- [GXXEK] :: methodology; - methodos_F_N = mkN "methodos" "methodi " feminine ; -- [XXXDO] :: method; mode of proceeding; way of teaching (L+S); + 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; + 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; metricus_A = mkA "metricus" "metrica" "metricum" ; -- [XPXEO] :: metrical (music); of meter; rhythmic (pulse); of measure/measuring (L+S); metricus_M_N = mkN "metricus" ; -- [DPXFO] :: prosodist/prosodian, expert on prosody/meter; - metropolis_F_N = mkN "metropolis" "metropolis " feminine ; -- [XXXEO] :: chief/capital city; city from which other cities have been colonized (L+S); + metropolis_F_N = mkN "metropolis" "metropolis" feminine ; -- [XXXEO] :: chief/capital city; city from which other cities have been colonized (L+S); metropolita_M_N = mkN "metropolita" ; -- [DEXFS] :: metropolitan, bishop in metropolis/chief city; bishop of a metropolitan church; metropolitanus_A = mkA "metropolitanus" "metropolitana" "metropolitanum" ; -- [DEXFS] :: metropolitan, belonging to a metropolis/chief city; 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; 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; + 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; micans_A = mkA "micans" "micantis"; -- [XXXDX] :: flashing, gleaming, sparkling, twinkling, glittering; @@ -25992,29 +25985,29 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat microphonum_N_N = mkN "microphonum" ; -- [HTXEK] :: microphone; microscopicus_A = mkA "microscopicus" "microscopica" "microscopicum" ; -- [GTXEK] :: microscopic; microscopium_N_N = mkN "microscopium" ; -- [GTXEK] :: microscope; - migale_N_N = mkN "migale" "migalis " neuter ; -- [EAXFW] :: migale, shrew (Douay); ferret (King James); shrew-mouse/field-mouse (OED); - migma_N_N = mkN "migma" "migmatis " neuter ; -- [EXXFS] :: mixture; mixed/mingled provender; meslin/mixed grain; - migratio_F_N = mkN "migratio" "migrationis " feminine ; -- [XXXDX] :: change of abode; move; + migale_N_N = mkN "migale" "migalis" neuter ; -- [EAXFW] :: migale, shrew (Douay); ferret (King James); shrew-mouse/field-mouse (OED); + migma_N_N = mkN "migma" "migmatis" neuter ; -- [EXXFS] :: mixture; mixed/mingled provender; meslin/mixed grain; + 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; 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; + 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); - miliare_N_N = mkN "miliare" "miliaris " neuter ; -- [EXXEP] :: thousands (pl.); Roman mile (1000 paces); + miliare_N_N = mkN "miliare" "miliaris" neuter ; -- [EXXEP] :: thousands (pl.); Roman mile (1000 paces); miliarium_N_N = mkN "miliarium" ; -- [XXXDX] :: milestone, column resembling a milestone, the one at the Forum; a Roman mile; miliarius_A = mkA "miliarius" "miliaria" "miliarium" ; -- [XXXDX] :: thousands, comprising a thousand, 1000 paces long, weighing 1000 pounds; milies_Adv = mkAdv "milies" ; -- [XXXDX] :: thousand times; innumerable times; milifolia_F_N = mkN "milifolia" ; -- [XAXNO] :: milfoil; (plant w/divided leaves genus); common yarrow; water milfoil; milifolium_N_N = mkN "milifolium" ; -- [XAXNO] :: milfoil; (plant w/divided leaves genus); common yarrow; water milfoil; - milio_M_N = mkN "milio" "milionis " masculine ; -- [GXXEK] :: million; + milio_M_N = mkN "milio" "milionis" masculine ; -- [GXXEK] :: million; milionesimus_A = mkA "milionesimus" "milionesima" "milionesimum" ; -- [GXXEK] :: millionth; milipeda_F_N = mkN "milipeda" ; -- [XAXNO] :: millipede; woodlouse; (any similar insect); militans_A = mkA "militans" "militantis"; -- [FXXEE] :: militant; - militans_M_N = mkN "militans" "militantis " masculine ; -- [FWXEE] :: military man; soldier, warrior; + militans_M_N = mkN "militans" "militantis" masculine ; -- [FWXEE] :: military man; soldier, warrior; militarie_Adv = mkAdv "militarie" ; -- [XWXFS] :: in a military or soldier-like manner; knightly (Latham); militaris_A = mkA "militaris" "militaris" "militare" ; -- [XWXBO] :: military; of/used by the army/war/soldiers; martial; soldierly; warlike; - militaris_M_N = mkN "militaris" "militaris " masculine ; -- [XWXCS] :: military man; soldier, warrior; + militaris_M_N = mkN "militaris" "militaris" masculine ; -- [XWXCS] :: military man; soldier, warrior; militarismus_M_N = mkN "militarismus" ; -- [GXXFK] :: militarism; militaristicus_A = mkA "militaristicus" "militaristica" "militaristicum" ; -- [GXXEE] :: militaristic; militariter_Adv = mkAdv "militariter" ; -- [XWXDO] :: according to military practice/discipline; in manner of a soldier, soldierly; @@ -26025,12 +26018,12 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat milito_V = mkV "militare" ; -- [XWXCO] :: serve as soldier, perform military service, serve in the army; wage/make war; militus_A = mkA "militus" "milita" "militum" ; -- [FAXEM] :: ground, milled (of grain); milium_N_N = mkN "milium" ; -- [XXXDO] :: millet; - mille_N_N = mkN "mille" "millis " neuter ; -- [XXXBO] :: thousand; thousands (men/things); miles; [~ passuum => thousand paces = 1 mile]; + mille_N_N = mkN "mille" "millis" neuter ; -- [XXXBO] :: thousand; thousands (men/things); miles; [~ passuum => thousand paces = 1 mile]; millefolium_N_N = mkN "millefolium" ; -- [DAXNS] :: milfoil plant (Pliny); millennium_N_N = mkN "millennium" ; -- [GXXEK] :: millennium; millenus_A = mkA "millenus" "millena" "millenum" ; -- [FXXEM] :: thousandth; millepeda_F_N = mkN "millepeda" ; -- [DAXNS] :: thousand-feet; millipede; hairy caterpillar; - milliare_N_N = mkN "milliare" "milliaris " neuter ; -- [EXXEV] :: mile; milestone; millennium; a thousand (of something); + milliare_N_N = mkN "milliare" "milliaris" neuter ; -- [EXXEV] :: mile; milestone; millennium; a thousand (of something); milliarium_N_N = mkN "milliarium" ; -- [XXXDX] :: milestone, column resembling a milestone, one at the Forum; Roman mile; milliarius_A = mkA "milliarius" "milliaria" "milliarium" ; -- [XXXDX] :: thousands, comprising a thousand, 1000 paces long, weighing 1000 pounds; milligrammum_N_N = mkN "milligrammum" ; -- [GXXEK] :: milligram; @@ -26048,11 +26041,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat minax_A = mkA "minax" "minacis"; -- [XXXDX] :: threatening; boding ill; mineo_V2 = mkV2 (mkV "minere") ; -- [XXXEC] :: project, overhang; minera_F_N = mkN "minera" ; -- [GXXEK] :: mine (layer); - minerale_N_N = mkN "minerale" "mineralis " neuter ; -- [FLXDM] :: mineral; ore; + 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; + 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; miniatus_A = mkA "miniatus" "miniata" "miniatum" ; -- [XXXEO] :: vermilion; scarlet; colored red with cinnabar (HgS); painted vermilion; @@ -26061,7 +26054,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat ministerialis_A = mkA "ministerialis" "ministerialis" "ministeriale" ; -- [GXXEK] :: ministerial; ministerium_N_N = mkN "ministerium" ; -- [FXXEK] :: ministry (of state); ministra_F_N = mkN "ministra" ; -- [XXXES] :: female attendant; - ministral_M_N = mkN "ministral" "ministralis " masculine ; -- [FXXFM] :: official; E:obedientary; + ministral_M_N = mkN "ministral" "ministralis" masculine ; -- [FXXFM] :: official; E:obedientary; ministro_V2 = mkV2 (mkV "ministrare") Dat_Prep ; -- [XXXBX] :: attend (to), serve, furnish; supply; minitabundus_A = mkA "minitabundus" "minitabunda" "minitabundum" ; -- [XXXEC] :: threatening; minito_V = mkV "minitare" ; -- [XXXEO] :: threaten (to), use threats; constitute a danger/threat; hold out as a threat; @@ -26069,18 +26062,18 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat minium_N_N = mkN "minium" ; -- [XXXEC] :: native cinnabar; red lead, vermilion; minius_A = mkA "minius" "minia" "minium" ; -- [XXXFS] :: cinnabar-red; a river in Lusitania; mino_V2 = mkV2 (mkV "minare") ; -- [DXXDS] :: drive (animals); impel, push, force; threaten?; - minor_M_N = mkN "minor" "minoris " masculine ; -- [XXXDX] :: those inferior in rank/grade/age, subordinate; descendants (pl.); + minor_M_N = mkN "minor" "minoris" masculine ; -- [XXXDX] :: those inferior in rank/grade/age, subordinate; descendants (pl.); 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); + 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; + 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); + 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; minusculus_A = mkA "minusculus" "minuscula" "minusculum" ; -- [XXXCO] :: somewhat smaller, rather small (size/extent); less important, minor; minuta_F_N = mkN "minuta" ; -- [GXXEK] :: minute (measure of time); - minutal_N_N = mkN "minutal" "minutalis " neuter ; -- [XXXFO] :: stew; dish of minced meat/food; ground meat (Cal); hamburger(?); + minutal_N_N = mkN "minutal" "minutalis" neuter ; -- [XXXFO] :: stew; dish of minced meat/food; ground meat (Cal); hamburger(?); minutalis_A = mkA "minutalis" "minutalis" "minutale" ; -- [GXXEK] :: of minutes; minutatim_Adv = mkAdv "minutatim" ; -- [XXXCO] :: one bit at a time, bit by bit, little by little; singly, one by one; gradually; minute_Adv =mkAdv "minute" "minutius" "minutissime" ; -- [XXXCO] :: in small pieces; in miniature scale; meanly, petty; nicely, w/discrimination; @@ -26088,10 +26081,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat minutim_Adv = mkAdv "minutim" ; -- [XXXDO] :: bit by bit; into small pieces; gradually; minutus_A = mkA "minutus" "minuta" "minutum" ; -- [XXXDX] :: small, insignificant, petty; mio_V = mkV "miare" ; -- [XXXDX] :: make water, urinate; - mirabile_N_N = mkN "mirabile" "mirabilis " neuter ; -- [EEXDS] :: miracle; wondrous deed; wonders (pl. Ecc); wonderful things; marvelous works; + mirabile_N_N = mkN "mirabile" "mirabilis" neuter ; -- [EEXDS] :: miracle; wondrous deed; wonders (pl. Ecc); wonderful things; marvelous works; mirabiliarius_M_N = mkN "mirabiliarius" ; -- [DXXES] :: wonder-worker; miracle-worker; mirabilis_A = mkA "mirabilis" "mirabilis" "mirabile" ; -- [XXXCS] :: |strange; singular; E:glorious; E:miraculous; [~ dictu => wonderful to say]; - mirabilitas_F_N = mkN "mirabilitas" "mirabilitatis " feminine ; -- [EEXFS] :: admirable quality; wonderfulness, marvelousness; admirableness; + mirabilitas_F_N = mkN "mirabilitas" "mirabilitatis" feminine ; -- [EEXFS] :: admirable quality; wonderfulness, marvelousness; admirableness; mirabiliter_Adv =mkAdv "mirabiliter" "mirabilius" "mirabilissime" ; -- [XXXCO] :: marvelously, amazingly/remarkably/extraordinarily; to an extraordinary degree; mirabundus_A = mkA "mirabundus" "mirabunda" "mirabundum" ; -- [XXXCO] :: wondering; astonished (at); full of wonder/astonishment (L+S); miracula_F_N = mkN "miracula" ; -- [XXXFS] :: marvelously ugly woman; @@ -26099,9 +26092,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat miraculose_Adv = mkAdv "miraculose" ; -- [FXXDM] :: miraculously; miraculum_N_N = mkN "miraculum" ; -- [XXXBO] :: wonder, marvel; miracle, amazing act/event/object/sight; amazement; freak; miraculus_A = mkA "miraculus" "miracula" "miraculum" ; -- [XXXEO] :: freakish, deformed (persons); - mirator_M_N = mkN "mirator" "miratoris " masculine ; -- [XXXDX] :: admirer; + mirator_M_N = mkN "mirator" "miratoris" masculine ; -- [XXXDX] :: admirer; mire_Adv = mkAdv "mire" ; -- [XXXDX] :: uncommonly, marvelously; in an amazing manner; to a remarkable extent; - mirificatio_F_N = mkN "mirificatio" "mirificationis " feminine ; -- [EEXFP] :: wonderful creative power; + mirificatio_F_N = mkN "mirificatio" "mirificationis" feminine ; -- [EEXFP] :: wonderful creative power; mirificentia_F_N = mkN "mirificentia" ; -- [EEXFS] :: wonder, admiration; mirifico_V2 = mkV2 (mkV "mirificare") ; -- [EEXES] :: exalt, magnify, make wonderful; mirificus_A = mkA "mirificus" "mirifica" "mirificum" ; -- [XXXDX] :: wonderful; amazing; @@ -26117,8 +26110,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - miseratio_F_N = mkN "miseratio" "miserationis " feminine ; -- [XXXDX] :: pity, compassion; - miserator_M_N = mkN "miserator" "miseratoris " masculine ; -- [DXXDS] :: one who pities/has compassion; merciful person; commiserator; + miseratio_F_N = mkN "miseratio" "miserationis" feminine ; -- [XXXDX] :: pity, compassion; + miserator_M_N = mkN "miserator" "miseratoris" masculine ; -- [DXXDS] :: one who pities/has compassion; merciful person; commiserator; 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); @@ -26130,129 +26123,130 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; missicius_A = mkA "missicius" "missicia" "missicium" ; -- [XXXEC] :: discharged from military service; - missile_N_N = mkN "missile" "missilis " neuter ; -- [GWXEK] :: missile; + missile_N_N = mkN "missile" "missilis" neuter ; -- [GWXEK] :: missile; missilis_A = mkA "missilis" "missilis" "missile" ; -- [XXXDX] :: that may be thrown, missile; - missio_F_N = mkN "missio" "missionis " feminine ; -- [XXXDX] :: mission, sending (away); dismissal, discharge (of soldiers); reprieve; + missio_F_N = mkN "missio" "missionis" feminine ; -- [XXXDX] :: mission, sending (away); dismissal, discharge (of soldiers); reprieve; missionalis_A = mkA "missionalis" "missionalis" "missionale" ; -- [GXXEK] :: mission-derived; missionarius_A = mkA "missionarius" "missionaria" "missionarium" ; -- [GEXEK] :: missionary; missionarius_M_N = mkN "missionarius" ; -- [GEXEK] :: missionary; missito_V = mkV "missitare" ; -- [XXXDX] :: send repeatedly; - missus_M_N = mkN "missus" "missus " masculine ; -- [XXXDX] :: sending (away); dispatch; shooting, discharge of missiles; + missus_M_N = mkN "missus" "missus" masculine ; -- [XXXDX] :: sending (away); dispatch; shooting, discharge of missiles; misterium_N_N = mkN "misterium" ; -- [XEXCO] :: mystery, secret service/rite/worship (usu. pl.); secret, things not divulged; - mistes_M_N = mkN "mistes" "mistae " masculine ; -- [XEXEO] :: initiate, one initiated in secret rites; + 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; 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; + mitificatio_F_N = mkN "mitificatio" "mitificationis" feminine ; -- [GXXEK] :: alleviation; mitigo_V = mkV "mitigare" ; -- [XXXDX] :: soften; lighten, alleviate; soothe; civilize; 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; - mitto_V2 = mkV2 (mkV "mittere" "mitto" "misi" "missus ") ; -- [XXXAX] :: send, throw, hurl, cast; let out, release, dismiss; disregard; +-- 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; - mixtio_F_N = mkN "mixtio" "mixtionis " feminine ; -- [XXXCO] :: mixture, admixture; compound; process of mixing/mingling; + mixtio_F_N = mkN "mixtio" "mixtionis" feminine ; -- [XXXCO] :: mixture, admixture; compound; process of mixing/mingling; mixtitius_A = mkA "mixtitius" "mixtitia" "mixtitium" ; -- [EXXES] :: of mixed race; mixed-blood; half-breed; mestizo; mongrel; 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; 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; + 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; - modalitas_F_N = mkN "modalitas" "modalitatis " feminine ; -- [GXXEK] :: mode; + modalitas_F_N = mkN "modalitas" "modalitatis" feminine ; -- [GXXEK] :: mode; moderabilis_A = mkA "moderabilis" "moderabilis" "moderabile" ; -- [XXXDX] :: controllable; - moderamen_N_N = mkN "moderamen" "moderaminis " neuter ; -- [XXXDX] :: rudder; management, government; - moderatio_F_N = mkN "moderatio" "moderationis " feminine ; -- [XXXDX] :: moderation; self control; guidance; government, regulation; - moderator_M_N = mkN "moderator" "moderatoris " masculine ; -- [XXXDX] :: governor, master; user, one who restrains; - moderatrix_F_N = mkN "moderatrix" "moderatricis " feminine ; -- [XXXCO] :: mistress, controller, manager (female); she who restrains/regulates/determines; + moderamen_N_N = mkN "moderamen" "moderaminis" neuter ; -- [XXXDX] :: rudder; management, government; + moderatio_F_N = mkN "moderatio" "moderationis" feminine ; -- [XXXDX] :: moderation; self control; guidance; government, regulation; + moderator_M_N = mkN "moderator" "moderatoris" masculine ; -- [XXXDX] :: governor, master; user, one who restrains; + moderatrix_F_N = mkN "moderatrix" "moderatricis" feminine ; -- [XXXCO] :: mistress, controller, manager (female); she who restrains/regulates/determines; moderatus_A = mkA "moderatus" "moderata" "moderatum" ; -- [XXXDX] :: controlled, restrained, moderate, temperate, sober; modernista_M_N = mkN "modernista" ; -- [GXXEK] :: modernist; - modernitas_F_N = mkN "modernitas" "modernitatis " feminine ; -- [GXXEK] :: modernity; + modernitas_F_N = mkN "modernitas" "modernitatis" feminine ; -- [GXXEK] :: modernity; modernum_N_N = mkN "modernum" ; -- [DXXFS] :: present things/institutions (pl.); modernus_A = mkA "modernus" "moderna" "modernum" ; -- [DXXES] :: modern; modero_V = mkV "moderare" ; -- [XXXDX] :: check, slow down, control; moderor_V = mkV "moderari" ; -- [XXXBX] :: guide; control; regulate; govern; modestia_F_N = mkN "modestia" ; -- [XXXDX] :: restraint, temperateness; discipline; modesty; modestus_A = mkA "modestus" "modesta" "modestum" ; -- [XXXDX] :: restrained, mild; modest; reserved; disciplined; - modiatio_F_N = mkN "modiatio" "modiationis " feminine ; -- [ELXES] :: corn-measuring; measuring by modii; + modiatio_F_N = mkN "modiatio" "modiationis" feminine ; -- [ELXES] :: corn-measuring; measuring by modii; modicum_N_N = mkN "modicum" ; -- [DXXCS] :: short/small time; short distance, little way; little, small amount; modicus_A = mkA "modicus" "modica" "modicum" ; -- [XXXBX] :: moderate; temperate, restrained; small (Bee); modicus_M_N = mkN "modicus" ; -- [FXXDB] :: short/small time; short distance, little way; little, small amount; - modificatio_F_N = mkN "modificatio" "modificationis " feminine ; -- [XXXES] :: measuring; measure; + modificatio_F_N = mkN "modificatio" "modificationis" feminine ; -- [XXXES] :: measuring; measure; modificatus_A = mkA "modificatus" "modificata" "modificatum" ; -- [XXXEC] :: measured; 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 = mkConj "modo" missing ; -- [XXXDX] :: but, if only; but only; - modulamen_N_N = mkN "modulamen" "modulaminis " neuter ; -- [EDXES] :: melody; + 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; - modulator_M_N = mkN "modulator" "modulatoris " masculine ; -- [XDXEO] :: composer, one who makes up tunes; musician, director of music (L+S); measurer; + modulatio_F_N = mkN "modulatio" "modulationis" feminine ; -- [DDXCS] :: |singing, playing; melody, song; rhythmic/regular measure; marching in time; + modulator_M_N = mkN "modulator" "modulatoris" masculine ; -- [XDXEO] :: composer, one who makes up tunes; musician, director of music (L+S); measurer; modulor_V = mkV "modulari" ; -- [XXXBX] :: sing; play; set to music; modulus_M_N = mkN "modulus" ; -- [XXXEC] :: little measure; modus_M_N = mkN "modus" ; -- [XXXAX] :: manner, mode, way, method; rule, rhythm, beat, measure, size; bound, limit; moecha_F_N = mkN "moecha" ; -- [XXXDX] :: adulteress; slut; tart; moechor_V = mkV "moechari" ; -- [XXXDX] :: commit adultery; moechus_M_N = mkN "moechus" ; -- [XXXDX] :: adulterer; - moene_N_N = mkN "moene" "moenis " neuter ; -- [XXXAX] :: defensive/town walls (pl.), bulwarks; fortifications; fortified town; castle; - moenus_N_N = mkN "moenus" "moeneris " neuter ; -- [BXXFS] :: service; duty/office/function; gift, tribute, offering; bribe; (archaic munus); + moene_N_N = mkN "moene" "moenis" neuter ; -- [XXXAX] :: defensive/town walls (pl.), bulwarks; fortifications; fortified town; castle; + moenus_N_N = mkN "moenus" "moeneris" neuter ; -- [BXXFS] :: service; duty/office/function; gift, tribute, offering; bribe; (archaic munus); moerens_A = mkA "moerens" "moerentis"; -- [XXXCO] :: sad, melancholy; mournful, gloomy woeful, doleful; mourning, lamenting (L+S); moereo_V = mkV "moerere" ; -- [XXXBO] :: grieve, be sad, mourn; bewail/mourn for/lament; utter mournfully; - moeror_M_N = mkN "moeror" "moeroris " masculine ; -- [XXXCO] :: grief, sorrow, sadness; mourning; lamentation (L+S); + moeror_M_N = mkN "moeror" "moeroris" masculine ; -- [XXXCO] :: grief, sorrow, sadness; mourning; lamentation (L+S); moeste_Adv = mkAdv "moeste" ; -- [XXXFO] :: sadly; mournfully; sorrowfully (Latham); with sadness (L+S); moestifico_V2 = mkV2 (mkV "moestificare") ; -- [DXXES] :: grieve, make sad/sorrowful, sadden; moestificus_A = mkA "moestificus" "moestifica" "moestificum" ; -- [EEXFS] :: saddening; moestiter_Adv = mkAdv "moestiter" ; -- [XXXFO] :: sadly; mournfully; sorrowfully (Latham); in a way to indicate sorrow (L+S); 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; + 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); 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; + 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; molecula_F_N = mkN "molecula" ; -- [GSXEK] :: molecule; molecularis_A = mkA "molecularis" "molecularis" "moleculare" ; -- [GSXEK] :: molecular; molendinum_N_N = mkN "molendinum" ; -- [EXXFS] :: mill-house; - moles_F_N = mkN "moles" "molis " feminine ; -- [XXXAO] :: ||crowd, throng; heavy responsibility/burden; difficulty/danger; might/force; + moles_F_N = mkN "moles" "molis" feminine ; -- [XXXAO] :: ||crowd, throng; heavy responsibility/burden; difficulty/danger; might/force; 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; 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; + 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; + 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; 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; + 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; 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; + 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; + 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; 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; + 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; momentaneus_A = mkA "momentaneus" "momentanea" "momentaneum" ; -- [DXXCS] :: momentary, of brief duration; quick; @@ -26268,8 +26262,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat monasterialis_A = mkA "monasterialis" "monasterialis" "monasteriale" ; -- [EEXCE] :: monastic; monasterium_N_N = mkN "monasterium" ; -- [EEXAE] :: monastery; monasticus_A = mkA "monasticus" "monastica" "monasticum" ; -- [EEXCE] :: monastic; - monaules_M_N = mkN "monaules" "monaulae " masculine ; -- [XDXFS] :: flutist, player of single flute (monaulos); (also rude sexual reference); - monaulos_M_N = mkN "monaulos" "monauli " masculine ; -- [XDXFS] :: single flute, flute w/single pipe; (also rude sexual reference); + monaules_M_N = mkN "monaules" "monaulae" masculine ; -- [XDXFS] :: flutist, player of single flute (monaulos); (also rude sexual reference); + monaulos_M_N = mkN "monaulos" "monauli" masculine ; -- [XDXFS] :: single flute, flute w/single pipe; (also rude sexual reference); monaulus_M_N = mkN "monaulus" ; -- [XDXFS] :: single flute, flute w/single pipe; (also rude sexual reference); moneaeum_N_N = mkN "moneaeum" ; -- [EAXFP] :: plum; damson; monedula_F_N = mkN "monedula" ; -- [XXXES] :: jackdaw, daw; (Arbe turned into daw for betraying country for gold); @@ -26280,16 +26274,16 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat monetarius_A = mkA "monetarius" "monetaria" "monetarium" ; -- [DXXES] :: of/belonging to mint; monetary; monetarius_M_N = mkN "monetarius" ; -- [DXXDS] :: master of mint; minter/coiner; money-dealer; moneto_V = mkV "monetare" ; -- [FXXFM] :: coin; mint; - monialis_F_N = mkN "monialis" "monialis " feminine ; -- [FEXEE] :: nun; - monile_N_N = mkN "monile" "monilis " neuter ; -- [XXXBX] :: necklace, collar; collar (for horses and other animals); + monialis_F_N = mkN "monialis" "monialis" feminine ; -- [FEXEE] :: nun; + monile_N_N = mkN "monile" "monilis" neuter ; -- [XXXBX] :: necklace, collar; collar (for horses and other animals); monimentum_N_N = mkN "monimentum" ; -- [XXXDX] :: monument; - monitio_F_N = mkN "monitio" "monitionis " feminine ; -- [XXXDX] :: admonition, warning; advice; - monitor_M_N = mkN "monitor" "monitoris " masculine ; -- [XXXDX] :: counselor, preceptor; prompter; + monitio_F_N = mkN "monitio" "monitionis" feminine ; -- [XXXDX] :: admonition, warning; advice; + monitor_M_N = mkN "monitor" "monitoris" masculine ; -- [XXXDX] :: counselor, preceptor; prompter; monitorius_A = mkA "monitorius" "monitoria" "monitorium" ; -- [DXXES] :: serves-to-remind; - monitus_M_N = mkN "monitus" "monitus " masculine ; -- [XXXDX] :: warning, command; advice, counsel; - monoceros_M_N = mkN "monoceros" "monocerotis " masculine ; -- [XXXNO] :: unicorn; (fabulous animal); - monocerotos_M_N = mkN "monocerotos" "monoceroti " masculine ; -- [EXXFW] :: unicorn; (fabulous animal); - monochordon_N_N = mkN "monochordon" "monochordi " neuter ; -- [DDXFS] :: monochord, instrument (1-string+soundboard); (by Guido in teaching); tonometer; + monitus_M_N = mkN "monitus" "monitus" masculine ; -- [XXXDX] :: warning, command; advice, counsel; + monoceros_M_N = mkN "monoceros" "monocerotis" masculine ; -- [XXXNO] :: unicorn; (fabulous animal); + monocerotos_M_N = mkN "monocerotos" "monoceroti" masculine ; -- [EXXFW] :: unicorn; (fabulous animal); + monochordon_N_N = mkN "monochordon" "monochordi" neuter ; -- [DDXFS] :: monochord, instrument (1-string+soundboard); (by Guido in teaching); tonometer; monochordum_N_N = mkN "monochordum" ; -- [DDXFZ] :: monochord, instrument (1-string+soundboard); (by Guido in teaching); tonometer; monochromatum_N_N = mkN "monochromatum" ; -- [DDXNS] :: one-color painting (Pliny); monodicus_A = mkA "monodicus" "monodica" "monodicum" ; -- [FXXFM] :: unique; @@ -26297,7 +26291,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + monogenesis_F_N = mkN "monogenesis" "monogenesis" feminine ; -- [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; @@ -26308,14 +26302,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat monopolium_N_N = mkN "monopolium" ; -- [XLXEO] :: monopoly, right of exclusive sale in a community; monosolis_A = mkA "monosolis" "monosolis" "monosole" ; -- [XXXFS] :: single-soled; monosyllaba_F_N = mkN "monosyllaba" ; -- [XDXES] :: monosyllable; - monosyllabon_N_N = mkN "monosyllabon" "monosyllabi " neuter ; -- [DGXFS] :: monosyllable; + monosyllabon_N_N = mkN "monosyllabon" "monosyllabi" neuter ; -- [DGXFS] :: monosyllable; monosyllabus_A = mkA "monosyllabus" "monosyllaba" "monosyllabum" ; -- [DGXFS] :: monosyllabic; monotheismus_M_N = mkN "monotheismus" ; -- [GEXEK] :: monotheism; monotheista_M_N = mkN "monotheista" ; -- [GEXEK] :: monotheist; monotheisticus_A = mkA "monotheisticus" "monotheistica" "monotheisticum" ; -- [GEXEK] :: monotheist; - mons_M_N = mkN "mons" "montis " masculine ; -- [XXXAX] :: mountain; huge rock; towering heap; - monstratio_F_N = mkN "monstratio" "monstrationis " feminine ; -- [GXXEK] :: exhibition (of art, of objects); - monstrator_M_N = mkN "monstrator" "monstratoris " masculine ; -- [XXXDX] :: guide, demonstrator; + mons_M_N = mkN "mons" "montis" masculine ; -- [XXXAX] :: mountain; huge rock; towering heap; + monstratio_F_N = mkN "monstratio" "monstrationis" feminine ; -- [GXXEK] :: exhibition (of art, of objects); + monstrator_M_N = mkN "monstrator" "monstratoris" masculine ; -- [XXXDX] :: guide, demonstrator; monstrifer_A = mkA "monstrifer" "monstrifera" "monstriferum" ; -- [XYXDO] :: producing monsters/portents; monster-bearing (L+S); monstrous/horrid, misshapen; monstrificus_A = mkA "monstrificus" "monstrifica" "monstrificum" ; -- [EXXFS] :: monstrous; strange; monstrigenus_A = mkA "monstrigenus" "monstrigena" "monstrigenum" ; -- [XYXES] :: monster-bearing; producing monsters; @@ -26332,44 +26326,44 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat monumentum_N_N = mkN "monumentum" ; -- [XXXAX] :: reminder; memorial, monument, tomb; record, literary work, history, book; mora_F_N = mkN "mora" ; -- [XXXAX] :: delay, hindrance, obstacle; pause; moralis_A = mkA "moralis" "moralis" "morale" ; -- [XSHCO] :: moral; of philosophy, concerned w/ethics; concerned w/moral philosophy; - moralitas_F_N = mkN "moralitas" "moralitatis " feminine ; -- [GXXEK] :: morality, morals; + moralitas_F_N = mkN "moralitas" "moralitatis" feminine ; -- [GXXEK] :: morality, morals; moraliter_Adv = mkAdv "moraliter" ; -- [GXXEK] :: morally; - morator_M_N = mkN "morator" "moratoris " masculine ; -- [XXXDX] :: delayer; loiterer; + morator_M_N = mkN "morator" "moratoris" masculine ; -- [XXXDX] :: delayer; loiterer; moratus_A = mkA "moratus" "morata" "moratum" ; -- [XXXDX] :: endowed with character or manners of a specified kind; gentle, civilized; morbidus_A = mkA "morbidus" "morbida" "morbidum" ; -- [XXXDX] :: diseased; unhealthy; morbillus_M_N = mkN "morbillus" ; -- [GXXEK] :: measles; morbosus_A = mkA "morbosus" "morbosa" "morbosum" ; -- [XXXCO] :: sickly/unhealthy/diseased/prone to illness; morbidly lustful; keen on/mad about; morbus_M_N = mkN "morbus" ; -- [XXXAX] :: sickness, illness, weakness; disease; distemper; distress; vice; morchella_F_N = mkN "morchella" ; -- [GXXEK] :: morel; - mordacitas_F_N = mkN "mordacitas" "mordacitatis " feminine ; -- [XXXEO] :: stinging, property of stinging; biting sarcasm (Erasmus); + mordacitas_F_N = mkN "mordacitas" "mordacitatis" feminine ; -- [XXXEO] :: stinging, property of stinging; biting sarcasm (Erasmus); mordaciter_Adv = mkAdv "mordaciter" ; -- [XXXFO] :: sharply, bitingly, stingingly, caustically; mordax_A = mkA "mordax" "mordacis"; -- [XXXDX] :: biting, snappish; tart; cutting, sharp; caustic; mordeo_V = mkV "mordere" ; -- [XXXBX] :: bite; sting; hurt, pain; vex; criticize, carp at; eat, consume; bite/cut into; - mordicatio_F_N = mkN "mordicatio" "mordicationis " feminine ; -- [EXXFS] :: gripping; + mordicatio_F_N = mkN "mordicatio" "mordicationis" feminine ; -- [EXXFS] :: gripping; mordicus_Adv = mkAdv "mordicus" ; -- [XXXDX] :: by biting, with the teeth; tenaciously; moribundus_A = mkA "moribundus" "moribunda" "moribundum" ; -- [XXXDX] :: dying; morigero_V = mkV "morigerare" ; -- [XXXDO] :: be compliant/indulgent to; gratify; humor; 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); + 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; + morositas_F_N = mkN "morositas" "morositatis" feminine ; -- [XXXES] :: peevishness, moroseness; G:pedantry; morosus_A = mkA "morosus" "morosa" "morosum" ; -- [XXXDX] :: hard to please, persnickety; morphologia_F_N = mkN "morphologia" ; -- [GXXEK] :: morphology; morphologicus_A = mkA "morphologicus" "morphologica" "morphologicum" ; -- [GXXEK] :: morphological; - mors_F_N = mkN "mors" "mortis " feminine ; -- [XXXAX] :: death; corpse; annihilation; - morsus_M_N = mkN "morsus" "morsus " masculine ; -- [XXXBX] :: bite, sting; anguish, pain; jaws; teeth; + mors_F_N = mkN "mors" "mortis" feminine ; -- [XXXAX] :: death; corpse; annihilation; + morsus_M_N = mkN "morsus" "morsus" masculine ; -- [XXXBX] :: bite, sting; anguish, pain; jaws; teeth; mortalis_A = mkA "mortalis" "mortalis" "mortale" ; -- [XXXAX] :: mortal, transient; human, of human origin; - mortalitas_F_N = mkN "mortalitas" "mortalitatis " feminine ; -- [XXXDX] :: mortality; death; + mortalitas_F_N = mkN "mortalitas" "mortalitatis" feminine ; -- [XXXDX] :: mortality; death; mortariolum_N_N = mkN "mortariolum" ; -- [DXXDS] :: small mortar; mortarium_N_N = mkN "mortarium" ; -- [XXXCO] :: mortar; bowl/trough in which materials are pounded/ground morticinus_A = mkA "morticinus" "morticina" "morticinum" ; -- [XAXCO] :: not slaughtered, of animal that died natural death/its flesh; of dead tissue; mortifer_A = mkA "mortifer" "mortifera" "mortiferum" ; -- [XXXDX] :: deadly, fatal, death bringing; destructive; - mortificatio_F_N = mkN "mortificatio" "mortificationis " feminine ; -- [DEXDS] :: killing; death; (eccles.); + mortificatio_F_N = mkN "mortificatio" "mortificationis" feminine ; -- [DEXDS] :: killing; death; (eccles.); mortifico_V2 = mkV2 (mkV "mortificare") ; -- [DEXES] :: kill; destroy; mortify, subdue, reduce to weakness; - mortual_N_N = mkN "mortual" "mortualis " neuter ; -- [XXXEC] :: funeral song, dirge; + mortual_N_N = mkN "mortual" "mortualis" neuter ; -- [XXXEC] :: funeral song, dirge; mortuus_A = mkA "mortuus" "mortua" "mortuum" ; -- [XXXAX] :: dead, deceased; limp; mortuus_M_N = mkN "mortuus" ; -- [XXXDX] :: corpse, the dead one; the dead; morua_F_N = mkN "morua" ; -- [GXXEK] :: cod; @@ -26378,62 +26372,62 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat morum_N_N = mkN "morum" ; -- [XXXDX] :: mulberry; fruit of the black mulberry; morus_F_N = mkN "morus" ; -- [XXXDX] :: black mulberry tree; moruta_F_N = mkN "moruta" ; -- [GXXEK] :: cod; - mos_M_N = mkN "mos" "moris " masculine ; -- [XXXAX] :: custom, habit; mood, manner, fashion; character (pl.), behavior, morals; + mos_M_N = mkN "mos" "moris" masculine ; -- [XXXAX] :: custom, habit; mood, manner, fashion; character (pl.), behavior, morals; motetum_N_N = mkN "motetum" ; -- [GDXEK] :: anthem (music); - motio_F_N = mkN "motio" "motionis " feminine ; -- [XBXCO] :: motion, movement; shivering, ague; removal; + motio_F_N = mkN "motio" "motionis" feminine ; -- [XBXCO] :: motion, movement; shivering, ague; removal; motivum_N_N = mkN "motivum" ; -- [FXXEZ] :: motive?; emotion? (effect of being moved); motivus_A = mkA "motivus" "motiva" "motivum" ; -- [FXXEZ] :: stirred; moved; moto_V = mkV "motare" ; -- [XXXDX] :: set in motion, shake, stir, etc; motorius_A = mkA "motorius" "motoria" "motorium" ; -- [GXXEK] :: motorized (adj.); motrum_N_N = mkN "motrum" ; -- [GTXEK] :: motor; - motus_M_N = mkN "motus" "motus " masculine ; -- [XXXBX] :: movement, motion; riot, commotion, disturbance; gesture; emotion; + motus_M_N = mkN "motus" "motus" masculine ; -- [XXXBX] :: movement, motion; riot, commotion, disturbance; gesture; emotion; moveo_V = mkV "movere" ; -- [XXXAX] :: move, stir, agitate, affect, provoke, disturb; [movere se => dance]; mox_Adv = mkAdv "mox" ; -- [XXXAX] :: soon, next (time/position); mozetta_F_N = mkN "mozetta" ; -- [FXXEE] :: short cape; mozzetta_F_N = mkN "mozzetta" ; -- [FXXEE] :: short cape; mucidus_A = mkA "mucidus" "mucida" "mucidum" ; -- [XXXEC] :: sniveling; moldy, musty; mucinnium_N_N = mkN "mucinnium" ; -- [GXXEK] :: handkerchief; - mucor_M_N = mkN "mucor" "mucoris " masculine ; -- [EAXFS] :: bread-mold; wine-must; - mucro_M_N = mkN "mucro" "mucronis " masculine ; -- [XXXBX] :: sword, sword point, sharp point; + mucor_M_N = mkN "mucor" "mucoris" masculine ; -- [EAXFS] :: bread-mold; wine-must; + mucro_M_N = mkN "mucro" "mucronis" masculine ; -- [XXXBX] :: sword, sword point, sharp point; mucus_M_N = mkN "mucus" ; -- [XXXDX] :: mucus, snot; recess, innermost part of a house; - 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); + 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; + 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; mulco_V = mkV "mulcare" ; -- [XXXDX] :: beat up, thrash, cudgel; worst, treat roughly; mulcta_F_N = mkN "mulcta" ; -- [XLXCO] :: fine; penalty; penalty involving property (livestock, later money); mulctaticius_A = mkA "mulctaticius" "mulctaticia" "mulctaticium" ; -- [XLXEO] :: fined, extracted as fine/penalty; mulctaticus_A = mkA "mulctaticus" "mulctatica" "mulctaticum" ; -- [XLXIO] :: fined, extracted as fine/penalty; - mulctatio_F_N = mkN "mulctatio" "mulctationis " feminine ; -- [XLXEO] :: imposition of fine; + mulctatio_F_N = mkN "mulctatio" "mulctationis" feminine ; -- [XLXEO] :: imposition of fine; mulcto_V2 = mkV2 (mkV "mulctare") ; -- [XLXCO] :: punish, fine; extract as forfeit; sentence to pay; mulctra_F_N = mkN "mulctra" ; -- [XAXDO] :: milk pail, milking pail; milk in a milk pail (L+S); - mulctrale_N_N = mkN "mulctrale" "mulctralis " neuter ; -- [XAXES] :: milk pail, milking pail; + mulctrale_N_N = mkN "mulctrale" "mulctralis" neuter ; -- [XAXES] :: milk pail, milking pail; mulctrarium_N_N = mkN "mulctrarium" ; -- [XAXES] :: milk pail, milking pail; mulctrum_N_N = mkN "mulctrum" ; -- [XAXDO] :: milk pail, milking pail; mulgarium_N_N = mkN "mulgarium" ; -- [XAXFO] :: milk pail, milking pail; mulgeo_V2 = mkV2 (mkV "mulgere") ; -- [XAXCO] :: milk (an animal); extract (milk); muliebris_A = mkA "muliebris" "muliebris" "muliebre" ; -- [XXXDX] :: feminine, womanly, female; woman's; womanish, effeminate; - mulier_F_N = mkN "mulier" "mulieris " feminine ; -- [XXXAX] :: woman; wife; mistress; + mulier_F_N = mkN "mulier" "mulieris" feminine ; -- [XXXAX] :: woman; wife; mistress; mulierarius_A = mkA "mulierarius" "mulieraria" "mulierarium" ; -- [XXXEC] :: womanish; muliercula_F_N = mkN "muliercula" ; -- [XXXDX] :: little/weak/foolish woman; little hussy; - mulierositas_F_N = mkN "mulierositas" "mulierositatis " feminine ; -- [XXXEC] :: love of women; + mulierositas_F_N = mkN "mulierositas" "mulierositatis" feminine ; -- [XXXEC] :: love of women; mulierosus_A = mkA "mulierosus" "mulierosa" "mulierosum" ; -- [XXXEC] :: fond of women; mulinus_A = mkA "mulinus" "mulina" "mulinum" ; -- [XXXEC] :: of a mule, mulish; - mulio_M_N = mkN "mulio" "mulionis " masculine ; -- [XXXDX] :: muleteer, mule driver, mule-skinner; + mulio_M_N = mkN "mulio" "mulionis" masculine ; -- [XXXDX] :: muleteer, mule driver, mule-skinner; mullus_M_N = mkN "mullus" ; -- [XXXDX] :: red mullet (fish); 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); - multae_N = pluralN (mkN "multa") ; -- Gender: F -- Comment: [XXXCX] :: many women (pl.); +-- BLACKLISTED multae_N : N1 multae -- 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; + multatio_F_N = mkN "multatio" "multationis" feminine ; -- [XLXEO] :: imposition of fine; multesimus_A = mkA "multesimus" "multesima" "multesimum" ; -- [XXXEC] :: very small; - multi_N = pluralN (mkN "multus") ; -- Gender: M -- Comment: [XXXCX] :: many men/people (pl.); the common/ordinary people; the many; common herd; +-- BLACKLISTED multi_N : N1 multi -- 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; @@ -26456,14 +26450,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat multimodus_A = mkA "multimodus" "multimoda" "multimodum" ; -- [DXXDS] :: various, manifold; multiplex_A = mkA "multiplex" "multiplicis"; -- [XXXAO] :: |multitudinous, many at once/together; numerous; changeable/shifting; versatile; multiplicabilis_A = mkA "multiplicabilis" "multiplicabilis" "multiplicabile" ; -- [XXXFO] :: multiple, manifold; - multiplicatio_F_N = mkN "multiplicatio" "multiplicationis " feminine ; -- [XSXDO] :: multiplication; act of increasing in number/quantity; multiple; - multiplicator_M_N = mkN "multiplicator" "multiplicatoris " masculine ; -- [GSXEK] :: multiplier (math.); - multiplicitas_F_N = mkN "multiplicitas" "multiplicitatis " feminine ; -- [DXXES] :: multiplicity; manifoldness; + multiplicatio_F_N = mkN "multiplicatio" "multiplicationis" feminine ; -- [XSXDO] :: multiplication; act of increasing in number/quantity; multiple; + multiplicator_M_N = mkN "multiplicator" "multiplicatoris" masculine ; -- [GSXEK] :: multiplier (math.); + multiplicitas_F_N = mkN "multiplicitas" "multiplicitatis" feminine ; -- [DXXES] :: multiplicity; manifoldness; multipliciter_Adv = mkAdv "multipliciter" ; -- [XXXEO] :: in many different ways; multiplico_V2 = mkV2 (mkV "multiplicare") ; -- [XXXBO] :: multiply; repeat; increase (number/quantity/extent); have/use on many occasions; multiplicus_A = mkA "multiplicus" "multiplica" "multiplicum" ; -- [XXXFO] :: compound, complex, composed of many elements; multiscius_A = mkA "multiscius" "multiscia" "multiscium" ; -- [EXXFS] :: much-knowing; - multitudo_F_N = mkN "multitudo" "multitudinis " feminine ; -- [XXXAX] :: multitude, great number; crowd; rabble, mob; + multitudo_F_N = mkN "multitudo" "multitudinis" feminine ; -- [XXXAX] :: multitude, great number; crowd; rabble, mob; multivorancia_F_N = mkN "multivorancia" ; -- [EEXES] :: gluttony; multizonium_N_N = mkN "multizonium" ; -- [GXXEK] :: block of flats; multo_Adv = mkAdv "multo" ; -- [XXXDX] :: much, by much, a great deal, very; most; by far; long (before/after); @@ -26477,38 +26471,38 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat mundanus_M_N = mkN "mundanus" ; -- [XXXCO] :: inhabitant of the world; worldly person, cosmopolitan; mundialis_A = mkA "mundialis" "mundialis" "mundiale" ; -- [DEXDS] :: worldly, belonging to the world; mundane; of sacred vault of Ceres (OLD); mundialiter_Adv = mkAdv "mundialiter" ; -- [DEXFS] :: in the manner of the world; - mundializatio_F_N = mkN "mundializatio" "mundializationis " feminine ; -- [GXXEK] :: internationalization; + mundializatio_F_N = mkN "mundializatio" "mundializationis" feminine ; -- [GXXEK] :: internationalization; 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; + 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); 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; - municeps_F_N = mkN "municeps" "municipis " feminine ; -- [XXXCO] :: citizen/native (of a municipium/municipality); - municeps_M_N = mkN "municeps" "municipis " masculine ; -- [XXXCO] :: citizen/native (of a municipium/municipality); + municeps_F_N = mkN "municeps" "municipis" feminine ; -- [XXXCO] :: citizen/native (of a municipium/municipality); + municeps_M_N = mkN "municeps" "municipis" masculine ; -- [XXXCO] :: citizen/native (of a municipium/municipality); municipalis_A = mkA "municipalis" "municipalis" "municipale" ; -- [XXXCO] :: of/belonging to/typical of/inhabiting/from a municipium; provincial (insult); municipatim_Adv = mkAdv "municipatim" ; -- [XLXEO] :: by municipalities/municipia, by free towns; as a municipality; - municipatio_F_N = mkN "municipatio" "municipationis " feminine ; -- [DEXES] :: citizenship; - municipatus_M_N = mkN "municipatus" "municipatus " masculine ; -- [XLXES] :: citizenship; fact of belonging to the same municipality (OLD); + municipatio_F_N = mkN "municipatio" "municipationis" feminine ; -- [DEXES] :: citizenship; + municipatus_M_N = mkN "municipatus" "municipatus" masculine ; -- [XLXES] :: citizenship; fact of belonging to the same municipality (OLD); municipiolum_N_N = mkN "municipiolum" ; -- [DLXFS] :: little municipality/municipium; municipium_N_N = mkN "municipium" ; -- [GXXEK] :: township (administrative division); - munifes_F_N = mkN "munifes" "munificis " feminine ; -- [XXXEO] :: one who performs duties; soldier who does not have exemption from fatigues; - munifes_M_N = mkN "munifes" "munificis " masculine ; -- [XXXEO] :: one who performs duties; soldier who does not have exemption from fatigues; - munificator_M_N = mkN "munificator" "munificatoris " masculine ; -- [FXXEN] :: gift-bestower; + munifes_F_N = mkN "munifes" "munificis" feminine ; -- [XXXEO] :: one who performs duties; soldier who does not have exemption from fatigues; + munifes_M_N = mkN "munifes" "munificis" masculine ; -- [XXXEO] :: one who performs duties; soldier who does not have exemption from fatigues; + munificator_M_N = mkN "munificator" "munificatoris" masculine ; -- [FXXEN] :: gift-bestower; munifice_Adv = mkAdv "munifice" ; -- [XXXEO] :: liberally, generously, munificently; unstintingly; bountifully (L+S); munificens_A = mkA "munificens" "munificentis"; -- [XXXCS] :: bountiful, generous, liberal, munificent; munificentia_F_N = mkN "munificentia" ; -- [XXXDX] :: bountifulness, munificence; 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; + 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; + 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; + munitor_M_N = mkN "munitor" "munitoris" masculine ; -- [XXXDX] :: one who builds fortifications; 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.); + 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; muraena_F_N = mkN "muraena" ; -- [XXXDX] :: kind of eel, the moray or lamprey; muralis_A = mkA "muralis" "muralis" "murale" ; -- [XXXDX] :: of walls; of a (city) wall; turreted; mural; @@ -26516,23 +26510,23 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat murdrum_N_N = mkN "murdrum" ; -- [FLXFJ] :: murder; murelegus_M_N = mkN "murelegus" ; -- [FAXEM] :: cat; (mouser); murena_F_N = mkN "murena" ; -- [XXXDX] :: kind of eel, the moray or lamprey; - murex_M_N = mkN "murex" "muricis " masculine ; -- [XXXDX] :: purple fish, shellfish which gave Tyrian dye; purple dye; purple cloth; + murex_M_N = mkN "murex" "muricis" masculine ; -- [XXXDX] :: purple fish, shellfish which gave Tyrian dye; purple dye; purple cloth; muria_F_N = mkN "muria" ; -- [XXXCO] :: brine, salt liquor, pickling; - muries_F_N = mkN "muries" "muriei " feminine ; -- [XXXEO] :: brine, salt liquor, pickling; + muries_F_N = mkN "muries" "muriei" feminine ; -- [XXXEO] :: brine, salt liquor, pickling; murilega_F_N = mkN "murilega" ; -- [FAXEM] :: cat; (mouser); murilegius_M_N = mkN "murilegius" ; -- [FAXEM] :: cat; (mouser); murilegus_M_N = mkN "murilegus" ; -- [FAXEM] :: cat; (mouser); murinus_A = mkA "murinus" "murina" "murinum" ; -- [GXXEK] :: gray-mouse-colored - murmillo_M_N = mkN "murmillo" "murmillonis " masculine ; -- [XXXCO] :: gladiator who wore Gallic armor and fish-topped helmet; (usu. fought retiarius); - murmur_M_N = mkN "murmur" "murmuris " masculine ; -- [XXXFO] :: murmur/mutter; whisper/rustle, hum/buzz; low noise; roar/growl/grunt/rumble; - murmur_N_N = mkN "murmur" "murmuris " neuter ; -- [XXXBO] :: murmur/mutter; whisper/rustle, hum/buzz; low noise; roar/growl/grunt/rumble; - murmuratio_F_N = mkN "murmuratio" "murmurationis " feminine ; -- [XXXEO] :: grumbling, discontented muttering; uttering of low continuous cries; + murmillo_M_N = mkN "murmillo" "murmillonis" masculine ; -- [XXXCO] :: gladiator who wore Gallic armor and fish-topped helmet; (usu. fought retiarius); + murmur_M_N = mkN "murmur" "murmuris" masculine ; -- [XXXFO] :: murmur/mutter; whisper/rustle, hum/buzz; low noise; roar/growl/grunt/rumble; + murmur_N_N = mkN "murmur" "murmuris" neuter ; -- [XXXBO] :: murmur/mutter; whisper/rustle, hum/buzz; low noise; roar/growl/grunt/rumble; + murmuratio_F_N = mkN "murmuratio" "murmurationis" feminine ; -- [XXXEO] :: grumbling, discontented muttering; uttering of low continuous cries; murmuro_V = mkV "murmurare" ; -- [XXXDX] :: hum, murmur, mutter; roar; murra_F_N = mkN "murra" ; -- [XXXCO] :: myrrh (aromatic gum/ointment); tree source of myrrh (Commiphora schimperi); murreus_A = mkA "murreus" "murrea" "murreum" ; -- [XXXDX] :: having color of myrrh, reddish-brown; murus_M_N = mkN "murus" ; -- [XXXAX] :: wall, city wall; - mus_F_N = mkN "mus" "muris " feminine ; -- [XXXBX] :: mouse; - mus_M_N = mkN "mus" "muris " masculine ; -- [XXXBX] :: mouse; + mus_F_N = mkN "mus" "muris" feminine ; -- [XXXBX] :: mouse; + mus_M_N = mkN "mus" "muris" masculine ; -- [XXXBX] :: mouse; musa_F_N = mkN "musa" ; -- [XXXAX] :: muse (one of the goddesses of poetry, music, etc.); sciences/poetry (pl.); musaeus_A = mkA "musaeus" "musaea" "musaeum" ; -- [XPXFS] :: of the Muses; poetical; musca_F_N = mkN "musca" ; -- [XAXCO] :: fly (insect); gadfly, bothersome person; @@ -26557,24 +26551,24 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat mustaceus_M_N = mkN "mustaceus" ; -- [XXXEC] :: must-cake, a sort of wedding cake; mustela_F_N = mkN "mustela" ; -- [XXXDX] :: weasel; mustella_F_N = mkN "mustella" ; -- [XXXDX] :: weasel; - mustes_M_N = mkN "mustes" "mustae " masculine ; -- [XEXEO] :: initiate, one initiated in secret rites; + mustes_M_N = mkN "mustes" "mustae" masculine ; -- [XEXEO] :: initiate, one initiated in secret rites; musteus_A = mkA "musteus" "mustea" "musteum" ; -- [XAXFS] :: must-like; of new wine; fresh/young; mustum_N_N = mkN "mustum" ; -- [XXXCO] :: unfermented/partially fermented grape juice/wine, must; mustus_A = mkA "mustus" "musta" "mustum" ; -- [XXXCO] :: fresh, young; unfermented/partially fermented (wine); mutabilis_A = mkA "mutabilis" "mutabilis" "mutabile" ; -- [XXXDX] :: changeable; inconstant; - mutabilitas_F_N = mkN "mutabilitas" "mutabilitatis " feminine ; -- [XXXEO] :: changeability, liability to change; fickleness; inconstancy; + mutabilitas_F_N = mkN "mutabilitas" "mutabilitatis" feminine ; -- [XXXEO] :: changeability, liability to change; fickleness; inconstancy; mutabiliter_Adv = mkAdv "mutabiliter" ; -- [XXXFO] :: with changeability of purpose; inconstantly; - mutatio_F_N = mkN "mutatio" "mutationis " feminine ; -- [XXXDX] :: change, alteration; interchange, exchange; + mutatio_F_N = mkN "mutatio" "mutationis" feminine ; -- [XXXDX] :: change, alteration; interchange, exchange; mutatrum_N_N = mkN "mutatrum" ; -- [GTXEK] :: switch; mutilo_V = mkV "mutilare" ; -- [XXXDX] :: maim, mutilate; lop/cut/chop off, crop; cut short; mutilus_A = mkA "mutilus" "mutila" "mutilum" ; -- [XXXDX] :: maimed, broken, mutilated; hornless, having lost/stunted horns; mutinium_N_N = mkN "mutinium" ; -- [XXXFO] :: penis; (rude); - muto_M_N = mkN "muto" "mutonis " masculine ; -- [XXXEO] :: 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); + 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; + mutuatio_F_N = mkN "mutuatio" "mutuationis" feminine ; -- [XXXDX] :: borrowing; mutuens_A = mkA "mutuens" "mutuentis"; -- [XXXEO] :: borrowing; mutulus_M_N = mkN "mutulus" ; -- [XTXCO] :: projecting shelf/bracket; slab under corona of cornice, mutule, modillion; mutunium_N_N = mkN "mutunium" ; -- [XXXFO] :: penis; (rude); @@ -26583,23 +26577,23 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat mutus_A = mkA "mutus" "muta" "mutum" ; -- [XXXBX] :: dumb, silent, mute; speechless; mutuus_A = mkA "mutuus" "mutua" "mutuum" ; -- [XXXBX] :: borrowed, lent; mutual, in return; myalgia_F_N = mkN "myalgia" ; -- [GBXEK] :: myalgia/myalgy; (morbid condition of a muscle); muscular rheumatism; - mydion_N_N = mkN "mydion" "mydii " neuter ; -- [XWXEO] :: small boat; + mydion_N_N = mkN "mydion" "mydii" neuter ; -- [XWXEO] :: small boat; myocardium_N_N = mkN "myocardium" ; -- [GBXEK] :: myocardium, muscular substance of the heart; - myoparo_M_N = mkN "myoparo" "myoparonis " masculine ; -- [XWXEC] :: small piratical galley; - myoparon_M_N = mkN "myoparon" "myoparonis " masculine ; -- [XXXDX] :: light naval vessel; + myoparo_M_N = mkN "myoparo" "myoparonis" masculine ; -- [XWXEC] :: small piratical galley; + myoparon_M_N = mkN "myoparon" "myoparonis" masculine ; -- [XXXDX] :: light naval vessel; myopia_F_N = mkN "myopia" ; -- [GBXEK] :: myopia; myops_A = mkA "myops" "myopis"; -- [FBXEK] :: myopic; - myosotis_F_N = mkN "myosotis" "myosotidis " feminine ; -- [GAXEK] :: forget-me-not; + 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; 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; + 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; myriophllum_N_N = mkN "myriophllum" ; -- [FAXEM] :: milfoil; (plant w/divided leaves genus); common yarrow; water milfoil; myristica_F_N = mkN "myristica" ; -- [GXXFK] :: nutmeger; (nutmeg grater?); (person from Connecticut is called nutmeger); - myrmillo_M_N = mkN "myrmillo" "myrmillonis " masculine ; -- [XXXCO] :: gladiator who wore Gallic armor and fish-topped helmet; (usu. fought retiarius); + myrmillo_M_N = mkN "myrmillo" "myrmillonis" masculine ; -- [XXXCO] :: gladiator who wore Gallic armor and fish-topped helmet; (usu. fought retiarius); myrobalanum_N_N = mkN "myrobalanum" ; -- [DAXNS] :: behen-nut; balsam (Pliny); myropoeus_M_N = mkN "myropoeus" ; -- [GXXEK] :: perfumer; myrra_F_N = mkN "myrra" ; -- [XXXCO] :: myrrh (aromatic gum/ointment); tree source of myrrh (Commiphora schimperi); @@ -26611,11 +26605,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat myrtus_F_N = mkN "myrtus" ; -- [XAXBX] :: myrtle, myrtle-tree; mysta_M_N = mkN "mysta" ; -- [XEXEC] :: initiate, one initiated in secret rites; priest at the mysteries (Cas); mystagogus_M_N = mkN "mystagogus" ; -- [XEXEC] :: priest who showed sacred places to strangers; - mystax_M_N = mkN "mystax" "mystacis " masculine ; -- [GBXEK] :: moustache; - mysterion_N_N = mkN "mysterion" "mysterii " neuter ; -- [XEXCE] :: mystery, secret service/rite/worship (usu. pl.); secret, things not divulged; + mystax_M_N = mkN "mystax" "mystacis" masculine ; -- [GBXEK] :: moustache; + mysterion_N_N = mkN "mysterion" "mysterii" neuter ; -- [XEXCE] :: mystery, secret service/rite/worship (usu. pl.); secret, things not divulged; mysterium_N_N = mkN "mysterium" ; -- [XEXCO] :: mystery, secret service/rite/worship (usu. pl.); secret, things not divulged; mysterius_A = mkA "mysterius" "mysteria" "mysterium" ; -- [EEXCE] :: mysterious; of a mystery/secret rite; - mystes_M_N = mkN "mystes" "mystae " masculine ; -- [XEXEO] :: initiate, one initiated in secret rites; priest at the mysteries (Cas); + mystes_M_N = mkN "mystes" "mystae" masculine ; -- [XEXEO] :: initiate, one initiated in secret rites; priest at the mysteries (Cas); mystetum_N_N = mkN "mystetum" ; -- [XAXEE] :: myrtle-grove; mystice_Adv = mkAdv "mystice" ; -- [DEXFS] :: mystically; mysticum_N_N = mkN "mysticum" ; -- [XEXES] :: things (pl.) pertaining to/used in sacred mysteries/rites; @@ -26626,13 +26620,13 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat mythologia_F_N = mkN "mythologia" ; -- [DXXFS] :: mythological; of/belonging to mythology; mythologicum_N_N = mkN "mythologicum" ; -- [DXXFS] :: mythological matters (pl.); mythologicus_A = mkA "mythologicus" "mythologica" "mythologicum" ; -- [DXXFS] :: mythological, mythologic, of mythology; - mythos_M_N = mkN "mythos" "mythi " masculine ; -- [XEXEO] :: myth; fable; + mythos_M_N = mkN "mythos" "mythi" masculine ; -- [XEXEO] :: myth; fable; mythus_M_N = mkN "mythus" ; -- [FEXEE] :: myth; fable; mytulus_M_N = mkN "mytulus" ; -- [XAXEC] :: edible mussel; myxa_F_N = mkN "myxa" ; -- [XAXFO] :: tree (genus Cordia); sebesten/it's plum-like fruit; lamp nozzle (L+S); myxum_N_N = mkN "myxum" ; -- [XAXFO] :: sebesten, plum-like fruit (of tree, genus Cordia, formerly Sebestena); myxus_M_N = mkN "myxus" ; -- [XAXFO] :: wick (of a lamp); - nable_N_N = mkN "nable" "nablis " neuter ; -- [XXXFO] :: psaltery; (pl. 10/12 stringed instrument w/sounding board behind strings OED); + 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); nadir_N = constN "nadir" neuter ; -- [GXXEK] :: nadir; @@ -26640,7 +26634,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat naevus_M_N = mkN "naevus" ; -- [XXXDX] :: mole (on the body); birthmark; 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; + 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; @@ -26654,21 +26648,21 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat nardinus_A = mkA "nardinus" "nardina" "nardinum" ; -- [XXXEO] :: of/pertaining to nard (an aromatic plant); resembling/smelling like nard; nard-; nardum_N_N = mkN "nardum" ; -- [XXXCO] :: unguent/balsam/oil of nard (an aromatic plant); the plant nard; nardus_F_N = mkN "nardus" ; -- [XXXCO] :: unguent/balsam/oil of nard (an aromatic plant); the plant nard; - naris_F_N = mkN "naris" "naris " feminine ; -- [XXXDX] :: nostril; nose (pl.); + naris_F_N = mkN "naris" "naris" feminine ; -- [XXXDX] :: nostril; nose (pl.); narrabilis_A = mkA "narrabilis" "narrabilis" "narrabile" ; -- [XXXDX] :: that can be narrated; - narratio_F_N = mkN "narratio" "narrationis " feminine ; -- [XXXDX] :: narrative, story; + narratio_F_N = mkN "narratio" "narrationis" feminine ; -- [XXXDX] :: narrative, story; narratiuncula_F_N = mkN "narratiuncula" ; -- [XXXEC] :: short narrative; - narratus_M_N = mkN "narratus" "narratus " masculine ; -- [XXXDX] :: narrative, story; + narratus_M_N = mkN "narratus" "narratus" masculine ; -- [XXXDX] :: narrative, story; narro_V = mkV "narrare" ; -- [XXXAX] :: tell, tell about, relate, narrate, recount, describe; narta_F_N = mkN "narta" ; -- [GXXEK] :: ski (instrument); - nartatio_F_N = mkN "nartatio" "nartationis " feminine ; -- [GXXEK] :: skiing (sport); - nartator_M_N = mkN "nartator" "nartatoris " masculine ; -- [GXXEK] :: skier; + nartatio_F_N = mkN "nartatio" "nartationis" feminine ; -- [GXXEK] :: skiing (sport); + nartator_M_N = mkN "nartator" "nartatoris" masculine ; -- [GXXEK] :: skier; nartatorius_A = mkA "nartatorius" "nartatoria" "nartatorium" ; -- [GXXEK] :: skiing; narthecium_N_N = mkN "narthecium" ; -- [XXXEC] :: box for perfumes and medicines; narto_V = mkV "nartare" ; -- [GXXEK] :: ski; - nasalizatio_F_N = mkN "nasalizatio" "nasalizationis " feminine ; -- [GXXEK] :: nasalization; + 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; + 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; @@ -26678,29 +26672,29 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat natalicium_N_N = mkN "natalicium" ; -- [XXXEC] :: birthday party (pl.); natalicius_A = mkA "natalicius" "natalicia" "natalicium" ; -- [XXXEC] :: relating to birth; natalis_A = mkA "natalis" "natalis" "natale" ; -- [XXXBX] :: natal, of birth; - natalis_M_N = mkN "natalis" "natalis " masculine ; -- [XXXBO] :: |time of birth; horoscope; circumstances of birth; parentage (pl.), origins; + natalis_M_N = mkN "natalis" "natalis" masculine ; -- [XXXBO] :: |time of birth; horoscope; circumstances of birth; parentage (pl.), origins; natatilis_A = mkA "natatilis" "natatilis" "natatile" ; -- [EXXES] :: that can swim; swimmable; - natatilis_M_N = mkN "natatilis" "natatilis " masculine ; -- [XAXES] :: swimming creature; - natator_M_N = mkN "natator" "natatoris " masculine ; -- [XXXDX] :: swimmer; - natatus_M_N = mkN "natatus" "natatus " masculine ; -- [EXXFS] :: swimming; - natio_F_N = mkN "natio" "nationis " feminine ; -- [XXXBX] :: nation, people; birth; race, class, set; gentiles; heathens; + natatilis_M_N = mkN "natatilis" "natatilis" masculine ; -- [XAXES] :: swimming creature; + natator_M_N = mkN "natator" "natatoris" masculine ; -- [XXXDX] :: swimmer; + natatus_M_N = mkN "natatus" "natatus" masculine ; -- [EXXFS] :: swimming; + natio_F_N = mkN "natio" "nationis" feminine ; -- [XXXBX] :: nation, people; birth; race, class, set; gentiles; heathens; nationalis_A = mkA "nationalis" "nationalis" "nationale" ; -- [GXXEK] :: national; nationalismus_M_N = mkN "nationalismus" ; -- [GXXEK] :: nationalism; - nationalitas_F_N = mkN "nationalitas" "nationalitatis " feminine ; -- [GXXEK] :: nationality; - natis_F_N = mkN "natis" "natis " feminine ; -- [XXXDX] :: buttocks (usu. pl.), rump; - nativitas_F_N = mkN "nativitas" "nativitatis " feminine ; -- [EEXDX] :: birth; nativity; (of Christ); + nationalitas_F_N = mkN "nationalitas" "nationalitatis" feminine ; -- [GXXEK] :: nationality; + natis_F_N = mkN "natis" "natis" feminine ; -- [XXXDX] :: buttocks (usu. pl.), rump; + nativitas_F_N = mkN "nativitas" "nativitatis" feminine ; -- [EEXDX] :: birth; nativity; (of Christ); nativus_A = mkA "nativus" "nativa" "nativum" ; -- [XXXDX] :: original; innate; natural; born; nato_V = mkV "natare" ; -- [XXXBX] :: swim; float; - natrix_F_N = mkN "natrix" "natricis " feminine ; -- [XAXFS] :: water-snake; whip; a plant; + natrix_F_N = mkN "natrix" "natricis" feminine ; -- [XAXFS] :: water-snake; whip; a plant; natura_F_N = mkN "natura" ; -- [XXXAX] :: nature; birth; character; naturalis_A = mkA "naturalis" "naturalis" "naturale" ; -- [XXXAO] :: |natural; (not adoptive, parents); (parts of body/genitals, excretory outlets); - naturalis_M_N = mkN "naturalis" "naturalis " masculine ; -- [ESXDX] :: physical/natural scientist; physicist; natural philosopher; + naturalis_M_N = mkN "naturalis" "naturalis" masculine ; -- [ESXDX] :: physical/natural scientist; physicist; natural philosopher; naturaliter_Adv = mkAdv "naturaliter" ; -- [XXXCO] :: naturally, normally; inherently, by nature; spontaneously; by human nature; - naturalizatio_F_N = mkN "naturalizatio" "naturalizationis " feminine ; -- [GXXEK] :: naturalization; + naturalizatio_F_N = mkN "naturalizatio" "naturalizationis" feminine ; -- [GXXEK] :: naturalization; naturans_A = mkA "naturans" "naturantis"; -- [FEXFM] :: creative nature; naturo_V = mkV "naturare" ; -- [FXXEM] :: produce naturally; natus_A = mkA "natus" "nata" "natum" ; -- [XXXAX] :: born, arisen; made; destined; designed, intended, produced by nature; aged, old; - natus_M_N = mkN "natus" "natus " masculine ; -- [XXXDX] :: birth; age, years [minor natu => younger; major natu => older]; + natus_M_N = mkN "natus" "natus" masculine ; -- [XXXDX] :: birth; age, years [minor natu => younger; major natu => older]; nauarchia_F_N = mkN "nauarchia" ; -- [DWXFS] :: command of a ship/vessel; nauarchus_M_N = mkN "nauarchus" ; -- [XWXDS] :: master/captain of a ship; skipper; naucleria_F_N = mkN "naucleria" ; -- [DWXFS] :: command of a ship/vessel; @@ -26722,7 +26716,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat nauta_M_N = mkN "nauta" ; -- [XXXBO] :: sailor, seaman, mariner; nauticus_A = mkA "nauticus" "nautica" "nauticum" ; -- [XXXDX] :: nautical, naval; nauticus_M_N = mkN "nauticus" ; -- [XXXDX] :: seamen (pl.), sailors; - navale_N_N = mkN "navale" "navalis " neuter ; -- [XXXDX] :: dock, shipway; + navale_N_N = mkN "navale" "navalis" neuter ; -- [XXXDX] :: dock, shipway; navalis_A = mkA "navalis" "navalis" "navale" ; -- [XXXDX] :: naval, of ships; navanter_Adv = mkAdv "navanter" ; -- [XXXES] :: with zeal; navicula_F_N = mkN "navicula" ; -- [XXXDX] :: small ship; @@ -26730,11 +26724,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat navicularius_A = mkA "navicularius" "navicularia" "navicularium" ; -- [XWXEC] :: of (small) ships; navifragus_A = mkA "navifragus" "navifraga" "navifragum" ; -- [XXXEO] :: shipwrecking; navigabilis_A = mkA "navigabilis" "navigabilis" "navigabile" ; -- [XXXDX] :: navigable, suitable for shipping; - navigatio_F_N = mkN "navigatio" "navigationis " feminine ; -- [XXXDX] :: sailing; navigation; voyage; + navigatio_F_N = mkN "navigatio" "navigationis" feminine ; -- [XXXDX] :: sailing; navigation; voyage; naviger_A = mkA "naviger" "navigera" "navigerum" ; -- [XXXDX] :: ship-bearing, navigable; navigium_N_N = mkN "navigium" ; -- [XXXDX] :: vessel, ship; navigo_V = mkV "navigare" ; -- [XXXBX] :: sail; navigate; - navis_F_N = mkN "navis" "navis " feminine ; -- [XXXAX] :: ship; [navis longa => galley, battleship; ~ oneraria => transport/cargo ship]; + navis_F_N = mkN "navis" "navis" feminine ; -- [XXXAX] :: ship; [navis longa => galley, battleship; ~ oneraria => transport/cargo ship]; navita_M_N = mkN "navita" ; -- [XXXCS] :: sailor, seaman, mariner; (early, late, and poetic); naviter_Adv = mkAdv "naviter" ; -- [XXXDX] :: diligently; wholly; navmachia_F_N = mkN "navmachia" ; -- [XWXCO] :: mock sea battle staged as spectacle/game/exercise; @@ -26750,7 +26744,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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 = mkConj "nec" missing ; -- [XXXAX] :: nor, and..not; not..either, not even; @@ -26763,17 +26757,17 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat necessarius_M_N = mkN "necessarius" ; -- [XXXCO] :: relative; connection, one closely connected by friendship/family/obligation; 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; + 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; 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; + 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; - neclego_V2 = mkV2 (mkV "neclegere" "neclego" "neclexi" "neclectus ") ; -- [XXXCO] :: disregard, neglect, ignore, regard of no consequence; do nothing about; despise; + 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); @@ -26783,10 +26777,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat necopmus_A = mkA "necopmus" "necopma" "necopmum" ; -- [XXXDX] :: unexpected, unforeseen; necrocomium_N_N = mkN "necrocomium" ; -- [GXXEK] :: morgue; necrologia_F_N = mkN "necrologia" ; -- [GXXEK] :: death; - 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; + 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; + 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 = mkConj "nedum" missing ; -- [XXXDX] :: still less; not to speak of; much more; @@ -26796,38 +26790,38 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat nefarius_A = mkA "nefarius" "nefaria" "nefarium" ; -- [XXXCS] :: |impious; nefarious; execrable; heinous; abandoned (Cas); 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; + 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); negativus_A = mkA "negativus" "negativa" "negativum" ; -- [XLXEO] :: restraining, inhibiting (legal actions); denied/refused; negative (of words); - negator_M_N = mkN "negator" "negatoris " masculine ; -- [XXXFO] :: denier, one who denies; apostate; + negator_M_N = mkN "negator" "negatoris" masculine ; -- [XXXFO] :: denier, one who denies; apostate; 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; 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; + 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; + 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; + 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; + negotiatio_F_N = mkN "negotiatio" "negotiationis" feminine ; -- [XXXDX] :: business; + negotiator_M_N = mkN "negotiator" "negotiatoris" masculine ; -- [XXXDX] :: wholesale trader or dealer; negotio_V = mkV "negotiare" ; -- [XXXDX] :: carry on business; trade; negotiolum_N_N = mkN "negotiolum" ; -- [XXXEC] :: little business; negotior_V = mkV "negotiari" ; -- [XXXDX] :: do business, trade; negotiosus_A = mkA "negotiosus" "negotiosa" "negotiosum" ; -- [XXXDX] :: active, occupied; negotium_N_N = mkN "negotium" ; -- [XXXAX] :: pain, trouble, annoyance, distress; work, business, activity, job; - nemo_F_N = mkN "nemo" "neminis " feminine ; -- [XXXAX] :: no one, nobody; - nemo_M_N = mkN "nemo" "neminis " masculine ; -- [XXXAX] :: no one, nobody; + nemo_F_N = mkN "nemo" "neminis" feminine ; -- [XXXAX] :: no one, nobody; + nemo_M_N = mkN "nemo" "neminis" masculine ; -- [XXXAX] :: no one, nobody; nemoralis_A = mkA "nemoralis" "nemoralis" "nemorale" ; -- [XXXDX] :: of/belonging to wood/forest, sylvan; 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 = mkConj "nempe" missing ; -- [XXXDX] :: truly, certainly, of course; - nemus_N_N = mkN "nemus" "nemoris " neuter ; -- [XXXAX] :: wood, forest; + 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; neofitus_A = mkA "neofitus" "neofita" "neofitum" ; -- [DXXIS] :: newly planted; (of newly converted Christians); @@ -26840,17 +26834,17 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat neoplasia_F_N = mkN "neoplasia" ; -- [GXXEK] :: neoplasm; tumor; nepa_F_N = mkN "nepa" ; -- [XXXEC] :: scorpion; a crab; nepiagogium_N_N = mkN "nepiagogium" ; -- [GXXEK] :: children's garden; - 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; + 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; 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 = 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; + nequeo_1_V = mkV "nequire" "nequeo" "nequivi" "nequitus" ; -- [XXXBX] :: be unable, cannot; + nequeo_2_V = mkV "nequire" "nequeo" "nequiii" "nequitus" ; -- [XXXBX] :: be unable, cannot; nequicquam_Adv = mkAdv "nequicquam" ; -- [XXXDX] :: in vain; nequior_A = constA "nequior" ; -- [XXXCO] :: more wicked/licentious/depraved/vile; worse; more useless/worthless; (nequam); nequiquam_Adv = mkAdv "nequiquam" ; -- [XXXBX] :: in vain; @@ -26858,31 +26852,31 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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; + 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; + nete_F_N = mkN "nete" "netes" feminine ; -- [XDXFO] :: highest note in tetrachord; last/undermost string; 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); + 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; neuter_A = mkA "neuter" "neutra" "neutrum" ; -- [XXXDX] :: neither; neutiquam_Adv = mkAdv "neutiquam" ; -- [XXXEC] :: by no means, not at all; (ne utiquam); - neutralitas_F_N = mkN "neutralitas" "neutralitatis " feminine ; -- [GXXEK] :: neutrality; - neutralizatio_F_N = mkN "neutralizatio" "neutralizationis " feminine ; -- [GXXEK] :: neutralization; + neutralitas_F_N = mkN "neutralitas" "neutralitatis" feminine ; -- [GXXEK] :: neutrality; + neutralizatio_F_N = mkN "neutralizatio" "neutralizationis" feminine ; -- [GXXEK] :: neutralization; neutralizo_V = mkV "neutralizare" ; -- [GXXEK] :: neutralize; 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 = 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; + nex_F_N = mkN "nex" "necis" feminine ; -- [XXXBX] :: death; murder; nexilis_A = mkA "nexilis" "nexilis" "nexile" ; -- [XXXDX] :: woven together, intertwined; 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; + 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 = mkConj "ni" missing ; -- [XXXDX] :: if ... not; unless; niceterium_N_N = mkN "niceterium" ; -- [XXXEC] :: reward of victory, prize; @@ -26894,23 +26888,23 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat nidificium_N_N = mkN "nidificium" ; -- [XAXFO] :: nesting place; nidifico_V = mkV "nidificare" ; -- [XAXEO] :: build a nest; nidificus_A = mkA "nidificus" "nidifica" "nidificum" ; -- [XAXFO] :: nest-, concerned with the building of nests; - nidor_M_N = mkN "nidor" "nidoris " masculine ; -- [XXXDX] :: rich, strong smell, fumes; + nidor_M_N = mkN "nidor" "nidoris" masculine ; -- [XXXDX] :: rich, strong smell, fumes; nidulus_M_N = mkN "nidulus" ; -- [XXXEC] :: little nest; nidus_M_N = mkN "nidus" ; -- [XXXBX] :: nest; nigellus_A = mkA "nigellus" "nigella" "nigellum" ; -- [XXXFS] :: somewhat black; (pre-classical and medieval); Nigellus (proper name); niger_A = mkA "niger" "nigra" "nigrum" ; -- [XXXAX] :: black, dark; unlucky; nigrans_A = mkA "nigrans" "nigrantis"; -- [XXXDX] :: black, dark colored; shadowy; murky; - nigredo_F_N = mkN "nigredo" "nigredinis " feminine ; -- [XXXFO] :: blackness; + nigredo_F_N = mkN "nigredo" "nigredinis" feminine ; -- [XXXFO] :: blackness; nigreo_V = mkV "nigrere" ; -- [XXXFO] :: grow dark; darken; 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; + nigrities_F_N = mkN "nigrities" "nigritiei" feminine ; -- [EXXFS] :: blackness; black color; nigro_V = mkV "nigrare" ; -- [XXXEO] :: be black; make black; 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; + 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; nil_N = constN "nil" neuter ; -- [XXXAO] :: nothing; no; trifle/thing not worth mentioning; nonentity; nonsense; no concern; @@ -26918,7 +26912,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat nimbifer_A = mkA "nimbifer" "nimbifera" "nimbiferum" ; -- [XXXEC] :: stormy; nimbosus_A = mkA "nimbosus" "nimbosa" "nimbosum" ; -- [XXXDX] :: full of/surrounded by rain clouds; nimbus_M_N = mkN "nimbus" ; -- [XXXBX] :: rainstorm, cloud; - nimietas_F_N = mkN "nimietas" "nimietatis " feminine ; -- [XXXEO] :: excess; superabundance; too great a number/quantity. redundancy (L+S); + nimietas_F_N = mkN "nimietas" "nimietatis" feminine ; -- [XXXEO] :: excess; superabundance; too great a number/quantity. redundancy (L+S); nimio_Adv = mkAdv "nimio" ; -- [XXXDX] :: by a very great degree, far; nimirum_Adv = mkAdv "nimirum" ; -- [XXXBX] :: without doubt, evidently, forsooth; nimis_Adv = mkAdv "nimis" ; -- [XXXAX] :: very much; too much; exceedingly; @@ -26926,30 +26920,30 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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.); + ninguis_F_N = mkN "ninguis" "ninguis" feminine ; -- [XSXEO] :: snow; drifts of snow (pl.); 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; + 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; 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; + 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; niveus_A = mkA "niveus" "nivea" "niveum" ; -- [XXXBX] :: snowy, covered with snow; white; nivosus_A = mkA "nivosus" "nivosa" "nivosum" ; -- [XXXDX] :: full of snow, snowy; - nix_F_N = mkN "nix" "nivis " feminine ; -- [XXXAX] :: snow; + nix_F_N = mkN "nix" "nivis" feminine ; -- [XXXAX] :: snow; 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; + nixus_M_N = mkN "nixus" "nixus" masculine ; -- [XXXDX] :: straining; the efforts of childbirth (pl.), travail; no_V = mkV "nare" ; -- [XXXBX] :: swim, float; 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; + 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); @@ -26971,25 +26965,25 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat -- TODO nolo_V : V1 nolo, nolle, nolui, - -- [XXXAX] :: be unwilling; wish not to; refuse to; 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; + 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; - nomenculator_M_N = mkN "nomenculator" "nomenculatoris " masculine ; -- [XXXCO] :: one who address person by name; slave who announced guests/dishes; an official; + nomenculator_M_N = mkN "nomenculator" "nomenculatoris" masculine ; -- [XXXCO] :: one who address person by name; slave who announced guests/dishes; an official; nominatim_Adv = mkAdv "nominatim" ; -- [XXXDX] :: by name; - nominatio_F_N = mkN "nominatio" "nominationis " feminine ; -- [XXXDX] :: naming; nomination (to an office); + nominatio_F_N = mkN "nominatio" "nominationis" feminine ; -- [XXXDX] :: naming; nomination (to an office); nominativus_A = mkA "nominativus" "nominativa" "nominativum" ; -- [XXXDX] :: nominative; - nominatus_M_N = mkN "nominatus" "nominatus " masculine ; -- [XXXFS] :: naming; G:noun; + nominatus_M_N = mkN "nominatus" "nominatus" masculine ; -- [XXXFS] :: naming; G:noun; nomine_Adv = mkAdv "nomine" ; -- [XXXDX] :: in name only, nominally (ABL S of nomen); nominetenus_Adv = mkAdv "nominetenus" ; -- [FXXEM] :: nominal; so-called; nominito_V = mkV "nominitare" ; -- [XXXDX] :: name, term; nomino_V = mkV "nominare" ; -- [XXXAX] :: name, call; - nomisma_N_N = mkN "nomisma" "nomismatis " neuter ; -- [XXXDO] :: coin/piece of money; coinage; token/voucher; medal (L+S); stamp; image on coin; + nomisma_N_N = mkN "nomisma" "nomismatis" neuter ; -- [XXXDO] :: coin/piece of money; coinage; token/voucher; medal (L+S); stamp; image on coin; non_Adv = mkAdv "non" ; -- [XXXAX] :: not, by no means, no; [non modo ... sed etiam => not only ... but also]; nonanus_A = mkA "nonanus" "nonana" "nonanum" ; -- [XXXEC] :: of/belonging to ninth legion; nondum_Adv = mkAdv "nondum" ; -- [XXXBX] :: not yet; nonne_Adv = mkAdv "nonne" ; -- [XXXBX] :: not? (interog, expects the answer "Yes"); - nonnemo_F_N = mkN "nonnemo" "nonneminis " feminine ; -- [XXXDX] :: some persons, a few; - nonnemo_M_N = mkN "nonnemo" "nonneminis " masculine ; -- [XXXDX] :: some persons, a few; + 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; nonnihil_N = constN "nonnihil" neuter ; -- [XXXDX] :: certain amount; nonnisi_Conj = mkConj "nonnisi" missing ; -- [XXXDO] :: not unless; not except; only (on specific terms); @@ -27000,7 +26994,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; @@ -27009,14 +27003,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat nota_F_N = mkN "nota" ; -- [XXXDX] :: mark, sign, letter, word, writing, spot brand, tattoo-mark; notabilis_A = mkA "notabilis" "notabilis" "notabile" ; -- [XXXDX] :: remarkable, notable; notaculum_N_N = mkN "notaculum" ; -- [XXXEK] :: registration; - notariatus_M_N = mkN "notariatus" "notariatus " masculine ; -- [GXXEK] :: notary's office; + notariatus_M_N = mkN "notariatus" "notariatus" masculine ; -- [GXXEK] :: notary's office; notarius_M_N = mkN "notarius" ; -- [GXXEK] :: notary; - notatio_F_N = mkN "notatio" "notationis " feminine ; -- [XXXDX] :: marking; + notatio_F_N = mkN "notatio" "notationis" feminine ; -- [XXXDX] :: marking; noteo_V = mkV "notere" ; -- [FXXEM] :: notify; 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; + notificatio_F_N = mkN "notificatio" "notificationis" feminine ; -- [FXXEM] :: notification; + notio_F_N = mkN "notio" "notionis" feminine ; -- [XXXDX] :: judicial examination or enquiry; notionalis_A = mkA "notionalis" "notionalis" "notionale" ; -- [FXXEM] :: conceptual; notionaliter_Adv = mkAdv "notionaliter" ; -- [FXXEM] :: conceptually; notitia_F_N = mkN "notitia" ; -- [XXXBX] :: notice; acquaintance; @@ -27026,10 +27020,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - novalis_F_N = mkN "novalis" "novalis " feminine ; -- [XXXCO] :: fallow/unplowedland; enclosed land; field; land/field cultivated first time; - novamen_N_N = mkN "novamen" "novaminis " neuter ; -- [DXXFS] :: innovation; - novatio_F_N = mkN "novatio" "novationis " feminine ; -- [XLXEO] :: substitution by stipulatio of new for existing obligation; renewing; renovation; + novale_N_N = mkN "novale" "novalis" neuter ; -- [XXXCO] :: fallow/unplowed land; enclosed land; field; land/field cultivated first time; + novalis_F_N = mkN "novalis" "novalis" feminine ; -- [XXXCO] :: fallow/unplowedland; enclosed land; field; land/field cultivated first time; + novamen_N_N = mkN "novamen" "novaminis" neuter ; -- [DXXFS] :: innovation; + novatio_F_N = mkN "novatio" "novationis" feminine ; -- [XLXEO] :: substitution by stipulatio of new for existing obligation; renewing; renovation; nove_Adv =mkAdv "nove" "novius" "novissime" ; -- [XXXDX] :: newly, in new/unusual manner; recently/short time ago; finally/lastly; at last; novella_F_N = mkN "novella" ; -- [GXXEK] :: news (literary kind); novello_V = mkV "novellare" ; -- [XAXFO] :: plant nurseries; @@ -27037,21 +27031,21 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat novenarius_A = mkA "novenarius" "novenaria" "novenarium" ; -- [DXXES] :: ninefold, consisting of nine; having crosssection of 9 square feet, 3 by 3 feet; novendialis_A = mkA "novendialis" "novendialis" "novendiale" ; -- [XXXDX] :: lasting nine days; held on the ninth day after a person's death; noverca_F_N = mkN "noverca" ; -- [XXXDX] :: stepmother; - noviciatus_M_N = mkN "noviciatus" "noviciatus " masculine ; -- [GXXEK] :: novitiate; apprenticeship; + noviciatus_M_N = mkN "noviciatus" "noviciatus" masculine ; -- [GXXEK] :: novitiate; apprenticeship; novicius_A = mkA "novicius" "novicia" "novicium" ; -- [XXXEC] :: new, fresh; esp. of persons new to slavery; novicius_M_N = mkN "novicius" ; -- [GXXEK] :: beginner; novilunium_N_N = mkN "novilunium" ; -- [DSXES] :: new moon; novissime_Adv = mkAdv "novissime" ; -- [XXXCO] :: lately, very recently; last, after all else; for last time; lastly; in the end; novissimum_N_N = mkN "novissimum" ; -- [XXXDX] :: rear (pl.), those at the rear (the freshest troops); novissimus_A = mkA "novissimus" "novissima" "novissimum" ; -- [XXXDX] :: last, rear; most recent; utmost; - novitas_F_N = mkN "novitas" "novitatis " feminine ; -- [XXXAO] :: |restored state (as new); being new appointed/promoted; surprise; modern times; + novitas_F_N = mkN "novitas" "novitatis" feminine ; -- [XXXAO] :: |restored state (as new); being new appointed/promoted; surprise; modern times; noviter_Adv = mkAdv "noviter" ; -- [DXXES] :: recently, newly; novitiatus_M_N = mkN "novitiatus" ; -- [EEXEE] :: novitiate; 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; 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]; + 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; @@ -27059,55 +27053,55 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); - nubes_F_N = mkN "nubes" "nubis " feminine ; -- [XXXAO] :: |frown, gloomy expression; gloom/anxiety; mourning veil; cloud/threat (of war); + nubes_F_N = mkN "nubes" "nubis" feminine ; -- [XXXAO] :: |frown, gloomy expression; gloom/anxiety; mourning veil; cloud/threat (of war); nubifer_A = mkA "nubifer" "nubifera" "nubiferum" ; -- [XXXDX] :: cloud capped; cloud bearing, that brings clouds; nubigena_M_N = mkN "nubigena" ; -- [XXXDX] :: cloud-born; (of the Centaurs); nubilis_A = mkA "nubilis" "nubilis" "nubile" ; -- [XXXDX] :: marriageable; nubilosus_A = mkA "nubilosus" "nubilosa" "nubilosum" ; -- [XXXFO] :: cloudy, foggy; murky; 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); + 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; nuclearis_A = mkA "nuclearis" "nuclearis" "nucleare" ; -- [HSXEK] :: nuclear; nucleus_M_N = mkN "nucleus" ; -- [XXXDX] :: nucleus, inside of a nut, kernel; nut; central part; hard round mass/nodule; - nuditas_F_N = mkN "nuditas" "nuditatis " feminine ; -- [DXXCS] :: nakedness, bareness, nudity, exposure; bareness, want; + nuditas_F_N = mkN "nuditas" "nuditatis" feminine ; -- [DXXCS] :: nakedness, bareness, nudity, exposure; bareness, want; nudius_Adv = mkAdv "nudius" ; -- [XXXEC] :: it is now the...day since; (always with ordinal numerals); nudiustertius_Adv = mkAdv "nudiustertius" ; -- [XXXDX] :: day before yesterday; nudo_V = mkV "nudare" ; -- [XXXDX] :: lay bare, strip; leave unprotected; nudus_A = mkA "nudus" "nuda" "nudum" ; -- [XXXAX] :: nude; bare, stripped; nuga_F_N = mkN "nuga" ; -- [XXXDX] :: trifles (pl.), nonsense; trash; frivolities; bagatelle(s); - nugacitas_F_N = mkN "nugacitas" "nugacitatis " feminine ; -- [EXXES] :: drollery, trifling playfulness; - nugator_M_N = mkN "nugator" "nugatoris " masculine ; -- [XXXDX] :: one who plays the fool; teller of tall stories; + nugacitas_F_N = mkN "nugacitas" "nugacitatis" feminine ; -- [EXXES] :: drollery, trifling playfulness; + nugator_M_N = mkN "nugator" "nugatoris" masculine ; -- [XXXDX] :: one who plays the fool; teller of tall stories; nugatorius_A = mkA "nugatorius" "nugatoria" "nugatorium" ; -- [XXXDX] :: trifling, worthless, futile, paltry; nugigerulus_M_N = mkN "nugigerulus" ; -- [XXXFS] :: clothes-dealer (in female finery); nugivendus_M_N = mkN "nugivendus" ; -- [XXXFS] :: clothes-dealer (in female finery); nugor_V = mkV "nugari" ; -- [XXXDX] :: play the fool, talk nonsense; trifle; nullatenus_Adv = mkAdv "nullatenus" ; -- [FXXEF] :: not at all; in nowise, by no means; nullibi_Adv = mkAdv "nullibi" ; -- [FXXEM] :: nowhere; - nullitas_F_N = mkN "nullitas" "nullitatis " feminine ; -- [GXXEK] :: non-existence; + nullitas_F_N = mkN "nullitas" "nullitatis" feminine ; -- [GXXEK] :: non-existence; nulliter_Adv = mkAdv "nulliter" ; -- [GXXEK] :: not at all; 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; + numen_N_N = mkN "numen" "numinis" neuter ; -- [XXXAX] :: divine will, divinity; god; numerabilis_A = mkA "numerabilis" "numerabilis" "numerabile" ; -- [XXXDX] :: possible/easy to count; numerarius_M_N = mkN "numerarius" ; -- [DSXES] :: accountant, keeper of accounts; arithmetician; - numeratio_F_N = mkN "numeratio" "numerationis " feminine ; -- [XSXDO] :: calculation, reckoning, counting; paying out (money); payment; enumeration; - numerator_M_N = mkN "numerator" "numeratoris " masculine ; -- [GSXEK] :: numerator (math.); + numeratio_F_N = mkN "numeratio" "numerationis" feminine ; -- [XSXDO] :: calculation, reckoning, counting; paying out (money); payment; enumeration; + numerator_M_N = mkN "numerator" "numeratoris" masculine ; -- [GSXEK] :: numerator (math.); numero_Adv = mkAdv "numero" ; -- [XXXDO] :: quickly, rapidly; prematurely, too soon; too much(?); 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; + numerositas_F_N = mkN "numerositas" "numerositatis" feminine ; -- [XXXDS] :: multitude, great number; rhythm, harmony; 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; + 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; nummatus_A = mkA "nummatus" "nummata" "nummatum" ; -- [XXXDX] :: moneyed; nummischedula_F_N = mkN "nummischedula" ; -- [GXXEK] :: banknote; - nummisma_N_N = mkN "nummisma" "nummismatis " neuter ; -- [DXXFS] :: coin/piece of money; coinage; token/voucher; medal (L+S); stamp; image on coin; + nummisma_N_N = mkN "nummisma" "nummismatis" neuter ; -- [DXXFS] :: coin/piece of money; coinage; token/voucher; medal (L+S); stamp; image on coin; nummularius_A = mkA "nummularius" "nummularia" "nummularium" ; -- [XLXFO] :: of/related to the changing of foreign currency; nummularius_M_N = mkN "nummularius" ; -- [XLXCO] :: kind of small-change state banker; (to change foreign currency and test coins); nummulus_M_N = mkN "nummulus" ; -- [XXXEC] :: little piece or sum of money; @@ -27118,14 +27112,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - nunciatio_F_N = mkN "nunciatio" "nunciationis " feminine ; -- [DXXCS] :: announcement of augur signs observed; notice/notification/laying of information; - nunciator_M_N = mkN "nunciator" "nunciatoris " masculine ; -- [DXXES] :: announcer, he who lays information/stays neighbor's action; reporter; informer; - nunciatrix_F_N = mkN "nunciatrix" "nunciatricis " feminine ; -- [DXXFS] :: announcer (female), she who lays information/stays neighbor's action; informer; + nunciatio_F_N = mkN "nunciatio" "nunciationis" feminine ; -- [DXXCS] :: announcement of augur signs observed; notice/notification/laying of information; + nunciator_M_N = mkN "nunciator" "nunciatoris" masculine ; -- [DXXES] :: announcer, he who lays information/stays neighbor's action; reporter; informer; + nunciatrix_F_N = mkN "nunciatrix" "nunciatricis" feminine ; -- [DXXFS] :: announcer (female), she who lays information/stays neighbor's action; informer; nuncio_V2 = mkV2 (mkV "nunciare") ; -- [DXXAS] :: announce/report/bring word/give warning; convey/deliver/relate message/greeting; nuncium_N_N = mkN "nuncium" ; -- [DXXDS] :: message, announcement; news; notice of divorce/annulment of betrothal; nuncius_A = mkA "nuncius" "nuncia" "nuncium" ; -- [DXXDS] :: announcing, bringing word (of occurrence); giving warning; prognosticatory; nuncius_M_N = mkN "nuncius" ; -- [DXXAS] :: messenger/herald/envoy; message (oral), warning; report; messenger's speech; - nuncupatio_F_N = mkN "nuncupatio" "nuncupationis " feminine ; -- [XXXCO] :: solemn pronouncement (vow); naming/declaring; ramification; nomination; name; + nuncupatio_F_N = mkN "nuncupatio" "nuncupationis" feminine ; -- [XXXCO] :: solemn pronouncement (vow); naming/declaring; ramification; nomination; name; nuncupatorius_A = mkA "nuncupatorius" "nuncupatoria" "nuncupatorium" ; -- [GXXEK] :: dedicatory; nuncupatura_F_N = mkN "nuncupatura" ; -- [GXXEK] :: dedication; nuncupo_V = mkV "nuncupare" ; -- [XXXDX] :: call, name; express; @@ -27136,24 +27130,24 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat nunquam_Adv = mkAdv "nunquam" ; -- [XXXDX] :: at no time, never; not in any circumstances; nunquid_Adv = mkAdv "nunquid" ; -- [XXXCO] :: is it possible, surely ... not; can it be that; (question expecting negative); nuntia_F_N = mkN "nuntia" ; -- [XXXEO] :: female messenger; she who brings tidings (L+S); - nuntiatio_F_N = mkN "nuntiatio" "nuntiationis " feminine ; -- [XXXCO] :: announcement of augur signs observed; notice/notification/laying of information; - nuntiator_M_N = mkN "nuntiator" "nuntiatoris " masculine ; -- [XXXEO] :: announcer, he who lays information/stays neighbor's action; reporter; informer; - nuntiatrix_F_N = mkN "nuntiatrix" "nuntiatricis " feminine ; -- [DXXFS] :: announcer (female), she who lays information/stays neighbor's action; informer; + nuntiatio_F_N = mkN "nuntiatio" "nuntiationis" feminine ; -- [XXXCO] :: announcement of augur signs observed; notice/notification/laying of information; + nuntiator_M_N = mkN "nuntiator" "nuntiatoris" masculine ; -- [XXXEO] :: announcer, he who lays information/stays neighbor's action; reporter; informer; + nuntiatrix_F_N = mkN "nuntiatrix" "nuntiatricis" feminine ; -- [DXXFS] :: announcer (female), she who lays information/stays neighbor's action; informer; nuntiatura_F_N = mkN "nuntiatura" ; -- [GXXEK] :: nunciature, representation of Pope by nuncio; office/term of nuncio; nuntio_V2 = mkV2 (mkV "nuntiare") ; -- [XXXAO] :: announce/report/bring word/give warning; convey/deliver/relate message/greeting; 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; + 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; nuptialis_A = mkA "nuptialis" "nuptialis" "nuptiale" ; -- [XXXDX] :: of a wedding or marriage, nuptial; - nurus_F_N = mkN "nurus" "nurus " feminine ; -- [XXXDX] :: daughter-in-law; prospective daughter-in-law; wife of grandson, etc. (leg.); + nurus_F_N = mkN "nurus" "nurus" feminine ; -- [XXXDX] :: daughter-in-law; prospective daughter-in-law; wife of grandson, etc. (leg.); nusquam_Adv = mkAdv "nusquam" ; -- [XXXBX] :: nowhere; on no occasion; nutabilis_A = mkA "nutabilis" "nutabilis" "nutabile" ; -- [XXXFO] :: tottering; insecure; nutabundus_A = mkA "nutabundus" "nutabunda" "nutabundum" ; -- [XXXFO] :: tottering; staggering; - nutamen_N_N = mkN "nutamen" "nutaminis " neuter ; -- [XXXFO] :: bobbing; movement upwards and downwards; + nutamen_N_N = mkN "nutamen" "nutaminis" neuter ; -- [XXXFO] :: bobbing; movement upwards and downwards; nuto_V = mkV "nutare" ; -- [XXXDX] :: waver, give way; nutriamentus_M_N = mkN "nutriamentus" ; -- [FXXEM] :: nourishment; nutricius_A = mkA "nutricius" "nutricia" "nutricium" ; -- [XAXES] :: nourishing; suckling; @@ -27161,36 +27155,36 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat nutrico_V2 = mkV2 (mkV "nutricare") ; -- [XXXCO] :: nurse/suckle; raise/rear/bring up; nourish/promote growth/well being; cherish; nutricor_V = mkV "nutricari" ; -- [XXXEO] :: nurse/suckle; raise/rear/bring up; nourish/promote growth/well being; cherish; nutricula_F_N = mkN "nutricula" ; -- [XXXDX] :: nurse; - nutrimen_N_N = mkN "nutrimen" "nutriminis " neuter ; -- [XXXDX] :: nourishment, sustenance; - nutrimens_F_N = mkN "nutrimens" "nutrimentis " feminine ; -- [FXXEN] :: food, nourishment; + 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; - nyctegreton_N_N = mkN "nyctegreton" "nyctegreti " neuter ; -- [XAQNO] :: thorny oriental plant (reputed to become luminous at night); - nyctegretos_F_N = mkN "nyctegretos" "nyctegreti " feminine ; -- [XAQNO] :: thorny oriental plant (reputed to become luminous at night); - nycticorax_M_N = mkN "nycticorax" "nycticoracis " masculine ; -- [DAXES] :: night raven; + 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; + nyctegreton_N_N = mkN "nyctegreton" "nyctegreti" neuter ; -- [XAQNO] :: thorny oriental plant (reputed to become luminous at night); + nyctegretos_F_N = mkN "nyctegretos" "nyctegreti" feminine ; -- [XAQNO] :: thorny oriental plant (reputed to become luminous at night); + nycticorax_M_N = mkN "nycticorax" "nycticoracis" masculine ; -- [DAXES] :: night raven; nylonium_N_N = mkN "nylonium" ; -- [GXXEK] :: nylon; nylonius_A = mkA "nylonius" "nylonia" "nylonium" ; -- [GXXEK] :: of nylon; 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; + 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; + obaudio_V = mkV "obaudire" "obaudio" "obaudivi" "obauditus"; -- [XXXFO] :: obey, listen to; obba_F_N = mkN "obba" ; -- [XXXFS] :: beaker; decanter; city in Africa near Carthage; - 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; + 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); + 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; obduresco_V2 = mkV2 (mkV "obdurescere" "obduresco" "obdurui" nonExist ) ; -- [XXXDX] :: be persistent, endure; obduro_V = mkV "obdurare" ; -- [XXXDX] :: be hard, persist, endure; @@ -27198,51 +27192,51 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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; - 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; + obeo_1_V = mkV "obire" "obeo" "obivi" "obitus" ; -- [XXXAX] :: go to meet; attend to; fall; die; + obeo_2_V = mkV "obire" "obeo" "obiii" "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; + 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; + 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; + 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; + 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; - objectatio_F_N = mkN "objectatio" "objectationis " feminine ; -- [XXXEO] :: taunting; casting aspersions; reproach (L+S); - objectivitas_F_N = mkN "objectivitas" "objectivitatis " feminine ; -- [GXXEK] :: objectivity; + objectatio_F_N = mkN "objectatio" "objectationis" feminine ; -- [XXXEO] :: taunting; casting aspersions; reproach (L+S); + objectivitas_F_N = mkN "objectivitas" "objectivitatis" feminine ; -- [GXXEK] :: objectivity; objectivum_N_N = mkN "objectivum" ; -- [GXXEK] :: objective (photo); 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; 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; + 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; + 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; - oblatrix_F_N = mkN "oblatrix" "oblatricis " feminine ; -- [BXXFS] :: nagging woman; + oblatio_F_N = mkN "oblatio" "oblationis" feminine ; -- [XXXEO] :: offer/offering (of something), tender, presentation; right to offer something; + oblatrix_F_N = mkN "oblatrix" "oblatricis" feminine ; -- [BXXFS] :: nagging woman; oblatro_V = mkV "oblatrare" ; -- [XXXFS] :: bark at (+DAT or +ACC); - oblectamen_N_N = mkN "oblectamen" "oblectaminis " neuter ; -- [XXXDX] :: delight, pleasure, source of pleasure; + oblectamen_N_N = mkN "oblectamen" "oblectaminis" neuter ; -- [XXXDX] :: delight, pleasure, source of pleasure; oblectamentum_N_N = mkN "oblectamentum" ; -- [XXXDX] :: delight, pleasure, source of pleasure; - oblectatio_F_N = mkN "oblectatio" "oblectationis " feminine ; -- [XXXDX] :: delighting; + 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; + 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; + obligatio_F_N = mkN "obligatio" "obligationis" feminine ; -- [XXXCO] :: obligation (legal/money); bond; being liable; mortgaging/pledging/guaranteeing; obligo_V = mkV "obligare" ; -- [XXXDX] :: bind, oblige; oblimo_V = mkV "oblimare" ; -- [XXXDX] :: cover/fill with mud; silt up; clog; oblino_V = mkV "oblinare" ; -- [XXXDX] :: smear over; @@ -27253,51 +27247,51 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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); + 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; + 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; + 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; + 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); 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; + 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; - obnoxietas_F_N = mkN "obnoxietas" "obnoxietatis " feminine ; -- [FXXEM] :: liability; dependence, interrelation, interrelationship (Red); + obnoxietas_F_N = mkN "obnoxietas" "obnoxietatis" feminine ; -- [FXXEM] :: liability; dependence, interrelation, interrelationship (Red); obnoxiosus_A = mkA "obnoxiosus" "obnoxiosa" "obnoxiosum" ; -- [BXXDS] :: submissive; obnoxius_A = mkA "obnoxius" "obnoxia" "obnoxium" ; -- [XXXBX] :: liable; guilty; - obnubilatio_F_N = mkN "obnubilatio" "obnubilationis " feminine ; -- [FXXFM] :: darkening; + 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; + 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; oboediens_A = mkA "oboediens" "oboedientis"; -- [XXXDX] :: obedient, submissive; 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); + 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); + 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; + 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; 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; + 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]; @@ -27307,23 +27301,23 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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.); 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; + 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.); 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; + 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; 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; + 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; obsecundo_V2 = mkV2 (mkV "obsecundare") ; -- [DXXDS] :: obey, show obedience; comply with, be compliant, humor; fall in with, follow; @@ -27333,36 +27327,36 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - 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; + 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; observo_V = mkV "observare" ; -- [XXXBX] :: watch, observe; heed; - obses_F_N = mkN "obses" "obsidis " feminine ; -- [XWXDX] :: hostage; pledge, security; - obses_M_N = mkN "obses" "obsidis " masculine ; -- [XWXDX] :: hostage; pledge, security; - obsessio_F_N = mkN "obsessio" "obsessionis " feminine ; -- [XWXDX] :: blockade, siege; obsession (Cal); - obsessor_M_N = mkN "obsessor" "obsessoris " masculine ; -- [XWXDX] :: besieger, frequenter; + obses_F_N = mkN "obses" "obsidis" feminine ; -- [XWXDX] :: hostage; pledge, security; + obses_M_N = mkN "obses" "obsidis" masculine ; -- [XWXDX] :: hostage; pledge, security; + obsessio_F_N = mkN "obsessio" "obsessionis" feminine ; -- [XWXDX] :: blockade, siege; obsession (Cal); + obsessor_M_N = mkN "obsessor" "obsessoris" masculine ; -- [XWXDX] :: besieger, frequenter; obsetricium_N_N = mkN "obsetricium" ; -- [EBXFW] :: midwifery/obstetric care (pl.); obsetricius_A = mkA "obsetricius" "obsetricia" "obsetricium" ; -- [EBXEW] :: of/pertaining to a midwife/midwifery/obstetric care; obsetrico_V = mkV "obsetricare" ; -- [EBXEW] :: assist in childbirth, perform the office of a midwife, provide obstetric care; - obsetrix_F_N = mkN "obsetrix" "obsetricis " feminine ; -- [EBXCW] :: midwife; + obsetrix_F_N = mkN "obsetrix" "obsetricis" feminine ; -- [EBXCW] :: midwife; obsideo_V = mkV "obsidere" ; -- [XWXBX] :: blockade, besiege, invest, beset; take possession of; obsidialis_A = mkA "obsidialis" "obsidialis" "obsidiale" ; -- [XWXFO] :: of/connected with siege/blockade; [corona ~ => grass crown for raising siege]; - obsidio_F_N = mkN "obsidio" "obsidionis " feminine ; -- [XWXDX] :: siege; blockade; + 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; obsido_V = mkV "obsidere" "obsido" nonExist nonExist ; -- [XWXDX] :: besiege; occupy; - obsignator_M_N = mkN "obsignator" "obsignatoris " masculine ; -- [XXXDX] :: sealer, witness; + 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; + 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; + 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; + 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; + obsonator_M_N = mkN "obsonator" "obsonatoris" masculine ; -- [XXXDS] :: buyer of victuals; caterer; + obsonatus_M_N = mkN "obsonatus" "obsonatus" masculine ; -- [XXXDS] :: catering; marketing; obsonium_N_N = mkN "obsonium" ; -- [XXXDX] :: food; provisions, shopping; food w/bread; victuals (esp. fish); obsono_V = mkV "obsonare" ; -- [XXXCO] :: buy food, get/purchase provisions/(things for meal); go shopping; feast/banquet; obsonor_V = mkV "obsonari" ; -- [XXXDO] :: buy food, get/purchase provisions/(things for meal); go shopping; feast/banquet; @@ -27373,36 +27367,36 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat obstetricius_A = mkA "obstetricius" "obstetricia" "obstetricium" ; -- [XBXEO] :: of/pertaining to a midwife/midwifery/obstetric care; obstetrico_V = mkV "obstetricare" ; -- [DBXES] :: assist in childbirth, perform the office of a midwife, provide obstetric care; obstetritius_A = mkA "obstetritius" "obstetritia" "obstetritium" ; -- [DBXEO] :: of/pertaining to a midwife/midwifery/obstetric care; - obstetrix_F_N = mkN "obstetrix" "obstetricis " feminine ; -- [XBXCO] :: midwife; + obstetrix_F_N = mkN "obstetrix" "obstetricis" feminine ; -- [XBXCO] :: midwife; obstinate_Adv = mkAdv "obstinate" ; -- [XXXDX] :: resolutely, obstinately; - obstinatio_F_N = mkN "obstinatio" "obstinationis " feminine ; -- [XXXDX] :: determination, stubbornness; + 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; 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; + 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); + 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); 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; + 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; + 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; + 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; + 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; obtexo_V = mkV "obtexere" "obtexo" nonExist nonExist ; -- [XXXDX] :: veil, cover, overspread; weave over; obticeo_V = mkV "obticere" ; -- [XXXEC] :: be silent; @@ -27411,72 +27405,72 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; + obtutus_M_N = mkN "obtutus" "obtutus" masculine ; -- [XXXDX] :: gaze; contemplation; obumbro_V = mkV "obumbrare" ; -- [XXXDX] :: overshadow, darken; conceal; defend; 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; + 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; + 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; + 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; 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; + 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; + 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; + 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; + 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; 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; + 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; + 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; + 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; + 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; 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; + 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); + 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; + occursus_M_N = mkN "occursus" "occursus" masculine ; -- [XXXDX] :: meeting; ocellum_N_N = mkN "ocellum" ; -- [GXXEK] :: buttonhole; ocellus_M_N = mkN "ocellus" ; -- [XXXBX] :: (little) eye; darling; ochraceus_A = mkA "ochraceus" "ochracea" "ochraceum" ; -- [GXXEK] :: ocher-colored; @@ -27489,18 +27483,18 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); octachordos_A = mkA "octachordos" "octachordos" "octachordon" ; -- [XXXFS] :: octachord; 8-stringed; - octaedros_F_N = mkN "octaedros" "octaedri " feminine ; -- [FSXFS] :: octahedron; - octaedros_M_N = mkN "octaedros" "octaedri " masculine ; -- [FSXFS] :: octahedron; + octaedros_F_N = mkN "octaedros" "octaedri" feminine ; -- [FSXFS] :: octahedron; + octaedros_M_N = mkN "octaedros" "octaedri" masculine ; -- [FSXFS] :: octahedron; octipes_A = mkA "octipes" "octipedis"; -- [XXXEC] :: having eight feet; octogenarius_A = mkA "octogenarius" "octogenaria" "octogenarium" ; -- [XXXEC] :: consisting of eighty; octoiugis_A = mkA "octoiugis" "octoiugis" "octoiuge" ; -- [XXXEC] :: yoked eight together; octonarius_A = mkA "octonarius" "octonaria" "octonarium" ; -- [XXXEC] :: consisting of eight together; - octophoron_N_N = mkN "octophoron" "octophori " neuter ; -- [XXXEC] :: litter carried - octophoros_A = mkA "octophoros" "octophoros" "octophoron " ; -- [XXXEC] :: borne by eight; + octophoron_N_N = mkN "octophoron" "octophori" neuter ; -- [XXXEC] :: litter carried + octophoros_A = mkA "octophoros" "octophoros" "octophoron" ; -- [XXXEC] :: borne by eight; octuplicatus_A = mkA "octuplicatus" "octuplicata" "octuplicatum" ; -- [XXXEC] :: increased eightfold; octuplum_N_N = mkN "octuplum" ; -- [XLXEC] :: eightfold penalty; octuplus_A = mkA "octuplus" "octupla" "octuplum" ; -- [XXXEC] :: eightfold; - octussis_M_N = mkN "octussis" "octussis " masculine ; -- [XXXDX] :: eight asses (money); + octussis_M_N = mkN "octussis" "octussis" masculine ; -- [XXXDX] :: eight asses (money); oculatus_A = mkA "oculatus" "oculata" "oculatum" ; -- [XXXEC] :: having eyes; catching the eye, conspicuous; oculus_M_N = mkN "oculus" ; -- [XXXAX] :: eye; odeo_V2 = mkV2 (mkV "odire") ; -- [EXXCW] :: hate; dislike; be disinclined/reluctant/adverse to; (usu. PREFDEF); @@ -27511,12 +27505,12 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - odor_M_N = mkN "odor" "odoris " masculine ; -- [XXXAX] :: scent, odor, aroma, smell; hint, inkling, suggestion; - odoramen_N_N = mkN "odoramen" "odoraminis " neuter ; -- [DXXFS] :: perfume, spice, balsam; + odor_M_N = mkN "odor" "odoris" masculine ; -- [XXXAX] :: scent, odor, aroma, smell; hint, inkling, suggestion; + odoramen_N_N = mkN "odoramen" "odoraminis" neuter ; -- [DXXFS] :: perfume, spice, balsam; odoramentum_N_N = mkN "odoramentum" ; -- [XXXDO] :: aromatic spice; perfume, spice, balsam, odoriferous substance (L+S); - odoratio_F_N = mkN "odoratio" "odorationis " feminine ; -- [XXXFS] :: smelling; smell; sense of smell; + odoratio_F_N = mkN "odoratio" "odorationis" feminine ; -- [XXXFS] :: smelling; smell; sense of smell; odoratus_A = mkA "odoratus" "odorata" "odoratum" ; -- [XXXCO] :: smelling, having smell/odor/scent; fragrant/perfumed/sweet smelling; - odoratus_M_N = mkN "odoratus" "odoratus " masculine ; -- [XXXDO] :: smelling (action); sense of smell; smell (L+S); + odoratus_M_N = mkN "odoratus" "odoratus" masculine ; -- [XXXDO] :: smelling (action); sense of smell; smell (L+S); odorifer_A = mkA "odorifer" "odorifera" "odoriferum" ; -- [XXXDX] :: fragrant, sweet smelling; producing/containing spices/perfumes (places/people); odoro_V = mkV "odorare" ; -- [XXXDX] :: perfume, make fragrant; odoror_V = mkV "odorari" ; -- [XXXBX] :: smell out, scent; get a smattering (of ); @@ -27527,10 +27521,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat oeconomia_F_N = mkN "oeconomia" ; -- [XXXEC] :: arrangement, division; economy (Cal); oeconomicus_A = mkA "oeconomicus" "oeconomica" "oeconomicum" ; -- [XXXEC] :: relating to domestic economy; orderly, methodical; economic; oeconomus_M_N = mkN "oeconomus" ; -- [GXXET] :: steward (Erasmus); arranger/manager; - oecosystema_N_N = mkN "oecosystema" "oecosystematis " neuter ; -- [HXXEK] :: ecosystem; + oecosystema_N_N = mkN "oecosystema" "oecosystematis" neuter ; -- [HXXEK] :: ecosystem; oecumenicus_A = mkA "oecumenicus" "oecumenica" "oecumenicum" ; -- [GEXEK] :: ecumenical; oecumenismus_M_N = mkN "oecumenismus" ; -- [GEXEK] :: ecumenism; - oenanthe_F_N = mkN "oenanthe" "oenanthes " feminine ; -- [XAXES] :: wild grape; thorny plant; mother of Ptolemy Epiphanes; + 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; oephi_N = constN "oephi" neuter ; -- [DEQFW] :: ephi/ephah, Jewish dry measure; (ten gomor, over twenty bushels); @@ -27539,39 +27533,39 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; 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; + 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; offertoria_F_N = mkN "offertoria" ; -- [FEXDE] :: offering; offertorium_N_N = mkN "offertorium" ; -- [DEXES] :: offertory; place where offerings were brought; linen cloth for holding paten; offerumenta_F_N = mkN "offerumenta" ; -- [BXXFS] :: present; gift; officialis_A = mkA "officialis" "officialis" "officiale" ; -- [XXXEO] :: official (post-classical); connected with duty/office/service/obligation; - officialis_M_N = mkN "officialis" "officialis " masculine ; -- [XXXDO] :: official/servant attending a magistrate; an official; civil servant (Cal); + 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 = mkV2 (mkV "officere" "officio" "offeci" "offectus ") Dat_Prep ; -- [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; - offigo_V2 = mkV2 (mkV "offigere" "offigo" "offixi" "offixus ") ; -- [XXXDS] :: fasten; drive in; + 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; + 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; + 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; 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; @@ -27585,14 +27579,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; + 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); @@ -27602,29 +27596,29 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat oligarchia_F_N = mkN "oligarchia" ; -- [GXXEK] :: oligarchy; oligarchicus_A = mkA "oligarchicus" "oligarchica" "oligarchicum" ; -- [GXXEK] :: oligarchic; olim_Adv = mkAdv "olim" ; -- [XXXAX] :: formerly; once, once upon a time; in the future; - olitor_M_N = mkN "olitor" "olitoris " masculine ; -- [XXXDX] :: vegetable-grower; + olitor_M_N = mkN "olitor" "olitoris" masculine ; -- [XXXDX] :: vegetable-grower; olitorius_A = mkA "olitorius" "olitoria" "olitorium" ; -- [XXXDX] :: pertaining to vegetables; oliva_F_N = mkN "oliva" ; -- [XXXDX] :: olive; olive tree; olivaceus_A = mkA "olivaceus" "olivacea" "olivaceum" ; -- [GXXEK] :: olive-colored; olivetum_N_N = mkN "olivetum" ; -- [XXXDX] :: olive-yard; olivifer_A = mkA "olivifer" "olivifera" "oliviferum" ; -- [XXXDX] :: olive-bearing; - olivitas_F_N = mkN "olivitas" "olivitatis " feminine ; -- [XXXFS] :: olive-gathering; olive harvest; + olivitas_F_N = mkN "olivitas" "olivitatis" feminine ; -- [XXXFS] :: olive-gathering; olive harvest; olivum_N_N = mkN "olivum" ; -- [XXXDX] :: olive-oil; wrestling; olla_F_N = mkN "olla" ; -- [XXXDX] :: pot, jar; ollus_A = mkA "ollus" "olla" "ollum" ; -- [BXXES] :: that; those; that person; that thing; (archaic form of ille/a/ud); - olor_M_N = mkN "olor" "oloris " masculine ; -- [XXXDX] :: swan; constellation Cygnus; + olor_M_N = mkN "olor" "oloris" masculine ; -- [XXXDX] :: swan; constellation Cygnus; olorinus_A = mkA "olorinus" "olorina" "olorinum" ; -- [XXXDX] :: of/belonging to swan/swans; - olus_N_N = mkN "olus" "oleris " neuter ; -- [XXXDX] :: vegetables; cabbage, turnips, greens; kitchen/pot herbs; + 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; 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; + 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; 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; + 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; omnifer_A = mkA "omnifer" "omnifera" "omniferum" ; -- [XXXEC] :: bearing everything; @@ -27638,8 +27632,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat omnipotentia_F_N = mkN "omnipotentia" ; -- [XEXES] :: almighty power; omnipotence; omnipraesens_A = mkA "omnipraesens" "omnipraesentis"; -- [FXXEM] :: omnipresent; omnis_A = mkA "omnis" "omnis" "omne" ; -- [XXXAC] :: each, every, every one (of a number); all (pl.); all/the whole of; - omnis_F_N = mkN "omnis" "omnis " feminine ; -- [XXXBC] :: all men (pl.), all persons; - omnis_M_N = mkN "omnis" "omnis " masculine ; -- [XXXBC] :: all men (pl.), all persons; + omnis_F_N = mkN "omnis" "omnis" feminine ; -- [XXXBC] :: all men (pl.), all persons; + omnis_M_N = mkN "omnis" "omnis" masculine ; -- [XXXBC] :: all men (pl.), all persons; omniscientia_F_N = mkN "omniscientia" ; -- [FXXEM] :: omniscience; omnituens_A = mkA "omnituens" "omnituentis"; -- [XXXFS] :: all-seeing; omnivagus_A = mkA "omnivagus" "omnivaga" "omnivagum" ; -- [XXXEC] :: wandering everywhere; @@ -27652,13 +27646,13 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat onocentaurus_M_N = mkN "onocentaurus" ; -- [XYXES] :: ass-centaur; (fabulous creature); impure person; monster (Douay); onocrotalus_M_N = mkN "onocrotalus" ; -- [XAXEO] :: pelican; ontologia_F_N = mkN "ontologia" ; -- [GEXEE] :: ontology, study of being; metaphysics related to being/essence; (Scanlon); - onus_N_N = mkN "onus" "oneris " neuter ; -- [XXXBX] :: load, burden; cargo; + onus_N_N = mkN "onus" "oneris" neuter ; -- [XXXBX] :: load, burden; cargo; onustus_A = mkA "onustus" "onusta" "onustum" ; -- [XXXDX] :: laden; onycha_F_N = mkN "onycha" ; -- [XAXNW] :: kind of mollusk; - onyche_F_N = mkN "onyche" "onyches " feminine ; -- [XAXNO] :: kind of mollusk; + onyche_F_N = mkN "onyche" "onyches" feminine ; -- [XAXNO] :: kind of mollusk; onychinus_A = mkA "onychinus" "onychina" "onychinum" ; -- [XXXEO] :: onyx-, made of onyx marble; resembling/colored like onyx marble; - onyx_F_N = mkN "onyx" "onychis " feminine ; -- [XXXNO] :: |multicolored gem; variety of quartz; kind of razor-shell clam; female scallop; - onyx_M_N = mkN "onyx" "onychis " masculine ; -- [XXXNO] :: |multicolored gem; variety of quartz; kind of razor-shell clam; female scallop; + onyx_F_N = mkN "onyx" "onychis" feminine ; -- [XXXNO] :: |multicolored gem; variety of quartz; kind of razor-shell clam; female scallop; + onyx_M_N = mkN "onyx" "onychis" masculine ; -- [XXXNO] :: |multicolored gem; variety of quartz; kind of razor-shell clam; female scallop; opaco_V = mkV "opacare" ; -- [XXXDX] :: shade, overshadow; opacus_A = mkA "opacus" "opaca" "opacum" ; -- [XXXBX] :: dark, shaded; opaque; opella_F_N = mkN "opella" ; -- [XXXDX] :: little effort; trifling duties; @@ -27666,11 +27660,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat operaria_F_N = mkN "operaria" ; -- [XXXFO] :: worker (female), working woman, she who hires out her services; operarius_A = mkA "operarius" "operaria" "operarium" ; -- [XXXCO] :: laboring, working for hire; used in farm work (animals); used by laborers; operarius_M_N = mkN "operarius" ; -- [XXXCO] :: laborer, worker, mechanic, one who works for hire; - operatio_F_N = mkN "operatio" "operationis " feminine ; -- [GBXEK] :: ||surgical operation; (Cal); + operatio_F_N = mkN "operatio" "operationis" feminine ; -- [GBXEK] :: ||surgical operation; (Cal); 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 + 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; @@ -27679,42 +27673,42 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat opertum_N_N = mkN "opertum" ; -- [XXXDS] :: secret; secret place; opertus_A = mkA "opertus" "operta" "opertum" ; -- [XXXDX] :: hidden; obscure, secret; ophiomachus_M_N = mkN "ophiomachus" ; -- [EAXFW] :: kind of locust; beetle; cricket; (interpretations of different Bibles); - ophites_M_N = mkN "ophites" "ophitae " masculine ; -- [DXXNS] :: spotted marble (like a snake); (Pliny); + ophites_M_N = mkN "ophites" "ophitae" masculine ; -- [DXXNS] :: spotted marble (like a snake); (Pliny); ophthalmia_F_N = mkN "ophthalmia" ; -- [GBXEK] :: ophthalmia/ophthalmy/ophthalmitis; inflammation of (conjunctiva of) the eye; ophthalmologia_F_N = mkN "ophthalmologia" ; -- [GBXEK] :: ophthalmology, study of the eye; ophthalmologus_M_N = mkN "ophthalmologus" ; -- [GBXEK] :: ophthalmologist, eye doctor; opicus_A = mkA "opicus" "opica" "opicum" ; -- [XXXDS] :: coarse; boorish; opifer_A = mkA "opifer" "opifera" "opiferum" ; -- [XXXDX] :: bringing help; - opifex_M_N = mkN "opifex" "opificis " masculine ; -- [XXXDX] :: workman; - opilio_M_N = mkN "opilio" "opilionis " masculine ; -- [XAXDO] :: shepherd, herdsman (for sheep/goats); kind of bird; + opifex_M_N = mkN "opifex" "opificis" masculine ; -- [XXXDX] :: workman; + opilio_M_N = mkN "opilio" "opilionis" masculine ; -- [XAXDO] :: shepherd, herdsman (for sheep/goats); kind of bird; opimus_A = mkA "opimus" "opima" "opimum" ; -- [XXXBX] :: rich, fertile; abundant; fat, plump; [opima spolia => spoils from a general]; opinatus_A = mkA "opinatus" "opinata" "opinatum" ; -- [XXXDS] :: supposed; imagined; - opinatus_M_N = mkN "opinatus" "opinatus " masculine ; -- [XXXDS] :: supposition; - opinio_F_N = mkN "opinio" "opinionis " feminine ; -- [XXXDX] :: belief, idea, opinion; rumor (Plater); + opinatus_M_N = mkN "opinatus" "opinatus" masculine ; -- [XXXDS] :: supposition; + opinio_F_N = mkN "opinio" "opinionis" feminine ; -- [XXXDX] :: belief, idea, opinion; rumor (Plater); opiniosus_A = mkA "opiniosus" "opiniosa" "opiniosum" ; -- [XXXEC] :: set in opinion; - opinitas_F_N = mkN "opinitas" "opinitatis " feminine ; -- [XXXDS] :: abundance; + opinitas_F_N = mkN "opinitas" "opinitatis" feminine ; -- [XXXDS] :: abundance; opinor_V = mkV "opinari" ; -- [XXXBX] :: suppose, imagine; opipare_Adv = mkAdv "opipare" ; -- [XXXEC] :: splendidly, richly, sumptuously; opiparus_A = mkA "opiparus" "opipara" "opiparum" ; -- [XXXEC] :: splendid, rich, sumptuous; opisthotonos_A = mkA "opisthotonos" "opisthotonos" "opisthotonon" ; -- [FBXEM] :: curved-backwards; - opisthotonos_F_N = mkN "opisthotonos" "opisthotoni " feminine ; -- [DBXES] :: opisthotonos, body-curving disease; (spasms arch body backward); ~ tetanus; - opitulatrix_F_N = mkN "opitulatrix" "opitulatricis " feminine ; -- [GEXFZ] :: female-helper(JFW); + opisthotonos_F_N = mkN "opisthotonos" "opisthotoni" feminine ; -- [DBXES] :: opisthotonos, body-curving disease; (spasms arch body backward); ~ tetanus; + opitulatrix_F_N = mkN "opitulatrix" "opitulatricis" feminine ; -- [GEXFZ] :: female-helper(JFW); opitulor_V = mkV "opitulari" ; -- [XXXDX] :: bring aid to; help; bring relief to; opium_N_N = mkN "opium" ; -- [GXXEK] :: opium; - opopanax_M_N = mkN "opopanax" "opopanacis " masculine ; -- [XAXES] :: Opopanax plant, supposed to heal all diseases; panacea, heal-all; + opopanax_M_N = mkN "opopanax" "opopanacis" masculine ; -- [XAXES] :: Opopanax plant, supposed to heal all diseases; panacea, heal-all; oporotheca_F_N = mkN "oporotheca" ; -- [XAXEO] :: room for storing fruit; - oporothece_F_N = mkN "oporothece" "oporotheces " feminine ; -- [XAXEO] :: room for storing fruit; + oporothece_F_N = mkN "oporothece" "oporotheces" feminine ; -- [XAXEO] :: room for storing fruit; oporteo_V = mkV "oportere" ; -- [XXXEO] :: require (to be done), order; 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; + oportunitas_F_N = mkN "oportunitas" "oportunitatis" feminine ; -- [XXXBO] :: convenience, advantageousness; right time; opportuneness; opportunity, chance; 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; + 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 = 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; + 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.); @@ -27723,32 +27717,32 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + opportunitas_F_N = mkN "opportunitas" "opportunitatis" feminine ; -- [XXXBO] :: convenience, advantageousness; right time; opportuneness; opportunity, chance; 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; + 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; + 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; + 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.); + 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; + 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.); 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; + 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.); 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; @@ -27756,31 +27750,31 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat opsecundanter_Adv = mkAdv "opsecundanter" ; -- [DXXFS] :: according to; in compliance with; opsecundo_V2 = mkV2 (mkV "opsecundare") ; -- [DXXDS] :: obey, show obedience; comply with, be compliant, humor; fall in with, follow; opsequium_N_N = mkN "opsequium" ; -- [XXXBO] :: ||servility/subservience/obsequiousness; ceremony (Bee); attendance; retinue; - opservatio_F_N = mkN "opservatio" "opservationis " feminine ; -- [XXXAO] :: observation, attention, action of watching/taking notice; surveillance; usage; + opservatio_F_N = mkN "opservatio" "opservationis" feminine ; -- [XXXAO] :: observation, attention, action of watching/taking notice; surveillance; usage; opsono_V = mkV "opsonare" ; -- [XXXCO] :: buy food, get/purchase provisions/(things for meal); go shopping; feast/banquet; opsonor_V = mkV "opsonari" ; -- [XXXDO] :: buy food, get/purchase provisions/(things for meal); go shopping; feast/banquet; opstetricium_N_N = mkN "opstetricium" ; -- [XBXFO] :: midwifery/obstetric care (pl.); opstetricius_A = mkA "opstetricius" "opstetricia" "opstetricium" ; -- [XBXEO] :: of/pertaining to a midwife/midwifery/obstetric care; opstetrico_V = mkV "opstetricare" ; -- [DBXES] :: assist in childbirth, perform the office of a midwife, provide obstetric care; opstetritius_A = mkA "opstetritius" "opstetritia" "opstetritium" ; -- [DBXEO] :: of/pertaining to a midwife/midwifery/obstetric care; - opstetrix_F_N = mkN "opstetrix" "opstetricis " feminine ; -- [XBXCO] :: midwife; - opstitrix_F_N = mkN "opstitrix" "opstitricis " feminine ; -- [DBXCS] :: midwife; + opstetrix_F_N = mkN "opstetrix" "opstetricis" feminine ; -- [XBXCO] :: midwife; + opstitrix_F_N = mkN "opstitrix" "opstitricis" feminine ; -- [DBXCS] :: midwife; 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; + optatio_F_N = mkN "optatio" "optationis" feminine ; -- [XXXEO] :: wish; expression of a wish; act of wishing; optatum_N_N = mkN "optatum" ; -- [XXXDS] :: wish, desire; 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; optimas_A = mkA "optimas" "optimatis"; -- [XXXDS] :: aristocratic; - optimas_M_N = mkN "optimas" "optimatis " masculine ; -- [XXXBX] :: aristocrat, patrician; wellborn; nobles/patricians/"Good men" adherent/partisan; + optimas_M_N = mkN "optimas" "optimatis" masculine ; -- [XXXBX] :: aristocrat, patrician; wellborn; nobles/patricians/"Good men" adherent/partisan; optimismus_M_N = mkN "optimismus" ; -- [GXXEK] :: optimism; 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; + 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; opto_V = mkV "optare" ; -- [XXXAX] :: choose, select; wish, wish for, desire; optume_Adv = mkAdv "optume" ; -- [XXXCO] :: best; (SUPER of bene); most satisfactorily/aptly/wisely/favorably; certainly!; @@ -27790,7 +27784,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat opulentia_F_N = mkN "opulentia" ; -- [XXXDX] :: riches, wealth; sumptuousness; 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]; + 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; ora_F_N = mkN "ora" ; -- [XXXBX] :: shore, coast; oraclum_N_N = mkN "oraclum" ; -- [XXXBX] :: oracle (place/agency/mouthpiece); prophecy; oracular saying/precept/maxim; @@ -27798,20 +27792,20 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat oralis_A = mkA "oralis" "oralis" "orale" ; -- [GXXEK] :: oral; orarium_N_N = mkN "orarium" ; -- [XXXES] :: napkin; handkerchief; orarius_A = mkA "orarius" "oraria" "orarium" ; -- [XXXFO] :: coasting, used along the coast; - oratio_F_N = mkN "oratio" "orationis " feminine ; -- [XXXAX] :: speech, oration; eloquence; prayer; + oratio_F_N = mkN "oratio" "orationis" feminine ; -- [XXXAX] :: speech, oration; eloquence; prayer; oratiuncula_F_N = mkN "oratiuncula" ; -- [XXXEC] :: little speech, short oration; - orator_M_N = mkN "orator" "oratoris " masculine ; -- [XXXAX] :: speaker, orator; + orator_M_N = mkN "orator" "oratoris" masculine ; -- [XXXAX] :: speaker, orator; oratorie_Adv = mkAdv "oratorie" ; -- [XXXDX] :: oratorically; in the manner of an orator; oratorius_A = mkA "oratorius" "oratoria" "oratorium" ; -- [XXXDX] :: of an orator; oratorical; - oratrix_F_N = mkN "oratrix" "oratricis " feminine ; -- [XXXFS] :: female supplicant; - oratus_M_N = mkN "oratus" "oratus " masculine ; -- [XXXFS] :: request; entreaty; - orbator_M_N = mkN "orbator" "orbatoris " masculine ; -- [XPXDS] :: bereaver; depriver of parents or children; + oratrix_F_N = mkN "oratrix" "oratricis" feminine ; -- [XXXFS] :: female supplicant; + oratus_M_N = mkN "oratus" "oratus" masculine ; -- [XXXFS] :: request; entreaty; + orbator_M_N = mkN "orbator" "orbatoris" masculine ; -- [XPXDS] :: bereaver; depriver of parents or children; orbicularis_A = mkA "orbicularis" "orbicularis" "orbiculare" ; -- [XSXFS] :: circular (of a planet); orbiculatus_A = mkA "orbiculatus" "orbiculata" "orbiculatum" ; -- [XXXDO] :: round, having circular shape; (as name of varieties of apple/pear); orbiculus_M_N = mkN "orbiculus" ; -- [XXXDO] :: disk, small circular object/wheel/roller/figure/form; revolving drum; ring; - orbis_M_N = mkN "orbis" "orbis " masculine ; -- [XXXAX] :: circle; territory/region; sphere; [orbis terrarum => world/(circle of lands)]; + orbis_M_N = mkN "orbis" "orbis" masculine ; -- [XXXAX] :: circle; territory/region; sphere; [orbis terrarum => world/(circle of lands)]; orbita_F_N = mkN "orbita" ; -- [XXXDX] :: wheel-track, rut; orbit; - orbitas_F_N = mkN "orbitas" "orbitatis " feminine ; -- [XXXDX] :: bereavement; loss of a child; orphanhood; childlessness; + orbitas_F_N = mkN "orbitas" "orbitatis" feminine ; -- [XXXDX] :: bereavement; loss of a child; orphanhood; childlessness; orbitosus_A = mkA "orbitosus" "orbitosa" "orbitosum" ; -- [XPXES] :: rutted; full of cart-ruts; orbo_V = mkV "orbare" ; -- [XXXDX] :: bereave (of parents, children, etc), deprive (of); orbus_A = mkA "orbus" "orba" "orbum" ; -- [XXXDX] :: bereft, deprived,childless; @@ -27819,7 +27813,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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); orcus_M_N = mkN "orcus" ; -- [FXXEN] :: Lower World; A:whale; (see also Orcus); ordeaceus_A = mkA "ordeaceus" "ordeacea" "ordeaceum" ; -- [XAXCO] :: barley-, of/connected to barley; @@ -27834,18 +27828,18 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat ordinarius_A = mkA "ordinarius" "ordinaria" "ordinarium" ; -- [XXXDX] :: regular, ordinary; ordinate_Adv =mkAdv "ordinate" "ordinatius" "ordinatissime" ; -- [XXXDX] :: in order/regular formation; in an orderly manner, methodically; ordinatim_Adv = mkAdv "ordinatim" ; -- [XXXDX] :: in order/succession/sequence/good order; regularly, properly; symmetrically; - ordinator_M_N = mkN "ordinator" "ordinatoris " masculine ; -- [GXXEK] :: producer; + ordinator_M_N = mkN "ordinator" "ordinatoris" masculine ; -- [GXXEK] :: producer; ordinatralis_A = mkA "ordinatralis" "ordinatralis" "ordinatrale" ; -- [GTXEK] :: of computer; ordinatraliter_Adv = mkAdv "ordinatraliter" ; -- [GTXEK] :: by computer; ordinatrum_N_N = mkN "ordinatrum" ; -- [GTXEK] :: computer; 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; + 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; - orexis_F_N = mkN "orexis" "orexis " feminine ; -- [XXXDX] :: craving, longing; appetite; + 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; + orexis_F_N = mkN "orexis" "orexis" feminine ; -- [XXXDX] :: craving, longing; appetite; orfanus_M_N = mkN "orfanus" ; -- [DXXCS] :: orphan; organalis_A = mkA "organalis" "organalis" "organale" ; -- [DDXFS] :: organ-; of/pertaining to organ/instrument; organarius_M_N = mkN "organarius" ; -- [GDXEK] :: organist; @@ -27854,7 +27848,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat organicus_M_N = mkN "organicus" ; -- [XDXEO] :: musician, who plays musical instrument; organismus_M_N = mkN "organismus" ; -- [GBXEK] :: organism; organista_M_N = mkN "organista" ; -- [GDXEK] :: organist; - organizatio_F_N = mkN "organizatio" "organizationis " feminine ; -- [GXXEK] :: organization; + organizatio_F_N = mkN "organizatio" "organizationis" feminine ; -- [GXXEK] :: organization; organizo_V = mkV "organizare" ; -- [GXXEK] :: organize; organum_N_N = mkN "organum" ; -- [XDXCO] :: organ; organ pipe; mechanical device; instrument; [~ hydraulicum=>water organ]; orgium_N_N = mkN "orgium" ; -- [XXXDX] :: secret rites (of Bacchus) (pl.), mysteries; orgies; @@ -27867,23 +27861,23 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat oricularius_A = mkA "oricularius" "oricularia" "oricularium" ; -- [XBXEO] :: of/for the ear/ears; [medicus auricularius => ear specialist]; oricularius_M_N = mkN "oricularius" ; -- [DBXES] :: ear doctor/specialist, aurist; counselor; oriens_A = mkA "oriens" "orientis"; -- [XSXCO] :: rising (sun/star); eastern; beginning, in its early stage (period/activity); - oriens_M_N = mkN "oriens" "orientis " masculine ; -- [XSXCO] :: daybreak/dawn/sunrise; east, sunrise quarter of the sky; the East/Orient; + oriens_M_N = mkN "oriens" "orientis" masculine ; -- [XSXCO] :: daybreak/dawn/sunrise; east, sunrise quarter of the sky; the East/Orient; orientalis_A = mkA "orientalis" "orientalis" "orientale" ; -- [XXXDO] :: eastern, of/belonging to the east; easterly; oriental; orificium_N_N = mkN "orificium" ; -- [EXXES] :: opening; orifice; origa_M_N = mkN "origa" ; -- [XXXDX] :: charioteer, driver; groom, ostler; helmsman; the Waggoner (constellation); 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); + 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; + ornatrix_F_N = mkN "ornatrix" "ornatricis" feminine ; -- [XXXES] :: female adorner; hairdressing slave; 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; + ornithoboscion_N_N = mkN "ornithoboscion" "ornithoboscii" neuter ; -- [XAXEO] :: 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; + 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; oro_V = mkV "orere" "oro" nonExist nonExist ; -- [EXXEX] :: burn; @@ -27891,7 +27885,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat orphanotrophium_N_N = mkN "orphanotrophium" ; -- [GXXEK] :: orphanage; orphanus_M_N = mkN "orphanus" ; -- [DXXCS] :: orphan; orsum_N_N = mkN "orsum" ; -- [XXXDX] :: words (pl.), utterance; undertakings, enterprises; - orsus_M_N = mkN "orsus" "orsus " masculine ; -- [XXXDX] :: web (weaving); beginning, start; attempt (ACC P), undertaking, initiative; + orsus_M_N = mkN "orsus" "orsus" masculine ; -- [XXXDX] :: web (weaving); beginning, start; attempt (ACC P), undertaking, initiative; orthodoxe_Adv = mkAdv "orthodoxe" ; -- [DEXFS] :: in an orthodox manner; orthodoxus_A = mkA "orthodoxus" "orthodoxa" "orthodoxum" ; -- [DEXDS] :: orthodox; believer; orthodoxus_M_N = mkN "orthodoxus" ; -- [DEXET] :: orthodox believer; @@ -27905,22 +27899,22 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat orto_V2 = mkV2 (mkV "ortare") ; -- [EXXDM] :: procreate; give birth/rise to; beget; engender/produce/generate (offspring); ortor_V = mkV "ortari" ; -- [EXXFM] :: procreate; give birth/rise to; beget; engender/produce/generate (offspring); ortus_A = mkA "ortus" "orta" "ortum" ; -- [XXXDS] :: descended/born/sprung (from w/ex/ab/ABL); [a se ~ => w/out famous ancestors]; - ortus_M_N = mkN "ortus" "ortus " masculine ; -- [XXXBO] :: |birth; ancestry; coming into being; source; springing up (wind); + ortus_M_N = mkN "ortus" "ortus" masculine ; -- [XXXBO] :: |birth; ancestry; coming into being; source; springing up (wind); ortygometra_F_N = mkN "ortygometra" ; -- [XAXNO] :: bird (migrates with quail); corncrake/landrail; quail (L+S); quail-leader; - ortygometras_F_N = mkN "ortygometras" "ortygometrae " feminine ; -- [EAXFW] :: bird (migrates with quail); corncrake/landrail; quail (L+S); quail-leader; - ortyx_M_N = mkN "ortyx" "ortygis " masculine ; -- [EAXEP] :: |quail; (Souter); - oryx_M_N = mkN "oryx" "orygis " masculine ; -- [XAXDO] :: North African antelope/gazelle; wild goat (L+S); wild bull/ox (Vulgate); + ortygometras_F_N = mkN "ortygometras" "ortygometrae" feminine ; -- [EAXFW] :: bird (migrates with quail); corncrake/landrail; quail (L+S); quail-leader; + ortyx_M_N = mkN "ortyx" "ortygis" masculine ; -- [EAXEP] :: |quail; (Souter); + oryx_M_N = mkN "oryx" "orygis" masculine ; -- [XAXDO] :: North African antelope/gazelle; wild goat (L+S); wild bull/ox (Vulgate); oryza_F_N = mkN "oryza" ; -- [XXXEO] :: rice; - os_N_N = mkN "os" "ossuis " neuter ; -- [XXXDX] :: bones (pl.); (dead people); - oscen_F_N = mkN "oscen" "oscinis " feminine ; -- [XEXDO] :: bird which gives omens by its cry; song-bird; - oscen_M_N = mkN "oscen" "oscinis " masculine ; -- [XEXDO] :: bird which gives omens by its cry; song-bird; + os_N_N = mkN "os" "ossuis" neuter ; -- [XXXDX] :: bones (pl.); (dead people); + oscen_F_N = mkN "oscen" "oscinis" feminine ; -- [XEXDO] :: bird which gives omens by its cry; song-bird; + oscen_M_N = mkN "oscen" "oscinis" masculine ; -- [XEXDO] :: bird which gives omens by its cry; song-bird; oscillatorius_A = mkA "oscillatorius" "oscillatoria" "oscillatorium" ; -- [GXXEK] :: oscillating; oscillatrum_N_N = mkN "oscillatrum" ; -- [GSXEK] :: oscillator; oscillum_N_N = mkN "oscillum" ; -- [FXXEK] :: |swing; (Cal); oscitans_A = mkA "oscitans" "oscitantis"; -- [XXXDS] :: listless; sluggish; sleepy; - oscitatio_F_N = mkN "oscitatio" "oscitationis " feminine ; -- [XXXEC] :: gaping, yawning; + oscitatio_F_N = mkN "oscitatio" "oscitationis" feminine ; -- [XXXEC] :: gaping, yawning; oscito_V = mkV "oscitare" ; -- [XXXDX] :: gape; yawn; - osculatio_F_N = mkN "osculatio" "osculationis " feminine ; -- [XXXEO] :: kissing; action of kissing; + osculatio_F_N = mkN "osculatio" "osculationis" feminine ; -- [XXXEO] :: kissing; action of kissing; osculor_V = mkV "osculari" ; -- [XXXDX] :: kiss; exchange kisses; osculum_N_N = mkN "osculum" ; -- [XXXAX] :: kiss; mouth; lips; orifice; mouthpiece (of a pipe); ossarium_N_N = mkN "ossarium" ; -- [XXXEO] :: charnel-house; place for the bones of the dead; @@ -27933,14 +27927,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; ostento_V = mkV "ostentare" ; -- [XXXDX] :: show, display; point out, declare; disclose, hold out (prospect); ostentui_Adv = mkAdv "ostentui" ; -- [XXXEC] :: for a show; merely for show; as sign/indication or proof; ostentum_N_N = mkN "ostentum" ; -- [XXXDX] :: prodigy, marvel; occurrence foreshadowing future events, portent; - ostentus_M_N = mkN "ostentus" "ostentus " masculine ; -- [XXXDX] :: display, demonstration, advertisement; (DAT merely for show; as a sign); + ostentus_M_N = mkN "ostentus" "ostentus" masculine ; -- [XXXDX] :: display, demonstration, advertisement; (DAT merely for show; as a sign); ostiarium_N_N = mkN "ostiarium" ; -- [XLXDS] :: door tax; ostiarius_A = mkA "ostiarius" "ostiaria" "ostiarium" ; -- [XXXDX] :: of/belonging to door; ostiarius_M_N = mkN "ostiarius" ; -- [EEXCV] :: porter, doorkeeper; cleric of minor orders (lowest/fourth level from deacon); @@ -27958,95 +27952,94 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat otior_V = mkV "otiari" ; -- [XXXDX] :: be at leisure, enjoy a holiday; 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; + 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; otium_N_N = mkN "otium" ; -- [XXXAO] :: leisure; spare time; holiday; ease/rest/peace/quiet; tranquility/calm; lull; otus_M_N = mkN "otus" ; -- [XAXNO] :: horned/eared owl; ovanter_Adv = mkAdv "ovanter" ; -- [FXXEM] :: exultantly; ovarium_N_N = mkN "ovarium" ; -- [GBXEK] :: ovary; - ovatio_F_N = mkN "ovatio" "ovationis " feminine ; -- [XXXDS] :: ovation; minor triumph for an easy victory; + ovatio_F_N = mkN "ovatio" "ovationis" feminine ; -- [XXXDS] :: ovation; minor triumph for an easy victory; ovicula_F_N = mkN "ovicula" ; -- [FAXFM] :: little sheep; E:Christ's sheep; sheep of Christ's flock; - ovile_N_N = mkN "ovile" "ovilis " neuter ; -- [XAXDX] :: sheepfold; + ovile_N_N = mkN "ovile" "ovilis" neuter ; -- [XAXDX] :: sheepfold; ovillus_A = mkA "ovillus" "ovilla" "ovillum" ; -- [XAXEC] :: of sheep; - ovis_F_N = mkN "ovis" "ovis " feminine ; -- [XAXAX] :: sheep; + ovis_F_N = mkN "ovis" "ovis" feminine ; -- [XAXAX] :: sheep; ovo_V = mkV "ovare" ; -- [XXXBX] :: rejoice; - ovulatio_F_N = mkN "ovulatio" "ovulationis " feminine ; -- [GBXEK] :: ovulation; + ovulatio_F_N = mkN "ovulatio" "ovulationis" feminine ; -- [GBXEK] :: ovulation; ovulum_N_N = mkN "ovulum" ; -- [GBXEK] :: ovum; ovum_N_N = mkN "ovum" ; -- [XXXBX] :: egg; oval; - oxydatio_F_N = mkN "oxydatio" "oxydationis " feminine ; -- [GSXEK] :: oxidization; + oxydatio_F_N = mkN "oxydatio" "oxydationis" feminine ; -- [GSXEK] :: oxidization; oxydo_V = mkV "oxydare" ; -- [GSXEK] :: oxidize; oxygarum_N_N = mkN "oxygarum" ; -- [XAXFS] :: vinegar-garum sauce; 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; - p_N = constN "p." masculine ; -- [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; + pabulatio_F_N = mkN "pabulatio" "pabulationis" feminine ; -- [XXXDX] :: foraging; + pabulator_M_N = mkN "pabulator" "pabulatoris" masculine ; -- [XXXDX] :: forager; pabulor_V = mkV "pabulari" ; -- [XXXDX] :: forage; 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; pacatus_A = mkA "pacatus" ; -- [XXXDX] :: peaceful, calm; - paccator_M_N = mkN "paccator" "paccatoris " masculine ; -- [EEXDX] :: sinner; + 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; paciens_A = mkA "paciens" "pacientis"; -- [FXXBW] :: |hardy; able/willing to endure; capable of bearing/standing up to hard use; pacienter_Adv =mkAdv "pacienter" "pacientius" "pacientissime" ; -- [FXXCW] :: patiently; with patience/toleration; pacifer_A = mkA "pacifer" "pacifera" "paciferum" ; -- [XXXCO] :: that brings peace; (esp. of various gods); of olive/laurel peace symbols/tokens; - pacificator_M_N = mkN "pacificator" "pacificatoris " masculine ; -- [XXXDS] :: peace-maker; + pacificator_M_N = mkN "pacificator" "pacificatoris" masculine ; -- [XXXDS] :: peace-maker; pacificatorius_A = mkA "pacificatorius" "pacificatoria" "pacificatorium" ; -- [XXXFS] :: peace-making; pacific; 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; - 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; + 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; + 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); + paean_M_N = mkN "paean" "paeanis" masculine ; -- [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; - paederastes_F_N = mkN "paederastes" "paederastae " feminine ; -- [GXXEK] :: pederasty; - paederos_M_N = mkN "paederos" "paederotis " masculine ; -- [DSXNS] :: precious stone; A:bear's foot plant (Pliny); + paederastes_F_N = mkN "paederastes" "paederastae" feminine ; -- [GXXEK] :: pederasty; + paederos_M_N = mkN "paederos" "paederotis" masculine ; -- [DSXNS] :: precious stone; A:bear's foot plant (Pliny); paediater_M_N = mkN "paediater" ; -- [GXXEK] :: paediatrician, children's doctor; paediatria_F_N = mkN "paediatria" ; -- [GXXEK] :: paediatrics, medical science dealing with childhood diseases; - paedicator_M_N = mkN "paedicator" "paedicatoris " masculine ; -- [XXXEO] :: sodomite, pedicstor; + paedicator_M_N = mkN "paedicator" "paedicatoris" masculine ; -- [XXXEO] :: sodomite, pedicstor; paedico_V = mkV "paedicare" ; -- [XXXDX] :: commit sodomy/pederasty with, practice unnatural vice upon; paedico_V2 = mkV2 (mkV "paedicare") ; -- [XXXCO] :: perform anal intercourse; commit sodomy with; paedophilia_F_N = mkN "paedophilia" ; -- [GXXEK] :: child molestation; paedophilus_M_N = mkN "paedophilus" ; -- [GXXEK] :: child molester; - paedor_M_N = mkN "paedor" "paedoris " masculine ; -- [XXXDX] :: filth, dirt; - paelex_F_N = mkN "paelex" "paelicis " feminine ; -- [XXXBO] :: mistress (installed as rival/in addition to wife), concubine; male prostitute; + paedor_M_N = mkN "paedor" "paedoris" masculine ; -- [XXXDX] :: filth, dirt; + paelex_F_N = mkN "paelex" "paelicis" feminine ; -- [XXXBO] :: mistress (installed as rival/in addition to wife), concubine; male prostitute; paene_Adv = mkAdv "paene" ; -- [XXXAX] :: nearly, almost; mostly; paeninsula_F_N = mkN "paeninsula" ; -- [XXXDX] :: peninsula; paenitentia_F_N = mkN "paenitentia" ; -- [XXXBO] :: regret (for act); change of mind/attitude; repentance/contrition (Def); penance; paeniteo_V = mkV "paenitere" ; -- [XXXAO] :: displease; (cause to) regret; repent, be sorry; [me paenitet => I am sorry]; paenitet_V0 = mkV0 "paenitet" ; -- [XXXBO] :: it displeases, makes angry, offends, dissatisfies, makes sorry; - paenitudo_F_N = mkN "paenitudo" "paenitudinis " feminine ; -- [XXXFO] :: regret; repentance (L+S); + paenitudo_F_N = mkN "paenitudo" "paenitudinis" feminine ; -- [XXXFO] :: regret; repentance (L+S); paenula_F_N = mkN "paenula" ; -- [XXXDX] :: hooded weatherproof cloak; paenularius_M_N = mkN "paenularius" ; -- [XXXES] :: mantle-maker; paenulatus_A = mkA "paenulatus" "paenulata" "paenulatum" ; -- [XXXDX] :: wearing a paenula; - paeon_M_N = mkN "paeon" "paeonis " masculine ; -- [XPXEC] :: metrical foot, consisting of three short syllables and one long; + paeon_M_N = mkN "paeon" "paeonis" masculine ; -- [XPXEC] :: metrical foot, consisting of three short syllables and one long; paeonius_A = mkA "paeonius" "paeonia" "paeonium" ; -- [XPXDS] :: healing; of the god of medicine; paetulus_A = mkA "paetulus" "paetula" "paetulum" ; -- [XXXEC] :: with a slight cast in the eyes, squinting; paetus_A = mkA "paetus" "paeta" "paetum" ; -- [XXXDX] :: having cast in the eye, squinting slightly; paga_F_N = mkN "paga" ; -- [FLXFM] :: district; county (equiv. to pagus); paganicus_A = mkA "paganicus" "paganica" "paganicum" ; -- [XXXEO] :: rustic; belonging to village/country people; [pila ~ => feather stuffed ball]; paganismus_M_N = mkN "paganismus" ; -- [FEXEM] :: Pagan World; - paganitas_F_N = mkN "paganitas" "paganitatis " feminine ; -- [FEXEM] :: paganism; + paganitas_F_N = mkN "paganitas" "paganitatis" feminine ; -- [FEXEM] :: paganism; paganum_N_N = mkN "paganum" ; -- [XXXEO] :: civilian affairs (pl.); paganus_A = mkA "paganus" "pagana" "paganum" ; -- [XXXCO] :: pagan; of a pagus (country district); rural/rustic; civilian (not military); paganus_M_N = mkN "paganus" ; -- [XXXBO] :: pagan; countryman, peasant; civilian (not soldier); civilians/locals (pl.); pagatim_Adv = mkAdv "pagatim" ; -- [XXXES] :: in every village; in a village manner Nelson); pagella_F_N = mkN "pagella" ; -- [XXXEC] :: little page; - pagencis_M_N = mkN "pagencis" "pagencis " masculine ; -- [FXXFM] :: inhabitants of a district; country-folk, peasants; - pagensis_M_N = mkN "pagensis" "pagensis " masculine ; -- [FXXEM] :: inhabitants of a district; country-folk, peasants; + pagencis_M_N = mkN "pagencis" "pagencis" masculine ; -- [FXXFM] :: inhabitants of a district; country-folk, peasants; + pagensis_M_N = mkN "pagensis" "pagensis" masculine ; -- [FXXEM] :: inhabitants of a district; country-folk, peasants; pagina_F_N = mkN "pagina" ; -- [XXXBX] :: page, sheet; paginula_F_N = mkN "paginula" ; -- [XXXEC] :: little page; pagus_M_N = mkN "pagus" ; -- [XXXCO] :: country district/community, canton; @@ -28060,11 +28053,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - palear_N_N = mkN "palear" "palearis " neuter ; -- [XXXDX] :: dewlap (usu.pl.), fold of skin hanging from throat of cattle; + palear_N_N = mkN "palear" "palearis" neuter ; -- [XXXDX] :: dewlap (usu.pl.), fold of skin hanging from throat of cattle; paleatus_A = mkA "paleatus" "paleata" "paleatum" ; -- [XAXNS] :: chaff-mixed; palifico_V = mkV "palificare" ; -- [FXXEN] :: make evident; palimpsestus_M_N = mkN "palimpsestus" ; -- [XXXEC] :: palimpsest; @@ -28072,7 +28065,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat paliurus_M_N = mkN "paliurus" ; -- [XXXDX] :: shrub, Christ's thorn; palla_F_N = mkN "palla" ; -- [XXXDX] :: palla, a lady's outer garment; pallaca_F_N = mkN "pallaca" ; -- [XXXEO] :: concubine; - pallas_F_N = mkN "pallas" "palladis " feminine ; -- [XAXFS] :: olive tree; E:goddess Minerva/Athene; + 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; pallesco_V2 = mkV2 (mkV "pallescere" "pallesco" "pallui" nonExist ) ; -- [XXXDX] :: grow pale; blanch; fade; @@ -28083,12 +28076,12 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat palliolum_N_N = mkN "palliolum" ; -- [XXHEC] :: little Greek cloak; a hood; pallium_N_N = mkN "pallium" ; -- [XXXDX] :: cover, coverlet; Greek cloak; pallolum_N_N = mkN "pallolum" ; -- [XXXDX] :: small/little cloak; small Greek mantle; - pallor_M_N = mkN "pallor" "palloris " masculine ; -- [XXXDX] :: wanness; paleness of complexion; pallidness; + pallor_M_N = mkN "pallor" "palloris" masculine ; -- [XXXDX] :: wanness; paleness of complexion; pallidness; palma_F_N = mkN "palma" ; -- [XXXAO] :: palm/width of the hand; hand; palm tree/branch; date; palm award/first place; palmaris_A = mkA "palmaris" "palmaris" "palmare" ; -- [XXXES] :: palm-wide; palm-, of palms; prize-worthy; palmarium_N_N = mkN "palmarium" ; -- [XDXEC] :: masterpiece; palmatus_A = mkA "palmatus" "palmata" "palmatum" ; -- [XXXDX] :: embroidered with palm branches; - palmes_M_N = mkN "palmes" "palmitis " masculine ; -- [XXXDX] :: young vine branch/shoot/sprig/sprout; vine, bough, branch; + palmes_M_N = mkN "palmes" "palmitis" masculine ; -- [XXXDX] :: young vine branch/shoot/sprig/sprout; vine, bough, branch; palmetum_N_N = mkN "palmetum" ; -- [XXXDX] :: palm-grove; palmeus_A = mkA "palmeus" "palmea" "palmeum" ; -- [XXXFS] :: hands-width; palm-, of palm; palmifer_A = mkA "palmifer" "palmifera" "palmiferum" ; -- [XXXDX] :: palm-bearing; @@ -28096,7 +28089,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat palmula_F_N = mkN "palmula" ; -- [XXXDX] :: oar; palmus_M_N = mkN "palmus" ; -- [XXXDO] :: palm of the hand; width of palm as unit of measure (4 inches); span (L+S); palor_V = mkV "palari" ; -- [XXXDX] :: wander abroad stray; scatter; wander aimlessly; - palpator_M_N = mkN "palpator" "palpatoris " masculine ; -- [XXXDS] :: flatterer; stroker; + palpator_M_N = mkN "palpator" "palpatoris" masculine ; -- [XXXDS] :: flatterer; stroker; palpebra_F_N = mkN "palpebra" ; -- [XXXEC] :: eyelid; palpito_V = mkV "palpitare" ; -- [XXXDX] :: throb, beat, pulsate; palpo_V2 = mkV2 (mkV "palpare") ; -- [XXXEC] :: stroke; coax, flatter, wheedle; @@ -28108,47 +28101,47 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat paludismus_M_N = mkN "paludismus" ; -- [GBXEK] :: malaria; paludosus_A = mkA "paludosus" "paludosa" "paludosum" ; -- [XXXDX] :: fenny, boggy, swampy, marshy; palum_N_N = mkN "palum" ; -- [XXXBO] :: stake/pile/pole/unsplit wood; peg/pin; execution stake; wood sword; fence (pl.); - palumbes_F_N = mkN "palumbes" "palumbis " feminine ; -- [XAXCO] :: wood-pigeon, ringdove; dupe, pigeon, mark, gull, one deceived/fooled/cheated; - palumbes_M_N = mkN "palumbes" "palumbis " masculine ; -- [XAXCO] :: wood-pigeon, ringdove; dupe, pigeon, mark, gull, one deceived/fooled/cheated; + palumbes_F_N = mkN "palumbes" "palumbis" feminine ; -- [XAXCO] :: wood-pigeon, ringdove; dupe, pigeon, mark, gull, one deceived/fooled/cheated; + palumbes_M_N = mkN "palumbes" "palumbis" masculine ; -- [XAXCO] :: wood-pigeon, ringdove; dupe, pigeon, mark, gull, one deceived/fooled/cheated; palumbus_M_N = mkN "palumbus" ; -- [XAXCO] :: wood-pigeon, ringdove; dupe, pigeon, mark, gull, one deceived/fooled/cheated; - palus_F_N = mkN "palus" "paludis " feminine ; -- [XXXBX] :: swamp, marsh; + palus_F_N = mkN "palus" "paludis" feminine ; -- [XXXBX] :: swamp, marsh; palus_M_N = mkN "palus" ; -- [XXXBO] :: stake/pile/pole/unsplit wood; peg/pin; execution stake; wood sword; fence (pl.); paluster_A = mkA "paluster" "palustris" "palustre" ; -- [XXXDX] :: marshy; of marshes; - palux_F_N = mkN "palux" "palucis " feminine ; -- [XXSFO] :: gold-dust, gold-sand; (?); + palux_F_N = mkN "palux" "palucis" feminine ; -- [XXSFO] :: gold-dust, gold-sand; (?); pampinarium_N_N = mkN "pampinarium" ; -- [XAXES] :: tendril-branch; pampinarius_A = mkA "pampinarius" "pampinaria" "pampinarium" ; -- [XAXES] :: of tendrils; - pampinatio_F_N = mkN "pampinatio" "pampinationis " feminine ; -- [XAXES] :: trimming (of vines); + pampinatio_F_N = mkN "pampinatio" "pampinationis" feminine ; -- [XAXES] :: trimming (of vines); pampineus_A = mkA "pampineus" "pampinea" "pampineum" ; -- [XXXDX] :: of/covered with vine shoots/foliage/tendrils; pampino_V = mkV "pampinare" ; -- [XAXES] :: trim (vines); pampinus_C_N = mkN "pampinus" ; -- [XXXDX] :: vine shoot, vine foliage; panacea_F_N = mkN "panacea" ; -- [XAXCS] :: plant (medicinal); panacea, heal-all; kind of savory; daughter of Aesculapius; - panaces_M_N = mkN "panaces" "panacis " masculine ; -- [XAXCO] :: plant, supposed to cure all diseases; panacea, heal-all; (species of Opoponax); - panaces_N_N = mkN "panaces" "panacis " neuter ; -- [XAXCO] :: plant, supposed to cure all diseases; panacea, heal-all; (species of Opoponax); + panaces_M_N = mkN "panaces" "panacis" masculine ; -- [XAXCO] :: plant, supposed to cure all diseases; panacea, heal-all; (species of Opoponax); + panaces_N_N = mkN "panaces" "panacis" neuter ; -- [XAXCO] :: plant, supposed to cure all diseases; panacea, heal-all; (species of Opoponax); panarium_N_N = mkN "panarium" ; -- [XXXEC] :: breadbasket; - panax_F_N = mkN "panax" "panacis " feminine ; -- [XAXCO] :: plant, supposed to cure all diseases; panacea, heal-all; (species of Opoponax); - panax_M_N = mkN "panax" "panacis " masculine ; -- [XAXCO] :: plant, supposed to cure all diseases; panacea, heal-all; (species of Opoponax); + panax_F_N = mkN "panax" "panacis" feminine ; -- [XAXCO] :: plant, supposed to cure all diseases; panacea, heal-all; (species of Opoponax); + panax_M_N = mkN "panax" "panacis" masculine ; -- [XAXCO] :: plant, supposed to cure all diseases; panacea, heal-all; (species of Opoponax); panchrestus_A = mkA "panchrestus" "panchresta" "panchrestum" ; -- [XXXEC] :: good for everything; panchristus_A = mkA "panchristus" "panchrista" "panchristum" ; -- [XXXEC] :: good for everything; - pancratiastes_M_N = mkN "pancratiastes" "pancratiastae " masculine ; -- [XWXFS] :: wrestler (in Pancratium); - pancration_N_N = mkN "pancration" "pancratii " neuter ; -- [XXXEC] :: gymnastic contest; + pancratiastes_M_N = mkN "pancratiastes" "pancratiastae" masculine ; -- [XWXFS] :: wrestler (in Pancratium); + pancration_N_N = mkN "pancration" "pancratii" neuter ; -- [XXXEC] :: gymnastic contest; pancratium_N_N = mkN "pancratium" ; -- [XXXEC] :: gymnastic contest; - pancreas_F_N = mkN "pancreas" "pancreatis " feminine ; -- [GBXEK] :: pancreas; - 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; + pancreas_F_N = mkN "pancreas" "pancreatis" feminine ; -- [GBXEK] :: pancreas; + 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]; + 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; + 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; + 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; panicus_A = mkA "panicus" "panica" "panicum" ; -- [GXXEK] :: panicky; - panifex_M_N = mkN "panifex" "panificis " masculine ; -- [DXXFS] :: baker, bread maker; + panifex_M_N = mkN "panifex" "panificis" masculine ; -- [DXXFS] :: baker, bread maker; panifica_F_N = mkN "panifica" ; -- [EXXFS] :: baker (female), she who makes bread; panificium_N_N = mkN "panificium" ; -- [XXXDO] :: making/baking of bread; baked bread/loves/cakes (pl.); - panis_M_N = mkN "panis" "panis " masculine ; -- [XXXAX] :: bread; loaf; + panis_M_N = mkN "panis" "panis" masculine ; -- [XXXAX] :: bread; loaf; panniculus_M_N = mkN "panniculus" ; -- [XXXEC] :: little garment; pannosus_A = mkA "pannosus" "pannosa" "pannosum" ; -- [XXXDX] :: dressed in rags, tattered; pannuceus_A = mkA "pannuceus" "pannucea" "pannuceum" ; -- [XXXEC] :: ragged; wrinkled, shriveled; @@ -28156,22 +28149,22 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat pannus_M_N = mkN "pannus" ; -- [XXXBX] :: cloth, garment; charioteer's colored shirt; rags; panoplia_F_N = mkN "panoplia" ; -- [GXXFT] :: equipment; (Erasmus); pansa_F_N = mkN "pansa" ; -- [XXXEC] :: splay-footed; - pantex_M_N = mkN "pantex" "panticis " masculine ; -- [XXXDX] :: belly (usu. pl.), paunch, guts; bowels; of sausages; + pantex_M_N = mkN "pantex" "panticis" masculine ; -- [XXXDX] :: belly (usu. pl.), paunch, guts; bowels; of sausages; pantheismus_M_N = mkN "pantheismus" ; -- [GXXEK] :: pantheism; pantheisticus_A = mkA "pantheisticus" "pantheistica" "pantheisticum" ; -- [GXXEK] :: pantheistic; panthera_F_N = mkN "panthera" ; -- [XXXDX] :: leopard; the whole of a single catch made by a fowler; pantomima_F_N = mkN "pantomima" ; -- [XXXDX] :: female mime performer in a pantomime; pantomimus_M_N = mkN "pantomimus" ; -- [XXXDX] :: mime performer in a pantomime; - panton_N_N = mkN "panton" "panti " neuter ; -- [FXXEN] :: everything; + panton_N_N = mkN "panton" "panti" neuter ; -- [FXXEN] :: everything; pantopolium_N_N = mkN "pantopolium" ; -- [GXXEK] :: department store; papaia_F_N = mkN "papaia" ; -- [GAXEK] :: papaya/pawpaw (Carica papaya); papainum_N_N = mkN "papainum" ; -- [GSXEK] :: papain enzyme; (ferment from papaya, aids digestion, meat tenderizer); papalis_A = mkA "papalis" "papalis" "papale" ; -- [GXXEK] :: papal; - papas_M_N = mkN "papas" "papatis " masculine ; -- [XXXDS] :: governor; tutor; - papatus_M_N = mkN "papatus" "papatus " masculine ; -- [GXXEK] :: papacy; - papaver_N_N = mkN "papaver" "papaveris " neuter ; -- [XXXDX] :: poppy; poppy-seed; + papas_M_N = mkN "papas" "papatis" masculine ; -- [XXXDS] :: governor; tutor; + papatus_M_N = mkN "papatus" "papatus" masculine ; -- [GXXEK] :: papacy; + papaver_N_N = mkN "papaver" "papaveris" neuter ; -- [XXXDX] :: poppy; poppy-seed; papavereus_A = mkA "papavereus" "papaverea" "papavereum" ; -- [XXXDX] :: of poppy, poppy-; - papilio_M_N = mkN "papilio" "papilionis " masculine ; -- [XXXDX] :: butterfly, moth; + papilio_M_N = mkN "papilio" "papilionis" masculine ; -- [XXXDX] :: butterfly, moth; papilla_F_N = mkN "papilla" ; -- [XXXDX] :: nipple, teat, dug (of mammals); papissa_F_N = mkN "papissa" ; -- [GXXEK] :: popess, supposed female pope; (Joan); papista_M_N = mkN "papista" ; -- [GXXEK] :: papist; @@ -28180,52 +28173,52 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat papula_F_N = mkN "papula" ; -- [XXXDX] :: pimple, pustule; papyraceus_A = mkA "papyraceus" "papyracea" "papyraceum" ; -- [GXXEK] :: of paper; papyrifer_A = mkA "papyrifer" "papyrifera" "papyriferum" ; -- [XXXDX] :: papyrus-bearing; - papyrio_M_N = mkN "papyrio" "papyrionis " masculine ; -- [XXXFS] :: papyrus marsh, place where papyrus grows abundantly; + papyrio_M_N = mkN "papyrio" "papyrionis" masculine ; -- [XXXFS] :: papyrus marsh, place where papyrus grows abundantly; papyrum_N_N = mkN "papyrum" ; -- [XXXDX] :: papyrus, the plant (reed); a garment or "paper" made from the papyrus plant; papyrus_C_N = mkN "papyrus" ; -- [XXXDX] :: papyrus, the plant (reed); a garment or "paper" made from the papyrus plant; par_A = mkA "par" "paris"; -- [XXXAS] :: ||||balanced/level; S:even, divisible by two; [~ facere => settle accounts]; - par_F_N = mkN "par" "paris " feminine ; -- [XXXCO] :: |equal, counterpart; companion/partner at dinner; adversary, opponent; - par_M_N = mkN "par" "paris " masculine ; -- [XXXCO] :: |equal, counterpart; companion/partner at dinner; adversary, opponent; - par_N_N = mkN "par" "paris " neuter ; -- [XXXBO] :: pair, set of two; conjugal pair; pair of associates/adversaries/contestants; + par_F_N = mkN "par" "paris" feminine ; -- [XXXCO] :: |equal, counterpart; companion/partner at dinner; adversary, opponent; + par_M_N = mkN "par" "paris" masculine ; -- [XXXCO] :: |equal, counterpart; companion/partner at dinner; adversary, opponent; + par_N_N = mkN "par" "paris" neuter ; -- [XXXBO] :: pair, set of two; conjugal pair; pair of associates/adversaries/contestants; parabilis_A = mkA "parabilis" "parabilis" "parabile" ; -- [XXXDX] :: procurable, easily obtainable; parabola_F_N = mkN "parabola" ; -- [GSXEK] :: |parabola (math.); - parabole_F_N = mkN "parabole" "paraboles " feminine ; -- [XXXEO] :: comparison; explanatory illustration; parable (L+S), allegory; proverb; speech; + parabole_F_N = mkN "parabole" "paraboles" feminine ; -- [XXXEO] :: comparison; explanatory illustration; parable (L+S), allegory; proverb; speech; parabolicus_A = mkA "parabolicus" "parabolica" "parabolicum" ; -- [GSXEK] :: parabolic; parabolois_A = mkA "parabolois" "paraboloidis"; -- [GSXEK] :: paraboloid; parabula_F_N = mkN "parabula" ; -- [EXXEP] :: comparison; explanatory illustration; parable (L+S), allegory; proverb; speech; - paracharactes_M_N = mkN "paracharactes" "paracharactae " masculine ; -- [FXXEK] :: counterfeiter; - paracharagma_N_N = mkN "paracharagma" "paracharagmatis " neuter ; -- [FXXEK] :: forged currency; + paracharactes_M_N = mkN "paracharactes" "paracharactae" masculine ; -- [FXXEK] :: counterfeiter; + paracharagma_N_N = mkN "paracharagma" "paracharagmatis" neuter ; -- [FXXEK] :: forged currency; paracletus_M_N = mkN "paracletus" ; -- [EXXDS] :: advocate, defender, protector, helper, comforter; (appellation for Holy Ghost); paraclitus_M_N = mkN "paraclitus" ; -- [EXXDS] :: advocate, defender, protector, helper, comforter; (appellation for Holy Ghost); paradisus_M_N = mkN "paradisus" ; -- [XEXCS] :: Paradise, Garden of Eden; abode of the blessed; park, orchard; a town/river; paradoxum_N_N = mkN "paradoxum" ; -- [XSXEO] :: paradox; philosophical paradoxes (pl.); paragauda_F_N = mkN "paragauda" ; -- [XXXFS] :: lace-border; laced garment; - paragoge_F_N = mkN "paragoge" "paragoges " feminine ; -- [XGXFS] :: word-lengthening; paragoge, addition of letter/syllable to word (for emphasis); + paragoge_F_N = mkN "paragoge" "paragoges" feminine ; -- [XGXFS] :: word-lengthening; paragoge, addition of letter/syllable to word (for emphasis); paragraphum_N_N = mkN "paragraphum" ; -- [FGXFM] :: paragraph; paragraph-mark; paragraphus_M_N = mkN "paragraphus" ; -- [FGXFM] :: paragraph; paragraph-mark; paralios_A = mkA "paralios" "paralios" "paralion" ; -- [XAXNS] :: seaside-growing (Pliny); - parallaxis_F_N = mkN "parallaxis" "parallaxis " feminine ; -- [GSXEK] :: parallax; + parallaxis_F_N = mkN "parallaxis" "parallaxis" feminine ; -- [GSXEK] :: parallax; 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); + paralysis_F_N = mkN "paralysis" "paralysis" feminine ; -- [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; - paramese_F_N = mkN "paramese" "parameses " feminine ; -- [FDXFO] :: lowest note of tetrachord; next-to-middle-note; B-flat treble; ring finger; + paramese_F_N = mkN "paramese" "parameses" feminine ; -- [FDXFO] :: lowest note of tetrachord; next-to-middle-note; B-flat treble; ring finger; 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; + 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); - 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; + parapsis_F_N = mkN "parapsis" "parapsidis" feminine ; -- [XXXCO] :: 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); + parasis_F_N = mkN "parasis" "parasidis" feminine ; -- [XXXDO] :: 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; @@ -28237,31 +28230,31 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; parens_A = mkA "parens" "parentis"; -- [XXXES] :: obedient; - parens_F_N = mkN "parens" "parentis " feminine ; -- [XXXAX] :: parent, father, mother; - parens_M_N = mkN "parens" "parentis " masculine ; -- [XXXAX] :: parent, father, mother; - parentale_N_N = mkN "parentale" "parentalis " neuter ; -- [XXXDS] :: Parentalia; festival for dead ancestors; + parens_F_N = mkN "parens" "parentis" feminine ; -- [XXXAX] :: parent, father, mother; + parens_M_N = mkN "parens" "parentis" masculine ; -- [XXXAX] :: parent, father, mother; + parentale_N_N = mkN "parentale" "parentalis" neuter ; -- [XXXDS] :: Parentalia; festival for dead ancestors; parentalis_A = mkA "parentalis" "parentalis" "parentale" ; -- [XXXDX] :: of or belonging to parents; - parenthesis_F_N = mkN "parenthesis" "parenthesis " feminine ; -- [FGXEK] :: bracket; + parenthesis_F_N = mkN "parenthesis" "parenthesis" feminine ; -- [FGXEK] :: bracket; parentheticus_A = mkA "parentheticus" "parenthetica" "parentheticum" ; -- [GXXEK] :: inserted; parento_V = mkV "parentare" ; -- [XXXDX] :: perform rites at tombs; make appeasement offering (to the dead); pareo_V = mkV "parere" ; -- [XXXAO] :: |appear, be visible, be seen; be clear/evident (legal); - parhypate_F_N = mkN "parhypate" "parhypates " feminine ; -- [XDXES] :: next-to-lowest tetrachord note; second-top string/note, next to highest (L+S); - paries_M_N = mkN "paries" "parietis " masculine ; -- [XXXDX] :: wall, house wall; + parhypate_F_N = mkN "parhypate" "parhypates" feminine ; -- [XDXES] :: next-to-lowest tetrachord note; second-top string/note, next to highest (L+S); + paries_M_N = mkN "paries" "parietis" masculine ; -- [XXXDX] :: wall, house wall; parietarius_A = mkA "parietarius" "parietaria" "parietarium" ; -- [FXXEK] :: mural; of a wall; parietina_F_N = mkN "parietina" ; -- [XXXEC] :: old walls (pl.), ruins; parilis_A = mkA "parilis" "parilis" "parile" ; -- [XXXDX] :: like, equal; - parilitas_F_N = mkN "parilitas" "parilitatis " feminine ; -- [FXXEN] :: equality; level to make fit; + 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; + 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; - paritas_F_N = mkN "paritas" "paritatis " feminine ; -- [EXXES] :: equality; parity; + paritas_F_N = mkN "paritas" "paritatis" feminine ; -- [EXXES] :: equality; parity; pariter_Adv = mkAdv "pariter" ; -- [XXXAX] :: equally; together; parito_V2 = mkV2 (mkV "paritare") ; -- [BXXFS] :: make ready; parlamentaris_A = mkA "parlamentaris" "parlamentaris" "parlamentare" ; -- [GXXEK] :: parliamentary; @@ -28282,27 +28275,27 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + paropsis_F_N = mkN "paropsis" "paropsidis" feminine ; -- [XXXCO] :: 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); - parotis_F_N = mkN "parotis" "parotidis " feminine ; -- [XBXES] :: tumor near ear; bracket of hyperthyrum; + parosis_F_N = mkN "parosis" "parosidis" feminine ; -- [XXXDO] :: 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; parricidalis_A = mkA "parricidalis" "parricidalis" "parricidale" ; -- [XLXEO] :: parricidal, of/connected with parricide/murder of near relative; treasonous; parricidium_N_N = mkN "parricidium" ; -- [XXXBO] :: parricide; murder of near relative; assassination (of head of state); treason; - pars_F_N = mkN "pars" "partis " feminine ; -- [XXXAX] :: |role (of actor); office/function/duty (usu. pl.); [centesima ~ => 1% monthly]; + pars_F_N = mkN "pars" "partis" feminine ; -- [XXXAX] :: |role (of actor); office/function/duty (usu. pl.); [centesima ~ => 1% monthly]; parsimonia_F_N = mkN "parsimonia" ; -- [XXXDX] :: frugality, thrift, parsimony, temperance; - parthenice_F_N = mkN "parthenice" "parthenices " feminine ; -- [XAXFS] :: plant (unknown); + parthenice_F_N = mkN "parthenice" "parthenices" feminine ; -- [XAXFS] :: plant (unknown); parthenium_N_N = mkN "parthenium" ; -- [XAXFS] :: plant (several types); partibilis_A = mkA "partibilis" "partibilis" "partibile" ; -- [DXXES] :: divisible; particeps_A = mkA "particeps" "participis"; -- [XXXDX] :: sharing in, taking part in; - particeps_F_N = mkN "particeps" "participis " feminine ; -- [XXXDX] :: sharer, partaker; - particeps_M_N = mkN "particeps" "participis " masculine ; -- [XXXDX] :: sharer, partaker; - participatio_F_N = mkN "participatio" "participationis " feminine ; -- [XGXEO] :: participation, sharing (in); participle (grammar); + particeps_F_N = mkN "particeps" "participis" feminine ; -- [XXXDX] :: sharer, partaker; + particeps_M_N = mkN "particeps" "participis" masculine ; -- [XXXDX] :: sharer, partaker; + participatio_F_N = mkN "participatio" "participationis" feminine ; -- [XGXEO] :: participation, sharing (in); participle (grammar); participialis_A = mkA "participialis" "participialis" "participiale" ; -- [XGXES] :: participle-like; participialiter_Adv = mkAdv "participialiter" ; -- [XGXES] :: participle-wise; - participio_F_N = mkN "participio" "participionis " feminine ; -- [XXXEO] :: participation, sharing (in); participle (grammar); + participio_F_N = mkN "participio" "participionis" feminine ; -- [XXXEO] :: participation, sharing (in); participle (grammar); participium_N_N = mkN "participium" ; -- [XXXDX] :: participle; participo_V = mkV "participare" ; -- [XXXDX] :: share; impart; partake of; participate in; particula_F_N = mkN "particula" ; -- [XXXDX] :: small part, little bit, particle, atom; @@ -28312,41 +28305,41 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; 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; + 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; + 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; + 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; 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; + 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; - passer_M_N = mkN "passer" "passeris " masculine ; -- [XXXDX] :: sparrow; + passer_M_N = mkN "passer" "passeris" masculine ; -- [XXXDX] :: sparrow; passerculus_M_N = mkN "passerculus" ; -- [XXXEC] :: little sparrow; passibilis_A = mkA "passibilis" "passibilis" "passibile" ; -- [DXXDS] :: passible, capable of feeling/suffering/emotion; susceptible to sensations; - passibilitas_F_N = mkN "passibilitas" "passibilitatis " feminine ; -- [DXXFS] :: passiblity, capablity of feeling/suffering; susceptiblity to sensation/emotion; + passibilitas_F_N = mkN "passibilitas" "passibilitatis" feminine ; -- [DXXFS] :: passiblity, capablity of feeling/suffering; susceptiblity to sensation/emotion; passim_Adv = mkAdv "passim" ; -- [XXXDX] :: here and there; everywhere; - passio_F_N = mkN "passio" "passionis " feminine ; -- [EEXDX] :: suffering; passion; (esp. of Christ); disease (Bee); + passio_F_N = mkN "passio" "passionis" feminine ; -- [EEXDX] :: suffering; passion; (esp. of Christ); disease (Bee); passive_Adv = mkAdv "passive" ; -- [XXXEO] :: freely, indiscriminately; randomly; passively, in passive sense (Latham); passivus_A = mkA "passivus" "passiva" "passivum" ; -- [XXXEO] :: random, indiscriminate; passive, being acted on (Latham); passum_N_N = mkN "passum" ; -- [XXXDX] :: raisin-wine; passus_A = mkA "passus" "passa" "passum" ; -- [XXXDS] :: spread out; outstretched; dried; - passus_M_N = mkN "passus" "passus " masculine ; -- [XXXBX] :: step, pace; [mille passus -> mile; duo milia passuum => two miles]; + passus_M_N = mkN "passus" "passus" masculine ; -- [XXXBX] :: step, pace; [mille passus -> mile; duo milia passuum => two miles]; pastillus_M_N = mkN "pastillus" ; -- [XXXEC] :: lozenge; pastinaca_F_N = mkN "pastinaca" ; -- [EXXFS] :: parsnip; carrot; fish-of-prey (sting-ray?); pastinatum_N_N = mkN "pastinatum" ; -- [XAXFO] :: plants (pl.) cultivated by preparing (ground) by digging and leveling; @@ -28355,19 +28348,19 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat pastoforius_M_N = mkN "pastoforius" ; -- [XEXEO] :: priest (of Isis) who carried image of deity in little shrine to collect alms; pastophorium_N_N = mkN "pastophorium" ; -- [DEXES] :: place in temple where image of deity was preserved and his servants abode; pastophorius_M_N = mkN "pastophorius" ; -- [XEXEO] :: priest (of Isis) who carried image of deity in little shrine to collect alms; - pastor_M_N = mkN "pastor" "pastoris " masculine ; -- [XXXAX] :: shepherd, herdsman; + pastor_M_N = mkN "pastor" "pastoris" masculine ; -- [XXXAX] :: shepherd, herdsman; pastoralis_A = mkA "pastoralis" "pastoralis" "pastorale" ; -- [XXXDX] :: pastoral; 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); + 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; pateo_V = mkV "patere" ; -- [XXXAX] :: stand open, be open; extend; be well known; lie open, be accessible; - pater_M_N = mkN "pater" "patris " masculine ; -- [XXXAX] :: father; [pater familias, patris familias => head of family/household]; + pater_M_N = mkN "pater" "patris" masculine ; -- [XXXAX] :: father; [pater familias, patris familias => head of family/household]; patera_F_N = mkN "patera" ; -- [XXXDX] :: bowl; saucer; - paternitas_F_N = mkN "paternitas" "paternitatis " feminine ; -- [DXXES] :: fatherly feeling/care; paternity; descendants of one father; + 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; 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); @@ -28381,18 +28374,18 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat patienter_Adv =mkAdv "patienter" "patientius" "patientissime" ; -- [XXXCO] :: patiently; with patience/toleration; patientia_F_N = mkN "patientia" ; -- [XXXBX] :: |tolerance/forbearance; complaisance/submissiveness; submission by prostitute; patina_F_N = mkN "patina" ; -- [XXXEC] :: dish; - patinatio_F_N = mkN "patinatio" "patinationis " feminine ; -- [GXXEK] :: skating; - patinator_M_N = mkN "patinator" "patinatoris " masculine ; -- [GXXEK] :: skater; + patinatio_F_N = mkN "patinatio" "patinationis" feminine ; -- [GXXEK] :: skating; + 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; + 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; patriarcha_M_N = mkN "patriarcha" ; -- [XXXDS] :: patriarch; father/chief of a tribe; chief bishop, Patriarch; - patriarchatus_M_N = mkN "patriarchatus" "patriarchatus " masculine ; -- [GXXEK] :: patriarchy; - patriarches_M_N = mkN "patriarches" "patriarchae " masculine ; -- [XXXDS] :: patriarch; father/chief of a tribe; chief bishop, Patriarch; - patriciatus_M_N = mkN "patriciatus" "patriciatus " masculine ; -- [XLXEO] :: patrician status/dignity; patriciate; dignity of imperial court; + patriarchatus_M_N = mkN "patriarchatus" "patriarchatus" masculine ; -- [GXXEK] :: patriarchy; + patriarches_M_N = mkN "patriarches" "patriarchae" masculine ; -- [XXXDS] :: patriarch; father/chief of a tribe; chief bishop, Patriarch; + patriciatus_M_N = mkN "patriciatus" "patriciatus" masculine ; -- [XLXEO] :: patrician status/dignity; patriciate; dignity of imperial court; patricida_M_N = mkN "patricida" ; -- [XLXFO] :: patricide, one who kills his father; murderer of his own father; patricius_A = mkA "patricius" "patricia" "patricium" ; -- [XXXDX] :: patrician, noble; patricius_M_N = mkN "patricius" ; -- [XXXCS] :: patrician; aristocrat; @@ -28407,14 +28400,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat patrocinium_N_N = mkN "patrocinium" ; -- [XXXDX] :: protection, defense patronage, legal defense; patrocinor_V = mkV "patrocinari" ; -- [XXXEC] :: defend, protect; patrona_F_N = mkN "patrona" ; -- [XXXDX] :: protectress, patroness; - patronatus_M_N = mkN "patronatus" "patronatus " masculine ; -- [XXXDO] :: status/position/rights of patron; patronage (L+S); [jus ~ => patronage rights]; + patronatus_M_N = mkN "patronatus" "patronatus" masculine ; -- [XXXDO] :: status/position/rights of patron; patronage (L+S); [jus ~ => patronage rights]; patronus_M_N = mkN "patronus" ; -- [XXXBX] :: patron; advocate; defender, protector; patronymicus_A = mkA "patronymicus" "patronymica" "patronymicum" ; -- [XXXES] :: of father's name; G:patronymic, derived from name of father/ancestor w/fix; patruelis_A = mkA "patruelis" "patruelis" "patruele" ; -- [XXXDX] :: of a cousin; - patruelis_M_N = mkN "patruelis" "patruelis " masculine ; -- [XXXDX] :: cousin; + patruelis_M_N = mkN "patruelis" "patruelis" masculine ; -- [XXXDX] :: cousin; patruus_M_N = mkN "patruus" ; -- [XXXCO] :: |severe reprover; type of harshness/censoriousness/finding fault; "Dutch uncle"; patulus_A = mkA "patulus" "patula" "patulum" ; -- [XXXDX] :: wide open, gaping; wide-spreading; - paucitas_F_N = mkN "paucitas" "paucitatis " feminine ; -- [XXXDX] :: scarcity; paucity; + 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; paucus_A = mkA "paucus" ; -- [XXXBO] :: little, small in quantity/extent; few (usu. pl.); just a few; small number of; @@ -28444,11 +28437,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat paulumper_Adv = mkAdv "paulumper" ; -- [XXXFO] :: for a short while/little bit; paulus_A = mkA "paulus" "paula" "paulum" ; -- [XXXAO] :: little; small; (only a) small amount/quantity of/little bit of; pauper_A = mkA "pauper" "pauperis"; -- [XXXBO] :: poor/meager/unproductive; scantily endowed; cheap, of little worth; of poor man; - pauper_M_N = mkN "pauper" "pauperis " masculine ; -- [XXXDX] :: poor man; + pauper_M_N = mkN "pauper" "pauperis" masculine ; -- [XXXDX] :: poor man; pauperculus_A = mkA "pauperculus" "paupercula" "pauperculum" ; -- [XXXEC] :: poor; - pauperies_F_N = mkN "pauperies" "pauperiei " feminine ; -- [XXXDX] :: poverty; + pauperies_F_N = mkN "pauperies" "pauperiei" feminine ; -- [XXXDX] :: poverty; paupero_V = mkV "pauperare" ; -- [XXXEC] :: make poor, deprive; - paupertas_F_N = mkN "paupertas" "paupertatis " feminine ; -- [XXXBX] :: poverty, need; humble circumstances; + paupertas_F_N = mkN "paupertas" "paupertatis" feminine ; -- [XXXBX] :: poverty, need; humble circumstances; paupertinus_A = mkA "paupertinus" "paupertina" "paupertinum" ; -- [XXXES] :: poor; sorry; pausa_F_N = mkN "pausa" ; -- [XXXEC] :: cessation, end; pausea_F_N = mkN "pausea" ; -- [XAXFS] :: olive species; olive with excellent oil; @@ -28458,7 +28451,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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 + 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; pavesco_V = mkV "pavescere" "pavesco" nonExist nonExist ; -- [XXXDX] :: become alarmed; @@ -28466,41 +28459,41 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + pavo_M_N = mkN "pavo" "pavonis" masculine ; -- [XAXCO] :: peacock; + pavor_M_N = mkN "pavor" "pavoris" masculine ; -- [XXXBX] :: fear, panic; pavus_M_N = mkN "pavus" ; -- [XAXCO] :: peacock; - pax_F_N = mkN "pax" "pacis " feminine ; -- [XXXAX] :: peace; harmony; + pax_F_N = mkN "pax" "pacis" feminine ; -- [XXXAX] :: peace; harmony; paxillus_M_N = mkN "paxillus" ; -- [XXXDO] :: wooden pin/peg; small stake (L+S); peccabilis_A = mkA "peccabilis" "peccabilis" "peccabile" ; -- [FXXEM] :: sinful; - peccabilitas_F_N = mkN "peccabilitas" "peccabilitatis " feminine ; -- [FXXEM] :: sinfulness; + peccabilitas_F_N = mkN "peccabilitas" "peccabilitatis" feminine ; -- [FXXEM] :: sinfulness; peccabundus_A = mkA "peccabundus" "peccabunda" "peccabundum" ; -- [FXXEM] :: sinful; peccadillum_N_N = mkN "peccadillum" ; -- [GXXEM] :: peccadillo, minor indiscretion; - peccamen_N_N = mkN "peccamen" "peccaminis " neuter ; -- [DXXES] :: fault; E:sin; - peccatio_F_N = mkN "peccatio" "peccationis " feminine ; -- [XXXFO] :: wrongdoing, transgression, sin, wrong; + peccamen_N_N = mkN "peccamen" "peccaminis" neuter ; -- [DXXES] :: fault; E:sin; + peccatio_F_N = mkN "peccatio" "peccationis" feminine ; -- [XXXFO] :: wrongdoing, transgression, sin, wrong; peccatissimus_A = mkA "peccatissimus" "peccatissima" "peccatissimum" ; -- [FXXEM] :: overloaded with sin; deeply mired in sin; - peccator_M_N = mkN "peccator" "peccatoris " masculine ; -- [DEXES] :: sinner; transgressor; + peccator_M_N = mkN "peccator" "peccatoris" masculine ; -- [DEXES] :: sinner; transgressor; peccatorius_A = mkA "peccatorius" "peccatoria" "peccatorium" ; -- [DXXES] :: sinful; peccatrix_A = mkA "peccatrix" "peccatricis"; -- [EXXEP] :: sinful; sinning; - peccatrix_F_N = mkN "peccatrix" "peccatricis " feminine ; -- [EXXCS] :: sinner/transgressor (female); + peccatrix_F_N = mkN "peccatrix" "peccatricis" feminine ; -- [EXXCS] :: sinner/transgressor (female); peccatulum_N_N = mkN "peccatulum" ; -- [GXXEM] :: peccadillo, minor indiscretion; peccatum_N_N = mkN "peccatum" ; -- [XXXCO] :: sin; moral offense; error, mistake; lapse, misdemeanor; transgression; wrong; - peccatus_M_N = mkN "peccatus" "peccatus " masculine ; -- [XXXEO] :: sin; moral offense; error, mistake; lapse, misdemeanor; transgression; wrong; + peccatus_M_N = mkN "peccatus" "peccatus" masculine ; -- [XXXEO] :: sin; moral offense; error, mistake; lapse, misdemeanor; transgression; wrong; 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); + 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; + 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; - pecu_N_N = mkN "pecu" "pecus " neuter ; -- [XAXCO] :: herd, flock; cattle, sheep; farm animals (pl.); pastures (L+S); money; + pecu_N_N = mkN "pecu" "pecus" neuter ; -- [XAXCO] :: herd, flock; cattle, sheep; farm animals (pl.); pastures (L+S); money; pecuarium_N_N = mkN "pecuarium" ; -- [XXXDX] :: herds of sheep or cattle (pl.); pecuarius_A = mkA "pecuarius" "pecuaria" "pecuarium" ; -- [XXXDX] :: of sheep or cattle; pecuarius_M_N = mkN "pecuarius" ; -- [XXXDX] :: cattle-breeder, grazier; farmers of the public pastures (pl.); pecuinus_A = mkA "pecuinus" "pecuina" "pecuinum" ; -- [XXXFS] :: beast-like; of cattle; - peculator_M_N = mkN "peculator" "peculatoris " masculine ; -- [XXXDX] :: embezzler of public money; - peculatus_M_N = mkN "peculatus" "peculatus " masculine ; -- [XXXDX] :: embezzlement of public money or property; + peculator_M_N = mkN "peculator" "peculatoris" masculine ; -- [XXXDX] :: embezzler of public money; + peculatus_M_N = mkN "peculatus" "peculatus" masculine ; -- [XXXDX] :: embezzlement of public money or property; peculiaris_A = mkA "peculiaris" "peculiaris" "peculiare" ; -- [XXXBO] :: personal/private/special/peculiar/specific, one's own; singular/exceptional; peculiatus_A = mkA "peculiatus" "peculiata" "peculiatum" ; -- [XLXDS] :: furnished with money; provided with property; peculiosus_A = mkA "peculiosus" "peculiosa" "peculiosum" ; -- [XXXDS] :: wealthy; with private property; @@ -28508,29 +28501,29 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat pecunia_F_N = mkN "pecunia" ; -- [XLXAX] :: money; property; pecuniarius_A = mkA "pecuniarius" "pecuniaria" "pecuniarium" ; -- [XXXEC] :: of money, pecuniary; pecuniosus_A = mkA "pecuniosus" "pecuniosa" "pecuniosum" ; -- [XXXDX] :: rich, wealthy; profitable; - pecus_F_N = mkN "pecus" "pecudis " feminine ; -- [XXXAX] :: sheep; animal; - pecus_N_N = mkN "pecus" "pecoris " neuter ; -- [XXXAX] :: cattle, herd, flock; - pedale_N_N = mkN "pedale" "pedalis " neuter ; -- [GXXEK] :: pedal; + pecus_F_N = mkN "pecus" "pecudis" feminine ; -- [XXXAX] :: sheep; animal; + pecus_N_N = mkN "pecus" "pecoris" neuter ; -- [XXXAX] :: cattle, herd, flock; + pedale_N_N = mkN "pedale" "pedalis" neuter ; -- [GXXEK] :: pedal; pedalis_A = mkA "pedalis" "pedalis" "pedale" ; -- [XXXDX] :: measuring a foot; - pedamen_N_N = mkN "pedamen" "pedaminis " neuter ; -- [XAXEO] :: prop, stake; (for vines); + pedamen_N_N = mkN "pedamen" "pedaminis" neuter ; -- [XAXEO] :: prop, stake; (for vines); pedamentum_N_N = mkN "pedamentum" ; -- [XAXDO] :: prop, stake; (for vines); pedarius_A = mkA "pedarius" "pedaria" "pedarium" ; -- [XXXEC] :: of a foot; [senatores pedarii => senators of inferior rank]; pedatura_F_N = mkN "pedatura" ; -- [XXXES] :: space/extent of a foot; prop of a vine; - pedatus_M_N = mkN "pedatus" "pedatus " masculine ; -- [XXXFS] :: attack; charge; + pedatus_M_N = mkN "pedatus" "pedatus" masculine ; -- [XXXFS] :: attack; charge; pedeplanum_N_N = mkN "pedeplanum" ; -- [FXXEK] :: ground floor; pedes_A = mkA "pedes" "peditis"; -- [XXXDS] :: on foot; - pedes_M_N = mkN "pedes" "peditis " masculine ; -- [XWXBO] :: foot soldier, infantryman; pedestrian, who goes on foot; infantry (pl.); + pedes_M_N = mkN "pedes" "peditis" masculine ; -- [XWXBO] :: foot soldier, infantryman; pedestrian, who goes on foot; infantry (pl.); pedester_A = mkA "pedester" "pedestris" "pedestre" ; -- [XXXBO] :: |pedestrian; prosaic, commonplace; prose-; pedetemptim_Adv =mkAdv "pedetemptim" "pedetemptius" "pedetemptissime" ; -- [XXXCO] :: step-by-step; feeling one's way; gradually, cautiously; pedetemtim_Adv = mkAdv "pedetemtim" ; -- [XXXCO] :: step-by-step; feeling one's way; gradually, cautiously; pedica_F_N = mkN "pedica" ; -- [XXXDX] :: shackle, fetter; snare; - pedicator_M_N = mkN "pedicator" "pedicatoris " masculine ; -- [XXXEO] :: sodomite; + pedicator_M_N = mkN "pedicator" "pedicatoris" masculine ; -- [XXXEO] :: sodomite; pedico_V2 = mkV2 (mkV "pedicare") ; -- [XXXCO] :: perform anal intercourse; commit sodomy with; pediculosus_A = mkA "pediculosus" "pediculosa" "pediculosum" ; -- [XXXEC] :: lousy; pediculus_M_N = mkN "pediculus" ; -- [XXXES] :: little foot; A:foot-stalk; pedicura_F_N = mkN "pedicura" ; -- [GXXEK] :: podiatrist; pedifollis_A = mkA "pedifollis" "pedifollis" "pedifolle" ; -- [GXXEK] :: football-/soccer-, footballing; - pedifollis_M_N = mkN "pedifollis" "pedifollis " masculine ; -- [GXXEK] :: football; + pedifollis_M_N = mkN "pedifollis" "pedifollis" masculine ; -- [GXXEK] :: football; pedifollium_N_N = mkN "pedifollium" ; -- [GXXEK] :: soccer; pediseca_F_N = mkN "pediseca" ; -- [BXXCO] :: female attendant; waiting woman, waitress; handmaiden; pedisecus_A = mkA "pedisecus" "pediseca" "pedisecum" ; -- [BXXES] :: that follows on foot; (like an attendant); follow on the heels of/immediately; @@ -28541,9 +28534,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat pedissequa_F_N = mkN "pedissequa" ; -- [XXXES] :: female attendant; waiting woman, waitress; handmaiden; pedissequus_A = mkA "pedissequus" "pedissequa" "pedissequum" ; -- [XXXFS] :: that follows on foot; (like an attendant); follow on the heels of/immediately; pedissequus_M_N = mkN "pedissequus" ; -- [XXXES] :: male attendant, manservant; follower on foot; footman, page; lackey; - peditatus_M_N = mkN "peditatus" "peditatus " masculine ; -- [XXXDX] :: infantry; + peditatus_M_N = mkN "peditatus" "peditatus" masculine ; -- [XXXDX] :: infantry; pedum_N_N = mkN "pedum" ; -- [XXXDX] :: shepherd's crook; - pegma_N_N = mkN "pegma" "pegmatis " neuter ; -- [XXXDO] :: bookcase; bookshelf; scaffold, movable platform, stage fixture; scaffolding; + pegma_N_N = mkN "pegma" "pegmatis" neuter ; -- [XXXDO] :: bookcase; bookshelf; scaffold, movable platform, stage fixture; scaffolding; peiorativus_A = mkA "peiorativus" "peiorativa" "peiorativum" ; -- [GXXEK] :: pejorative; peioresceo_V = mkV "peiorescere" ; -- [GXXEK] :: get worse; peioro_V = mkV "peiorare" ; -- [GXXEK] :: aggravate; @@ -28556,58 +28549,58 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat pejurosus_A = mkA "pejurosus" "pejurosa" "pejurosum" ; -- [XXXDX] :: perjured; pelagius_A = mkA "pelagius" "pelagia" "pelagium" ; -- [XXXDX] :: marine, of the sea; pelagus_N_N = mkN "pelagus" ; -- [XXXAX] :: sea; the open sea, the main; (-us neuter, only sing.); - pelamis_F_N = mkN "pelamis" "pelamidis " feminine ; -- [XAXEO] :: young/small tunny; (less than one year old L+S); - pelamys_F_N = mkN "pelamys" "pelamydis " feminine ; -- [XAXEO] :: young/small tunny; (less than one year old L+S); - pelex_F_N = mkN "pelex" "pelicis " feminine ; -- [XXXBO] :: mistress (installed as rival/in addition to wife), concubine; male prostitute; - pelicatus_M_N = mkN "pelicatus" "pelicatus " masculine ; -- [XXXDX] :: concubinage, living together; + pelamis_F_N = mkN "pelamis" "pelamidis" feminine ; -- [XAXEO] :: young/small tunny; (less than one year old L+S); + pelamys_F_N = mkN "pelamys" "pelamydis" feminine ; -- [XAXEO] :: young/small tunny; (less than one year old L+S); + pelex_F_N = mkN "pelex" "pelicis" feminine ; -- [XXXBO] :: mistress (installed as rival/in addition to wife), concubine; male prostitute; + pelicatus_M_N = mkN "pelicatus" "pelicatus" masculine ; -- [XXXDX] :: concubinage, living together; 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; + 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; + 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; + 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; + 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); + 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; peltasta_M_N = mkN "peltasta" ; -- [XXXEC] :: soldier armed with the pelta (small light shield); - peltastes_M_N = mkN "peltastes" "peltastae " masculine ; -- [XXXEC] :: soldier armed with the pelta (small light shield); + peltastes_M_N = mkN "peltastes" "peltastae" masculine ; -- [XXXEC] :: soldier armed with the pelta (small light shield); peltatus_A = mkA "peltatus" "peltata" "peltatum" ; -- [XXXDX] :: armed with the pelta (crescent-shaped shield); pelusia_F_N = mkN "pelusia" ; -- [GXXEK] :: blouse; - pelvis_F_N = mkN "pelvis" "pelvis " feminine ; -- [XXXDX] :: shallow bowl or basin; + pelvis_F_N = mkN "pelvis" "pelvis" feminine ; -- [XXXDX] :: shallow bowl or basin; pena_F_N = mkN "pena" ; -- [FXXCZ] :: penalty, punishment; revenge/retribution; [poena dare => to pay the penalty]; 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; + 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; 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; + 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; 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); + penetrale_N_N = mkN "penetrale" "penetralis" neuter ; -- [FXXFE] :: |innermost parts/chambers/self (pl.); spirit, life of soul; gimlet (Latham); penetralis_A = mkA "penetralis" "penetralis" "penetrale" ; -- [XXXDX] :: inner, innermost; penetranter_Adv = mkAdv "penetranter" ; -- [FXXEM] :: deeply, penetratingly, searchingly; - penetratio_F_N = mkN "penetratio" "penetrationis " feminine ; -- [EXXES] :: piercing; penetration; + penetratio_F_N = mkN "penetratio" "penetrationis" feminine ; -- [EXXES] :: piercing; penetration; penetro_V = mkV "penetrare" ; -- [XXXAX] :: enter, penetrate; penicillinum_N_N = mkN "penicillinum" ; -- [GXXEK] :: penicillin; penicillus_M_N = mkN "penicillus" ; -- [XXXEC] :: painter's brush or pencil; style; peniculus_M_N = mkN "peniculus" ; -- [XXXCO] :: brush (of ox/horse tail); painter's brush; sponge; diminutive of penis (L+S); - penis_M_N = mkN "penis" "penis " masculine ; -- [XXXDX] :: male sexual organ, penis; (sometimes rude); a tail; + penis_M_N = mkN "penis" "penis" masculine ; -- [XXXDX] :: male sexual organ, penis; (sometimes rude); a tail; penitentialis_A = mkA "penitentialis" "penitentialis" "penitentiale" ; -- [XEXFM] :: penitent; penitentiarius_M_N = mkN "penitentiarius" ; -- [FEXEM] :: confessor; penitentiary; peniteo_V = mkV "penitere" ; -- [FEXEM] :: |do penance; penitet_V0 = mkV0 "penitet" ; -- [FXXEZ] :: it displeases, makes angry, offends, dissatisfies, makes sorry; - penitrale_N_N = mkN "penitrale" "penitralis " neuter ; -- [FXXFE] :: innermost parts/chambers/self (pl.); spirit, life of soul; gimlet (Latham); + penitrale_N_N = mkN "penitrale" "penitralis" neuter ; -- [FXXFE] :: innermost parts/chambers/self (pl.); spirit, life of soul; gimlet (Latham); penitus_A = mkA "penitus" "penita" "penitum" ; -- [XXXBX] :: inner, inward; penitus_Adv = mkAdv "penitus" ; -- [XXXBX] :: inside; deep within; thoroughly; penna_F_N = mkN "penna" ; -- [XXXBX] :: feather, wing; @@ -28615,11 +28608,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat penniger_A = mkA "penniger" "pennigera" "pennigerum" ; -- [XXXEC] :: feathered, winged; pennipes_A = mkA "pennipes" "pennipedis"; -- [XYXEC] :: wing-footed; pennipotens_A = mkA "pennipotens" "pennipotentis"; -- [XXXEC] :: able to fly, winged; - pennipotens_F_N = mkN "pennipotens" "pennipotentis " feminine ; -- [XAXEC] :: birds (pl.); + pennipotens_F_N = mkN "pennipotens" "pennipotentis" feminine ; -- [XAXEC] :: birds (pl.); pennula_F_N = mkN "pennula" ; -- [XXXEC] :: little wing; pensilis_A = mkA "pensilis" "pensilis" "pensile" ; -- [XXXEZ] :: hanging, pendant (Collins); - pensio_F_N = mkN "pensio" "pensionis " feminine ; -- [XXXBO] :: payment, installment, pension; paying out; rent; measured weight; recompense; - pensitatio_F_N = mkN "pensitatio" "pensitationis " feminine ; -- [XXXEO] :: payment/compensation; expense (L+S); valuable/precious thing; pension (Douay); + pensio_F_N = mkN "pensio" "pensionis" feminine ; -- [XXXBO] :: payment, installment, pension; paying out; rent; measured weight; recompense; + pensitatio_F_N = mkN "pensitatio" "pensitationis" feminine ; -- [XXXEO] :: payment/compensation; expense (L+S); valuable/precious thing; pension (Douay); pensito_V2 = mkV2 (mkV "pensitare") ; -- [XXXCO] :: weigh/ponder/consider; compare (with); pay/be subject to tax; bring in income; penso_V = mkV "pensare" ; -- [XXXBX] :: weigh (out); pay/punish for; counterbalance, compensate; ponder, examine; pensum_N_N = mkN "pensum" ; -- [XXXCO] :: allotment for weaving, wool given to be spun/woven; task/stint; homework; @@ -28629,37 +28622,37 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat pentameter_M_N = mkN "pentameter" ; -- [XPXES] :: pentameter; five metric feet; 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; - pentrale_N_N = mkN "pentrale" "pentralis " neuter ; -- [FXXFM] :: gimlet; innermost parts/chambers/self (pl.) (Ecc); spirit, life of soul; + 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; + pentrale_N_N = mkN "pentrale" "pentralis" neuter ; -- [FXXFM] :: gimlet; innermost parts/chambers/self (pl.) (Ecc); spirit, life of soul; penuarius_A = mkA "penuarius" "penuaria" "penuarium" ; -- [XXXEO] :: used for food storage; penum_N_N = mkN "penum" ; -- [XXXDX] :: provisions, food; stock of household; storeroom in temple of Vesta; penuria_F_N = mkN "penuria" ; -- [XXXDX] :: want, need, scarcity; penuriosus_A = mkA "penuriosus" "penuriosa" "penuriosum" ; -- [FXXEM] :: needy; penurious, poor, poverty-stricken; - penus_F_N = mkN "penus" "penus " feminine ; -- [XXXDX] :: provisions, food; stock of household; storeroom in temple of Vesta; - penus_M_N = mkN "penus" "penus " masculine ; -- [XXXDX] :: provisions, food; stock of household; storeroom in temple of Vesta; - penus_N_N = mkN "penus" "penoris " neuter ; -- [XXXDX] :: provisions, food; stock of a household; storeroom in temple of Vesta; + penus_F_N = mkN "penus" "penus" feminine ; -- [XXXDX] :: provisions, food; stock of household; storeroom in temple of Vesta; + penus_M_N = mkN "penus" "penus" masculine ; -- [XXXDX] :: provisions, food; stock of household; storeroom in temple of Vesta; + penus_N_N = mkN "penus" "penoris" neuter ; -- [XXXDX] :: provisions, food; stock of a household; storeroom in temple of Vesta; peplum_N_N = mkN "peplum" ; -- [XXXEC] :: robe of state; peplus_M_N = mkN "peplus" ; -- [XXXEC] :: robe of state; - 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); + 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; + 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); + 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; + 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; perambulo_V = mkV "perambulare" ; -- [XXXDX] :: walk about in, tour; make the round of; @@ -28691,21 +28684,21 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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); + 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; + 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; - percontatio_F_N = mkN "percontatio" "percontationis " feminine ; -- [XXXDX] :: questioning, inquiry; - percontator_M_N = mkN "percontator" "percontatoris " masculine ; -- [XXXDS] :: inquirer; + percontatio_F_N = mkN "percontatio" "percontationis" feminine ; -- [XXXDX] :: questioning, inquiry; + percontator_M_N = mkN "percontator" "percontatoris" masculine ; -- [XXXDS] :: inquirer; percontor_V = mkV "percontari" ; -- [XXXDX] :: inquire; percontumax_A = mkA "percontumax" "percontumacis"; -- [XXXFS] :: very obstinate; - percoquo_V2 = mkV2 (mkV "percoquere" "percoquo" "percoxi" "percoctus ") ; -- [XXXDX] :: cook thoroughly; bake, heat; + 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; @@ -28713,58 +28706,58 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; - percusio_F_N = mkN "percusio" "percusionis " feminine ; -- [XXXEO] :: rapid review, running over in the mind; rapid treatment of subject (rhetoric); - 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; + percusio_F_N = mkN "percusio" "percusionis" feminine ; -- [XXXEO] :: rapid review, running over in the mind; rapid treatment of subject (rhetoric); + 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); + 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; 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; + 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; perditus_A = mkA "perditus" ; -- [XXXBO] :: |degenerate, morally depraved, wild, abandoned; reckless; desperate/hopeless; - perditus_M_N = mkN "perditus" "perditus " masculine ; -- [XXXFO] :: ruination, ruin; + 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; + 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); + 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; + 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; + 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; + 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; - 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; +-- TODO peredo_V : V1 peredo, peresse, -, - -- [XXXDX] :: eat up, consume, waste; + peredo_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; - peregrinans_M_N = mkN "peregrinans" "peregrinantis " masculine ; -- [EEXDX] :: pilgrim; (foreign) traveler; wanderer; - peregrinatio_F_N = mkN "peregrinatio" "peregrinationis " feminine ; -- [XXXCO] :: traveling/staying/living abroad, sojourn abroad; travel; pilgrimage; - peregrinator_M_N = mkN "peregrinator" "peregrinatoris " masculine ; -- [XXXDS] :: traveler; - peregrinitas_F_N = mkN "peregrinitas" "peregrinitatis " feminine ; -- [DXXFS] :: alienage; foreign habit; foreign tone; + peregrinans_M_N = mkN "peregrinans" "peregrinantis" masculine ; -- [EEXDX] :: pilgrim; (foreign) traveler; wanderer; + peregrinatio_F_N = mkN "peregrinatio" "peregrinationis" feminine ; -- [XXXCO] :: traveling/staying/living abroad, sojourn abroad; travel; pilgrimage; + peregrinator_M_N = mkN "peregrinator" "peregrinatoris" masculine ; -- [XXXDS] :: traveler; + peregrinitas_F_N = mkN "peregrinitas" "peregrinitatis" feminine ; -- [DXXFS] :: alienage; foreign habit; foreign tone; peregrinor_V = mkV "peregrinari" ; -- [XXXDX] :: travel about, be an alien, sojourn in strange country, go abroad, wander, roam; peregrinus_A = mkA "peregrinus" "peregrina" "peregrinum" ; -- [XXXBX] :: foreign, strange, alien; exotic; peregrinus_C_N = mkN "peregrinus" ; -- [XXXDX] :: foreigner, stranger, alien; foreign woman (F); foreign residents (pl.); @@ -28777,7 +28770,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat perennis_A = mkA "perennis" "perennis" "perenne" ; -- [XXXBX] :: continual; everlasting, perpetual, perennial; eternal; perenno_V = mkV "perennare" ; -- [XXXEC] :: last many years; 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; + pereo_2_V = mkV "perire" "pereo" "periii" "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; @@ -28788,48 +28781,48 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat perfacile_Adv = mkAdv "perfacile" ; -- [XXXDX] :: very easily; readily; perfacilis_A = mkA "perfacilis" "perfacilis" "perfacile" ; -- [XXXDX] :: very easy, very courteous; perfamiliaris_A = mkA "perfamiliaris" "perfamiliaris" "perfamiliare" ; -- [XXXDS] :: very intimate; - perfamiliaris_M_N = mkN "perfamiliaris" "perfamiliaris " masculine ; -- [XXXDS] :: close friend; - perfectio_F_N = mkN "perfectio" "perfectionis " feminine ; -- [XXXCO] :: perfection, completion; bringing to completion/perfection; ideal/completed form; - perfectissimatus_M_N = mkN "perfectissimatus" "perfectissimatus " masculine ; -- [ELXES] :: emperor's office; office of perfectissimus; + perfamiliaris_M_N = mkN "perfamiliaris" "perfamiliaris" masculine ; -- [XXXDS] :: close friend; + perfectio_F_N = mkN "perfectio" "perfectionis" feminine ; -- [XXXCO] :: perfection, completion; bringing to completion/perfection; ideal/completed form; + perfectissimatus_M_N = mkN "perfectissimatus" "perfectissimatus" masculine ; -- [ELXES] :: emperor's office; office of perfectissimus; 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; + 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; + 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; + 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; + perfossor_M_N = mkN "perfossor" "perfossoris" masculine ; -- [XXXDS] :: digger through; one who breaks in; perfremo_V = mkV "perfremare" ; -- [BXXFO] :: fill place with roaring/snorting sounds; snort/roar along; perfrequens_A = mkA "perfrequens" "perfrequentis"; -- [XXXDS] :: very crowded/full; much frequented; 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; + 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; 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; + 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; 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; - 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); + 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; + 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; @@ -28846,18 +28839,18 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat perhumaniter_Adv = mkAdv "perhumaniter" ; -- [XXXEC] :: very civilly; perhumanus_A = mkA "perhumanus" "perhumana" "perhumanum" ; -- [XXXEC] :: very friendly, very civil; peribolus_M_N = mkN "peribolus" ; -- [EXXES] :: circuit; enclosure; precinct (Souter); outer wall (Vulgate Ezechiel 42:7); - periclitatio_F_N = mkN "periclitatio" "periclitationis " feminine ; -- [XXXFS] :: test; experiment; + 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; 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; - periegetes_M_N = mkN "periegetes" "periegetae " masculine ; -- [GXXEK] :: tourist; + periegesis_F_N = mkN "periegesis" "periegesis" feminine ; -- [GXXEK] :: tourism; + periegetes_M_N = mkN "periegetes" "periegetae" masculine ; -- [GXXEK] :: tourist; 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; + 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]; @@ -28868,46 +28861,46 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat perinvitus_A = mkA "perinvitus" "perinvita" "perinvitum" ; -- [XXXEC] :: very unwilling; periodicum_N_N = mkN "periodicum" ; -- [GXXEK] :: periodical, magazine; periodus_M_N = mkN "periodus" ; -- [XGXEC] :: sentence, period; - peripetasma_N_N = mkN "peripetasma" "peripetasmatis " neuter ; -- [XXXEC] :: curtain, hanging; + peripetasma_N_N = mkN "peripetasma" "peripetasmatis" neuter ; -- [XXXEC] :: curtain, hanging; peripheria_F_N = mkN "peripheria" ; -- [DXXFS] :: circumference; periphery; - periphrasis_F_N = mkN "periphrasis" "periphrasis " feminine ; -- [DGXFS] :: circumlocution; periphrase; + periphrasis_F_N = mkN "periphrasis" "periphrasis" feminine ; -- [DGXFS] :: circumlocution; periphrase; periphrasticus_A = mkA "periphrasticus" "periphrastica" "periphrasticum" ; -- [GXXEK] :: periphrastic; peripneumonicus_A = mkA "peripneumonicus" "peripneumonica" "peripneumonicum" ; -- [XBXFS] :: consumptive; peripneumonicus_M_N = mkN "peripneumonicus" ; -- [XBXFS] :: consumptive; - peripsema_N_N = mkN "peripsema" "peripsematis " neuter ; -- [EXXES] :: refuse; filth; offscouring (that which comes off in cleaning); - peripsima_N_N = mkN "peripsima" "peripsimatis " neuter ; -- [EXXEP] :: refuse; filth; offscouring (that which comes off in cleaning); + peripsema_N_N = mkN "peripsema" "peripsematis" neuter ; -- [EXXES] :: refuse; filth; offscouring (that which comes off in cleaning); + 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; 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(?); + 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(?); 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; + 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; - peristylon_N_N = mkN "peristylon" "peristyli " neuter ; -- [XTXEO] :: inner courtyard lined with rows of columns, peristyle; + peristylon_N_N = mkN "peristylon" "peristyli" neuter ; -- [XTXEO] :: inner courtyard lined with rows of columns, peristyle; 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; + peritonitis_F_N = mkN "peritonitis" "peritonitidis" feminine ; -- [GBXEK] :: peritonitis; 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; + 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; + 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; + 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; + 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; @@ -28915,7 +28908,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; @@ -28927,17 +28920,17 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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; + permissio_F_N = mkN "permissio" "permissionis" feminine ; -- [XXXES] :: yielding (to another); permission; permissivus_A = mkA "permissivus" "permissiva" "permissivum" ; -- [GXXEK] :: permissive; - permissus_M_N = mkN "permissus" "permissus " masculine ; -- [XXXDX] :: permission, authorization; + permissus_M_N = mkN "permissus" "permissus" masculine ; -- [XXXDX] :: permission, authorization; 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; + 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; permoleste_Adv = mkAdv "permoleste" ; -- [XXXEC] :: with much difficulty; @@ -28945,28 +28938,28 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; pernecessarius_A = mkA "pernecessarius" "pernecessaria" "pernecessarium" ; -- [XXXEC] :: very necessary; very intimate; pernego_V = mkV "pernegare" ; -- [XXXDS] :: deny completely; refuse completely; perniciabilis_A = mkA "perniciabilis" "perniciabilis" "perniciabile" ; -- [XXXDS] :: ruinous; - pernicies_F_N = mkN "pernicies" "perniciei " feminine ; -- [XXXDX] :: ruin; disaster; pest, bane; curse; destruction, calamity; mischief; + pernicies_F_N = mkN "pernicies" "perniciei" feminine ; -- [XXXDX] :: ruin; disaster; pest, bane; curse; destruction, calamity; mischief; perniciosus_A = mkA "perniciosus" "perniciosa" "perniciosum" ; -- [XXXDX] :: destructive, dangerous, pernicious; - pernicitas_F_N = mkN "pernicitas" "pernicitatis " feminine ; -- [XXXDX] :: speed, agility; + pernicitas_F_N = mkN "pernicitas" "pernicitatis" feminine ; -- [XXXDX] :: speed, agility; pernimius_A = mkA "pernimius" "pernimia" "pernimium" ; -- [XXXDS] :: much too much; - pernio_M_N = mkN "pernio" "pernionis " masculine ; -- [XXXNS] :: chilblain; + pernio_M_N = mkN "pernio" "pernionis" masculine ; -- [XXXNS] :: chilblain; 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; + 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; + pero_M_N = mkN "pero" "peronis" masculine ; -- [XXXDX] :: thick boot of raw hide; perobscurus_A = mkA "perobscurus" "perobscura" "perobscurum" ; -- [XXXDX] :: very obscure, very vague; perodiosus_A = mkA "perodiosus" "perodiosa" "perodiosum" ; -- [XXXEC] :: very troublesome; peroleo_V = mkV "perolere" ; -- [XXXDS] :: emit strong odor; @@ -28974,7 +28967,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat peropportunus_A = mkA "peropportunus" "peropportuna" "peropportunum" ; -- [XXXDX] :: very favorably situated, very convenient; peroptato_Adv = mkAdv "peroptato" ; -- [XXXEC] :: just as one would wish; peropus_Adv = mkAdv "peropus" ; -- [XXXDS] :: very necessary; - peroratio_F_N = mkN "peroratio" "perorationis " feminine ; -- [XXXES] :: finish of speech; + peroratio_F_N = mkN "peroratio" "perorationis" feminine ; -- [XXXES] :: finish of speech; perornatus_A = mkA "perornatus" "perornata" "perornatum" ; -- [XXXEC] :: very ornate; perorno_V2 = mkV2 (mkV "perornare") ; -- [XXXDS] :: adorn highly/greatly; peroro_V = mkV "perorare" ; -- [XXXDX] :: deliver the final part of a speech, conclude; @@ -28991,70 +28984,70 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; + 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; perpetue_Adv = mkAdv "perpetue" ; -- [XXXEO] :: constantly, uninterruptedly, continually, without interruption/pause/let up; - perpetuitas_F_N = mkN "perpetuitas" "perpetuitatis " feminine ; -- [XXXDX] :: continuity; permanence; + perpetuitas_F_N = mkN "perpetuitas" "perpetuitatis" feminine ; -- [XXXDX] :: continuity; permanence; perpetuo_Adv = mkAdv "perpetuo" ; -- [XXXDX] :: without interruption; constantly; forever; continually; perpetual; perpetuus_A = mkA "perpetuus" "perpetua" "perpetuum" ; -- [XXXAX] :: continuous, uninterpreted; whole; perpetual, lasting; everlasting; 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; + 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; + 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; + 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; + 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; + 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; + 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; + 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; - persalutatio_F_N = mkN "persalutatio" "persalutationis " feminine ; -- [XXXEC] :: general greeting; + persalutatio_F_N = mkN "persalutatio" "persalutationis" feminine ; -- [XXXEC] :: general greeting; persaluto_V2 = mkV2 (mkV "persalutare") ; -- [XXXDS] :: salute/greet in turn; 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; + 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; + 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; perseco_V2 = mkV2 (mkV "persecare") ; -- [XXXDS] :: dissect; cut up; persector_V = mkV "persectari" ; -- [XXXDO] :: pursue/follow closely/eagerly; follow up; investigate (question); - persecutio_F_N = mkN "persecutio" "persecutionis " feminine ; -- [FEXEF] :: |persecution (esp. of Christians); suffering (Bee); - persecutor_M_N = mkN "persecutor" "persecutoris " masculine ; -- [DXXCS] :: persecutor; (of Christians); prosecutor, plaintiff; + persecutio_F_N = mkN "persecutio" "persecutionis" feminine ; -- [FEXEF] :: |persecution (esp. of Christians); suffering (Bee); + 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; 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; + 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; @@ -29062,17 +29055,17 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; - personificatio_F_N = mkN "personificatio" "personificationis " feminine ; -- [GXXEK] :: personification; + personificatio_F_N = mkN "personificatio" "personificationis" feminine ; -- [GXXEK] :: personification; personifico_V = mkV "personificare" ; -- [GXXEK] :: personify; persono_V2 = mkV2 (mkV "personare") ; -- [XXXBS] :: make loud/continuous/pervasive noise/loud music; ring/resound; chant/shout out; perspectiva_F_N = mkN "perspectiva" ; -- [GSXEK] :: perspective (geometry); @@ -29085,13 +29078,13 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; + 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.); @@ -29100,20 +29093,20 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; + 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; + 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; pertimesco_V2 = mkV2 (mkV "pertimescere" "pertimesco" "pertimui" nonExist ) ; -- [XXXDX] :: become very scared (of ); @@ -29126,15 +29119,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; perturbo_V = mkV "perturbare" ; -- [XXXDX] :: confuse, throw into confusion; disturb, perturb, trouble; alarm; perturpis_A = mkA "perturpis" "perturpis" "perturpe" ; -- [XXXDS] :: scandalous; @@ -29142,18 +29135,18 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; + 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; + pervestigatio_F_N = mkN "pervestigatio" "pervestigationis" feminine ; -- [XXXDS] :: investigation; pervestigo_V = mkV "pervestigare" ; -- [XXXDX] :: make a thorough search of; explore fully; pervetus_A = mkA "pervetus" "perveteris"; -- [XXXDX] :: very old, that lasted very long; most/extremely ancient, of far distant past; pervicacia_F_N = mkN "pervicacia" ; -- [XXXDX] :: stubbornness, obstinacy, firmness, steadiness; @@ -29161,10 +29154,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat pervideo_V = mkV "pervidere" ; -- [XXXDX] :: take in with the eyes or mind; pervigeo_V = mkV "pervigere" ; -- [XXXDS] :: continue to bloom; pervigil_A = mkA "pervigil" "pervigilis"; -- [XXXDX] :: keeping watch or sleepless all night long; always watchful; - pervigilatio_F_N = mkN "pervigilatio" "pervigilationis " feminine ; -- [XXXDS] :: vigil; + 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; + 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; @@ -29172,7 +29165,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat pervoluto_V = mkV "pervolutare" ; -- [XXXDS] :: roll about; be busied with; pervorsus_A = mkA "pervorsus" "pervorsa" "pervorsum" ; -- [XXXDS] :: askew, awry; perverse, evil, bad; (perversus); pervulgo_V = mkV "pervulgare" ; -- [XXXDX] :: make publicly known, spread abroad; - pes_M_N = mkN "pes" "pedis " masculine ; -- [XBXAX] :: foot; [pedem referre => to retreat]; + pes_M_N = mkN "pes" "pedis" masculine ; -- [XBXAX] :: foot; [pedem referre => to retreat]; pessimismus_M_N = mkN "pessimismus" ; -- [GXXEK] :: pessimism; pessimista_M_N = mkN "pessimista" ; -- [GXXEK] :: pessimist; pessimo_V2 = mkV2 (mkV "pessimare") ; -- [EEXDS] :: ruin, debase; spoil completely, make utterly bad; harm, injure, bring calamity; @@ -29188,11 +29181,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat pestilens_A = mkA "pestilens" "pestilentis"; -- [XXXDX] :: pestilential, unhealthy, unwholesome; destructive; pestilentia_F_N = mkN "pestilentia" ; -- [XXXDX] :: plague; pestilence; fever; pestilentiosus_A = mkA "pestilentiosus" "pestilentiosa" "pestilentiosum" ; -- [DXXDS] :: pestilential; unhealthy; - pestilitas_F_N = mkN "pestilitas" "pestilitatis " feminine ; -- [XPXFS] :: plague; - pestis_F_N = mkN "pestis" "pestis " feminine ; -- [XXXBX] :: plague, pestilence, curse, destruction; + pestilitas_F_N = mkN "pestilitas" "pestilitatis" feminine ; -- [XPXFS] :: plague; + pestis_F_N = mkN "pestis" "pestis" feminine ; -- [XXXBX] :: plague, pestilence, curse, destruction; petasatus_A = mkA "petasatus" "petasata" "petasatum" ; -- [XXXEC] :: wearing the petasus/hat; (hence equipped for a journey); - petasio_M_N = mkN "petasio" "petasionis " masculine ; -- [XXXEC] :: forequarter/shoulder of pork; - petaso_M_N = mkN "petaso" "petasonis " masculine ; -- [XXXEC] :: forequarter/shoulder of pork; + petasio_M_N = mkN "petasio" "petasionis" masculine ; -- [XXXEC] :: forequarter/shoulder of pork; + petaso_M_N = mkN "petaso" "petasonis" masculine ; -- [XXXEC] :: forequarter/shoulder of pork; petasunculus_M_N = mkN "petasunculus" ; -- [XXXFS] :: small pork leg; traveling cap; petasus_M_N = mkN "petasus" ; -- [FXXEO] :: hat; broadbrimmed hat (worn by travelers); conical superstructure; petaurista_M_N = mkN "petaurista" ; -- [FXXEK] :: acrobat; @@ -29200,14 +29193,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; - petro_M_N = mkN "petro" "petronis " masculine ; -- [XXXDX] :: young/breeding ram; a rustic, dolt, rube, bumpkin; + petro_M_N = mkN "petro" "petronis" masculine ; -- [XXXDX] :: young/breeding ram; a rustic, dolt, rube, bumpkin; petrochemicus_A = mkA "petrochemicus" "petrochemica" "petrochemicum" ; -- [GXXEK] :: petrochemical; petroleifus_A = mkA "petroleifus" "petroleifa" "petroleifum" ; -- [GXXEK] :: oil-bearing; petroleum_N_N = mkN "petroleum" ; -- [GXXEK] :: oil; @@ -29223,17 +29216,17 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat phala_F_N = mkN "phala" ; -- [XXXEC] :: wooden tower or pillar; phalaecius_A = mkA "phalaecius" "phalaecia" "phalaecium" ; -- [XPXFS] :: Phalaecian; kind of Greek verse; phalanga_F_N = mkN "phalanga" ; -- [XXXDX] :: roller to move ships/military engines; carrying pole; cut length of wood/rod; - phalangion_N_N = mkN "phalangion" "phalangii " neuter ; -- [XAXES] :: venomous spider; spider-root plant; + phalangion_N_N = mkN "phalangion" "phalangii" neuter ; -- [XAXES] :: venomous spider; spider-root plant; phalangita_M_N = mkN "phalangita" ; -- [XWHEC] :: soldiers (pl.) belonging to a phalanx; phalangius_N_N = mkN "phalangius" ; -- [XAXES] :: venomous spider; spider-root plant; - phalanx_F_N = mkN "phalanx" "phalangis " feminine ; -- [XXXDX] :: phalanx, compact body of heavy infantry; battalion; men in battle formation; + phalanx_F_N = mkN "phalanx" "phalangis" feminine ; -- [XXXDX] :: phalanx, compact body of heavy infantry; battalion; men in battle formation; phalarica_F_N = mkN "phalarica" ; -- [XXXDX] :: heavy missile (orig. by siege tower catapult w/tow+pitch+fire); like hand spear; phalera_F_N = mkN "phalera" ; -- [XXXDX] :: ornaments (pl.) worn by men of arms and horses; phaleratus_A = mkA "phaleratus" "phalerata" "phaleratum" ; -- [XXXEC] :: wearing phalerae/ornaments; phantasia_F_N = mkN "phantasia" ; -- [ESXEP] :: phase; (of the moon); phantasio_V2 = mkV2 (mkV "phantasiare") ; -- [FXXEF] :: imagine, fancy; phantasior_V = mkV "phantasiari" ; -- [FXXFF] :: imagine, fancy; - phantasma_N_N = mkN "phantasma" "phantasmatis " neuter ; -- [EEXDX] :: ghost; phantom; spirit; + phantasma_N_N = mkN "phantasma" "phantasmatis" neuter ; -- [EEXDX] :: ghost; phantom; spirit; phantasmaticus_A = mkA "phantasmaticus" "phantasmatica" "phantasmaticum" ; -- [EXXEP] :: imaginary; phantasticus_A = mkA "phantasticus" "phantastica" "phantasticum" ; -- [FXXFM] :: imaginary; visionary; pharetra_F_N = mkN "pharetra" ; -- [XXXBX] :: quiver; @@ -29242,12 +29235,12 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat pharmaceuticus_A = mkA "pharmaceuticus" "pharmaceutica" "pharmaceuticum" ; -- [GXXEK] :: pharmaceutical; pharmaceutria_F_N = mkN "pharmaceutria" ; -- [XXXEC] :: sorceress; pharmacopola_M_N = mkN "pharmacopola" ; -- [XBXDO] :: medicine/drug seller (usu. derogatory), quack; pharmacist (Cal); - pharmacopoles_M_N = mkN "pharmacopoles" "pharmacopolae " masculine ; -- [XBXDO] :: medicine/drug seller (usu. derogatory), quack; pharmacist (Cal); + pharmacopoles_M_N = mkN "pharmacopoles" "pharmacopolae" masculine ; -- [XBXDO] :: medicine/drug seller (usu. derogatory), quack; pharmacist (Cal); pharmacopolium_N_N = mkN "pharmacopolium" ; -- [GXXEK] :: pharmacy; pharmacus_M_N = mkN "pharmacus" ; -- [DXXFS] :: poisoner; sorcerer; phaselus_C_N = mkN "phaselus" ; -- [XXXDX] :: kidney-bean; light ship; phaselus_M_N = mkN "phaselus" ; -- [GXXEK] :: snap bean; - phasma_N_N = mkN "phasma" "phasmatis " neuter ; -- [XXXEC] :: ghost, specter; + phasma_N_N = mkN "phasma" "phasmatis" neuter ; -- [XXXEC] :: ghost, specter; pherecratus_A = mkA "pherecratus" "pherecrata" "pherecratum" ; -- [XPXFS] :: Pherecratian; kind of Greek verse; phiala_F_N = mkN "phiala" ; -- [XXXEC] :: drinking vessel; a bowl, saucer; phiditium_N_N = mkN "phiditium" ; -- [XXXFS] :: Spartan public meal; @@ -29256,7 +29249,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat philatelia_F_N = mkN "philatelia" ; -- [GXXEK] :: philately; philatelista_M_N = mkN "philatelista" ; -- [GXXEK] :: philatelist; philautia_F_N = mkN "philautia" ; -- [FXXFM] :: self-love; - philema_N_N = mkN "philema" "philematis " neuter ; -- [XXXFO] :: kiss; + philema_N_N = mkN "philema" "philematis" neuter ; -- [XXXFO] :: kiss; philitium_N_N = mkN "philitium" ; -- [XXXFS] :: Spartan public meal; philologia_F_N = mkN "philologia" ; -- [XXXEC] :: love of learning, study of literature; philologus_A = mkA "philologus" "philologa" "philologum" ; -- [XGXEC] :: learned, literary; @@ -29272,14 +29265,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat philtrum_N_N = mkN "philtrum" ; -- [XXXDX] :: love-potion; philyra_F_N = mkN "philyra" ; -- [XAXDX] :: linden-tree, lime-tree; phimus_M_N = mkN "phimus" ; -- [XXXEC] :: dice box; - phito_F_N = mkN "phito" "phitonis " feminine ; -- [FEXFM] :: divination-spirit; + phito_F_N = mkN "phito" "phitonis" feminine ; -- [FEXFM] :: divination-spirit; phitonissa_F_N = mkN "phitonissa" ; -- [FEXFM] :: witch; sorceress; phlebotomo_V = mkV "phlebotomare" ; -- [XXXES] :: let blood; bleed; - phlegma_N_N = mkN "phlegma" "phlegmatis " neuter ; -- [FXXES] :: phlegm; - phloginos_M_N = mkN "phloginos" "phlogini " masculine ; -- [XXXNS] :: flame-colored gem (otherwise unknown); + phlegma_N_N = mkN "phlegma" "phlegmatis" neuter ; -- [FXXES] :: phlegm; + phloginos_M_N = mkN "phloginos" "phlogini" masculine ; -- [XXXNS] :: flame-colored gem (otherwise unknown); phoca_F_N = mkN "phoca" ; -- [XAXCO] :: seal; (marine mammal); phoenicopterus_M_N = mkN "phoenicopterus" ; -- [XAXDO] :: flamingo; - phoenix_M_N = mkN "phoenix" "phoenicis " masculine ; -- [XAXCC] :: phoenix, a fabulous bird of Arabia; + phoenix_M_N = mkN "phoenix" "phoenicis" masculine ; -- [XAXCC] :: phoenix, a fabulous bird of Arabia; phonascus_M_N = mkN "phonascus" ; -- [XGXEO] :: teacher of singing/music or elocution; phonetica_F_N = mkN "phonetica" ; -- [GXXEK] :: phonetics; phoneticus_A = mkA "phoneticus" "phonetica" "phoneticum" ; -- [GXXEK] :: phonetics; @@ -29289,57 +29282,57 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat photocopiatrum_N_N = mkN "photocopiatrum" ; -- [HTXEK] :: photocopier; photocopio_V = mkV "photocopiare" ; -- [HXXEK] :: photocopy; photoelectricus_A = mkA "photoelectricus" "photoelectrica" "photoelectricum" ; -- [HSXEK] :: photoelectric; - photographema_N_N = mkN "photographema" "photographematis " neuter ; -- [GXXEK] :: photograph (picture); + photographema_N_N = mkN "photographema" "photographematis" neuter ; -- [GXXEK] :: photograph (picture); photographia_F_N = mkN "photographia" ; -- [GXXEK] :: photograph (art); photographicus_A = mkA "photographicus" "photographica" "photographicum" ; -- [GXXEK] :: photographic; photographo_V = mkV "photographare" ; -- [GXXEK] :: photograph; photographus_M_N = mkN "photographus" ; -- [GXXEK] :: photographer; photomachina_F_N = mkN "photomachina" ; -- [GTXEK] :: camera; phraseologia_F_N = mkN "phraseologia" ; -- [GXXEK] :: phraseology; - phrenesis_F_N = mkN "phrenesis" "phrenesis " feminine ; -- [XXXEC] :: madness, frenzy; + phrenesis_F_N = mkN "phrenesis" "phrenesis" feminine ; -- [XXXEC] :: madness, frenzy; phreneticus_A = mkA "phreneticus" "phrenetica" "phreneticum" ; -- [XXXEC] :: mad, frantic; phrenocomium_N_N = mkN "phrenocomium" ; -- [GXXEK] :: mad asylum; - phthiriasis_F_N = mkN "phthiriasis" "phthiriasis " feminine ; -- [DBXNS] :: pthiriasis; louse-disease (Pliny); - phthisis_F_N = mkN "phthisis" "phthisis " feminine ; -- [XXXEC] :: consumption; + phthiriasis_F_N = mkN "phthiriasis" "phthiriasis" feminine ; -- [DBXNS] :: pthiriasis; louse-disease (Pliny); + phthisis_F_N = mkN "phthisis" "phthisis" feminine ; -- [XXXEC] :: consumption; phthongus_M_N = mkN "phthongus" ; -- [XDXFO] :: sound; tone; phy_Interj = ss "phy" ; -- [XXXFO] :: pish! tush!; (expression of disgust); - phycis_F_N = mkN "phycis" "phycidis " feminine ; -- [DAXNS] :: seaweed-dwelling fish (lamprey?); (Pliny); - phycitis_F_N = mkN "phycitis" "phycitidis " feminine ; -- [ASXNS] :: precious stone (Pliny); + phycis_F_N = mkN "phycis" "phycidis" feminine ; -- [DAXNS] :: seaweed-dwelling fish (lamprey?); (Pliny); + phycitis_F_N = mkN "phycitis" "phycitidis" feminine ; -- [ASXNS] :: precious stone (Pliny); phylaca_F_N = mkN "phylaca" ; -- [BXXFS] :: prison; phylacterium_N_N = mkN "phylacterium" ; -- [XXXDS] :: amulet; phylactery, scripture text in box on forehead of Jews; gladiator medal; - phylarches_M_N = mkN "phylarches" "phylarchae " masculine ; -- [EXHDW] :: head of a tribe/phyle (Greek), magistrate; emir; army/cavalry commander; + phylarches_M_N = mkN "phylarches" "phylarchae" masculine ; -- [EXHDW] :: head of a tribe/phyle (Greek), magistrate; emir; army/cavalry commander; phylarchia_F_N = mkN "phylarchia" ; -- [GXXEK] :: emirate; phylarchus_M_N = mkN "phylarchus" ; -- [EXHEC] :: head of a tribe/phyle (Greek), magistrate; emir; army/cavalry commander; - phyle_F_N = mkN "phyle" "phyles " feminine ; -- [GXXEK] :: race; + phyle_F_N = mkN "phyle" "phyles" feminine ; -- [GXXEK] :: race; phyleticus_A = mkA "phyleticus" "phyletica" "phyleticum" ; -- [GXXEK] :: racial; physica_F_N = mkN "physica" ; -- [XSXDS] :: physics; physice_Adv = mkAdv "physice" ; -- [XXXDX] :: from the scientific/natural science point of view; - physice_F_N = mkN "physice" "physices " feminine ; -- [XSXDS] :: physics; + physice_F_N = mkN "physice" "physices" feminine ; -- [XSXDS] :: physics; physicos_A = mkA "physicos" "physice" "physicon" ; -- [XXXDO] :: pertaining/relating to physics/natural science/physical nature; natural, inborn; physiculo_V2 = mkV2 (mkV "physiculare") ; -- [FXXEV] :: prophesy, foresee, divine; physicum_N_N = mkN "physicum" ; -- [XXXCO] :: physics (pl.), natural science; physicus_A = mkA "physicus" "physica" "physicum" ; -- [XXXCO] :: pertaining/relating to physics/natural science/physical nature; natural, inborn; physicus_M_N = mkN "physicus" ; -- [XXXCO] :: physicist, natural philosopher; natural scientist; - physiognomon_M_N = mkN "physiognomon" "physiognomonis " masculine ; -- [XBXEC] :: physiognomist, one who reads character/foretells destiny from the face; + physiognomon_M_N = mkN "physiognomon" "physiognomonis" masculine ; -- [XBXEC] :: physiognomist, one who reads character/foretells destiny from the face; physiologia_F_N = mkN "physiologia" ; -- [XXXEC] :: natural science; physiology (Cal); physiologus_M_N = mkN "physiologus" ; -- [FSXEM] :: chemist; natural science (Nelson); physiotherapia_F_N = mkN "physiotherapia" ; -- [GBXEK] :: physiotherapy; piacularis_A = mkA "piacularis" "piacularis" "piaculare" ; -- [XXXDX] :: atoning, expiatory; piaculum_N_N = mkN "piaculum" ; -- [XXXDX] :: expiatory offering or rite; sin; crime; - piamen_N_N = mkN "piamen" "piaminis " neuter ; -- [XXXDX] :: atonement; + piamen_N_N = mkN "piamen" "piaminis" neuter ; -- [XXXDX] :: atonement; piamentum_N_N = mkN "piamentum" ; -- [XEXFS] :: atoning sacrifice; pica_F_N = mkN "pica" ; -- [XXXDX] :: magpie; jay; picaria_F_N = mkN "picaria" ; -- [XXXEC] :: place where pitch is made; picea_F_N = mkN "picea" ; -- [XXXDX] :: spruce; piceus_A = mkA "piceus" "picea" "piceum" ; -- [XXXDX] :: pitch black; pico_V = mkV "picare" ; -- [XXXEC] :: smear with pitch; - pictor_M_N = mkN "pictor" "pictoris " masculine ; -- [XXXDX] :: painter; + 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; 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); + pietas_F_N = mkN "pietas" "pietatis" feminine ; -- [XXXAX] :: responsibility, sense of duty; loyalty; tenderness, goodness; pity; piety (Bee); piger_A = mkA "piger" "pigra" "pigrum" ; -- [XXXBX] :: lazy, slow, dull; piget_V0 = mkV0 "piget" ; -- [XXXDX] :: it disgusts, irks, pains, chagrins, afflicts, grieves; pigmentarius_A = mkA "pigmentarius" "pigmentaria" "pigmentarium" ; -- [XXXEC] :: seller of paints and unguents; @@ -29349,18 +29342,18 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat pigneror_V = mkV "pignerari" ; -- [XXXEO] :: appropriate; assert one's claim to; make certain, assure; guarantee, pledge; 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; + 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; + pigredo_F_N = mkN "pigredo" "pigredinis" feminine ; -- [EXXFS] :: slothfulness, indolence; 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; + pigrities_F_N = mkN "pigrities" "pigritiei" feminine ; -- [XXXDX] :: sloth, sluggishness, laziness, indolence; pigro_V = mkV "pigrare" ; -- [XXXDO] :: hesitate; hang back; - pigror_M_N = mkN "pigror" "pigroris " masculine ; -- [XXXFO] :: sluggishness; hesitation; + pigror_M_N = mkN "pigror" "pigroris" masculine ; -- [XXXFO] :: sluggishness; hesitation; pigror_V = mkV "pigrari" ; -- [XXXFO] :: hesitate; hang back; piisimus_A = mkA "piisimus" "piisima" "piisimum" ; -- [XXXES] :: conscientious; affectionate/tender; most pious/holy/godly; patriotic/dutiful; pila_F_N = mkN "pila" ; -- [XXXCO] :: squared pillar; pier, pile; low pillar monument; funerary monument w/cavity; - pilamalleator_M_N = mkN "pilamalleator" "pilamalleatoris " masculine ; -- [GXXEK] :: golfer; + pilamalleator_M_N = mkN "pilamalleator" "pilamalleatoris" masculine ; -- [GXXEK] :: golfer; pilamalleus_M_N = mkN "pilamalleus" ; -- [GXXEK] :: golf; pilanus_M_N = mkN "pilanus" ; -- [XXXDX] :: soldier of the third rank; pilatus_A = mkA "pilatus" "pilata" "pilatum" ; -- [XWXFS] :: javelin-armed; @@ -29378,19 +29371,19 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat pimenta_F_N = mkN "pimenta" ; -- [GXXEK] :: pimento; pimpinella_F_N = mkN "pimpinella" ; -- [GXXEK] :: burnet; pimpernel; pinacotheca_F_N = mkN "pinacotheca" ; -- [XDXDO] :: picture gallery; - pinacothece_F_N = mkN "pinacothece" "pinacotheces " feminine ; -- [XDXDO] :: picture gallery; + pinacothece_F_N = mkN "pinacothece" "pinacotheces" feminine ; -- [XDXDO] :: picture gallery; pinaster_M_N = mkN "pinaster" ; -- [DSXNS] :: wild pine (Pliny); pincerna_M_N = mkN "pincerna" ; -- [EXXCS] :: cupbearer, butler, one who mixes drinks/serves wine; bartender; sommelier; 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); + 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); 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); + pinguido_F_N = mkN "pinguido" "pinguidinis" feminine ; -- [XXXCW] :: fat/fatness; oiliness; richness/abundance (L+S); fullness; exuberance (Def); pinguis_A = mkA "pinguis" ; -- [XXXAX] :: fat; rich, fertile; thick; dull, stupid; - pinguitudo_F_N = mkN "pinguitudo" "pinguitudinis " feminine ; -- [XXXES] :: fatness; richness; G:broadness; + 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; pinna_F_N = mkN "pinna" ; -- [EBXFP] :: lobe (of the liver/lung); @@ -29401,13 +29394,13 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat pinnipes_A = mkA "pinnipes" "pinnipedis"; -- [XXXDX] :: wing-footed (Collins); 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; + 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; - piper_M_N = mkN "piper" "piperis " masculine ; -- [XAXEC] :: pepper; - piper_N_N = mkN "piper" "piperis " neuter ; -- [FXXEK] :: pepper; + piper_M_N = mkN "piper" "piperis" masculine ; -- [XAXEC] :: pepper; + piper_N_N = mkN "piper" "piperis" neuter ; -- [FXXEK] :: pepper; piperatorium_N_N = mkN "piperatorium" ; -- [FXXEK] :: pepper pot; piperatum_N_N = mkN "piperatum" ; -- [FXXEK] :: pepper sauce; piperatus_A = mkA "piperatus" "piperata" "piperatum" ; -- [XAXES] :: peppered; peppery; sharp; @@ -29424,33 +29417,33 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat pirus_F_N = mkN "pirus" ; -- [XXXDX] :: pear-tree; piscarius_A = mkA "piscarius" "piscaria" "piscarium" ; -- [XAXDS] :: fish-; fishing-; piscarius_M_N = mkN "piscarius" ; -- [XXXES] :: fishmonger; - piscator_M_N = mkN "piscator" "piscatoris " masculine ; -- [XXXDX] :: fisherman; + piscator_M_N = mkN "piscator" "piscatoris" masculine ; -- [XXXDX] :: fisherman; piscatorius_A = mkA "piscatorius" "piscatoria" "piscatorium" ; -- [XXXDX] :: of or for fishing; - piscatus_M_N = mkN "piscatus" "piscatus " masculine ; -- [XAXDS] :: fishing; fish; catch of fish; + piscatus_M_N = mkN "piscatus" "piscatus" masculine ; -- [XAXDS] :: fishing; fish; catch of fish; piscicultura_F_N = mkN "piscicultura" ; -- [GXXEK] :: pisciculture, raising/breeding of fish artificially, fish farming; pisciculus_M_N = mkN "pisciculus" ; -- [XXXDX] :: little fish; piscina_F_N = mkN "piscina" ; -- [XXXDX] :: pool; fishpond; swiming pool, spa; tank, vat, basin; piscinarius_M_N = mkN "piscinarius" ; -- [XXXEC] :: one fond of fish ponds; - piscis_M_N = mkN "piscis" "piscis " masculine ; -- [XAXAX] :: fish; + piscis_M_N = mkN "piscis" "piscis" masculine ; -- [XAXAX] :: fish; piscor_V = mkV "piscari" ; -- [XXXDX] :: fish; piscosus_A = mkA "piscosus" "piscosa" "piscosum" ; -- [XXXDX] :: teeming with fish; pisculentum_N_N = mkN "pisculentum" ; -- [XBXFS] :: fish remedy; remedy made from fish; pisculentus_A = mkA "pisculentus" "pisculenta" "pisculentum" ; -- [XXXDS] :: full-of-fish; - pisselaeon_N_N = mkN "pisselaeon" "pisselaei " neuter ; -- [DAXNS] :: cedar-resin oil (Pliny); - pissoceros_M_N = mkN "pissoceros" "pissoceri " masculine ; -- [DAXNS] :: pitch-wax (Pliny); + pisselaeon_N_N = mkN "pisselaeon" "pisselaei" neuter ; -- [DAXNS] :: cedar-resin oil (Pliny); + pissoceros_M_N = mkN "pissoceros" "pissoceri" masculine ; -- [DAXNS] :: pitch-wax (Pliny); pistaceus_A = mkA "pistaceus" "pistacea" "pistaceum" ; -- [GXXEK] :: pistachio-colored; pistacium_N_N = mkN "pistacium" ; -- [GXXEK] :: pistachio; pisticus_A = mkA "pisticus" "pistica" "pisticum" ; -- [EXXES] :: pure; genuine; pistillum_N_N = mkN "pistillum" ; -- [XXXEC] :: pestle; pistolium_N_N = mkN "pistolium" ; -- [GXXEK] :: gun; - pistor_M_N = mkN "pistor" "pistoris " masculine ; -- [XAXCO] :: pounder of far (emmer wheat); miller/baker; + pistor_M_N = mkN "pistor" "pistoris" masculine ; -- [XAXCO] :: pounder of far (emmer wheat); miller/baker; pistrilla_F_N = mkN "pistrilla" ; -- [XXXES] :: little mortar; pistrina_F_N = mkN "pistrina" ; -- [XXXEO] :: mill/bakery; pistrinarius_M_N = mkN "pistrinarius" ; -- [XAXEO] :: owner of a pistrium (mill/bakery); pistrinensis_A = mkA "pistrinensis" "pistrinensis" "pistrinense" ; -- [XAXFO] :: of/belonging to/kept in a pistrinum (mill/bakery); pistrinum_N_N = mkN "pistrinum" ; -- [XXXCO] :: mill/bakery; (as a place of punishment of slaves or of drudgery); - pistris_F_N = mkN "pistris" "pistris " feminine ; -- [XAXCO] :: sea monster; whale; sawfish; light oared vessel; - pistrix_F_N = mkN "pistrix" "pistricis " feminine ; -- [XAXCO] :: sea monster; whale; sawfish; light oared vessel; + pistris_F_N = mkN "pistris" "pistris" feminine ; -- [XAXCO] :: sea monster; whale; sawfish; light oared vessel; + pistrix_F_N = mkN "pistrix" "pistricis" feminine ; -- [XAXCO] :: sea monster; whale; sawfish; light oared vessel; pisum_N_N = mkN "pisum" ; -- [FXXEK] :: pea; pithecium_N_N = mkN "pithecium" ; -- [XAXFS] :: little ape; antirrhinon plant, antirrhinum, calf's-snout/mouth, snapdragon; pitta_F_N = mkN "pitta" ; -- [GXXEK] :: pizza; @@ -29461,16 +29454,16 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat pituitosus_A = mkA "pituitosus" "pituitosa" "pituitosum" ; -- [XBXEO] :: suffering from catarrh, rheumy; full of phlegm; 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); + pityocampe_F_N = mkN "pityocampe" "pityocampes" feminine ; -- [DAXNS] :: pine-grub (Pliny); 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; + pix_F_N = mkN "pix" "picis" feminine ; -- [XXXDX] :: pitch, tar; 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; + placabilitas_F_N = mkN "placabilitas" "placabilitatis" feminine ; -- [XXXDX] :: readiness to condone (Collins); + placamen_N_N = mkN "placamen" "placaminis" neuter ; -- [XXXEC] :: means of appeasing; placamentum_N_N = mkN "placamentum" ; -- [XXXEC] :: means of appeasing; placatus_A = mkA "placatus" "placata" "placatum" ; -- [XXXDX] :: kindly disposed; peaceful, calm; placenta_F_N = mkN "placenta" ; -- [XXXCO] :: cake; kind of flat cake; @@ -29492,53 +29485,53 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat plago_V = mkV "plagare" ; -- [EXXFS] :: strike; wound; plagosus_A = mkA "plagosus" "plagosa" "plagosum" ; -- [XXXDX] :: fond of flogging; plagula_F_N = mkN "plagula" ; -- [XXXEC] :: bed-curtain; - planctus_M_N = mkN "planctus" "planctus " masculine ; -- [XXXDX] :: wailing, lamentation, lament, beating of the breast; mourning; + planctus_M_N = mkN "planctus" "planctus" masculine ; -- [XXXDX] :: wailing, lamentation, lament, beating of the breast; mourning; plancus_M_N = mkN "plancus" ; -- [DAXNS] :: eagle (Pliny); plane_Adv = mkAdv "plane" ; -- [XXXDX] :: clearly, plainly, distinctly; completely; - planes_M_N = mkN "planes" "planetis " masculine ; -- [XXXDX] :: planet; + 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; + 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; planitia_F_N = mkN "planitia" ; -- [XXXDX] :: plain, plateau, a flat/plane/level surface; a plane (geometry); flatness; - planities_F_N = mkN "planities" "planitiei " feminine ; -- [XXXDX] :: plain, plateau, a flat/plane/level surface; a plane (geometry); flatness; + planities_F_N = mkN "planities" "planitiei" feminine ; -- [XXXDX] :: plain, plateau, a flat/plane/level surface; a plane (geometry); flatness; planta_F_N = mkN "planta" ; -- [XBXCO] :: sole (of foot); (esp. as placed on ground in standing/treading); foot; - plantago_F_N = mkN "plantago" "plantaginis " feminine ; -- [XAXNS] :: plantain; - plantar_N_N = mkN "plantar" "plantaris " neuter ; -- [XXXFO] :: sandals (pl.); winged shoes/sandals (of Mercury L+S); + plantago_F_N = mkN "plantago" "plantaginis" feminine ; -- [XAXNS] :: plantain; + plantar_N_N = mkN "plantar" "plantaris" neuter ; -- [XXXFO] :: sandals (pl.); winged shoes/sandals (of Mercury L+S); plantaris_A = mkA "plantaris" "plantaris" "plantare" ; -- [XBXEO] :: of/connected with the soles of the feet; (of Mercury L+S); plantarium_N_N = mkN "plantarium" ; -- [XAXEO] :: |place for planting out cuttings/seedlings; - plantatio_F_N = mkN "plantatio" "plantationis " feminine ; -- [XAXNO] :: propagation from cuttings; planting, transplanting (L+S); plant transplanted; + 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); 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; + 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; plasmo_V2 = mkV2 (mkV "plasmare") ; -- [DEXDS] :: form, mold, fashion; - plastes_M_N = mkN "plastes" "plastae " masculine ; -- [XXXCS] :: modeler, molder, potter; creator, maker (eccl.); statuary; + plastes_M_N = mkN "plastes" "plastae" masculine ; -- [XXXCS] :: modeler, molder, potter; creator, maker (eccl.); statuary; plasticus_A = mkA "plasticus" "plastica" "plasticum" ; -- [HXXEK] :: plastic (matter); platalea_F_N = mkN "platalea" ; -- [XXXEC] :: water bird, the spoonbill; platanus_F_N = mkN "platanus" ; -- [XXXDX] :: plane-tree; 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; + 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; + plausor_M_N = mkN "plausor" "plausoris" masculine ; -- [XXXDX] :: applauder; plaustrum_N_N = mkN "plaustrum" ; -- [XXXCO] :: wagon, cart, wain; constellation of Great Bear/Big Dipper; - plausus_M_N = mkN "plausus" "plausus " masculine ; -- [XXXCO] :: clapping/applause; approval; striking w/palm/flat surface; beating of wings; + plausus_M_N = mkN "plausus" "plausus" masculine ; -- [XXXCO] :: clapping/applause; approval; striking w/palm/flat surface; beating of wings; 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; + plebes_F_N = mkN "plebes" "plebis" feminine ; -- [XXXBO] :: common people, general citizens, commons/plebeians; lower class/ranks; mob/mass; 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; + plebs_F_N = mkN "plebs" "plebis" feminine ; -- [XXXBO] :: common people, general citizens, commons/plebeians; lower class/ranks; mob/mass; plecto_V = mkV "plectere" "plecto" nonExist nonExist ; -- [XXXDX] :: buffet, beat; punish; - plecto_V2 = mkV2 (mkV "plectere" "plecto" "plexi" "plectus ") ; -- [XXXDX] :: plait, twine; + 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; @@ -29547,10 +29540,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat plenarius_A = mkA "plenarius" "plenaria" "plenarium" ; -- [FXXDF] :: plenary; full (in all respects/requisites); entire; absolute; having full power; plene_Adv =mkAdv "plene" "plenius" "plenissime" ; -- [XXXCO] :: abundantly/fully/clearly; richly/lavishly/generously; entirely/completely/widely 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; + 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; 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; + 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; pleuriticus_A = mkA "pleuriticus" "pleuritica" "pleuriticum" ; -- [XBXES] :: pleuritic; afflicted with pleurisy; @@ -29559,16 +29552,16 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat plex_A = mkA "plex" "plicis"; -- [DSXDX] :: fold (times) (multiplicative numeral); of X-parts; tuple; w/num prefix; plexus_A = mkA "plexus" "plexa" "plexum" ; -- [XXXDS] :: interwoven; intricate; plicato_Adv = mkAdv "plicato" ; -- [ESXDX] :: in an X-fold manner (only with numerical prefix), X times the price; - plicatrix_F_N = mkN "plicatrix" "plicatricis " feminine ; -- [BXXFS] :: clothes-folder; she who folds clothes; + plicatrix_F_N = mkN "plicatrix" "plicatricis" feminine ; -- [BXXFS] :: clothes-folder; she who folds clothes; plicatus_A = mkA "plicatus" "plicata" "plicatum" ; -- [XXXDX] :: multiplied by; tupled; usually with numerical prefix; pliciter_Adv = mkAdv "pliciter" ; -- [ESXDX] :: in X ways (only with numerical prefix), in X parts/categories; plico_V2 = mkV2 (mkV "plicare") ; -- [DXXCS] :: fold (up), bend, flex; roll up; twine/coil; wind/fold together (L+S); double up; - plio_F_N = mkN "plio" "plionis " feminine ; -- [ESXDX] :: X times the amount (only with numerical prefix), X times as much; + 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; + 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; + ploratus_M_N = mkN "ploratus" "ploratus" masculine ; -- [XXXDX] :: wailing, crying; ploro_V = mkV "plorare" ; -- [XXXBX] :: cry over, cry aloud; lament, weep; deplore; plostellum_N_N = mkN "plostellum" ; -- [XAXEC] :: little wagon; plostrum_N_N = mkN "plostrum" ; -- [XXXCO] :: wagon, cart, wain; constellation of Great Bear/Big Dipper; @@ -29590,7 +29583,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat pluralis_A = mkA "pluralis" "pluralis" "plurale" ; -- [EXXEP] :: plural; pluralismus_M_N = mkN "pluralismus" ; -- [GXXEK] :: pluralism; pluralisticus_A = mkA "pluralisticus" "pluralistica" "pluralisticum" ; -- [GXXEK] :: pluralistic; - pluralitas_F_N = mkN "pluralitas" "pluralitatis " feminine ; -- [EXXDP] :: plurality; multitude; the plural number; + pluralitas_F_N = mkN "pluralitas" "pluralitatis" feminine ; -- [EXXDP] :: plurality; multitude; the plural number; pluraliter_Adv = mkAdv "pluraliter" ; -- [EXXDP] :: in the bulk; in the plural (Latham); in several places; at several times; plurativum_N_N = mkN "plurativum" ; -- [DXXFS] :: plural (of number); plurativus_A = mkA "plurativus" "plurativa" "plurativum" ; -- [DXXFS] :: plural; @@ -29601,7 +29594,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat plurimus_M_N = mkN "plurimus" ; -- [XXXDX] :: very many, many a one; the most people, very many/great number of people; plurumus_A = mkA "plurumus" "pluruma" "plurumum" ; -- [XXXDX] :: most, greatest number/amount; very many; most frequent; highest price/value; 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); + 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; @@ -29609,31 +29602,31 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat pluvialis_A = mkA "pluvialis" "pluvialis" "pluviale" ; -- [XXXDX] :: rain bringing, rainy; pluviosus_A = mkA "pluviosus" "pluviosa" "pluviosum" ; -- [EXXFS] :: rainy; pluvius_A = mkA "pluvius" "pluvia" "pluvium" ; -- [XXXBX] :: rainy, causing or bringing rain; - pneuma_N_N = mkN "pneuma" "pneumatis " neuter ; -- [FEXDM] :: breath; spirit; [pneuma sacrum/sanctum => Holy Spirit/Ghost]; + pneuma_N_N = mkN "pneuma" "pneumatis" neuter ; -- [FEXDM] :: breath; spirit; [pneuma sacrum/sanctum => Holy Spirit/Ghost]; pneumaticus_A = mkA "pneumaticus" "pneumatica" "pneumaticum" ; -- [XTXEO] :: pneumatic; wind-; concerned w/air pressure; operated by air/wind pressure; pneumococcus_M_N = mkN "pneumococcus" ; -- [GBXEK] :: pneumococcus; pneumonia_F_N = mkN "pneumonia" ; -- [GBXEK] :: pneumonia; - pocillator_M_N = mkN "pocillator" "pocillatoris " masculine ; -- [XXXFO] :: cupbearer; + pocillator_M_N = mkN "pocillator" "pocillatoris" masculine ; -- [XXXFO] :: cupbearer; pocillum_N_N = mkN "pocillum" ; -- [XXXDO] :: little cup; small cupful; cup (Cal); poclum_N_N = mkN "poclum" ; -- [XXXCO] :: cup, bowl, drinking vessel; drink/draught; social drinking (pl.); drink; poculentus_A = mkA "poculentus" "poculenta" "poculentum" ; -- [XXXFO] :: potable, suitable for drinking; poculum_N_N = mkN "poculum" ; -- [XXXBO] :: cup, bowl, drinking vessel; drink/draught; social drinking (pl.); drink; podagra_F_N = mkN "podagra" ; -- [XXXDX] :: gout; podagrosus_A = mkA "podagrosus" "podagrosa" "podagrosum" ; -- [BBXFS] :: gouty; - podex_M_N = mkN "podex" "podicis " masculine ; -- [XBXEC] :: fundament, buttocks; anus; + podex_M_N = mkN "podex" "podicis" masculine ; -- [XBXEC] :: fundament, buttocks; anus; podium_N_N = mkN "podium" ; -- [XXXEC] :: balcony, esp. in the amphitheater; - poema_N_N = mkN "poema" "poematis " neuter ; -- [XPXCO] :: poem, composition in verse; poetic piece (even nonmetrical); (pl.) poetry; + poema_N_N = mkN "poema" "poematis" neuter ; -- [XPXCO] :: poem, composition in verse; poetic piece (even nonmetrical); (pl.) poetry; 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; + 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; - poenitor_M_N = mkN "poenitor" "poenitoris " masculine ; -- [XXXDX] :: punisher, one who punishes; one who extracts retribution; avenger; - poenitudo_F_N = mkN "poenitudo" "poenitudinis " feminine ; -- [XXXFO] :: regret; repentance (L+S); - poesis_F_N = mkN "poesis" "poesis " feminine ; -- [XPXDX] :: poetry; poem; + poenitor_M_N = mkN "poenitor" "poenitoris" masculine ; -- [XXXDX] :: punisher, one who punishes; one who extracts retribution; avenger; + poenitudo_F_N = mkN "poenitudo" "poenitudinis" feminine ; -- [XXXFO] :: regret; repentance (L+S); + poesis_F_N = mkN "poesis" "poesis" feminine ; -- [XPXDX] :: poetry; poem; poeta_M_N = mkN "poeta" ; -- [XPXAX] :: poet; poetica_F_N = mkN "poetica" ; -- [XPXDS] :: poetry; poetic art; poeticus_A = mkA "poeticus" "poetica" "poeticum" ; -- [XPXDX] :: poetic; @@ -29641,26 +29634,26 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat polaris_A = mkA "polaris" "polaris" "polare" ; -- [GXXEK] :: polar; 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?); + 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; polium_N_N = mkN "polium" ; -- [DAXFS] :: strong smelling plant (poley-germander, Teucrium polium?); - pollen_N_N = mkN "pollen" "pollinis " neuter ; -- [XXXCO] :: finely ground flour; powder (of anything produced by grinding); - pollenis_F_N = mkN "pollenis" "pollinis " feminine ; -- [BXXEO] :: finely ground flour; powder (of anything produced by grinding); - pollenis_M_N = mkN "pollenis" "pollinis " masculine ; -- [BXXEO] :: finely ground flour; powder (of anything produced by grinding); + pollen_N_N = mkN "pollen" "pollinis" neuter ; -- [XXXCO] :: finely ground flour; powder (of anything produced by grinding); + pollenis_F_N = mkN "pollenis" "pollinis" feminine ; -- [BXXEO] :: finely ground flour; powder (of anything produced by grinding); + pollenis_M_N = mkN "pollenis" "pollinis" masculine ; -- [BXXEO] :: finely ground flour; powder (of anything produced by grinding); pollens_A = mkA "pollens" "pollentis"; -- [XXXCO] :: strong; having strength, potent (things); exerting power (people); important; pollentia_F_N = mkN "pollentia" ; -- [BXXFS] :: power; polleo_V = mkV "pollere" ; -- [XXXBX] :: exert power or influence; be strong; - pollex_M_N = mkN "pollex" "pollicis " masculine ; -- [XXXBX] :: thumb; + pollex_M_N = mkN "pollex" "pollicis" masculine ; -- [XXXBX] :: thumb; pollicaris_A = mkA "pollicaris" "pollicaris" "pollicare" ; -- [EBXFS] :: of a thumb; polliceor_V = mkV "polliceri" ; -- [XXXBX] :: promise; - pollicitatio_F_N = mkN "pollicitatio" "pollicitationis " feminine ; -- [XXXDX] :: promise; + pollicitatio_F_N = mkN "pollicitatio" "pollicitationis" feminine ; -- [XXXDX] :: promise; 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; + 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); @@ -29668,9 +29661,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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; + 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; polulus_A = mkA "polulus" "polula" "polulum" ; -- [XXXCO] :: little; small; (only a) small amount/quantity of/little bit of; polum_N_N = mkN "polum" ; -- [XXXCO] :: little; small; (only a) small amount/quantity; a little bit; trifle; @@ -29703,50 +29696,50 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat pompaticus_A = mkA "pompaticus" "pompatica" "pompaticum" ; -- [EXXFS] :: with pomp; splendid; pompatus_A = mkA "pompatus" "pompata" "pompatum" ; -- [EXXFS] :: with pomp; splendid; pompelmus_M_N = mkN "pompelmus" ; -- [GAXEK] :: grapefruit; - pompholyx_F_N = mkN "pompholyx" "pompholycis " feminine ; -- [DTXNS] :: smoke-deposit (from furnace); (Pliny); + pompholyx_F_N = mkN "pompholyx" "pompholycis" feminine ; -- [DTXNS] :: smoke-deposit (from furnace); (Pliny); pompilus_M_N = mkN "pompilus" ; -- [XAXEC] :: pilot fish; pompo_V = mkV "pompare" ; -- [EXXFS] :: perform with pomp; pomposus_A = mkA "pomposus" "pomposa" "pomposum" ; -- [DXXFS] :: pompous; dignified; pomum_N_N = mkN "pomum" ; -- [XXXAX] :: fruit, apple; fruit-tree; pomus_F_N = mkN "pomus" ; -- [XXXDX] :: fruit, fruit-tree; - ponderatio_F_N = mkN "ponderatio" "ponderationis " feminine ; -- [XXXDX] :: weight; + ponderatio_F_N = mkN "ponderatio" "ponderationis" feminine ; -- [XXXDX] :: weight; pondero_V = mkV "ponderare" ; -- [XXXDX] :: weigh; weigh up; 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); - 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; + pondus_N_N = mkN "pondus" "ponderis" neuter ; -- [XXXAX] :: weight, burden, impediment; + 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; + pontifex_M_N = mkN "pontifex" "pontificis" masculine ; -- [XXXBO] :: high priest/pontiff; (of Roman supreme college of priests); bishop (Bee); pope; pontificalis_A = mkA "pontificalis" "pontificalis" "pontificale" ; -- [XXXDX] :: pontifical, of or pertaining to a pontifex; - pontificatus_M_N = mkN "pontificatus" "pontificatus " masculine ; -- [XXXDX] :: pontificate, the office of pontifex; + pontificatus_M_N = mkN "pontificatus" "pontificatus" masculine ; -- [XXXDX] :: pontificate, the office of pontifex; pontificius_A = mkA "pontificius" "pontificia" "pontificium" ; -- [XXXDX] :: pontifical, of or pertaining to a pontifex; pontificus_A = mkA "pontificus" "pontifica" "pontificum" ; -- [XEXEC] :: pontifical; - 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; + 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; - pop_N = constN "pop." masculine ; -- [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; popellus_M_N = mkN "popellus" ; -- [XXXEC] :: common people, rabble; popina_F_N = mkN "popina" ; -- [XXXDX] :: cook-shop, bistro, low-class eating house; - popino_M_N = mkN "popino" "popinonis " masculine ; -- [XXXEC] :: glutton; - poples_M_N = mkN "poples" "poplitis " masculine ; -- [XXXDX] :: knee; + popino_M_N = mkN "popino" "popinonis" masculine ; -- [XXXEC] :: glutton; + poples_M_N = mkN "poples" "poplitis" masculine ; -- [XXXDX] :: knee; poplus_M_N = mkN "poplus" ; -- [XXXFS] :: people, nation, State; public, populace; (= populus); - poppysma_N_N = mkN "poppysma" "poppysmatis " neuter ; -- [XXXFS] :: tongue-clicking; + poppysma_N_N = mkN "poppysma" "poppysmatis" neuter ; -- [XXXFS] :: tongue-clicking; poppysmus_M_N = mkN "poppysmus" ; -- [XXXFS] :: tongue-clicking; populabilis_A = mkA "populabilis" "populabilis" "populabile" ; -- [XXXDX] :: that may be ravaged or laid waste; populabundus_A = mkA "populabundus" "populabunda" "populabundum" ; -- [XXXEC] :: laying waste, devastating; popularis_A = mkA "popularis" "popularis" "populare" ; -- [XXXBX] :: of the people; popular; - popularis_F_N = mkN "popularis" "popularis " feminine ; -- [XLXBO] :: |member of "Popular" party, promoter of "Popular" policies, "Men of the People"; - popularis_M_N = mkN "popularis" "popularis " masculine ; -- [XLXBO] :: |member of "Popular" party, promoter of "Popular" policies, "Men of the People"; - popularitas_F_N = mkN "popularitas" "popularitatis " feminine ; -- [XXXDX] :: courting of popular favor; + popularis_F_N = mkN "popularis" "popularis" feminine ; -- [XLXBO] :: |member of "Popular" party, promoter of "Popular" policies, "Men of the People"; + popularis_M_N = mkN "popularis" "popularis" masculine ; -- [XLXBO] :: |member of "Popular" party, promoter of "Popular" policies, "Men of the People"; + popularitas_F_N = mkN "popularitas" "popularitatis" feminine ; -- [XXXDX] :: courting of popular favor; populariter_Adv = mkAdv "populariter" ; -- [XXXDX] :: in everyday language; in a manner designed to win popular support; - populatio_F_N = mkN "populatio" "populationis " feminine ; -- [XXXDX] :: plundering, ravaging, spoiling; laying waste, devastation; plunder, booty; - populator_M_N = mkN "populator" "populatoris " masculine ; -- [XXXDX] :: devastator, ravager, plunderer; - populatus_M_N = mkN "populatus" "populatus " masculine ; -- [XPXFS] :: devastation; laying-waste; + populatio_F_N = mkN "populatio" "populationis" feminine ; -- [XXXDX] :: plundering, ravaging, spoiling; laying waste, devastation; plunder, booty; + populator_M_N = mkN "populator" "populatoris" masculine ; -- [XXXDX] :: devastator, ravager, plunderer; + populatus_M_N = mkN "populatus" "populatus" masculine ; -- [XPXFS] :: devastation; laying-waste; populeus_A = mkA "populeus" "populea" "populeum" ; -- [XXXDX] :: of a poplar; populifer_A = mkA "populifer" "populifera" "populiferum" ; -- [XAXEC] :: producing poplars; populista_M_N = mkN "populista" ; -- [GXXEK] :: populist; @@ -29759,7 +29752,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat porcellana_F_N = mkN "porcellana" ; -- [GXXEK] :: porcelain; china; porcellanum_N_N = mkN "porcellanum" ; -- [GXXEK] :: porcelain; china; porcellanus_A = mkA "porcellanus" "porcellana" "porcellanum" ; -- [GXXEK] :: of porcelain, china; - porcellio_M_N = mkN "porcellio" "porcellionis " masculine ; -- [FXXEK] :: woodlouse; + porcellio_M_N = mkN "porcellio" "porcellionis" masculine ; -- [FXXEK] :: woodlouse; porcellus_M_N = mkN "porcellus" ; -- [XAXCO] :: piglet; suckling pig; porceo_V = mkV "porcere" ; -- [BXXFS] :: keep off; (archaic); porcetra_F_N = mkN "porcetra" ; -- [XAXFS] :: once-littered sow; @@ -29769,58 +29762,58 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat porcinus_A = mkA "porcinus" "porcina" "porcinum" ; -- [XXXEC] :: of a swine or hog; porculus_M_N = mkN "porculus" ; -- [XAXDS] :: young pig; porpoise; hook in wine press; porcus_M_N = mkN "porcus" ; -- [XXXDX] :: pig, hog; tame swine; glutton; (boar = verres); - porisma_N_N = mkN "porisma" "porismatis " neuter ; -- [ESXEP] :: deduction; + porisma_N_N = mkN "porisma" "porismatis" neuter ; -- [ESXEP] :: deduction; porna_F_N = mkN "porna" ; -- [XXHEW] :: harlot; (Greek borrowed word); whore; streetwalker; pornographia_F_N = mkN "pornographia" ; -- [GXXEK] :: pornography; pornographicus_A = mkA "pornographicus" "pornographica" "pornographicum" ; -- [GXXEK] :: pornographic; porosus_A = mkA "porosus" "porosa" "porosum" ; -- [GXXEK] :: porous; - 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; + 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; 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; + 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; porta_F_N = mkN "porta" ; -- [XXXAX] :: gate, entrance; city gates; door; avenue; goal (soccer); - portale_N_N = mkN "portale" "portalis " neuter ; -- [GXXEK] :: portal; + 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; + 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); 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; - portio_F_N = mkN "portio" "portionis " feminine ; -- [XXXDX] :: part, portion, share; proportion; [pro portione => proportionally]; + 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; + portio_F_N = mkN "portio" "portionis" feminine ; -- [XXXDX] :: part, portion, share; proportion; [pro portione => proportionally]; portisculus_M_N = mkN "portisculus" ; -- [XXXFS] :: timing-hammer (to keep beat); guidance; - portitor_M_N = mkN "portitor" "portitoris " masculine ; -- [XXXDX] :: ferry man; + portitor_M_N = mkN "portitor" "portitoris" masculine ; -- [XXXDX] :: ferry man; portiuncula_F_N = mkN "portiuncula" ; -- [EXXFS] :: portion; small part; porto_V = mkV "portare" ; -- [XXXAX] :: carry, bring; portorium_N_N = mkN "portorium" ; -- [XXXDX] :: port duty; customs duty; tax; portula_F_N = mkN "portula" ; -- [XXXEC] :: little gate, postern; 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; + portus_M_N = mkN "portus" "portus" masculine ; -- [XXXBX] :: port, harbor; refuge, haven, place of refuge; 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]; + positio_F_N = mkN "positio" "positionis" feminine ; -- [XXXBO] :: ||attitude, mental position, condition/state; [prima ~ => word base form]; positivus_A = mkA "positivus" "positiva" "positivum" ; -- [GXXEK] :: positive; - positor_M_N = mkN "positor" "positoris " masculine ; -- [XXXDX] :: builder, founder; - positus_M_N = mkN "positus" "positus " masculine ; -- [XXXDX] :: situation, position; arrangement; - possessio_F_N = mkN "possessio" "possessionis " feminine ; -- [XXXBX] :: possession, property; + positor_M_N = mkN "positor" "positoris" masculine ; -- [XXXDX] :: builder, founder; + positus_M_N = mkN "positus" "positus" masculine ; -- [XXXDX] :: situation, position; arrangement; + possessio_F_N = mkN "possessio" "possessionis" feminine ; -- [XXXBX] :: possession, property; possessiuncula_F_N = mkN "possessiuncula" ; -- [XXXEC] :: small property; - possessor_M_N = mkN "possessor" "possessoris " masculine ; -- [XXXDX] :: owner, occupier; + 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; 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; @@ -29828,14 +29821,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; 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); + 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; - postfero_V = mkV "postferre" "postfero" "posttuli" "postlatus " ; -- Comment: [XXXEC] :: consider of less account; + postfero_V = mkV "postferre" "postfero" "posttuli" "postlatus" ; -- Comment: [XXXEC] :: consider of less account; postgenitus_M_N = mkN "postgenitus" ; -- [XXXEC] :: posterity (pl.), descendants; posthabeo_V = mkV "posthabere" ; -- [XXXDX] :: esteem less, subordinate (to); postpone; posthac_Adv = mkAdv "posthac" ; -- [XXXCO] :: after this, in the future, hereafter, from now on; thereafter, from then on; @@ -29851,43 +29844,43 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat postidea_Adv = mkAdv "postidea" ; -- [BXXFS] :: afterwards; postilena_F_N = mkN "postilena" ; -- [XXXEC] :: crupper?, strap from back of saddle under horse's tail to prevent slipping; postilla_Adv = mkAdv "postilla" ; -- [XXXDO] :: afterwards, after that time; - postis_M_N = mkN "postis" "postis " masculine ; -- [XXXBX] :: doorpost; + postis_M_N = mkN "postis" "postis" masculine ; -- [XXXBX] :: doorpost; postliminium_N_N = mkN "postliminium" ; -- [XXXEC] :: right to return home; postmeridianus_A = mkA "postmeridianus" "postmeridiana" "postmeridianum" ; -- [XXXEC] :: of the afternoon; postmodo_Adv = mkAdv "postmodo" ; -- [XXXBX] :: afterwards, presently, later; postmodum_Adv = mkAdv "postmodum" ; -- [XXXDX] :: after a while, later, a little later; afterwards; presently; 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; + 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 = mkConj "postquam" missing ; -- [XXXAX] :: after; - postremitas_F_N = mkN "postremitas" "postremitatis " feminine ; -- [EXXFP] :: inferior/later position; + 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; + 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; postumus_A = mkA "postumus" "postuma" "postumum" ; -- [XLXCO] :: late/last born (child), born late in life/after will; posthumous; last/final; 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; + potator_M_N = mkN "potator" "potatoris" masculine ; -- [XXXEO] :: drinker, one who drinks; tippler, drinker of intoxicants; 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; + 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; potentia_F_N = mkN "potentia" ; -- [XXXBX] :: force, power, political power; poterium_N_N = mkN "poterium" ; -- [BXXFS] :: goblet; - potestas_F_N = mkN "potestas" "potestatis " feminine ; -- [XXXAX] :: power, rule, force; strength, ability; chance, opportunity; - potio_F_N = mkN "potio" "potionis " feminine ; -- [XXXDX] :: drinking, drink; + potestas_F_N = mkN "potestas" "potestatis" feminine ; -- [XXXAX] :: power, rule, force; strength, ability; chance, opportunity; + potio_F_N = mkN "potio" "potionis" feminine ; -- [XXXDX] :: drinking, drink; 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; - potior_V = mkV "potiri" "potior" "potitus sum " ; -- [XXXAO] :: ||be/become master of (w/GEN/ABL), get possession/submission/hold of; + 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; @@ -29897,19 +29890,19 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat potito_V = mkV "potitare" ; -- [XXXDX] :: drink; potius_Adv = mkAdv "potius" ; -- [XXXDX] :: rather, more, preferably; poto_V = mkV "potare" ; -- [XXXBO] :: drink; drink heavily/convivially, tipple; swallow; absorb, soak up; - potor_M_N = mkN "potor" "potoris " masculine ; -- [XXXCS] :: hard drinker; + potor_M_N = mkN "potor" "potoris" masculine ; -- [XXXCS] :: hard drinker; potorium_N_N = mkN "potorium" ; -- [XXXFO] :: drinking vessel; (usu. pl.) drinking vessels/bowls/cups/flagons; potorius_A = mkA "potorius" "potoria" "potorium" ; -- [XXXEO] :: used for drinking; (vessel); - potrix_F_N = mkN "potrix" "potricis " feminine ; -- [XXXFO] :: drinker/tippler (female); she habitually with intoxicating drink; + potrix_F_N = mkN "potrix" "potricis" feminine ; -- [XXXFO] :: drinker/tippler (female); she habitually with intoxicating drink; potulentum_N_N = mkN "potulentum" ; -- [XXXDS] :: drink; potulentus_A = mkA "potulentus" "potulenta" "potulentum" ; -- [XXXEO] :: tipsy, rather drunk; potable, suitable for drinking, drinkable; 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); + 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; - pr_N = constN "pr." masculine ; -- [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; @@ -29921,120 +29914,120 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; + 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; 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; + praecentio_F_N = mkN "praecentio" "praecentionis" feminine ; -- [XXXDS] :: prelude; praecento_V = mkV "praecentare" ; -- [XXXDS] :: sing consolation for; praeceps_A = mkA "praeceps" "praecipitis"; -- [XXXBX] :: head first, headlong; steep, precipitous; praeceps_Adv = mkAdv "praeceps" ; -- [XXXDS] :: headlong; into danger; - praeceps_N_N = mkN "praeceps" "praecipitis " neuter ; -- [XXXDS] :: edge of abyss; great danger; - 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; + praeceps_N_N = mkN "praeceps" "praecipitis" neuter ; -- [XXXDS] :: edge of abyss; great danger; + 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; + 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; + 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; + 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; + 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; + 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; + 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; + 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; + praedator_M_N = mkN "praedator" "praedatoris" masculine ; -- [XXXDX] :: plunderer, pillager; hunter; praedatorius_A = mkA "praedatorius" "praedatoria" "praedatorium" ; -- [XXXDX] :: plundering, rapacious; piratical; - praedecessor_M_N = mkN "praedecessor" "praedecessoris " masculine ; -- [EXXEP] :: predecessor; + praedecessor_M_N = mkN "praedecessor" "praedecessoris" masculine ; -- [EXXEP] :: predecessor; praedelasso_V = mkV "praedelassare" ; -- [XXXEC] :: weary beforehand; praedesignatus_A = mkA "praedesignatus" "praedesignata" "praedesignatum" ; -- [DXXFS] :: predesignated, designated beforehand; - praedestinatio_F_N = mkN "praedestinatio" "praedestinationis " feminine ; -- [DEXES] :: predestination, determining beforehand; + praedestinatio_F_N = mkN "praedestinatio" "praedestinationis" feminine ; -- [DEXES] :: predestination, determining beforehand; praedestino_V2 = mkV2 (mkV "praedestinare") ; -- [DXXDS] :: predestine, predetermine, determine beforehand; provide beforehand; praedetermino_V2 = mkV2 (mkV "praedeterminare") ; -- [DXXFS] :: fix beforehand; - praediator_M_N = mkN "praediator" "praediatoris " masculine ; -- [XXXEC] :: buyer of landed estates; + praediator_M_N = mkN "praediator" "praediatoris" masculine ; -- [XXXEC] :: buyer of landed estates; 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 "praedicere" "praedico" "praedixi" "praedictus ") ; -- [XXXBO] :: say beforehand, mention in advance; warn/predict/foretell; recommend/prescribe; + praedicatio_F_N = mkN "praedicatio" "praedicationis" feminine ; -- [XXXCS] :: |publication, public proclamation; prediction/prophecy/soothsaying; preaching; + 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; 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); + praedispositio_F_N = mkN "praedispositio" "praedispositionis" feminine ; -- [GXXEK] :: plan (project); praedispositus_A = mkA "praedispositus" "praedisposita" "praedispositum" ; -- [XXXEC] :: arranged at intervals beforehand; praeditus_A = mkA "praeditus" "praedita" "praeditum" ; -- [XXXDX] :: gifted; provided with; praedium_N_N = mkN "praedium" ; -- [XXXDX] :: farm, estate; praedives_A = mkA "praedives" "praedivitis"; -- [XXXDX] :: very rich; richly supplied; praedivino_V2 = mkV2 (mkV "praedivinare") ; -- [DXXDS] :: pre-divine; divine in advance; - praedo_M_N = mkN "praedo" "praedonis " masculine ; -- [XXXDX] :: robber, thief; pirate (if at sea); + praedo_M_N = mkN "praedo" "praedonis" masculine ; -- [XXXDX] :: robber, thief; pirate (if at sea); 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; + 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; - 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; + praeeo_1_V = mkV "praeire" "praeeo" "praeivi" "praeitus" ; -- [XXXDX] :: go before, precede; dictate; + praeeo_2_V = mkV "praeire" "praeeo" "praeiii" "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; + 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; praefectianus_M_N = mkN "praefectianus" ; -- [ELXFS] :: praetorian prefect; praefectura_F_N = mkN "praefectura" ; -- [XXXDX] :: command; office of praefectus; praefectus_M_N = mkN "praefectus" ; -- [XXXDX] :: commander; prefect; praefecus_M_N = mkN "praefecus" ; -- [XXXDX] :: director, president, chief, governor; - praefero_V = mkV "praeferre" "praefero" "praetuli" "praelatus " ; -- Comment: [XXXBX] :: carry in front; prefer; display; offer; give preference to; + praefero_V = mkV "praeferre" "praefero" "praetuli" "praelatus" ; -- Comment: [XXXBX] :: carry in front; prefer; display; offer; give preference to; praeferox_A = mkA "praeferox" "praeferocis"; -- [XXXDX] :: very high-spirited; 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; + 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; + 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; + 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; + 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; @@ -30042,39 +30035,39 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; + 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; + 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); + 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; + 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; + 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; + 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; + praelusio_F_N = mkN "praelusio" "praelusionis" feminine ; -- [XXXEC] :: prelude; praelustris_A = mkA "praelustris" "praelustris" "praelustre" ; -- [XXXEC] :: very fine; praemandatatum_N_N = mkN "praemandatatum" ; -- [XXXDS] :: arrest warrant; praemando_V2 = mkV2 (mkV "praemandare") ; -- [DXXFS] :: pre-order; @@ -30088,28 +30081,28 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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); + 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; + 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); + 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; + 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; + 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; + 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.); + praenomen_N_N = mkN "praenomen" "praenominis" neuter ; -- [XXXDX] :: first name, personal name; noun which precedes another noun (gram.); praenosco_V = mkV "praenoscere" "praenosco" nonExist nonExist ; -- [XXXDX] :: foreknow; - praenotio_F_N = mkN "praenotio" "praenotionis " feminine ; -- [XXXEC] :: preconception, innate idea; + 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; @@ -30117,86 +30110,86 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; + praepes_F_N = mkN "praepes" "praepetis" feminine ; -- [XXXDS] :: bird; bird of omen; praepilatus_A = mkA "praepilatus" "praepilata" "praepilatum" ; -- [XXXEC] :: having button in front (of foils, etc.); 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); + 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; + 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; praepossum_V = mkV "praeposse" ; -- [DXXDS] :: be very powerful; gain upper hand; praeposterus_A = mkA "praeposterus" "praepostera" "praeposterum" ; -- [XXXDX] :: in the wrong order; wrong-headed; topsy-turvy; praepotens_A = mkA "praepotens" "praepotentis"; -- [XXXDX] :: very powerful; praeproperanter_Adv = mkAdv "praeproperanter" ; -- [XXXEC] :: very hastily; praeproperus_A = mkA "praeproperus" "praepropera" "praeproperum" ; -- [XXXDX] :: very hurried, precipitate; too hasty; - praeputiatio_F_N = mkN "praeputiatio" "praeputiationis " feminine ; -- [XEXFS] :: having/retaining foreskin/prepuce (state of), being uncircumcised; + praeputiatio_F_N = mkN "praeputiatio" "praeputiationis" feminine ; -- [XEXFS] :: having/retaining foreskin/prepuce (state of), being uncircumcised; 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; + 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; + 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; + 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; + 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; praesagio_V2 = mkV2 (mkV "praesagire" "praesagio" "praesagivi" nonExist ) ; -- [XXXDX] :: have presentiment (of); portend; - praesagitio_F_N = mkN "praesagitio" "praesagitionis " feminine ; -- [XXXEC] :: foreboding, presentiment; + 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; + 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; + 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; - praesegmen_N_N = mkN "praesegmen" "praesegminis " neuter ; -- [XXXDX] :: paring; + praesegmen_N_N = mkN "praesegmen" "praesegminis" neuter ; -- [XXXDX] :: paring; praeselectorius_A = mkA "praeselectorius" "praeselectoria" "praeselectorium" ; -- [GXXEK] :: prefixed; pre-selected; praesens_A = mkA "praesens" "praesentis"; -- [XXXAX] :: present; at hand; existing; prompt, in person; propitious; praesentarie_Adv = mkAdv "praesentarie" ; -- [EXXFP] :: in a moment; promptly/quickly; instantly; praesentarius_A = mkA "praesentarius" "praesentaria" "praesentarium" ; -- [XXXCS] :: present; that is at hand; existing; prompt/quick/ready; that operates instantly; - praesentatio_F_N = mkN "praesentatio" "praesentationis " feminine ; -- [DXXCS] :: presentation, placing before; exhibition, showing, representation; - praesente_N_N = mkN "praesente" "praesentis " neuter ; -- [XXXDS] :: present circumstance; + praesentatio_F_N = mkN "praesentatio" "praesentationis" feminine ; -- [DXXCS] :: presentation, placing before; exhibition, showing, representation; + praesente_N_N = mkN "praesente" "praesentis" neuter ; -- [XXXDS] :: present circumstance; praesenter_Adv = mkAdv "praesenter" ; -- [EXXFP] :: face to face; in the presence; 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; + 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; + 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; + 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; praesidentia_F_N = mkN "praesidentia" ; -- [GXXEK] :: presidency; praesidentialis_A = mkA "praesidentialis" "praesidentialis" "praesidentiale" ; -- [GXXEK] :: presidential; @@ -30210,72 +30203,72 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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; + 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; + 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; + 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; + 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; praesulsus_A = mkA "praesulsus" "praesulsa" "praesulsum" ; -- [XXXFO] :: very salty, very salt, salted very heavily;; - praesultator_M_N = mkN "praesultator" "praesultatoris " masculine ; -- [XXXDS] :: public dancer; + 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; + 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; - praesumptor_M_N = mkN "praesumptor" "praesumptoris " masculine ; -- [XLXES] :: possession-taker; reckless or presumptuous fellow; + praesumptor_M_N = mkN "praesumptor" "praesumptoris" masculine ; -- [XLXES] :: possession-taker; reckless or presumptuous fellow; praesupponeo_V = mkV "praesupponere" ; -- [GXXEK] :: presuppose; - praesuppositio_F_N = mkN "praesuppositio" "praesuppositionis " feminine ; -- [FXXEM] :: assumption; presupposition; + 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; + 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; - praeterago_V2 = mkV2 (mkV "praeteragere" "praeterago" nonExist "praeteractus ") ; -- [XXXDS] :: 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; + praeterduco_V2 = mkV2 (mkV "praeterducere" "praeterduco" "praeterduxi" "praeterductus") ; -- [XXXDS] :: lead past; praeterea_Adv = mkAdv "praeterea" ; -- [XXXAX] :: besides, thereafter; in addition; - 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; + praetereo_1_V = mkV "praeterire" "praetereo" "praeterivi" "praeteritus" ; -- [XXXAO] :: pass/go by; disregard/neglect/omit/miss; surpass/excel; go overdue; pass over; + praetereo_2_V = mkV "praeterire" "praetereo" "praeteriii" "praeteritus" ; -- [XXXAO] :: pass/go by; disregard/neglect/omit/miss; surpass/excel; go overdue; pass over; praeterequitans_A = mkA "praeterequitans" "praeterequitantis"; -- [XXXDS] :: riding past; praeterfluo_V = mkV "praeterfluere" "praeterfluo" nonExist nonExist ; -- [XXXDX] :: flow past; - praetergredior_V = mkV "praetergredi" "praetergredior" "praetergressus sum " ; -- [XXXDX] :: march or go 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; + 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; + 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; + 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; + 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; praetextus_A = mkA "praetextus" "praetexta" "praetextum" ; -- [XXXDX] :: bordered; wearing a toga ~; [toga ~ => high magistrate's purple bordered toga]; praetimeo_V = mkV "praetimere" ; -- [XXXDS] :: fear in advance; praetinctus_A = mkA "praetinctus" "praetincta" "praetinctum" ; -- [XXXEC] :: moistened beforehand; - praetor_M_N = mkN "praetor" "praetoris " masculine ; -- [XXXDX] :: praetor (official elected by the Romans who served as a judge); abb. pr.; + praetor_M_N = mkN "praetor" "praetoris" masculine ; -- [XXXDX] :: praetor (official elected by the Romans who served as a judge); abb. pr.; praetorianus_A = mkA "praetorianus" "praetoriana" "praetorianum" ; -- [XWXDO] :: praetorian; of/belonging to the praetorian cohorts/Imperial bodyguard; praetorianus_M_N = mkN "praetorianus" ; -- [XWXEO] :: praetorian; soldier belonging to the praetorian cohorts/Imperial bodyguard; praetorium_N_N = mkN "praetorium" ; -- [XWXDX] :: general's tent; headquarters; governor's residence, government house; palace; @@ -30287,17 +30280,17 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; - praevaricatio_F_N = mkN "praevaricatio" "praevaricationis " feminine ; -- [XLXEC] :: collusion; transgression (Plater); - praevaricator_M_N = mkN "praevaricator" "praevaricatoris " masculine ; -- [XLXEC] :: advocate guilty of collusion; transgressor (Plater); - praevaricatrix_F_N = mkN "praevaricatrix" "praevaricatricis " feminine ; -- [XEXFS] :: female sinner; + praevaricatio_F_N = mkN "praevaricatio" "praevaricationis" feminine ; -- [XLXEC] :: collusion; transgression (Plater); + praevaricator_M_N = mkN "praevaricator" "praevaricatoris" masculine ; -- [XLXEC] :: advocate guilty of collusion; transgressor (Plater); + 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; + 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.); 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; @@ -30311,16 +30304,16 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat prandeo_V = mkV "prandere" ; -- [XXXDX] :: eat one's morning or midday meal; prandiolum_N_N = mkN "prandiolum" ; -- [XXXEK] :: meal; prandium_N_N = mkN "prandium" ; -- [FXXEK] :: lunch; - pransor_M_N = mkN "pransor" "pransoris " masculine ; -- [BXXFS] :: lunch guest; + pransor_M_N = mkN "pransor" "pransoris" masculine ; -- [BXXFS] :: lunch guest; prasinus_A = mkA "prasinus" "prasina" "prasinum" ; -- [XXXEC] :: leek-green; prasius_M_N = mkN "prasius" ; -- [XXXFS] :: prase, green coloured gem (Pliny); leek-green crystal translucent quartz (OED); pratensis_A = mkA "pratensis" "pratensis" "pratense" ; -- [XXXEC] :: of a meadow; pratulum_N_N = mkN "pratulum" ; -- [XXXEC] :: little meadow; pratum_N_N = mkN "pratum" ; -- [XAXAO] :: meadow, meadowland; meadow grass/crop; broad expanse/field/plain (land/sea); - pratus_M_N = mkN "pratus" "pratus " masculine ; -- [DAXEP] :: meadow, meadowland; meadow grass/crop; broad expanse/field/plain (land/sea); + pratus_M_N = mkN "pratus" "pratus" masculine ; -- [DAXEP] :: meadow, meadowland; meadow grass/crop; broad expanse/field/plain (land/sea); pravicordius_A = mkA "pravicordius" "pravicordia" "pravicordium" ; -- [EEXDS] :: evil-minded; mean-spirited; that has a depraved heart; pravicors_A = mkA "pravicors" "pravicordis"; -- [EEXES] :: evil-minded; mean-spirited; that has a depraved heart; - pravitas_F_N = mkN "pravitas" "pravitatis " feminine ; -- [XXXDX] :: bad condition; viciousness, perverseness, depravity; + pravitas_F_N = mkN "pravitas" "pravitatis" feminine ; -- [XXXDX] :: bad condition; viciousness, perverseness, depravity; pravo_V = mkV "pravare" ; -- [EXXFM] :: misrule; be crooked/bad/vicious/evil/corrupt; bend; pravus_A = mkA "pravus" "prava" "pravum" ; -- [XXXBX] :: crooked; misshapen, deformed; perverse, vicious, corrupt; faulty; bad; preambula_F_N = mkN "preambula" ; -- [FXXEM] :: forerunner; @@ -30330,47 +30323,47 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat prebeo_V2 = mkV2 (mkV "prebere") ; -- [XXXAO] :: |make available, supply, provide; be the cause, occasion, produce; render; precabundus_A = mkA "precabundus" "precabunda" "precabundum" ; -- [EXXES] :: entreating; beseeching; precarius_A = mkA "precarius" "precaria" "precarium" ; -- [XXXDX] :: obtained by prayer; doubtful, precarious; - precatio_F_N = mkN "precatio" "precationis " feminine ; -- [XXXDX] :: prayer, supplication; - precatus_M_N = mkN "precatus" "precatus " masculine ; -- [EEXES] :: prayer; request; + precatio_F_N = mkN "precatio" "precationis" feminine ; -- [XXXDX] :: prayer, supplication; + 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; + 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; + 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; 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; + 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); + 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; presbyta_F_N = mkN "presbyta" ; -- [GBXEK] :: long-sighted; presbyter_M_N = mkN "presbyter" ; -- [DEXAS] :: elder/presbyter (in Christian Church); priest; presbyteralis_A = mkA "presbyteralis" "presbyteralis" "presbyterale" ; -- [FEXEE] :: priestly; presbyterissa_F_N = mkN "presbyterissa" ; -- [FEXEQ] :: presbyter (female), widow/matron devoted to church service (order); (Du Cange); 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; + 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; + 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; pressulus_A = mkA "pressulus" "pressula" "pressulum" ; -- [DXXFS] :: rather compressed; pressus_A = mkA "pressus" "pressa" "pressum" ; -- [XXXDX] :: firmly planted, deliberate; - 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; + 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; 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; + 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); pridem_Adv = mkAdv "pridem" ; -- [XXXDX] :: some time ago, previously; pridianum_N_N = mkN "pridianum" ; -- [XWXEO] :: annual register of the total strength of a unit; (taken on 31 December); prim @@ -30381,7 +30374,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat primanus_M_N = mkN "primanus" ; -- [XWXEC] :: soldiers (pl.) of the first legion; primarius_A = mkA "primarius" "primaria" "primarium" ; -- [XXXEC] :: in the first rank, distinguished; primas_A = mkA "primas" "primatis"; -- [XXXEO] :: noble; of the highest rank; principle; - primatus_M_N = mkN "primatus" "primatus " masculine ; -- [XXXEO] :: supremacy; first place; + primatus_M_N = mkN "primatus" "primatus" masculine ; -- [XXXEO] :: supremacy; first place; primicauponius_M_N = mkN "primicauponius" ; -- [GXXEK] :: headwaiter; primicerius_M_N = mkN "primicerius" ; -- [DXXDS] :: chief, head, superintendent; chief clerk; (first-named on wax tablet); primigenius_A = mkA "primigenius" "primigenia" "primigenium" ; -- [XXXDX] :: first born; original, primitive; serving as root for derivatives (gram.); @@ -30401,18 +30394,18 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat primopilus_M_N = mkN "primopilus" ; -- [XXXDX] :: senior centurion of a legion; primordium_N_N = mkN "primordium" ; -- [XXXDX] :: first beginning, origin, commencement, beginnings; primoris_A = mkA "primoris" "primoris" "primore" ; -- [XXXDX] :: first; foremost, extreme; - primoris_M_N = mkN "primoris" "primoris " masculine ; -- [XXXDX] :: nobles (pl.), men of the first rank; + primoris_M_N = mkN "primoris" "primoris" masculine ; -- [XXXDX] :: nobles (pl.), men of the first rank; primula_F_N = mkN "primula" ; -- [GAXEK] :: primrose; primulus_A = mkA "primulus" "primula" "primulum" ; -- [BXXFS] :: very first; primum_Adv = mkAdv "primum" ; -- [XXXDX] :: at first; in the first place; primus_A = mkA "primus" "prima" "primum" ; -- [XXXAX] :: first, foremost/best, chief, principal; nearest/next; [in primis => especially]; primus_M_N = mkN "primus" ; -- [XXXDX] :: chiefs (pl.), nobles; princeps_A = mkA "princeps" "principis"; -- [XXXBO] :: first, foremost, leading, chief, front; earliest, original; most necessary; - princeps_M_N = mkN "princeps" "principis " masculine ; -- [XXXAO] :: |Princeps (non-military title of Roman Emperor); senior Senator; leader of pack; + princeps_M_N = mkN "princeps" "principis" masculine ; -- [XXXAO] :: |Princeps (non-military title of Roman Emperor); senior Senator; leader of pack; principalis_A = mkA "principalis" "principalis" "principale" ; -- [XXXDX] :: chief, principal; - principalitas_F_N = mkN "principalitas" "principalitatis " feminine ; -- [XXXES] :: superiority, pre-eminence, excellence; first place; + principalitas_F_N = mkN "principalitas" "principalitatis" feminine ; -- [XXXES] :: superiority, pre-eminence, excellence; first place; principaliter_Adv = mkAdv "principaliter" ; -- [XXXCO] :: primarily/principally/in first place; directly/without intermediary; imperially; - principatus_M_N = mkN "principatus" "principatus " masculine ; -- [XXXDX] :: first place; rule; leadership; supremacy; chief command; + principatus_M_N = mkN "principatus" "principatus" masculine ; -- [XXXDX] :: first place; rule; leadership; supremacy; chief command; principialis_A = mkA "principialis" "principialis" "principiale" ; -- [XPXES] :: original; from the beginning; principio_V = mkV "principiare" ; -- [EXXFS] :: begin to speak; begin to peak (medieval); principissa_F_N = mkN "principissa" ; -- [GXXEK] :: princess; @@ -30420,16 +30413,16 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat principor_V = mkV "principari" ; -- [DEXDS] :: rule; rule over (w/GEN/DAT) (Souter); prinus_F_N = mkN "prinus" ; -- [EAXFS] :: holm-oak, great scarlet oak; evergreen oak (Vulgate Susanna 1:58); prior_A = mkA "prior" "prior" "prius" ; -- [XXXAX] :: ahead, in front, leading; previous, earlier, preceding, prior; former; basic; - prior_M_N = mkN "prior" "prioris " masculine ; -- [EEXCB] :: superior/elder monk; (later) second in dignity to abbot/head of priory, prior; - prioratus_M_N = mkN "prioratus" "prioratus " masculine ; -- [FLXCJ] :: priory; + prior_M_N = mkN "prior" "prioris" masculine ; -- [EEXCB] :: superior/elder monk; (later) second in dignity to abbot/head of priory, prior; + prioratus_M_N = mkN "prioratus" "prioratus" masculine ; -- [FLXCJ] :: priory; priorissa_F_N = mkN "priorissa" ; -- [FXXEM] :: prioress; - prioritas_F_N = mkN "prioritas" "prioritatis " feminine ; -- [FXXEZ] :: priority; + prioritas_F_N = mkN "prioritas" "prioritatis" feminine ; -- [FXXEZ] :: priority; priscus_A = mkA "priscus" "prisca" "priscum" ; -- [XXXBX] :: ancient, early, former; prisona_F_N = mkN "prisona" ; -- [FLXDJ] :: prison; pristinus_A = mkA "pristinus" "pristina" "pristinum" ; -- [XXXBX] :: former, oldtime, original; pristine; - pristis_F_N = mkN "pristis" "pristis " feminine ; -- [XAXCO] :: sea monster; whale; sawfish; light oared vessel; + 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 + prius_N_N = mkN "prius" "prioris" neuter ; -- [XXXDX] :: earlier times/events/actions; a logically prior proposition 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; @@ -30440,120 +30433,120 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; 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); + 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; - probatio_F_N = mkN "probatio" "probationis " feminine ; -- [GXXEK] :: |test; - probator_M_N = mkN "probator" "probatoris " masculine ; -- [XXXDX] :: one who approves; + probatio_F_N = mkN "probatio" "probationis" feminine ; -- [GXXEK] :: |test; + probator_M_N = mkN "probator" "probatoris" masculine ; -- [XXXDX] :: one who approves; probe_Adv = mkAdv "probe" ; -- [XXXDX] :: properly, rightly; - probitas_F_N = mkN "probitas" "probitatis " feminine ; -- [XXXDX] :: uprightness, honesty, probity; - problema_N_N = mkN "problema" "problematis " neuter ; -- [DSXCO] :: problems, questions for debate/academic discussion (pl.); enigma/riddle/puzzle; + probitas_F_N = mkN "probitas" "probitatis" feminine ; -- [XXXDX] :: uprightness, honesty, probity; + problema_N_N = mkN "problema" "problematis" neuter ; -- [DSXCO] :: problems, questions for debate/academic discussion (pl.); enigma/riddle/puzzle; problematicum_N_N = mkN "problematicum" ; -- [DSXFS] :: problems, cases set forth as problems (pl.); problematicus_A = mkA "problematicus" "problematica" "problematicum" ; -- [DSXFS] :: problematic; problematum_N_N = mkN "problematum" ; -- [XSXEO] :: problems, questions for debate/academic discussion (pl.); enigma/riddle/puzzle; probo_V2 = mkV2 (mkV "probare") ; -- [XXXAO] :: |let; show to be real/true; examine/test/try/prove/demonstrate; get accepted; - proboscis_F_N = mkN "proboscis" "proboscidis " feminine ; -- [XXXFS] :: trunk; proboscis; snout; + proboscis_F_N = mkN "proboscis" "proboscidis" feminine ; -- [XXXFS] :: trunk; proboscis; snout; probrosus_A = mkA "probrosus" "probrosa" "probrosum" ; -- [XXXDX] :: shameful; disreputable; probrum_N_N = mkN "probrum" ; -- [XXXDX] :: disgrace; abuse, insult; disgrace, shame; probus_A = mkA "probus" "proba" "probum" ; -- [XXXBX] :: good, honest; - procacitas_F_N = mkN "procacitas" "procacitatis " feminine ; -- [XXXDO] :: effrontery, forwardness; wantonness, license; + 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; + 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; + 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; + proceritas_F_N = mkN "proceritas" "proceritatis" feminine ; -- [XXXCO] :: height/tallness; altitude, distance up; great length (some up); metrical feet; 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; + processus_M_N = mkN "processus" "processus" masculine ; -- [FXXEK] :: |process; 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; + 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; + 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; proclivis_A = mkA "proclivis" "proclivis" "proclive" ; -- [XXXDX] :: sloping down; downward; prone (to); easy; - proclivitas_F_N = mkN "proclivitas" "proclivitatis " feminine ; -- [FXXEM] :: propensity to evil; + proclivitas_F_N = mkN "proclivitas" "proclivitatis" feminine ; -- [FXXEM] :: propensity to evil; proclivus_A = mkA "proclivus" "procliva" "proclivum" ; -- [XXXEC] :: inclined forward, sloping downwards; inclined, ready; proco_V2 = mkV2 (mkV "procare") ; -- [XXXCO] :: urge/press (w/commands/suits); woo, importune for one's hand; ask/demand (L+S); - procoeton_M_N = mkN "procoeton" "procoetonis " masculine ; -- [EXXES] :: antechamber; - proconsul_M_N = mkN "proconsul" "proconsulis " masculine ; -- [XXXDX] :: proconsul, governor of a province; + procoeton_M_N = mkN "procoeton" "procoetonis" masculine ; -- [EXXES] :: antechamber; + proconsul_M_N = mkN "proconsul" "proconsulis" masculine ; -- [XXXDX] :: proconsul, governor of a province; proconsularis_A = mkA "proconsularis" "proconsularis" "proconsulare" ; -- [XXXDX] :: proconsular; - proconsulatus_M_N = mkN "proconsulatus" "proconsulatus " masculine ; -- [XLXDO] :: proconsulship; office/position of proconsul; + proconsulatus_M_N = mkN "proconsulatus" "proconsulatus" masculine ; -- [XLXDO] :: proconsulship; office/position of proconsul; procor_V = mkV "procari" ; -- [XXXDO] :: urge/press (w/commands/suits); woo, importune for one's hand; ask/demand (L+S); - procrastinatio_F_N = mkN "procrastinatio" "procrastinationis " feminine ; -- [XXXDS] :: procrastination; + 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; 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; + 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; + 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; + 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; - procursus_M_N = mkN "procursus" "procursus " masculine ; -- [XXXDX] :: forward movement; outbreak; + procursus_M_N = mkN "procursus" "procursus" masculine ; -- [XXXDX] :: forward movement; outbreak; procurvus_A = mkA "procurvus" "procurva" "procurvum" ; -- [XXXDX] :: curved outwards or forwards; procus_M_N = mkN "procus" ; -- [XXXDX] :: wooer, gigolo. suitor; canvasser; noble; prodeambulo_V = mkV "prodeambulare" ; -- [XXXFS] :: take a walk; - prodecessor_M_N = mkN "prodecessor" "prodecessoris " masculine ; -- [FXXEM] :: predecessor; + 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; + 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; prodigialus_A = mkA "prodigialus" "prodigiala" "prodigialum" ; -- [FXXDM] :: prodigal; lavish; - prodigilitas_F_N = mkN "prodigilitas" "prodigilitatis " feminine ; -- [FBXDM] :: prodigality; + 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; + 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; + 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; + 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; + 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; - proegmenon_N_N = mkN "proegmenon" "proegmeni " neuter ; -- [XXXDS] :: preferable thing; - proeliator_M_N = mkN "proeliator" "proeliatoris " masculine ; -- [DWXDS] :: fighter; combatant; + proegmenon_N_N = mkN "proegmenon" "proegmeni" neuter ; -- [XXXDS] :: preferable thing; + proeliator_M_N = mkN "proeliator" "proeliatoris" masculine ; -- [DWXDS] :: fighter; combatant; proelior_V = mkV "proeliari" ; -- [XXXDX] :: fight; proelium_N_N = mkN "proelium" ; -- [XWXAO] :: battle/fight/bout/conflict/dispute; armed/hostile encounter; bout of strength; profano_V = mkV "profanare" ; -- [XXXDX] :: desecrate, profane; profanus_A = mkA "profanus" "profana" "profanum" ; -- [XXXDX] :: secular, profane; not initiated; impious; profecticius_A = mkA "profecticius" "profecticia" "profecticium" ; -- [DXXEO] :: derived in ordinary course of law from bride's family (dowry); deriving from; - profectio_F_N = mkN "profectio" "profectionis " feminine ; -- [XXXDX] :: departure; + profectio_F_N = mkN "profectio" "profectionis" feminine ; -- [XXXDX] :: departure; profectitius_A = mkA "profectitius" "profectitia" "profectitium" ; -- [DXXES] :: derived in ordinary course of law from bride's family (dowry); deriving from; profecto_Adv = mkAdv "profecto" ; -- [XXXBX] :: surely, certainly; - profectus_M_N = mkN "profectus" "profectus " masculine ; -- [XXXDX] :: progress, success; - profero_V = mkV "proferre" "profero" "protuli" "prolatus " ; -- Comment: [XXXAX] :: bring forward; advance; defer; discover; mention; - professio_F_N = mkN "professio" "professionis " feminine ; -- [GXXEK] :: profession; + profectus_M_N = mkN "profectus" "profectus" masculine ; -- [XXXDX] :: progress, success; + profero_V = mkV "proferre" "profero" "protuli" "prolatus" ; -- Comment: [XXXAX] :: bring forward; advance; defer; discover; mention; + professio_F_N = mkN "professio" "professionis" feminine ; -- [GXXEK] :: profession; 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; + 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; @@ -30561,75 +30554,75 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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; 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; + 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; + profusio_F_N = mkN "profusio" "profusionis" feminine ; -- [XBXCO] :: extravagance, lavish spending; (morbid) discharge of body fluid; libation; profusus_A = mkA "profusus" "profusa" "profusum" ; -- [XXXDX] :: excessive; lavish; extravagant; progagus_M_N = mkN "progagus" ; -- [FXXEN] :: offspring; progener_M_N = mkN "progener" ; -- [XXXES] :: grandson-in-law (Collins); grand-daughter's husband; 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; + 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; + 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; + 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); prohemium_N_N = mkN "prohemium" ; -- [XXXCO] :: preface, introduction, preamble; beginning, prelude; overture (music); prohibeo_V = mkV "prohibere" ; -- [XXXAX] :: hinder, restrain; forbid, prevent; prohibesseo_V = mkV "prohibessere" ; -- [BXXFS] :: hinder, restrain; forbid, prevent; (archaic form of prohibeo); - prohibitio_F_N = mkN "prohibitio" "prohibitionis " feminine ; -- [XLXDO] :: prohibition; prevention, making impossible/unlawful; stopping (a legal action); + 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; + 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); projecticius_A = mkA "projecticius" "projecticia" "projecticium" ; -- [DXXDS] :: cast out; rejected; - projectilis_M_N = mkN "projectilis" "projectilis " masculine ; -- [ESXDX] :: projectile; - projectio_F_N = mkN "projectio" "projectionis " feminine ; -- [XXXDS] :: throwing forward; extension; projection; + projectilis_M_N = mkN "projectilis" "projectilis" masculine ; -- [ESXDX] :: projectile; + 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; + 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; prolecto_V = mkV "prolectare" ; -- [XXXDX] :: lure, entice; - proles_F_N = mkN "proles" "prolis " feminine ; -- [XXXBO] :: offspring, descendant; that springs by birth/descent; generation; race, breed; - proletariatus_M_N = mkN "proletariatus" "proletariatus " masculine ; -- [GXXEK] :: proletariat; + proles_F_N = mkN "proles" "prolis" feminine ; -- [XXXBO] :: offspring, descendant; that springs by birth/descent; generation; race, breed; + 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); 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; + 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; 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; + 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; promachus_M_N = mkN "promachus" ; -- [GXXEK] :: champion; promagister_M_N = mkN "promagister" ; -- [XLXCS] :: deputy magistrate; one who presides in place of another; vice-president; promatertera_F_N = mkN "promatertera" ; -- [XLXES] :: great-grand-aunt; great grandmother's sister; @@ -30638,21 +30631,21 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat promereo_V = mkV "promerere" ; -- [XXXDX] :: deserve, merit; deserve well of; earn; gain; promereor_V = mkV "promereri" ; -- [XXXDX] :: deserve, merit; deserve well of; earn; gain; prominens_A = mkA "prominens" "prominentis"; -- [XXXDX] :: projecting; prominent; - prominens_F_N = mkN "prominens" "prominentis " feminine ; -- [XXXDX] :: projection; + prominens_F_N = mkN "prominens" "prominentis" feminine ; -- [XXXDX] :: projection; prominentia_F_N = mkN "prominentia" ; -- [XXXDX] :: projection; the fact of jutting out/standing out/projecting; promineo_V = mkV "prominere" ; -- [XXXDX] :: jut out, stick up; promiscus_A = mkA "promiscus" "promisca" "promiscum" ; -- [XXXEC] :: mixed, indiscriminate, promiscuous; commonplace, usual; promiscuus_A = mkA "promiscuus" "promiscua" "promiscuum" ; -- [XXXDX] :: common, shared general, indiscriminate; - promissio_F_N = mkN "promissio" "promissionis " feminine ; -- [XXXCO] :: promise; act/instance of promising; guarantee that proof will come (rhetoric); - promissor_M_N = mkN "promissor" "promissoris " masculine ; -- [XLXCO] :: promiser; one who promises/guarantees (usu. legal); + promissio_F_N = mkN "promissio" "promissionis" feminine ; -- [XXXCO] :: promise; act/instance of promising; guarantee that proof will come (rhetoric); + 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; + 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); - promotio_F_N = mkN "promotio" "promotionis " feminine ; -- [FXXEM] :: advance; preferment; furtherance; advantage; + promotio_F_N = mkN "promotio" "promotionis" feminine ; -- [FXXEM] :: advance; preferment; furtherance; advantage; promotum_N_N = mkN "promotum" ; -- [XXXES] :: preferred thing (as pl.); promoveo_V = mkV "promovere" ; -- [XXXDX] :: move forward; promptarium_N_N = mkN "promptarium" ; -- [XXXFS] :: storeroom; cupboard; place where things are stored for ready use; repository; @@ -30662,30 +30655,30 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; 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; + 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); - promulgatio_F_N = mkN "promulgatio" "promulgationis " feminine ; -- [XXXDS] :: proclaiming; promulgation; + promulgatio_F_N = mkN "promulgatio" "promulgationis" feminine ; -- [XXXDS] :: proclaiming; promulgation; promulgo_V = mkV "promulgare" ; -- [XXXDX] :: make known by public proclamation; publish; - promulsis_F_N = mkN "promulsis" "promulsidis " feminine ; -- [XXXEO] :: hors d'oeuvres, dish to stimulate appetite, first dish, entree; + promulsis_F_N = mkN "promulsis" "promulsidis" feminine ; -- [XXXEO] :: hors d'oeuvres, dish to stimulate appetite, first dish, entree; promunctorium_N_N = mkN "promunctorium" ; -- [FXXFM] :: promontory; headland; ridge; promunturium_N_N = mkN "promunturium" ; -- [XXXDX] :: promontory, headland, spur, projecting part of a mountain (into the sea); promus_M_N = mkN "promus" ; -- [XXXDX] :: butler; steward; promutuus_A = mkA "promutuus" "promutua" "promutuum" ; -- [XXXDX] :: advanced, lent in advance; paid beforehand; - pronepos_M_N = mkN "pronepos" "pronepotis " masculine ; -- [XXXDX] :: great grandson; - proneptis_F_N = mkN "proneptis" "proneptis " feminine ; -- [XXXDO] :: great-granddaughter; - pronitas_F_N = mkN "pronitas" "pronitatis " feminine ; -- [DXXFS] :: inclination, propensity, proneness; (dubious); + pronepos_M_N = mkN "pronepos" "pronepotis" masculine ; -- [XXXDX] :: great grandson; + proneptis_F_N = mkN "proneptis" "proneptis" feminine ; -- [XXXDO] :: great-granddaughter; + pronitas_F_N = mkN "pronitas" "pronitatis" feminine ; -- [DXXFS] :: inclination, propensity, proneness; (dubious); pronoea_F_N = mkN "pronoea" ; -- [XXXEC] :: providence; pronuba_F_N = mkN "pronuba" ; -- [XXXDX] :: married woman who conducted the bride to the bridal chamber; - pronuntiatio_F_N = mkN "pronuntiatio" "pronuntiationis " feminine ; -- [XXXDX] :: proclamation; delivery; verdict; - pronuntiator_M_N = mkN "pronuntiator" "pronuntiatoris " masculine ; -- [XXXDS] :: narrator; one who delivers; + pronuntiatio_F_N = mkN "pronuntiatio" "pronuntiationis" feminine ; -- [XXXDX] :: proclamation; delivery; verdict; + pronuntiator_M_N = mkN "pronuntiator" "pronuntiatoris" masculine ; -- [XXXDS] :: narrator; one who delivers; pronuntio_V = mkV "pronuntiare" ; -- [XXXBX] :: announce; proclaim; relate; divulge; recite; utter; pronus_A = mkA "pronus" "prona" "pronum" ; -- [XXXBX] :: leaning forward; prone; prooemior_V = mkV "prooemiari" ; -- [XXXFO] :: make a prooemium/preface/introduction to a speech; prooemium_N_N = mkN "prooemium" ; -- [XXXCO] :: preface, introduction, preamble; beginning, prelude; overture (music); propaganda_F_N = mkN "propaganda" ; -- [GXXEK] :: propaganda; - propagatio_F_N = mkN "propagatio" "propagationis " feminine ; -- [XXXDX] :: propagation; reproduction (human); prolongation; the action of extending; - propago_F_N = mkN "propago" "propaginis " feminine ; -- [XXXDX] :: layer or set by which a plant is propagated; offspring, children, race, breed; + propagatio_F_N = mkN "propagatio" "propagationis" feminine ; -- [XXXDX] :: propagation; reproduction (human); prolongation; the action of extending; + propago_F_N = mkN "propago" "propaginis" feminine ; -- [XXXDX] :: layer or set by which a plant is propagated; offspring, children, race, breed; propago_V = mkV "propagare" ; -- [XXXDX] :: propagate; extend, enlarge, increase; propalam_Adv = mkAdv "propalam" ; -- [XXXDX] :: openly; propalo_V = mkV "propalare" ; -- [XXXDX] :: stake out (like a plant); make visible/manifest; @@ -30693,92 +30686,92 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; - propensio_F_N = mkN "propensio" "propensionis " feminine ; -- [XXXEC] :: inclination, propensity; consideration (Latham); + propensio_F_N = mkN "propensio" "propensionis" feminine ; -- [XXXEC] :: inclination, propensity; consideration (Latham); propensus_A = mkA "propensus" "propensa" "propensum" ; -- [XXXDX] :: ready, eager, willing; favorably disposed; properanter_Adv =mkAdv "properanter" "properantius" "properantissime" ; -- [XXXDO] :: hurriedly, hastily; in a hurried manner; speedily; properantia_F_N = mkN "properantia" ; -- [XXXEO] :: haste, hurry; precipitancy; properantim_Adv = mkAdv "properantim" ; -- [XXXEO] :: hurriedly, hastily; - properatio_F_N = mkN "properatio" "properationis " feminine ; -- [XXXES] :: haste; + properatio_F_N = mkN "properatio" "properationis" feminine ; -- [XXXES] :: haste; properipes_A = mkA "properipes" "properipedis"; -- [XXXDS] :: fleet-footed; propero_V = mkV "properare" ; -- [XXXAX] :: hurry, speed up; be quick; properus_A = mkA "properus" "propera" "properum" ; -- [XXXDX] :: quick, speedy; propexus_A = mkA "propexus" "propexa" "propexum" ; -- [XXXDX] :: combed so as to hang down; propheta_M_N = mkN "propheta" ; -- [XEXBO] :: prophet; spokesman/interpreter of a god; foreteller, soothsayer (L+S); - prophetes_M_N = mkN "prophetes" "prophetae " masculine ; -- [DEXCS] :: prophet; spokesman/interpreter of a god; foreteller, soothsayer (L+S); + prophetes_M_N = mkN "prophetes" "prophetae" masculine ; -- [DEXCS] :: prophet; spokesman/interpreter of a god; foreteller, soothsayer (L+S); prophetia_F_N = mkN "prophetia" ; -- [DEXCS] :: prophecy; prediction; body of prophets/singers; prophetizo_V2 = mkV2 (mkV "prophetizare") ; -- [EEXES] :: prophesy, foretell, predict; propheto_V = mkV "prophetare" ; -- [EEXCS] :: prophesy, foretell, predict; prophylacticus_A = mkA "prophylacticus" "prophylactica" "prophylacticum" ; -- [GXXEK] :: prophylactic; propie_Adv = mkAdv "propie" ; -- [EXXEP] :: individually; according to species; - propinatio_F_N = mkN "propinatio" "propinationis " feminine ; -- [XXXDX] :: toasting, a drinking to a person's health; proposal of a toast; + propinatio_F_N = mkN "propinatio" "propinationis" feminine ; -- [XXXDX] :: toasting, a drinking to a person's health; proposal of a toast; propino_V = mkV "propinare" ; -- [XXXDX] :: drink to anyone (his health), pledge; give to drink; hand over, yield up; make; - propinquitas_F_N = mkN "propinquitas" "propinquitatis " feminine ; -- [XXXDX] :: nearness, vicinity; propinquity; relationship; + propinquitas_F_N = mkN "propinquitas" "propinquitatis" feminine ; -- [XXXDX] :: nearness, vicinity; propinquity; relationship; propinquo_V = mkV "propinquare" ; -- [XXXDX] :: bring near; draw near; propinquus_A = mkA "propinquus" "propinqua" "propinquum" ; -- [XXXBX] :: near, neighboring; propinquus_M_N = mkN "propinquus" ; -- [XXXDX] :: relative; propior_A = mkA "propior" "propior" "propius" ; -- [XXXAO] :: nearer, closer; more recent; propitabilis_A = mkA "propitabilis" "propitabilis" "propitabile" ; -- [XXXEO] :: able to be propitiated/appeased; - propitiatio_F_N = mkN "propitiatio" "propitiationis " feminine ; -- [DEXDS] :: atonement, propitiation, appeasement; - propitiator_M_N = mkN "propitiator" "propitiatoris " masculine ; -- [DEXES] :: atoner, propitiator; (often Christ in eccl.); + propitiatio_F_N = mkN "propitiatio" "propitiationis" feminine ; -- [DEXDS] :: atonement, propitiation, appeasement; + propitiator_M_N = mkN "propitiator" "propitiatoris" masculine ; -- [DEXES] :: atoner, propitiator; (often Christ in eccl.); propitiatorium_N_N = mkN "propitiatorium" ; -- [DEXDS] :: atonement; means of reconciliation; place of atonement; propitiatorius_A = mkA "propitiatorius" "propitiatoria" "propitiatorium" ; -- [DEXES] :: propitiating, reconciling; atoning; propitio_V2 = mkV2 (mkV "propitiare") ; -- [XXXCO] :: propitiate, render favorable, win over; sooth (feelings); 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; + 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); + 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; - proportionalitas_F_N = mkN "proportionalitas" "proportionalitatis " feminine ; -- [DXXFS] :: proportion; proportionality; - propositio_F_N = mkN "propositio" "propositionis " feminine ; -- [EEQEP] :: shew; [w/pane => shew-bread, 12 loaves placed on altar before Lord on Sabbath]; + proportionalitas_F_N = mkN "proportionalitas" "proportionalitatis" feminine ; -- [DXXFS] :: proportion; proportionality; + propositio_F_N = mkN "propositio" "propositionis" feminine ; -- [EEQEP] :: shew; [w/pane => shew-bread, 12 loaves placed on altar before Lord on Sabbath]; propositum_N_N = mkN "propositum" ; -- [XXXBO] :: |mode/manner/way of life/conduct, practice; proposition; decree; issued summons; - propraetor_M_N = mkN "propraetor" "propraetoris " masculine ; -- [XXXDX] :: ex-praetor; one sent to govern a province as praetor; + propraetor_M_N = mkN "propraetor" "propraetoris" masculine ; -- [XXXDX] :: ex-praetor; one sent to govern a province as praetor; proprie_Adv = mkAdv "proprie" ; -- [XXXDX] :: particularly, specifically, especially; properly, appropriately, rightly; - proprietas_F_N = mkN "proprietas" "proprietatis " feminine ; -- [XXXDX] :: quality; special character; ownership; + 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; + 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; + 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; + 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; + 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; + 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; + 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; + 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; + 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; @@ -30787,56 +30780,56 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - 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; + 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); + 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; prosopopoeia_F_N = mkN "prosopopoeia" ; -- [XDXES] :: personification; dramatization; prospecto_V = mkV "prospectare" ; -- [XXXDX] :: gaze out (at); look out on; - prospectus_M_N = mkN "prospectus" "prospectus " masculine ; -- [XXXDX] :: view, sight; + prospectus_M_N = mkN "prospectus" "prospectus" masculine ; -- [XXXDX] :: view, sight; prospeculor_V = mkV "prospeculari" ; -- [XXXDX] :: look out, survey the situation; look out/watch for; prosper_A = mkA "prosper" "prospera" "prosperum" ; -- [XXXEC] :: fortunate, favorable, lucky, prosperous; - prosperitas_F_N = mkN "prosperitas" "prosperitatis " feminine ; -- [XXXDX] :: success; good fortune; + prosperitas_F_N = mkN "prosperitas" "prosperitatis" feminine ; -- [XXXDX] :: success; good fortune; prospero_V = mkV "prosperare" ; -- [XXXDX] :: cause to succeed, further; 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); + 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; + 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; + 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; 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); + 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; + 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; + 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; + proteruitas_F_N = mkN "proteruitas" "proteruitatis" feminine ; -- [XXXES] :: impudence; boldness; protervus_A = mkA "protervus" "proterva" "protervum" ; -- [XXXDX] :: violent, reckless; impudent, shameless; - protestans_M_N = mkN "protestans" "protestantis " masculine ; -- [FEXEK] :: Protestant; + protestans_M_N = mkN "protestans" "protestantis" masculine ; -- [FEXEK] :: Protestant; protestantismus_M_N = mkN "protestantismus" ; -- [GEXEK] :: Protestantism; - protestatio_F_N = mkN "protestatio" "protestationis " feminine ; -- [EXXES] :: declaration; protestation; + protestatio_F_N = mkN "protestatio" "protestationis" feminine ; -- [EXXES] :: declaration; protestation; protesto_V2 = mkV2 (mkV "protestare") ; -- [XXXFS] :: testify, testify publicly, bear witness to; protest (L+S); assert (Bee); protestor_V = mkV "protestari" ; -- [XXXDO] :: testify, testify publicly, bear witness to; protest (L+S); assert (Bee); - prothesis_F_N = mkN "prothesis" "prothesis " feminine ; -- [GXXEK] :: prosthesis; + prothesis_F_N = mkN "prothesis" "prothesis" feminine ; -- [GXXEK] :: prosthesis; prothonotarius_M_N = mkN "prothonotarius" ; -- [FXXDM] :: protonotary, chief court notary/clerk/recorder; E:secretary/record keeper; prothoplastus_M_N = mkN "prothoplastus" ; -- [FXXDM] :: first created man; (the very first man); prothyrum_N_N = mkN "prothyrum" ; -- [XXXFS] :: |space-before-door; door wicket; @@ -30844,22 +30837,22 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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 = mkConj "prout" missing ; -- [XXXBX] :: as, just as; exactly as; - provectio_F_N = mkN "provectio" "provectionis " feminine ; -- [FXXEM] :: promotion, progress; + 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; + 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; proverbium_N_N = mkN "proverbium" ; -- [XXXDX] :: proverb, saying; @@ -30868,21 +30861,21 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat providus_A = mkA "providus" "provida" "providum" ; -- [XXXDX] :: prophetic; provident, characterized by forethought; 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; + 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; + 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; proximior_A = mkA "proximior" "proximior" "proximius" ; -- [FXXDM] :: nearer, closer; more recent; - proximitas_F_N = mkN "proximitas" "proximitatis " feminine ; -- [XXXDX] :: near relationship; resemblance; similarity; + proximitas_F_N = mkN "proximitas" "proximitatis" feminine ; -- [XXXDX] :: near relationship; resemblance; similarity; proximo_Adv = mkAdv "proximo" ; -- [XXXFS] :: very lately; proximo_V = mkV "proximare" ; -- [DXXCS] :: come/draw near, approach; be near; proximus_A = mkA "proximus" "proxima" "proximum" ; -- [XXXAO] :: nearest/closest/next; most recent, immediately preceding, last; most/very like; @@ -30898,9 +30891,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat prunitius_A = mkA "prunitius" "prunitia" "prunitium" ; -- [XXXEC] :: of plum tree wood; prunum_N_N = mkN "prunum" ; -- [XXXDX] :: plum; prunus_F_N = mkN "prunus" ; -- [XAXEC] :: plum tree; - prurigo_F_N = mkN "prurigo" "pruriginis " feminine ; -- [XXXEC] :: itch; + prurigo_F_N = mkN "prurigo" "pruriginis" feminine ; -- [XXXEC] :: itch; 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; + pruritus_M_N = mkN "pruritus" "pruritus" masculine ; -- [XBXFS] :: itching; prytaneum_N_N = mkN "prytaneum" ; -- [XXXEC] :: town hall in a Greek city; 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; @@ -30909,10 +30902,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; psalterium_N_N = mkN "psalterium" ; -- [XXXEC] :: stringed instrument; - psaltes_M_N = mkN "psaltes" "psaltae " masculine ; -- [XDXDS] :: musician, minstrel; player on a plucked instrument/cithara; + psaltes_M_N = mkN "psaltes" "psaltae" masculine ; -- [XDXDS] :: musician, minstrel; player on a plucked instrument/cithara; psaltria_F_N = mkN "psaltria" ; -- [XXXDX] :: female player on the cithara; - psecas_F_N = mkN "psecas" "psecadis " feminine ; -- [XXXEC] :: anointer of hair; - psephisma_N_N = mkN "psephisma" "psephismatis " neuter ; -- [DLXES] :: plebiscite; People's decree/order, order of the People (Pliny); + psecas_F_N = mkN "psecas" "psecadis" feminine ; -- [XXXEC] :: anointer of hair; + psephisma_N_N = mkN "psephisma" "psephismatis" neuter ; -- [DLXES] :: plebiscite; People's decree/order, order of the People (Pliny); pseudapostulus_M_N = mkN "pseudapostulus" ; -- [XEXES] :: false apostle; pseudochristus_M_N = mkN "pseudochristus" ; -- [DEXFS] :: false-Christ; pseudodictamnum_N_N = mkN "pseudodictamnum" ; -- [XXXFS] :: bastard-dittany (Pliny); @@ -30928,7 +30921,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat psychiater_M_N = mkN "psychiater" ; -- [GBXEK] :: psychiatrist; psychiatria_F_N = mkN "psychiatria" ; -- [GBXEK] :: psychiatry; psychicus_A = mkA "psychicus" "psychica" "psychicum" ; -- [XEXES] :: animal; carnal; psychic (Cal); - psychoanalysis_F_N = mkN "psychoanalysis" "psychoanalysis " feminine ; -- [GBXEK] :: psychoanalysis; + psychoanalysis_F_N = mkN "psychoanalysis" "psychoanalysis" feminine ; -- [GBXEK] :: psychoanalysis; psychoanalysta_M_N = mkN "psychoanalysta" ; -- [GBXEK] :: psychoanalyst; psychoanalyticus_A = mkA "psychoanalyticus" "psychoanalytica" "psychoanalyticum" ; -- [GBXEK] :: psychoanalytical; psychologia_F_N = mkN "psychologia" ; -- [GBXEK] :: psychology; @@ -30939,14 +30932,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat psychomotorius_A = mkA "psychomotorius" "psychomotoria" "psychomotorium" ; -- [GBXEK] :: psychomotor; psychopathicus_M_N = mkN "psychopathicus" ; -- [GBXEK] :: psychopath; psychopathologia_F_N = mkN "psychopathologia" ; -- [GBXEK] :: psychopathology; - psychosis_F_N = mkN "psychosis" "psychosis " feminine ; -- [GBXEK] :: psychosis; + psychosis_F_N = mkN "psychosis" "psychosis" feminine ; -- [GBXEK] :: psychosis; psychosomaticus_A = mkA "psychosomaticus" "psychosomatica" "psychosomaticum" ; -- [GBXEK] :: psychosomatic; psychotherapeuta_M_N = mkN "psychotherapeuta" ; -- [GBXEK] :: psychotherapist; psychotherapia_F_N = mkN "psychotherapia" ; -- [GBXEK] :: psychotherapy; psychotropicum_N_N = mkN "psychotropicum" ; -- [GBXEK] :: drug; psychotropicus_A = mkA "psychotropicus" "psychotropica" "psychotropicum" ; -- [GBXEK] :: psychotropic; psylleum_N_N = mkN "psylleum" ; -- [XAXEO] :: plant; (prob. Plantago psyllium); - psyllion_N_N = mkN "psyllion" "psyllii " neuter ; -- [XAXEO] :: plant; (prob. Plantago psyllium); + psyllion_N_N = mkN "psyllion" "psyllii" neuter ; -- [XAXEO] :: plant; (prob. Plantago psyllium); psyllium_N_N = mkN "psyllium" ; -- [XAXEO] :: plant; (prob. Plantago psyllium); psythia_F_N = mkN "psythia" ; -- [XAXDS] :: phythian, a variety of grape; psythium_N_N = mkN "psythium" ; -- [XAXDS] :: phythian, a kind of raisin wine; @@ -30957,13 +30950,13 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat ptochium_N_N = mkN "ptochium" ; -- [ELXFS] :: poor-house; (also ptocheum); ptongus_M_N = mkN "ptongus" ; -- [FDXES] :: sound; tone; pubens_A = mkA "pubens" "pubentis"; -- [XXXDX] :: full of sap, vigorous; - pubertas_F_N = mkN "pubertas" "pubertatis " feminine ; -- [XXXDX] :: puberty; virility; + 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; + pubes_F_N = mkN "pubes" "pubis" feminine ; -- [XXXDX] :: manpower, adult population; private/pubic parts/hair; age/condition of puberty; 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); + publicatio_F_N = mkN "publicatio" "publicationis" feminine ; -- [XXXDO] :: publication, proclamation; disclosure; manifestation (Def); preaching (Latham); publice_Adv = mkAdv "publice" ; -- [XXXDX] :: publicly; at public expense; publicitus_Adv = mkAdv "publicitus" ; -- [XXXCO] :: at public expense; publicly, in public (presence/knowledge); as a state concern; publico_Adv = mkAdv "publico" ; -- [XXXDX] :: public, publicly (in publico); @@ -30978,7 +30971,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat pudibundus_A = mkA "pudibundus" "pudibunda" "pudibundum" ; -- [XXXDX] :: shamefaced, blushing; pudicitia_F_N = mkN "pudicitia" ; -- [XXXBX] :: chastity; modesty; purity; pudicus_A = mkA "pudicus" "pudica" "pudicum" ; -- [XXXBX] :: chaste, modest; virtuous; pure; - pudor_M_N = mkN "pudor" "pudoris " masculine ; -- [XXXAX] :: decency, shame; sense of honor; modesty; bashfulness; + pudor_M_N = mkN "pudor" "pudoris" masculine ; -- [XXXAX] :: decency, shame; sense of honor; modesty; bashfulness; puella_F_N = mkN "puella" ; -- [XXXBO] :: girl, (female) child/daughter; maiden; young woman/wife; sweetheart; slavegirl; puellaris_A = mkA "puellaris" "puellaris" "puellare" ; -- [XXXDX] :: girlish; youthful; maidenly; of a young girl; puellula_F_N = mkN "puellula" ; -- [XXXEO] :: girl (young/little), lass, (female) child; maiden; @@ -30994,23 +30987,23 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat puertia_F_N = mkN "puertia" ; -- [XXXCO] :: childhood, boyhood; callowness, childish nature; state/fact of being boy; puerulus_M_N = mkN "puerulus" ; -- [XXXBX] :: little boy; puga_F_N = mkN "puga" ; -- [XBXEO] :: rump, buttocks; (usu. pl.); (pure Latin nates); - pugil_M_N = mkN "pugil" "pugilis " masculine ; -- [XXXDX] :: boxer, pugilist; - pugilatio_F_N = mkN "pugilatio" "pugilationis " feminine ; -- [XXXEC] :: fighting with the caestus; boxing; - pugilator_M_N = mkN "pugilator" "pugilatoris " masculine ; -- [GXXEK] :: boxer; - pugilatus_M_N = mkN "pugilatus" "pugilatus " masculine ; -- [GXXEK] :: boxing; - pugillare_N_N = mkN "pugillare" "pugillaris " neuter ; -- [XXXDO] :: writing-tablets (pl.); (those small enough to be held in the hand); + pugil_M_N = mkN "pugil" "pugilis" masculine ; -- [XXXDX] :: boxer, pugilist; + pugilatio_F_N = mkN "pugilatio" "pugilationis" feminine ; -- [XXXEC] :: fighting with the caestus; boxing; + pugilator_M_N = mkN "pugilator" "pugilatoris" masculine ; -- [GXXEK] :: boxer; + pugilatus_M_N = mkN "pugilatus" "pugilatus" masculine ; -- [GXXEK] :: boxing; + pugillare_N_N = mkN "pugillare" "pugillaris" neuter ; -- [XXXDO] :: writing-tablets (pl.); (those small enough to be held in the hand); pugillaris_A = mkA "pugillaris" "pugillaris" "pugillare" ; -- [XXXDS] :: hand-holdable; that can be held in hand; - pugillaris_M_N = mkN "pugillaris" "pugillaris " masculine ; -- [XXXDO] :: writing-tablets (pl.); (those small enough to be held in the hand); + pugillaris_M_N = mkN "pugillaris" "pugillaris" masculine ; -- [XXXDO] :: writing-tablets (pl.); (those small enough to be held in the hand); pugillatorius_A = mkA "pugillatorius" "pugillatoria" "pugillatorium" ; -- [XXXFS] :: fistable; can be struck with the fist; pugillus_M_N = mkN "pugillus" ; -- [XXXEO] :: handful, what can be held in a fist; pugilo_V = mkV "pugilare" ; -- [GXXEK] :: box; pugilus_M_N = mkN "pugilus" ; -- [XXXEO] :: handful, a amount that can be held in the hand/fist; - pugio_M_N = mkN "pugio" "pugionis " masculine ; -- [XWXDX] :: dagger; + pugio_M_N = mkN "pugio" "pugionis" masculine ; -- [XWXDX] :: dagger; pugiunculus_M_N = mkN "pugiunculus" ; -- [XWXEC] :: little dagger; pugna_F_N = mkN "pugna" ; -- [XWXAX] :: battle, fight; - pugnacitas_F_N = mkN "pugnacitas" "pugnacitatis " feminine ; -- [DXXES] :: bellicosity, aggressiveness; desire to fight; pugnacity; aggression; + pugnacitas_F_N = mkN "pugnacitas" "pugnacitatis" feminine ; -- [DXXES] :: bellicosity, aggressiveness; desire to fight; pugnacity; aggression; pugnaculum_N_N = mkN "pugnaculum" ; -- [XWXEC] :: fortress; - pugnator_M_N = mkN "pugnator" "pugnatoris " masculine ; -- [XWXDX] :: fighter, combatant; + pugnator_M_N = mkN "pugnator" "pugnatoris" masculine ; -- [XWXDX] :: fighter, combatant; pugnax_A = mkA "pugnax" "pugnacis"; -- [XXXDX] :: pugnacious; pugneus_A = mkA "pugneus" "pugnea" "pugneum" ; -- [BXXFS] :: of the fist; pugno_V = mkV "pugnare" ; -- [XWXAX] :: fight; dispute; [pugnatum est => the battle raged]; @@ -31020,13 +31013,13 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + pulcritudo_F_N = mkN "pulcritudo" "pulcritudinis" feminine ; -- [XXXDX] :: beauty, attractiveness; pulegium_N_N = mkN "pulegium" ; -- [XAXEC] :: fleabane, penny-royal; puleium_N_N = mkN "puleium" ; -- [XAXEC] :: fleabane, penny-royal; pulenta_F_N = mkN "pulenta" ; -- [XAXCO] :: barley-meal/groats; hulled and crushed grain; parched grain (Douay); - pulex_M_N = mkN "pulex" "pulicis " masculine ; -- [XXXDX] :: flea; insect that attacks plants; + pulex_M_N = mkN "pulex" "pulicis" masculine ; -- [XXXDX] :: flea; insect that attacks plants; pulicaris_A = mkA "pulicaris" "pulicaris" "pulicare" ; -- [EXXFS] :: flea-; flea-bearing; pulicarius_A = mkA "pulicarius" "pulicaria" "pulicarium" ; -- [EXXFS] :: flea-; flea-bearing; pullarius_M_N = mkN "pullarius" ; -- [XXXDX] :: keeper of the sacred chickens; @@ -31037,60 +31030,60 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat pullus_M_N = mkN "pullus" ; -- [XXXDX] :: chicken, young hen; pulmentarium_N_N = mkN "pulmentarium" ; -- [XXXEC] :: relish; pulmentum_N_N = mkN "pulmentum" ; -- [XXXCO] :: appetizer, small meat/fish starter portion; savory; relish/condiment/food (L+S); - pulmo_M_N = mkN "pulmo" "pulmonis " masculine ; -- [XBXCO] :: lungs (sg. or pl.); [~ marinus => lung-like marine creature, kind of jellyfish]; + pulmo_M_N = mkN "pulmo" "pulmonis" masculine ; -- [XBXCO] :: lungs (sg. or pl.); [~ marinus => lung-like marine creature, kind of jellyfish]; pulmoneus_A = mkA "pulmoneus" "pulmonea" "pulmoneum" ; -- [XXXDS] :: of the lungs; spongy; pulpa_F_N = mkN "pulpa" ; -- [XXXEC] :: flesh; pulpamentum_N_N = mkN "pulpamentum" ; -- [XXXEC] :: flesh, esp. tit-bits; pulpitum_N_N = mkN "pulpitum" ; -- [XXXCO] :: stage, wooden platform (for performance); lectern/pulpit/bookstand; desk (Cal); - puls_F_N = mkN "puls" "pultis " feminine ; -- [XXXDX] :: meal, porridge, mush (used in sacrifice and given to sacred chickens); + puls_F_N = mkN "puls" "pultis" feminine ; -- [XXXDX] :: meal, porridge, mush (used in sacrifice and given to sacred chickens); pulsabulum_N_N = mkN "pulsabulum" ; -- [FXXEK] :: buffer; pulsatilis_A = mkA "pulsatilis" "pulsatilis" "pulsatile" ; -- [GXXET] :: produced by beating; (Erasmus); - pulsatio_F_N = mkN "pulsatio" "pulsationis " feminine ; -- [XXXDS] :: striking; beating; D:playing; + pulsatio_F_N = mkN "pulsatio" "pulsationis" feminine ; -- [XXXDS] :: striking; beating; D:playing; pulso_V = mkV "pulsare" ; -- [XXXAX] :: beat; pulsate; - pulsus_M_N = mkN "pulsus" "pulsus " masculine ; -- [XXXDX] :: stroke; beat; pulse; impulse; + pulsus_M_N = mkN "pulsus" "pulsus" masculine ; -- [XXXDX] :: stroke; beat; pulse; impulse; pultiphagus_M_N = mkN "pultiphagus" ; -- [XXXDS] :: porridge-eater; pulto_V2 = mkV2 (mkV "pultare") ; -- [XXXEC] :: knock, strike; pulvereus_A = mkA "pulvereus" "pulverea" "pulvereum" ; -- [XXXDX] :: dusty; pulverizo_V = mkV "pulverizare" ; -- [GXXEK] :: pulverize; pulverulentus_A = mkA "pulverulentus" "pulverulenta" "pulverulentum" ; -- [XXXDX] :: dusty; pulvillus_M_N = mkN "pulvillus" ; -- [XXXEC] :: little pillow; - pulvinar_N_N = mkN "pulvinar" "pulvinaris " neuter ; -- [XXXCO] :: cushioned couch (on which images of the gods were placed); couch for deity; + pulvinar_N_N = mkN "pulvinar" "pulvinaris" neuter ; -- [XXXCO] :: cushioned couch (on which images of the gods were placed); couch for deity; pulvinatus_A = mkA "pulvinatus" "pulvinata" "pulvinatum" ; -- [XXXFS] :: cushion-shaped; B:swelling; pulvinus_M_N = mkN "pulvinus" ; -- [XXXBO] :: cushion/pillow; raised bed of earth; raised border; bath back; platform/socket; - pulvis_M_N = mkN "pulvis" "pulveris " masculine ; -- [XXXBX] :: dust, powder; sand; + pulvis_M_N = mkN "pulvis" "pulveris" masculine ; -- [XXXBX] :: dust, powder; sand; pulvisculus_M_N = mkN "pulvisculus" ; -- [XXXES] :: fine dust; dust-and-all; - pumex_M_N = mkN "pumex" "pumicis " masculine ; -- [XXXCO] :: pumice stone, similar volcanic rock; (esp. used to polish books/depilatory); + 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); 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; + 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; punctatus_A = mkA "punctatus" "punctata" "punctatum" ; -- [GXXEK] :: punctuated; pointed; punctim_Adv = mkAdv "punctim" ; -- [XXXDX] :: with the point; - punctio_F_N = mkN "punctio" "punctionis " feminine ; -- [XBXDS] :: puncture; pricking pain; + 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; + 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); + 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; pupilla_F_N = mkN "pupilla" ; -- [XBXEC] :: pupil of the eye; pupillaris_A = mkA "pupillaris" "pupillaris" "pupillare" ; -- [XLXCO] :: of a ward/orphan; of/involving/suitable to minor under care of a guardian; pupillus_M_N = mkN "pupillus" ; -- [XXXDX] :: orphan, ward; puplicus_A = mkA "puplicus" "puplica" "puplicum" ; -- [XXXES] :: public; (publicus); - puppis_F_N = mkN "puppis" "puppis " feminine ; -- [XXXBO] :: stern/aft (of ship); poop; ship; back (L+S); [a ~ => abaft]; + puppis_F_N = mkN "puppis" "puppis" feminine ; -- [XXXBO] :: stern/aft (of ship); poop; ship; back (L+S); [a ~ => abaft]; pupula_F_N = mkN "pupula" ; -- [XXXDX] :: pupil of the eye; pupulus_M_N = mkN "pupulus" ; -- [XXXDS] :: little boy; puppet; - purgamen_N_N = mkN "purgamen" "purgaminis " neuter ; -- [XXXDX] :: impurity, that which is cleaned away; means of purification, which cleans; + purgamen_N_N = mkN "purgamen" "purgaminis" neuter ; -- [XXXDX] :: impurity, that which is cleaned away; means of purification, which cleans; purgamentum_N_N = mkN "purgamentum" ; -- [XXXEC] :: sweepings, rubbish, filth; - purgatio_F_N = mkN "purgatio" "purgationis " feminine ; -- [XXXDX] :: purification; + purgatio_F_N = mkN "purgatio" "purgationis" feminine ; -- [XXXDX] :: purification; purgatorium_N_N = mkN "purgatorium" ; -- [GEXEK] :: purgatory; purgo_V = mkV "purgare" ; -- [XXXBX] :: make clean, cleanse; excuse; - purificatio_F_N = mkN "purificatio" "purificationis " feminine ; -- [XXXEO] :: purification, purifying; making (something) ritually clean; + purificatio_F_N = mkN "purificatio" "purificationis" feminine ; -- [XXXEO] :: purification, purifying; making (something) ritually clean; purifico_V2 = mkV2 (mkV "purificare") ; -- [XXXCO] :: purify/make ceremonially/ritually pure; clean/clear; free of dirt/encumbrances; purismus_M_N = mkN "purismus" ; -- [GXXEK] :: purism; purista_M_N = mkN "purista" ; -- [GXXEK] :: purist; @@ -31104,25 +31097,25 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat purulentus_A = mkA "purulentus" "purulenta" "purulentum" ; -- [XBXES] :: festering; purulent; purum_N_N = mkN "purum" ; -- [XPXES] :: clear/bright/unclouded sky; 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); + 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; - pusillanimitas_F_N = mkN "pusillanimitas" "pusillanimitatis " feminine ; -- [EXXES] :: faintheartedness, timidity, cowardness, lack of courage; despondency; + pusillanimitas_F_N = mkN "pusillanimitas" "pusillanimitatis" feminine ; -- [EXXES] :: faintheartedness, timidity, cowardness, lack of courage; despondency; pusillanimus_A = mkA "pusillanimus" "pusillanima" "pusillanimum" ; -- [DXXFP] :: fainthearted, timid, pusillanimous; discouraged/worried (Souter); meanspirited; pusillianimis_A = mkA "pusillianimis" "pusillianimis" "pusillianime" ; -- [EXXEP] :: fainthearted, timid, pusillanimous; discouraged/worried (Souter); meanspirited; - pusillitas_F_N = mkN "pusillitas" "pusillitatis " feminine ; -- [XXXFO] :: tininess/insignificance; pettiness (Souter); trifling thing; faintheartedness; + 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; 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; + 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; pusula_F_N = mkN "pusula" ; -- [XBXCO] :: inflamed sore/blister/pustule; small prominence of a surface, bubble; pusus_M_N = mkN "pusus" ; -- [XXXFO] :: boy; little boy (L+S); - putamen_N_N = mkN "putamen" "putaminis " neuter ; -- [XXXEC] :: cutting, paring, shell; - putatio_F_N = mkN "putatio" "putationis " feminine ; -- [XAXEZ] :: pruning (Collins); - putator_M_N = mkN "putator" "putatoris " masculine ; -- [XXXDX] :: pruner; - puteal_N_N = mkN "puteal" "putealis " neuter ; -- [XXXDX] :: structure surrounding the mouth of a well (in the Comitium at Rome); + putamen_N_N = mkN "putamen" "putaminis" neuter ; -- [XXXEC] :: cutting, paring, shell; + putatio_F_N = mkN "putatio" "putationis" feminine ; -- [XAXEZ] :: pruning (Collins); + putator_M_N = mkN "putator" "putatoris" masculine ; -- [XXXDX] :: pruner; + puteal_N_N = mkN "puteal" "putealis" neuter ; -- [XXXDX] :: structure surrounding the mouth of a well (in the Comitium at Rome); 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; @@ -31133,23 +31126,23 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; 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; + pyctes_M_N = mkN "pyctes" "pyctae" masculine ; -- [XXXDS] :: boxer; pyelus_M_N = mkN "pyelus" ; -- [FXXEK] :: tub; pyga_F_N = mkN "pyga" ; -- [XBXES] :: rump, buttocks; (usu. pl.); (pure Latin nates); - pygargos_M_N = mkN "pygargos" "pygargi " masculine ; -- [XAXEW] :: creature with white rump, pygarg; kind of antelope (addax?); kind of eagle/hawk; + pygargos_M_N = mkN "pygargos" "pygargi" masculine ; -- [XAXEW] :: creature with white rump, pygarg; kind of antelope (addax?); kind of eagle/hawk; 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; @@ -31157,7 +31150,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; @@ -31165,22 +31158,22 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + pyrrhice_F_N = mkN "pyrrhice" "pyrrhices" feminine ; -- [XWXCO] :: kind of war-dance or reel; dance in armor (L+S); Pyrrhic dance; pyrrhicha_F_N = mkN "pyrrhicha" ; -- [XWXCO] :: kind of war-dance or reel; dance in armor (L+S); Pyrrhic dance; - pyrrhiche_F_N = mkN "pyrrhiche" "pyrrhiches " feminine ; -- [XWXCO] :: kind of war-dance or reel; dance in armor (L+S); Pyrrhic dance; + pyrrhiche_F_N = mkN "pyrrhiche" "pyrrhiches" feminine ; -- [XWXCO] :: kind of war-dance or reel; dance in armor (L+S); Pyrrhic dance; pyrrhichius_A = mkA "pyrrhichius" "pyrrhichia" "pyrrhichium" ; -- [DPXES] :: pyrrhic, poetical foot of two short syllables; pyrrica_F_N = mkN "pyrrica" ; -- [XWXCO] :: kind of war-dance or reel; dance in armor (L+S); Pyrrhic dance; - pyrrice_F_N = mkN "pyrrice" "pyrrices " feminine ; -- [XWXCO] :: kind of war-dance or reel; dance in armor (L+S); Pyrrhic dance; + pyrrice_F_N = mkN "pyrrice" "pyrrices" feminine ; -- [XWXCO] :: kind of war-dance or reel; dance in armor (L+S); Pyrrhic dance; pyrricha_F_N = mkN "pyrricha" ; -- [XWXCO] :: kind of war-dance or reel; dance in armor (L+S); Pyrrhic dance; - pyrriche_F_N = mkN "pyrriche" "pyrriches " feminine ; -- [XWXCO] :: kind of war-dance or reel; dance in armor (L+S); Pyrrhic dance; + pyrriche_F_N = mkN "pyrriche" "pyrriches" feminine ; -- [XWXCO] :: kind of war-dance or reel; dance in armor (L+S); Pyrrhic dance; pyrricius_A = mkA "pyrricius" "pyrricia" "pyrricium" ; -- [DPXES] :: pyrrhic, poetical foot of two short syllables; pythonicus_A = mkA "pythonicus" "pythonica" "pythonicum" ; -- [EEXES] :: prophetic; magical; 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; + 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); + pyxis_F_N = mkN "pyxis" "pyxidis" feminine ; -- [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; @@ -31193,8 +31186,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat quadrangulatus_A = mkA "quadrangulatus" "quadrangulata" "quadrangulatum" ; -- [DSXDS] :: quadrangular, having four sides; quadrangulum_N_N = mkN "quadrangulum" ; -- [DSXES] :: quadrangle, plane figure having four sides; quadrangulus_A = mkA "quadrangulus" "quadrangula" "quadrangulum" ; -- [XSXDO] :: quadrangular, having four sides; - quadrans_M_N = mkN "quadrans" "quadrantis " masculine ; -- [XXXDX] :: fourth part, a quarter; 1/4 as, small coin, "farthing"; - quadrantal_N_N = mkN "quadrantal" "quadrantalis " neuter ; -- [XSXCO] :: unit of liquid measure having volume a cubic Roman foot, amphora; cube/di; + quadrans_M_N = mkN "quadrans" "quadrantis" masculine ; -- [XXXDX] :: fourth part, a quarter; 1/4 as, small coin, "farthing"; + quadrantal_N_N = mkN "quadrantal" "quadrantalis" neuter ; -- [XSXCO] :: unit of liquid measure having volume a cubic Roman foot, amphora; cube/di; quadrantalis_A = mkA "quadrantalis" "quadrantalis" "quadrantale" ; -- [XSXNO] :: quarter-foot, measuring quarter of Roman foot; quadrantarius_A = mkA "quadrantarius" "quadrantaria" "quadrantarium" ; -- [XXXDO] :: quarter-, of/relating to a quarter; costing quarter as (fee for baths); quadratum_N_N = mkN "quadratum" ; -- [XXXES] :: square; S:quadrature (astronomy); @@ -31221,19 +31214,19 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat quadringenarius_A = mkA "quadringenarius" "quadringenaria" "quadringenarium" ; -- [XXXEC] :: of four hundred each; quadripertitus_A = mkA "quadripertitus" "quadripertita" "quadripertitum" ; -- [XXXCO] :: divided into four parts, quadripartite, fourfold; quadriplex_A = mkA "quadriplex" "quadriplicis"; -- [XSXCO] :: fourfold; having four parts/aspects; four times as much; multiplied by four; - quadriporticus_F_N = mkN "quadriporticus" "quadriporticus " feminine ; -- [FEXEK] :: cloister; - quadriporticus_M_N = mkN "quadriporticus" "quadriporticus " masculine ; -- [FEXEK] :: cloister; + quadriporticus_F_N = mkN "quadriporticus" "quadriporticus" feminine ; -- [FEXEK] :: cloister; + quadriporticus_M_N = mkN "quadriporticus" "quadriporticus" masculine ; -- [FEXEK] :: cloister; quadriremis_A = mkA "quadriremis" "quadriremis" "quadrireme" ; -- [XXXDX] :: having four oars to each bench/banks of oars; - quadriremis_F_N = mkN "quadriremis" "quadriremis " feminine ; -- [XXXDX] :: quadrireme, vessel having four oars to each bench/banks of oars; + quadriremis_F_N = mkN "quadriremis" "quadriremis" feminine ; -- [XXXDX] :: quadrireme, vessel having four oars to each bench/banks of oars; quadrivium_N_N = mkN "quadrivium" ; -- [FGXEB] :: quadrivium, 2nd group of 7 liberal arts (arithmetic/geometry/astronomy/music); quadro_V = mkV "quadrare" ; -- [XXXDX] :: square up, make square/suitable; square/fit; quadruple; form rectangular shape; quadrum_N_N = mkN "quadrum" ; -- [XSXEO] :: square; square section; regular shape or form; car-frame (Cal); quadrupedans_A = mkA "quadrupedans" "quadrupedantis"; -- [XXXDX] :: galloping; quadrupertitus_A = mkA "quadrupertitus" "quadrupertita" "quadrupertitum" ; -- [XXXCO] :: divided into four parts, quadripartite, fourfold; quadrupes_A = mkA "quadrupes" "quadrupedis"; -- [XXXDX] :: four-footed; - quadrupes_F_N = mkN "quadrupes" "quadrupedis " feminine ; -- [XXXDX] :: quadruped; - quadrupes_M_N = mkN "quadrupes" "quadrupedis " masculine ; -- [XXXDX] :: quadruped; - quadruplator_M_N = mkN "quadruplator" "quadruplatoris " masculine ; -- [XXXEC] :: multiplier by four; an exaggerator; an informer; + quadrupes_F_N = mkN "quadrupes" "quadrupedis" feminine ; -- [XXXDX] :: quadruped; + quadrupes_M_N = mkN "quadrupes" "quadrupedis" masculine ; -- [XXXDX] :: quadruped; + quadruplator_M_N = mkN "quadruplator" "quadruplatoris" masculine ; -- [XXXEC] :: multiplier by four; an exaggerator; an informer; quadruplex_A = mkA "quadruplex" "quadruplicis"; -- [XSXCO] :: fourfold; having four parts/aspects; four times as much; multiplied by four; quadruplico_V = mkV "quadruplicare" ; -- [XXXFS] :: quadruple; multiply by four; quadruplor_V = mkV "quadruplari" ; -- [XXXEC] :: be informer; @@ -31242,26 +31235,26 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; 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; + quaestio_F_N = mkN "quaestio" "quaestionis" feminine ; -- [XXXDX] :: questioning, inquiry; investigation; quaestiuncula_F_N = mkN "quaestiuncula" ; -- [XXXEC] :: little question; - quaestor_M_N = mkN "quaestor" "quaestoris " masculine ; -- [XXXDX] :: quaestor; state treasurer; quartermaster general; + quaestor_M_N = mkN "quaestor" "quaestoris" masculine ; -- [XXXDX] :: quaestor; state treasurer; quartermaster general; quaestorium_N_N = mkN "quaestorium" ; -- [XLXES] :: quaestor's residence; quaestorius_A = mkA "quaestorius" "quaestoria" "quaestorium" ; -- [XXXDX] :: of a quaestor; quaestorius_M_N = mkN "quaestorius" ; -- [XXXDX] :: ex-quaestor; quaestuosus_A = mkA "quaestuosus" "quaestuosa" "quaestuosum" ; -- [XXXDX] :: profitable; quaestura_F_N = mkN "quaestura" ; -- [XXXDX] :: quaestorship; public money; - quaestus_M_N = mkN "quaestus" "quaestus " masculine ; -- [XXXDX] :: gain, profit; + quaestus_M_N = mkN "quaestus" "quaestus" masculine ; -- [XXXDX] :: gain, profit; qualibet_Adv = mkAdv "qualibet" ; -- [XXXDX] :: where you will, anywhere, by any road you like; anyway, as you please; qualifico_V2 = mkV2 (mkV "qualificare") ; -- [FXXFF] :: qualify, invest with a quality/qualities; qualis_A = mkA "qualis" "qualis" "quale" ; -- [XXXAO] :: what kind/sort/condition (of); what is (he/it) like; what/how excellent a ...; qualislibet_Adv = mkAdv "qualislibet" ; -- [EXXES] :: of what sort you will; - qualitas_F_N = mkN "qualitas" "qualitatis " feminine ; -- [XXXCO] :: character/nature, essential/distinguishing quality/characteristic; G:mood; + qualitas_F_N = mkN "qualitas" "qualitatis" feminine ; -- [XXXCO] :: character/nature, essential/distinguishing quality/characteristic; G:mood; qualiter_Adv = mkAdv "qualiter" ; -- [XXXDX] :: as, just as; in what/which way/state/manner (INTERJ), how; qualitercumque_Adv = mkAdv "qualitercumque" ; -- [XXXEO] :: no matter how; in whatever manner; howsoever (L+S); be it as it may; qualitercunque_Adv = mkAdv "qualitercunque" ; -- [XXXEO] :: no matter how; in whatever manner; howsoever (L+S); be it as it may; @@ -31291,7 +31284,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; quanto_Adv = mkAdv "quanto" ; -- [XXXDX] :: (by) how much; quantocius_Adv = mkAdv "quantocius" ; -- [DXXDS] :: the_sooner/quicker the_better; @@ -31320,26 +31313,25 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; + 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; - 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; + quattuorviratus_M_N = mkN "quattuorviratus" "quattuorviratus" masculine ; -- [XLXES] :: quattuorvir's office; 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; - 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; + queo_1_V = mkV "quire" "queo" "quivi" "quitus" ; -- [XXXBX] :: be able; + queo_2_V = mkV "quire" "queo" "quiii" "quitus" ; -- [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; + quercus_F_N = mkN "quercus" "quercus" feminine ; -- [XAXBO] :: oak, oak-tree; oak wood/timber/object; oak leaf garland (honor); sea-oak; querela_F_N = mkN "querela" ; -- [XXXBO] :: complaint, grievance; illness; difference of opinion; lament; blame (Plater); querella_F_N = mkN "querella" ; -- [XXXBO] :: complaint, grievance; illness; difference of opinion; lament; blame (Plater); queribundus_A = mkA "queribundus" "queribunda" "queribundum" ; -- [XXXEC] :: complaining, plaintive; @@ -31347,21 +31339,21 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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 = mkConj "quia" missing ; -- [XXXAX] :: because; quianam_Adv = mkAdv "quianam" ; -- [XXXDX] :: why ever?; 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); + 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; + 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; quietus_A = mkA "quietus" ; -- [XXXDX] :: at rest; quiet, tranquil, calm, peaceful; orderly; neutral; still; idle; quin_Adv = mkAdv "quin" ; -- [XXXAX] :: why not, in fact; @@ -31369,7 +31361,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); - quincunx_M_N = mkN "quincunx" "quincuncis " masculine ; -- [XXXDX] :: quincunx, the five on dice; 5/12, esp. of an as = 5 unciae; + quincunx_M_N = mkN "quincunx" "quincuncis" masculine ; -- [XXXDX] :: quincunx, the five on dice; 5/12, esp. of an as = 5 unciae; quindecimprimus_M_N = mkN "quindecimprimus" ; -- [XLXEC] :: fifteen senators (pl.) of a municipium; quindecimvir_M_N = mkN "quindecimvir" ; -- [XLXEC] :: one of board of fifteen magistrates; quindecimviralis_A = mkA "quindecimviralis" "quindecimviralis" "quindecimvirale" ; -- [XLXEC] :: of the quindecimviri (board of fifteen magistrates); @@ -31384,9 +31376,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat quinquepertitus_A = mkA "quinquepertitus" "quinquepertita" "quinquepertitum" ; -- [XXXEC] :: in five portions, fivefold; quinqueprimus_M_N = mkN "quinqueprimus" ; -- [XLXEC] :: five chief senators (pl.) in a municipium; quinqueremis_A = mkA "quinqueremis" "quinqueremis" "quinquereme" ; -- [XWXEO] :: quinquereme (w/navis), large galley with 5 rowers to each room/banks of oars; - quinqueremis_F_N = mkN "quinqueremis" "quinqueremis " feminine ; -- [XWXEO] :: quinquereme, large galley with five rowers to each room or five banks of oars; + quinqueremis_F_N = mkN "quinqueremis" "quinqueremis" feminine ; -- [XWXEO] :: quinquereme, large galley with five rowers to each room or five banks of oars; quinquevir_M_N = mkN "quinquevir" ; -- [XLXEC] :: one of board of five; - quinqueviratus_M_N = mkN "quinqueviratus" "quinqueviratus " masculine ; -- [XLXEC] :: office of quinquevir; + quinqueviratus_M_N = mkN "quinqueviratus" "quinqueviratus" masculine ; -- [XLXEC] :: office of quinquevir; quinquiplico_V = mkV "quinquiplicare" ; -- [XSXEC] :: multiply by five; quintadecimanus_M_N = mkN "quintadecimanus" ; -- [XWXEC] :: soldiers (pl.) of the fifteenth legion; quintadecumanus_M_N = mkN "quintadecumanus" ; -- [XWXFO] :: soldiers of the fifteenth legion; @@ -31399,12 +31391,12 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat quinymo_Adv = mkAdv "quinymo" ; -- [FXXEN] :: indeed, in fact; but truly; rather (Nelson); (= quinimmo); quippe_Adv = mkAdv "quippe" ; -- [XXXAX] :: of course; as you see; obviously; naturally; by all means; quippini_Adv = mkAdv "quippini" ; -- [XXXEC] :: why not; - quiris_F_N = mkN "quiris" "quiritis " feminine ; -- [XXXDX] :: spear (Sabine word); - quiritatio_F_N = mkN "quiritatio" "quiritationis " feminine ; -- [XXXEC] :: shriek, scream; - quiritatus_M_N = mkN "quiritatus" "quiritatus " masculine ; -- [EXXFS] :: plaintive cry; wail; + quiris_F_N = mkN "quiris" "quiritis" feminine ; -- [XXXDX] :: spear (Sabine word); + quiritatio_F_N = mkN "quiritatio" "quiritationis" feminine ; -- [XXXEC] :: shriek, scream; + 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 = mkConj "quo" missing ; -- [XXXDX] :: whither, in what place, where; quoad_Conj = mkConj "quoad" missing ; -- [XXXDX] :: as long as, until; @@ -31424,7 +31416,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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 = mkConj "quominus" missing ; -- [XXXDX] :: that not, from (quo minus); quomodo_Adv = mkAdv "quomodo" ; -- [XXXAX] :: how, in what way; just as; @@ -31469,14 +31461,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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_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; rabbi_N = constN "rabbi" masculine ; -- [DEQEE] :: rabbi; teacher, master; (Hebrew); rabbinus_M_N = mkN "rabbinus" ; -- [GEXEK] :: rabbi; 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; + rabies_F_N = mkN "rabies" "rabiei" feminine ; -- [XXXDX] :: madness; 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; @@ -31500,10 +31492,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat radico_V = mkV "radicare" ; -- [DAXES] :: take root; grow roots; radicula_F_N = mkN "radicula" ; -- [XAXEC] :: little root; radio_V = mkV "radiare" ; -- [XXXBO] :: beam, shine; radiate light; - radioactivitas_F_N = mkN "radioactivitas" "radioactivitatis " feminine ; -- [HSXEK] :: radioactivity; + radioactivitas_F_N = mkN "radioactivitas" "radioactivitatis" feminine ; -- [HSXEK] :: radioactivity; radioactivus_A = mkA "radioactivus" "radioactiva" "radioactivum" ; -- [HXXEK] :: radioactive; radioelectricus_A = mkA "radioelectricus" "radioelectrica" "radioelectricum" ; -- [HSXEK] :: radioelectric; - radiographema_N_N = mkN "radiographema" "radiographematis " neuter ; -- [HBXEK] :: X-ray; + radiographema_N_N = mkN "radiographema" "radiographematis" neuter ; -- [HBXEK] :: X-ray; radiographia_F_N = mkN "radiographia" ; -- [HBXEK] :: X-ray; radiologia_F_N = mkN "radiologia" ; -- [HBXEK] :: radiology; radiologicus_A = mkA "radiologicus" "radiologica" "radiologicum" ; -- [HBXEK] :: radiological; @@ -31515,15 +31507,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat radiosus_A = mkA "radiosus" "radiosa" "radiosum" ; -- [XXXFS] :: beam-emitting; 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; + 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; - ramale_N_N = mkN "ramale" "ramalis " neuter ; -- [XXXDX] :: brushwood (usu. pl.), twigs, sticks, shoots; + raffinatio_F_N = mkN "raffinatio" "raffinationis" feminine ; -- [GXXEK] :: refinement; + ramale_N_N = mkN "ramale" "ramalis" neuter ; -- [XXXDX] :: brushwood (usu. pl.), twigs, sticks, shoots; ramentum_N_N = mkN "ramentum" ; -- [XXXEC] :: shavings (usu. pl.), splinters, chips; rameus_A = mkA "rameus" "ramea" "rameum" ; -- [XXXDX] :: of a bough/boughs/sticks; - ramex_M_N = mkN "ramex" "ramicis " masculine ; -- [XBXEC] :: rupture; lungs (pl.); + ramex_M_N = mkN "ramex" "ramicis" masculine ; -- [XBXEC] :: rupture; lungs (pl.); ramnum_N_N = mkN "ramnum" ; -- [EAXFW] :: bramble; (buckthorn?); ramosus_A = mkA "ramosus" "ramosa" "ramosum" ; -- [XXXDX] :: having many branches, branching; ramulus_M_N = mkN "ramulus" ; -- [XXXCO] :: twig, little branch/bough; @@ -31536,27 +31528,27 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat ranunculus_M_N = mkN "ranunculus" ; -- [XAXEC] :: little frog, tadpole; rapa_F_N = mkN "rapa" ; -- [XAXDO] :: turnip; rapacida_M_N = mkN "rapacida" ; -- [BXXFS] :: thief's son; - rapacitas_F_N = mkN "rapacitas" "rapacitatis " feminine ; -- [XXXEZ] :: rapacity; + 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; 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); + rapiditas_F_N = mkN "rapiditas" "rapiditatis" feminine ; -- [XXXEO] :: swiftness, rapidity (of movement); 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; + 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; + raptor_M_N = mkN "raptor" "raptoris" masculine ; -- [XXXDX] :: robber; plunderer; raptum_N_N = mkN "raptum" ; -- [XXXDX] :: plunder; prey; - raptus_M_N = mkN "raptus" "raptus " masculine ; -- [XXXDX] :: violent snatching or dragging away; robbery, carrying off, abduction; + raptus_M_N = mkN "raptus" "raptus" masculine ; -- [XXXDX] :: violent snatching or dragging away; robbery, carrying off, abduction; 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; + 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); raresco_V = mkV "rarescere" "raresco" nonExist nonExist ; -- [XXXDX] :: thin out, open out; become sparse; raro_Adv = mkAdv "raro" ; -- [XXXDX] :: seldom, rare; @@ -31570,37 +31562,37 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat rastellus_M_N = mkN "rastellus" ; -- [XXXDX] :: rake; rastrum_N_N = mkN "rastrum" ; -- [XXXDX] :: drag-hoe; rastrus_M_N = mkN "rastrus" ; -- [XAXCO] :: drag-hoe (pl.); (usu. sg. N, pl. M); - ratificatio_F_N = mkN "ratificatio" "ratificationis " feminine ; -- [GXXEK] :: ratification; + ratificatio_F_N = mkN "ratificatio" "ratificationis" feminine ; -- [GXXEK] :: ratification; ratifico_V = mkV "ratificare" ; -- [GXXEK] :: ratify; ratihabeo_V = mkV "ratihabere" ; -- [GXXEK] :: ratify; - ratihabitio_F_N = mkN "ratihabitio" "ratihabitionis " feminine ; -- [XXXEO] :: approval; ratification; - ratio_F_N = mkN "ratio" "rationis " feminine ; -- [XXXAX] :: account, reckoning, invoice; plan; prudence; method; reasoning; rule; regard; - ratiocinatio_F_N = mkN "ratiocinatio" "ratiocinationis " feminine ; -- [XGXEC] :: reasoning; esp. a form of argument, syllogism; + ratihabitio_F_N = mkN "ratihabitio" "ratihabitionis" feminine ; -- [XXXEO] :: approval; ratification; + ratio_F_N = mkN "ratio" "rationis" feminine ; -- [XXXAX] :: account, reckoning, invoice; plan; prudence; method; reasoning; rule; regard; + ratiocinatio_F_N = mkN "ratiocinatio" "ratiocinationis" feminine ; -- [XGXEC] :: reasoning; esp. a form of argument, syllogism; ratiocinativus_A = mkA "ratiocinativus" "ratiocinativa" "ratiocinativum" ; -- [XXXEC] :: argumentative; syllogistic; - ratiocinator_M_N = mkN "ratiocinator" "ratiocinatoris " masculine ; -- [XXXEC] :: calculator, accountant; + 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; 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; + 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; rationalabiliter_Adv = mkAdv "rationalabiliter" ; -- [FXXFF] :: rationally, reasonably, logically; probably, with probability; rationalis_A = mkA "rationalis" "rationalis" "rationale" ; -- [EXXFP] :: |measurable; that has a ratio; knowing rationally, rational (Def); conceivable; - rationalis_M_N = mkN "rationalis" "rationalis " masculine ; -- [XXXEO] :: theoretician; accountant; + rationalis_M_N = mkN "rationalis" "rationalis" masculine ; -- [XXXEO] :: theoretician; accountant; rationalismus_M_N = mkN "rationalismus" ; -- [GXXEK] :: rationalism; rationalista_M_N = mkN "rationalista" ; -- [GXXEK] :: rationalistic; rationalisticus_A = mkA "rationalisticus" "rationalistica" "rationalisticum" ; -- [GXXEK] :: rationalistic; rationalizo_V = mkV "rationalizare" ; -- [GXXEK] :: rationalize; rationarium_N_N = mkN "rationarium" ; -- [XXXEC] :: statistical account; - ratis_F_N = mkN "ratis" "ratis " feminine ; -- [XXXAX] :: raft; ship, boat; + ratis_F_N = mkN "ratis" "ratis" feminine ; -- [XXXAX] :: raft; ship, boat; ratiuncula_F_N = mkN "ratiuncula" ; -- [XXXEC] :: little reckoning, account; a poor reason; a petty syllogism; ratus_A = mkA "ratus" "rata" "ratum" ; -- [XXXDX] :: established, authoritative; fixed, certain; ratus_C_N = mkN "ratus" ; -- [GXXEK] :: rat; raucisonus_A = mkA "raucisonus" "raucisona" "raucisonum" ; -- [XXXDX] :: hoarse-sounding, raucous; raucus_A = mkA "raucus" "rauca" "raucum" ; -- [XXXDX] :: hoarse; husky; raucous; - raudus_N_N = mkN "raudus" "rauderis " neuter ; -- [XXXCO] :: lump, rough piece; piece of bronze, (sometimes a bronze coin); + raudus_N_N = mkN "raudus" "rauderis" neuter ; -- [XXXCO] :: lump, rough piece; piece of bronze, (sometimes a bronze coin); raudusculum_N_N = mkN "raudusculum" ; -- [XXXEC] :: small sum of money; - ravacaulis_M_N = mkN "ravacaulis" "ravacaulis " masculine ; -- [GXXEK] :: kohlrabi; + ravacaulis_M_N = mkN "ravacaulis" "ravacaulis" masculine ; -- [GXXEK] :: kohlrabi; ravus_A = mkA "ravus" "rava" "ravum" ; -- [XXXDX] :: grayish, tawny; rea_F_N = mkN "rea" ; -- [XLXAO] :: party in law suit; plaintiff/defendant; culprit/guilty party, debtor; sinner; reactrum_N_N = mkN "reactrum" ; -- [GTXEK] :: reactor; @@ -31609,151 +31601,150 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat realismus_M_N = mkN "realismus" ; -- [GXXEK] :: realism; realista_M_N = mkN "realista" ; -- [GXXEK] :: realist; realisticus_A = mkA "realisticus" "realistica" "realisticum" ; -- [GXXEK] :: realistic; - realitas_F_N = mkN "realitas" "realitatis " feminine ; -- [GXXEK] :: reality; + realitas_F_N = mkN "realitas" "realitatis" feminine ; -- [GXXEK] :: reality; realiter_Adv = mkAdv "realiter" ; -- [GXXEK] :: really; reapse_Adv = mkAdv "reapse" ; -- [XXXEC] :: in truth, really; - reatitudo_F_N = mkN "reatitudo" "reatitudinis " feminine ; -- [FEXEL] :: guilt; - reatus_M_N = mkN "reatus" "reatus " masculine ; -- [EEXEL] :: |guilt; - rebellatio_F_N = mkN "rebellatio" "rebellationis " feminine ; -- [DXXDS] :: revolt; rebellion; - rebellatrix_F_N = mkN "rebellatrix" "rebellatricis " feminine ; -- [XXXDX] :: rebel, she who renews the war; - rebellio_F_N = mkN "rebellio" "rebellionis " feminine ; -- [XXXDX] :: rebellion; + reatitudo_F_N = mkN "reatitudo" "reatitudinis" feminine ; -- [FEXEL] :: guilt; + reatus_M_N = mkN "reatus" "reatus" masculine ; -- [EEXEL] :: |guilt; + rebellatio_F_N = mkN "rebellatio" "rebellationis" feminine ; -- [DXXDS] :: revolt; rebellion; + rebellatrix_F_N = mkN "rebellatrix" "rebellatricis" feminine ; -- [XXXDX] :: rebel, she who renews the war; + rebellio_F_N = mkN "rebellio" "rebellionis" feminine ; -- [XXXDX] :: rebellion; rebellis_A = mkA "rebellis" "rebellis" "rebelle" ; -- [XXXDX] :: insurgent, rebellious; - rebellis_M_N = mkN "rebellis" "rebellis " masculine ; -- [XXXDX] :: insurgent, rebel; + 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; + 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; 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; + 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; - 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; + 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; receptaculum_N_N = mkN "receptaculum" ; -- [XXXDX] :: receptacle; place of refuge, shelter; - receptio_F_N = mkN "receptio" "receptionis " feminine ; -- [XXXEO] :: recovery; receiving/reception; retention; recording (sounds/pictures Cal); + receptio_F_N = mkN "receptio" "receptionis" feminine ; -- [XXXEO] :: recovery; receiving/reception; retention; recording (sounds/pictures Cal); recepto_V = mkV "receptare" ; -- [XXXDX] :: recover; receive, admit (frequently); - receptor_M_N = mkN "receptor" "receptoris " masculine ; -- [XXXDS] :: receiver, shelterer; concealer/harborer/hider; reconquerer; - receptrix_F_N = mkN "receptrix" "receptricis " feminine ; -- [XXXFO] :: receiver, she who receives/admits/shelters; concealer, she who harbors/conceals; + receptor_M_N = mkN "receptor" "receptoris" masculine ; -- [XXXDS] :: receiver, shelterer; concealer/harborer/hider; reconquerer; + receptrix_F_N = mkN "receptrix" "receptricis" feminine ; -- [XXXFO] :: receiver, she who receives/admits/shelters; concealer, she who harbors/conceals; receptum_N_N = mkN "receptum" ; -- [XXXDS] :: obligation; - receptus_M_N = mkN "receptus" "receptus " masculine ; -- [XXXDX] :: retreat; - recessus_M_N = mkN "recessus" "recessus " masculine ; -- [XXXBX] :: retreat; recess; + 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; - 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; + 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; 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; + 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; + 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; + 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); - recitator_M_N = mkN "recitator" "recitatoris " masculine ; -- [XXXDX] :: reciter; + recitator_M_N = mkN "recitator" "recitatoris" masculine ; -- [XXXDX] :: reciter; recito_V = mkV "recitare" ; -- [XXXBX] :: read aloud, recite; name in writing; - reclamatio_F_N = mkN "reclamatio" "reclamationis " feminine ; -- [GXXEK] :: complaint; + reclamatio_F_N = mkN "reclamatio" "reclamationis" feminine ; -- [GXXEK] :: complaint; reclamito_V = mkV "reclamitare" ; -- [XXXFS] :: reproclaim; proclaim against; reclamo_V = mkV "reclamare" ; -- [XXXDX] :: cry out in protest at; 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; + 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; + 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; + 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; + 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; + 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; + 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; - recresco_V2 = mkV2 (mkV "recrescere" "recresco" "recrevi" "recretus ") ; -- [XXXDX] :: grow again; + 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; + rectificatio_F_N = mkN "rectificatio" "rectificationis" feminine ; -- [GXXEK] :: rectification; rectifico_V2 = mkV2 (mkV "rectificare") ; -- [FXXEM] :: rectify, regulate, control, govern/direct by rule/regulation; rectilineus_A = mkA "rectilineus" "rectilinea" "rectilineum" ; -- [ESXDX] :: rectilinear; in a straight line; - rectio_F_N = mkN "rectio" "rectionis " feminine ; -- [XXXDS] :: government; - 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; + rectio_F_N = mkN "rectio" "rectionis" feminine ; -- [XXXDS] :: government; + 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 rectus_A = mkA "rectus" ; -- [XXXAX] :: right, proper; straight; honest; - recubitus_M_N = mkN "recubitus" "recubitus " masculine ; -- [EXXFR] :: seat; dining/reclining couch; + 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; 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; + 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; + 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); + 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; + recursus_M_N = mkN "recursus" "recursus" masculine ; -- [XXXDX] :: running back, retreat, return; recurvo_V = mkV "recurvare" ; -- [XXXDX] :: bend back; recurvus_A = mkA "recurvus" "recurva" "recurvum" ; -- [XXXDX] :: bent back on itself, bent round; - recusatio_F_N = mkN "recusatio" "recusationis " feminine ; -- [XXXDX] :: refusal; + 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; + 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; 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; - 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; + 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; + redeo_1_V = mkV "redire" "redeo" "redivi" "reditus" ; -- [XXXAX] :: return, go back, give back; fall back on, revert to; respond, pay back; + redeo_2_V = mkV "redire" "redeo" "rediii" "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; + 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; + 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; + 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); + reditus_M_N = mkN "reditus" "reditus" masculine ; -- [XXXCS] :: return, returning; revenue, income, proceeds; produce (Plater); redivia_F_N = mkN "redivia" ; -- [XBXEC] :: hangnail; whitlow; redivivus_A = mkA "redivivus" "rediviva" "redivivum" ; -- [XXXDX] :: re-used, secondhand; 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; + 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; + 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; + reductor_M_N = mkN "reductor" "reductoris" masculine ; -- [XXXDX] :: restorer; reductus_A = mkA "reductus" "reducta" "reductum" ; -- [XXXDX] :: receding deeply, set back; reduncus_A = mkA "reduncus" "redunca" "reduncum" ; -- [XXXEC] :: bent back, curved; redundantia_F_N = mkN "redundantia" ; -- [XXXDX] :: overflow, overflowing, excessive flow; redundancy; reversal of flow; @@ -31761,130 +31752,130 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat reduntantia_F_N = mkN "reduntantia" ; -- [XXXDS] :: superfluity; overflowing; reduvia_F_N = mkN "reduvia" ; -- [XBXEC] :: hangnail; whitlow; redux_A = mkA "redux" "reducis"; -- [XXXDX] :: coming back, returning; - refactor_M_N = mkN "refactor" "refactoris " masculine ; -- [EEXES] :: remaker; - refectio_F_N = mkN "refectio" "refectionis " feminine ; -- [XXXCO] :: restoration/repair; remaking; recouping; refreshment; recovery/convalescence; - refector_M_N = mkN "refector" "refectoris " masculine ; -- [XXXEO] :: restorer, repairer, renewer; (spiritual of persons); + refactor_M_N = mkN "refactor" "refactoris" masculine ; -- [EEXES] :: remaker; + refectio_F_N = mkN "refectio" "refectionis" feminine ; -- [XXXCO] :: restoration/repair; remaking; recouping; refreshment; recovery/convalescence; + 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; 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; + 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; + 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); 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; + 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; + 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; 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?); + 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?); refocillo_V2 = mkV2 (mkV "refocillare") ; -- [EXXDO] :: revive, revivify; warm to life again; relieve (Ecc); refocilo_V2 = mkV2 (mkV "refocilare") ; -- [EXXDW] :: revive, revivify; warm to life again; relieve (Ecc); - reformatio_F_N = mkN "reformatio" "reformationis " feminine ; -- [XXXFS] :: transformation; E:reformation; + reformatio_F_N = mkN "reformatio" "reformationis" feminine ; -- [XXXFS] :: transformation; E:reformation; reformido_V = mkV "reformidare" ; -- [XXXDX] :: dread; shun; shrink from; recoil at the sight of; reformo_V = mkV "reformare" ; -- [XXXDX] :: transform, remold; form (new shape); restore; refoveo_V = mkV "refovere" ; -- [XXXDX] :: warm again; refresh, revive; refractariolus_A = mkA "refractariolus" "refractariola" "refractariolum" ; -- [XXXEC] :: somewhat stubborn; - refractio_F_N = mkN "refractio" "refractionis " feminine ; -- [GXXEK] :: refraction; - refragatio_F_N = mkN "refragatio" "refragationis " feminine ; -- [XXXES] :: resistance; opposition; + refractio_F_N = mkN "refractio" "refractionis" feminine ; -- [GXXEK] :: refraction; + refragatio_F_N = mkN "refragatio" "refragationis" feminine ; -- [XXXES] :: resistance; opposition; refragor_V = mkV "refragari" ; -- [XXXCO] :: oppose (candidate/interests); act to disadvantage of; act counter to, mitigate; - refrangibilitas_F_N = mkN "refrangibilitas" "refrangibilitatis " feminine ; -- [GSXEK] :: refractable; + refrangibilitas_F_N = mkN "refrangibilitas" "refrangibilitatis" feminine ; -- [GSXEK] :: refractable; refreno_V = mkV "refrenare" ; -- [XXXDX] :: curb, check; restrain; refrico_V = mkV "refricare" ; -- [XXXDX] :: gall; excite again; - refrigeratio_F_N = mkN "refrigeratio" "refrigerationis " feminine ; -- [XXXDS] :: coolness; + 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; refrigesco_V2 = mkV2 (mkV "refrigescere" "refrigesco" "refrixi" nonExist ) ; -- [XXXDX] :: grow cold, cool down; - refringo_V2 = mkV2 (mkV "refringere" "refringo" "refregi" "refractus ") ; -- [XXXDX] :: break open; + 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; 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; + 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; + 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; + 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; + regio_F_N = mkN "regio" "regionis" feminine ; -- [XXXAX] :: area, region; neighborhood; district, country; direction; regionalismus_M_N = mkN "regionalismus" ; -- [GXXEK] :: regionalism; regius_A = mkA "regius" "regia" "regium" ; -- [XXXAX] :: royal, of a king, regal; reglutino_V2 = mkV2 (mkV "reglutinare") ; -- [XXXFS] :: unstick; rejoin; - regnator_M_N = mkN "regnator" "regnatoris " masculine ; -- [XXXDX] :: king, lord; + regnator_M_N = mkN "regnator" "regnatoris" masculine ; -- [XXXDX] :: king, lord; 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; + 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; + 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; regularis_A = mkA "regularis" "regularis" "regulare" ; -- [EEXEP] :: canonical; regular, usual; containing a regimen; (royal); regulariter_Adv = mkAdv "regulariter" ; -- [XXXES] :: by way of general rule; according to rule (L+S); regularly (Souter); 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; + 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; + reimpressio_F_N = mkN "reimpressio" "reimpressionis" feminine ; -- [GXXEK] :: reprint; reimprimeo_V = mkV "reimprimere" ; -- [GXXEK] :: reprint; - reincarnatio_F_N = mkN "reincarnatio" "reincarnationis " feminine ; -- [GEXEK] :: reincarnation; + reincarnatio_F_N = mkN "reincarnatio" "reincarnationis" feminine ; -- [GEXEK] :: reincarnation; rejectaneus_A = mkA "rejectaneus" "rejectanea" "rejectaneum" ; -- [XXXDS] :: rejectable; - rejectio_F_N = mkN "rejectio" "rejectionis " feminine ; -- [XXXES] :: throwing-back; rejection; + rejectio_F_N = mkN "rejectio" "rejectionis" feminine ; -- [XXXES] :: throwing-back; rejection; rejecto_V2 = mkV2 (mkV "rejectare") ; -- [XXXFS] :: throw back; - 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; + 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; + 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; relative_Adv = mkAdv "relative" ; -- [DXXFS] :: relatively; relativismus_M_N = mkN "relativismus" ; -- [GXXEK] :: relativism; relativisticus_A = mkA "relativisticus" "relativistica" "relativisticum" ; -- [GSXEK] :: relativistic; - relativitas_F_N = mkN "relativitas" "relativitatis " feminine ; -- [GSXEK] :: relativity; + relativitas_F_N = mkN "relativitas" "relativitatis" feminine ; -- [GSXEK] :: relativity; relativus_A = mkA "relativus" "relativa" "relativum" ; -- [DXXDS] :: relative; referring; having reference/relation; - relator_M_N = mkN "relator" "relatoris " masculine ; -- [GXXEK] :: reporter, journalist; - relatus_M_N = mkN "relatus" "relatus " masculine ; -- [XXXDO] :: narration, telling of events; utterance (of sounds) in reply; + relator_M_N = mkN "relator" "relatoris" masculine ; -- [GXXEK] :: reporter, journalist; + relatus_M_N = mkN "relatus" "relatus" masculine ; -- [XXXDO] :: narration, telling of events; utterance (of sounds) in reply; relaxo_V = mkV "relaxare" ; -- [XXXDX] :: loosen, widen; relax; - relegatio_F_N = mkN "relegatio" "relegationis " feminine ; -- [XXXDX] :: banishment; + 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; + 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; + 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; 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); + 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; - religiositas_F_N = mkN "religiositas" "religiositatis " feminine ; -- [XEXFO] :: regard for the divine law; + religiositas_F_N = mkN "religiositas" "religiositatis" feminine ; -- [XEXFO] :: regard for the divine law; 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; + 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; @@ -31893,27 +31884,27 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - remansio_F_N = mkN "remansio" "remansionis " feminine ; -- [XXXDS] :: remaining behind; + remansio_F_N = mkN "remansio" "remansionis" feminine ; -- [XXXDS] :: remaining behind; remedium_N_N = mkN "remedium" ; -- [XXXBX] :: remedy, cure; medicine; - rememoratio_F_N = mkN "rememoratio" "rememorationis " feminine ; -- [EXXES] :: remembrance; + 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); + 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; + remissio_F_N = mkN "remissio" "remissionis" feminine ; -- [XXXDX] :: sending back/away, returning, releasing; abating; forgiveness; remiss; 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; + 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; + 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; + remoramen_N_N = mkN "remoramen" "remoraminis" neuter ; -- [XXXEC] :: delay; remordeo_V = mkV "remordere" ; -- [XXXDX] :: bite back; gnaw, nag; remoror_V = mkV "remorari" ; -- [XXXDX] :: delay; remote_Adv = mkAdv "remote" ; -- [XXXDX] :: far off; at a distance; remotely; distantly; @@ -31922,62 +31913,62 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + remuneratio_F_N = mkN "remuneratio" "remunerationis" feminine ; -- [XXXEO] :: repaying, making payment in return; recompense/reward (L+S); remuneration; remunero_V = mkV "remunerare" ; -- [XXXDX] :: reward, recompense, remunerate; remunero_V2 = mkV2 (mkV "remunerare") ; -- [XXXBO] :: reward; repay, recompense, remunerate; requite; pay back, retaliate; remuneror_V = mkV "remunerari" ; -- [XXXBO] :: reward, repay, recompense, remunerate; requite; pay back, retaliate; remurmuro_V = mkV "remurmurare" ; -- [XPXDS] :: remurmur; murmur back; remus_M_N = mkN "remus" ; -- [XWXBX] :: oar; - ren_M_N = mkN "ren" "renis " masculine ; -- [XBXCO] :: kidney(s) (usu. pl.); name of precious stone; (sg. ren not used L+S); + 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; + 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; + 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; - renovatio_F_N = mkN "renovatio" "renovationis " feminine ; -- [XXXCO] :: renewal, renewing (w/interest added to principle), refinancing; renovation; + renovamen_N_N = mkN "renovamen" "renovaminis" neuter ; -- [XXXEC] :: renewal; + renovatio_F_N = mkN "renovatio" "renovationis" feminine ; -- [XXXCO] :: renewal, renewing (w/interest added to principle), refinancing; renovation; renovo_V = mkV "renovare" ; -- [XXXBX] :: renew, restore; revive; renumero_V2 = mkV2 (mkV "renumerare") ; -- [XXXDO] :: repay, pay back; pay out (that owed); report count of; renuncio_V = mkV "renunciare" ; -- [XXXFS] :: report, announce; reject; (also renuntio); renunculus_M_N = mkN "renunculus" ; -- [DXXES] :: little kidney (usu. pl.); - renuntiatio_F_N = mkN "renuntiatio" "renuntiationis " feminine ; -- [XXXCO] :: |resignation; withdrawal; renunciation; + 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; + 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; + 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; + 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; + 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; + 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; + 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; + 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; @@ -31985,40 +31976,40 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; 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; + 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; + 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; + 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; + 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; + 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; + 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; + 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; + reptatus_M_N = mkN "reptatus" "reptatus" masculine ; -- [XXXFO] :: act of crawling; + reptile_N_N = mkN "reptile" "reptilis" neuter ; -- [DAXES] :: reptile; reptilis_A = mkA "reptilis" "reptilis" "reptile" ; -- [DAXES] :: creeping; reptile; repto_V = mkV "reptare" ; -- [XXXBO] :: crawl/creep (over); move slowly/lazily/furtively, stroll/saunter, slink, grope; republicanus_M_N = mkN "republicanus" ; -- [GXXEK] :: republican; - repudiatio_F_N = mkN "repudiatio" "repudiationis " feminine ; -- [XXXES] :: rejection; refusal; + 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; @@ -32027,34 +32018,34 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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); + 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; + 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]; + 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]; 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; 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; + 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; + 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; @@ -32063,7 +32054,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat resideo_V = mkV "residere" ; -- [XXXBO] :: |abate/subside; be left over/retained, persist/stay; fall back; W:be encamped; 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; + resignatio_F_N = mkN "resignatio" "resignationis" feminine ; -- [GXXEK] :: resignation; resigno_V = mkV "resignare" ; -- [XXXDX] :: unseal; open; resign; 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; @@ -32075,30 +32066,30 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; respiro_V = mkV "respirare" ; -- [XXXDX] :: breathe out; take breath; enjoy a respite; resplendeo_V = mkV "resplendere" ; -- [XXXCO] :: shine brightly (w/reflected light); radiate light/shine brightly (luminary); respondeo_V = mkV "respondere" ; -- [XXXAX] :: answer; responsabilis_A = mkA "responsabilis" "responsabilis" "responsabile" ; -- [GXXEK] :: responsible; - responsabilitas_F_N = mkN "responsabilitas" "responsabilitatis " feminine ; -- [GXXEK] :: responsibility; + responsabilitas_F_N = mkN "responsabilitas" "responsabilitatis" feminine ; -- [GXXEK] :: responsibility; responsalis_A = mkA "responsalis" "responsalis" "responsale" ; -- [GXXEK] :: responsible; - responsalitas_F_N = mkN "responsalitas" "responsalitatis " feminine ; -- [GXXEK] :: responsibility; + responsalitas_F_N = mkN "responsalitas" "responsalitatis" feminine ; -- [GXXEK] :: responsibility; responsito_V = mkV "responsitare" ; -- [XXXDS] :: give advice; responso_V = mkV "responsare" ; -- [XXXDX] :: answer, reply (to); reecho; - responsor_M_N = mkN "responsor" "responsoris " masculine ; -- [BXXFS] :: responder; one who answers; + responsor_M_N = mkN "responsor" "responsoris" masculine ; -- [BXXFS] :: responder; one who answers; 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; @@ -32107,37 +32098,37 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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); + 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; 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; + 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; + 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; + 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; + 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; + 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); + 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; + 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; @@ -32155,34 +32146,34 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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); + 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; + 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; + retrotraho_V2 = mkV2 (mkV "retrotrahere" "retrotraho" "retrotraxi" "retrotractus") ; -- [FLXFM] :: refer back; retroversus_Adv = mkAdv "retroversus" ; -- [XXXDX] :: back, backwards; in reverse order; - retundo_V2 = mkV2 (mkV "retundere" "retundo" "retudi" "retusus ") ; -- [XXXDX] :: blunt; weaken; repress, quell; + 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; 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; + 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; + 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; + 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); reverendus_A = mkA "reverendus" ; -- [XPXDS] :: awe-inspiring; venerable; @@ -32190,71 +32181,71 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + reversio_F_N = mkN "reversio" "reversionis" feminine ; -- [XXXCO] :: return, reversing/turning back; coming around again; reversal of natural order; 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; + 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; + 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; + 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; - revolvo_V2 = mkV2 (mkV "revolvere" "revolvo" "revolvi" "revolutus ") ; -- [XXXBX] :: throw back, roll back; + revolutio_F_N = mkN "revolutio" "revolutionis" feminine ; -- [DXXES] :: revolution, rotation, revolving, turning, turn; + 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); + 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); - rheno_M_N = mkN "rheno" "rhenonis " masculine ; -- [XAXDS] :: fur (= reno); - rhetor_M_N = mkN "rhetor" "rhetoris " masculine ; -- [XXXDX] :: teacher of public speaking, rhetorician; + rheno_M_N = mkN "rheno" "rhenonis" masculine ; -- [XAXDS] :: fur (= reno); + rhetor_M_N = mkN "rhetor" "rhetoris" masculine ; -- [XXXDX] :: teacher of public speaking, rhetorician; rhetoria_F_N = mkN "rhetoria" ; -- [GGXET] :: trick of rhetoric; (Erasmus); - rhetorice_F_N = mkN "rhetorice" "rhetorices " feminine ; -- [XXXEO] :: rhetoric; art of oratory; systematized art of public speaking; + 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; 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); + 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; rhomphaea_F_N = mkN "rhomphaea" ; -- [XWXCO] :: long spear/javelin; (Thracian origin); rhypodes_A = mkA "rhypodes" "rhypodes" "rhypodes" ; -- [XXXFO] :: dirty; smeared; (name of a plaster); rhythmicus_A = mkA "rhythmicus" "rhythmica" "rhythmicum" ; -- [XDXEO] :: rhythmic; of/concerned with rhythm; rhythmicus_M_N = mkN "rhythmicus" ; -- [XDXEO] :: expert on (prose) rhythm; one who teaches rhythm; - rhythmos_M_N = mkN "rhythmos" "rhythmi " masculine ; -- [XDXEC] :: rhythm; + rhythmos_M_N = mkN "rhythmos" "rhythmi" masculine ; -- [XDXEC] :: rhythm; rhythmus_M_N = mkN "rhythmus" ; -- [XDXEC] :: rhythm; rhytium_N_N = mkN "rhytium" ; -- [XXXEC] :: drinking horn; - ribes_F_N = mkN "ribes" "ribis " feminine ; -- [GXXEK] :: currant-bush; + ribes_F_N = mkN "ribes" "ribis" feminine ; -- [GXXEK] :: currant-bush; ribesium_N_N = mkN "ribesium" ; -- [GXXEK] :: currant; rica_F_N = mkN "rica" ; -- [XXXEC] :: veil; ricinium_N_N = mkN "ricinium" ; -- [XXXFS] :: small head-veil; ricinum_N_N = mkN "ricinum" ; -- [XXXEC] :: small veil; rictum_N_N = mkN "rictum" ; -- [XXXDS] :: jaws; open mouth; - rictus_M_N = mkN "rictus" "rictus " masculine ; -- [XXXDX] :: jaws; open mouth; + rictus_M_N = mkN "rictus" "rictus" masculine ; -- [XXXDX] :: jaws; open mouth; rideo_V = mkV "ridere" ; -- [XXXAX] :: laugh at (with dat.), laugh; ridicule; ridibundus_A = mkA "ridibundus" "ridibunda" "ridibundum" ; -- [BXXFS] :: laughing; ridica_F_N = mkN "ridica" ; -- [XAXCO] :: wooden stake for supporting vines; ridicula_F_N = mkN "ridicula" ; -- [XAXCO] :: small wooden stake for supporting vines; small vine prop; - ridiculare_N_N = mkN "ridiculare" "ridicularis " neuter ; -- [XXXDS] :: jest, joke (as pl.); + ridiculare_N_N = mkN "ridiculare" "ridicularis" neuter ; -- [XXXDS] :: jest, joke (as pl.); ridicularius_A = mkA "ridicularius" "ridicularia" "ridicularium" ; -- [XXXEC] :: laughable, droll; ridicule_Adv = mkAdv "ridicule" ; -- [XXXDO] :: amusingly, w/humor; absurdly, laughably, ridiculously, in ridiculous manner; ridiculum_Interj = ss "ridiculum" ; -- [XXXEO] :: the idea/question is absurd/ridiculous!; ridiculum_N_N = mkN "ridiculum" ; -- [XXXDO] :: joke, piece of humor; [per ridiculum => jockingly, for fun]; ridiculus_A = mkA "ridiculus" "ridicula" "ridiculum" ; -- [XXXCO] :: laughable, funny, comic, amusing; absurd, silly, ridiculous; ridiculus_M_N = mkN "ridiculus" ; -- [XXXDO] :: jester; buffoon; - rienes_M_N = mkN "rienes" "rienis " masculine ; -- [XBXEO] :: kidney(s) (usu. pl.); name of precious stone; (sg. rien not used L+S); - rigatio_F_N = mkN "rigatio" "rigationis " feminine ; -- [XXXDS] :: watering; + rienes_M_N = mkN "rienes" "rienis" masculine ; -- [XBXEO] :: kidney(s) (usu. pl.); name of precious stone; (sg. rien not used L+S); + 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; 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; + rigor_M_N = mkN "rigor" "rigoris" masculine ; -- [XXXDX] :: stiffness, rigidity, coldness, numbness, hardness; inflexibility; severity; riguus_A = mkA "riguus" "rigua" "riguum" ; -- [XXXDX] :: watering, irrigating; abounding in water, well watered; rima_F_N = mkN "rima" ; -- [XXXDX] :: crack, narrow cleft; (sometimes rude); chink, fissure; [ignea ~ => lightening]; rimor_V = mkV "rimari" ; -- [XXXDX] :: probe, search; rummage about for, examine, explore; @@ -32268,15 +32259,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat ripula_F_N = mkN "ripula" ; -- [XXXEC] :: little bank; riscus_M_N = mkN "riscus" ; -- [XXXEC] :: chest, trunk; box; suitcase (Cas); risibilis_A = mkA "risibilis" "risibilis" "risibile" ; -- [FXXES] :: that can laugh; risible; - risor_M_N = mkN "risor" "risoris " masculine ; -- [XXXDX] :: one who laughs; - risus_M_N = mkN "risus" "risus " masculine ; -- [XXXDX] :: laughter; + risor_M_N = mkN "risor" "risoris" masculine ; -- [XXXDX] :: one who laughs; + risus_M_N = mkN "risus" "risus" masculine ; -- [XXXDX] :: laughter; rite_Adv = mkAdv "rite" ; -- [XXXBX] :: duly, according to religious usage, with due observance; solemnly; well; - ritual_N_N = mkN "ritual" "ritualis " neuter ; -- [XEXES] :: ceremonial rite; + ritual_N_N = mkN "ritual" "ritualis" neuter ; -- [XEXES] :: ceremonial rite; ritualis_A = mkA "ritualis" "ritualis" "rituale" ; -- [XEXES] :: ritual; of ceremonies; ritualiter_Adv = mkAdv "ritualiter" ; -- [XEXFS] :: ritually; by religious means; - ritus_M_N = mkN "ritus" "ritus " masculine ; -- [XXXBX] :: rite; ceremony; - rivalis_M_N = mkN "rivalis" "rivalis " masculine ; -- [XXXCO] :: rival; (esp. in love); one who shares use of a stream/mistress; neighbor (L+S); - rivalitas_F_N = mkN "rivalitas" "rivalitatis " feminine ; -- [XXXDS] :: rivalry in love; + ritus_M_N = mkN "ritus" "ritus" masculine ; -- [XXXBX] :: rite; ceremony; + rivalis_M_N = mkN "rivalis" "rivalis" masculine ; -- [XXXCO] :: rival; (esp. in love); one who shares use of a stream/mistress; neighbor (L+S); + rivalitas_F_N = mkN "rivalitas" "rivalitatis" feminine ; -- [XXXDS] :: rivalry in love; rivulus_M_N = mkN "rivulus" ; -- [XXXES] :: rivulet, rill, small brook; rivus_M_N = mkN "rivus" ; -- [XXXBX] :: stream; rixa_F_N = mkN "rixa" ; -- [XXXDX] :: violent or noisy quarrel, brawl, dispute; @@ -32286,29 +32277,29 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat roberia_F_N = mkN "roberia" ; -- [FLXFJ] :: robbery; robeus_A = mkA "robeus" "robea" "robeum" ; -- [XAXCO] :: red (esp. of oxen/domestic animals); red (type of wheat, other contexts); robiginosus_A = mkA "robiginosus" "robiginosa" "robiginosum" ; -- [XXXEC] :: rusty; - robigo_F_N = mkN "robigo" "robiginis " feminine ; -- [XXXDX] :: rust; mildew, blight; a foul deposit in the mouth; + robigo_F_N = mkN "robigo" "robiginis" feminine ; -- [XXXDX] :: rust; mildew, blight; a foul deposit in the mouth; robius_A = mkA "robius" "robia" "robium" ; -- [XAXCO] :: red (esp. of oxen/domestic animals); red (type of wheat, other contexts); - robor_N_N = mkN "robor" "roburis " neuter ; -- [XAXFO] :: oak (tree/timber); tough core; strength; vigor; resolve; + robor_N_N = mkN "robor" "roburis" neuter ; -- [XAXFO] :: oak (tree/timber); tough core; strength; vigor; resolve; roboreus_A = mkA "roboreus" "roborea" "roboreum" ; -- [XXXCO] :: oak-, oaken, made/consisting of oak; roboro_V = mkV "roborare" ; -- [XXXDX] :: give physical/moral strength to; reinforce; strengthen, make more effective; robotum_N_N = mkN "robotum" ; -- [GTXEK] :: robot; - robur_N_N = mkN "robur" "roboris " neuter ; -- [XXXAO] :: |||mainstay/bulwark, source of strength; stronghold, position of strength; + robur_N_N = mkN "robur" "roboris" neuter ; -- [XXXAO] :: |||mainstay/bulwark, source of strength; stronghold, position of strength; 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; + robus_N_N = mkN "robus" "roboris" neuter ; -- [AXXAO] :: |||mainstay/bulwark, source of strength; stronghold, position of strength; 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); + 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; - rogatio_F_N = mkN "rogatio" "rogationis " feminine ; -- [XXXDX] :: proposed measure; + rogamen_N_N = mkN "rogamen" "rogaminis" neuter ; -- [FXXFM] :: request; + rogatio_F_N = mkN "rogatio" "rogationis" feminine ; -- [XXXDX] :: proposed measure; rogatiuncula_F_N = mkN "rogatiuncula" ; -- [XXXEC] :: minor question or bill; - rogator_M_N = mkN "rogator" "rogatoris " masculine ; -- [XXXDS] :: proposer; L:law-proposer; polling clerk; beggar; + rogator_M_N = mkN "rogator" "rogatoris" masculine ; -- [XXXDS] :: proposer; L:law-proposer; polling clerk; beggar; rogatorialis_A = mkA "rogatorialis" "rogatorialis" "rogatoriale" ; -- [GXXEK] :: rogatory, commision authorizing judge of other jurisdiction to examine witness;; rogito_V = mkV "rogitare" ; -- [XXXDX] :: ask, inquire; rogo_V = mkV "rogare" ; -- [XXXAX] :: ask, ask for; invite; introduce; rogus_M_N = mkN "rogus" ; -- [XXXAX] :: funeral pyre; - romanciator_M_N = mkN "romanciator" "romanciatoris " masculine ; -- [GXXEK] :: novelist; + romanciator_M_N = mkN "romanciator" "romanciatoris" masculine ; -- [GXXEK] :: novelist; romanticus_A = mkA "romanticus" "romantica" "romanticum" ; -- [GXXEK] :: romantic; romanus_A = mkA "romanus" "romana" "romanum" ; -- [XXXAX] :: Roman; romanus_M_N = mkN "romanus" ; -- [XXXBX] :: Roman; the Romans (pl.); @@ -32318,7 +32309,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat rorifer_A = mkA "rorifer" "rorifera" "roriferum" ; -- [XXXDX] :: bringing dew; roro_V = mkV "rorare" ; -- [XXXDX] :: cause dew, drip; be moist; rorulentus_A = mkA "rorulentus" "rorulenta" "rorulentum" ; -- [XXXFS] :: dewy; full of dew; - ros_M_N = mkN "ros" "roris " masculine ; -- [XXXBO] :: dew; light rain; spray/splash water; [ros marinus/maris => rosemary]; + ros_M_N = mkN "ros" "roris" masculine ; -- [XXXBO] :: dew; light rain; spray/splash water; [ros marinus/maris => rosemary]; rosa_F_N = mkN "rosa" ; -- [XXXBO] :: rose; (also as term of endearment); rose bush; rose oil; rosaceus_A = mkA "rosaceus" "rosacea" "rosaceum" ; -- [XAXCO] :: rose-, made of/from roses; made with rose oil; [oleum ~ => oil of roses]; rosacius_A = mkA "rosacius" "rosacia" "rosacium" ; -- [XAXIO] :: rose-, made of/from roses; made with rose oil; [oleum ~ => oil of roses]; @@ -32334,15 +32325,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat rostrum_N_N = mkN "rostrum" ; -- [XXXBX] :: beak, curved bow (of a ship); speaker's platform (in Rome's Forum) (pl.); rota_F_N = mkN "rota" ; -- [XXXBX] :: wheel (rotate); rotarium_N_N = mkN "rotarium" ; -- [FXXEK] :: toll (freeway); - rotatio_F_N = mkN "rotatio" "rotationis " feminine ; -- [GXXEK] :: rotation; pirouette; + rotatio_F_N = mkN "rotatio" "rotationis" feminine ; -- [GXXEK] :: rotation; pirouette; rotensus_A = mkA "rotensus" "rotensa" "rotensum" ; -- [FXXEN] :: extensive; roto_V = mkV "rotare" ; -- [XXXDX] :: whirl round; revolve, rotate; - rotundatio_F_N = mkN "rotundatio" "rotundationis " feminine ; -- [XXXES] :: rounding; circumference; - rotunditas_F_N = mkN "rotunditas" "rotunditatis " feminine ; -- [XXXDO] :: roundness of form; rotundity (L+S); + 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); 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; + 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; @@ -32354,10 +32345,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat rubia_F_N = mkN "rubia" ; -- [XXXDX] :: red dye; rubicundulus_A = mkA "rubicundulus" "rubicundula" "rubicundulum" ; -- [XXXFS] :: somewhat red; rubicundus_A = mkA "rubicundus" "rubicunda" "rubicundum" ; -- [XXXDX] :: suffused with red, ruddy; - rubigo_F_N = mkN "rubigo" "rubiginis " feminine ; -- [XXXDX] :: rust; mildew, blight; a foul deposit in the mouth; + rubigo_F_N = mkN "rubigo" "rubiginis" feminine ; -- [XXXDX] :: rust; mildew, blight; a foul deposit in the mouth; rubinus_M_N = mkN "rubinus" ; -- [GXXEK] :: ruby; rubius_A = mkA "rubius" "rubia" "rubium" ; -- [XAXDO] :: red (esp. of oxen/domestic animals); red (type of wheat, other contexts); - rubor_M_N = mkN "rubor" "ruboris " masculine ; -- [XXXAO] :: redness, blush; modesty, capacity to blush; shame, disgrace, what causes blush; + rubor_M_N = mkN "rubor" "ruboris" masculine ; -- [XXXAO] :: redness, blush; modesty, capacity to blush; shame, disgrace, what causes blush; rubramentum_N_N = mkN "rubramentum" ; -- [GXXEK] :: red ink; rubrica_F_N = mkN "rubrica" ; -- [XXXEC] :: red earth; red ocher; a law with its title written in red; rubricatus_A = mkA "rubricatus" "rubricata" "rubricatum" ; -- [XLXEO] :: red, painted red with ocher; (books) with chapter headings on red (i.e., legal); @@ -32365,47 +32356,47 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat rucheta_F_N = mkN "rucheta" ; -- [GTXEK] :: rocket; ructo_V = mkV "ructare" ; -- [XXXEC] :: belch; ructor_V = mkV "ructari" ; -- [XXXEC] :: belch; - ructus_M_N = mkN "ructus" "ructus " masculine ; -- [XXXEC] :: belching; + ructus_M_N = mkN "ructus" "ructus" masculine ; -- [XXXEC] :: belching; rudectus_A = mkA "rudectus" "rudecta" "rudectum" ; -- [XXXFS] :: full-of-rubbish; poor (of soil); - rudens_M_N = mkN "rudens" "rudentis " masculine ; -- [XXXDX] :: rope; + rudens_M_N = mkN "rudens" "rudentis" masculine ; -- [XXXDX] :: rope; rudiarius_M_N = mkN "rudiarius" ; -- [XXXFO] :: retired gladiator; (one who has received his rudis/wooden sword on retiring); rudicula_F_N = mkN "rudicula" ; -- [XXXFS] :: wooden spoon; spatula; 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); + 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; 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; + 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; ruinosus_A = mkA "ruinosus" "ruinosa" "ruinosum" ; -- [XXXDX] :: ruinous, fallen, ruined; - rumex_F_N = mkN "rumex" "rumicis " feminine ; -- [XAXEC] :: sorrel; + rumex_F_N = mkN "rumex" "rumicis" feminine ; -- [XAXEC] :: sorrel; rumifico_V2 = mkV2 (mkV "rumificare") ; -- [BXXFS] :: report; ruminalis_A = mkA "ruminalis" "ruminalis" "ruminale" ; -- [FAXNS] :: ruminating (Pliny); rumino_V = mkV "ruminare" ; -- [XXXDX] :: chew over again; chew the cud; ruminor_V = mkV "ruminari" ; -- [XXXDX] :: chew over again; chew the cud; - rumor_M_N = mkN "rumor" "rumoris " masculine ; -- [XXXBX] :: hearsay, rumor, gossip; reputation; shouting; + 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; + 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; + 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; rurigena_M_N = mkN "rurigena" ; -- [XXXDX] :: born in the country; ruro_V = mkV "rurare" ; -- [XAXEC] :: live in the country; ruror_V = mkV "rurari" ; -- [XAXEC] :: live in the country; rursum_Adv = mkAdv "rursum" ; -- [XXXDX] :: turned back, backward; on the contrary/other hand, in return, in turn, again; rursus_Adv = mkAdv "rursus" ; -- [XXXAX] :: turned back, backward; on the contrary/other hand, in return, in turn, again; - rus_N_N = mkN "rus" "ruris " neuter ; -- [XXXAX] :: country, farm; + rus_N_N = mkN "rus" "ruris" neuter ; -- [XXXAX] :: country, farm; rusceus_A = mkA "rusceus" "ruscea" "rusceum" ; -- [XXXFO] :: bright red, colored like berries of butcher's broom (Ruscus aculeatus); ruscum_N_N = mkN "ruscum" ; -- [XAXDO] :: butcher's broom; (Ruscus aculeatus, shrub w/stems flat/oval w/sharp spine); ruscus_M_N = mkN "ruscus" ; -- [XAXDO] :: butcher's broom; (Ruscus aculeatus, shrub w/stems flat/oval w/sharp spine); @@ -32413,9 +32404,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat russus_A = mkA "russus" "russa" "russum" ; -- [XXXDO] :: red; (warm/brownish shade); red-haired (person); rustica_F_N = mkN "rustica" ; -- [XXXDX] :: countrywoman, bumpkin; rusticanus_A = mkA "rusticanus" "rusticana" "rusticanum" ; -- [XXXDX] :: living in the country; - rusticatio_F_N = mkN "rusticatio" "rusticationis " feminine ; -- [XAXEC] :: living in the country; + rusticatio_F_N = mkN "rusticatio" "rusticationis" feminine ; -- [XAXEC] :: living in the country; rustice_Adv =mkAdv "rustice" "rusticius" "rusticissime" ; -- [XXXDX] :: in the manner of a rustic/countrified style; clumsily, uncouthly, boorishly; - rusticitas_F_N = mkN "rusticitas" "rusticitatis " feminine ; -- [XXXDX] :: lack of sophistication; + rusticitas_F_N = mkN "rusticitas" "rusticitatis" feminine ; -- [XXXDX] :: lack of sophistication; rusticor_V = mkV "rusticari" ; -- [XAXEC] :: live in the country; rusticulus_A = mkA "rusticulus" "rusticula" "rusticulum" ; -- [XAXEC] :: countrified; rusticulus_M_N = mkN "rusticulus" ; -- [XAXEC] :: rustic; @@ -32428,12 +32419,12 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat rutilus_A = mkA "rutilus" "rutila" "rutilum" ; -- [XXXBX] :: red, golden red, reddish yellow; rutrum_N_N = mkN "rutrum" ; -- [XXXDX] :: shovel; rutula_F_N = mkN "rutula" ; -- [XAXEC] :: little bit of rue; - rutunditas_F_N = mkN "rutunditas" "rutunditatis " feminine ; -- [XXXDO] :: roundness of form; rotundity (L+S); + 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); 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; - sabacthani_V = constV "sabacthani" ; -- [EEQFW] :: forsaken; [Heli Heli lemma ~ => My God, my God why hast thou forsaken me]; + 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; @@ -32452,13 +32443,13 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat saccus_M_N = mkN "saccus" ; -- [XXXBX] :: sack, bag; wallet; sacellum_N_N = mkN "sacellum" ; -- [XEXDX] :: shrine; sacer_A = mkA "sacer" "sacra" "sacrum" ; -- [XEXAX] :: sacred, holy, consecrated; accursed, horrible, detestable; - sacerdos_F_N = mkN "sacerdos" "sacerdotis " feminine ; -- [XEXAX] :: priest, priestess; - sacerdos_M_N = mkN "sacerdos" "sacerdotis " masculine ; -- [XEXAX] :: priest, priestess; + sacerdos_F_N = mkN "sacerdos" "sacerdotis" feminine ; -- [XEXAX] :: priest, priestess; + sacerdos_M_N = mkN "sacerdos" "sacerdotis" masculine ; -- [XEXAX] :: priest, priestess; sacerdotalis_A = mkA "sacerdotalis" "sacerdotalis" "sacerdotale" ; -- [XEXEO] :: priestly, connected with priests or priesthood; - sacerdotalis_M_N = mkN "sacerdotalis" "sacerdotalis " masculine ; -- [XEXFO] :: priests (pl.), men of priestly rank; + sacerdotalis_M_N = mkN "sacerdotalis" "sacerdotalis" masculine ; -- [XEXFO] :: priests (pl.), men of priestly rank; sacerdotialis_A = mkA "sacerdotialis" "sacerdotialis" "sacerdotiale" ; -- [XEXIO] :: priestly, connected with priests or priesthood; sacerdotium_N_N = mkN "sacerdotium" ; -- [XEXDX] :: priesthood; benefice/living (Erasmus); - sacoma_N_N = mkN "sacoma" "sacomatis " neuter ; -- [FXXEK] :: counterweight; + sacoma_N_N = mkN "sacoma" "sacomatis" neuter ; -- [FXXEK] :: counterweight; sacopenium_N_N = mkN "sacopenium" ; -- [XAXFS] :: plant gum-juice (Pliny); sacramentarium_N_N = mkN "sacramentarium" ; -- [FEXEE] :: sacramentary, book of prayers; early office-book w/rites/prayers of sacraments; sacramentum_N_N = mkN "sacramentum" ; -- [XXXDX] :: sum deposited in a civil process, guaranty; oath of allegiance; sacrament; @@ -32488,23 +32479,23 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat saeculum_N_N = mkN "saeculum" ; -- [EEXDR] :: |time; past/present/future (Plater); [in ~ => forever]; saepe_Adv =mkAdv "saepe" "saepius" "saepissime" ; -- [XXXAX] :: often, oft, oftimes, many times, frequently; saepenumero_Adv = mkAdv "saepenumero" ; -- [XXXDX] :: repeatedly; on many occasions; - saepes_F_N = mkN "saepes" "saepis " feminine ; -- [XXXCO] :: hedge; fence; anything planted/erected to form surrounding barrier; + 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; + 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); + 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; 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); - sagapenon_N_N = mkN "sagapenon" "sagapeni " neuter ; -- [XAXFS] :: plant gum-juice (Pliny); + sagacitas_F_N = mkN "sagacitas" "sagacitatis" feminine ; -- [XXXCO] :: keenness (of scent/senses); acuteness/instinct/flair; sagacity/shrewdness (L+S); + sagapenon_N_N = mkN "sagapenon" "sagapeni" neuter ; -- [XAXFS] :: plant gum-juice (Pliny); sagatus_A = mkA "sagatus" "sagata" "sagatum" ; -- [XXXEC] :: clothed in a sagum (cloak); sagax_A = mkA "sagax" "sagacis"; -- [XXXBX] :: keen-scented; acute, sharp, perceptive; sagena_F_N = mkN "sagena" ; -- [XXXFO] :: seine, drag-net; @@ -32512,19 +32503,19 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat sagitta_F_N = mkN "sagitta" ; -- [XWXAX] :: arrow; sagittarius_A = mkA "sagittarius" "sagittaria" "sagittarium" ; -- [XWXCO] :: armed with bow/arrows; used in/concerned with making/manufacturing arrows; sagittarius_M_N = mkN "sagittarius" ; -- [XWXCO] :: archer, bowman; fletcher, maker of arrows; Archer (constellation/zodiac sign); - sagittatio_F_N = mkN "sagittatio" "sagittationis " feminine ; -- [GXXEK] :: archery; + sagittatio_F_N = mkN "sagittatio" "sagittationis" feminine ; -- [GXXEK] :: archery; sagittatus_A = mkA "sagittatus" "sagittata" "sagittatum" ; -- [XWXFO] :: barbed; formed like arrows; sagittifer_A = mkA "sagittifer" "sagittifera" "sagittiferum" ; -- [XXXDX] :: carrying arrows; sagitto_V = mkV "sagittare" ; -- [XWXEC] :: shoot arrows; sagma_F_N = mkN "sagma" ; -- [EXXES] :: saddle; - sagmen_N_N = mkN "sagmen" "sagminis " neuter ; -- [XEXEC] :: bunch of sacred herbs; + sagmen_N_N = mkN "sagmen" "sagminis" neuter ; -- [XEXEC] :: bunch of sacred herbs; sagulum_N_N = mkN "sagulum" ; -- [XXXDX] :: cloak, traveling cloak; sagum_N_N = mkN "sagum" ; -- [XXXDX] :: cloak; sagus_A = mkA "sagus" "saga" "sagum" ; -- [XXXDS] :: prophetic; saisimentum_N_N = mkN "saisimentum" ; -- [FXXFY] :: attachment; seizure; requisition; transfer; - sal_M_N = mkN "sal" "salis " masculine ; -- [XXXBX] :: salt; wit; + sal_M_N = mkN "sal" "salis" masculine ; -- [XXXBX] :: salt; wit; salacaccabium_N_N = mkN "salacaccabium" ; -- [FXXEK] :: salting; - salaco_M_N = mkN "salaco" "salaconis " masculine ; -- [XXXEC] :: swaggerer, braggart; + salaco_M_N = mkN "salaco" "salaconis" masculine ; -- [XXXEC] :: swaggerer, braggart; salaputium_N_N = mkN "salaputium" ; -- [XXXEC] :: little man, manikin; salariarius_M_N = mkN "salariarius" ; -- [GXXEK] :: salaried employee; salarium_N_N = mkN "salarium" ; -- [XXXDX] :: regular official payment to the holder of a civil or military post; @@ -32535,56 +32526,56 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat salgamum_N_N = mkN "salgamum" ; -- [XXXES] :: salted pickle; pickles in brine; saliaris_A = mkA "saliaris" "saliaris" "saliare" ; -- [XXXFS] :: sumptuous, splendid, like feast of Mars (put on by Salii/priests of Mars); salictum_N_N = mkN "salictum" ; -- [XXXDX] :: collection of willows, willow grove; - saliens_F_N = mkN "saliens" "salientis " feminine ; -- [XXXDX] :: fountain, jet d'eau; outflow (of water); flow in water-clock; gushing/spouting; + saliens_F_N = mkN "saliens" "salientis" feminine ; -- [XXXDX] :: fountain, jet d'eau; outflow (of water); flow in water-clock; gushing/spouting; saligneus_A = mkA "saligneus" "salignea" "saligneum" ; -- [XAXCO] :: made of willow-wood/withes; willow-; salignus_A = mkA "salignus" "saligna" "salignum" ; -- [XAXCO] :: made of willow-wood/withes; willow-; 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); + 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; + 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; + 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; + 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; 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); + 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; + saltator_M_N = mkN "saltator" "saltatoris" masculine ; -- [XXXDX] :: dancer; saltatorius_A = mkA "saltatorius" "saltatoria" "saltatorium" ; -- [XDXDS] :: dancing-; of dancing; saltatricula_F_N = mkN "saltatricula" ; -- [DDXFS] :: little dancing girl; - saltatrix_F_N = mkN "saltatrix" "saltatricis " feminine ; -- [XXXDX] :: dancing girl; - saltatus_M_N = mkN "saltatus" "saltatus " masculine ; -- [XXXDX] :: dancing, a dance; + saltatrix_F_N = mkN "saltatrix" "saltatricis" feminine ; -- [XXXDX] :: dancing girl; + saltatus_M_N = mkN "saltatus" "saltatus" masculine ; -- [XXXDX] :: dancing, a dance; saltem_Adv = mkAdv "saltem" ; -- [XXXBO] :: at least, anyhow, in all events; (on to more practical idea); even, so much as; saltim_Adv = mkAdv "saltim" ; -- [XXXCO] :: at least, anyhow, in all events; (on to more practical idea); even, so much as; saltito_V2 = mkV2 (mkV "saltitare") ; -- [DXXFS] :: dance a lot; dance vigorously; 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.); + saltus_M_N = mkN "saltus" "saltus" masculine ; -- [XXXAO] :: narrow passage (forest/mountain); defile, pass; woodland with glades (pl.); 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; + 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; - salus_F_N = mkN "salus" "salutis " feminine ; -- [XXXAX] :: health; prosperity; good wish; greeting; salvation, safety; - salutare_N_N = mkN "salutare" "salutaris " neuter ; -- [EEXDX] :: salvation; + salus_F_N = mkN "salus" "salutis" feminine ; -- [XXXAX] :: health; prosperity; good wish; greeting; salvation, safety; + salutare_N_N = mkN "salutare" "salutaris" neuter ; -- [EEXDX] :: salvation; salutaris_A = mkA "salutaris" "salutaris" "salutare" ; -- [XXXDX] :: healthful; useful; helpful; advantageous; - salutatio_F_N = mkN "salutatio" "salutationis " feminine ; -- [XXXDX] :: greeting, salutation; formal morning call paid by client on patron/Emperor; - salutator_M_N = mkN "salutator" "salutatoris " masculine ; -- [XXXDX] :: greeter, one who greets; one who pays formal morning call as a client; - salutatrix_F_N = mkN "salutatrix" "salutatricis " feminine ; -- [XXXDS] :: female courtier; she who greets; + salutatio_F_N = mkN "salutatio" "salutationis" feminine ; -- [XXXDX] :: greeting, salutation; formal morning call paid by client on patron/Emperor; + salutator_M_N = mkN "salutator" "salutatoris" masculine ; -- [XXXDX] :: greeter, one who greets; one who pays formal morning call as a client; + salutatrix_F_N = mkN "salutatrix" "salutatricis" feminine ; -- [XXXDS] :: female courtier; she who greets; salutifer_A = mkA "salutifer" "salutifera" "salutiferum" ; -- [XXXDX] :: healing, salubrious; saving; salutary; - salutificator_M_N = mkN "salutificator" "salutificatoris " masculine ; -- [XEXFS] :: savior; one who brings to safety; + salutificator_M_N = mkN "salutificator" "salutificatoris" masculine ; -- [XEXFS] :: savior; one who brings to safety; salutigerulus_A = mkA "salutigerulus" "salutigerula" "salutigerulum" ; -- [BXXFS] :: greetings-bearing; saluto_V = mkV "salutare" ; -- [XXXBX] :: greet; wish well; visit; hail, salute; - salvatio_F_N = mkN "salvatio" "salvationis " feminine ; -- [EEXES] :: salvation; deliverance; - salvator_M_N = mkN "salvator" "salvatoris " masculine ; -- [EEXDX] :: savior; + salvatio_F_N = mkN "salvatio" "salvationis" feminine ; -- [EEXES] :: salvation; deliverance; + salvator_M_N = mkN "salvator" "salvatoris" masculine ; -- [EEXDX] :: savior; salve_Adv = mkAdv "salve" ; -- [XXXDX] :: hail!/welcome!; farewell!; [salvere jubere => to greet/bid good day]; salveo_V = mkV "salvere" ; -- [XXXBX] :: be well/in good health; [salve => hello/hail/greetings; farewell/goodbye]; salvia_F_N = mkN "salvia" ; -- [FXXEK] :: sage; @@ -32601,16 +32592,16 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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; sanctimonialis_A = mkA "sanctimonialis" "sanctimonialis" "sanctimoniale" ; -- [EEXES] :: holy; pious, religious; monastic; of sanctity/purity; [~ mulier => nun]; - sanctimonialis_F_N = mkN "sanctimonialis" "sanctimonialis " feminine ; -- [EEXFS] :: nub; religious person; - sanctio_F_N = mkN "sanctio" "sanctionis " feminine ; -- [XLXCO] :: law/ordinance/sanction/degree; binding clause; penal sanction against violation; - sanctitas_F_N = mkN "sanctitas" "sanctitatis " feminine ; -- [XXXDX] :: inviolability, sanctity, moral purity, virtue, piety, purity, holiness; - 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; + sanctimonialis_F_N = mkN "sanctimonialis" "sanctimonialis" feminine ; -- [EEXFS] :: nub; religious person; + sanctio_F_N = mkN "sanctio" "sanctionis" feminine ; -- [XLXCO] :: law/ordinance/sanction/degree; binding clause; penal sanction against violation; + sanctitas_F_N = mkN "sanctitas" "sanctitatis" feminine ; -- [XXXDX] :: inviolability, sanctity, moral purity, virtue, piety, purity, holiness; + 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; sanctus_A = mkA "sanctus" ; -- [XXXAX] :: consecrated, sacred, inviolable; venerable, august, divine, holy, pious, just; sanctus_M_N = mkN "sanctus" ; -- [EEXDX] :: saint; @@ -32618,7 +32609,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat sandaligerula_F_N = mkN "sandaligerula" ; -- [XXXEC] :: female slaves (pl.) who carried their mistresses sandals; sandalium_N_N = mkN "sandalium" ; -- [XXXEC] :: slipper, sandal; 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; + 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; @@ -32626,13 +32617,13 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat sanguineus_A = mkA "sanguineus" "sanguinea" "sanguineum" ; -- [XXXDX] :: bloody, bloodstained; blood-red; sanguinolentus_A = mkA "sanguinolentus" "sanguinolenta" "sanguinolentum" ; -- [XXXDX] :: bloody; blood-red; blood-stained; sanguinulentus_A = mkA "sanguinulentus" "sanguinulenta" "sanguinulentum" ; -- [XXXFX] :: bloody; blood-red; blood-stained; (alt. form of sanguinolentus); - sanguis_M_N = mkN "sanguis" "sanguinis " masculine ; -- [XXXAX] :: blood; family; + sanguis_M_N = mkN "sanguis" "sanguinis" masculine ; -- [XXXAX] :: blood; family; sanguisuga_F_N = mkN "sanguisuga" ; -- [XAXEO] :: leech; horseleech (Douay); - sanies_F_N = mkN "sanies" "saniei " feminine ; -- [XBXBO] :: ichorous/bloody matter/pus discharged from wound/ulcer; other such fluids; + sanies_F_N = mkN "sanies" "saniei" feminine ; -- [XBXBO] :: ichorous/bloody matter/pus discharged from wound/ulcer; other such fluids; sanitarius_A = mkA "sanitarius" "sanitaria" "sanitarium" ; -- [GXXEK] :: sanitary; - sanitas_F_N = mkN "sanitas" "sanitatis " feminine ; -- [XXXDX] :: sanity, reason; health; + sanitas_F_N = mkN "sanitas" "sanitatis" feminine ; -- [XXXDX] :: sanity, reason; health; sanna_F_N = mkN "sanna" ; -- [XXXEC] :: mocking grimace; - sannio_M_N = mkN "sannio" "sannionis " masculine ; -- [XXXEC] :: buffoon; + sannio_M_N = mkN "sannio" "sannionis" masculine ; -- [XXXEC] :: buffoon; sano_V = mkV "sanare" ; -- [XXXDX] :: cure, heal; correct; quiet; sanqualis_A = mkA "sanqualis" "sanqualis" "sanquale" ; -- [XEXFS] :: sacred-to-Sanctus; sea-osprey (when describing bird); sanus_A = mkA "sanus" "sana" "sanum" ; -- [XXXAX] :: sound; healthy; sensible; sober; sane; @@ -32640,15 +32631,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat sapidus_A = mkA "sapidus" "sapida" "sapidum" ; -- [FXXFM] :: prudent; sapiencia_F_N = mkN "sapiencia" ; -- [EXXBO] :: |prudence, discretion, discernment (L+S); good sense; good taste; intelligence; sapiens_A = mkA "sapiens" "sapientis"; -- [XXXAO] :: rational; sane, of sound mind; wise, judicious, understanding; discreet; - sapiens_M_N = mkN "sapiens" "sapientis " masculine ; -- [XXXCO] :: wise (virtuous) man, sage, philosopher; teacher of wisdom; + sapiens_M_N = mkN "sapiens" "sapientis" masculine ; -- [XXXCO] :: wise (virtuous) man, sage, philosopher; teacher of wisdom; sapienter_Adv = mkAdv "sapienter" ; -- [XXXDX] :: wisely, sensibly; 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; sapio_V2 = mkV2 (mkV "sapere" "sapio" "sapivi" nonExist ) ; -- [XXXBX] :: taste of; understand; have sense; - sapo_M_N = mkN "sapo" "saponis " masculine ; -- [FXXEK] :: soap; + 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; + sapor_M_N = mkN "sapor" "saporis" masculine ; -- [XXXBX] :: taste, flavor; sense of taste; sapphir_F_N = mkN "sapphir" ; -- [XXHDO] :: blue gem; (probably lapis lazuli); sapphire (L+S); sapphirus_F_N = mkN "sapphirus" ; -- [XXHDO] :: blue gem; (probably lapis lazuli); sapphire (L+S); sapphyrus_F_N = mkN "sapphyrus" ; -- [XXHDW] :: blue gem; (probably lapis lazuli); sapphire (L+S); @@ -32660,12 +32651,12 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat sarabalum_N_N = mkN "sarabalum" ; -- [EXXFS] :: loose/wide trousers (pl.); (worn in the East); sarabara_F_N = mkN "sarabara" ; -- [XXXFO] :: loose/wide trousers (pl.); (worn in the East); sarabarum_N_N = mkN "sarabarum" ; -- [XXXFS] :: loose/wide trousers (pl.); (worn in the East); - sarcasmos_M_N = mkN "sarcasmos" "sarcasmi " masculine ; -- [XXXFS] :: taunt; sarcasm; + sarcasmos_M_N = mkN "sarcasmos" "sarcasmi" masculine ; -- [XXXFS] :: taunt; sarcasm; sarcina_F_N = mkN "sarcina" ; -- [XXXBO] :: pack, bundle, soldier's kit; baggage (pl.), belongings, chattels; load, burden; sarcinarius_A = mkA "sarcinarius" "sarcinaria" "sarcinarium" ; -- [XXXFO] :: employed in carrying packs; - sarcinator_M_N = mkN "sarcinator" "sarcinatoris " masculine ; -- [XXXEC] :: cobbler; + 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; + 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; @@ -32679,56 +32670,56 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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; + 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; 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; + 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; - satelles_M_N = mkN "satelles" "satellitis " masculine ; -- [HTXEK] :: S:satellite; + satelles_F_N = mkN "satelles" "satellitis" feminine ; -- [XXXDX] :: attendant; courtier; follower; life guard; companion; accomplice, abettor; + satelles_M_N = mkN "satelles" "satellitis" masculine ; -- [HTXEK] :: S:satellite; satellitium_N_N = mkN "satellitium" ; -- [XXXFS] :: escort; E:guard, protection; - satias_F_N = mkN "satias" "satiatis " feminine ; -- [XXXDX] :: sufficiency, abundance; distaste caused by excess; - 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); + satias_F_N = mkN "satias" "satiatis" feminine ; -- [XXXDX] :: sufficiency, abundance; distaste caused by excess; + 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; 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; + 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); 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; + sator_M_N = mkN "sator" "satoris" masculine ; -- [XXXDX] :: sower, planter; founder, progenitor (usu. divine); originator; satrapa_M_N = mkN "satrapa" ; -- [FLXEE] :: governor; (provincial); viceroy; satrap; - satrapes_M_N = mkN "satrapes" "satrapis " masculine ; -- [FLXEE] :: governor; (provincial); viceroy; satrap; - satraps_M_N = mkN "satraps" "satrapis " masculine ; -- [FLXEE] :: governor; (provincial); viceroy; satrap; + satrapes_M_N = mkN "satrapes" "satrapis" masculine ; -- [FLXEE] :: governor; (provincial); viceroy; satrap; + satraps_M_N = mkN "satraps" "satrapis" masculine ; -- [FLXEE] :: governor; (provincial); viceroy; satrap; satur_A = mkA "satur" "satura" "saturum" ; -- [XXXDX] :: well-fed, replete; rich; saturated; satura_F_N = mkN "satura" ; -- [XXXDX] :: satire; satureia_F_N = mkN "satureia" ; -- [XAXEC] :: herb (savory); satureium_N_N = mkN "satureium" ; -- [XAXEC] :: herb (savory)i (pl.) - saturitas_F_N = mkN "saturitas" "saturitatis " feminine ; -- [XXXCO] :: |condition of being imbued with a color to saturation; + saturitas_F_N = mkN "saturitas" "saturitatis" feminine ; -- [XXXCO] :: |condition of being imbued with a color to saturation; saturo_V = mkV "saturare" ; -- [XXXDX] :: fill to repletion, sate, satisfy; drench, saturate; satus_A = mkA "satus" "sata" "satum" ; -- [XXXDX] :: sprung (from); native; - satyrion_N_N = mkN "satyrion" "satyrii " neuter ; -- [DAXNS] :: satyrion plant; drink made from it (Pliny); + satyrion_N_N = mkN "satyrion" "satyrii" neuter ; -- [DAXNS] :: satyrion plant; drink made from it (Pliny); satyriscus_M_N = mkN "satyriscus" ; -- [XXXDS] :: little satyr; satyrus_M_N = mkN "satyrus" ; -- [XXXDX] :: satyr; satyric play; - sauciatio_F_N = mkN "sauciatio" "sauciationis " feminine ; -- [XXXDS] :: wounding; + sauciatio_F_N = mkN "sauciatio" "sauciationis" feminine ; -- [XXXDS] :: wounding; saucio_V = mkV "sauciare" ; -- [XXXDX] :: wound, hurt; gash, stab; saucius_A = mkA "saucius" "saucia" "saucium" ; -- [XXXBX] :: wounded; ill, sick; sauna_F_N = mkN "sauna" ; -- [GXXEK] :: sauna; - saviatio_F_N = mkN "saviatio" "saviationis " feminine ; -- [XXXDS] :: kissing; + saviatio_F_N = mkN "saviatio" "saviationis" feminine ; -- [XXXDS] :: kissing; saviolum_N_N = mkN "saviolum" ; -- [XXXDX] :: tender kiss; savior_V = mkV "saviari" ; -- [XXXEC] :: kiss; savium_N_N = mkN "savium" ; -- [XXXDX] :: kiss; sweetheart; @@ -32741,13 +32732,13 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat saxum_N_N = mkN "saxum" ; -- [XXXAX] :: stone; scabellum_N_N = mkN "scabellum" ; -- [XDXEC] :: footstool; a musical instrument played with the foot; 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; + 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; 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; + scabrities_F_N = mkN "scabrities" "scabritiae" feminine ; -- [XXXFS] :: roughness; B:itch; scab; scabrosus_A = mkA "scabrosus" "scabrosa" "scabrosum" ; -- [DXXES] :: scabrous, rough; scaccarium_N_N = mkN "scaccarium" ; -- [FDXDM] :: chessboard, game of chess; scaciludium_N_N = mkN "scaciludium" ; -- [GXXEK] :: chess (game); @@ -32763,7 +32754,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; @@ -32775,33 +32766,33 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat scandalose_Adv = mkAdv "scandalose" ; -- [GXXEK] :: scandalously; 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; + 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; scapula_F_N = mkN "scapula" ; -- [XBXEC] :: shoulder-blades (pl.); shoulder, back; wings (Ecc); - scapulare_N_N = mkN "scapulare" "scapularis " neuter ; -- [FXXEM] :: |sword-belt; shoulder-strap; + scapulare_N_N = mkN "scapulare" "scapularis" neuter ; -- [FXXEM] :: |sword-belt; shoulder-strap; scapularium_N_N = mkN "scapularium" ; -- [FXXEM] :: sword-belt; shoulder-strap; scapus_M_N = mkN "scapus" ; -- [XXXDX] :: stem/stalk of a plant; shaft/upright of column/post/door frame/scroll; scarabeus_M_N = mkN "scarabeus" ; -- [XAXFS] :: beetle; scarab(Pliny); - scariphatio_F_N = mkN "scariphatio" "scariphationis " feminine ; -- [XXXFS] :: scarification; a scratched opening; (L+S gives scarifatio); + scariphatio_F_N = mkN "scariphatio" "scariphationis" feminine ; -- [XXXFS] :: scarification; a scratched opening; (L+S gives scarifatio); scaripho_V = mkV "scariphare" ; -- [XXXFS] :: scratch open; scarify; (L+S gives scarifo, JFW's texts have -ph-); 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); 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; + 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; + scazon_M_N = mkN "scazon" "scazontis" masculine ; -- [XPXEC] :: iambic trimeter with a spondee or trochee in the last foot; 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; scelestus_A = mkA "scelestus" "scelesta" "scelestum" ; -- [XXXDX] :: infamous, wicked; accursed; scellinus_M_N = mkN "scellinus" ; -- [GXXEK] :: schilling (money); - scelus_N_N = mkN "scelus" "sceleris " neuter ; -- [XXXAX] :: crime; calamity; wickedness, sin, evil deed; + scelus_N_N = mkN "scelus" "sceleris" neuter ; -- [XXXAX] :: crime; calamity; wickedness, sin, evil deed; scena_F_N = mkN "scena" ; -- [FXXDX] :: theater stage, "boards"; scene; a theater; public stage/view, publicity; scenofactorius_A = mkA "scenofactorius" "scenofactoria" "scenofactorium" ; -- [EXXFS] :: of/pertaining to the making of tents; [ars ~ => business of tent-making]; scenopegia_F_N = mkN "scenopegia" ; -- [EEQDS] :: Jewish Feast of Tabernacles; @@ -32815,18 +32806,18 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat schedinummus_M_N = mkN "schedinummus" ; -- [GXXEK] :: banknote; schedula_F_N = mkN "schedula" ; -- [FXXEM] :: small paper-leaf; L:schedule; document; proclamation; schema_F_N = mkN "schema" ; -- [XXXEC] :: shape, figure, form; - schema_N_N = mkN "schema" "schematis " neuter ; -- [XXXEC] :: shape, figure, form; - schematismos_M_N = mkN "schematismos" "schematismi " masculine ; -- [XGXFS] :: florid/figurative mode of speech; + schema_N_N = mkN "schema" "schematis" neuter ; -- [XXXEC] :: shape, figure, form; + schematismos_M_N = mkN "schematismos" "schematismi" masculine ; -- [XGXFS] :: florid/figurative mode of speech; schematismus_M_N = mkN "schematismus" ; -- [XGXFZ] :: florid/figurative mode of speech; - schisma_N_N = mkN "schisma" "schismatis " neuter ; -- [DEXDS] :: schism/split/deep divide; separation/breaking away; (refusal to submit to Pope); + schisma_N_N = mkN "schisma" "schismatis" neuter ; -- [DEXDS] :: schism/split/deep divide; separation/breaking away; (refusal to submit to Pope); schismaticus_A = mkA "schismaticus" "schismatica" "schismaticum" ; -- [DEXEE] :: schismatic; pertaining to schism; schismaticus_M_N = mkN "schismaticus" ; -- [DEXES] :: schismatic, separatist, seceder; schoenicula_F_N = mkN "schoenicula" ; -- [XXXFS] :: scented prostitute; prostitute anointed with schoenum; - schoenobates_M_N = mkN "schoenobates" "schoenobatae " masculine ; -- [XDXEC] :: rope-walker; + schoenobates_M_N = mkN "schoenobates" "schoenobatae" masculine ; -- [XDXEC] :: rope-walker; schoenus_M_N = mkN "schoenus" ; -- [XAXES] :: aromatic rush; Persian distance; schola_F_N = mkN "schola" ; -- [XGXAO] :: school; followers of a system/teacher/subject; thesis/subject; area w/benches; scholaris_A = mkA "scholaris" "scholaris" "scholare" ; -- [XGXFO] :: of/belonging to a school; used in school; - scholaris_M_N = mkN "scholaris" "scholaris " masculine ; -- [DXXBS] :: scholar, student (Bee); imperial guard (pl.) (L+S); + scholaris_M_N = mkN "scholaris" "scholaris" masculine ; -- [DXXBS] :: scholar, student (Bee); imperial guard (pl.) (L+S); scholarus_A = mkA "scholarus" "scholara" "scholarum" ; -- [XGXFO] :: of/connected with the schola in which a collegium met; scholastica_F_N = mkN "scholastica" ; -- [XGXFO] :: debate on imaginary case in school of rhetoric (controversia scholastica); scholasticus_A = mkA "scholasticus" "scholastica" "scholasticum" ; -- [XGXCO] :: of/appropriate to a school of rhetoric/any school; @@ -32841,7 +32832,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - scindo_V2 = mkV2 (mkV "scindere" "scindo" "scidi" "scissus ") ; -- [XXXAO] :: tear, split, divide; rend, cut to pieces; tear in rage/grief/despair; + 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); @@ -32854,10 +32845,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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" "scio" "scivi" "scitus ") ; -- [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; + scipio_M_N = mkN "scipio" "scipionis" masculine ; -- [XXXDX] :: ceremonial rod, baton; scipus_M_N = mkN "scipus" ; -- [FXXCL] :: bowl, goblet, cup; communion cup; scirpea_F_N = mkN "scirpea" ; -- [XAXEO] :: large basket made of bulrushes; basket-work (Cas); scirpia_F_N = mkN "scirpia" ; -- [XAXEO] :: large basket made of bulrushes; basket-work (Cas); @@ -32866,32 +32857,32 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat scirpo_V = mkV "scirpare" ; -- [XAXDX] :: plait/make (baskets, etc.) from bulrushes; scirpus_A = mkA "scirpus" "scirpa" "scirpum" ; -- [XAXEO] :: woven/made of bulrushes; basket-work (Cas); scirpus_M_N = mkN "scirpus" ; -- [XAXEO] :: marsh plant, bulrush; (Scripus lacustris); riddle (like intricate basket-work); - scirros_M_N = mkN "scirros" "scirri " masculine ; -- [XBXNO] :: hard tumor; + 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); + 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; + scissor_M_N = mkN "scissor" "scissoris" masculine ; -- [XXXDX] :: carver; scissura_F_N = mkN "scissura" ; -- [XXXDX] :: cleft, fissure; scitamentum_N_N = mkN "scitamentum" ; -- [XXXDS] :: food dainty; G:nicety; scitor_V = mkV "scitari" ; -- [XXXDX] :: inquire, ask; scitulus_A = mkA "scitulus" "scitula" "scitulum" ; -- [XXXDS] :: neat; elegant; scitum_N_N = mkN "scitum" ; -- [XXXDX] :: ordinance, statute; scitus_A = mkA "scitus" "scita" "scitum" ; -- [XXXDX] :: having practical knowledge of, neat, ingenious; nice, excellent; - scitus_M_N = mkN "scitus" "scitus " masculine ; -- [XLXDS] :: decree; + scitus_M_N = mkN "scitus" "scitus" masculine ; -- [XLXDS] :: decree; sciurus_M_N = mkN "sciurus" ; -- [XXXEC] :: squirrel; scius_A = mkA "scius" "scia" "scium" ; -- [XXXEO] :: cognizant, possessing knowledge; skilled/expert (in w/ABL); sclodia_F_N = mkN "sclodia" ; -- [GXXEK] :: sledge, sleigh; 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; + 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; scolasticus_M_N = mkN "scolasticus" ; -- [XGXCO] :: student/teacher, one who attends school; one who studies, scholar; - scolymos_M_N = mkN "scolymos" "scolymi " masculine ; -- [DAXNS] :: edible thistle (Pliny); + 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 "scopere" "scopo" nonExist nonExist) ; -- [EXXFW] :: probe; look into; search; scope out; sweep (Douay) (prob. confused with V 1 1); @@ -32899,37 +32890,37 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat scopulus_M_N = mkN "scopulus" ; -- [XXXBX] :: rock, boulder; scorbutus_M_N = mkN "scorbutus" ; -- [GBXEK] :: scurvy; scoria_F_N = mkN "scoria" ; -- [XXXDS] :: slag, dross; (of metals); - scorpio_M_N = mkN "scorpio" "scorpionis " masculine ; -- [XAXBO] :: scorpion; (animal/constellation/zodiacal sign); small catapult; plant; - scorpion_N_N = mkN "scorpion" "scorpii " neuter ; -- [XAXNO] :: plant w/poisonous root like scorpion; (leopard's-bane, Doronicum caucasicum?); - scorpios_M_N = mkN "scorpios" "scorpii " masculine ; -- [XAXCO] :: scorpion; (animal/constellation/zodiacal sign); small catapult; plant; + scorpio_M_N = mkN "scorpio" "scorpionis" masculine ; -- [XAXBO] :: scorpion; (animal/constellation/zodiacal sign); small catapult; plant; + scorpion_N_N = mkN "scorpion" "scorpii" neuter ; -- [XAXNO] :: plant w/poisonous root like scorpion; (leopard's-bane, Doronicum caucasicum?); + scorpios_M_N = mkN "scorpios" "scorpii" masculine ; -- [XAXCO] :: scorpion; (animal/constellation/zodiacal sign); small catapult; plant; scorpius_M_N = mkN "scorpius" ; -- [XAXCO] :: scorpion; (animal/constellation/zodiacal sign); small catapult; plant; - scortator_M_N = mkN "scortator" "scortatoris " masculine ; -- [XXXDX] :: fornicator; + scortator_M_N = mkN "scortator" "scortatoris" masculine ; -- [XXXDX] :: fornicator; scorteum_N_N = mkN "scorteum" ; -- [XXXDX] :: thing made of hide/hides/leather; scorteus_A = mkA "scorteus" "scortea" "scorteum" ; -- [XXXDX] :: of hide/hides, leather; scortillum_N_N = mkN "scortillum" ; -- [XXXDX] :: young prostitute; wench; scortor_V = mkV "scortari" ; -- [XXXDX] :: consort with harlots/prostitutes; act like a harlot/promiscuously; scortum_N_N = mkN "scortum" ; -- [XXXDX] :: harlot, prostitute; male prostitute; skin, hide; - screator_M_N = mkN "screator" "screatoris " masculine ; -- [BXXFS] :: hawker; throat-clearer; - screatus_M_N = mkN "screatus" "screatus " masculine ; -- [XXXES] :: hawking; throat-clearing; + screator_M_N = mkN "screator" "screatoris" masculine ; -- [BXXFS] :: hawker; throat-clearer; + screatus_M_N = mkN "screatus" "screatus" masculine ; -- [XXXES] :: hawking; throat-clearing; 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; + 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; scripto_V2 = mkV2 (mkV "scriptare") ; -- [EXXEP] :: write; compose; - scriptor_M_N = mkN "scriptor" "scriptoris " masculine ; -- [XXXBX] :: writer, author; scribe; + scriptor_M_N = mkN "scriptor" "scriptoris" masculine ; -- [XXXBX] :: writer, author; scribe; scriptorius_A = mkA "scriptorius" "scriptoria" "scriptorium" ; -- [GXXEK] :: writing; scriptulum_N_N = mkN "scriptulum" ; -- [XSXCO] :: unit of weight (1/24 unica, 1/288 libra); 1/288 of any unit (esp. iugerum); scriptum_N_N = mkN "scriptum" ; -- [XXXDX] :: something written; written communication; literary work; scriptura_F_N = mkN "scriptura" ; -- [XXXBX] :: writing; composition; scripture; - scriptus_M_N = mkN "scriptus" "scriptus " masculine ; -- [XXXDS] :: scribe's office; being a clerk; + scriptus_M_N = mkN "scriptus" "scriptus" masculine ; -- [XXXDS] :: scribe's office; being a clerk; scripula_F_N = mkN "scripula" ; -- [XAXNO] :: kind of vine/grape (used for raisins); scripulatim_Adv = mkAdv "scripulatim" ; -- [XBXNO] :: by amounts of a scripulum (1/288 libra/pound); (2 grams); (pharmacy dose); scripulum_N_N = mkN "scripulum" ; -- [XSXCO] :: weight unit (1/24 unica, 1/288 libra, 2 grams); 1/288 of a unit (esp. iugerum); - scrobis_F_N = mkN "scrobis" "scrobis " feminine ; -- [XXXDX] :: ditch, trench; dike; - scrobis_M_N = mkN "scrobis" "scrobis " masculine ; -- [XXXDX] :: ditch, trench; dike; + scrobis_F_N = mkN "scrobis" "scrobis" feminine ; -- [XXXDX] :: ditch, trench; dike; + scrobis_M_N = mkN "scrobis" "scrobis" masculine ; -- [XXXDX] :: ditch, trench; dike; scrofa_F_N = mkN "scrofa" ; -- [XAXCO] :: sow; (esp. one used for breeding); scrofinus_A = mkA "scrofinus" "scrofina" "scrofinum" ; -- [XAXNO] :: of/derived from a sow; scrofipascus_A = mkA "scrofipascus" "scrofipasca" "scrofipascum" ; -- [XAXNO] :: that feeds sows; @@ -32939,7 +32930,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat scrupeus_A = mkA "scrupeus" "scrupea" "scrupeum" ; -- [XXXDX] :: composed of sharp rocks; scruposus_A = mkA "scruposus" "scruposa" "scruposum" ; -- [XXXEC] :: of sharp stones, rugged, rough; scrupula_F_N = mkN "scrupula" ; -- [XXXEC] :: anxiety, doubt, scruple; - scrupulositas_F_N = mkN "scrupulositas" "scrupulositatis " feminine ; -- [FXXEM] :: rough spot, jagged edge; hesitation; + scrupulositas_F_N = mkN "scrupulositas" "scrupulositatis" feminine ; -- [FXXEM] :: rough spot, jagged edge; hesitation; scrupulosus_A = mkA "scrupulosus" "scrupulosa" "scrupulosum" ; -- [XXXDX] :: careful, accurate, scrupulous; scrupulum_N_N = mkN "scrupulum" ; -- [XSXCO] :: unit of weight (1/24 unica, 1/288 libra); 1/288 of any unit (esp. iugerum); scrupulus_M_N = mkN "scrupulus" ; -- [XXXEC] :: small stone; fraction of an ounce (Erasmus); scruple; @@ -32947,28 +32938,28 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat scrupus_M_N = mkN "scrupus" ; -- [XXXEC] :: sharp stone; scruta_F_N = mkN "scruta" ; -- [EXXEP] :: pot; scrutabilis_A = mkA "scrutabilis" "scrutabilis" "scrutabile" ; -- [FXXEM] :: searchable; - scrutamen_N_N = mkN "scrutamen" "scrutaminis " neuter ; -- [FXXEM] :: scrutiny; + scrutamen_N_N = mkN "scrutamen" "scrutaminis" neuter ; -- [FXXEM] :: scrutiny; scrutaria_F_N = mkN "scrutaria" ; -- [XXXFK] :: second-hand good; flea-market; scrutarius_M_N = mkN "scrutarius" ; -- [XXXEO] :: junk merchant; second hand dealer; broker (Cal); - scrutatio_F_N = mkN "scrutatio" "scrutationis " feminine ; -- [FXXEM] :: investigating, vetting, scrutinizing; + scrutatio_F_N = mkN "scrutatio" "scrutationis" feminine ; -- [FXXEM] :: investigating, vetting, scrutinizing; scrutillus_M_N = mkN "scrutillus" ; -- [XXXFO] :: kind of sausage; scrutinium_N_N = mkN "scrutinium" ; -- [XXXEO] :: search (record), examination (for hidden); inquiry/investigation/scrutiny (L+S); scrutino_V2 = mkV2 (mkV "scrutinare") ; -- [EXXDP] :: investigate; examine closely/strictly; scrutinize; scrutinor_V = mkV "scrutinari" ; -- [EXXDP] :: investigate; examine closely/strictly; scrutinize; scruto_V2 = mkV2 (mkV "scrutare") ; -- [DXXDS] :: search/probe/examine carefully/thoroughly; explore/scan/scrutinize/investigate; - scrutor_M_N = mkN "scrutor" "scrutoris " masculine ; -- [XXXCO] :: searcher/investigator/inquirer; scrutinizer/watcher/examiner; who looks closely; + 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; + 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; + sculptor_M_N = mkN "sculptor" "sculptoris" masculine ; -- [XDXEC] :: sculptor; scurra_M_N = mkN "scurra" ; -- [XXXBO] :: fashionable idler, man about town, rake; professional buffoon, comedian/clown; - scurrilitas_F_N = mkN "scurrilitas" "scurrilitatis " feminine ; -- [XXXEO] :: buffoonery; quality of a scurra, untimely/offensive humor; + scurrilitas_F_N = mkN "scurrilitas" "scurrilitatis" feminine ; -- [XXXEO] :: buffoonery; quality of a scurra, untimely/offensive humor; scurriliter_Adv = mkAdv "scurriliter" ; -- [XXXFO] :: in the manner of a scurra, with untimely/offensive humor/buffoonery; scurror_V = mkV "scurrari" ; -- [XXXFO] :: play the "man about town"; dine off one's jokes; - scutale_N_N = mkN "scutale" "scutalis " neuter ; -- [XXXFO] :: device for controlling missile in type of sling; thong of a sling (L+S); - scutarior_M_N = mkN "scutarior" "scutarioris " masculine ; -- [EXXDW] :: shield-bearer; + scutale_N_N = mkN "scutale" "scutalis" neuter ; -- [XXXFO] :: device for controlling missile in type of sling; thong of a sling (L+S); + scutarior_M_N = mkN "scutarior" "scutarioris" masculine ; -- [EXXDW] :: shield-bearer; scutarius_A = mkA "scutarius" "scutaria" "scutarium" ; -- [EWXFS] :: of/on/belonging to shield; scutarius_M_N = mkN "scutarius" ; -- [XWXFO] :: shield maker; guard equipped with shield/scutum (Late empire) (L+S); scutatus_A = mkA "scutatus" "scutata" "scutatum" ; -- [XXXDX] :: armed with a long wooden shield; @@ -32985,35 +32976,35 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat scymnus_M_N = mkN "scymnus" ; -- [XAXEC] :: cub, whelp; 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; + scytale_F_N = mkN "scytale" "scytales" feminine ; -- [XXXEO] :: wooden cylinder; roller; secret writing/letter (L+S); cylindrical snake; 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; + 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; + 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; + 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; + 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; + 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; 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; + sectio_F_N = mkN "sectio" "sectionis" feminine ; -- [XBXBO] :: cutting/severing; mowing; surgery; castration; disposal/buying up booty; sectivus_A = mkA "sectivus" "sectiva" "sectivum" ; -- [GXXEK] :: severed; sectioned; sector_V = mkV "sectari" ; -- [XXXBX] :: follow continually; pursue; pursue with punishment; hunt out; run after; sectura_F_N = mkN "sectura" ; -- [XXXDX] :: quarry (pl.); - secubitus_M_N = mkN "secubitus" "secubitus " masculine ; -- [XXXDX] :: sleeping apart from one's spouse or lover; + secubitus_M_N = mkN "secubitus" "secubitus" masculine ; -- [XXXDX] :: sleeping apart from one's spouse or lover; 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; + secularitas_F_N = mkN "secularitas" "secularitatis" feminine ; -- [EEXCM] :: worldliness; worldly life; seculariter_Adv = mkAdv "seculariter" ; -- [EEXCM] :: worldly, in a worldly fashion; 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); @@ -33026,70 +33017,70 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; 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; + 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; secus_N = constN "secus" neuter ; -- [XBXDS] :: sex; - secutor_M_N = mkN "secutor" "secutoris " masculine ; -- [XXXDS] :: pursuer; attendant; + secutor_M_N = mkN "secutor" "secutoris" masculine ; -- [XXXDS] :: pursuer; attendant; secuutus_M_N = mkN "secuutus" ; -- [FXXEN] :: follower, pursuer; 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; + 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; sedecula_F_N = mkN "sedecula" ; -- [XXXEC] :: low seat, stool; sedentarius_A = mkA "sedentarius" "sedentaria" "sedentarium" ; -- [XXXDS] :: sitting; sedentary; sedeo_V = mkV "sedere" ; -- [XXXAX] :: sit, remain; settle; encamp; - sedes_F_N = mkN "sedes" "sedis " feminine ; -- [XXXAX] :: seat; home, residence; settlement, habitation; chair; - sedile_N_N = mkN "sedile" "sedilis " neuter ; -- [XXXDX] :: seat, chair, bench, stool; that which may be sat on; armchair; - seditio_F_N = mkN "seditio" "seditionis " feminine ; -- [XXXBX] :: sedition, riot, strife,rebellion; + sedes_F_N = mkN "sedes" "sedis" feminine ; -- [XXXAX] :: seat; home, residence; settlement, habitation; chair; + sedile_N_N = mkN "sedile" "sedilis" neuter ; -- [XXXDX] :: seat, chair, bench, stool; that which may be sat on; armchair; + 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.); + 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; - sedulitas_F_N = mkN "sedulitas" "sedulitatis " feminine ; -- [XXXDX] :: assiduity, painstaking attention (to); + sedulitas_F_N = mkN "sedulitas" "sedulitatis" feminine ; -- [XXXDX] :: assiduity, painstaking attention (to); sedulo_Adv = mkAdv "sedulo" ; -- [XXXDX] :: carefully; sedulus_A = mkA "sedulus" "sedula" "sedulum" ; -- [XXXBX] :: attentive, painstaking, sedulous; - seges_F_N = mkN "seges" "segetis " feminine ; -- [XXXBX] :: grain field; crop; + seges_F_N = mkN "seges" "segetis" feminine ; -- [XXXBX] :: grain field; crop; segestra_F_N = mkN "segestra" ; -- [EXXFS] :: bad-weather-covering; - segestre_N_N = mkN "segestre" "segestris " neuter ; -- [EXXFS] :: bad-weather-covering; + segestre_N_N = mkN "segestre" "segestris" neuter ; -- [EXXFS] :: bad-weather-covering; 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; segnis_A = mkA "segnis" ; -- [XXXAO] :: slow, sluggish, torpid, inactive; slothful, unenergetic; slow moving, slow; - segnitas_F_N = mkN "segnitas" "segnitatis " feminine ; -- [XXXEO] :: sloth, sluggishness; + 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; - segnities_F_N = mkN "segnities" "segnitiei " feminine ; -- [XXXCO] :: sloth, sluggishness, inertia; weakness, feebleness; disinclination for action; + segnities_F_N = mkN "segnities" "segnitiei" feminine ; -- [XXXCO] :: sloth, sluggishness, inertia; weakness, feebleness; disinclination for action; segrego_V = mkV "segregare" ; -- [XXXDX] :: remove, separate; seichus_M_N = mkN "seichus" ; -- [GXXEK] :: sheik; seisina_F_N = mkN "seisina" ; -- [FLXFJ] :: seisin; possession as freehold; seisitus_A = mkA "seisitus" "seisita" "seisitum" ; -- [FLXFJ] :: seized; taken in seisin; seiugatus_A = mkA "seiugatus" "seiugata" "seiugatum" ; -- [XXXEC] :: separated; - seiugis_M_N = mkN "seiugis" "seiugis " masculine ; -- [XXXEC] :: chariot drawn by six horses; + 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; + 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; + 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; + 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; sellariolus_A = mkA "sellariolus" "sellariola" "sellariolum" ; -- [XXXFO] :: of/for sitting, equipped w/stools (not couches); (like common diningroom); sellaris_A = mkA "sellaris" "sellaris" "sellare" ; -- [DXXES] :: chair-; of a chair/seat; furnished w/saddles; - sellaris_M_N = mkN "sellaris" "sellaris " masculine ; -- [DXXFS] :: saddle; + sellaris_M_N = mkN "sellaris" "sellaris" masculine ; -- [DXXFS] :: saddle; sellarium_N_N = mkN "sellarium" ; -- [XXXEO] :: privy, toilet; outhouse; sellarius_M_N = mkN "sellarius" ; -- [XXXEO] :: male prostitute (on a couch); member of chariot team (w/unknown function); sellisternium_N_N = mkN "sellisternium" ; -- [XEXEO] :: religious banquet w/seats for goddesses; religious banquets (pl.) for goddesses; @@ -33097,11 +33088,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat sellularius_A = mkA "sellularius" "sellularia" "sellularium" ; -- [XXXEO] :: sedentary; engaged in a sedentary occupation/trade; of a chair/stool; semanticus_A = mkA "semanticus" "semantica" "semanticum" ; -- [GXXEK] :: semantics; semaphorum_N_N = mkN "semaphorum" ; -- [GXXEK] :: traffic signal; - semen_N_N = mkN "semen" "seminis " neuter ; -- [XXXAX] :: seed; + semen_N_N = mkN "semen" "seminis" neuter ; -- [XXXAX] :: seed; semenstris_A = mkA "semenstris" "semenstris" "semenstre" ; -- [XXXDX] :: half-yearly; of six month duration; sementerium_N_N = mkN "sementerium" ; -- [FXXEM] :: cemetery; sementifer_A = mkA "sementifer" "sementifera" "sementiferum" ; -- [XAXEC] :: seed-bearing, fruitful; - sementis_F_N = mkN "sementis" "sementis " feminine ; -- [XXXDX] :: sowing, planting; + sementis_F_N = mkN "sementis" "sementis" feminine ; -- [XXXDX] :: sowing, planting; sementivum_N_N = mkN "sementivum" ; -- [XAXEO] :: crops (pl.) sown in normal sowing time (for Romans late autumn); sementivus_A = mkA "sementivus" "sementiva" "sementivum" ; -- [XAXCO] :: of sowing/seed-time; [feriae ~ => festival after sowing; pirum ~ => late pear]; semermis_A = mkA "semermis" "semermis" "semerme" ; -- [XWXDO] :: half-armed; badly equipped; @@ -33120,7 +33111,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat semicintium_N_N = mkN "semicintium" ; -- [EXXFW] :: narrow girdle; semi-girdle (L+S); narrow apron; semicircumferentia_F_N = mkN "semicircumferentia" ; -- [FXXFM] :: semi-circumference; semicoctus_A = mkA "semicoctus" "semicocta" "semicoctum" ; -- [XXXFS] :: half-cooked; - semicolon_N_N = mkN "semicolon" "semicoli " neuter ; -- [GGXEK] :: semicolon; + semicolon_N_N = mkN "semicolon" "semicoli" neuter ; -- [GGXEK] :: semicolon; semicorda_F_N = mkN "semicorda" ; -- [FSXEZ] :: semicord; semi-chord of circle (mathematics); semicrematus_A = mkA "semicrematus" "semicremata" "semicrematum" ; -- [XXXDX] :: half-burned; semicremus_A = mkA "semicremus" "semicrema" "semicremum" ; -- [XXXDX] :: half-burned; @@ -33139,7 +33130,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat semigravis_A = mkA "semigravis" "semigravis" "semigrave" ; -- [XXXEC] :: half-overcome; semigro_V = mkV "semigrare" ; -- [XXXFS] :: go away; semihians_A = mkA "semihians" "semihiantis"; -- [XXXDX] :: half-open; - semihomo_M_N = mkN "semihomo" "semihominis " masculine ; -- [XXXDX] :: half-man, half-human (half monster); + semihomo_M_N = mkN "semihomo" "semihominis" masculine ; -- [XXXDX] :: half-man, half-human (half monster); semihora_F_N = mkN "semihora" ; -- [XXXEC] :: half hour; semilacer_A = mkA "semilacer" "semilacera" "semilacerum" ; -- [XXXDX] :: half-mangled; semilautus_A = mkA "semilautus" "semilauta" "semilautum" ; -- [XXXFS] :: half-washed; @@ -33147,10 +33138,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat semilixa_M_N = mkN "semilixa" ; -- [XXXEC] :: half sutler, "little more than a camp follower"; semimarinus_A = mkA "semimarinus" "semimarina" "semimarinum" ; -- [XXXDX] :: half belonging to the_sea; semimas_A = mkA "semimas" "semimaris"; -- [XXXDS] :: emasculated; - semimas_M_N = mkN "semimas" "semimaris " masculine ; -- [XXXDX] :: half-male; hermaphrodite; unmanned/emasculated person; + semimas_M_N = mkN "semimas" "semimaris" masculine ; -- [XXXDX] :: half-male; hermaphrodite; unmanned/emasculated person; seminarista_M_N = mkN "seminarista" ; -- [GXXEK] :: seminarist; one who goes to seminars; seminarium_N_N = mkN "seminarium" ; -- [GXXEK] :: seminary; - seminator_M_N = mkN "seminator" "seminatoris " masculine ; -- [XXXDS] :: originator; producer; + seminator_M_N = mkN "seminator" "seminatoris" masculine ; -- [XXXDS] :: originator; producer; seminex_A = mkA "seminex" "seminecis"; -- [XXXDX] :: half-dead; seminiverbius_M_N = mkN "seminiverbius" ; -- [EXXFP] :: babbler; word-sower (Rhiems); semino_V = mkV "seminare" ; -- [XXXDX] :: plant, sow; @@ -33158,7 +33149,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat semiologia_F_N = mkN "semiologia" ; -- [GSXEK] :: semiology; semiophorum_N_N = mkN "semiophorum" ; -- [GXXEK] :: traffic signal; semipaganus_C_N = mkN "semipaganus" ; -- [XXXFS] :: half-rustic; - semipes_M_N = mkN "semipes" "semipedis " masculine ; -- [FDXES] :: half-foot/pes; half foot of ground; half metrical foot; half lame (L+S); + semipes_M_N = mkN "semipes" "semipedis" masculine ; -- [FDXES] :: half-foot/pes; half foot of ground; half metrical foot; half lame (L+S); semiplenus_A = mkA "semiplenus" "semiplena" "semiplenum" ; -- [XXXDX] :: half-full; half-manned (ships), half-strength (military units); semiputatus_A = mkA "semiputatus" "semiputata" "semiputatum" ; -- [XXXDX] :: half-pruned; semirasus_A = mkA "semirasus" "semirasa" "semirasum" ; -- [XXXDS] :: half-shaven; @@ -33166,10 +33157,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat semirefectus_A = mkA "semirefectus" "semirefecta" "semirefectum" ; -- [XXXEC] :: half-repaired; semirefetcus_A = mkA "semirefetcus" "semirefetca" "semirefetcum" ; -- [XXXDX] :: half-repaired; semirutus_A = mkA "semirutus" "semiruta" "semirutum" ; -- [XXXDX] :: half-ruined or demolished; - semis_M_N = mkN "semis" "semissis " masculine ; -- [XXXDX] :: half as; half; half of any unit; 6 percent per annum (1/2% per month); + semis_M_N = mkN "semis" "semissis" masculine ; -- [XXXDX] :: half as; half; half of any unit; 6 percent per annum (1/2% per month); semisepultus_A = mkA "semisepultus" "semisepulta" "semisepultum" ; -- [XXXDX] :: half-buried; semisomnus_A = mkA "semisomnus" "semisomna" "semisomnum" ; -- [XXXDX] :: half-asleep, drowsy; - semisos_M_N = mkN "semisos" "semissis " masculine ; -- [XXXDX] :: half as; half; half of any unit; 6 percent per annum (1/2% per month); + semisos_M_N = mkN "semisos" "semissis" masculine ; -- [XXXDX] :: half as; half; half of any unit; 6 percent per annum (1/2% per month); semisupinus_A = mkA "semisupinus" "semisupina" "semisupinum" ; -- [XXXDX] :: half-lying on one's back; semita_F_N = mkN "semita" ; -- [XXXDX] :: path; semitalis_A = mkA "semitalis" "semitalis" "semitale" ; -- [XXXEC] :: of the footpaths; @@ -33189,7 +33180,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat sempiternalis_A = mkA "sempiternalis" "sempiternalis" "sempiternale" ; -- [EEXDP] :: everlasting; sempiternaliter_Adv = mkAdv "sempiternaliter" ; -- [EEXFP] :: everlastingly; perpetually; sempiterne_Adv = mkAdv "sempiterne" ; -- [XXXEO] :: eternally, perpetually, everlastingly, permanently; - sempiternitas_F_N = mkN "sempiternitas" "sempiternitatis " feminine ; -- [XXXFO] :: eternity; endless existence; perpetuity; + sempiternitas_F_N = mkN "sempiternitas" "sempiternitatis" feminine ; -- [XXXFO] :: eternity; endless existence; perpetuity; sempiterno_Adv = mkAdv "sempiterno" ; -- [XXXEO] :: eternally, perpetually, everlastingly, permanently; sempiternus_A = mkA "sempiternus" "sempiterna" "sempiternum" ; -- [XXXCO] :: perpetual/everlasting/permanent/eternal; lasting forever/for relevant period; semuncia_F_N = mkN "semuncia" ; -- [XXXDX] :: twenty-fourth part (of a pound, etc); a minimal amount; @@ -33200,26 +33191,26 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - senator_M_N = mkN "senator" "senatoris " masculine ; -- [XXXDX] :: senator; + senator_M_N = mkN "senator" "senatoris" masculine ; -- [XXXDX] :: senator; senatorius_A = mkA "senatorius" "senatoria" "senatorium" ; -- [XXXDX] :: of a senator,senatorial; senatus_A = mkA "senatus" "senata" "senatum" ; -- [GXXFK] :: Sienna-earth-colored; - senatus_M_N = mkN "senatus" "senatus " masculine ; -- [XXXAX] :: senate; + senatus_M_N = mkN "senatus" "senatus" masculine ; -- [XXXAX] :: senate; senatusconsultum_N_N = mkN "senatusconsultum" ; -- [XLXCO] :: recommendation of Roman Senate to magistrate; Senate's decision; senecta_F_N = mkN "senecta" ; -- [XXXCS] :: old age; extreme old age; senility; old men collectively; shed snake skin; 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; + 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; 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; + senex_M_N = mkN "senex" "senis" masculine ; -- [XXXDX] :: old man; senilis_A = mkA "senilis" "senilis" "senile" ; -- [XXXDX] :: senile, aged; - senio_M_N = mkN "senio" "senionis " masculine ; -- [XXXES] :: six on a die; - senior_M_N = mkN "senior" "senioris " masculine ; -- [XXXDX] :: older/elderly man, senior; (in Rome a man over 45); - senipes_M_N = mkN "senipes" "senipedis " masculine ; -- [FXXEN] :: steed; (six-foot); + senio_M_N = mkN "senio" "senionis" masculine ; -- [XXXES] :: six on a die; + senior_M_N = mkN "senior" "senioris" masculine ; -- [XXXDX] :: older/elderly man, senior; (in Rome a man over 45); + senipes_M_N = mkN "senipes" "senipedis" masculine ; -- [FXXEN] :: steed; (six-foot); senium_N_N = mkN "senium" ; -- [XXXDX] :: condition of old age; melancholy, gloom; sensatus_A = mkA "sensatus" "sensata" "sensatum" ; -- [EXXEP] :: intelligent; sensibilis_A = mkA "sensibilis" "sensibilis" "sensibile" ; -- [XXXDX] :: perceptible, sensible; detectable/knowable by senses; capable of sensation; - sensibilitas_F_N = mkN "sensibilitas" "sensibilitatis " feminine ; -- [GXXEK] :: sensitivity; + sensibilitas_F_N = mkN "sensibilitas" "sensibilitatis" feminine ; -- [GXXEK] :: sensitivity; sensiculus_M_N = mkN "sensiculus" ; -- [XXXEC] :: little sentence; sensifer_A = mkA "sensifer" "sensifera" "sensiferum" ; -- [XXXEC] :: producing sensation; sensifico_V = mkV "sensificare" ; -- [GXXEK] :: sensitize; @@ -33228,9 +33219,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat sensitivus_A = mkA "sensitivus" "sensitiva" "sensitivum" ; -- [FEXDF] :: sensitive, detectable/knowing through the senses, perceiving; sensorius_A = mkA "sensorius" "sensoria" "sensorium" ; -- [GXXEK] :: sensory; sensualis_A = mkA "sensualis" "sensualis" "sensuale" ; -- [FXXEF] :: sensual; desiring sensually; belonging to sensual desire; - sensualitas_F_N = mkN "sensualitas" "sensualitatis " feminine ; -- [FXXDF] :: sensuality; + sensualitas_F_N = mkN "sensualitas" "sensualitatis" feminine ; -- [FXXDF] :: sensuality; sensum_N_N = mkN "sensum" ; -- [XXXFS] :: thought; - sensus_M_N = mkN "sensus" "sensus " masculine ; -- [XXXAX] :: feeling, sense; + sensus_M_N = mkN "sensus" "sensus" masculine ; -- [XXXAX] :: feeling, sense; sententia_F_N = mkN "sententia" ; -- [XXXAX] :: opinion, feeling, way of thinking; thought, meaning, sentence/period; purpose; sententio_V = mkV "sententiare" ; -- [XXXFM] :: decree; L:pronounce sentence; sententiola_F_N = mkN "sententiola" ; -- [XXXEC] :: short sentence, maxim, aphorism; @@ -33240,8 +33231,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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.); @@ -33249,33 +33240,33 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat seorsus_Adv = mkAdv "seorsus" ; -- [XXXDX] :: separately, apart from the rest; separ_A = mkA "separ" "separis"; -- [XXXDX] :: separate, distinct; separatim_Adv = mkAdv "separatim" ; -- [XXXDX] :: apart, separately; - separatio_F_N = mkN "separatio" "separationis " feminine ; -- [XXXCO] :: separation; division; severing; + separatio_F_N = mkN "separatio" "separationis" feminine ; -- [XXXCO] :: separation; division; severing; 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; + 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; + 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; + 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; + 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; septemplex_A = mkA "septemplex" "septemplicis"; -- [XXXCO] :: sevenfold; of/having seven (layers/mouths, shield w/7 layers, river w/7 mouths); septempliciter_Adv = mkAdv "septempliciter" ; -- [EXXFS] :: sevenfold; seven times; in a sevenfold manner; - septemtrio_M_N = mkN "septemtrio" "septemtrionis " masculine ; -- [XSXBO] :: Big/Little Dipper (s./pl.); north, north regions/wind; brooch w/7 stones; - septemtrional_N_N = mkN "septemtrional" "septemtrionalis " neuter ; -- [XXXEO] :: northern part of a country/region, the North; + septemtrio_M_N = mkN "septemtrio" "septemtrionis" masculine ; -- [XSXBO] :: Big/Little Dipper (s./pl.); north, north regions/wind; brooch w/7 stones; + septemtrional_N_N = mkN "septemtrional" "septemtrionalis" neuter ; -- [XXXEO] :: northern part of a country/region, the North; septemtrionalis_A = mkA "septemtrionalis" "septemtrionalis" "septemtrionale" ; -- [XXXCO] :: northern; in northern hemisphere (constellations); North (Sea); septemtrionarius_A = mkA "septemtrionarius" "septemtrionaria" "septemtrionarium" ; -- [XXXFO] :: northern; northerly; septemviralis_A = mkA "septemviralis" "septemviralis" "septemvirale" ; -- [XLXDS] :: septemviral; of the septemviri/board of seven magistrates; - septemviratus_M_N = mkN "septemviratus" "septemviratus " masculine ; -- [XLXDS] :: septemvir's office; office of the septemviri/board of seven magistrates; + septemviratus_M_N = mkN "septemviratus" "septemviratus" masculine ; -- [XLXDS] :: septemvir's office; office of the septemviri/board of seven magistrates; septenarius_A = mkA "septenarius" "septenaria" "septenarium" ; -- [XXXEC] :: containing seven; - septentrio_M_N = mkN "septentrio" "septentrionis " masculine ; -- [XSXBO] :: Big/Little Dipper (s./pl.); north, north regions/wind; brooch w/7 stones; - septentrional_N_N = mkN "septentrional" "septentrionalis " neuter ; -- [XXXEO] :: northern part of a country/region, the North; northern regions (pl.); + septentrio_M_N = mkN "septentrio" "septentrionis" masculine ; -- [XSXBO] :: Big/Little Dipper (s./pl.); north, north regions/wind; brooch w/7 stones; + septentrional_N_N = mkN "septentrional" "septentrionalis" neuter ; -- [XXXEO] :: northern part of a country/region, the North; northern regions (pl.); septentrionalis_A = mkA "septentrionalis" "septentrionalis" "septentrionale" ; -- [XXXCO] :: northern, north-; in northern hemisphere (constellations); North (Sea); septentrionarius_A = mkA "septentrionarius" "septentrionaria" "septentrionarium" ; -- [XXXFO] :: northern; northerly; septicaemia_F_N = mkN "septicaemia" ; -- [GBXEK] :: septicaemia, septic poisoning; @@ -33292,7 +33283,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat septimpliciter_Adv = mkAdv "septimpliciter" ; -- [EXXFW] :: sevenfold; seven times; in a sevenfold manner; septuagenarius_A = mkA "septuagenarius" "septuagenaria" "septuagenarium" ; -- [XXXES] :: of seventy (70); septuagenarian; septuennis_A = mkA "septuennis" "septuennis" "septuenne" ; -- [XXXEC] :: of seven years; - septunx_M_N = mkN "septunx" "septuncis " masculine ; -- [XXXEC] :: seven-twelfths; + septunx_M_N = mkN "septunx" "septuncis" masculine ; -- [XXXEC] :: seven-twelfths; septuplum_Adv = mkAdv "septuplum" ; -- [EXXEP] :: in a sevenfold way; septuplum_N_N = mkN "septuplum" ; -- [DXXES] :: septuple; seven times as much (Souter); septuplus_A = mkA "septuplus" "septupla" "septuplum" ; -- [EEXDP] :: sevenfold; @@ -33311,18 +33302,18 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat sequestra_F_N = mkN "sequestra" ; -- [XXXDO] :: female go-between/intermediary/depositary; sequestrarius_A = mkA "sequestrarius" "sequestraria" "sequestrarium" ; -- [XLXEO] :: sequestering; of sequestration; [actio ~ => suit recovering entrusted property]; sequestratim_Adv = mkAdv "sequestratim" ; -- [FLXFM] :: in sequestration; separately; - sequestratio_F_N = mkN "sequestratio" "sequestrationis " feminine ; -- [XXXDS] :: sequestration, deposition with third party; separation; - sequestre_N_N = mkN "sequestre" "sequestris " neuter ; -- [XXXEO] :: depository, escrow; [~ dare/ponere => place disputed property in trust]; + sequestratio_F_N = mkN "sequestratio" "sequestrationis" feminine ; -- [XXXDS] :: sequestration, deposition with third party; separation; + 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; + 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; 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; + 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; @@ -33334,7 +33325,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat sericatus_A = mkA "sericatus" "sericata" "sericatum" ; -- [XXXFO] :: clothed in silks; sericum_N_N = mkN "sericum" ; -- [XXXDO] :: silk; silk garments/fabric; Chinese goods; sericus_A = mkA "sericus" "serica" "sericum" ; -- [XXXDX] :: silken; - series_F_N = mkN "series" "seriei " feminine ; -- [XXXBX] :: row, series, secession, chain, train, sequence, order (gen lacking, no pl.); + series_F_N = mkN "series" "seriei" feminine ; -- [XXXBX] :: row, series, secession, chain, train, sequence, order (gen lacking, no pl.); serio_Adv = mkAdv "serio" ; -- [XXXDX] :: seriously, in earnest; seriola_F_N = mkN "seriola" ; -- [XXXDS] :: small jar; seriose_Adv = mkAdv "seriose" ; -- [FXXFM] :: seriously; effectually; @@ -33343,20 +33334,20 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat serius_A = mkA "serius" "seria" "serium" ; -- [XXXDX] :: serious, grave; serius_Adv = mkAdv "serius" ; -- [XXXDX] :: later, too late; serjantia_F_N = mkN "serjantia" ; -- [FLXFJ] :: serjeanty; office of official who enforces laws; feudal tenure for service; - sermo_M_N = mkN "sermo" "sermonis " masculine ; -- [XXXDX] :: conversation, discussion; rumor; diction; speech; talk; the word; + sermo_M_N = mkN "sermo" "sermonis" masculine ; -- [XXXDX] :: conversation, discussion; rumor; diction; speech; talk; the word; sermocinalis_A = mkA "sermocinalis" "sermocinalis" "sermocinale" ; -- [FXXEM] :: locational; vocal; speech-; discursive (Red); linguistic; sermocinor_V = mkV "sermocinari" ; -- [XXXEC] :: converse, talk, discuss; 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; + 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; + 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; + 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); @@ -33373,14 +33364,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); - servator_M_N = mkN "servator" "servatoris " masculine ; -- [XXXDX] :: watcher, observer; preserver, savior; - servatrix_F_N = mkN "servatrix" "servatricis " feminine ; -- [XXXDX] :: female preserver, protecotress; + servator_M_N = mkN "servator" "servatoris" masculine ; -- [XXXDX] :: watcher, observer; preserver, savior; + 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; + 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; + servitudo_F_N = mkN "servitudo" "servitudinis" feminine ; -- [XXXEC] :: slavery, servitude; + servitus_F_N = mkN "servitus" "servitutis" feminine ; -- [XXXDX] :: slavery; slaves; servitude; servo_V = mkV "servare" ; -- [XXXAX] :: watch over; protect, store, keep, guard, preserve, save; servolus_M_N = mkN "servolus" ; -- [XXXDX] :: young (worthless) slave; servula_F_N = mkN "servula" ; -- [XXXDS] :: young servant girl; @@ -33389,7 +33380,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat sescenaris_A = mkA "sescenaris" "sescenaris" "sescenare" ; -- [XXXEC] :: year and a half old; sescenarius_A = mkA "sescenarius" "sescenaria" "sescenarium" ; -- [XXXEC] :: consisting of six hundred; (cohort is six centuries); sescuncia_F_N = mkN "sescuncia" ; -- [XXXES] :: one-eighth of whole; one-and-half unciae; - seselis_F_N = mkN "seselis" "seselis " feminine ; -- [XAXEC] :: plant, hartwort; + seselis_F_N = mkN "seselis" "seselis" feminine ; -- [XAXEC] :: plant, hartwort; sesqualter_A = mkA "sesqualter" "sesqualtera" "sesqualterum" ; -- [ESXEM] :: one-and-a-half times as much; in ratio of 3 to 2; sesquaquartnarius_A = mkA "sesquaquartnarius" "sesquaquartnaria" "sesquaquartnarium" ; -- [FSXFM] :: one-and-a-fourth; ratio of 5 to 4; sesque_Adv = mkAdv "sesque" ; -- [XSXEO] :: one and a half times/more; more by half; @@ -33402,7 +33393,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat sesquimodius_M_N = mkN "sesquimodius" ; -- [XSXEC] :: modius and a half; (dry measure, about 3 gallons/12000 cc); sesquinonus_A = mkA "sesquinonus" "sesquinona" "sesquinonum" ; -- [ESXEP] :: with 10/9; with ten-ninths; sesquioctavus_A = mkA "sesquioctavus" "sesquioctava" "sesquioctavum" ; -- [XXXEC] :: containing 9/8 of a thing; - sesquiopus_N_N = mkN "sesquiopus" "sesquioperis " neuter ; -- [BXXFS] :: one and half day's work; + sesquiopus_N_N = mkN "sesquiopus" "sesquioperis" neuter ; -- [BXXFS] :: one and half day's work; sesquipedalis_A = mkA "sesquipedalis" "sesquipedalis" "sesquipedale" ; -- [XXXDX] :: of a foot and a half; (of words) foot and half long; sesquiplaga_F_N = mkN "sesquiplaga" ; -- [XXXEC] :: blow and a half; sesquiplex_A = mkA "sesquiplex" "sesquiplicis"; -- [XXXDS] :: one and a half times; @@ -33415,7 +33406,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat sesquivicesimus_A = mkA "sesquivicesimus" "sesquivicesima" "sesquivicesimum" ; -- [ESXEP] :: with 21/20; with twentyone-twentieths; sessibulum_N_N = mkN "sessibulum" ; -- [XXXEO] :: seat; stool, chair; armchair (Cal); sessilis_A = mkA "sessilis" "sessilis" "sessile" ; -- [XXXDX] :: fit for sitting upon; - sessio_F_N = mkN "sessio" "sessionis " feminine ; -- [XXXDX] :: sitting; session; + sessio_F_N = mkN "sessio" "sessionis" feminine ; -- [XXXDX] :: sitting; session; sessito_V = mkV "sessitare" ; -- [XXXFS] :: sit for long; sessiuncula_F_N = mkN "sessiuncula" ; -- [XXXEC] :: little company or assembly; sessorium_N_N = mkN "sessorium" ; -- [XXXDX] :: chair; residence, dwelling, habitation; @@ -33426,10 +33417,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat setius_Adv = mkAdv "setius" ; -- [XXXDX] :: less, worse; [nihilo setius => none the less, nevertheless]; 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; + severitas_F_N = mkN "severitas" "severitatis" feminine ; -- [XXXDX] :: strictness, severity; + severitudo_F_N = mkN "severitudo" "severitudinis" feminine ; -- [XXXFS] :: severity; austerity; 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; + 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; sexagesimalis_A = mkA "sexagesimalis" "sexagesimalis" "sexagesimale" ; -- [GSXEK] :: sexagesimal (math.), proceeding by 60's; based on 60 (parts as seconds/minutes); @@ -33448,15 +33439,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat sexquiquartus_A = mkA "sexquiquartus" "sexquiquarta" "sexquiquartum" ; -- [FSXFM] :: one-and-a-fourth; ratio of 5 to 4; sexquitertius_A = mkA "sexquitertius" "sexquitertia" "sexquitertium" ; -- [FSXEM] :: containing 4/3 of anything; sextadecimanus_M_N = mkN "sextadecimanus" ; -- [XWXEC] :: soldiers (pl.) of the 16th legion; - sextans_M_N = mkN "sextans" "sextantis " masculine ; -- [XXXDX] :: one-sixth of any unit; (1/6); + sextans_M_N = mkN "sextans" "sextantis" masculine ; -- [XXXDX] :: one-sixth of any unit; (1/6); sextarium_N_N = mkN "sextarium" ; -- [XTXCO] :: sextarius measure (pint); 1/6 congius (liquid); 1/16 modius (dry); sextarius_M_N = mkN "sextarius" ; -- [XTXCO] :: pint (about); 1/6 congius (liquid); 1/16 modius (dry); cup of that size; sexticeps_A = mkA "sexticeps" "sexticipitis"; -- [XXXFS] :: six-peaked; sextula_F_N = mkN "sextula" ; -- [XXXEC] :: one seventy-second; (1/72); sextusdecimus_A = mkA "sextusdecimus" "sextusdecima" "sextusdecimum" ; -- [XXXEC] :: sixteenth; (1/16); 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; + 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; 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; @@ -33470,14 +33461,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat siccaneum_N_N = mkN "siccaneum" ; -- [XXXFS] :: dry place; siccaneus_A = mkA "siccaneus" "siccanea" "siccaneum" ; -- [XXXFS] :: dry (of soil); siccatorium_N_N = mkN "siccatorium" ; -- [GXXEK] :: drier; - siccitas_F_N = mkN "siccitas" "siccitatis " feminine ; -- [XXXDX] :: dryness; drought; dried up condition; + siccitas_F_N = mkN "siccitas" "siccitatis" feminine ; -- [XXXDX] :: dryness; drought; dried up condition; sicco_V = mkV "siccare" ; -- [XXXDX] :: dry, drain; exhaust; siccoculus_A = mkA "siccoculus" "siccocula" "siccoculum" ; -- [BXXFS] :: dry-eyed; siccum_N_N = mkN "siccum" ; -- [XXXDX] :: dry land; siccus_A = mkA "siccus" "sicca" "siccum" ; -- [XXXBX] :: dry; sicera_F_N = mkN "sicera" ; -- [DXXES] :: cider; kind of spirituous intoxicating drink; fermented liquor, strong drink; - sicera_N_N = mkN "sicera" "siceratis " neuter ; -- [EXXFP] :: cider; kind of spirituous intoxicating drink; fermented liquor, strong drink; - siceras_F_N = mkN "siceras" "sicerae " feminine ; -- [DXXEW] :: cider; kind of spirituous intoxicating drink; fermented liquor, strong drink; + sicera_N_N = mkN "sicera" "siceratis" neuter ; -- [EXXFP] :: cider; kind of spirituous intoxicating drink; fermented liquor, strong drink; + siceras_F_N = mkN "siceras" "sicerae" feminine ; -- [DXXEW] :: cider; kind of spirituous intoxicating drink; fermented liquor, strong drink; sicilicula_F_N = mkN "sicilicula" ; -- [BXXFS] :: little sickle; sicilicus_A = mkA "sicilicus" "sicilica" "sicilicum" ; -- [XXXES] :: Sicilian; sicine_Adv = mkAdv "sicine" ; -- [XXXDX] :: so? thus?; @@ -33491,8 +33482,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; 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; + 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); sifra_F_N = mkN "sifra" ; -- [GXXEK] :: number; sifunculus_M_N = mkN "sifunculus" ; -- [XXXEO] :: small tube/pipe (through which water is forced); jet (of a fountain); @@ -33505,16 +33496,16 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat sigillo_V = mkV "sigillare" ; -- [FLXEM] :: seal; seal-up; confirm; (DEP form also known); sigillum_N_N = mkN "sigillum" ; -- [XXXBO] :: seal; statuette; embossed figure, relief; figure in tapestry/from signet ring; siglum_N_N = mkN "siglum" ; -- [EGXFS] :: abbreviation; - sigma_N_N = mkN "sigma" "sigmatis " neuter ; -- [XXXEC] :: Greek letter sigma; a semicircular dining-couch; + sigma_N_N = mkN "sigma" "sigmatis" neuter ; -- [XXXEC] :: Greek letter sigma; a semicircular dining-couch; signaculum_N_N = mkN "signaculum" ; -- [XXXDO] :: seal; - signale_N_N = mkN "signale" "signalis " neuter ; -- [GXXEK] :: signal; + signale_N_N = mkN "signale" "signalis" neuter ; -- [GXXEK] :: signal; signanter_Adv = mkAdv "signanter" ; -- [EXXES] :: expressly; clearly, distinctly; - signator_M_N = mkN "signator" "signatoris " masculine ; -- [XXXDX] :: witness (to a will, etc); + signator_M_N = mkN "signator" "signatoris" masculine ; -- [XXXDX] :: witness (to a will, etc); signifer_M_N = mkN "signifer" ; -- [XXXDX] :: standard bearer; significans_A = mkA "significans" "significantis"; -- [XXXDX] :: significant, meaningful; conveying meaning; expressive; significanter_Adv =mkAdv "significanter" "significantius" "significantissime" ; -- [XXXDX] :: significantly, meaningfully; so as to convey a clear meaning; distinctively; significantia_F_N = mkN "significantia" ; -- [XXXDX] :: significance; indication; the act of conveying meaning/information; - significatio_F_N = mkN "significatio" "significationis " feminine ; -- [XXXDX] :: signal, outward sign; indication, applause; meaning; suggestion, hint; + significatio_F_N = mkN "significatio" "significationis" feminine ; -- [XXXDX] :: signal, outward sign; indication, applause; meaning; suggestion, hint; significo_V = mkV "significare" ; -- [XXXAX] :: signify, indicate, show; signo_V = mkV "signare" ; -- [XXXBX] :: mark, stamp, designate, sign; seal; signum_N_N = mkN "signum" ; -- [XWXAX] :: battle standard; indication; seal; sign, proof; signal; image, statue; @@ -33525,19 +33516,19 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat silentiosus_A = mkA "silentiosus" "silentiosa" "silentiosum" ; -- [XXXFS] :: perfectly still; silent; 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; + siler_N_N = mkN "siler" "sileris" neuter ; -- [XAXEC] :: brook-willow; 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; + 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; siliceus_A = mkA "siliceus" "silicea" "siliceum" ; -- [XXXFS] :: siliceous, of/consisting of hard rock/stone; of flint; of limestone (L+S); silicia_F_N = mkN "silicia" ; -- [XAXFS] :: fenugreek plant (Pliny); siligineus_A = mkA "siligineus" "siliginea" "siligineum" ; -- [XAXFS] :: wheaten; of wheat; - siligo_F_N = mkN "siligo" "siliginis " feminine ; -- [XAXEC] :: wheat; wheaten flour; + siligo_F_N = mkN "siligo" "siliginis" feminine ; -- [XAXEC] :: wheat; wheaten flour; siliqua_F_N = mkN "siliqua" ; -- [XXXDX] :: pod; siliquastrum_N_N = mkN "siliquastrum" ; -- [XXXEO] :: seat, kind of seat/stool; sillaba_F_N = mkN "sillaba" ; -- [FGXBO] :: syllable; letter, epistle (Latham); geometric section; - silphion_N_N = mkN "silphion" "silphii " neuter ; -- [XXHDO] :: silphion, fennel-like plant cultivated for its gum; (also called laserpicium); + silphion_N_N = mkN "silphion" "silphii" neuter ; -- [XXHDO] :: silphion, fennel-like plant cultivated for its gum; (also called laserpicium); silphium_N_N = mkN "silphium" ; -- [XXHDO] :: silphion, fennel-like plant cultivated for its gum; (also called laserpicium); silpium_N_N = mkN "silpium" ; -- [XXHDO] :: silphion, fennel-like plant cultivated for its gum; (also called laserpicium); silus_A = mkA "silus" "sila" "silum" ; -- [XXXEC] :: snub-nosed, pug-nosed; @@ -33545,7 +33536,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; silvicola_C_N = mkN "silvicola" ; -- [XXXDX] :: inhabitants of woodlands, sylvan creatures; silvicolus_A = mkA "silvicolus" "silvicola" "silvicolum" ; -- [XXXDX] :: inhabiting woodlands, sylvan; @@ -33558,12 +33549,12 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat simila_F_N = mkN "simila" ; -- [XAQFO] :: normal flour produced from triticum; finest wheat flour (L+S); similaginarius_A = mkA "similaginarius" "similaginaria" "similaginarium" ; -- [XAQIO] :: that makes/deals in similago (flour from triticum; finest wheat flour L+S); similagineus_A = mkA "similagineus" "similaginea" "similagineum" ; -- [XAQIO] :: that makes/deals in similago (flour from triticum; finest wheat flour L+S); - 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; + 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; 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; + 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; siminterium_N_N = mkN "siminterium" ; -- [FXXEM] :: cemetery; simintorium_N_N = mkN "simintorium" ; -- [FXXEM] :: cemetery; @@ -33573,9 +33564,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat simonia_F_N = mkN "simonia" ; -- [EEXCV] :: simony; buying/selling of a benefice/ecclesiastical position; simphonia_F_N = mkN "simphonia" ; -- [XDXCO] :: harmony of sounds; singers/musicians; symphony (L+S); instrument; war signal; simplex_A = mkA "simplex" "simplicis"; -- [XXXBX] :: single; simple, unaffected; plain; - simplicitas_F_N = mkN "simplicitas" "simplicitatis " feminine ; -- [XXXDX] :: simplicity, candor; + simplicitas_F_N = mkN "simplicitas" "simplicitatis" feminine ; -- [XXXDX] :: simplicity, candor; simpliciter_Adv =mkAdv "simpliciter" "simplicius" "simplicissime" ; -- [XXXBO] :: simply/just; w/out complexity; candidly/openly/frankly; innocently; as one item; - simplificatio_F_N = mkN "simplificatio" "simplificationis " feminine ; -- [FXXFZ] :: simplification; + simplificatio_F_N = mkN "simplificatio" "simplificationis" feminine ; -- [FXXFZ] :: simplification; simplifico_V2 = mkV2 (mkV "simplificare") ; -- [FXXEE] :: simplify; simplum_N_N = mkN "simplum" ; -- [XXXEC] :: simple sum or number; simpulum_N_N = mkN "simpulum" ; -- [XXXDO] :: small ladle (religious ceremony); eyepiece; [fluctus ~o => tempest in teapot]; @@ -33584,34 +33575,33 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat simula_F_N = mkN "simula" ; -- [XAQFO] :: normal flour produced from triticum; finest wheat flour (L+S); simulac_Adv = mkAdv "simulac" ; -- [XXXDX] :: as soon as, the moment that; simulacrum_N_N = mkN "simulacrum" ; -- [XXXBX] :: likeness, image, statue; - simulamen_N_N = mkN "simulamen" "simulaminis " neuter ; -- [XXXDX] :: imitation, simulation; + simulamen_N_N = mkN "simulamen" "simulaminis" neuter ; -- [XXXDX] :: imitation, simulation; simulans_A = mkA "simulans" "simulantis"; -- [XXXDS] :: imitating; - simulatio_F_N = mkN "simulatio" "simulationis " feminine ; -- [XXXDX] :: pretense, deceit; - simulator_M_N = mkN "simulator" "simulatoris " masculine ; -- [XXXDX] :: one who copies or imitates; feigner; + simulatio_F_N = mkN "simulatio" "simulationis" feminine ; -- [XXXDX] :: pretense, deceit; + simulator_M_N = mkN "simulator" "simulatoris" masculine ; -- [XXXDX] :: one who copies or imitates; feigner; simulatque_Adv = mkAdv "simulatque" ; -- [XXXDX] :: as soon as, the moment that; simulatrum_N_N = mkN "simulatrum" ; -- [GTXEK] :: simulator; simulo_V = mkV "simulare" ; -- [XXXAO] :: imitate, copy; pretend (to have/be); look like; simulate; counterfeit; feint; - simultas_F_N = mkN "simultas" "simultatis " feminine ; -- [XXXDX] :: enmity, rivalry; hatred; + 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 = mkConj "sin" missing ; -- [XXXBX] :: but if; if on the contrary; - sinapis_F_N = mkN "sinapis" "sinapis " feminine ; -- [XXXEC] :: mustard; + 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; + sinceritas_F_N = mkN "sinceritas" "sinceritatis" feminine ; -- [XXXCO] :: integrity, honesty, straightforwardness; soundness, physical wholeness; purity; 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]; + 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]; 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; + 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; - 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; + 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; @@ -33620,19 +33610,19 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; - sinus_M_N = mkN "sinus" "sinus " masculine ; -- [XXXDX] :: curved or bent surface; bending, curve, fold; bosom, lap; bay; + sinus_M_N = mkN "sinus" "sinus" masculine ; -- [XXXDX] :: curved or bent surface; bending, curve, fold; bosom, lap; bay; sipar_A = mkA "sipar" "siparis"; -- [FXXFY] :: almost equal; siparium_N_N = mkN "siparium" ; -- [XXXEC] :: curtain; a drop-scene at a theater; siparum_N_N = mkN "siparum" ; -- [XXXFS] :: linen garment (for women); topsail; - sipho_M_N = mkN "sipho" "siphonis " masculine ; -- [XXXCO] :: siphon; tube for sucking/blowing liquid, straw; fire-engine device; liquid jet; + sipho_M_N = mkN "sipho" "siphonis" masculine ; -- [XXXCO] :: siphon; tube for sucking/blowing liquid, straw; fire-engine device; liquid jet; siphonarius_M_N = mkN "siphonarius" ; -- [FXXEK] :: fireman; siphunculus_M_N = mkN "siphunculus" ; -- [XXXEO] :: small tube/pipe (through which water is forced); jet (of a fountain); siphus_M_N = mkN "siphus" ; -- [XXXFO] :: pipe/tube (for distributing water); - sipo_M_N = mkN "sipo" "siponis " masculine ; -- [XXXCO] :: siphon; tube for sucking/blowing liquid, straw; fire-engine device; liquid jet; + sipo_M_N = mkN "sipo" "siponis" masculine ; -- [XXXCO] :: siphon; tube for sucking/blowing liquid, straw; fire-engine device; liquid jet; sipo_V2 = mkV2 (mkV "sipare") ; -- [XXXFO] :: throw; pour; strew, scatter; (usu. only in compounds); siponarius_M_N = mkN "siponarius" ; -- [XXXIO] :: fireman in charge of a siphon (fire-engine device); sipunculus_M_N = mkN "sipunculus" ; -- [XXXEO] :: small tube/pipe (through which water is forced); jet (of a fountain); @@ -33653,7 +33643,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; @@ -33662,27 +33652,27 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat siticulosus_A = mkA "siticulosus" "siticulosa" "siticulosum" ; -- [XXXEC] :: very dry, parched; sitiens_A = mkA "sitiens" "sitientis"; -- [XXXDX] :: thirsting, producing thirst, arid, dry, parched, thirsty (for); sitio_V2 = mkV2 (mkV "sitire" "sitio" "sitivi" nonExist ) ; -- [XXXBX] :: be thirsty; - sitis_F_N = mkN "sitis" "sitis " feminine ; -- [XXXBX] :: thirst; + sitis_F_N = mkN "sitis" "sitis" feminine ; -- [XXXBX] :: thirst; 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; + situs_M_N = mkN "situs" "situs" masculine ; -- [XXXBX] :: situation, position, site; structure; neglect, disuse, stagnation; mold; 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); + smaragdachates_F_N = mkN "smaragdachates" "smaragdachatae" feminine ; -- [XXHNO] :: precious stone (described as a variety of agate); smaragdinus_A = mkA "smaragdinus" "smaragdina" "smaragdinum" ; -- [XXHFO] :: emerald-green; smaragdites_A = mkA "smaragdites" "smaragdites" "smaragdites" ; -- [XXHNO] :: emerald-like, having the nature of emeralds; - smaragdos_M_N = mkN "smaragdos" "smaragdi " masculine ; -- [XXHCO] :: green precious stone, emerald; beryl, jasper; + smaragdos_M_N = mkN "smaragdos" "smaragdi" masculine ; -- [XXHCO] :: green precious stone, emerald; beryl, jasper; smaragdus_M_N = mkN "smaragdus" ; -- [XXHCO] :: green precious stone; emerald; beryl, jasper; - smegma_N_N = mkN "smegma" "smegmatis " neuter ; -- [XXXNO] :: ointment; cleansing preparation; fine slag from copper melting; + smegma_N_N = mkN "smegma" "smegmatis" neuter ; -- [XXXNO] :: ointment; cleansing preparation; fine slag from copper melting; smyrna_F_N = mkN "smyrna" ; -- [XXXCO] :: myrrh; Smyrna (city on the coast of Ionia); - soboles_F_N = mkN "soboles" "sobolis " feminine ; -- [FXXDX] :: shoot, sucker; race; offspring; progeny; + soboles_F_N = mkN "soboles" "sobolis" feminine ; -- [FXXDX] :: shoot, sucker; race; offspring; progeny; sobrie_Adv = mkAdv "sobrie" ; -- [XXXCO] :: soberly, temperately; in full possession of faculties, sensibly, calmly; sobriefactus_A = mkA "sobriefactus" "sobriefacta" "sobriefactum" ; -- [XXXFO] :: sobered (up); brought to a state of moderation; - sobrietas_F_N = mkN "sobrietas" "sobrietatis " feminine ; -- [XXXCO] :: sobriety, freedom from intoxication; sobriety of habits, staidness; + sobrietas_F_N = mkN "sobrietas" "sobrietatis" feminine ; -- [XXXCO] :: sobriety, freedom from intoxication; sobriety of habits, staidness; sobrina_F_N = mkN "sobrina" ; -- [XXXEC] :: cousin on the mother's side; sobrinus_M_N = mkN "sobrinus" ; -- [XXXEC] :: cousin on the mother's side; sobrius_A = mkA "sobrius" "sobria" "sobrium" ; -- [XXXBX] :: sober; @@ -33696,9 +33686,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat socialismus_M_N = mkN "socialismus" ; -- [GXXEK] :: Socialism; socialista_M_N = mkN "socialista" ; -- [GXXEK] :: socialist; socialisticus_A = mkA "socialisticus" "socialistica" "socialisticum" ; -- [GXXEK] :: socialist; - socializatio_F_N = mkN "socializatio" "socializationis " feminine ; -- [GXXEK] :: socialization; + socializatio_F_N = mkN "socializatio" "socializationis" feminine ; -- [GXXEK] :: socialization; sociennus_M_N = mkN "sociennus" ; -- [BXXFS] :: friend; - societas_F_N = mkN "societas" "societatis " feminine ; -- [XXXAO] :: |joint pursuit/enjoyment/possession; connection, affinity; conjugal union; + societas_F_N = mkN "societas" "societatis" feminine ; -- [XXXAO] :: |joint pursuit/enjoyment/possession; connection, affinity; conjugal union; socio_V = mkV "sociare" ; -- [XXXBX] :: unite, join, ally; share in; sociofraudus_M_N = mkN "sociofraudus" ; -- [BXXFS] :: friend-deceiver; deceiver of friends; sociologia_F_N = mkN "sociologia" ; -- [GXXEK] :: sociology; @@ -33711,42 +33701,42 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat socordia_F_N = mkN "socordia" ; -- [XXXDX] :: sluggishness, torpor, inaction; socorditer_Adv = mkAdv "socorditer" ; -- [XXXDX] :: negligently; socors_A = mkA "socors" "socordis"; -- [XXXDX] :: sluggish, inactive; - socrus_F_N = mkN "socrus" "socrus " feminine ; -- [XXXDX] :: mother-in-law; spouse's grandmother/great grandmother; - socrus_M_N = mkN "socrus" "socrus " masculine ; -- [XXXDX] :: father-in-law; spouse's grandfather/great grandfather; + socrus_F_N = mkN "socrus" "socrus" feminine ; -- [XXXDX] :: mother-in-law; spouse's grandmother/great grandmother; + socrus_M_N = mkN "socrus" "socrus" masculine ; -- [XXXDX] :: father-in-law; spouse's grandfather/great grandfather; sodalicium_N_N = mkN "sodalicium" ; -- [XXXDX] :: close association/partnership; club/society (religious/social/political); sodalicius_A = mkA "sodalicius" "sodalicia" "sodalicium" ; -- [XXXDS] :: of fellowship; - sodalis_F_N = mkN "sodalis" "sodalis " feminine ; -- [XXXBX] :: companion, associate, mate, intimate, comrade, crony; accomplice, conspirator; - sodalis_M_N = mkN "sodalis" "sodalis " masculine ; -- [XXXBX] :: companion, associate, mate, intimate, comrade, crony; accomplice, conspirator; - sodalitas_F_N = mkN "sodalitas" "sodalitatis " feminine ; -- [XXXCO] :: association (social/politics); religious fraternity; electioneering gang; guild; + sodalis_F_N = mkN "sodalis" "sodalis" feminine ; -- [XXXBX] :: companion, associate, mate, intimate, comrade, crony; accomplice, conspirator; + sodalis_M_N = mkN "sodalis" "sodalis" masculine ; -- [XXXBX] :: companion, associate, mate, intimate, comrade, crony; accomplice, conspirator; + sodalitas_F_N = mkN "sodalitas" "sodalitatis" feminine ; -- [XXXCO] :: association (social/politics); religious fraternity; electioneering gang; guild; sodalitius_A = mkA "sodalitius" "sodalitia" "sodalitium" ; -- [XXXDS] :: of fellowship; sodes_Adv = mkAdv "sodes" ; -- [XXXDX] :: if you do not mind, please; (si audes); sofista_M_N = mkN "sofista" ; -- [ESXCW] :: sophist; rhetorician; - sofistes_M_N = mkN "sofistes" "sofistae " masculine ; -- [ESXCW] :: sophist; rhetorician; + sofistes_M_N = mkN "sofistes" "sofistae" masculine ; -- [ESXCW] :: sophist; rhetorician; sofistice_Adv = mkAdv "sofistice" ; -- [ESXEW] :: sophistically; fallaciously (later); with deceptive subtlety; sofisticus_A = mkA "sofisticus" "sofistica" "sofisticum" ; -- [ESXDW] :: sophist, of the sophists, sophistical; skilled in words; soissus_A = mkA "soissus" "soissa" "soissum" ; -- [XXXDS] :: split; harsh (of voice); sokemannus_M_N = mkN "sokemannus" ; -- [FLXFJ] :: sokeman, tenant holding land by socage/tenure by services other than knight; - sol_M_N = mkN "sol" "solis " masculine ; -- [XXXAX] :: sun; + sol_M_N = mkN "sol" "solis" masculine ; -- [XXXAX] :: sun; solaciolum_N_N = mkN "solaciolum" ; -- [XXXEC] :: small consolation; solacium_N_N = mkN "solacium" ; -- [XXXBO] :: |consolation for disappointment/deprivation; compensation/indemnification; - solamen_N_N = mkN "solamen" "solaminis " neuter ; -- [XXXDX] :: source of comfort, solace; + solamen_N_N = mkN "solamen" "solaminis" neuter ; -- [XXXDX] :: source of comfort, solace; solarium_N_N = mkN "solarium" ; -- [FXXEK] :: terrace; solarius_A = mkA "solarius" "solaria" "solarium" ; -- [XXXEO] :: sun-, of/relating to the sun; [horogium solarium => sun-dial]; solatium_N_N = mkN "solatium" ; -- [XXXBO] :: |consolation for disappointment/deprivation; compensation/indemnification; - solator_M_N = mkN "solator" "solatoris " masculine ; -- [XPXFS] :: consoler; + solator_M_N = mkN "solator" "solatoris" masculine ; -- [XPXFS] :: consoler; soldurius_M_N = mkN "soldurius" ; -- [XXXDX] :: vassals (pl.), liegemen; retainers; 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; 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); + 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; + solidarietas_F_N = mkN "solidarietas" "solidarietatis" feminine ; -- [GXXEK] :: solidarity; 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); + 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; solidus_A = mkA "solidus" ; -- [XXXAO] :: |three dimensional; retaining form/rigidity, firm; real, lasting; perfect; full; @@ -33759,14 +33749,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat solitarius_A = mkA "solitarius" "solitaria" "solitarium" ; -- [XXXBO] :: solitary, living/acting on one's own; single (combat); without companion; sole; solitarius_M_N = mkN "solitarius" ; -- [EEXCE] :: hermit; anchorite; person living alone; solito_V = mkV "solitare" ; -- [XXXDX] :: to make it one's constant habit to (w/INF); make a practice of; be accustomed; - solitudo_F_N = mkN "solitudo" "solitudinis " feminine ; -- [XXXBX] :: solitude, loneliness; deprivation; wilderness; + solitudo_F_N = mkN "solitudo" "solitudinis" feminine ; -- [XXXBX] :: solitude, loneliness; deprivation; wilderness; solitum_N_N = mkN "solitum" ; -- [XXXDS] :: custom; habit; solitus_A = mkA "solitus" "solita" "solitum" ; -- [XXXDX] :: usual, customary; 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; + sollemne_N_N = mkN "sollemne" "sollemnis" neuter ; -- [XXXCO] :: |ritual offerings (pl.); legal formalities; 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); + 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; @@ -33774,10 +33764,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - sollicitatio_F_N = mkN "sollicitatio" "sollicitationis " feminine ; -- [XXXDX] :: incitement to disloyalty or crime; + sollicitatio_F_N = mkN "sollicitatio" "sollicitationis" feminine ; -- [XXXDX] :: incitement to disloyalty or crime; sollicite_Adv =mkAdv "sollicite" "sollicitius" "sollicitissime" ; -- [XXXDX] :: anxiously; with a troubled mind; with anxious care; sollicito_V = mkV "sollicitare" ; -- [XXXBX] :: disturb, worry; stir up, arouse, agitate, incite; - sollicitudo_F_N = mkN "sollicitudo" "sollicitudinis " feminine ; -- [XXXBX] :: anxiety, concern, solicitude; + sollicitudo_F_N = mkN "sollicitudo" "sollicitudinis" feminine ; -- [XXXBX] :: anxiety, concern, solicitude; sollicitus_A = mkA "sollicitus" "sollicita" "sollicitum" ; -- [XXXAX] :: concerned, worried; upset, troubled, disturbed, anxious, apprehensive; solliferreum_N_N = mkN "solliferreum" ; -- [XWXDS] :: all-iron javelin; sollistimus_A = mkA "sollistimus" "sollistima" "sollistimum" ; -- [XXXFS] :: most perfect; @@ -33785,7 +33775,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat soloecus_A = mkA "soloecus" "soloeca" "soloecum" ; -- [GXXET] :: faulty; uncouth; (Erasmus); solor_V = mkV "solari" ; -- [XXXDX] :: solace, console, comfort; soothe, ease, lighten, relieve, assuage, mitigate; solox_A = mkA "solox" "solocis"; -- [EXXFS] :: coarse; bristly; - solox_F_N = mkN "solox" "solocis " feminine ; -- [XXXFS] :: coarse woolen dress; + solox_F_N = mkN "solox" "solocis" feminine ; -- [XXXFS] :: coarse woolen dress; solstitialis_A = mkA "solstitialis" "solstitialis" "solstitiale" ; -- [XXXDX] :: of or belonging to the summer solstice; solstitium_N_N = mkN "solstitium" ; -- [XXXDX] :: solstice; summer-time, heat of the summer-solstice; solum_Adv = mkAdv "solum" ; -- [XXXDO] :: only/just/merely/barely/alone; @@ -33793,9 +33783,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat solummodo_Adv = mkAdv "solummodo" ; -- [XXXBO] :: only/just/merely/barely/alone; [nonsolum ...sed etiam => not only ...but also]; 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; + solutio_F_N = mkN "solutio" "solutionis" feminine ; -- [XXXDX] :: loosing, relaxation, weakening; payment; 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; + 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; @@ -33805,33 +33795,33 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat somnolentus_A = mkA "somnolentus" "somnolenta" "somnolentum" ; -- [EXXES] :: full of sleep; drowsy; (somnulentus); somnus_M_N = mkN "somnus" ; -- [XXXAX] :: sleep; sonabilis_A = mkA "sonabilis" "sonabilis" "sonabile" ; -- [XXXDX] :: noisy, resonant; - sonipes_M_N = mkN "sonipes" "sonipedis " masculine ; -- [XXXDX] :: horse, steed; - sonitus_M_N = mkN "sonitus" "sonitus " masculine ; -- [XXXBX] :: noise, loud sound; + sonipes_M_N = mkN "sonipes" "sonipedis" masculine ; -- [XXXDX] :: horse, steed; + 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; + 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; sons_A = mkA "sons" "sontis"; -- [XXXDX] :: guilty, criminal; - sons_F_N = mkN "sons" "sontis " feminine ; -- [XXXDX] :: criminal; - sons_M_N = mkN "sons" "sontis " masculine ; -- [XXXDX] :: criminal; + sons_F_N = mkN "sons" "sontis" feminine ; -- [XXXDX] :: criminal; + sons_M_N = mkN "sons" "sontis" masculine ; -- [XXXDX] :: criminal; sonticus_A = mkA "sonticus" "sontica" "sonticum" ; -- [XXXEC] :: important, serious; sonus_M_N = mkN "sonus" ; -- [XXXDX] :: noise, sound; sophia_F_N = mkN "sophia" ; -- [XXXEC] :: wisdom; sophisma_F_N = mkN "sophisma" ; -- [FPXEM] :: wisdom; trickery; G:sophism; fallacy; - sophisma_N_N = mkN "sophisma" "sophismatis " neuter ; -- [XGXES] :: false conclusion, sophism (Redmond); logical fallacy; + sophisma_N_N = mkN "sophisma" "sophismatis" neuter ; -- [XGXES] :: false conclusion, sophism (Redmond); logical fallacy; sophismatius_A = mkA "sophismatius" "sophismatia" "sophismatium" ; -- [XGXFS] :: sophistical; sophista_M_N = mkN "sophista" ; -- [DSXCS] :: sophist; rhetorician; - sophistes_M_N = mkN "sophistes" "sophistae " masculine ; -- [XSXCO] :: sophist; rhetorician; + sophistes_M_N = mkN "sophistes" "sophistae" masculine ; -- [XSXCO] :: sophist; rhetorician; sophistice_Adv = mkAdv "sophistice" ; -- [DSXES] :: sophistically; fallaciously (later); with deceptive subtlety; sophisticus_A = mkA "sophisticus" "sophistica" "sophisticum" ; -- [XSXDO] :: sophist, of the sophists, sophistical; skilled in words; sophos_Adv = mkAdv "sophos" ; -- [XXXEC] :: bravo! well done!; 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; + 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; soporus_A = mkA "soporus" "sopora" "soporum" ; -- [XXXDX] :: that induces sleep; @@ -33839,44 +33829,44 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat sorbilis_A = mkA "sorbilis" "sorbilis" "sorbile" ; -- [XXXFS] :: suck-upable; can be sucked-up; sorbillo_V2 = mkV2 (mkV "sorbillare") ; -- [XXXDS] :: sip; sorbilo_Adv = mkAdv "sorbilo" ; -- [XXXEC] :: by sipping, drop by drop; - sorbitio_F_N = mkN "sorbitio" "sorbitionis " feminine ; -- [XXXCO] :: broth, food prepared in liquid/semi-liquid form; drink/draught/potion (L+S); + sorbitio_F_N = mkN "sorbitio" "sorbitionis" feminine ; -- [XXXCO] :: broth, food prepared in liquid/semi-liquid form; drink/draught/potion (L+S); sorbitium_N_N = mkN "sorbitium" ; -- [DXXFS] :: draught, drink; sorbitiuncula_F_N = mkN "sorbitiuncula" ; -- [DBXES] :: small draught/dose; posset; portion of food; mess (Douay); little cake (KJames); sorbum_N_N = mkN "sorbum" ; -- [XAXES] :: sorb, service-berry/apple; fruit of service tree (Pyrus domestica); sorbus_F_N = mkN "sorbus" ; -- [XAXEC] :: sorb/service tree (Pyrus domestica); sorb, service-berry/apple (L+S); sordeo_V = mkV "sordere" ; -- [XXXBO] :: be dirty/soiled; seem mean/unworthy/not good enough/common/coarse/vile/ignoble; - sordes_F_N = mkN "sordes" "sordis " feminine ; -- [XXXDX] :: filth, dirt, uncleanness, squalor; meanness, stinginess; humiliation, baseness; + sordes_F_N = mkN "sordes" "sordis" feminine ; -- [XXXDX] :: filth, dirt, uncleanness, squalor; meanness, stinginess; humiliation, baseness; sordesceo_V = mkV "sordescere" ; -- [XXXES] :: become dirty; grow wild; be mean; 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; 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; + 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; - soror_F_N = mkN "soror" "sororis " feminine ; -- [XXXAX] :: sister; (applied also to half sister, sister-in-law, and mistress!); + sorites_M_N = mkN "sorites" "soritae" masculine ; -- [XGXFS] :: sophism; an accumulation of arguments; + soror_F_N = mkN "soror" "sororis" feminine ; -- [XXXAX] :: sister; (applied also to half sister, sister-in-law, and mistress!); sororicida_M_N = mkN "sororicida" ; -- [XXXEC] :: one who murders a sister; sororius_A = mkA "sororius" "sororia" "sororium" ; -- [XXXDX] :: of or concerning a sister; sororius_M_N = mkN "sororius" ; -- [XXXDX] :: sister's husband, brother-in-law; - sors_F_N = mkN "sors" "sortis " feminine ; -- [XXXAX] :: lot, fate; oracular response; + 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; + 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; + sortitus_M_N = mkN "sortitus" "sortitus" masculine ; -- [XXXDX] :: process of lottery; sospes_A = mkA "sospes" "sospitis"; -- [XXXBX] :: safe and sound; auspicious; sospita_F_N = mkN "sospita" ; -- [XXXDX] :: female preserver (cult title of Juno at Lanuvium); - sospitas_F_N = mkN "sospitas" "sospitatis " feminine ; -- [DXXDS] :: safety; health; welfare; + sospitas_F_N = mkN "sospitas" "sospitatis" feminine ; -- [DXXDS] :: safety; health; welfare; sospito_V = mkV "sospitare" ; -- [XXXDX] :: preserve, defend; - soter_M_N = mkN "soter" "soteris " masculine ; -- [XXXEC] :: savior; + soter_M_N = mkN "soter" "soteris" masculine ; -- [XXXEC] :: savior; soterium_N_N = mkN "soterium" ; -- [XXXEC] :: presents (pl.) given on recovery from sickness; - sotularis_M_N = mkN "sotularis" "sotularis " masculine ; -- [FXXFM] :: shoe; (gender is guess); + sotularis_M_N = mkN "sotularis" "sotularis" masculine ; -- [FXXFM] :: shoe; (gender is guess); spacellus_M_N = mkN "spacellus" ; -- [GXXEK] :: spaghetti; spacium_N_N = mkN "spacium" ; -- [FXXAO] :: ||interval, time, extent, period, term; duration; distance; area; size; bulk; spadix_A = mkA "spadix" "spadicis"; -- [XXXEC] :: chestnut-colored; - spado_M_N = mkN "spado" "spadonis " masculine ; -- [XXXDX] :: eunuch; + 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; + 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; @@ -33891,34 +33881,34 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat spatiosus_A = mkA "spatiosus" "spatiosa" "spatiosum" ; -- [XXXDX] :: spacious, wide, long; spatium_N_N = mkN "spatium" ; -- [XXXAO] :: ||interval, time, extent, period, term; duration; distance; area; size; bulk; spatula_F_N = mkN "spatula" ; -- [XXXFO] :: |wantonness, sensual indulgence; lewdness (L+S); voluptuousness; - spatule_F_N = mkN "spatule" "spatules " feminine ; -- [XXXFS] :: wantonness, sensual indulgence; lewdness (L+S); voluptuousness; + spatule_F_N = mkN "spatule" "spatules" feminine ; -- [XXXFS] :: wantonness, sensual indulgence; lewdness (L+S); voluptuousness; specialis_A = mkA "specialis" "specialis" "speciale" ; -- [XXXCO] :: specific, particular, individual, not general, special; derivative, as species; specialista_M_N = mkN "specialista" ; -- [GXXEK] :: specialist; - specialitas_F_N = mkN "specialitas" "specialitatis " feminine ; -- [FXXEM] :: special quality; peculiarity; + specialitas_F_N = mkN "specialitas" "specialitatis" feminine ; -- [FXXEM] :: special quality; peculiarity; specialiter_Adv =mkAdv "specialiter" "specialius" "specialissime" ; -- [XXXCO] :: specifically; individually; in particular; according to species; - specializatio_F_N = mkN "specializatio" "specializationis " feminine ; -- [GXXEK] :: specialization; - species_F_N = mkN "species" "speciei " feminine ; -- [XXXAX] :: sight, appearance, show; splendor, beauty; kind, type; + specializatio_F_N = mkN "specializatio" "specializationis" feminine ; -- [GXXEK] :: specialization; + 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; + specimen_N_N = mkN "specimen" "speciminis" neuter ; -- [XXXDX] :: mark, proof; idea; model; 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; 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); + 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); spectaculum_N_N = mkN "spectaculum" ; -- [XXXBX] :: show, spectacle; spectators' seats (pl.); - spectamen_N_N = mkN "spectamen" "spectaminis " neuter ; -- [XXXFS] :: mark; sign; sight, scene; - spectatio_F_N = mkN "spectatio" "spectationis " feminine ; -- [XXXES] :: looking; testing; - spectator_M_N = mkN "spectator" "spectatoris " masculine ; -- [XXXDX] :: spectator; - spectatrix_F_N = mkN "spectatrix" "spectatricis " feminine ; -- [XXXDX] :: female observer or watcher; - spectio_F_N = mkN "spectio" "spectionis " feminine ; -- [XXXDS] :: right of auspices; right to observe auspices; + spectamen_N_N = mkN "spectamen" "spectaminis" neuter ; -- [XXXFS] :: mark; sign; sight, scene; + spectatio_F_N = mkN "spectatio" "spectationis" feminine ; -- [XXXES] :: looking; testing; + spectator_M_N = mkN "spectator" "spectatoris" masculine ; -- [XXXDX] :: spectator; + spectatrix_F_N = mkN "spectatrix" "spectatricis" feminine ; -- [XXXDX] :: female observer or watcher; + spectio_F_N = mkN "spectio" "spectionis" feminine ; -- [XXXDS] :: right of auspices; right to observe auspices; specto_V = mkV "spectare" ; -- [XXXAX] :: observe, watch, look at, see; test; consider; spectrum_N_N = mkN "spectrum" ; -- [XXXEC] :: specter, apparition; specula_F_N = mkN "specula" ; -- [XXXDO] :: slight hope, glimmer/ray of hope; (long e); speculabundus_A = mkA "speculabundus" "speculabunda" "speculabundum" ; -- [XXXEC] :: watching, on the watch; - speculamen_N_N = mkN "speculamen" "speculaminis " neuter ; -- [XXXFS] :: looking-at; observing; - speculatio_F_N = mkN "speculatio" "speculationis " feminine ; -- [XXXDO] :: watching (shows/entertainment); inspection/scrutiny; consideration; speculation; - speculator_M_N = mkN "speculator" "speculatoris " masculine ; -- [XXXDX] :: spy, scout; + speculamen_N_N = mkN "speculamen" "speculaminis" neuter ; -- [XXXFS] :: looking-at; observing; + speculatio_F_N = mkN "speculatio" "speculationis" feminine ; -- [XXXDO] :: watching (shows/entertainment); inspection/scrutiny; consideration; speculation; + speculator_M_N = mkN "speculator" "speculatoris" masculine ; -- [XXXDX] :: spy, scout; speculatoria_F_N = mkN "speculatoria" ; -- [XXXDS] :: spy-boat; reconnaissance boat; speculatorius_A = mkA "speculatorius" "speculatoria" "speculatorium" ; -- [XXXDX] :: spying, scouting; speculor_V = mkV "speculari" ; -- [XXXDX] :: watch, observe; spy out; examine, explore; @@ -33932,23 +33922,23 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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); + 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); sphaera_F_N = mkN "sphaera" ; -- [XSXCO] :: globe, sphere, orb, ball; orrery/working model of universe (spheres of planets); sphaeratus_A = mkA "sphaeratus" "sphaerata" "sphaeratum" ; -- [GXXEK] :: small sphered; ball-point; - sphaericitas_F_N = mkN "sphaericitas" "sphaericitatis " feminine ; -- [GXXEK] :: sphericity; roundness; - sphaerion_N_N = mkN "sphaerion" "sphaerii " neuter ; -- [XBXES] :: pill; small ball; + sphaericitas_F_N = mkN "sphaericitas" "sphaericitatis" feminine ; -- [GXXEK] :: sphericity; roundness; + sphaerion_N_N = mkN "sphaerion" "sphaerii" neuter ; -- [XBXES] :: pill; small ball; sphaeristerium_N_N = mkN "sphaeristerium" ; -- [XXXEC] :: place for playing ball; - sphaerois_F_N = mkN "sphaerois" "sphaeroidis " feminine ; -- [GXXEK] :: spheroid; + sphaerois_F_N = mkN "sphaerois" "sphaeroidis" feminine ; -- [GXXEK] :: spheroid; sphaerula_F_N = mkN "sphaerula" ; -- [EXXES] :: small ball/sphere; sphera_F_N = mkN "sphera" ; -- [XSXCO] :: globe, sphere, orb, ball; orrery/working model of universe (spheres of planets); spherula_F_N = mkN "spherula" ; -- [EXXES] :: small ball/sphere; - sphincter_M_N = mkN "sphincter" "sphincteris " masculine ; -- [EBXFS] :: sphincter, muscle of the anus; - sphinx_F_N = mkN "sphinx" "sphingis " feminine ; -- [XAXFS] :: ape; chimpanzee; + sphincter_M_N = mkN "sphincter" "sphincteris" masculine ; -- [EBXFS] :: sphincter, muscle of the anus; + sphinx_F_N = mkN "sphinx" "sphingis" feminine ; -- [XAXFS] :: ape; chimpanzee; sphondylus_M_N = mkN "sphondylus" ; -- [XAXFS] :: mussel; muscle; oyster meat; (= spondylus); - sphragis_F_N = mkN "sphragis" "sphragidis " feminine ; -- [XTXFS] :: seal-stone (stone used for seal); B:ball of plaster; + sphragis_F_N = mkN "sphragis" "sphragidis" feminine ; -- [XTXFS] :: seal-stone (stone used for seal); B:ball of plaster; 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; @@ -33965,36 +33955,36 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat spinosus_A = mkA "spinosus" "spinosa" "spinosum" ; -- [XXXDX] :: thorny, prickly; crabbed, difficult; spintria_M_N = mkN "spintria" ; -- [XXXDO] :: type of male prostitute; spinus_F_N = mkN "spinus" ; -- [DAXES] :: thorn-bush; black-thorn, sloe-tree; - spinus_M_N = mkN "spinus" "spinus " masculine ; -- [DAXES] :: thorn-bush; black-thorn, sloe-tree; + spinus_M_N = mkN "spinus" "spinus" masculine ; -- [DAXES] :: thorn-bush; black-thorn, sloe-tree; spira_F_N = mkN "spira" ; -- [XXXDX] :: coil; spirabilis_A = mkA "spirabilis" "spirabilis" "spirabile" ; -- [XXXDS] :: breathable; spiraculum_N_N = mkN "spiraculum" ; -- [XXXDO] :: air-hole, vent; B:breathing passage (in lung); opening/outlet; window (Cal); spiralis_A = mkA "spiralis" "spiralis" "spirale" ; -- [GXXEK] :: spiraling; - spiramen_N_N = mkN "spiramen" "spiraminis " neuter ; -- [XXXDO] :: air-hole/passage; aspiration, act of breathing; exhalation; breath, puff; + spiramen_N_N = mkN "spiramen" "spiraminis" neuter ; -- [XXXDO] :: air-hole/passage; aspiration, act of breathing; exhalation; breath, puff; spiramentum_N_N = mkN "spiramentum" ; -- [XXXCO] :: air/breathing-passage; vent; pause, breathing space; draught, breath of air; - spiratio_F_N = mkN "spiratio" "spirationis " feminine ; -- [DXXES] :: breathing; breath; + spiratio_F_N = mkN "spiratio" "spirationis" feminine ; -- [DXXES] :: breathing; breath; spiritalis_A = mkA "spiritalis" "spiritalis" "spiritale" ; -- [DEXCS] :: spiritual, of the spirit; of breathing; to wind/air; kind of wind instrument; - spiritalitas_F_N = mkN "spiritalitas" "spiritalitatis " feminine ; -- [DEXES] :: spirituality; + spiritalitas_F_N = mkN "spiritalitas" "spiritalitatis" feminine ; -- [DEXES] :: spirituality; spiritaliter_Adv = mkAdv "spiritaliter" ; -- [DEXES] :: spiritually; spiritualis_A = mkA "spiritualis" "spiritualis" "spirituale" ; -- [DEXCS] :: spiritual, of the spirit; of breathing; to wind/air; kind of wind instrument; - spiritualitas_F_N = mkN "spiritualitas" "spiritualitatis " feminine ; -- [DEXES] :: spirituality; + spiritualitas_F_N = mkN "spiritualitas" "spiritualitatis" feminine ; -- [DEXES] :: spirituality; spiritualiter_Adv = mkAdv "spiritualiter" ; -- [DEXES] :: spiritually; spirituosus_A = mkA "spirituosus" "spirituosa" "spirituosum" ; -- [GXXEK] :: spiritual; - spiritus_M_N = mkN "spiritus" "spiritus " masculine ; -- [XXXAX] :: breath, breathing, air, soul, life; + 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; spissesco_V = mkV "spissescere" "spissesco" nonExist nonExist ; -- [XXXDX] :: become more compact, thicken; - spissitudo_F_N = mkN "spissitudo" "spissitudinis " feminine ; -- [DXXFS] :: thickness, density; + 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; 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; + splendor_M_N = mkN "splendor" "splendoris" masculine ; -- [XXXDX] :: brilliance, luster, sheen; magnificence, sumptuousness, grandeur, splendor; splenium_N_N = mkN "splenium" ; -- [XBXEC] :: adhesive plaster; spodium_N_N = mkN "spodium" ; -- [XXXFS] :: metal slag; vegetable ash (Pliny); - spoliatio_F_N = mkN "spoliatio" "spoliationis " feminine ; -- [XXXDX] :: robbing, plundering, spoilation; - spoliator_M_N = mkN "spoliator" "spoliatoris " masculine ; -- [XXXDX] :: one who plunders or despoils; - spoliatrix_F_N = mkN "spoliatrix" "spoliatricis " feminine ; -- [XXXDS] :: female robber; + spoliatio_F_N = mkN "spoliatio" "spoliationis" feminine ; -- [XXXDX] :: robbing, plundering, spoilation; + spoliator_M_N = mkN "spoliator" "spoliatoris" masculine ; -- [XXXDX] :: one who plunders or despoils; + spoliatrix_F_N = mkN "spoliatrix" "spoliatricis" feminine ; -- [XXXDS] :: female robber; spolio_V = mkV "spoliare" ; -- [XXXBX] :: rob, strip; despoil, plunder; deprive (with abl.); spolium_N_N = mkN "spolium" ; -- [XXXBX] :: spoils, booty; skin, hide; sponda_F_N = mkN "sponda" ; -- [XXXCO] :: bedstead; frame of bed/couch; bed/couch/sofa; @@ -34006,16 +33996,16 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat spongea_F_N = mkN "spongea" ; -- [XXXDX] :: sponge; spongia_F_N = mkN "spongia" ; -- [XAXCO] :: sponge; (marine animal/domestic use); puffball; mass of fused iron-ore; pumice; spongiformis_A = mkA "spongiformis" "spongiformis" "spongiforme" ; -- [GXXEK] :: spongiform, sponge-like; light and porous; - spons_F_N = mkN "spons" "spontis " feminine ; -- [XXXBX] :: free will; + spons_F_N = mkN "spons" "spontis" feminine ; -- [XXXBX] :: free will; sponsa_F_N = mkN "sponsa" ; -- [XXXDX] :: bride; betrothed woman; - sponsal_N_N = mkN "sponsal" "sponsalis " neuter ; -- [XXXDX] :: betrothal (pl.), espousal; wedding; wedding feast; + sponsal_N_N = mkN "sponsal" "sponsalis" neuter ; -- [XXXDX] :: betrothal (pl.), espousal; wedding; wedding feast; sponsalis_A = mkA "sponsalis" "sponsalis" "sponsale" ; -- [XXXFO] :: of/pertaining to a betrothal/engagement; - sponsalius_N_N = mkN "sponsalius" "sponsalioris " neuter ; -- [XXXEO] :: betrothal (act/ceremony) (pl.); betrothal/engagement party/banquet; - sponsio_F_N = mkN "sponsio" "sponsionis " feminine ; -- [XXXDX] :: solemn promise; wager at law; + sponsalius_N_N = mkN "sponsalius" "sponsalioris" neuter ; -- [XXXEO] :: betrothal (act/ceremony) (pl.); betrothal/engagement party/banquet; + sponsio_F_N = mkN "sponsio" "sponsionis" feminine ; -- [XXXDX] :: solemn promise; wager at law; sponso_V2 = mkV2 (mkV "sponsare") ; -- [XXXFO] :: become betrothed/engaged to marry (woman); espouse, affiance (L+S); - sponsor_M_N = mkN "sponsor" "sponsoris " masculine ; -- [XXXDX] :: one who guarantees the good faith of another; surety; + sponsor_M_N = mkN "sponsor" "sponsoris" masculine ; -- [XXXDX] :: one who guarantees the good faith of another; surety; sponsum_N_N = mkN "sponsum" ; -- [XXXDS] :: agreement; consent; - sponsus_M_N = mkN "sponsus" "sponsus " masculine ; -- [XXXDS] :: contract; surety; bail; betrothal; + sponsus_M_N = mkN "sponsus" "sponsus" masculine ; -- [XXXDS] :: contract; surety; bail; betrothal; spontalis_A = mkA "spontalis" "spontalis" "spontale" ; -- [XXXEO] :: voluntary; self-chosen; spontaliter_Adv = mkAdv "spontaliter" ; -- [DXXFS] :: voluntarily; spontanee_Adv = mkAdv "spontanee" ; -- [DXXDS] :: willingly, of one's own will; voluntarily; for one's own sake; @@ -34024,8 +34014,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat sporta_F_N = mkN "sporta" ; -- [XXXDX] :: basket, hamper; sportella_F_N = mkN "sportella" ; -- [XXXDX] :: little basket; sportula_F_N = mkN "sportula" ; -- [XXXDX] :: food or money given by patrons to clients; - spretio_F_N = mkN "spretio" "spretionis " feminine ; -- [XXXDS] :: contempt; - spretor_M_N = mkN "spretor" "spretoris " masculine ; -- [XXXDX] :: one who despises or scorns; + 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; spumesco_V = mkV "spumescere" "spumesco" nonExist nonExist ; -- [XXXDX] :: become foamy; spumeus_A = mkA "spumeus" "spumea" "spumeum" ; -- [XXXDX] :: foamy, frothy; covered with foam; @@ -34033,25 +34023,25 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + spurcamen_N_N = mkN "spurcamen" "spurcaminis" neuter ; -- [DXXES] :: filth; dirt; spurcidicus_A = mkA "spurcidicus" "spurcidica" "spurcidicum" ; -- [BXXFS] :: obscene; spurcificus_A = mkA "spurcificus" "spurcifica" "spurcificum" ; -- [BXXFS] :: obscene; spurcitia_F_N = mkN "spurcitia" ; -- [XXXEC] :: filthiness, dirt; - spurcities_F_N = mkN "spurcities" "spurcitiei " feminine ; -- [XXXDS] :: filthiness, dirt; + spurcities_F_N = mkN "spurcities" "spurcitiei" feminine ; -- [XXXDS] :: filthiness, dirt; spurco_V = mkV "spurcare" ; -- [XXXDX] :: soil, infect; deprave; spurcus_A = mkA "spurcus" "spurca" "spurcum" ; -- [XXXDX] :: dirty, foul; morally polluted; spurium_N_N = mkN "spurium" ; -- [XBXEO] :: female external genitalia; marine animal of similar shape; spurius_A = mkA "spurius" "spuria" "spurium" ; -- [XXXES] :: spurious, false; of illegitimate/irregular/out of wedlock birth; spurius_M_N = mkN "spurius" ; -- [XXXEO] :: bastard, son of an unknown father; illegitimate child, spurious child; - sputamen_N_N = mkN "sputamen" "sputaminis " neuter ; -- [EXXFS] :: spit; + sputamen_N_N = mkN "sputamen" "sputaminis" neuter ; -- [EXXFS] :: spit; sputatilicus_A = mkA "sputatilicus" "sputatilica" "sputatilicum" ; -- [XXXES] :: despicable; sputo_V = mkV "sputare" ; -- [XXXDX] :: spit out; sputum_N_N = mkN "sputum" ; -- [XXXDX] :: spittle; squaleo_V = mkV "squalere" ; -- [XXXDX] :: be covered with a rough or scaly layer; be dirty; squalidus_A = mkA "squalidus" "squalida" "squalidum" ; -- [XXXDX] :: squalid, filthy; - squalor_M_N = mkN "squalor" "squaloris " masculine ; -- [XXXDX] :: squalor, filth; + squalor_M_N = mkN "squalor" "squaloris" masculine ; -- [XXXDX] :: squalor, filth; squalus_M_N = mkN "squalus" ; -- [XAXEC] :: kind of fish; squama_F_N = mkN "squama" ; -- [XXXDX] :: scale; metal-plate used in the making of scale-armor; squameus_A = mkA "squameus" "squamea" "squameum" ; -- [XXXDX] :: scaly; @@ -34061,69 +34051,69 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; stabulum_N_N = mkN "stabulum" ; -- [XXXBO] :: |inn/tavern; brothel; dwelling/hut; stacta_F_N = mkN "stacta" ; -- [XAXEC] :: oil of myrrh; - stacte_F_N = mkN "stacte" "stactes " feminine ; -- [XAXEC] :: oil of myrrh; - stacte_M_N = mkN "stacte" "stactes " masculine ; -- [EAXFT] :: styrax/storax; (fragrant gum/tree Styrax officinalis); (used medically); + stacte_F_N = mkN "stacte" "stactes" feminine ; -- [XAXEC] :: oil of myrrh; + stacte_M_N = mkN "stacte" "stactes" masculine ; -- [EAXFT] :: styrax/storax; (fragrant gum/tree Styrax officinalis); (used medically); stadium_N_N = mkN "stadium" ; -- [XXXDX] :: stade, Greek measure of distance, (~607 feet, nearly furlong); race course; stagneus_A = mkA "stagneus" "stagnea" "stagneum" ; -- [XTXCO] :: made of stagnum (alloy of sliver and lead); [lapis ~ => tin (Douay)]; stagno_V = mkV "stagnare" ; -- [XXXDX] :: form/lie in pools; be under water; stagnosus_A = mkA "stagnosus" "stagnosa" "stagnosum" ; -- [EAXFS] :: stagnant; full of standing water; stagnum_N_N = mkN "stagnum" ; -- [XXXBO] :: pool, lake, lagoon, expanse of water; bath, swimming pool; - stamen_N_N = mkN "stamen" "staminis " neuter ; -- [XXXDX] :: warp (in the loom); thread (on distaff); thread of life spun by the Fates; + stamen_N_N = mkN "stamen" "staminis" neuter ; -- [XXXDX] :: warp (in the loom); thread (on distaff); thread of life spun by the Fates; stamineus_A = mkA "stamineus" "staminea" "stamineum" ; -- [XXXDX] :: of or consisting of threads; stannum_N_N = mkN "stannum" ; -- [XXXDS] :: alloy of silver and lead; tin (late); stantia_F_N = mkN "stantia" ; -- [FLXFY] :: contract; stapeda_F_N = mkN "stapeda" ; -- [FXXDM] :: stirrup; stirrup-leather; - stapes_F_N = mkN "stapes" "stapis " feminine ; -- [FXXCM] :: stirrup; stirrup-leather; (also medical for an inner ear bone, the stirrup); - staphis_F_N = mkN "staphis" "staphidis " feminine ; -- [XAXNO] :: stavesacre (Delphinium staphisagria); + stapes_F_N = mkN "stapes" "stapis" feminine ; -- [FXXCM] :: stirrup; stirrup-leather; (also medical for an inner ear bone, the stirrup); + staphis_F_N = mkN "staphis" "staphidis" feminine ; -- [XAXNO] :: stavesacre (Delphinium staphisagria); staphylinus_F_N = mkN "staphylinus" ; -- [DAXNS] :: parsnip (Pliny); - stapis_F_N = mkN "stapis" "stapis " feminine ; -- [FXXEM] :: stirrup; stirrup-leather; + stapis_F_N = mkN "stapis" "stapis" feminine ; -- [FXXEM] :: stirrup; stirrup-leather; statalis_A = mkA "statalis" "statalis" "statale" ; -- [GXXEK] :: of state (politics); stataria_F_N = mkN "stataria" ; -- [XDXCS] :: quiet-acted comedy; statarius_A = mkA "statarius" "stataria" "statarium" ; -- [XXXDX] :: stationary; statarius_M_N = mkN "statarius" ; -- [XDXDS] :: comedy actor; actor in stataria; - stater_M_N = mkN "stater" "stateris " masculine ; -- [XLQDS] :: small silver Jewish coin. (value of four drachma); + stater_M_N = mkN "stater" "stateris" masculine ; -- [XLQDS] :: small silver Jewish coin. (value of four drachma); statera_F_N = mkN "statera" ; -- [XXXDO] :: scales, balance; grade, standard of quality; chariot pole; statica_F_N = mkN "statica" ; -- [GXXEK] :: static; staticus_A = mkA "staticus" "statica" "staticum" ; -- [GXXEK] :: static; statim_Adv = mkAdv "statim" ; -- [XXXAX] :: at once, immediately; - statio_F_N = mkN "statio" "stationis " feminine ; -- [XXXBX] :: outpost, picket; station; watch; + statio_F_N = mkN "statio" "stationis" feminine ; -- [XXXBX] :: outpost, picket; station; watch; statistica_F_N = mkN "statistica" ; -- [GXXEK] :: statistic; statisticus_A = mkA "statisticus" "statistica" "statisticum" ; -- [GXXEK] :: statistical; stativa_F_N = mkN "stativa" ; -- [XWXDS] :: resting place; quarters; stativum_N_N = mkN "stativum" ; -- [XWXDS] :: standing camp (as pl.); stativus_A = mkA "stativus" "stativa" "stativum" ; -- [XXXDX] :: stationary, permanent; - stator_M_N = mkN "stator" "statoris " masculine ; -- [XXXDX] :: one who establishes or upholds (cult-title of Jupiter); + stator_M_N = mkN "stator" "statoris" masculine ; -- [XXXDX] :: one who establishes or upholds (cult-title of Jupiter); statua_F_N = mkN "statua" ; -- [XXXDX] :: statue; image; statuaria_F_N = mkN "statuaria" ; -- [XDXEC] :: art of sculpture; statuarius_A = mkA "statuarius" "statuaria" "statuarium" ; -- [XXXEC] :: of statues; statuarius_M_N = mkN "statuarius" ; -- [XDXEC] :: statute; statuliber_M_N = mkN "statuliber" ; -- [XLXEO] :: slave (male) to which freedom has been promised subject to stated conditions; 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; + 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; + status_M_N = mkN "status" "status" masculine ; -- [XXXBX] :: position, situation, condition; rank; standing, status; stega_F_N = mkN "stega" ; -- [BXXES] :: ship-deck; (Plautus); stela_F_N = mkN "stela" ; -- [XXXFS] :: pillar; column; - stelephur_M_N = mkN "stelephur" "stelephuris " masculine ; -- [XAXNO] :: plant w/flowers in spikes; (also stelephuros); (perh. haresfoot plantain); - stelio_M_N = mkN "stelio" "stelionis " masculine ; -- [XXXCO] :: lizard, gecko; treacherous/deceitful person, "snake"; + stelephur_M_N = mkN "stelephur" "stelephuris" masculine ; -- [XAXNO] :: plant w/flowers in spikes; (also stelephuros); (perh. haresfoot plantain); + stelio_M_N = mkN "stelio" "stelionis" masculine ; -- [XXXCO] :: lizard, gecko; treacherous/deceitful person, "snake"; stella_F_N = mkN "stella" ; -- [XXXAX] :: star; planet, heavenly body; point of light in jewel; constellation; star shape; stellans_A = mkA "stellans" "stellantis"; -- [XXXCO] :: starry; having the appearance of stars; set/adorned with stars; stellatus_A = mkA "stellatus" "stellata" "stellatum" ; -- [XXXCS] :: starry; set with stars; sparkling, glittering; shaped like a star or "X"; stellifer_A = mkA "stellifer" "stellifera" "stelliferum" ; -- [XSXEC] :: star-bearing, starry; stelliger_A = mkA "stelliger" "stelligera" "stelligerum" ; -- [XSXEC] :: star-bearing, starry; - stellio_M_N = mkN "stellio" "stellionis " masculine ; -- [XXXCO] :: lizard, gecko; treacherous/deceitful person, "snake"; - stellionatus_M_N = mkN "stellionatus" "stellionatus " masculine ; -- [XXXEO] :: trickery; cheating; deceitful/underhand dealing; + stellio_M_N = mkN "stellio" "stellionis" masculine ; -- [XXXCO] :: lizard, gecko; treacherous/deceitful person, "snake"; + stellionatus_M_N = mkN "stellionatus" "stellionatus" masculine ; -- [XXXEO] :: trickery; cheating; deceitful/underhand dealing; stello_V2 = mkV2 (mkV "stellare") ; -- [XXXES] :: set/furnish/cover with stars/points of light; - stemma_N_N = mkN "stemma" "stemmatis " neuter ; -- [XXXEC] :: garland, chaplet; a genealogical tree; + stemma_N_N = mkN "stemma" "stemmatis" neuter ; -- [XXXEC] :: garland, chaplet; a genealogical tree; stentaculum_N_N = mkN "stentaculum" ; -- [XXXEC] :: prop, support; stercilinium_N_N = mkN "stercilinium" ; -- [XXXCO] :: dung heap/hill/pit, manure pile; midden; stercilinum_N_N = mkN "stercilinum" ; -- [XXXCO] :: dung heap/hill/pit, manure pile; midden; @@ -34136,59 +34126,59 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat stercorosus_A = mkA "stercorosus" "stercorosa" "stercorosum" ; -- [XXXFS] :: well-manured; sterculinium_N_N = mkN "sterculinium" ; -- [XXXCO] :: dung heap/hill/pit, manure pile; midden; sterculinum_N_N = mkN "sterculinum" ; -- [XXXCO] :: dung heap/hill/pit, manure pile; midden; - stercus_M_N = mkN "stercus" "stercoris " masculine ; -- [XXXDX] :: filth, manure; + stercus_M_N = mkN "stercus" "stercoris" masculine ; -- [XXXDX] :: filth, manure; stereophonia_F_N = mkN "stereophonia" ; -- [HTXEK] :: stereo; stereophonicus_A = mkA "stereophonicus" "stereophonica" "stereophonicum" ; -- [HTXEK] :: stereophonic; stereotypus_M_N = mkN "stereotypus" ; -- [GXXEK] :: stereotype; sterilis_A = mkA "sterilis" "sterilis" "sterile" ; -- [XXXBX] :: barren, sterile; fruitless; unprofitable, futile; - sterilitas_F_N = mkN "sterilitas" "sterilitatis " feminine ; -- [XXXBO] :: barrenness, sterility, inability (female) to reproduce/(land) to produce crops; - sterilizatio_F_N = mkN "sterilizatio" "sterilizationis " feminine ; -- [GXXEK] :: sterilization; + sterilitas_F_N = mkN "sterilitas" "sterilitatis" feminine ; -- [XXXBO] :: barrenness, sterility, inability (female) to reproduce/(land) to produce crops; + 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; + 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; + 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; 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); + 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); - stibis_F_N = mkN "stibis" "stibis " feminine ; -- [XXXCO] :: antimony; (used in eye-salve and makeup); stibium/sulphuret of antimony (L+S); + stibis_F_N = mkN "stibis" "stibis" feminine ; -- [XXXCO] :: antimony; (used in eye-salve and makeup); stibium/sulphuret of antimony (L+S); stibium_N_N = mkN "stibium" ; -- [XXXCO] :: antimony; (used in eye-salve and makeup); stibium/sulphuret of antimony (L+S); stigma_F_N = mkN "stigma" ; -- [XLXCO] :: mark hot tattooed on runaway slaves/criminals; reproduction of Christ's wounds; - stigma_N_N = mkN "stigma" "stigmatis " neuter ; -- [XLXCO] :: mark hot tattooed on runaway slaves/criminals; reproduction of Christ's wounds; - stigmatias_M_N = mkN "stigmatias" "stigmatiae " masculine ; -- [XXXEC] :: branded slave; - stilio_M_N = mkN "stilio" "stilionis " masculine ; -- [EXXFT] :: lizard, gecko; treacherous/deceitful person, "snake"; + stigma_N_N = mkN "stigma" "stigmatis" neuter ; -- [XLXCO] :: mark hot tattooed on runaway slaves/criminals; reproduction of Christ's wounds; + stigmatias_M_N = mkN "stigmatias" "stigmatiae" masculine ; -- [XXXEC] :: branded slave; + stilio_M_N = mkN "stilio" "stilionis" masculine ; -- [EXXFT] :: lizard, gecko; treacherous/deceitful person, "snake"; stilisticus_A = mkA "stilisticus" "stilistica" "stilisticum" ; -- [GXXEK] :: stylistic; stilla_F_N = mkN "stilla" ; -- [XXXDX] :: drop of liquid; viscous drop; drip; stillicidium_N_N = mkN "stillicidium" ; -- [XXXDX] :: fall (of a liquid) in successive drops; stillo_V = mkV "stillare" ; -- [XXXDX] :: fall in drops; drip; cause to drip; pour in drops; stilus_M_N = mkN "stilus" ; -- [XXXDX] :: stylus, pencil, iron pen; column, pillar; - stimmi_N_N = mkN "stimmi" "stimmis " neuter ; -- [XXXCO] :: antimony; (used in eye-salve and makeup); stibium/sulphuret of antimony (L+S); - stimulatio_F_N = mkN "stimulatio" "stimulationis " feminine ; -- [DXXDS] :: incentive; - stimulatrix_F_N = mkN "stimulatrix" "stimulatricis " feminine ; -- [XXXDS] :: provocative woman; + stimmi_N_N = mkN "stimmi" "stimmis" neuter ; -- [XXXCO] :: antimony; (used in eye-salve and makeup); stibium/sulphuret of antimony (L+S); + stimulatio_F_N = mkN "stimulatio" "stimulationis" feminine ; -- [DXXDS] :: incentive; + stimulatrix_F_N = mkN "stimulatrix" "stimulatricis" feminine ; -- [XXXDS] :: provocative woman; 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; 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; + 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; stipendium_N_N = mkN "stipendium" ; -- [XXXDX] :: tribute, stipend; pay, wages; military service; - stipes_M_N = mkN "stipes" "stipitis " masculine ; -- [XXXDX] :: post, stake; + stipes_M_N = mkN "stipes" "stipitis" masculine ; -- [XXXDX] :: post, stake; stipo_V = mkV "stipare" ; -- [XXXDX] :: crowd, press together, compress, surround closely; - stips_F_N = mkN "stips" "stipis " feminine ; -- [XXXDX] :: small offering; + stips_F_N = mkN "stips" "stipis" feminine ; -- [XXXDX] :: small offering; stipula_F_N = mkN "stipula" ; -- [XXXDX] :: stalk; stubble; straw; reed played on as a pipe; - stipulatio_F_N = mkN "stipulatio" "stipulationis " feminine ; -- [XLXCO] :: |promise; bargain; (demanding spondesne from debtor/contract w/answer spondeo); + stipulatio_F_N = mkN "stipulatio" "stipulationis" feminine ; -- [XLXCO] :: |promise; bargain; (demanding spondesne from debtor/contract w/answer spondeo); stipulatiuncula_F_N = mkN "stipulatiuncula" ; -- [XXXDS] :: small promise; small stipulation; stipulor_V = mkV "stipulari" ; -- [XLXBO] :: extract solemn promise/guarantee (oral contract); promise in a stipulatio; stiria_F_N = mkN "stiria" ; -- [XXXDX] :: icicle; - stirps_F_N = mkN "stirps" "stirpis " feminine ; -- [XXXBX] :: stock, plant; race, lineage; character; [damnata ~ => condemned human race]; + stirps_F_N = mkN "stirps" "stirpis" feminine ; -- [XXXBX] :: stock, plant; race, lineage; character; [damnata ~ => condemned human race]; stiva_F_N = mkN "stiva" ; -- [XXXDX] :: plow handle; 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; @@ -34198,79 +34188,79 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + stoliditas_F_N = mkN "stoliditas" "stoliditatis" feminine ; -- [XXXDO] :: stupidity, cloddishness, brutish insensibility; dullness, obtuseness (L+S); 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; - stomatice_F_N = mkN "stomatice" "stomatices " feminine ; -- [XBXNS] :: mouth medicine; - storax_M_N = mkN "storax" "storacis " masculine ; -- [XAXES] :: styrax/storax; (fragrant gum/tree Styrax officinalis); (used medically); + stomatice_F_N = mkN "stomatice" "stomatices" feminine ; -- [XBXNS] :: mouth medicine; + storax_M_N = mkN "storax" "storacis" masculine ; -- [XAXES] :: styrax/storax; (fragrant gum/tree Styrax officinalis); (used medically); storea_F_N = mkN "storea" ; -- [XXXDX] :: matting of rushes; storia_F_N = mkN "storia" ; -- [XXXDX] :: matting of rushes; - strabo_M_N = mkN "strabo" "strabonis " masculine ; -- [XXXEC] :: squinter; - strages_F_N = mkN "strages" "stragis " feminine ; -- [XXXBX] :: overthrow; massacre, slaughter, cutting down; havoc; confused heap; + strabo_M_N = mkN "strabo" "strabonis" masculine ; -- [XXXEC] :: squinter; + strages_F_N = mkN "strages" "stragis" feminine ; -- [XXXBX] :: overthrow; massacre, slaughter, cutting down; havoc; confused heap; stragulum_N_N = mkN "stragulum" ; -- [XXXDS] :: covering; rug, carpet; bedspread, bed-cover; stragulus_A = mkA "stragulus" "stragula" "stragulum" ; -- [XXXDX] :: covering; - stramen_N_N = mkN "stramen" "straminis " neuter ; -- [XXXDX] :: straw for bedding, etc, litter; + stramen_N_N = mkN "stramen" "straminis" neuter ; -- [XXXDX] :: straw for bedding, etc, litter; stramentum_N_N = mkN "stramentum" ; -- [XXXDX] :: thatch; litter/trash (Cal); stramineus_A = mkA "stramineus" "straminea" "stramineum" ; -- [XXXEO] :: straw-, made of straw; straw-colored (Cal); strangulo_V2 = mkV2 (mkV "strangulare") ; -- [XXXBO] :: strangle/throttle; suffocate/stifle/smother; choke; constrict way; keep close; stranguria_F_N = mkN "stranguria" ; -- [XXXEC] :: strangury, painful discharge of urine; disease of urinary organs; - strategema_N_N = mkN "strategema" "strategematis " neuter ; -- [XXXFM] :: stratagem; piece of generalship; - strategica_N_N = mkN "strategica" "strategicatis " neuter ; -- [XWXFC] :: generalship, general's deed; stratagem; + strategema_N_N = mkN "strategema" "strategematis" neuter ; -- [XXXFM] :: stratagem; piece of generalship; + strategica_N_N = mkN "strategica" "strategicatis" neuter ; -- [XWXFC] :: generalship, general's deed; stratagem; strategus_M_N = mkN "strategus" ; -- [XWXFQ] :: commander; president; (Col); stratioticus_A = mkA "stratioticus" "stratiotica" "stratioticum" ; -- [XWXDO] :: soldierly, military, proper to soldier; w/status/bearing of soldier; eye-salve; stratorium_N_N = mkN "stratorium" ; -- [EXXFS] :: bedding (pl.); stratum_N_N = mkN "stratum" ; -- [XXXDX] :: coverlet; bed, couch; horse-blanket; stratus_A = mkA "stratus" "strata" "stratum" ; -- [XXXDS] :: prostrate; - stratus_M_N = mkN "stratus" "stratus " masculine ; -- [XXXFS] :: spreading; cover; + stratus_M_N = mkN "stratus" "stratus" masculine ; -- [XXXFS] :: spreading; cover; strena_F_N = mkN "strena" ; -- [XXXEC] :: favorable omen; a new year's gift; - strenuitas_F_N = mkN "strenuitas" "strenuitatis " feminine ; -- [XXXDX] :: strenuous behavior, activity; + strenuitas_F_N = mkN "strenuitas" "strenuitatis" feminine ; -- [XXXDX] :: strenuous behavior, activity; strenuus_A = mkA "strenuus" "strenua" "strenuum" ; -- [XXXDX] :: active, vigorous, strenuous; strepa_F_N = mkN "strepa" ; -- [FXXDM] :: stirrup; stirrup-leather; - strepes_F_N = mkN "strepes" "strepae " feminine ; -- [FXXDM] :: stirrup; stirrup-leather; + 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; + 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; + 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; - strigilis_F_N = mkN "strigilis" "strigilis " feminine ; -- [XXXDX] :: strigil, an instrument used to scrape the skin after the bath; - strigio_M_N = mkN "strigio" "strigionis " masculine ; -- [XDXFO] :: actor in mime; + strigilis_F_N = mkN "strigilis" "strigilis" feminine ; -- [XXXDX] :: strigil, an instrument used to scrape the skin after the bath; + 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; + 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; - strix_F_N = mkN "strix" "strigis " feminine ; -- [XXXFO] :: small nugget; + strix_F_N = mkN "strix" "strigis" feminine ; -- [XXXFO] :: small nugget; stropha_F_N = mkN "stropha" ; -- [XXXEC] :: trick, artifice; strophiarius_M_N = mkN "strophiarius" ; -- [BXXFS] :: breast-bands dealer; strophium_N_N = mkN "strophium" ; -- [XXXDX] :: twisted breast-band; head-band; bra (Cal); stroppus_M_N = mkN "stroppus" ; -- [GXXEK] :: garter; structilis_A = mkA "structilis" "structilis" "structile" ; -- [XTXEC] :: used in building; - structor_M_N = mkN "structor" "structoris " masculine ; -- [XXXDX] :: builder, carver; + structor_M_N = mkN "structor" "structoris" masculine ; -- [XXXDX] :: builder, carver; structura_F_N = mkN "structura" ; -- [XXXDX] :: building, construction; structure, masonry, concrete; structuralis_A = mkA "structuralis" "structuralis" "structurale" ; -- [GXXEK] :: structural; structuralismus_M_N = mkN "structuralismus" ; -- [GXXEK] :: structuralism; - strues_F_N = mkN "strues" "struis " feminine ; -- [XXXDX] :: heap, pile; row of sacrificial cakes; - struix_F_N = mkN "struix" "struicis " feminine ; -- [XXXEO] :: heap, pile; + strues_F_N = mkN "strues" "struis" feminine ; -- [XXXDX] :: heap, pile; row of sacrificial cakes; + 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; + 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; - struthion_N_N = mkN "struthion" "struthii " neuter ; -- [DAXNS] :: soapwort plant (Pliny); + struthion_N_N = mkN "struthion" "struthii" neuter ; -- [DAXNS] :: soapwort plant (Pliny); struthocamelinus_A = mkA "struthocamelinus" "struthocamelina" "struthocamelinum" ; -- [XAXNO] :: of/belonging/pertaining to an ostrich; struthocamelus_M_N = mkN "struthocamelus" ; -- [XAXDO] :: ostrich; - strutio_M_N = mkN "strutio" "strutionis " masculine ; -- [DAXDS] :: ostrich; + 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; studiosus_A = mkA "studiosus" ; -- [XXXBX] :: eager, keen, full of zeal; studious; devoted to, fond of; @@ -34284,61 +34274,61 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; 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; + stupiditas_F_N = mkN "stupiditas" "stupiditatis" feminine ; -- [XXXEC] :: dullness, senselessness; stupidus_A = mkA "stupidus" "stupida" "stupidum" ; -- [XXXEC] :: senseless, stunned; stupid, dull; - stupor_M_N = mkN "stupor" "stuporis " masculine ; -- [XXXDX] :: numbness, torpor; stupefaction; stupidity; + stupor_M_N = mkN "stupor" "stuporis" masculine ; -- [XXXDX] :: numbness, torpor; stupefaction; stupidity; stuppa_F_N = mkN "stuppa" ; -- [XXXDX] :: tow, coarse flax; stuppeus_A = mkA "stuppeus" "stuppea" "stuppeum" ; -- [XXXDX] :: of tow; stupro_V = mkV "stuprare" ; -- [XXXDX] :: have (illicit) sexual intercourse with; stuprum_N_N = mkN "stuprum" ; -- [XXXDX] :: dishonor, shame; (illicit) sexual intercourse; - sturax_M_N = mkN "sturax" "sturacis " masculine ; -- [XAXEO] :: styrax/storax; (fragrant gum/tree Styrax officinalis); (used medically); - sturgio_F_N = mkN "sturgio" "sturgionis " feminine ; -- [FAXEM] :: sturgeon; + sturax_M_N = mkN "sturax" "sturacis" masculine ; -- [XAXEO] :: styrax/storax; (fragrant gum/tree Styrax officinalis); (used medically); + sturgio_F_N = mkN "sturgio" "sturgionis" feminine ; -- [FAXEM] :: sturgeon; sturnus_M_N = mkN "sturnus" ; -- [XXXEC] :: starling; stygius_A = mkA "stygius" "stygia" "stygium" ; -- [XXXFS] :: Stygian, of river Styx; of fountain Styx; stylobata_M_N = mkN "stylobata" ; -- [XTXCO] :: stylobate, continuous (stepped) base supporting a row/circle of columns; - stylobates_M_N = mkN "stylobates" "stylobatae " masculine ; -- [XTXCO] :: stylobate, continuous (stepped) base supporting a row/circle of columns; + stylobates_M_N = mkN "stylobates" "stylobatae" masculine ; -- [XTXCO] :: stylobate, continuous (stepped) base supporting a row/circle of columns; stylus_M_N = mkN "stylus" ; -- [XXXDX] :: stylus, pencil, iron pen; column, pillar; styraca_C_N = mkN "styraca" ; -- [XAXFP] :: styrax/storax; (fragrant gum/tree Styrax officinalis); (used medically); styracinus_A = mkA "styracinus" "styracina" "styracinum" ; -- [DBXFS] :: made from styrax/storax; (fragrant gum/tree Styrax officinalis); (medicine); - styrax_M_N = mkN "styrax" "styracis " masculine ; -- [XAXEO] :: styrax/storax; (fragrant gum/tree Styrax officinalis); (used medically); + styrax_M_N = mkN "styrax" "styracis" masculine ; -- [XAXEO] :: styrax/storax; (fragrant gum/tree Styrax officinalis); (used medically); suada_F_N = mkN "suada" ; -- [XXXEC] :: persuasion; suadela_F_N = mkN "suadela" ; -- [XXXEC] :: persuasion; suadeo_V = mkV "suadere" ; -- [XXXBX] :: urge, recommend; suggest; induce; propose, persuade, advise; suadus_A = mkA "suadus" "suada" "suadum" ; -- [XXXEC] :: persuasive; - suasor_M_N = mkN "suasor" "suasoris " masculine ; -- [XXXDX] :: adviser, counselor; + suasor_M_N = mkN "suasor" "suasoris" masculine ; -- [XXXDX] :: adviser, counselor; suasoria_F_N = mkN "suasoria" ; -- [XGXDO] :: hortatory/persuasive speech; rhetorical exercise giving history based advice; suasorius_A = mkA "suasorius" "suasoria" "suasorium" ; -- [XGXEO] :: persuasive, seductive; concerned with advice/counseling; - suasus_M_N = mkN "suasus" "suasus " masculine ; -- [XXXDS] :: advice; advising; + suasus_M_N = mkN "suasus" "suasus" masculine ; -- [XXXDS] :: advice; advising; suaveolens_A = mkA "suaveolens" "suaveolentis"; -- [XXXEC] :: sweet-smelling; - suaviatio_F_N = mkN "suaviatio" "suaviationis " feminine ; -- [XXXDS] :: kissing; + suaviatio_F_N = mkN "suaviatio" "suaviationis" feminine ; -- [XXXDS] :: kissing; suavidicus_A = mkA "suavidicus" "suavidica" "suavidicum" ; -- [XXXDX] :: speaking pleasantly; 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; suavis_A = mkA "suavis" ; -- [XXXDX] :: agreeable, pleasant, gratifying, sweet; charming, attractive; - suavitas_F_N = mkN "suavitas" "suavitatis " feminine ; -- [XXXBX] :: charm, attractiveness; sweetness; + 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; subacidus_A = mkA "subacidus" "subacida" "subacidum" ; -- [XXXDX] :: slightly acid; - subactio_F_N = mkN "subactio" "subactionis " feminine ; -- [XAXDS] :: soil-working; preparation; + subactio_F_N = mkN "subactio" "subactionis" feminine ; -- [XAXDS] :: soil-working; preparation; subadjuva_M_N = mkN "subadjuva" ; -- [ELXFS] :: assistant; subadroganter_Adv = mkAdv "subadroganter" ; -- [XXXEC] :: somewhat arrogantly; - subagitatio_F_N = mkN "subagitatio" "subagitationis " feminine ; -- [BXXEI] :: erotic fondling/feeling/touching; titillation/foreplay; illicit intercourse; + subagitatio_F_N = mkN "subagitatio" "subagitationis" feminine ; -- [BXXEI] :: erotic fondling/feeling/touching; titillation/foreplay; illicit intercourse; subagrestis_A = mkA "subagrestis" "subagrestis" "subagreste" ; -- [XXXDS] :: somewhat rustic; - subalare_N_N = mkN "subalare" "subalaris " neuter ; -- [XXXFS] :: under-girdle; + subalare_N_N = mkN "subalare" "subalaris" neuter ; -- [XXXFS] :: under-girdle; subalaris_A = mkA "subalaris" "subalaris" "subalare" ; -- [XXXDS] :: arm-carrying; carrying/stuck under the arm; - subalaris_M_N = mkN "subalaris" "subalaris " masculine ; -- [EXXFT] :: little wing; (4 Ezra 12:29); + subalaris_M_N = mkN "subalaris" "subalaris" masculine ; -- [EXXFT] :: little wing; (4 Ezra 12:29); subalbidus_A = mkA "subalbidus" "subalbida" "subalbidum" ; -- [XXXDS] :: rather whitish; subamarus_A = mkA "subamarus" "subamara" "subamarum" ; -- [XXXEC] :: somewhat bitter; subaqueanus_A = mkA "subaqueanus" "subaqueana" "subaqueanum" ; -- [GXXEK] :: underwater; [navis subaqueana => submarine]; @@ -34346,11 +34336,11 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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 = mkV2 (mkV "subblandire" "subblandio" "subblandivi" "subblanditus ") Dat_Prep ; -- [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; @@ -34358,106 +34348,106 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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; + 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; + 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.); + 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; + 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; + 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; + 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; + 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; + 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; + subintroductio_F_N = mkN "subintroductio" "subintroductionis" feminine ; -- [GXXEK] :: smuggling; + subintroductor_M_N = mkN "subintroductor" "subintroductoris" masculine ; -- [GXXEK] :: smuggler; subintroeo_V2 = mkV2 (mkV "subintroire") ; -- [EXXES] :: go into, enter; 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); + 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; - subitatio_F_N = mkN "subitatio" "subitationis " feminine ; -- [EXXFS] :: suddenness; + subitatio_F_N = mkN "subitatio" "subitationis" feminine ; -- [EXXFS] :: suddenness; subito_Adv = mkAdv "subito" ; -- [XXXAO] :: suddenly, unexpectedly; at once, at short notice, quickly; in no time at all; subitus_A = mkA "subitus" "subita" "subitum" ; -- [XXXDX] :: sudden; rash, unexpected; subium_N_N = mkN "subium" ; -- [GXXEK] :: moustache; subjaceo_V = mkV "subjacere" ; -- [XXXBO] :: lie underneath/below/at the foot/edge of/exposed (to); come under heading of; - subjectio_F_N = mkN "subjectio" "subjectionis " feminine ; -- [EXXDP] :: ||subjugation, subjection; submission; inferiority; foundation; + subjectio_F_N = mkN "subjectio" "subjectionis" feminine ; -- [EXXDP] :: ||subjugation, subjection; submission; inferiority; foundation; 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; + subjector_M_N = mkN "subjector" "subjectoris" masculine ; -- [XXXDS] :: forger; substitutor; subjectus_A = mkA "subjectus" ; -- [XXXDX] :: lying near, adjacent; - subjicio_V2 = mkV2 (mkV "subjicere" "subjicio" "subjeci" "subjectus ") ; -- [XXXCS] :: throw under, place under; make subject; expose; + 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); + 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); - subjugatio_F_N = mkN "subjugatio" "subjugationis " feminine ; -- [FXXDM] :: subjugation; + subjugatio_F_N = mkN "subjugatio" "subjugationis" feminine ; -- [FXXDM] :: subjugation; 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; + 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; + 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; + sublevatio_F_N = mkN "sublevatio" "sublevationis" feminine ; -- [XXXDS] :: alleviation; sublevo_V = mkV "sublevare" ; -- [XXXDX] :: lift up, raise; support; assist; lighten; sublica_F_N = mkN "sublica" ; -- [XTXDO] :: wooden stake or pile; (normally used as support for bridge/heavy structure); - sublicis_F_N = mkN "sublicis" "sublicis " feminine ; -- [XTXEO] :: wooden stake or pile; (normally used as support for bridge/heavy structure); + sublicis_F_N = mkN "sublicis" "sublicis" feminine ; -- [XTXEO] :: wooden stake or pile; (normally used as support for bridge/heavy structure); sublicius_A = mkA "sublicius" "sublicia" "sublicium" ; -- [XXXDX] :: resting on/supported by piles; (Pons Sublicius/Pile Bridge, across the Tiber); subligaculum_N_N = mkN "subligaculum" ; -- [XXXEC] :: loincloth, kilt; - subligar_N_N = mkN "subligar" "subligaris " neuter ; -- [GXXEK] :: underpants, briefs; + subligar_N_N = mkN "subligar" "subligaris" neuter ; -- [GXXEK] :: underpants, briefs; subligo_V = mkV "subligare" ; -- [XXXDX] :: fasten (to); - sublimatio_F_N = mkN "sublimatio" "sublimationis " feminine ; -- [GSXEK] :: sublimation (chemical); + 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; 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); + 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; 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; + 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; + 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; + 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; + 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; + 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; + 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; @@ -34466,16 +34456,16 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; subniger_A = mkA "subniger" "subnigra" "subnigrum" ; -- [XXXDO] :: blackish; somewhat dark; having a rather swarthy complexion; subnisus_A = mkA "subnisus" "subnisa" "subnisum" ; -- [XXXDS] :: relying on (w/ABL); elated by; (subnixus); subnixus_A = mkA "subnixus" "subnixa" "subnixum" ; -- [XXXDX] :: relying on (w/ABL); elated by; - subnotatio_F_N = mkN "subnotatio" "subnotationis " feminine ; -- [GXXEK] :: subscription; - subnotator_M_N = mkN "subnotator" "subnotatoris " masculine ; -- [GXXEK] :: subscriber; + subnotatio_F_N = mkN "subnotatio" "subnotationis" feminine ; -- [GXXEK] :: subscription; + subnotator_M_N = mkN "subnotator" "subnotatoris" masculine ; -- [GXXEK] :: subscriber; subnoto_V = mkV "subnotare" ; -- [GXXEK] :: subscribe; subnuba_F_N = mkN "subnuba" ; -- [XXXEC] :: rival; subnubilus_A = mkA "subnubilus" "subnubila" "subnubilum" ; -- [XXXDX] :: somewhat cloudy, overcast; @@ -34486,14 +34476,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + suboles_F_N = mkN "suboles" "subolis" feminine ; -- [XXXBX] :: shoot, sucker; race; offspring; progeny; 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; + 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); + subortus_M_N = mkN "subortus" "subortus" masculine ; -- [XXXDX] :: springing up (of a fresh supply); subpositivus_A = mkA "subpositivus" "subpositiva" "subpositivum" ; -- [EXXEP] :: hypothetical; - subpuratio_F_N = mkN "subpuratio" "subpurationis " feminine ; -- [XBXCO] :: suppuration/festering; suppurating/festering sore, abscess; + subpuratio_F_N = mkN "subpuratio" "subpurationis" feminine ; -- [XBXCO] :: suppuration/festering; suppurating/festering sore, abscess; subpuratorius_A = mkA "subpuratorius" "subpuratoria" "subpuratorium" ; -- [XBXNO] :: of/concerned with festering/suppurating sores/abscesses; subpuratus_A = mkA "subpuratus" "subpurata" "subpuratum" ; -- [XBXDO] :: that has suppurated/festered; that has come to a head; (of a tumor); subpuro_V = mkV "subpurare" ; -- [XBXCO] :: suppurate, fester under the surface; @@ -34501,88 +34491,87 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); + 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); + 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; + 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; + 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; + 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; + 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; + 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; + 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; + 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); + 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 "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; + 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; + 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; + substramen_N_N = mkN "substramen" "substraminis" neuter ; -- [XXXDS] :: support; what is strewn under; 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; + 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; + subsum_V = mkV "subesse" "subsum" "subfui" "subfuturus" ; -- Comment: [XXXDX] :: be underneath/a basis for discussion/close at hand as a reserve, be near; subsumentum_N_N = mkN "subsumentum" ; -- [GXXEK] :: lining (of garment); subsuperparticularis_A = mkA "subsuperparticularis" "subsuperparticularis" "subsuperparticulare" ; -- [EXXEP] :: contained within greater; contained in number one bigger (eg. 3 out of 4); subsuperpartiens_A = mkA "subsuperpartiens" "subsuperpartientis"; -- [EXXEP] :: contained within greater; contained in number one bigger (eg. 3 out of 4); subsutus_A = mkA "subsutus" "subsuta" "subsutum" ; -- [XXXDX] :: stitched at the bottom; - 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; - 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); + 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; + 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; - subterduco_V2 = mkV2 (mkV "subterducere" "subterduco" "subterduxi" "subterductus ") ; -- [BXXDS] :: carry off secretly; + 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; + subtero_V2 = mkV2 (mkV "subterere" "subtero" "subtrivi" "subtritus") ; -- [XXXDS] :: rub under; rub off; pound; subterraneus_A = mkA "subterraneus" "subterranea" "subterraneum" ; -- [XXXDX] :: subterranean, underground; - subtexo_V2 = mkV2 (mkV "subtexere" "subtexo" "subtexui" "subtextus ") ; -- [XXXDX] :: weave beneath; veil; subjoin, attach as a sequel (to); + 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; + 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; + 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); + 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); subturpiculus_A = mkA "subturpiculus" "subturpicula" "subturpiculum" ; -- [XXXEC] :: rather on the disgraceful side; subturpis_A = mkA "subturpis" "subturpis" "subturpe" ; -- [XXXDS] :: somewhat mean/repulsive; @@ -34591,55 +34580,55 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat subucula_F_N = mkN "subucula" ; -- [XXXEO] :: under-tunic (both sexes), undergarment; sacrificial cake(?); small jacket (Cal); subula_F_N = mkN "subula" ; -- [XXXEC] :: shoemaker's awl; subulcus_M_N = mkN "subulcus" ; -- [XXXDX] :: swineherd; - suburbanitas_F_N = mkN "suburbanitas" "suburbanitatis " feminine ; -- [XXXDS] :: nearness to Rome; + suburbanitas_F_N = mkN "suburbanitas" "suburbanitatis" feminine ; -- [XXXDS] :: nearness to Rome; suburbanus_A = mkA "suburbanus" "suburbana" "suburbanum" ; -- [XXXDX] :: situated close to the city; growing or cultivated near the city; suburbanus_M_N = mkN "suburbanus" ; -- [XXXDX] :: people (pl.) dwelling near the city; suburbium_N_N = mkN "suburbium" ; -- [XXXEC] :: suburb; suburgeo_V = mkV "suburgere" ; -- [XXXDX] :: drive up close; - subvectio_F_N = mkN "subvectio" "subvectionis " feminine ; -- [XXXDX] :: transporting (of supplies) to a center; + 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; + 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; + 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; 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; + 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; - successio_F_N = mkN "successio" "successionis " feminine ; -- [XLXCO] :: succession (to position/ownership w/GEN); successors collectively; - successor_M_N = mkN "successor" "successoris " masculine ; -- [XXXDX] :: successor; - successus_M_N = mkN "successus" "successus " masculine ; -- [XXXDX] :: approach, advance uphill, outcome, success; + succeptor_M_N = mkN "succeptor" "succeptoris" masculine ; -- [XXXEO] :: one who takes hand in an enterprise; one admitting gamblers to his house; + successio_F_N = mkN "successio" "successionis" feminine ; -- [XLXCO] :: succession (to position/ownership w/GEN); successors collectively; + 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; + 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; + 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; 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; + 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; 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; + 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; + 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; @@ -34648,62 +34637,62 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat sudarium_N_N = mkN "sudarium" ; -- [XXXDX] :: handkerchief, napkin; sudatorium_N_N = mkN "sudatorium" ; -- [XXXEC] :: sweating-room; sudatorius_A = mkA "sudatorius" "sudatoria" "sudatorium" ; -- [XXXEC] :: of sweating; - sudis_F_N = mkN "sudis" "sudis " feminine ; -- [XXXDX] :: stake, log; + sudis_F_N = mkN "sudis" "sudis" feminine ; -- [XXXDX] :: stake, log; sudo_V = mkV "sudare" ; -- [XXXDX] :: sweat, perspire; - sudor_M_N = mkN "sudor" "sudoris " masculine ; -- [XXXDX] :: sweat; hard labor; + sudor_M_N = mkN "sudor" "sudoris" masculine ; -- [XXXDX] :: sweat; hard labor; 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); + 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; + 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; + 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; + 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; + 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]; + 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; + 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); + 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); suffragatorius_A = mkA "suffragatorius" "suffragatoria" "suffragatorium" ; -- [XXXDS] :: candidate-supporting; suffragium_N_N = mkN "suffragium" ; -- [XXXDX] :: vote; judgment; applause; - suffrago_F_N = mkN "suffrago" "suffraginis " feminine ; -- [XAXCO] :: hock; joint in hind leg between knee and ankle; sucker shoot (of vine); + suffrago_F_N = mkN "suffrago" "suffraginis" feminine ; -- [XAXCO] :: hock; joint in hind leg between knee and ankle; sucker shoot (of vine); 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; 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; + 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; + 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; + 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; + 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; + 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; @@ -34713,152 +34702,152 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat suillus_A = mkA "suillus" "suilla" "suillum" ; -- [XXXDX] :: of pigs/swine; sulco_V = mkV "sulcare" ; -- [XXXDX] :: furrow, plow; cleave; 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); + 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); + 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); + sulpur_N_N = mkN "sulpur" "sulpuris" neuter ; -- [XXXCO] :: brimstone, sulfur; lightning/thunder (associated with brimstone); sulpureus_A = mkA "sulpureus" "sulpurea" "sulpureum" ; -- [XXXDX] :: sulfurous; sultanus_M_N = mkN "sultanus" ; -- [GXXEK] :: sultan; sulum_N_N = mkN "sulum" ; -- [FXXEN] :: each thing, every single thing; each and every thing; everything; sumbolum_N_N = mkN "sumbolum" ; -- [XXXDS] :: token/symbol; matching objects proving identity; signet ring; warrant, permit; sumbolus_M_N = mkN "sumbolus" ; -- [XXXDO] :: token/symbol; matching objects proving identity; signet ring; warrant, permit; - sumen_N_N = mkN "sumen" "suminis " neuter ; -- [XXXDX] :: breeding sow; + sumen_N_N = mkN "sumen" "suminis" neuter ; -- [XXXDX] :: breeding sow; summa_F_N = mkN "summa" ; -- [XXXBX] :: sum; summary; chief point, essence, principal matter, substance; total; summas_A = mkA "summas" "summatis"; -- [XXXFZ] :: high-born; eminent (Collins); summatim_Adv = mkAdv "summatim" ; -- [XXXDX] :: summarily, briefly; - summatus_M_N = mkN "summatus" "summatus " masculine ; -- [XXXEZ] :: sovereignty (Collins); + 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; + 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; + 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; + 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; + 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); summorosus_A = mkA "summorosus" "summorosa" "summorosum" ; -- [XXXEC] :: somewhat peevish; - summotor_M_N = mkN "summotor" "summotoris " masculine ; -- [XXXDS] :: space-clearer; one who clears spaces; + summotor_M_N = mkN "summotor" "summotoris" masculine ; -- [XXXDS] :: space-clearer; one who clears spaces; summoveo_V = mkV "summovere" ; -- [XXXAO] :: remove; drive off, dislodge; expel; ward off; keep at a distance; bar/debar; summum_N_N = mkN "summum" ; -- [XXXDX] :: top; summit, end, last; highest place; top surface; (voice) highest, loudest; 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); + 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); + 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_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; + 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; + 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; - superbio_V = mkV "superbire" "superbio" "superbivi" "superbitus "; -- [XXXCO] :: show/have (too much) pride/disdain (to); be proud/gorgeous/superb/magnificent; + 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; + 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; + 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; + 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; + 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); + 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; + 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; + 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; + 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; 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; + 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; + 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; + 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; + 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; + 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; + 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; + superpono_V2 = mkV2 (mkV "superponere" "superpono" "superposui" "superpositus") ; -- [XXXDX] :: place over or on top; put in charge; superrealismus_M_N = mkN "superrealismus" ; -- [GXXEK] :: surrealism; 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 = 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; + 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; + 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; + 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; + 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); + 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; 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; @@ -34866,9 +34855,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; 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; + 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; 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; @@ -34881,131 +34870,131 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat supparasitor_V = mkV "supparasitari" ; -- [BXXDS] :: flatter somewhat; supparum_N_N = mkN "supparum" ; -- [XXXES] :: linen garment (for women); topsail; supparus_M_N = mkN "supparus" ; -- [XXXDS] :: top-sail; linen garment; (see also supparum); - suppeditatio_F_N = mkN "suppeditatio" "suppeditationis " feminine ; -- [XXXDS] :: abundance; + 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; + 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; + 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; supplex_A = mkA "supplex" "supplicis"; -- [XXXDX] :: suppliant, kneeling, begging; - supplex_M_N = mkN "supplex" "supplicis " masculine ; -- [XXXBX] :: suppliant; - supplicatio_F_N = mkN "supplicatio" "supplicationis " feminine ; -- [XXXDX] :: thanksgiving; supplication; + supplex_M_N = mkN "supplex" "supplicis" masculine ; -- [XXXBX] :: suppliant; + supplicatio_F_N = mkN "supplicatio" "supplicationis" feminine ; -- [XXXDX] :: thanksgiving; supplication; 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; 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; + 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); + 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; + 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; - suppuratio_F_N = mkN "suppuratio" "suppurationis " feminine ; -- [XBXCO] :: suppuration/festering; suppurating/festering sore, abscess; + suppuratio_F_N = mkN "suppuratio" "suppurationis" feminine ; -- [XBXCO] :: suppuration/festering; suppurating/festering sore, abscess; suppuratorius_A = mkA "suppuratorius" "suppuratoria" "suppuratorium" ; -- [XBXNO] :: of/concerned with festering/suppurating sores/abscesses; suppuratus_A = mkA "suppuratus" "suppurata" "suppuratum" ; -- [XBXDO] :: that has suppurated/festered; that has come to a head; (of a tumor); suppuro_V = mkV "suppurare" ; -- [XBXCO] :: suppurate, fester under the surface; suppus_A = mkA "suppus" "suppa" "suppum" ; -- [XXXEC] :: head-downwards; - supputatio_F_N = mkN "supputatio" "supputationis " feminine ; -- [XXXDS] :: computation; + 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; + supradico_V2 = mkV2 (mkV "supradicere" "supradico" "supradixi" "supradictus") ; -- [XXXDX] :: say in addition to; say above, say before; supranistria_F_N = mkN "supranistria" ; -- [GDXEK] :: soprano; 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); + 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; 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; + 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; surculosus_A = mkA "surculosus" "surculosa" "surculosum" ; -- [DAXNS] :: woody; ligneous (Pliny); surculus_M_N = mkN "surculus" ; -- [XXXDX] :: shoot, sprout; surdaster_A = mkA "surdaster" "surdastra" "surdastrum" ; -- [XXXEC] :: somewhat deaf; - surditas_F_N = mkN "surditas" "surditatis " feminine ; -- [XXXDX] :: deafness; + 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; + 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; + 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); + 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; + 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; surrutilus_A = mkA "surrutilus" "surrutila" "surrutilum" ; -- [DXXDS] :: somewhat reddish; sursisa_F_N = mkN "sursisa" ; -- [FLXEM] :: fine-for-default; "sursise"; sursum_Adv = mkAdv "sursum" ; -- [XXXDX] :: up, on high; - sus_F_N = mkN "sus" "suis " feminine ; -- [XXXDX] :: swine; hog, pig, sow; - sus_M_N = mkN "sus" "suis " masculine ; -- [XXXDX] :: swine; hog, pig, sow; + sus_F_N = mkN "sus" "suis" feminine ; -- [XXXDX] :: swine; hog, pig, sow; + sus_M_N = mkN "sus" "suis" masculine ; -- [XXXDX] :: swine; hog, pig, sow; suscenseo_V = mkV "suscensere" ; -- [XXXCO] :: be angry; be indignant with; 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; + 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; + 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; 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; + 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; + 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; + 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; + suspiratus_M_N = mkN "suspiratus" "suspiratus" masculine ; -- [XXXDX] :: sigh; deep breath; suspiriosus_A = mkA "suspiriosus" "suspiriosa" "suspiriosum" ; -- [XXXES] :: deep breathing; B:asthmatic; - suspiritus_M_N = mkN "suspiritus" "suspiritus " masculine ; -- [XXXDX] :: sigh; + suspiritus_M_N = mkN "suspiritus" "suspiritus" masculine ; -- [XXXDX] :: sigh; suspirium_N_N = mkN "suspirium" ; -- [XXXBX] :: deep breath, sigh; suspiro_V = mkV "suspirare" ; -- [XXXBX] :: sigh; utter with a sigh; susque_Adv = mkAdv "susque" ; -- [XXXDS] :: up and; [susque deque => up and down]; sussulto_V = mkV "sussultare" ; -- [XXXDO] :: keep jumping up; spring up, leap up; (also jerky rhythm); sustentaculum_N_N = mkN "sustentaculum" ; -- [XXXDS] :: nourishment; prop; rack (for books/luggage Cal); - sustentatus_M_N = mkN "sustentatus" "sustentatus " masculine ; -- [DXXES] :: support, sustaining, bearing/carrying; keeping erect/upright; hangings/drapes; + 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; 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; - susurrator_M_N = mkN "susurrator" "susurratoris " masculine ; -- [XXXFO] :: whisperer; one who whispers; - susurratrix_F_N = mkN "susurratrix" "susurratricis " feminine ; -- [DXXFS] :: whisperer (female) whispers; + susurratio_F_N = mkN "susurratio" "susurrationis" feminine ; -- [DXXDS] :: whisper, whispering; + susurrator_M_N = mkN "susurrator" "susurratoris" masculine ; -- [XXXFO] :: whisperer; one who whispers; + susurratrix_F_N = mkN "susurratrix" "susurratricis" feminine ; -- [DXXFS] :: whisperer (female) whispers; susurrium_N_N = mkN "susurrium" ; -- [FXXEM] :: whisper; - susurro_M_N = mkN "susurro" "susurronis " masculine ; -- [DXXEX] :: whisperer; mutterer; tale-bearer; + susurro_M_N = mkN "susurro" "susurronis" masculine ; -- [DXXEX] :: whisperer; mutterer; tale-bearer; susurro_V = mkV "susurrare" ; -- [XXXDX] :: mutter, whisper, hum, buzz, murmur; susurrus_A = mkA "susurrus" "susurra" "susurrum" ; -- [XXXDX] :: whispering; susurrus_M_N = mkN "susurrus" ; -- [XXXDX] :: whisper, whispered report; soft rustling sound; sutela_F_N = mkN "sutela" ; -- [XXXDS] :: trick; sewing together; sutilis_A = mkA "sutilis" "sutilis" "sutile" ; -- [XXXDX] :: made by sewing, consisting of things stitched together; - sutor_M_N = mkN "sutor" "sutoris " masculine ; -- [XXXDX] :: shoemaker; cobbler; + sutor_M_N = mkN "sutor" "sutoris" masculine ; -- [XXXDX] :: shoemaker; cobbler; sutorius_A = mkA "sutorius" "sutoria" "sutorium" ; -- [XXXDS] :: cobbler's; of a shoemaker; sewing (Cas); sutorius_M_N = mkN "sutorius" ; -- [XXXES] :: ex-cobbler; sutrinus_A = mkA "sutrinus" "sutrina" "sutrinum" ; -- [XXXEC] :: of a shoemaker; @@ -35013,20 +35002,20 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat suum_N_N = mkN "suum" ; -- [XXXDX] :: his property (pl.); [se suaque => themselves and their possessions]; suus_A = mkA "suus" "sua" "suum" ; -- [XXXDX] :: his/one's (own), her (own), hers, its (own); (pl.) their (own), theirs; suus_M_N = mkN "suus" ; -- [XXXDX] :: his men (pl.), his friends; - sycaminon_M_N = mkN "sycaminon" "sycaminonis " masculine ; -- [DAXFS] :: mulberry tree; - sycaminos_M_N = mkN "sycaminos" "sycamini " masculine ; -- [XAHFO] :: mulberry-leaved/Egyptian fig; Greek name for the mulberry tree; + sycaminon_M_N = mkN "sycaminon" "sycaminonis" masculine ; -- [DAXFS] :: mulberry tree; + sycaminos_M_N = mkN "sycaminos" "sycamini" masculine ; -- [XAHFO] :: mulberry-leaved/Egyptian fig; Greek name for the mulberry tree; sycaminus_M_N = mkN "sycaminus" ; -- [XAHFS] :: mulberry-leaved/Egyptian fig; Greek name for the mulberry tree; - sycomoros_M_N = mkN "sycomoros" "sycomori " masculine ; -- [XAHFO] :: mulberry-leaved/Egyptian fig; mulberry tree (L+S); + sycomoros_M_N = mkN "sycomoros" "sycomori" masculine ; -- [XAHFO] :: mulberry-leaved/Egyptian fig; mulberry tree (L+S); sycomorus_M_N = mkN "sycomorus" ; -- [XAHFO] :: mulberry-leaved/Egyptian fig; mulberry tree (L+S); sycophanta_F_N = mkN "sycophanta" ; -- [XXXEC] :: informer, trickster; sycophantia_F_N = mkN "sycophantia" ; -- [XXXFS] :: cunning, craft; deceit; sycophantor_V = mkV "sycophantari" ; -- [BXXES] :: cheat; syllaba_F_N = mkN "syllaba" ; -- [XGXBO] :: syllable; letter, epistle (Latham); geometric section; - syllepsis_F_N = mkN "syllepsis" "syllepsis " feminine ; -- [XGXFS] :: word cross-reference, syllepsis; grammatical figure; - syllogismos_M_N = mkN "syllogismos" "syllogismi " masculine ; -- [XGXEC] :: syllogism; + syllepsis_F_N = mkN "syllepsis" "syllepsis" feminine ; -- [XGXFS] :: word cross-reference, syllepsis; grammatical figure; + syllogismos_M_N = mkN "syllogismos" "syllogismi" masculine ; -- [XGXEC] :: syllogism; syllogismus_M_N = mkN "syllogismus" ; -- [XGXEC] :: syllogism; syllogizo_V = mkV "syllogizare" ; -- [FGXFM] :: reason syllogistically; - symbiosis_F_N = mkN "symbiosis" "symbiosis " feminine ; -- [GBXEK] :: symbiosis; + symbiosis_F_N = mkN "symbiosis" "symbiosis" feminine ; -- [GBXEK] :: symbiosis; symbola_F_N = mkN "symbola" ; -- [XXXDO] :: contribution for common meal/feast; contributing of that sum; symbolicus_A = mkA "symbolicus" "symbolica" "symbolicum" ; -- [ESXDX] :: symbolic, symbolical; symbolizo_V = mkV "symbolizare" ; -- [FXXEM] :: symbolize; accord, correspond; @@ -35038,31 +35027,31 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat symphoniacus_A = mkA "symphoniacus" "symphoniaca" "symphoniacum" ; -- [XXXEC] :: of or for a concert; symphoniacus_M_N = mkN "symphoniacus" ; -- [GDXEK] :: orchestra; symposiacus_A = mkA "symposiacus" "symposiaca" "symposiacum" ; -- [XXXFS] :: of a banquet; convivial; - symptoma_N_N = mkN "symptoma" "symptomatis " neuter ; -- [GXXEK] :: symptom; + symptoma_N_N = mkN "symptoma" "symptomatis" neuter ; -- [GXXEK] :: symptom; symptomatologia_F_N = mkN "symptomatologia" ; -- [GXXEK] :: symptomatology, pathological study of symptoms; synagoga_F_N = mkN "synagoga" ; -- [XXXDX] :: synagogue; congregation (of Jews); synagrapha_F_N = mkN "synagrapha" ; -- [XXXDX] :: promissory note, bond; written contract/IOU signed by both parties to pay money; synagraphus_M_N = mkN "synagraphus" ; -- [XXXDX] :: written contract/agreement; written pass, safe conduct; - synaliphe_F_N = mkN "synaliphe" "synaliphes " feminine ; -- [XGXFS] :: elision; contraction of two syllables into one; - synaloephe_F_N = mkN "synaloephe" "synaloephes " feminine ; -- [XGXFS] :: elision; contraction of two syllables into one; - synaphe_F_N = mkN "synaphe" "synaphes " feminine ; -- [FDXFZ] :: synaphe note, conjunction of two tetrachords; note equal to hypate-meson; + synaliphe_F_N = mkN "synaliphe" "synaliphes" feminine ; -- [XGXFS] :: elision; contraction of two syllables into one; + synaloephe_F_N = mkN "synaloephe" "synaloephes" feminine ; -- [XGXFS] :: elision; contraction of two syllables into one; + synaphe_F_N = mkN "synaphe" "synaphes" feminine ; -- [FDXFZ] :: synaphe note, conjunction of two tetrachords; note equal to hypate-meson; synchronismus_M_N = mkN "synchronismus" ; -- [GXXEK] :: synchronism; - synchronizatio_F_N = mkN "synchronizatio" "synchronizationis " feminine ; -- [GXXEK] :: synchronization; + synchronizatio_F_N = mkN "synchronizatio" "synchronizationis" feminine ; -- [GXXEK] :: synchronization; synchronizo_V = mkV "synchronizare" ; -- [GXXEK] :: synchronize; syncopa_F_N = mkN "syncopa" ; -- [EGXEP] :: contraction, syncope; fainting fit; heart failure; syncopatus_A = mkA "syncopatus" "syncopata" "syncopatum" ; -- [EBXEP] :: suffering from a fainting fit; syncopatus_M_N = mkN "syncopatus" ; -- [EBXEP] :: fainter, one suffering from a fainting fit; - syncopes_F_N = mkN "syncopes" "syncopae " feminine ; -- [EGXEP] :: contraction, syncope; fainting fit; heart failure; - syncopis_F_N = mkN "syncopis" "syncopis " feminine ; -- [GBXFT] :: fainting fit; (Erasmus); + syncopes_F_N = mkN "syncopes" "syncopae" feminine ; -- [EGXEP] :: contraction, syncope; fainting fit; heart failure; + syncopis_F_N = mkN "syncopis" "syncopis" feminine ; -- [GBXFT] :: fainting fit; (Erasmus); syncopo_V = mkV "syncopare" ; -- [EBXFP] :: faint, suffer a syncope/fainting fit; syncretismus_M_N = mkN "syncretismus" ; -- [GXXEK] :: syncretism, attempted union/reconciliation of diverse/opposite ideas/practices; - synderesis_F_N = mkN "synderesis" "synderesis " feminine ; -- [FSXEF] :: synderesis/synteresis, keeping/understanding principles of moral law; remorse; + synderesis_F_N = mkN "synderesis" "synderesis" feminine ; -- [FSXEF] :: synderesis/synteresis, keeping/understanding principles of moral law; remorse; syndicalis_A = mkA "syndicalis" "syndicalis" "syndicale" ; -- [GXXEK] :: united; organized in unions, syndical; syndicalismus_M_N = mkN "syndicalismus" ; -- [GXXEK] :: unionism; - syndicatus_M_N = mkN "syndicatus" "syndicatus " masculine ; -- [GXXEK] :: union; syndicate; - syndroma_N_N = mkN "syndroma" "syndromatis " neuter ; -- [GBXEK] :: syndrome; + syndicatus_M_N = mkN "syndicatus" "syndicatus" masculine ; -- [GXXEK] :: union; syndicate; + syndroma_N_N = mkN "syndroma" "syndromatis" neuter ; -- [GBXEK] :: syndrome; synedrus_M_N = mkN "synedrus" ; -- [XXXEC] :: Macedonian councillor; - synemmenon_N_N = mkN "synemmenon" "synemmeni " neuter ; -- [DDXFS] :: musical note series; name of several series of musical notes; + synemmenon_N_N = mkN "synemmenon" "synemmeni" neuter ; -- [DDXFS] :: musical note series; name of several series of musical notes; syngrafa_F_N = mkN "syngrafa" ; -- [XXXCO] :: written contract/IOU (signed by both) to pay the other a specific sum of money; syngrafus_M_N = mkN "syngrafus" ; -- [XXXEO] :: written contract/agreement; written pass, safe conduct; passport; syngrapha_F_N = mkN "syngrapha" ; -- [XXXCO] :: written contract/IOU (signed by both) to pay the other a specific sum of money; @@ -35073,55 +35062,55 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; synonymum_N_N = mkN "synonymum" ; -- [FXXES] :: synonym; - synthesis_F_N = mkN "synthesis" "synthesis " feminine ; -- [XXXDO] :: |set of dining clothes; dressing-gown; costume (Cal); + synthesis_F_N = mkN "synthesis" "synthesis" feminine ; -- [XXXDO] :: |set of dining clothes; dressing-gown; costume (Cal); syntheticus_A = mkA "syntheticus" "synthetica" "syntheticum" ; -- [GXXEK] :: synthetic; synzygia_F_N = mkN "synzygia" ; -- [FXXEM] :: conjunction, syzygy; - syphilis_F_N = mkN "syphilis" "syphilidis " feminine ; -- [GBXEK] :: syphilis; + syphilis_F_N = mkN "syphilis" "syphilidis" feminine ; -- [GBXEK] :: syphilis; syphiliticus_A = mkA "syphiliticus" "syphilitica" "syphiliticum" ; -- [GBXEK] :: syphilitic; syringa_F_N = mkN "syringa" ; -- [GAXEK] :: lilac; syrma_F_N = mkN "syrma" ; -- [XXXDS] :: robe with train; D:tragedy; - syrma_N_N = mkN "syrma" "syrmatis " neuter ; -- [XDXEC] :: long trailing robe, worn by tragic actors; - syrtis_F_N = mkN "syrtis" "syrtis " feminine ; -- [XXXEC] :: sandbank, quicksand; (esp. one on the coast of North Africa); - systema_N_N = mkN "systema" "systematis " neuter ; -- [FXXES] :: system; complex whole; whole consisting of several parts; harmony (Latham) - systylos_M_N = mkN "systylos" "systyli " masculine ; -- [XXXFS] :: systyle; columns close spaced at twice their widths; + syrma_N_N = mkN "syrma" "syrmatis" neuter ; -- [XDXEC] :: long trailing robe, worn by tragic actors; + syrtis_F_N = mkN "syrtis" "syrtis" feminine ; -- [XXXEC] :: sandbank, quicksand; (esp. one on the coast of North Africa); + systema_N_N = mkN "systema" "systematis" neuter ; -- [FXXES] :: system; complex whole; whole consisting of several parts; harmony (Latham) + systylos_M_N = mkN "systylos" "systyli" masculine ; -- [XXXFS] :: systyle; columns close spaced at twice their widths; tabacarius_A = mkA "tabacarius" "tabacaria" "tabacarium" ; -- [GAXEK] :: of tobacco; tabacinus_A = mkA "tabacinus" "tabacina" "tabacinum" ; -- [GAXEK] :: of tobacco; 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; + 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; - tabellanio_M_N = mkN "tabellanio" "tabellanionis " masculine ; -- [EXXFP] :: notary; scrivener; document-drafter; + tabellanio_M_N = mkN "tabellanio" "tabellanionis" masculine ; -- [EXXFP] :: notary; scrivener; document-drafter; tabellarius_M_N = mkN "tabellarius" ; -- [GXXEK] :: factor; - tabellio_M_N = mkN "tabellio" "tabellionis " masculine ; -- [XLXFO] :: legal clerk, one who draws up legal documents; messenger (Erasmus); + tabellio_M_N = mkN "tabellio" "tabellionis" masculine ; -- [XLXFO] :: legal clerk, one who draws up legal documents; messenger (Erasmus); tabeo_V = mkV "tabere" ; -- [XXXCO] :: rot away, decay; waste away; taberna_F_N = mkN "taberna" ; -- [XXXCO] :: tavern, inn; wood hut/cottage, shed/hovel; stall/booth; small shop (Nelson); 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; + tabes_F_N = mkN "tabes" "tabis" feminine ; -- [XXXDX] :: wasting away; decay; putrefaction; fluid resulting from corruption or decay; 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; - tabitudo_F_N = mkN "tabitudo" "tabitudinis " feminine ; -- [XXXDX] :: wasting away; + tabitudo_F_N = mkN "tabitudo" "tabitudinis" feminine ; -- [XXXDX] :: wasting away; tablinum_N_N = mkN "tablinum" ; -- [XXXFS] :: terrace; archive; gallery; tabula_F_N = mkN "tabula" ; -- [XXXAO] :: ||picture, painting; wood panel for painting; metal/stone tablet/panel w/text; tabularium_N_N = mkN "tabularium" ; -- [XXXDX] :: collection of (inscribed) tablets; record-office, registry; - tabulatio_F_N = mkN "tabulatio" "tabulationis " feminine ; -- [XXXDX] :: structure of boards, boarding; + tabulatio_F_N = mkN "tabulatio" "tabulationis" feminine ; -- [XXXDX] :: structure of boards, boarding; tabulatum_N_N = mkN "tabulatum" ; -- [XXXDX] :: floor, story; layer, row; tier formed by the horizontal branches of a tree; tabulatus_A = mkA "tabulatus" "tabulata" "tabulatum" ; -- [XXXEC] :: floored, boarded; tabulinum_N_N = mkN "tabulinum" ; -- [XXXFS] :: terrace; archive; gallery; tabum_N_N = mkN "tabum" ; -- [XXXDX] :: viscous fluid consisting of putrid matter; taceo_V = mkV "tacere" ; -- [XXXAX] :: be silent; pass over in silence; leave unmentioned, be silent about something; tachometrum_N_N = mkN "tachometrum" ; -- [GTXEK] :: tachometer; - taciturnitas_F_N = mkN "taciturnitas" "taciturnitatis " feminine ; -- [XXXDX] :: maintaining silence; + taciturnitas_F_N = mkN "taciturnitas" "taciturnitatis" feminine ; -- [XXXDX] :: maintaining silence; taciturnus_A = mkA "taciturnus" "taciturna" "taciturnum" ; -- [XXXDX] :: silent, quiet; tacitus_A = mkA "tacitus" "tacita" "tacitum" ; -- [XXXAX] :: silent, secret; tactilis_A = mkA "tactilis" "tactilis" "tactile" ; -- [XXXDX] :: able to be touched; - tactio_F_N = mkN "tactio" "tactionis " feminine ; -- [XXXES] :: touching (Plautus); sense of touch; - tactus_M_N = mkN "tactus" "tactus " masculine ; -- [XXXDX] :: touch, sense of touch; + tactio_F_N = mkN "tactio" "tactionis" feminine ; -- [XXXES] :: touching (Plautus); sense of touch; + tactus_M_N = mkN "tactus" "tactus" masculine ; -- [XXXDX] :: touch, sense of touch; taeda_F_N = mkN "taeda" ; -- [XXXBX] :: pine torch; taedeo_V = mkV "taedere" ; -- [DXXCS] :: be tired/weary/sick (of) (w/GEN or INF+ACC of person); be disgusted/offended; taedeor_V = mkV "taederi" ; -- [EXXEP] :: be sad; be tired/weary/sick (of); @@ -35135,12 +35124,12 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat taeter_A = mkA "taeter" "taetra" "taetrum" ; -- [XXXDX] :: foul, offensive;, ugly; disgraceful; black, blackish (Souter); taetricus_A = mkA "taetricus" "taetrica" "taetricum" ; -- [XXXES] :: harsh; gloomy; severe; (tetricus); tagax_A = mkA "tagax" "tagacis"; -- [XXXEC] :: light-fingered; thievish, given to pilfering; - talare_N_N = mkN "talare" "talaris " neuter ; -- [XXXDX] :: winged sandals (pl.) of Mercury; skirts/robes reaching to ankles; + talare_N_N = mkN "talare" "talaris" neuter ; -- [XXXDX] :: winged sandals (pl.) of Mercury; skirts/robes reaching to ankles; talaris_A = mkA "talaris" "talaris" "talare" ; -- [XXXDX] :: of the ankle/heel; reaching/stretching to the ankles; talarius_A = mkA "talarius" "talaria" "talarium" ; -- [XXXDX] :: of dice; with dice; talea_F_N = mkN "talea" ; -- [XXXDX] :: block; bar; talentum_N_N = mkN "talentum" ; -- [XXXDX] :: talent; sum of money; - talio_F_N = mkN "talio" "talionis " feminine ; -- [XXXEC] :: retaliation; + 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; talitha_N = constN "talitha" feminine ; -- [EXQFW] :: girl; damsel (Douay); (Aramaic); (Mark 5:41); @@ -35149,7 +35138,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat talpa_C_N = mkN "talpa" ; -- [XXXCO] :: mole (animal); talus_M_N = mkN "talus" ; -- [XBXBO] :: ankle; ankle/pastern bone; sheep knucklebone (marked for dice); dice game (pl.); tam_Adv = mkAdv "tam" ; -- [XXXAX] :: so, so much (as); to such an extent/degree; nevertheless, all the same; - tamarix_F_N = mkN "tamarix" "tamaricis " feminine ; -- [XAXEC] :: tamarisk; (evergreen bush/shrub/tree genus Tamarix); (also myrica); + 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 = mkConj "tametsi" missing ; -- [XXXDX] :: even if, although, though; @@ -35157,9 +35146,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat tamisium_N_N = mkN "tamisium" ; -- [FXXEM] :: sieve, sifter; 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); + tangens_F_N = mkN "tangens" "tangentis" feminine ; -- [GSXEK] :: tangent (math); tangibilis_A = mkA "tangibilis" "tangibilis" "tangibile" ; -- [XXXES] :: touchable; tangible; - tango_V2 = mkV2 (mkV "tangere" "tango" "tetigi" "tactus ") ; -- [XXXAX] :: touch, strike; border on, influence; mention; + 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; @@ -35169,21 +35158,21 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat tantummodo_Adv = mkAdv "tantummodo" ; -- [XXXDX] :: only, merely; tantundem_Adv = mkAdv "tantundem" ; -- [XXXDX] :: just as much; tantus_A = mkA "tantus" "tanta" "tantum" ; -- [XXXAX] :: of such size; so great, so much; [tantus ... quantus => as much ... as]; - tapes_M_N = mkN "tapes" "tapetis " masculine ; -- [XXXCO] :: woolen cloth or rug used as a covering, hanging, carpet, tapestry; + tapes_M_N = mkN "tapes" "tapetis" masculine ; -- [XXXCO] :: woolen cloth or rug used as a covering, hanging, carpet, tapestry; tapetarius_M_N = mkN "tapetarius" ; -- [GXXEK] :: decorator; - tapete_N_N = mkN "tapete" "tapetis " neuter ; -- [XXXCO] :: woolen cloth or rug used as a covering, hanging, carpet, tapestry; - tapetes_M_N = mkN "tapetes" "tapetae " masculine ; -- [XXXCO] :: woolen cloth or rug used as a covering, hanging, carpet, tapestry; + tapete_N_N = mkN "tapete" "tapetis" neuter ; -- [XXXCO] :: woolen cloth or rug used as a covering, hanging, carpet, tapestry; + tapetes_M_N = mkN "tapetes" "tapetae" masculine ; -- [XXXCO] :: woolen cloth or rug used as a covering, hanging, carpet, tapestry; tapetum_N_N = mkN "tapetum" ; -- [XXXCO] :: woolen cloth or rug used as a covering, hanging, carpet, tapestry; - tappete_N_N = mkN "tappete" "tappetis " neuter ; -- [XXXCO] :: woolen cloth or rug used as a covering, hanging, carpet, tapestry; + 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; 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; + 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; tardus_A = mkA "tardus" ; -- [XXXAX] :: slow, limping; deliberate; late; - tarmes_M_N = mkN "tarmes" "tarmitis " masculine ; -- [BAXFS] :: woodworm (Plautus); + 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); taurea_F_N = mkN "taurea" ; -- [XXXDX] :: leather whip; @@ -35210,19 +35199,19 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat technocraticus_A = mkA "technocraticus" "technocratica" "technocraticum" ; -- [GSXEK] :: technocratic; technologia_F_N = mkN "technologia" ; -- [GSXEK] :: technology; technologicus_A = mkA "technologicus" "technologica" "technologicum" ; -- [GSXEK] :: technological; - tector_M_N = mkN "tector" "tectoris " masculine ; -- [XXXDS] :: plasterer; + tector_M_N = mkN "tector" "tectoris" masculine ; -- [XXXDS] :: plasterer; tectoriolum_N_N = mkN "tectoriolum" ; -- [XXXEC] :: plaster/stucco work; 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; 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); + 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); + 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; + 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); + 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); tela_F_N = mkN "tela" ; -- [XXXDX] :: web; warp (threads that run lengthwise in the loom); telecopia_F_N = mkN "telecopia" ; -- [HXXEK] :: fax; @@ -35230,29 +35219,29 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat telecopiatrum_N_N = mkN "telecopiatrum" ; -- [HTXEK] :: fax machine, fax; telecustodia_F_N = mkN "telecustodia" ; -- [HTXEK] :: telemonitoring; teleferica_F_N = mkN "teleferica" ; -- [GTXEK] :: lift; elevator; - telegraphema_N_N = mkN "telegraphema" "telegraphematis " neuter ; -- [GXXEK] :: telegram; + telegraphema_N_N = mkN "telegraphema" "telegraphematis" neuter ; -- [GXXEK] :: telegram; telegraphia_F_N = mkN "telegraphia" ; -- [GXXEK] :: telegraphy; telegraphicus_A = mkA "telegraphicus" "telegraphica" "telegraphicum" ; -- [GXXEK] :: telegraphic; telegraphista_M_N = mkN "telegraphista" ; -- [GXXEK] :: telegraphist; telegrapho_V = mkV "telegraphare" ; -- [GXXEK] :: telegraph; telegraphum_N_N = mkN "telegraphum" ; -- [GXXEK] :: telegraph; - telehorasis_F_N = mkN "telehorasis" "telehorasis " feminine ; -- [HTXEK] :: television; + telehorasis_F_N = mkN "telehorasis" "telehorasis" feminine ; -- [HTXEK] :: television; telepathia_F_N = mkN "telepathia" ; -- [GXXEK] :: telepathy; - telephonema_N_N = mkN "telephonema" "telephonematis " neuter ; -- [HXXEK] :: telephone conversation; + telephonema_N_N = mkN "telephonema" "telephonematis" neuter ; -- [HXXEK] :: telephone conversation; telephonicus_A = mkA "telephonicus" "telephonica" "telephonicum" ; -- [HXXEK] :: telephonic; telephonista_M_N = mkN "telephonista" ; -- [HXXEK] :: telephone operator; telephono_V = mkV "telephonare" ; -- [HXXEK] :: phone; telephonum_N_N = mkN "telephonum" ; -- [HTXEK] :: telephone; telescopium_N_N = mkN "telescopium" ; -- [GTXEK] :: telescope; - telespectator_M_N = mkN "telespectator" "telespectatoris " masculine ; -- [HXXEK] :: viewer; + telespectator_M_N = mkN "telespectator" "telespectatoris" masculine ; -- [HXXEK] :: viewer; televisificus_A = mkA "televisificus" "televisifica" "televisificum" ; -- [HXXEK] :: of television; - televisio_F_N = mkN "televisio" "televisionis " feminine ; -- [HTXEK] :: television; - televisor_M_N = mkN "televisor" "televisoris " masculine ; -- [HXXEK] :: viewer; + televisio_F_N = mkN "televisio" "televisionis" feminine ; -- [HTXEK] :: television; + televisor_M_N = mkN "televisor" "televisoris" masculine ; -- [HXXEK] :: viewer; televisorium_N_N = mkN "televisorium" ; -- [HTXEK] :: television; telinum_N_N = mkN "telinum" ; -- [XBXEO] :: fragrant ointment made from fenugreek; - telis_F_N = mkN "telis" "telis " feminine ; -- [XAXNO] :: fenugreek (herb); - tellus_F_N = mkN "tellus" "telluris " feminine ; -- [XXXAX] :: earth, ground; the earth; land, country; - telo_M_N = mkN "telo" "telonis " masculine ; -- [GLXET] :: customs officer; (Erasmus); + telis_F_N = mkN "telis" "telis" feminine ; -- [XAXNO] :: fenugreek (herb); + tellus_F_N = mkN "tellus" "telluris" feminine ; -- [XXXAX] :: earth, ground; the earth; land, country; + telo_M_N = mkN "telo" "telonis" masculine ; -- [GLXET] :: customs officer; (Erasmus); telonarius_M_N = mkN "telonarius" ; -- [GXXEK] :: customs-officer; teloneum_N_N = mkN "teloneum" ; -- [XLXEO] :: customs post; customs house (L+S); toll booth; telonialis_A = mkA "telonialis" "telonialis" "teloniale" ; -- [GXXEK] :: customs-related; @@ -35262,22 +35251,22 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat telum_N_N = mkN "telum" ; -- [XWXAX] :: dart, spear; weapon, javelin; bullet (gun); temerarius_A = mkA "temerarius" "temeraria" "temerarium" ; -- [XXXDX] :: casual, rash, accidental; reckless; temere_Adv = mkAdv "temere" ; -- [XXXBX] :: rashly, blindly; - temeritas_F_N = mkN "temeritas" "temeritatis " feminine ; -- [XXXDX] :: rashness; temerity; + 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; 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; + 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; temperanter_Adv = mkAdv "temperanter" ; -- [XXXFO] :: temperately; with moderation/restraint; 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; + temperatio_F_N = mkN "temperatio" "temperationis" feminine ; -- [FXXEK] :: regulation; + temperator_M_N = mkN "temperator" "temperatoris" masculine ; -- [XXXFS] :: arranger; organizer; 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; + 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; - tempestas_F_N = mkN "tempestas" "tempestatis " feminine ; -- [XXXBX] :: season, time, weather; storm; + tempestas_F_N = mkN "tempestas" "tempestatis" feminine ; -- [XXXBX] :: season, time, weather; storm; tempestivus_A = mkA "tempestivus" "tempestiva" "tempestivum" ; -- [XXXDX] :: seasonable; opportune, timely; physically in one's prime, ripe (for marriage); tempestuosus_A = mkA "tempestuosus" "tempestuosa" "tempestuosum" ; -- [FXXEM] :: stormy; templum_N_N = mkN "templum" ; -- [XXXAX] :: temple, church; shrine; holy place; @@ -35287,20 +35276,20 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat tempori_Adv =mkAdv "tempori" "temporius" "temporissime" ; -- [XXXCO] :: at right/better/best time, seasonably; temporivus_A = mkA "temporivus" "temporiva" "temporivum" ; -- [EXXFW] :: early; early in the season; temptabundus_A = mkA "temptabundus" "temptabunda" "temptabundum" ; -- [XXXEC] :: trying, attempting; - temptamen_N_N = mkN "temptamen" "temptaminis " neuter ; -- [XXXEC] :: trial, attempt, essay; + temptamen_N_N = mkN "temptamen" "temptaminis" neuter ; -- [XXXEC] :: trial, attempt, essay; temptamentum_N_N = mkN "temptamentum" ; -- [XXXEC] :: trial, attempt, essay; - temptatio_F_N = mkN "temptatio" "temptationis " feminine ; -- [XXXDX] :: trial, temptation; - temptator_M_N = mkN "temptator" "temptatoris " masculine ; -- [XXXEX] :: assailant (Collins); + temptatio_F_N = mkN "temptatio" "temptationis" feminine ; -- [XXXDX] :: trial, temptation; + temptator_M_N = mkN "temptator" "temptatoris" masculine ; -- [XXXEX] :: assailant (Collins); tempto_V = mkV "temptare" ; -- [XXXAX] :: test, try; urge; worry; bribe; tempus_M_N = mkN "tempus" ; -- [FXXFY] :: weather; - tempus_N_N = mkN "tempus" "temporis " neuter ; -- [XXXAX] :: time, condition, right time; season, occasion; necessity; + tempus_N_N = mkN "tempus" "temporis" neuter ; -- [XXXAX] :: time, condition, right time; season, occasion; necessity; temulentia_F_N = mkN "temulentia" ; -- [EXXFS] :: drunkenness; temulentus_A = mkA "temulentus" "temulenta" "temulentum" ; -- [XXXDX] :: drunken; - tenacitas_F_N = mkN "tenacitas" "tenacitatis " feminine ; -- [XXXDX] :: grasp, quality of holding on to a thing; + tenacitas_F_N = mkN "tenacitas" "tenacitatis" feminine ; -- [XXXDX] :: grasp, quality of holding on to a thing; 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; + 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; @@ -35313,72 +35302,72 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat teneo_V = mkV "tenere" ; -- [FXXCB] :: |represent; support; 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); + 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); tenetura_F_N = mkN "tenetura" ; -- [FLXEM] :: holding, tenure, feudal holding; teniludium_N_N = mkN "teniludium" ; -- [GXXEK] :: tennis; teniludius_M_N = mkN "teniludius" ; -- [GDXEK] :: tennis player; tenisia_F_N = mkN "tenisia" ; -- [GDXEK] :: tennis; - tenor_M_N = mkN "tenor" "tenoris " masculine ; -- [XXXDX] :: course, tenor; sustained and even course of movement; + tenor_M_N = mkN "tenor" "tenoris" masculine ; -- [XXXDX] :: course, tenor; sustained and even course of movement; tenorista_M_N = mkN "tenorista" ; -- [GDXEK] :: tenor; tensa_F_N = mkN "tensa" ; -- [XXXDX] :: wagon on which the images of the gods were carried to public spectacles; tentabundus_A = mkA "tentabundus" "tentabunda" "tentabundum" ; -- [XXXDX] :: testing every stop or move; - tentamen_N_N = mkN "tentamen" "tentaminis " neuter ; -- [XXXDX] :: attempt, effort; + tentamen_N_N = mkN "tentamen" "tentaminis" neuter ; -- [XXXDX] :: attempt, effort; tentamentum_N_N = mkN "tentamentum" ; -- [XXXDX] :: trial, attempt, experiment; - tentatio_F_N = mkN "tentatio" "tentationis " feminine ; -- [EEXDX] :: temptation; trial; - tentigo_F_N = mkN "tentigo" "tentiginis " feminine ; -- [XXXEC] :: lecherousness; + tentatio_F_N = mkN "tentatio" "tentationis" feminine ; -- [EEXDX] :: temptation; trial; + tentigo_F_N = mkN "tentigo" "tentiginis" feminine ; -- [XXXEC] :: lecherousness; 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; 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; + 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; - tepefacio_V2 = mkV2 (mkV "tepefacere" "tepefacio" "tepefeci" "tepefactus ") ; -- [XXXDX] :: make warm, warm up; + 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; + tepor_M_N = mkN "tepor" "teporis" masculine ; -- [XXXDX] :: warmth, mild heat; ter_Adv = mkAdv "ter" ; -- [XXXDX] :: three times; on three occasions; terebenthinus_A = mkA "terebenthinus" "terebenthina" "terebenthinum" ; -- [XAXDO] :: of the turpentine/terebinth (Pistacia ~) tree/wood; [(resina) ~ => terpentine]; - terebenthos_F_N = mkN "terebenthos" "terebenthi " feminine ; -- [XAXCO] :: turpentine/terebinth tree (Pistacia ~); its wood (valued for furniture/inlay); + terebenthos_F_N = mkN "terebenthos" "terebenthi" feminine ; -- [XAXCO] :: turpentine/terebinth tree (Pistacia ~); its wood (valued for furniture/inlay); terebenthus_F_N = mkN "terebenthus" ; -- [XAXCO] :: turpentine/terebinth tree (Pistacia ~); its wood (valued for furniture/inlay); terebinthina_F_N = mkN "terebinthina" ; -- [GXXEK] :: turpentine; terebinthinus_A = mkA "terebinthinus" "terebinthina" "terebinthinum" ; -- [XAXDO] :: of the turpentine/terebinth (Pistacia ~) tree/wood; [(resina) ~ => turpentine]; - terebinthos_F_N = mkN "terebinthos" "terebinthi " feminine ; -- [XAXCO] :: terpentine/terebinth tree (Pistacia ~); its wood (valued for furniture/inlay); + terebinthos_F_N = mkN "terebinthos" "terebinthi" feminine ; -- [XAXCO] :: terpentine/terebinth tree (Pistacia ~); its wood (valued for furniture/inlay); terebinthus_F_N = mkN "terebinthus" ; -- [XAXCO] :: terpentine/terebinth tree (Pistacia ~); its wood (valued for furniture/inlay); terebinthus_M_N = mkN "terebinthus" ; -- [XXXDX] :: terebinth tree or its wood; terebro_V = mkV "terebrare" ; -- [XXXDX] :: bore through, drill a hole in; - teredo_F_N = mkN "teredo" "teredinis " feminine ; -- [XAXEC] :: worm that gnaws wood; + teredo_F_N = mkN "teredo" "teredinis" feminine ; -- [XAXEC] :: worm that gnaws wood; teres_A = mkA "teres" "teretis"; -- [XXXBX] :: smooth; tapering; - terg_N_N = mkN "terg" "tergoris " neuter ; -- [XXXBO] :: back (animal, meat); ridge, raised surface; far side; covering (animal/organ); + terg_N_N = mkN "terg" "tergoris" neuter ; -- [XXXBO] :: back (animal, meat); ridge, raised surface; far side; covering (animal/organ); tergeminus_A = mkA "tergeminus" "tergemina" "tergeminum" ; -- [XXXDX] :: threefold, triple; 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); + 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; + tergus_N_N = mkN "tergus" "tergoris" neuter ; -- [XXXEC] :: back; skin, hide, leather; terma_F_N = mkN "terma" ; -- [FXXFZ] :: warm bath; (medieval Latin, modern Italian); - termen_N_N = mkN "termen" "terminis " neuter ; -- [XXXES] :: boundary, limit, end; terminus; - termes_M_N = mkN "termes" "termitis " masculine ; -- [XAXFS] :: woodworm; + termen_N_N = mkN "termen" "terminis" neuter ; -- [XXXES] :: boundary, limit, end; terminus; + termes_M_N = mkN "termes" "termitis" masculine ; -- [XAXFS] :: woodworm; terminalis_A = mkA "terminalis" "terminalis" "terminale" ; -- [XXXEO] :: terminal; marking a boundary; of a boundary; final, making a conclusion; - terminatio_F_N = mkN "terminatio" "terminationis " feminine ; -- [XXXDX] :: marking the boundaries of a territory; + terminatio_F_N = mkN "terminatio" "terminationis" feminine ; -- [XXXDX] :: marking the boundaries of a territory; termino_V = mkV "terminare" ; -- [XXXDX] :: mark the boundaries of, form the boundaries of; restrict; conclude; terminologia_F_N = mkN "terminologia" ; -- [GXXFE] :: terminology; terminus_M_N = mkN "terminus" ; -- [XXXBX] :: boundary, limit, end; terminus; 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; + 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); + terraemotus_M_N = mkN "terraemotus" "terraemotus" masculine ; -- [EXXDW] :: earthquake; (Vulgate); terratenus_Adv = mkAdv "terratenus" ; -- [FXXFM] :: on the ground; terrenus_A = mkA "terrenus" "terrena" "terrenum" ; -- [XXXDX] :: of earth, earthly; earthy; terrestrial; terreo_V = mkV "terrere" ; -- [XXXAX] :: frighten, scare, terrify, deter; @@ -35396,7 +35385,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat terriloquus_A = mkA "terriloquus" "terriloqua" "terriloquum" ; -- [XXXDX] :: uttering frightening words; territo_V = mkV "territare" ; -- [XXXDX] :: intimidate; keep on frightening; territorium_N_N = mkN "territorium" ; -- [XXXDX] :: territory; - terror_M_N = mkN "terror" "terroris " masculine ; -- [XXXAX] :: terror, panic, alarm, fear; + terror_M_N = mkN "terror" "terroris" masculine ; -- [XXXAX] :: terror, panic, alarm, fear; terrorismus_M_N = mkN "terrorismus" ; -- [GXXEK] :: terrorism; terrorista_M_N = mkN "terrorista" ; -- [GXXEK] :: terrorist; terroristicus_A = mkA "terroristicus" "terroristica" "terroristicum" ; -- [GXXEK] :: terrorist; @@ -35424,22 +35413,22 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat testamentarius_A = mkA "testamentarius" "testamentaria" "testamentarium" ; -- [XXXEC] :: relating to a will; testamentarius_M_N = mkN "testamentarius" ; -- [XXXEC] :: forger of wills; testamentum_N_N = mkN "testamentum" ; -- [XXXBX] :: will, testament; covenant; - testatio_F_N = mkN "testatio" "testationis " feminine ; -- [XXXDX] :: action of testifying to a fact; - testator_M_N = mkN "testator" "testatoris " masculine ; -- [XLXEO] :: testator; one who makes a will; witness, one who testifies (L+S); - testatrix_F_N = mkN "testatrix" "testatricis " feminine ; -- [XLXFO] :: testatrix, she who makes a will; witness, she who testifies (L+S); + testatio_F_N = mkN "testatio" "testationis" feminine ; -- [XXXDX] :: action of testifying to a fact; + testator_M_N = mkN "testator" "testatoris" masculine ; -- [XLXEO] :: testator; one who makes a will; witness, one who testifies (L+S); + testatrix_F_N = mkN "testatrix" "testatricis" feminine ; -- [XLXFO] :: testatrix, she who makes a will; witness, she who testifies (L+S); testatus_A = mkA "testatus" "testata" "testatum" ; -- [XXXDX] :: known on good evidence; testeus_A = mkA "testeus" "testea" "testeum" ; -- [XXXFO] :: earthenware, made of earthenware; testiculus_M_N = mkN "testiculus" ; -- [XXXDX] :: testicle; testificor_V = mkV "testificari" ; -- [XXXDX] :: assert solemnly, testify (to a fact); demonstrate; invoke as a witness; testimonium_N_N = mkN "testimonium" ; -- [XXXDX] :: testimony; deposition; evidence; witness; (used of ark and tabernacle) (Plater); - testis_F_N = mkN "testis" "testis " feminine ; -- [XXXBX] :: witness; - testis_M_N = mkN "testis" "testis " masculine ; -- [XBXCO] :: testicle (usu. pl.); + testis_F_N = mkN "testis" "testis" feminine ; -- [XXXBX] :: witness; + testis_M_N = mkN "testis" "testis" masculine ; -- [XBXCO] :: testicle (usu. pl.); testor_V = mkV "testari" ; -- [XXXBX] :: give as evidence; bear witness; make a will; swear; testify; - testu_N_N = mkN "testu" "testus " neuter ; -- [XXXDX] :: earthenware pot/vessel (esp. placed as lid over food and heaped with coals); + testu_N_N = mkN "testu" "testus" neuter ; -- [XXXDX] :: earthenware pot/vessel (esp. placed as lid over food and heaped with coals); testudinatus_A = mkA "testudinatus" "testudinata" "testudinatum" ; -- [XXXEO] :: having 4 converging sides/no hole (roof); of space w/that roof; arched/vaulted; testudineatus_A = mkA "testudineatus" "testudineata" "testudineatum" ; -- [XXXEO] :: having 4 converging sides/no hole (roof); of space w/that roof; arched/vaulted; testudineus_A = mkA "testudineus" "testudinea" "testudineum" ; -- [XXXDX] :: made of tortoise-shell; - testudo_F_N = mkN "testudo" "testudinis " feminine ; -- [XXXBX] :: tortoise; testudo; armored movable shed; troops locking shields overhead; + testudo_F_N = mkN "testudo" "testudinis" feminine ; -- [XXXBX] :: tortoise; testudo; armored movable shed; troops locking shields overhead; testula_F_N = mkN "testula" ; -- [XXXEC] :: potsherd, fragment of broken earthenware pot; 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); @@ -35448,44 +35437,44 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + tetrachordos_N_N = mkN "tetrachordos" "tetrachordi" neuter ; -- [XDXFO] :: tetrachord; set of 4 strings (in instrument); scale of 4 notes; tetracordos_A = mkA "tetracordos" "tetracordos" "tetracordon" ; -- [XDXFO] :: four-stringed; having a scale of four notes; - tetracordos_N_N = mkN "tetracordos" "tetracordi " neuter ; -- [XDXFO] :: tetrachord; set of 4 strings (in instrument); scale of 4 notes; + tetracordos_N_N = mkN "tetracordos" "tetracordi" neuter ; -- [XDXFO] :: tetrachord; set of 4 strings (in instrument); scale of 4 notes; 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); - tetragrammaton_N = constN "tetragrammaton." neuter ; -- [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; - tetrarches_M_N = mkN "tetrarches" "tetrarchae " masculine ; -- [XXXDX] :: tetrarch (minor king under Roman protection); + 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; + tetrarches_M_N = mkN "tetrarches" "tetrarchae" masculine ; -- [XXXDX] :: tetrarch (minor king under Roman protection); tetrarchia_F_N = mkN "tetrarchia" ; -- [XXXEC] :: tetrarchy; - tetrardos_M_N = mkN "tetrardos" "tetrardi " masculine ; -- [EDXEZ] :: interval of four notes; fourth note in plain-song; + tetrardos_M_N = mkN "tetrardos" "tetrardi" masculine ; -- [EDXEZ] :: interval of four notes; fourth note in plain-song; tetrardus_M_N = mkN "tetrardus" ; -- [EDXEM] :: interval of four notes; fourth note in plain-song; - tetrastylon_N_N = mkN "tetrastylon" "tetrastyli " neuter ; -- [XTXFS] :: tetrastyle; building with four columns; + 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; + 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; + textor_M_N = mkN "textor" "textoris" masculine ; -- [XXXDX] :: weaver; textrinus_A = mkA "textrinus" "textrina" "textrinum" ; -- [XXXDX] :: related to weaving; - textrix_F_N = mkN "textrix" "textricis " feminine ; -- [XXXFS] :: female weaver; the Fates; + textrix_F_N = mkN "textrix" "textricis" feminine ; -- [XXXFS] :: female weaver; the Fates; textum_N_N = mkN "textum" ; -- [XXXDX] :: woven fabric, cloth; framework, web; atomic structure; ratio atoms/void; textura_F_N = mkN "textura" ; -- [XXXDX] :: weaving, texture; framework, structure; texture of atoms to void; - textus_M_N = mkN "textus" "textus " masculine ; -- [XXXDX] :: woven fabric, cloth; framework, structure; web; method of plaiting/joining; + textus_M_N = mkN "textus" "textus" masculine ; -- [XXXDX] :: woven fabric, cloth; framework, structure; web; method of plaiting/joining; thalamus_M_N = mkN "thalamus" ; -- [XXXAX] :: bedroom; marriage; thalassicus_A = mkA "thalassicus" "thalassica" "thalassicum" ; -- [BXXFS] :: sea-green; (Plautus}; (thalassinus); thalassinus_A = mkA "thalassinus" "thalassina" "thalassinum" ; -- [XXXEC] :: sea-green; 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); + thaspi_N_N = mkN "thaspi" "thaspis" neuter ; -- [DAXNS] :: cress (Pliny); 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; theatrum_N_N = mkN "theatrum" ; -- [XDXBX] :: theater; theca_F_N = mkN "theca" ; -- [GXXEK] :: |suitcase; - thema_N_N = mkN "thema" "thematis " neuter ; -- [XXXDX] :: theme; + thema_N_N = mkN "thema" "thematis" neuter ; -- [XXXDX] :: theme; thematicus_A = mkA "thematicus" "thematica" "thematicum" ; -- [GXXEK] :: thematic; thensaurius_A = mkA "thensaurius" "thensauria" "thensaurium" ; -- [XXXFO] :: concerned with treasure; thensaurus_M_N = mkN "thensaurus" ; -- [XXXBO] :: treasure chamber/vault/repository; treasure; hoard; collected precious objects; @@ -35497,7 +35486,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat theologus_M_N = mkN "theologus" ; -- [XXXEO] :: theologian, one who writes/discourses/teaches on God/gods; theolonium_N_N = mkN "theolonium" ; -- [FLXEJ] :: toll; levy; theoria_F_N = mkN "theoria" ; -- [DSXFS] :: theory, philosophic speculation; - theorices_F_N = mkN "theorices" "theoricae " feminine ; -- [DSXFS] :: theory, philosophic speculation; + 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); therafin_N = constN "therafin" neuter ; -- [EEQEW] :: teraphim/theraphim (pl. form); theraph (sg. form); idols/images; household gods; @@ -35515,18 +35504,18 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat thesaurius_A = mkA "thesaurius" "thesauria" "thesaurium" ; -- [XXXFO] :: concerned with treasure; thesaurizo_V2 = mkV2 (mkV "thesaurizare") ; -- [EXXCS] :: gather up treasure; lay up treasure; hoard; thesaurus_M_N = mkN "thesaurus" ; -- [XXXBO] :: treasure chamber/vault/repository; treasure; hoard; collected precious objects; - thesis_F_N = mkN "thesis" "thesis " feminine ; -- [XGXEC] :: proposition, thesis; + thesis_F_N = mkN "thesis" "thesis" feminine ; -- [XGXEC] :: proposition, thesis; theurgus_M_N = mkN "theurgus" ; -- [XEXFS] :: magician; summoner; 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; - thrombosis_F_N = mkN "thrombosis" "thrombosis " feminine ; -- [GBXEK] :: thrombosis; + thorax_M_N = mkN "thorax" "thoracis" masculine ; -- [XXXDX] :: 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; - thus_N_N = mkN "thus" "thuris " neuter ; -- [XXXDX] :: frankincense; + thus_N_N = mkN "thus" "thuris" neuter ; -- [XXXDX] :: frankincense; thya_F_N = mkN "thya" ; -- [XAXES] :: citrus tree (Greek name for); thyia_F_N = mkN "thyia" ; -- [XAXES] :: citrus tree (Greek name for); thyinus_A = mkA "thyinus" "thyina" "thyinum" ; -- [EAXES] :: made from the citrus tree; @@ -35536,44 +35525,44 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat thymelaea_F_N = mkN "thymelaea" ; -- [XAXNO] :: shrub; (Daphne gnidium?); thymelicus_A = mkA "thymelicus" "thymelica" "thymelicum" ; -- [XDXES] :: theatrical, of the theater; thymelicus_M_N = mkN "thymelicus" ; -- [XXXES] :: stage musician; - thymiama_N_N = mkN "thymiama" "thymiamatis " neuter ; -- [XXXEO] :: incense; composition for fumigating (L+S); + thymiama_N_N = mkN "thymiama" "thymiamatis" neuter ; -- [XXXEO] :: incense; composition for fumigating (L+S); thymiamaterium_N_N = mkN "thymiamaterium" ; -- [EXXFS] :: vessel for incense; censer; - thymion_N_N = mkN "thymion" "thymii " neuter ; -- [DBXNS] :: wart (Pliny); + thymion_N_N = mkN "thymion" "thymii" neuter ; -- [DBXNS] :: wart (Pliny); thymum_N_N = mkN "thymum" ; -- [XXXEX] :: thyme; thymus_M_N = mkN "thymus" ; -- [XBXNO] :: kind of wart; thynnarius_A = mkA "thynnarius" "thynnaria" "thynnarium" ; -- [XAXFO] :: of/pertaining to tunny fish; (as a commodity); thynnus_M_N = mkN "thynnus" ; -- [XAXCO] :: tunny, tunny fish; thyrsus_M_N = mkN "thyrsus" ; -- [XXXDX] :: Bacchic wand tipped with a fir-cone/tuft of ivy/vine leaves; plant's main stem; tiara_F_N = mkN "tiara" ; -- [XXXDX] :: ornamented conical felt Asian head-dress; Phrygian bonnet w/cheek lappets; - tiaras_M_N = mkN "tiaras" "tiarae " masculine ; -- [XXXDX] :: ornamented conical felt Asian head-dress; Phrygian bonnet w/cheek lappets; + tiaras_M_N = mkN "tiaras" "tiarae" masculine ; -- [XXXDX] :: ornamented conical felt Asian head-dress; Phrygian bonnet w/cheek lappets; tibia_F_N = mkN "tibia" ; -- [XDXBO] :: flute, pipe; reed-pipe; (tube with holes for stops); B:tibia, shin-bone; - tibiale_N_N = mkN "tibiale" "tibialis " neuter ; -- [GXXEK] :: stocking; - tibicen_M_N = mkN "tibicen" "tibicinis " masculine ; -- [XXXDX] :: piper, performer on tibia; flute player; prop/strut for shoring up building; + tibiale_N_N = mkN "tibiale" "tibialis" neuter ; -- [GXXEK] :: stocking; + tibicen_M_N = mkN "tibicen" "tibicinis" masculine ; -- [XXXDX] :: piper, performer on tibia; flute player; prop/strut for shoring up building; tibicina_F_N = mkN "tibicina" ; -- [XXXDX] :: female performer on the tibia; 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; + tigris_F_N = mkN "tigris" "tigridis" feminine ; -- [XXXDX] :: tiger; + tigris_M_N = mkN "tigris" "tigris" masculine ; -- [XAXCT] :: 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; timidus_A = mkA "timidus" ; -- [XXXBO] :: timid; cowardly; fearful, apprehensive; without courage; afraid to; - timor_M_N = mkN "timor" "timoris " masculine ; -- [XXXAX] :: fear; dread; + 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; tinctilis_A = mkA "tinctilis" "tinctilis" "tinctile" ; -- [XXXDX] :: obtained by dipping; - tinctus_M_N = mkN "tinctus" "tinctus " masculine ; -- [XXXDX] :: dyeing; dipping; + 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; + 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; + 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; tintinnabulum_N_N = mkN "tintinnabulum" ; -- [XXXCO] :: bell; door bell, signal bell (L+S); cow bell; small bell; @@ -35581,19 +35570,19 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat tintino_V = mkV "tintinare" ; -- [XXXDX] :: make a ringing or jangling sound; tinus_M_N = mkN "tinus" ; -- [XXXDX] :: laurustinus; (bay/laurel); evergreen winter-flowering shrub (Viburnum ~ OED); tippula_F_N = mkN "tippula" ; -- [XAXES] :: water-spider; - tiro_M_N = mkN "tiro" "tironis " masculine ; -- [XXXDX] :: recruit; beginner, novice; + tiro_M_N = mkN "tiro" "tironis" masculine ; -- [XXXDX] :: recruit; beginner, novice; tirocinium_N_N = mkN "tirocinium" ; -- [XXXDX] :: military inexperience; recruits, raw forces; first campaign; youth, pupilage; tirunculus_M_N = mkN "tirunculus" ; -- [XXXEC] :: young beginner; tisana_F_N = mkN "tisana" ; -- [XXXCO] :: barley with the outer covering removed, pearl barley; barley water (drink); - titillatio_F_N = mkN "titillatio" "titillationis " feminine ; -- [XXXDS] :: tickling; + titillatio_F_N = mkN "titillatio" "titillationis" feminine ; -- [XXXDS] :: tickling; titillo_V = mkV "titillare" ; -- [XXXDX] :: tickle, titillate, provoke; stimulate sensually; - titio_F_N = mkN "titio" "titionis " feminine ; -- [XXXDO] :: firebrand, piece of burning wood; - titio_M_N = mkN "titio" "titionis " masculine ; -- [XXXDO] :: firebrand, piece of burning wood; + titio_F_N = mkN "titio" "titionis" feminine ; -- [XXXDO] :: firebrand, piece of burning wood; + titio_M_N = mkN "titio" "titionis" masculine ; -- [XXXDO] :: firebrand, piece of burning wood; titio_V = mkV "titiare" ; -- [XAXFO] :: tweet; (song of the sparrow); - titubatio_F_N = mkN "titubatio" "titubationis " feminine ; -- [XXXDS] :: staggering; + titubatio_F_N = mkN "titubatio" "titubationis" feminine ; -- [XXXDS] :: staggering; titubo_V = mkV "titubare" ; -- [XXXDX] :: stagger, totter; falter; titulus_M_N = mkN "titulus" ; -- [XXXAO] :: |distinction, claim to fame; honor; reputation; inscription; monument (Plater); - toculio_M_N = mkN "toculio" "toculionis " masculine ; -- [XLXEC] :: usurer; + toculio_M_N = mkN "toculio" "toculionis" masculine ; -- [XLXEC] :: usurer; tofus_M_N = mkN "tofus" ; -- [XXXDX] :: tufa, porous stone; volcanic tuff/tufa; toga_F_N = mkN "toga" ; -- [XXXBX] :: toga; (outer garment of Roman citizen); togata_F_N = mkN "togata" ; -- [XDXFS] :: Roman drama; drama on Roman theme; @@ -35601,117 +35590,117 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat togatulus_M_N = mkN "togatulus" ; -- [XXXEC] :: little client; 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; + tolenno_M_N = mkN "tolenno" "tolennonis" masculine ; -- [FXXEK] :: water pump; 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; toleranter_Adv =mkAdv "toleranter" "tolerantius" "tolerantissime" ; -- [XXXEO] :: tolerantly, patiently, with fortitude; so as to withstand harm; tolerantia_F_N = mkN "tolerantia" ; -- [XXXCO] :: patience, fortitude,tolerance; ability to bear/endure pain/adversity; - toleratio_F_N = mkN "toleratio" "tolerationis " feminine ; -- [XXXES] :: enduring; + 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; + 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; tomata_F_N = mkN "tomata" ; -- [GXXEK] :: tomato; tomentum_N_N = mkN "tomentum" ; -- [XXXEC] :: stuffing of a pillow, mattress, etc.; - tomix_F_N = mkN "tomix" "tomicis " feminine ; -- [XXXES] :: cord, string; line, thread; (also thomix); + tomix_F_N = mkN "tomix" "tomicis" feminine ; -- [XXXES] :: cord, string; line, thread; (also thomix); tomographia_F_N = mkN "tomographia" ; -- [GXXEK] :: tomography; - tonale_F_N = mkN "tonale" "tonalis " feminine ; -- [FEXFM] :: Tonal; book of musical rules; + tonale_F_N = mkN "tonale" "tonalis" feminine ; -- [FEXFM] :: Tonal; book of musical rules; tonat_V0 = mkV0 "tonat" ; -- [XXXDX] :: it thunders; tondeo_V = mkV "tondere" ; -- [XXXDX] :: cut, shear, clip; tonella_F_N = mkN "tonella" ; -- [FXBFM] :: cask, tun; (for wine); tonellum_N_N = mkN "tonellum" ; -- [FXBEM] :: cask, tun; (for wine); tonellus_M_N = mkN "tonellus" ; -- [FXBBM] :: cask, tun; (for wine); the Tun (London prison); bird-trap; tonitrualis_A = mkA "tonitrualis" "tonitrualis" "tonitruale" ; -- [XEXES] :: thunderous (used of Jupiter); - tonitrus_M_N = mkN "tonitrus" "tonitrus " masculine ; -- [XXXDX] :: thunder; + tonitrus_M_N = mkN "tonitrus" "tonitrus" masculine ; -- [XXXDX] :: thunder; tonitruum_N_N = mkN "tonitruum" ; -- [XXXDX] :: thunder; tonium_N_N = mkN "tonium" ; -- [FDXES] :: tone; tonna_F_N = mkN "tonna" ; -- [GXXEK] :: ton; tono_V = mkV "tonare" ; -- [XXXBX] :: thunder; speak thunderous tones/thunderously; make/resound like thunder; - tonos_M_N = mkN "tonos" "toni " masculine ; -- [XXXDO] :: |tone/degree of light/shade; strain, tension; peal of thunder (from tono?); + tonos_M_N = mkN "tonos" "toni" masculine ; -- [XXXDO] :: |tone/degree of light/shade; strain, tension; peal of thunder (from tono?); tonsa_F_N = mkN "tonsa" ; -- [XXXDX] :: oar; tonsilis_A = mkA "tonsilis" "tonsilis" "tonsile" ; -- [XXXES] :: shearable; cuttable; that may be shorn/cut/clipped; shorn/clipped/cut/lopped; tonsilla_F_N = mkN "tonsilla" ; -- [XBXEC] :: tonsils (pl.); - tonsor_M_N = mkN "tonsor" "tonsoris " masculine ; -- [XXXDX] :: barber; + tonsor_M_N = mkN "tonsor" "tonsoris" masculine ; -- [XXXDX] :: barber; tonsorius_A = mkA "tonsorius" "tonsoria" "tonsorium" ; -- [XXXDX] :: of or pertaining to a barber, barber's; tonstricula_F_N = mkN "tonstricula" ; -- [XXXEC] :: little female barber; tonstrina_F_N = mkN "tonstrina" ; -- [XXXEC] :: barber's shop; - tonstrix_F_N = mkN "tonstrix" "tonstricis " feminine ; -- [XXXEC] :: female barber; + tonstrix_F_N = mkN "tonstrix" "tonstricis" feminine ; -- [XXXEC] :: female barber; tonstrlna_F_N = mkN "tonstrlna" ; -- [XXXDX] :: barber shop; tonsura_F_N = mkN "tonsura" ; -- [XXXDX] :: clipping, shearing; pruning; tonsure; haircut; tonsus_A = mkA "tonsus" "tonsa" "tonsum" ; -- [XXXES] :: shorn, clipped, cut, lopped; - tonsus_M_N = mkN "tonsus" "tonsus " masculine ; -- [BDXFS] :: coiffure; way of dressing hair (Plautus); + tonsus_M_N = mkN "tonsus" "tonsus" masculine ; -- [BDXFS] :: coiffure; way of dressing hair (Plautus); tonus_M_N = mkN "tonus" ; -- [XXXCO] :: |tone/degree of light/shade; strain, tension; peal of thunder (from tono?); toparchia_F_N = mkN "toparchia" ; -- [XLHEO] :: district, territory, unit of local government in Hellenistic world; toparcia_F_N = mkN "toparcia" ; -- [ELHEW] :: district, territory, unit of local government in Hellenistic world; - topazion_M_N = mkN "topazion" "topaziontis " masculine ; -- [XXXES] :: kind of chrysolite; (Pliny chrysolite=our topaz and v.v.); green jasper (L+S); - topazion_N_N = mkN "topazion" "topazii " neuter ; -- [XXXES] :: kind of chrysolite; (Pliny chrysolite=our topaz and v.v.); green jasper (L+S); + topazion_M_N = mkN "topazion" "topaziontis" masculine ; -- [XXXES] :: kind of chrysolite; (Pliny chrysolite=our topaz and v.v.); green jasper (L+S); + topazion_N_N = mkN "topazion" "topazii" neuter ; -- [XXXES] :: kind of chrysolite; (Pliny chrysolite=our topaz and v.v.); green jasper (L+S); topazius_F_N = mkN "topazius" ; -- [XXXES] :: kind of chrysolite; (Pliny chrysolite=our topaz and v.v.); green jasper (L+S); - topazos_F_N = mkN "topazos" "topazi " feminine ; -- [XXXES] :: kind of chrysolite; (Pliny chrysolite=our topaz and v.v.); green jasper (L+S); + topazos_F_N = mkN "topazos" "topazi" feminine ; -- [XXXES] :: kind of chrysolite; (Pliny chrysolite=our topaz and v.v.); green jasper (L+S); topazus_F_N = mkN "topazus" ; -- [XXXEO] :: kind of chrysolite; (Pliny chrysolite=our topaz and v.v.); green jasper (L+S); tophus_M_N = mkN "tophus" ; -- [XXXDX] :: tufa, pourous rock; volcanic tuff/tufa; topiaria_M_N = mkN "topiaria" ; -- [XAXEC] :: landscape gardener; topiarius_A = mkA "topiarius" "topiaria" "topiarium" ; -- [XXXEC] :: of ornamental gardening; - topice_F_N = mkN "topice" "topices " feminine ; -- [XGXES] :: art of finding topics; - toral_N_N = mkN "toral" "toralis " neuter ; -- [XXXEC] :: valance of a couch; - torcular_N_N = mkN "torcular" "torcularis " neuter ; -- [XAXCO] :: wine/oil press; pressing room, room housing a wine/oil press; oil cellar (L+S); + topice_F_N = mkN "topice" "topices" feminine ; -- [XGXES] :: art of finding topics; + toral_N_N = mkN "toral" "toralis" neuter ; -- [XXXEC] :: valance of a couch; + torcular_N_N = mkN "torcular" "torcularis" neuter ; -- [XAXCO] :: wine/oil press; pressing room, room housing a wine/oil press; oil cellar (L+S); torcularium_N_N = mkN "torcularium" ; -- [XAXDO] :: wine/oil press; pressing room, room housing a wine/oil press; oil cellar (L+S); torcularius_A = mkA "torcularius" "torcularia" "torcularium" ; -- [XAXEO] :: of/connected with/belonging to a wine/oil press; torcularius_M_N = mkN "torcularius" ; -- [XAXFO] :: worker in a (wine/oil) pressing room; torculum_N_N = mkN "torculum" ; -- [XAXCO] :: wine/oil press; torculus_A = mkA "torculus" "torcula" "torculum" ; -- [XAXEO] :: of/connected with/belonging to a wine/oil press; - toreuma_N_N = mkN "toreuma" "toreumatis " neuter ; -- [XXXEC] :: carved or embossed work; - toreutice_F_N = mkN "toreutice" "toreutices " feminine ; -- [DAXNS] :: art of carving (Pliny); - tormen_N_N = mkN "tormen" "torminis " neuter ; -- [FXXEN] :: torture; + toreuma_N_N = mkN "toreuma" "toreumatis" neuter ; -- [XXXEC] :: carved or embossed work; + toreutice_F_N = mkN "toreutice" "toreutices" feminine ; -- [DAXNS] :: art of carving (Pliny); + tormen_N_N = mkN "tormen" "torminis" neuter ; -- [FXXEN] :: torture; tormento_V2 = mkV2 (mkV "tormentare") ; -- [EXXDP] :: torture; torment; inflict acute physical/mental pain; tormentum_N_N = mkN "tormentum" ; -- [XWXBX] :: |rack; any torture device; tension, pressure; torture, torment; - tormin_N_N = mkN "tormin" "torminis " neuter ; -- [XBXEZ] :: colic (Collins); + tormin_N_N = mkN "tormin" "torminis" neuter ; -- [XBXEZ] :: colic (Collins); torminosus_A = mkA "torminosus" "torminosa" "torminosum" ; -- [XXXEC] :: suffering from colic; torminum_N_N = mkN "torminum" ; -- [XBXEC] :: colic, gripes; tornatilis_A = mkA "tornatilis" "tornatilis" "tornatile" ; -- [DXXES] :: rounded; turned on a lathe; finished, beautifully wrought; - tornator_M_N = mkN "tornator" "tornatoris " masculine ; -- [DXXFS] :: turner; lathe operator; one who fashions in wood; + tornator_M_N = mkN "tornator" "tornatoris" masculine ; -- [DXXFS] :: turner; lathe operator; one who fashions in wood; tornatura_F_N = mkN "tornatura" ; -- [EXXFS] :: turning; work of a turner/lathe operator/one who fashions in wood; tornatus_A = mkA "tornatus" "tornata" "tornatum" ; -- [XXXFO] :: rounded; turned on a lathe; torneamentum_N_N = mkN "torneamentum" ; -- [GXXEK] :: tournament; torno_V2 = mkV2 (mkV "tornare") ; -- [XXXCO] :: turn, make round by turning on a lathe; round off (L+S); turn, fashion, smooth; tornus_M_N = mkN "tornus" ; -- [XXXCO] :: lathe; turner's lathe; 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; + 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; 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; + torpor_M_N = mkN "torpor" "torporis" masculine ; -- [XXXDX] :: numbness, torpor, paralysis; torquatus_A = mkA "torquatus" "torquata" "torquatum" ; -- [XXXDX] :: wearing a collar or necklace; torqueo_V = mkV "torquere" ; -- [XXXAX] :: turn, twist; hurl; torture; torment; bend, distort; spin, whirl; wind (round); - torques_M_N = mkN "torques" "torquis " masculine ; -- [XXXCO] :: collar/necklace of twisted metal (often military); wreath (L+S); ring; chaplet; - torquis_F_N = mkN "torquis" "torquis " feminine ; -- [XXXDO] :: collar/necklace of twisted metal (often military); wreath (L+S); ring; chaplet; + torques_M_N = mkN "torques" "torquis" masculine ; -- [XXXCO] :: collar/necklace of twisted metal (often military); wreath (L+S); ring; chaplet; + torquis_F_N = mkN "torquis" "torquis" feminine ; -- [XXXDO] :: collar/necklace of twisted metal (often military); wreath (L+S); ring; chaplet; torrens_A = mkA "torrens" "torrentis"; -- [XXXDX] :: burning hot; rushing; torrential; - torrens_M_N = mkN "torrens" "torrentis " masculine ; -- [XXXDX] :: torrent, rushing stream; + 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; + torris_M_N = mkN "torris" "torris" masculine ; -- [XXXDX] :: firebrand; torrus_M_N = mkN "torrus" ; -- [XXXFS] :: fire-brand; - torsio_F_N = mkN "torsio" "torsionis " feminine ; -- [XXXFS] :: wringing; twisting; + torsio_F_N = mkN "torsio" "torsionis" feminine ; -- [XXXFS] :: wringing; twisting; torta_F_N = mkN "torta" ; -- [GXXEK] :: pie; tortilis_A = mkA "tortilis" "tortilis" "tortile" ; -- [XXXDX] :: twisted, coiled; - tortitudo_F_N = mkN "tortitudo" "tortitudinis " feminine ; -- [FXXEM] :: crookedness; injustice; wickedness, insincerity; + tortitudo_F_N = mkN "tortitudo" "tortitudinis" feminine ; -- [FXXEM] :: crookedness; injustice; wickedness, insincerity; torto_V = mkV "tortare" ; -- [XXXBS] :: torture; torment; - tortor_M_N = mkN "tortor" "tortoris " masculine ; -- [XXXDX] :: torturer; + tortor_M_N = mkN "tortor" "tortoris" masculine ; -- [XXXDX] :: torturer; tortula_F_N = mkN "tortula" ; -- [EXXFS] :: small twist; tortuosus_A = mkA "tortuosus" "tortuosa" "tortuosum" ; -- [XXXDX] :: twisting, tortuous; tortura_F_N = mkN "tortura" ; -- [GXXEK] :: torture; torus_M_N = mkN "torus" ; -- [XXXDX] :: swelling, protuberance; mussel, brawn; bed, couch, stuffed bolster, cushion; - torvitas_F_N = mkN "torvitas" "torvitatis " feminine ; -- [XXXES] :: wildness; savageness; severity; + torvitas_F_N = mkN "torvitas" "torvitatis" feminine ; -- [XXXES] :: wildness; savageness; severity; torvus_A = mkA "torvus" "torva" "torvum" ; -- [XXXBO] :: pitiless/grim; fierce/stern/harsh/savage/dreadful; staring/piercing/wild (eye); tostrum_N_N = mkN "tostrum" ; -- [GTXEK] :: toaster; totalis_A = mkA "totalis" "totalis" "totale" ; -- [FXXEM] :: total; entire; totalitarismus_M_N = mkN "totalitarismus" ; -- [GXXEK] :: totalitarianism; totalitaristicus_A = mkA "totalitaristicus" "totalitaristica" "totalitaristicum" ; -- [GXXEK] :: totalitarian; - totalitas_F_N = mkN "totalitas" "totalitatis " feminine ; -- [FSXCF] :: totality, wholeness; + totalitas_F_N = mkN "totalitas" "totalitatis" feminine ; -- [FSXCF] :: totality, wholeness; totaliter_Adv = mkAdv "totaliter" ; -- [FXXDF] :: altogether, totally, wholly, completely, entirely; 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; @@ -35722,33 +35711,33 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat toxicomaniacus_M_N = mkN "toxicomaniacus" ; -- [GXXEK] :: drug addict; toxicum_N_N = mkN "toxicum" ; -- [XXXDX] :: poison; toxicus_A = mkA "toxicus" "toxica" "toxicum" ; -- [GXXEK] :: toxic; poisonous; - tr_N = constN "tr." masculine ; -- [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; trabeatus_A = mkA "trabeatus" "trabeata" "trabeatum" ; -- [XXXEC] :: clad in the trabea; (white robe with scarlet stripes and purple seam for king); - trabes_F_N = mkN "trabes" "trabis " feminine ; -- [XXXDX] :: tree-trunk, beam, timber; ship; - trabs_F_N = mkN "trabs" "trabis " feminine ; -- [XXXBX] :: tree trunk; log, club, spear; beam, timber, rafter; ship, vessel; roof, house; + trabes_F_N = mkN "trabes" "trabis" feminine ; -- [XXXDX] :: tree-trunk, beam, timber; ship; + trabs_F_N = mkN "trabs" "trabis" feminine ; -- [XXXBX] :: tree trunk; log, club, spear; beam, timber, rafter; ship, vessel; roof, house; trabucus_M_N = mkN "trabucus" ; -- [GWXEK] :: trebuchet (machine of war); tractabilis_A = mkA "tractabilis" "tractabilis" "tractabile" ; -- [XXXDX] :: manageable; tractable; easy to deal with; tractalis_A = mkA "tractalis" "tractalis" "tractale" ; -- [GXXEK] :: pullable; draggable; - tractatio_F_N = mkN "tractatio" "tractationis " feminine ; -- [XXXDX] :: management; treatment; discussion; - tractatus_M_N = mkN "tractatus" "tractatus " masculine ; -- [GXXEK] :: |treaty; convention; + tractatio_F_N = mkN "tractatio" "tractationis" feminine ; -- [XXXDX] :: management; treatment; discussion; + tractatus_M_N = mkN "tractatus" "tractatus" masculine ; -- [GXXEK] :: |treaty; convention; tractim_Adv = mkAdv "tractim" ; -- [XXXDX] :: in a long-drawn-out manner; tracto_V = mkV "tractare" ; -- [XXXBX] :: draw, haul, pull, drag about; handle, manage, treat, discuss; tractogalatus_A = mkA "tractogalatus" "tractogalata" "tractogalatum" ; -- [XXXFS] :: made of/cooked with pastry and milk; - tractus_M_N = mkN "tractus" "tractus " masculine ; -- [XXXDX] :: dragging or pulling along; drawing out; extent; tract, region; lengthening; - traditio_F_N = mkN "traditio" "traditionis " feminine ; -- [XXXDX] :: giving up, delivering up, surrender; record, account; tradition; + tractus_M_N = mkN "tractus" "tractus" masculine ; -- [XXXDX] :: dragging or pulling along; drawing out; extent; tract, region; lengthening; + traditio_F_N = mkN "traditio" "traditionis" feminine ; -- [XXXDX] :: giving up, delivering up, surrender; record, account; tradition; 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; + 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; trafero_V2 = mkV2 (mkV "traferre") ; -- [XXXAO] :: |copy out (writing); translate (language); postpone, transfer date; transform; - tragelaphos_M_N = mkN "tragelaphos" "tragelaphi " masculine ; -- [XAXNO] :: kind of wild goat or antelope; stag with beard like goat (horse-stag) (L+S); + tragelaphos_M_N = mkN "tragelaphos" "tragelaphi" masculine ; -- [XAXNO] :: kind of wild goat or antelope; stag with beard like goat (horse-stag) (L+S); tragelaphus_M_N = mkN "tragelaphus" ; -- [XAXES] :: kind of wild goat or antelope; stag with beard like goat (horse-stag) (L+S); tragicocomoedia_F_N = mkN "tragicocomoedia" ; -- [BDXES] :: tragi-comedy (Plautus); tragicomicus_A = mkA "tragicomicus" "tragicomica" "tragicomicum" ; -- [GXXEK] :: tragi-comic; @@ -35759,49 +35748,49 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; + 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; + 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; - tramen_N_N = mkN "tramen" "traminis " neuter ; -- [GXXEK] :: train; - trames_M_N = mkN "trames" "tramitis " masculine ; -- [XXXCO] :: footpath, track; (stream) bed; course; (family) branch; narrow strip (land); + tramen_N_N = mkN "tramen" "traminis" neuter ; -- [GXXEK] :: train; + trames_M_N = mkN "trames" "tramitis" masculine ; -- [XXXCO] :: footpath, track; (stream) bed; course; (family) branch; narrow strip (land); trano_V = mkV "tranare" ; -- [XXXDX] :: swim across; - tranquillitas_F_N = mkN "tranquillitas" "tranquillitatis " feminine ; -- [XXXDX] :: stillness; tranquility; + tranquillitas_F_N = mkN "tranquillitas" "tranquillitatis" feminine ; -- [XXXDX] :: stillness; tranquility; 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); - 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; + trans_Acc_Prep = mkPrep "trans" Acc ; -- [XXXDX] :: across, over; beyond; on the other side; (only local relations); + transabeo_1_V = mkV "transabire" "transabeo" "transabivi" "transabitus" ; -- [XXXDX] :: go away beyond; + transabeo_2_V = mkV "transabire" "transabeo" "transabiii" "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; + 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; - 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; + transeo_1_V = mkV "transire" "transeo" "transivi" "transitus" ; -- [XXXAX] :: go over, cross; + transeo_2_V = mkV "transire" "transeo" "transiii" "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; + 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; + 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; transforo_V2 = mkV2 (mkV "transforare") ; -- [DXXDS] :: pierce through; @@ -35810,43 +35799,43 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat transfuga_F_N = mkN "transfuga" ; -- [XXXDX] :: deserter; 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; - 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; + 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; + 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; + 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; + 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; + 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; translato_V2 = mkV2 (mkV "translatare") ; -- [FXXFM] :: offer; transfer; - translator_M_N = mkN "translator" "translatoris " masculine ; -- [XXXES] :: transferor; translator (late Latin); + translator_M_N = mkN "translator" "translatoris" masculine ; -- [XXXES] :: transferor; translator (late Latin); translucentia_F_N = mkN "translucentia" ; -- [GXXEK] :: transparency; transluceo_V = mkV "translucere" ; -- [XXXDX] :: shine through or across; be transparent; translucidus_A = mkA "translucidus" "translucida" "translucidum" ; -- [XXXDX] :: transparent; transmarinus_A = mkA "transmarinus" "transmarina" "transmarinum" ; -- [XXXDX] :: across the sea, overseas; beyond the sea; transmaritanus_A = mkA "transmaritanus" "transmaritana" "transmaritanum" ; -- [FXXEM] :: beyond the seas; overseas; transmeo_V = mkV "transmeare" ; -- [XXXES] :: go across, cross, travel across; pass over; - transmigratio_F_N = mkN "transmigratio" "transmigrationis " feminine ; -- [DXXDS] :: removal to another country; emigration; removal/carrying away; captive (Plater); + transmigratio_F_N = mkN "transmigratio" "transmigrationis" feminine ; -- [DXXDS] :: removal to another country; emigration; removal/carrying away; captive (Plater); 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); + 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; + 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; transmutabilis_A = mkA "transmutabilis" "transmutabilis" "transmutabile" ; -- [FXXEZ] :: cross-changeable; transmutable; - transmutabilitas_F_N = mkN "transmutabilitas" "transmutabilitatis " feminine ; -- [FXXEZ] :: cross-changeability; transmutability; + transmutabilitas_F_N = mkN "transmutabilitas" "transmutabilitatis" feminine ; -- [FXXEZ] :: cross-changeability; transmutability; transmuto_V = mkV "transmutare" ; -- [XXXDX] :: change about; transnato_V = mkV "transnatare" ; -- [XXXES] :: swim across; transnavigo_V = mkV "transnavigare" ; -- [XXXES] :: sail over; @@ -35855,26 +35844,26 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat transoceanicus_A = mkA "transoceanicus" "transoceanica" "transoceanicum" ; -- [GXXEK] :: transatlantic; 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; + 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; + 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; + 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; + 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; + 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); @@ -35882,35 +35871,35 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; + trapetus_M_N = mkN "trapetus" "trapetis" masculine ; -- [XAXDS] :: oil-press (pl.); olive-mill; traumaticus_A = mkA "traumaticus" "traumatica" "traumaticum" ; -- [GXXEK] :: traumatic; - travectio_F_N = mkN "travectio" "travectionis " feminine ; -- [XXXES] :: crossing; + travectio_F_N = mkN "travectio" "travectionis" feminine ; -- [XXXES] :: crossing; traversarium_N_N = mkN "traversarium" ; -- [XXXEO] :: cross beam, cross piece (of timber); traversarius_A = mkA "traversarius" "traversaria" "traversarium" ; -- [XXXEO] :: transverse; lying across/from side to side; traversus_A = mkA "traversus" "traversa" "traversum" ; -- [XXXEC] :: transverse, oblique, athwart; 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; + tremefacio_V2 = mkV2 (mkV "tremefacere" "tremefacio" "tremefeci" "tremefactus") ; -- [XXXDX] :: cause to tremble; tremendus_A = mkA "tremendus" "tremenda" "tremendum" ; -- [XXXDX] :: terrible, awe inspiring; 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; + tremis_M_N = mkN "tremis" "tremissis" masculine ; -- [ETXFS] :: coin; third part of gold aureus; 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; + 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; trepidanter_Adv = mkAdv "trepidanter" ; -- [XXXEO] :: tremblingly, anxiously; in a frightened/alarmed manner; - trepidatio_F_N = mkN "trepidatio" "trepidationis " feminine ; -- [XXXDX] :: fear/alarm; nervousness/trepidation; physical trembling/twitching; oscillation; + trepidatio_F_N = mkN "trepidatio" "trepidationis" feminine ; -- [XXXDX] :: fear/alarm; nervousness/trepidation; physical trembling/twitching; oscillation; trepide_Adv =mkAdv "trepide" "trepidius" "trepidissime" ; -- [XXXCO] :: with trepidation/anxiety, in confusion/alarm/panic/fright; busily, in a bustle; - trepiditas_F_N = mkN "trepiditas" "trepiditatis " feminine ; -- [FXXEM] :: nervousness; + trepiditas_F_N = mkN "trepiditas" "trepiditatis" feminine ; -- [FXXEM] :: nervousness; trepido_V = mkV "trepidare" ; -- [XXXBX] :: tremble, be afraid, waver; trepidus_A = mkA "trepidus" "trepida" "trepidum" ; -- [XXXBX] :: nervous, jumpy, agitated; perilous, alarming, frightened; boiling, foaming; trestorno_V = mkV "trestornare" ; -- [FWXFM] :: put to flight; @@ -35920,31 +35909,31 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat triangulum_N_N = mkN "triangulum" ; -- [XSXEC] :: triangle; triangulus_A = mkA "triangulus" "triangula" "triangulum" ; -- [XXXEC] :: three-cornered, triangular; triarius_M_N = mkN "triarius" ; -- [XXXDX] :: third line (pl.) of the early Roman army; the reserves; - trias_F_N = mkN "trias" "triadis " feminine ; -- [XSXES] :: number three; a triad; - tribas_F_N = mkN "tribas" "tribadis " feminine ; -- [XXXEO] :: lesbian, tribade; (woman engaged in sexual activity w/women); masculine lesbian; + trias_F_N = mkN "trias" "triadis" feminine ; -- [XSXES] :: number three; a triad; + tribas_F_N = mkN "tribas" "tribadis" feminine ; -- [XXXEO] :: lesbian, tribade; (woman engaged in sexual activity w/women); masculine lesbian; tribolus_M_N = mkN "tribolus" ; -- [XAXDO] :: spiny plant; caltrop (Tribulus terrestris); (Fagonia cretica, Trapa nayans); tribrachus_M_N = mkN "tribrachus" ; -- [XPXEO] :: tribrach; metric foot of three short syllables (UUU); - tribrachysos_M_N = mkN "tribrachysos" "tribrachyei " masculine ; -- [XPXEO] :: tribrach; metric foot of three short syllables (UUU); - tribrevis_M_N = mkN "tribrevis" "tribrevis " masculine ; -- [XPXES] :: tribrach; metric foot of three short syllables (UUU); + tribrachysos_M_N = mkN "tribrachysos" "tribrachyei" masculine ; -- [XPXEO] :: tribrach; metric foot of three short syllables (UUU); + tribrevis_M_N = mkN "tribrevis" "tribrevis" masculine ; -- [XPXES] :: tribrach; metric foot of three short syllables (UUU); tribualis_A = mkA "tribualis" "tribualis" "tribuale" ; -- [GXXEK] :: tribal; tribuarius_A = mkA "tribuarius" "tribuaria" "tribuarium" ; -- [XXXEC] :: relating to a tribe; - tribulatio_F_N = mkN "tribulatio" "tribulationis " feminine ; -- [DEXES] :: tribulation; distress, trouble; - tribulis_M_N = mkN "tribulis" "tribulis " masculine ; -- [XXXDX] :: fellow tribesman; + tribulatio_F_N = mkN "tribulatio" "tribulationis" feminine ; -- [DEXES] :: tribulation; distress, trouble; + tribulis_M_N = mkN "tribulis" "tribulis" masculine ; -- [XXXDX] :: fellow tribesman; tribulo_V2 = mkV2 (mkV "tribulare") ; -- [XXXEO] :: press, squeeze; exact (dues/payment); trouble; tribulus_M_N = mkN "tribulus" ; -- [XAXDO] :: spiny plant; caltrop (Tribulus terrestris); (Fagonia cretica, Trapa nayans); - tribunal_N_N = mkN "tribunal" "tribunalis " neuter ; -- [XXXDX] :: raised platform; tribunal; judgement seat; - tribunatus_M_N = mkN "tribunatus" "tribunatus " masculine ; -- [XXXDX] :: tribuneship, office of tribune; + tribunal_N_N = mkN "tribunal" "tribunalis" neuter ; -- [XXXDX] :: raised platform; tribunal; judgement seat; + tribunatus_M_N = mkN "tribunatus" "tribunatus" masculine ; -- [XXXDX] :: tribuneship, office of tribune; tribunicius_A = mkA "tribunicius" "tribunicia" "tribunicium" ; -- [XXXDX] :: of/belonging to tribune; tribunicius_M_N = mkN "tribunicius" ; -- [XXXDX] :: ex-tribune; 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); + 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; - tributio_F_N = mkN "tributio" "tributionis " feminine ; -- [XXXFS] :: distribution; L:paying of tribute (late Latin); - tributor_M_N = mkN "tributor" "tributoris " masculine ; -- [DXXFD] :: giver; imparter; + tributio_F_N = mkN "tributio" "tributionis" feminine ; -- [XXXFS] :: distribution; L:paying of tribute (late Latin); + tributor_M_N = mkN "tributor" "tributoris" masculine ; -- [DXXFD] :: giver; imparter; tributoria_F_N = mkN "tributoria" ; -- [XLXEO] :: suit (actio) to extend liability of slave/son to owner/father; tributorium_N_N = mkN "tributorium" ; -- [XXXEX] :: tax office; tributorius_A = mkA "tributorius" "tributoria" "tributorium" ; -- [XLXEO] :: of suit to extend liability of son/slave to owner/father; of payment (L+S); @@ -35957,28 +35946,28 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat triclinarium_N_N = mkN "triclinarium" ; -- [XXXFS] :: dining room; table covering; tricliniaris_A = mkA "tricliniaris" "tricliniaris" "tricliniare" ; -- [XXXFS] :: of an eating couch; triclinium_N_N = mkN "triclinium" ; -- [XXXBX] :: dining couch; dining room; - trico_M_N = mkN "trico" "triconis " masculine ; -- [BXXES] :: mischief-maker (Plautus); + trico_M_N = mkN "trico" "triconis" masculine ; -- [BXXES] :: mischief-maker (Plautus); trico_V = mkV "tricare" ; -- [DXXES] :: behave in evasive manner; trifle/delay/dally; cause trouble; pull/play tricks; tricor_V = mkV "tricari" ; -- [XXXEO] :: behave in evasive manner; trifle/delay/dally; cause trouble; pull/play tricks; tricorpor_A = mkA "tricorpor" "tricorporis"; -- [XXXDX] :: having three bodies; tricuspis_A = mkA "tricuspis" "tricuspidis"; -- [XXXDX] :: having three prongs; tridens_A = mkA "tridens" "tridentis"; -- [XXXDX] :: with three teeth; - tridens_M_N = mkN "tridens" "tridentis " masculine ; -- [XXXDX] :: trident; + tridens_M_N = mkN "tridens" "tridentis" masculine ; -- [XXXDX] :: trident; tridentifer_M_N = mkN "tridentifer" ; -- [XXXDX] :: one carrying a trident; tridentiger_M_N = mkN "tridentiger" ; -- [XXXDX] :: one carrying a trident; triduana_F_N = mkN "triduana" ; -- [FEXEM] :: three days' fast; triduanus_A = mkA "triduanus" "triduana" "triduanum" ; -- [FXXEM] :: three days' duration, lasting three days; triduum_N_N = mkN "triduum" ; -- [XXXDX] :: three days; - trienne_N_N = mkN "trienne" "triennis " neuter ; -- [XXXDX] :: triennial festival (pl.); + trienne_N_N = mkN "trienne" "triennis" neuter ; -- [XXXDX] :: triennial festival (pl.); triennis_A = mkA "triennis" "triennis" "trienne" ; -- [EXXFS] :: three year old; triennium_N_N = mkN "triennium" ; -- [XXXDX] :: three years; - triens_M_N = mkN "triens" "trientis " masculine ; -- [XXXDX] :: third part, third; third part of an as; [usurae t~ => 4% interest]; + triens_M_N = mkN "triens" "trientis" masculine ; -- [XXXDX] :: third part, third; third part of an as; [usurae t~ => 4% interest]; trientabulum_N_N = mkN "trientabulum" ; -- [XXXEC] :: equivalent in land for the third part of a sum of money trientius_A = mkA "trientius" "trientia" "trientium" ; -- [XXXES] :: sold-for-a-third; trierarchus_M_N = mkN "trierarchus" ; -- [XXXDX] :: captain of a trireme; trietericum_N_N = mkN "trietericum" ; -- [XXXDX] :: triennial (alternate year) rites (pl.) of Bacchus held at Thebes; trietericus_A = mkA "trietericus" "trieterica" "trietericum" ; -- [XXXDX] :: of 3 years (biennial!, count both extremes), of alternate years; triennial; - trieteris_F_N = mkN "trieteris" "trieteridis " feminine ; -- [XXXEC] :: space of three years or a triennial festival; + trieteris_F_N = mkN "trieteris" "trieteridis" feminine ; -- [XXXEC] :: space of three years or a triennial festival; trifariam_Adv = mkAdv "trifariam" ; -- [XXXDX] :: in three ways, into three parts; trifarie_Adv = mkAdv "trifarie" ; -- [FXXFM] :: in three parts; trifarius_A = mkA "trifarius" "trifaria" "trifarium" ; -- [EXXFS] :: three-fold; @@ -35986,13 +35975,13 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat trifaux_A = mkA "trifaux" "trifaucis"; -- [XPXES] :: triple-throated; trifidus_A = mkA "trifidus" "trifida" "trifidum" ; -- [XXXDX] :: divided to form three prongs; triformis_A = mkA "triformis" "triformis" "triforme" ; -- [XXXDX] :: of three forms, triple, threefold; - trifur_M_N = mkN "trifur" "trifuris " masculine ; -- [BXXFS] :: triple-thief; persistent thief (Plautus); + trifur_M_N = mkN "trifur" "trifuris" masculine ; -- [BXXFS] :: triple-thief; persistent thief (Plautus); trifurcifer_M_N = mkN "trifurcifer" ; -- [BXXFS] :: persistent thief (Plautus); triga_F_N = mkN "triga" ; -- [XXXFS] :: three-horse team; G:set of three; trigeminus_A = mkA "trigeminus" "trigemina" "trigeminum" ; -- [XXXDX] :: triplet; trigeminus_M_N = mkN "trigeminus" ; -- [XXXDX] :: triplets (pl.); triglyphus_M_N = mkN "triglyphus" ; -- [XTXFO] :: triglyph; block w/3 vertical groves repeated at intervals in Doric frieze; - trigon_M_N = mkN "trigon" "trigonis " masculine ; -- [XXXEO] :: ball game with three players in triangle (in baths); ball for playing trigon; + trigon_M_N = mkN "trigon" "trigonis" masculine ; -- [XXXEO] :: ball game with three players in triangle (in baths); ball for playing trigon; trigonium_N_N = mkN "trigonium" ; -- [XXXFO] :: triangle; three sided figure; triangular pill/tablet; 3 player ball game; trigonometria_F_N = mkN "trigonometria" ; -- [GSXEK] :: trigonometry; trigonum_N_N = mkN "trigonum" ; -- [XXXCO] :: triangle; three sided figure; triangular pill/tablet; 3 player ball game; @@ -36002,19 +35991,19 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat trilinguis_A = mkA "trilinguis" "trilinguis" "trilingue" ; -- [XXXDX] :: that has three tongues; trilix_A = mkA "trilix" "trilicis"; -- [XXXDX] :: having triple thread; trilustralis_A = mkA "trilustralis" "trilustralis" "trilustrale" ; -- [FXXEM] :: fifteen-year-lasting; lasting for fifteen years; - trimenstre_N_N = mkN "trimenstre" "trimenstris " neuter ; -- [XAXDO] :: crops ripening in 3 months; spring-sown crops; + trimenstre_N_N = mkN "trimenstre" "trimenstris" neuter ; -- [XAXDO] :: crops ripening in 3 months; spring-sown crops; trimenstris_A = mkA "trimenstris" "trimenstris" "trimenstre" ; -- [XXXCO] :: three months old; lasting/acting for 3 months; ripening in 3 months (crops); - trimestre_N_N = mkN "trimestre" "trimestris " neuter ; -- [XAXDO] :: crops ripening in 3 months; spring-sown crops; + trimestre_N_N = mkN "trimestre" "trimestris" neuter ; -- [XAXDO] :: crops ripening in 3 months; spring-sown crops; trimestris_A = mkA "trimestris" "trimestris" "trimestre" ; -- [XXXCO] :: three months old; lasting/acting for 3 months; ripening in 3 months (crops); trimeter_M_N = mkN "trimeter" ; -- [XPXES] :: trimeter; three metric feet; - trimetr_M_N = mkN "trimetr" "trimetris " masculine ; -- [XPXEC] :: trimeter; + trimetr_M_N = mkN "trimetr" "trimetris" masculine ; -- [XPXEC] :: trimeter; trimetrus_A = mkA "trimetrus" "trimetra" "trimetrum" ; -- [XPXEC] :: containing three double feet; trimodia_F_N = mkN "trimodia" ; -- [XXXFS] :: three-peck measure; vessel of three modii capacity; trimodus_A = mkA "trimodus" "trimoda" "trimodum" ; -- [FXXEM] :: triple; trimodal (Nelson); trimus_A = mkA "trimus" "trima" "trimum" ; -- [XXXDX] :: three, three years old; trinarius_A = mkA "trinarius" "trinaria" "trinarium" ; -- [FXXFM] :: ternary; - trinepos_M_N = mkN "trinepos" "trinepotis " masculine ; -- [XXXEO] :: great-great-great grandson; - trineptis_F_N = mkN "trineptis" "trineptis " feminine ; -- [XXXEO] :: great-great-great granddaughter; + trinepos_M_N = mkN "trinepos" "trinepotis" masculine ; -- [XXXEO] :: great-great-great grandson; + trineptis_F_N = mkN "trineptis" "trineptis" feminine ; -- [XXXEO] :: great-great-great granddaughter; trinitarius_A = mkA "trinitarius" "trinitaria" "trinitarium" ; -- [FXXFM] :: ternary; threefold, triple; consisting of three; arranged in threes; in 3 parts; trinoctium_N_N = mkN "trinoctium" ; -- [XXXFS] :: three-night interval; trinodis_A = mkA "trinodis" "trinodis" "trinode" ; -- [XXXDX] :: having three knots or bosses; @@ -36028,7 +36017,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat tripes_A = mkA "tripes" "tripedis"; -- [XXXDX] :: three-legged; triplaris_A = mkA "triplaris" "triplaris" "triplare" ; -- [EXXES] :: triple; threefold; triplex_A = mkA "triplex" "triplicis"; -- [XXXDX] :: threefold, triple; three; - triplicitas_F_N = mkN "triplicitas" "triplicitatis " feminine ; -- [FXXFM] :: three-foldness; + triplicitas_F_N = mkN "triplicitas" "triplicitatis" feminine ; -- [FXXFM] :: three-foldness; tripliciter_Adv = mkAdv "tripliciter" ; -- [XXXFO] :: triply, in three ways; triplico_V = mkV "triplicare" ; -- [FXXEM] :: triplicate/do three copies; L:surrejoin/plaintiff reply to defendant rejoinder; tripodo_V = mkV "tripodare" ; -- [XXXDX] :: dance; perform ritual dance (in triple time in honor of Mars); @@ -36036,10 +36025,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + tripus_M_N = mkN "tripus" "tripodis" masculine ; -- [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; + triremis_F_N = mkN "triremis" "triremis" feminine ; -- [XXXDX] :: trireme, vessel having three oars to each bench/banks of oars; trirota_F_N = mkN "trirota" ; -- [GXXEK] :: tricycle; triscurrium_N_N = mkN "triscurrium" ; -- [XXXES] :: gross clowning; triste_Adv = mkAdv "triste" ; -- [XXXDX] :: sadly, sorrowfully; harshly, severely; @@ -36050,27 +36039,27 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat tristimonia_F_N = mkN "tristimonia" ; -- [XXXFS] :: sadness; tristis_A = mkA "tristis" "tristis" "triste" ; -- [XXXAX] :: sad, sorrowful; gloomy; tristitia_F_N = mkN "tristitia" ; -- [XXXBX] :: sadness; - tristities_F_N = mkN "tristities" "tristitiei " feminine ; -- [XXXES] :: sadness; sorrow; - tristitudo_F_N = mkN "tristitudo" "tristitudinis " feminine ; -- [EXXFS] :: sadness; sorrow; grief; + tristities_F_N = mkN "tristities" "tristitiei" feminine ; -- [XXXES] :: sadness; sorrow; + tristitudo_F_N = mkN "tristitudo" "tristitudinis" feminine ; -- [EXXFS] :: sadness; sorrow; grief; tristor_V = mkV "tristari" ; -- [XXXFS] :: be sad/grieved/downcast/dejected; trisulcus_A = mkA "trisulcus" "trisulca" "trisulcum" ; -- [XXXDX] :: divided into three forks or prongs; tritavia_F_N = mkN "tritavia" ; -- [ELXES] :: remote ancestor's mother; mother of atavus or atavia; - trite_F_N = mkN "trite" "trites " feminine ; -- [XDXFO] :: 3rd string; 3rd tone-in-scale; third string of tetrachord from the nete/highest; + trite_F_N = mkN "trite" "trites" feminine ; -- [XDXFO] :: 3rd string; 3rd tone-in-scale; third string of tetrachord from the nete/highest; triticeus_A = mkA "triticeus" "triticea" "triticeum" ; -- [XXXDX] :: of wheat; triticius_A = mkA "triticius" "triticia" "triticium" ; -- [XAXCO] :: of wheat; triticum_N_N = mkN "triticum" ; -- [XXXDX] :: wheat; tritura_F_N = mkN "tritura" ; -- [XXXDX] :: rubbing, friction; threshing; trituro_V2 = mkV2 (mkV "triturare") ; -- [EAXDS] :: thresh; tritus_A = mkA "tritus" "trita" "tritum" ; -- [XXXDX] :: well-trodden, well-worn, worn; common; familiar; - triumfator_M_N = mkN "triumfator" "triumfatoris " masculine ; -- [XWXIS] :: one who triumphs; - triumphal_N_N = mkN "triumphal" "triumphalis " neuter ; -- [XXXDX] :: insignia (pl.) of a triumph; + triumfator_M_N = mkN "triumfator" "triumfatoris" masculine ; -- [XWXIS] :: one who triumphs; + triumphal_N_N = mkN "triumphal" "triumphalis" neuter ; -- [XXXDX] :: insignia (pl.) of a triumph; triumphalis_A = mkA "triumphalis" "triumphalis" "triumphale" ; -- [XXXDX] :: of celebration of a triumph; having triumphal status; triumphant; triumphe_Interj = ss "triumphe" ; -- [XXXFS] :: triumphant!; triumpho_V = mkV "triumphare" ; -- [XXXBX] :: triumph over; celebrate a triumph; conquer completely, triumph; triumphus_M_N = mkN "triumphus" ; -- [XXXAX] :: triumph, victory parade; triumvir_M_N = mkN "triumvir" ; -- [XXXDX] :: triumvir, commissioner; (pl.) triumviri, a three-man board; triumviralis_A = mkA "triumviralis" "triumviralis" "triumvirale" ; -- [XLXES] :: trimviral; of the triumvirs; - triumviratus_M_N = mkN "triumviratus" "triumviratus " masculine ; -- [XXXDX] :: triumvirate; + triumviratus_M_N = mkN "triumviratus" "triumviratus" masculine ; -- [XXXDX] :: triumvirate; trivenefica_F_N = mkN "trivenefica" ; -- [BXXFO] :: treble-dyed witch; old witch (L+S; poison-mixer (Plautus); trivium_N_N = mkN "trivium" ; -- [FGXCB] :: trivium, first group of seven liberal arts (grammar/rhetoric/logic); trivius_A = mkA "trivius" "trivia" "trivium" ; -- [XXXDX] :: of/belonging to crossroads temple, esp. sacred to Diana/Hecate; @@ -36082,22 +36071,22 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat trocilea_F_N = mkN "trocilea" ; -- [XXXDO] :: pulley, block and tackle; set of blocks and pulleys for raising weights; troclea_F_N = mkN "troclea" ; -- [XXXDO] :: pulley, block and tackle; set of blocks and pulleys for raising weights; troclia_F_N = mkN "troclia" ; -- [XXXDO] :: pulley, block and tackle; set of blocks and pulleys for raising weights; - tromocrates_M_N = mkN "tromocrates" "tromocratae " masculine ; -- [GXXEK] :: terrorist; + tromocrates_M_N = mkN "tromocrates" "tromocratae" masculine ; -- [GXXEK] :: terrorist; tromocratia_F_N = mkN "tromocratia" ; -- [GXXEK] :: terrorism; tropaeum_N_N = mkN "tropaeum" ; -- [XWXBO] :: trophy; monument (set up to mark victory/rout) (often captured armor); victory; trophaeum_N_N = mkN "trophaeum" ; -- [FWXBV] :: trophy; monument (set up to mark victory/rout) (often captured armor); victory; tropologia_F_N = mkN "tropologia" ; -- [ESXEP] :: allegorical exposition; tropologice_Adv = mkAdv "tropologice" ; -- [ESXFP] :: allegorically; tropologicus_A = mkA "tropologicus" "tropologica" "tropologicum" ; -- [ESXEP] :: allegorical; - tropos_M_N = mkN "tropos" "tropi " masculine ; -- [XGXDO] :: trope, figure of speech, figurative use of word; song, manner of singing (L+S); + tropos_M_N = mkN "tropos" "tropi" masculine ; -- [XGXDO] :: trope, figure of speech, figurative use of word; song, manner of singing (L+S); tropus_M_N = mkN "tropus" ; -- [XGXDO] :: trope, figure of speech, figurative use of word; song, manner of singing (L+S); - trucidatio_F_N = mkN "trucidatio" "trucidationis " feminine ; -- [XXXDX] :: slaughtering, massacre; + trucidatio_F_N = mkN "trucidatio" "trucidationis" feminine ; -- [XXXDX] :: slaughtering, massacre; trucido_V = mkV "trucidare" ; -- [XXXDX] :: slaughter, butcher, massacre; trucilo_V = mkV "trucilare" ; -- [XAXFO] :: trill; (song of the thrush); 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; + 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; @@ -36107,25 +36096,25 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat trutina_F_N = mkN "trutina" ; -- [XXXEC] :: balance, pair of scales; trutino_V = mkV "trutinare" ; -- [FXXEM] :: balance, weigh; trux_A = mkA "trux" "trucis"; -- [XXXBX] :: wild, savage, fierce; - trychnos_M_N = mkN "trychnos" "trychni " masculine ; -- [DAXNS] :: nightshade plant (Pliny); + trychnos_M_N = mkN "trychnos" "trychni" masculine ; -- [DAXNS] :: nightshade plant (Pliny); trygonus_M_N = mkN "trygonus" ; -- [DAXES] :: stingray; tuba_F_N = mkN "tuba" ; -- [XDXBX] :: trumpet (straight tube); (military signals/religious rites); hydraulic ram pipe; - tuber_F_N = mkN "tuber" "tuberis " feminine ; -- [XAXES] :: kind of apple-tree; - tuber_M_N = mkN "tuber" "tuberis " masculine ; -- [XAXES] :: |apple (L+S); fruit from a kind of apple-tree; - tuber_N_N = mkN "tuber" "tuberis " neuter ; -- [XXXCO] :: tumor, protuberance, bump, excrescence; truffle; plant with tuberous root; + tuber_F_N = mkN "tuber" "tuberis" feminine ; -- [XAXES] :: kind of apple-tree; + tuber_M_N = mkN "tuber" "tuberis" masculine ; -- [XAXES] :: |apple (L+S); fruit from a kind of apple-tree; + tuber_N_N = mkN "tuber" "tuberis" neuter ; -- [XXXCO] :: tumor, protuberance, bump, excrescence; truffle; plant with tuberous root; tuberculum_N_N = mkN "tuberculum" ; -- [XBXFS] :: small swelling/bump/protuberance/excrescence/tumor; boil (L+S); pimple; - tubicen_M_N = mkN "tubicen" "tubicinis " masculine ; -- [XXXCO] :: trumpeter; tuba (straight tube trumpet) player (esp. in army); + tubicen_M_N = mkN "tubicen" "tubicinis" masculine ; -- [XXXCO] :: trumpeter; tuba (straight tube trumpet) player (esp. in army); tubineus_A = mkA "tubineus" "tubinea" "tubineum" ; -- [FXXEN] :: cone shaped; - tubur_M_N = mkN "tubur" "tuburis " masculine ; -- [XAXDO] :: exotic fruit; (azarole or oriental medlar); the bush (Crataegus azarolus); + tubur_M_N = mkN "tubur" "tuburis" masculine ; -- [XAXDO] :: exotic fruit; (azarole or oriental medlar); the bush (Crataegus azarolus); tuburcinor_V = mkV "tuburcinari" ; -- [BXXFS] :: eat greedily (Plautus); tubus_M_N = mkN "tubus" ; -- [XDXFS] :: pipe; lute; trumpet; tuccetum_N_N = mkN "tuccetum" ; -- [XXXFS] :: sausage; tudito_V2 = mkV2 (mkV "tuditare") ; -- [XXXEC] :: strike often; tueor_V = mkV "tueri" ; -- [XXXDX] :: see, look at; protect, watch; uphold; tugurium_N_N = mkN "tugurium" ; -- [GXXEK] :: hangar; discount; - tuissatio_F_N = mkN "tuissatio" "tuissationis " feminine ; -- [GXXEK] :: familiarity; + tuissatio_F_N = mkN "tuissatio" "tuissationis" feminine ; -- [GXXEK] :: familiarity; tuisso_V = mkV "tuissare" ; -- [GXXEK] :: be familiar with; - tuitio_F_N = mkN "tuitio" "tuitionis " feminine ; -- [XLXDO] :: protection, support (esp. in matters of law); upkeep/maintenance (structure); + tuitio_F_N = mkN "tuitio" "tuitionis" feminine ; -- [XLXDO] :: protection, support (esp. in matters of law); upkeep/maintenance (structure); 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]; @@ -36133,41 +36122,41 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; 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; + 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; tumulosus_A = mkA "tumulosus" "tumulosa" "tumulosum" ; -- [XXXDX] :: full of hillocks; tumultuarius_A = mkA "tumultuarius" "tumultuaria" "tumultuarium" ; -- [XXXDX] :: raised to deal with a sudden emergency; improvised; unplanned, haphazard; - tumultuatio_F_N = mkN "tumultuatio" "tumultuationis " feminine ; -- [XXXDX] :: confused uproar; + 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; 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; + 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; + 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; tunicatus_A = mkA "tunicatus" "tunicata" "tunicatum" ; -- [XXXEC] :: clothed in a tunic; - tuor_M_N = mkN "tuor" "tuoris " masculine ; -- [XXXFS] :: sight, vision; + tuor_M_N = mkN "tuor" "tuoris" masculine ; -- [XXXFS] :: sight, vision; tuor_V = mkV "tuari" ; -- [XXXCS] :: see, look at; protect, watch; uphold; (form of tueor); - turannis_F_N = mkN "turannis" "turannidis " feminine ; -- [XLXFX] :: tyranny; position of a tyrant; cruel regime; (also tyrannis); + turannis_F_N = mkN "turannis" "turannidis" feminine ; -- [XLXFX] :: tyranny; position of a tyrant; cruel regime; (also tyrannis); turba_F_N = mkN "turba" ; -- [XXXAX] :: commotion, uproar, turmoil, tumult, disturbance; crowd, mob, multitude; turbamentum_N_N = mkN "turbamentum" ; -- [XXXDX] :: means of disturbing; - turbatio_F_N = mkN "turbatio" "turbationis " feminine ; -- [XXXDX] :: disturbance; - turbator_M_N = mkN "turbator" "turbatoris " masculine ; -- [XXXDX] :: one who disturbs; - turbedo_M_N = mkN "turbedo" "turbedinis " masculine ; -- [EXXCP] :: storm; cloudiness (of beer); + turbatio_F_N = mkN "turbatio" "turbationis" feminine ; -- [XXXDX] :: disturbance; + turbator_M_N = mkN "turbator" "turbatoris" masculine ; -- [XXXDX] :: one who disturbs; + turbedo_M_N = mkN "turbedo" "turbedinis" masculine ; -- [EXXCP] :: storm; cloudiness (of beer); turbela_F_N = mkN "turbela" ; -- [XXXFS] :: bustle; small crowd; (turbella); - turben_N_N = mkN "turben" "turbinis " neuter ; -- [XXXFO] :: that which whirls; whirlwind, tornado; spinning top; spiral, round, circle; - turbido_M_N = mkN "turbido" "turbidinis " masculine ; -- [EXXEP] :: storm; cloudiness (of beer); + turben_N_N = mkN "turben" "turbinis" neuter ; -- [XXXFO] :: that which whirls; whirlwind, tornado; spinning top; spiral, round, circle; + turbido_M_N = mkN "turbido" "turbidinis" masculine ; -- [EXXEP] :: storm; cloudiness (of beer); turbido_V2 = mkV2 (mkV "turbidare") ; -- [DXXDS] :: disturb/trouble/agitate; make turbulent/turbid; obscure, make turmoil/confusion; turbidus_A = mkA "turbidus" "turbida" "turbidum" ; -- [XXXAO] :: |confused, disordered; impatient, troubled, dazed, frantic; unruly, mutinous; 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_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; turbulentus_A = mkA "turbulentus" ; -- [XXXDX] :: violently disturbed, stormy, turbulent; unruly, riotous; w/violent unrest; turdus_M_N = mkN "turdus" ; -- [XXXDX] :: thrush; @@ -36176,7 +36165,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + turgor_M_N = mkN "turgor" "turgoris" masculine ; -- [DXXFS] :: swelling; turibulum_N_N = mkN "turibulum" ; -- [XXXDX] :: censer, vessel in which incense is burnt; thurible;; turicremus_A = mkA "turicremus" "turicrema" "turicremum" ; -- [XXXDX] :: burning incense; turifer_A = mkA "turifer" "turifera" "turiferum" ; -- [XXXDX] :: yielding or producing incense; @@ -36187,7 +36176,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat turmalis_A = mkA "turmalis" "turmalis" "turmale" ; -- [XXXDX] :: of/belonging to squadron of cavalry; turmatim_Adv = mkAdv "turmatim" ; -- [XXXDX] :: by squadrons, by troops; by turma (squadron of 30 horsemen); turpe_Adv =mkAdv "turpe" "turpius" "turpissime" ; -- [XXXDS] :: repulsively, disgracefully, shamelessly; in an ugly/unsightly manner; - turpe_N_N = mkN "turpe" "turpis " neuter ; -- [XXXES] :: disgrace; shame, reproach; base/shameful thing; + turpe_N_N = mkN "turpe" "turpis" neuter ; -- [XXXES] :: disgrace; shame, reproach; base/shameful thing; turpiculus_A = mkA "turpiculus" "turpicula" "turpiculum" ; -- [XXXDX] :: somewhat ugly; turpificatus_A = mkA "turpificatus" "turpificata" "turpificatum" ; -- [XXXEC] :: corrupted; turpiloquium_N_N = mkN "turpiloquium" ; -- [GXXET] :: immodest speech; (Erasmus); @@ -36197,37 +36186,37 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + turpitudo_F_N = mkN "turpitudo" "turpitudinis" feminine ; -- [XXXBO] :: ugliness/deformity; shame/indecency; nakedness/genitals; disgrace; turpitude; turpo_V = mkV "turpare" ; -- [XXXDX] :: make ugly; pollute, disfigure; turricula_F_N = mkN "turricula" ; -- [XXXFS] :: turret; little tower; dice-box (shaped like turret); turriger_A = mkA "turriger" "turrigera" "turrigerum" ; -- [XXXDX] :: bearing a tower; wearing a turreted crown; - turrile_N_N = mkN "turrile" "turrilis " neuter ; -- [GXXEK] :: church arrow; - turris_F_N = mkN "turris" "turris " feminine ; -- [XXXAX] :: tower; high building, palace, citadel; dove tower, dove cot; + turrile_N_N = mkN "turrile" "turrilis" neuter ; -- [GXXEK] :: church arrow; + turris_F_N = mkN "turris" "turris" feminine ; -- [XXXAX] :: tower; high building, palace, citadel; dove tower, dove cot; turritus_A = mkA "turritus" "turrita" "turritum" ; -- [XXXDX] :: crowned with towers, tower-shaped; - turtur_M_N = mkN "turtur" "turturis " masculine ; -- [XXXDX] :: turtle-dove; + turtur_M_N = mkN "turtur" "turturis" masculine ; -- [XXXDX] :: turtle-dove; turunda_F_N = mkN "turunda" ; -- [XAXFZ] :: TURUND; some kind of food stuffing; - tus_N_N = mkN "tus" "turis " neuter ; -- [XXXDX] :: frankincense; + tus_N_N = mkN "tus" "turis" neuter ; -- [XXXDX] :: frankincense; 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); + 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; + 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; tute_Adv = mkAdv "tute" ; -- [XXXDX] :: without risk/danger, safely, securely; tutela_F_N = mkN "tutela" ; -- [XXXBX] :: tutelage, guardianship; tuto_Adv =mkAdv "tuto" "tutius" "tutissime" ; -- [XXXDX] :: without risk/danger, safely, securely; 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_M_N = mkN "tutor" "tutoris" masculine ; -- [XXXDX] :: protector, defender; guardian, watcher; tutor; tutor_V = mkV "tutari" ; -- [XXXDX] :: guard, protect, defend; guard against, avert; 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; + tympanistes_M_N = mkN "tympanistes" "tympanistae" masculine ; -- [XDXFO] :: tympanum (small drum) player; tympanistria_F_N = mkN "tympanistria" ; -- [XDXFO] :: female tympanum (small drum) player; tympanotriba_M_N = mkN "tympanotriba" ; -- [BXXFS] :: timbrel player (Plautus); effeminate person; tympanum_N_N = mkN "tympanum" ; -- [XXXDX] :: small drum or like (used in worship of Cybele/Bacchus); revolving cylinder; typanum_N_N = mkN "typanum" ; -- [XXXDX] :: small drum; revolving cylinder; - typhon_M_N = mkN "typhon" "typhonis " masculine ; -- [XXXCO] :: violent whirlwind/tornado; (typhoon/cyclone); name given to a comet by Pharaoh; + typhon_M_N = mkN "typhon" "typhonis" masculine ; -- [XXXCO] :: violent whirlwind/tornado; (typhoon/cyclone); name given to a comet by Pharaoh; typhonicus_A = mkA "typhonicus" "typhonica" "typhonicum" ; -- [EXXFS] :: typhonic, whirling, violent; [~ ventus => whirlwind/tornado]; typicus_A = mkA "typicus" "typica" "typicum" ; -- [DXXES] :: figurative; typical; periodic, recurring at intervals; typographeum_N_N = mkN "typographeum" ; -- [GXXEK] :: printing (shop); @@ -36241,15 +36230,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat tyrannicida_M_N = mkN "tyrannicida" ; -- [XXXDO] :: tyrannicide, killer/slayer a tyrant/despot; (e.g., killers of Caesar); tyrannicidium_N_N = mkN "tyrannicidium" ; -- [XLXDO] :: tyrannicide, killing of a tyrant/despot; tyrannicus_A = mkA "tyrannicus" "tyrannica" "tyrannicum" ; -- [XXXEC] :: tyrannical; - tyrannis_F_N = mkN "tyrannis" "tyrannidis " feminine ; -- [XLXBO] :: tyranny; position/rule/territory of a tyrant; any cruel/oppressive regime; + tyrannis_F_N = mkN "tyrannis" "tyrannidis" feminine ; -- [XLXBO] :: tyranny; position/rule/territory of a tyrant; any cruel/oppressive regime; tyrannoctonus_M_N = mkN "tyrannoctonus" ; -- [XLXEO] :: tyrannicide, killer/slayer a tyrant/despot; (e.g., killers of Caesar); tyrannus_M_N = mkN "tyrannus" ; -- [XXXBX] :: tyrant; despot; monarch, absolute ruler; king, prince; - tyrotarichos_M_N = mkN "tyrotarichos" "tyrotarichi " masculine ; -- [XXXEC] :: dish of cheese and salt-fish; + tyrotarichos_M_N = mkN "tyrotarichos" "tyrotarichi" masculine ; -- [XXXEC] :: dish of cheese and salt-fish; tyrsus_M_N = mkN "tyrsus" ; -- [EXXFW] :: wreathed wand; (2 Maccabee 10:7); uber_A = mkA "uber" "uberis"; -- [XXXBX] :: fertile, rich, abundant, abounding, fruitful, plentiful, copious, productive; - uber_N_N = mkN "uber" "uberis " neuter ; -- [XBXCO] :: breast/teat (woman); udder (animal), dugs/teats; rich soil; plenty/abundance; + uber_N_N = mkN "uber" "uberis" neuter ; -- [XBXCO] :: breast/teat (woman); udder (animal), dugs/teats; rich soil; plenty/abundance; uberius_Adv =mkAdv "uberius" "uberrime" ; -- [XXXCX] :: in/with greater/est abundance/exuberance; more prolifically/fully/copiously; - ubertas_F_N = mkN "ubertas" "ubertatis " feminine ; -- [XXXDX] :: fruitfulness, fertility; abundance, plenty; + ubertas_F_N = mkN "ubertas" "ubertatis" feminine ; -- [XXXDX] :: fruitfulness, fertility; abundance, plenty; 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; @@ -36263,25 +36252,25 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + uligo_F_N = mkN "uligo" "uliginis" feminine ; -- [XXXDX] :: waterlogged ground, marsh; ullatenus_Adv = mkAdv "ullatenus" ; -- [DXXFS] :: in any respect whatever; 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; + 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; + 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_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; @@ -36293,12 +36282,12 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat ultumus_A = mkA "ultumus" "ultuma" "ultumum" ; -- [BXXEX] :: far; farther; farthest, latest; last; highest, greatest; (alsoultimus); ulula_F_N = mkN "ulula" ; -- [XXXDX] :: tawny owl; ululatus_A = mkA "ululatus" "ululata" "ululatum" ; -- [XXXDX] :: yell, shout; - ululatus_M_N = mkN "ululatus" "ululatus " masculine ; -- [XXXES] :: howling (dogs/wolves), wailing; shrieking (defiance); yelling (grief/distress); + ululatus_M_N = mkN "ululatus" "ululatus" masculine ; -- [XXXES] :: howling (dogs/wolves), wailing; shrieking (defiance); yelling (grief/distress); ululo_V = mkV "ululare" ; -- [XXXDX] :: howl, yell, shriek; celebrate or proclaim with howling; ulva_F_N = mkN "ulva" ; -- [XAXCO] :: sedge; (collective term) various grass/rush-like aquatic plants; umbella_F_N = mkN "umbella" ; -- [XXXEC] :: parasol; umbilicus_M_N = mkN "umbilicus" ; -- [XXXDX] :: navel, middle, center; center of country/region; ornamented end of scroll; - umbo_M_N = mkN "umbo" "umbonis " masculine ; -- [XXXDX] :: boss (of a shield); + umbo_M_N = mkN "umbo" "umbonis" masculine ; -- [XXXDX] :: boss (of a shield); umbra_F_N = mkN "umbra" ; -- [XXXBX] :: shade; ghost; shadow; umbraclum_N_N = mkN "umbraclum" ; -- [XXXCO] :: shelter/shade; protection from sun; parasol/umbrella; shady retreat/bower/arbor; umbraculum_N_N = mkN "umbraculum" ; -- [XXXCO] :: shelter/shade; protection from sun; parasol/umbrella; shady retreat/bower/arbor; @@ -36313,18 +36302,18 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat umectus_A = mkA "umectus" "umecta" "umectum" ; -- [XXXEC] :: moist; umens_A = mkA "umens" "umentis"; -- [XXXDX] :: moist, wet; 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; + 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; 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; - umor_M_N = mkN "umor" "umoris " masculine ; -- [XXXDX] :: moisture, liquid; + umor_M_N = mkN "umor" "umoris" masculine ; -- [XXXDX] :: moisture, liquid; umquam_Adv = mkAdv "umquam" ; -- [XXXAX] :: ever, at any time; una_Adv = mkAdv "una" ; -- [XXXBX] :: together, together with; at the same time; along with; unanimans_A = mkA "unanimans" "unanimantis"; -- [XXXES] :: of one mind; in full agreement; unanimis_A = mkA "unanimis" "unanimis" "unanime" ; -- [XXXCO] :: acting in accord; sharing a single purpose; harmonious (L+S); unanimous; - unanimitas_F_N = mkN "unanimitas" "unanimitatis " feminine ; -- [XXXEO] :: unity/unanimity of purpose, concord; + unanimitas_F_N = mkN "unanimitas" "unanimitatis" feminine ; -- [XXXEO] :: unity/unanimity of purpose, concord; unanimiter_Adv = mkAdv "unanimiter" ; -- [DXXES] :: unanimously; harmoniously; cordially; unanimus_A = mkA "unanimus" "unanima" "unanimum" ; -- [XXXCO] :: acting in accord; sharing a single purpose; harmonious (L+S); unanimous; uncia_F_N = mkN "uncia" ; -- [XXXDX] :: twelfth part, twelfth; ounce; inch; @@ -36335,10 +36324,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat uncinulus_M_N = mkN "uncinulus" ; -- [GXXEK] :: staple; uncinus_M_N = mkN "uncinus" ; -- [XXXEO] :: hook; (as door fastening); unciola_F_N = mkN "unciola" ; -- [XXXES] :: little ounce; a small twelfth; - unctio_F_N = mkN "unctio" "unctionis " feminine ; -- [XXXCO] :: anointing/unction; (w/sign of cross); besmearing; (w/ointment/oil); ointment; + unctio_F_N = mkN "unctio" "unctionis" feminine ; -- [XXXCO] :: anointing/unction; (w/sign of cross); besmearing; (w/ointment/oil); ointment; unctito_V2 = mkV2 (mkV "unctitare") ; -- [XEXCS] :: anoint often; unctiusculus_A = mkA "unctiusculus" "unctiuscula" "unctiusculum" ; -- [XXXES] :: somewhat unctuous; sort of oily; - unctor_M_N = mkN "unctor" "unctoris " masculine ; -- [XEXES] :: anointer; one who anoints; + unctor_M_N = mkN "unctor" "unctoris" masculine ; -- [XEXES] :: anointer; one who anoints; unctus_A = mkA "unctus" "uncta" "unctum" ; -- [XXXDX] :: oily, greasy; anointed, oiled; uncus_A = mkA "uncus" "unca" "uncum" ; -- [XXXDX] :: hooked, curved, bent in, crooked, round; barbed; uncus_M_N = mkN "uncus" ; -- [XXXDX] :: hook, barb, clamp; hook in neck used to drag condemned/executed criminals; @@ -36351,31 +36340,31 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat undisonus_A = mkA "undisonus" "undisona" "undisonum" ; -- [XXXEC] :: resounding with waves; undo_V = mkV "undare" ; -- [XXXBO] :: surge/flood/rise in waves; gush/well up; run, stream; billow; undulate; waver; undosus_A = mkA "undosus" "undosa" "undosum" ; -- [XXXDX] :: abounding in waves, flowing water, etc; - undulatio_F_N = mkN "undulatio" "undulationis " feminine ; -- [GXXEK] :: curling; + undulatio_F_N = mkN "undulatio" "undulationis" feminine ; -- [GXXEK] :: curling; 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; + 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; unguentatus_A = mkA "unguentatus" "unguentata" "unguentatum" ; -- [XXXDX] :: anointed or greased with ointments; unguentum_N_N = mkN "unguentum" ; -- [XXXDX] :: oil, ointment; ungueo_V2 = mkV2 (mkV "unguere") ; -- [EXXFW] :: anoint/rub (w/oil/unguent); smear with oil/grease; dress (food w/oil); add oil; unguiculus_M_N = mkN "unguiculus" ; -- [XXXEC] :: finger or toe-nail; - unguis_M_N = mkN "unguis" "unguis " masculine ; -- [XXXBX] :: nail, claw, talon; + 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; + 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; unicaulis_A = mkA "unicaulis" "unicaulis" "unicaule" ; -- [DAXNS] :: single-stalked (Pliny); unice_Adv = mkAdv "unice" ; -- [XXXDX] :: to a singular degree; especially; unicellularis_A = mkA "unicellularis" "unicellularis" "unicellulare" ; -- [HSXEK] :: unicellular; - unicitas_F_N = mkN "unicitas" "unicitatis " feminine ; -- [GXXEK] :: uniqueness; + unicitas_F_N = mkN "unicitas" "unicitatis" feminine ; -- [GXXEK] :: uniqueness; unicolor_A = mkA "unicolor" "unicoloris"; -- [XXXEC] :: of one color; unicornis_A = mkA "unicornis" "unicornis" "unicorne" ; -- [XAXNO] :: one-horned, having a single horn; - unicornis_M_N = mkN "unicornis" "unicornis " masculine ; -- [EYXEE] :: unicorn, one-horned horse-like creature; + unicornis_M_N = mkN "unicornis" "unicornis" masculine ; -- [EYXEE] :: unicorn, one-horned horse-like creature; unicornuus_M_N = mkN "unicornuus" ; -- [EYXEE] :: unicorn, one-horned horse-like creature; unicus_A = mkA "unicus" "unica" "unicum" ; -- [XXXAX] :: only, sole, single, singular, unique; uncommon, unparalleled; one of a kind; unifico_V = mkV "unificare" ; -- [FXXEM] :: unify; @@ -36385,9 +36374,9 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat unigena_F_N = mkN "unigena" ; -- [XXXDX] :: one sharing a single parentage, i.e. brother or sister; 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; + 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; @@ -36395,7 +36384,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; - universitas_F_N = mkN "universitas" "universitatis " feminine ; -- [GXXEK] :: |university; + universitas_F_N = mkN "universitas" "universitatis" feminine ; -- [GXXEK] :: |university; universus_A = mkA "universus" "universa" "universum" ; -- [XXXAX] :: whole, entire; all together; all; universal; universus_M_N = mkN "universus" ; -- [XXXDX] :: whole world; all men (pl.), everybody, the mass; [in universum => in general]; univira_F_N = mkN "univira" ; -- [ELXES] :: one-husband woman; woman married only once; @@ -36407,32 +36396,32 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; 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; + 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; urbanicianus_A = mkA "urbanicianus" "urbaniciana" "urbanicianum" ; -- [XWXFS] :: city-garrisoned; - urbanitas_F_N = mkN "urbanitas" "urbanitatis " feminine ; -- [XXXDX] :: city living, city life/manners, life in Rome; sophistication, polish, wit; + urbanitas_F_N = mkN "urbanitas" "urbanitatis" feminine ; -- [XXXDX] :: city living, city life/manners, life in Rome; sophistication, polish, wit; urbanus_A = mkA "urbanus" "urbana" "urbanum" ; -- [XXXDX] :: of the city; courteous; witty, urbane; urbanus_M_N = mkN "urbanus" ; -- [XXXDX] :: city wit, urbane man; urbicapus_M_N = mkN "urbicapus" ; -- [XWXES] :: city-taker; one who takes cities; urbicarius_A = mkA "urbicarius" "urbicaria" "urbicarium" ; -- [EXXES] :: of/belonging to the city; - urbs_F_N = mkN "urbs" "urbis " feminine ; -- [XXXAX] :: city; City of Rome; + urbs_F_N = mkN "urbs" "urbis" feminine ; -- [XXXAX] :: city; City of Rome; urceolaris_A = mkA "urceolaris" "urceolaris" "urceolare" ; -- [XXXFS] :: pitcher-; of pitchers; urceolus_M_N = mkN "urceolus" ; -- [XXXEC] :: small jug or pitcher; 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; + uredo_F_N = mkN "uredo" "uredinis" feminine ; -- [XAXCO] :: blight/scorching on plants from frost; burning sensation; 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; - urinatio_F_N = mkN "urinatio" "urinationis " feminine ; -- [GXXEK] :: diving; - urinator_M_N = mkN "urinator" "urinatoris " masculine ; -- [XXXDX] :: diver; + urinatio_F_N = mkN "urinatio" "urinationis" feminine ; -- [GXXEK] :: diving; + urinator_M_N = mkN "urinator" "urinatoris" masculine ; -- [XXXDX] :: diver; 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; + 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; @@ -36444,46 +36433,46 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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); ustilo_V2 = mkV2 (mkV "ustilare") ; -- [XXXEO] :: scorch, char, burn partially; frost nip; cause to smart/tingle; - ustio_F_N = mkN "ustio" "ustionis " feminine ; -- [DXXFS] :: burning; searing; - ustor_M_N = mkN "ustor" "ustoris " masculine ; -- [XXXES] :: corpse-burner; cremator; + ustio_F_N = mkN "ustio" "ustionis" feminine ; -- [DXXFS] :: burning; searing; + ustor_M_N = mkN "ustor" "ustoris" masculine ; -- [XXXES] :: corpse-burner; cremator; ustrina_F_N = mkN "ustrina" ; -- [XXXFS] :: burning; place of burning; 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; + 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); + 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; + usus_M_N = mkN "usus" "usus" masculine ; -- [XXXAX] :: use, enjoyment; experience, skill, advantage; custom; 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; utensilis_A = mkA "utensilis" "utensilis" "utensile" ; -- [XXXCO] :: useful, utile, that can be made use of; uter_A = mkA "uter" "utra" "utrum" ; -- [XXXAO] :: |(w/que) each/either (of two); both (separately); each side (pl.), each set; - uter_M_N = mkN "uter" "utris " masculine ; -- [XXXDS] :: skin; wine/water skin; bag/bottle made of skin/hide; (inflated for flotation); - uter_N_N = mkN "uter" "utris " neuter ; -- [XXXDS] :: skin; wine/water skin; bag/bottle made of skin/hide; (inflated for flotation); + uter_M_N = mkN "uter" "utris" masculine ; -- [XXXDS] :: skin; wine/water skin; bag/bottle made of skin/hide; (inflated for flotation); + 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 = 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; + utilitas_F_N = mkN "utilitas" "utilitatis" feminine ; -- [XXXBX] :: usefulness, advantage; utiliter_Adv =mkAdv "utiliter" "utilius" "utilissime" ; -- [XXXCO] :: usefully/profitably/to advantage; interestedly; validly/effectively/practically; utillimus_A = mkA "utillimus" "utillima" "utillimum" ; -- [XXXFX] :: useful; utinam_Adv = mkAdv "utinam" ; -- [XXXBX] :: if only, would that; utique_Adv = mkAdv "utique" ; -- [XXXDX] :: certainly, by all means; at any rate; utlagaria_F_N = mkN "utlagaria" ; -- [FLXFJ] :: outlawry; - utlagatio_F_N = mkN "utlagatio" "utlagationis " feminine ; -- [FLXFJ] :: outlawry; + 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); + 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; @@ -36503,21 +36492,21 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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 = mkConj "utrumnam" missing ; -- [EXXFP] :: whether; (Vulgate 1 Samuel 10:22); - utut_Conj = mkConj "utut" missing ; -- [XXXCO] :: however; in whatever way; + utut_Conj = mkConj "utut" missing ; -- [XXXCO] :: however; in whatever way; uva_F_N = mkN "uva" ; -- [XXXBX] :: grape; 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; - uxor_F_N = mkN "uxor" "uxoris " feminine ; -- [XXXBO] :: wife; [uxorem ducere => marry, bring home as wife]; + uvor_M_N = mkN "uvor" "uvoris" masculine ; -- [XXXFO] :: moisture; moistness (L+S); humidity; wetness (Ecc); dampness; + uxor_F_N = mkN "uxor" "uxoris" feminine ; -- [XXXBO] :: wife; [uxorem ducere => marry, bring home as wife]; uxorcula_F_N = mkN "uxorcula" ; -- [XXXFS] :: little wife; (literally and endearing); uxorculo_V = mkV "uxorculare" ; -- [XXXFO] :: play the part of a wife; uxorium_N_N = mkN "uxorium" ; -- [XXXEO] :: old-bachelor tax; potions (pl.) to cause fondness for a wife; (Viagra?); uxorius_A = mkA "uxorius" "uxoria" "uxorium" ; -- [XXXCO] :: of or belonging to a wife; of marriage; excessively fond of one's wife; va_Interj = ss "va" ; -- [DXXCO] :: Ha!/oh!/ah!; (exclamation of pain/dismay, of contempt/anger, of surprise/joy); - vacatio_F_N = mkN "vacatio" "vacationis " feminine ; -- [XXXDX] :: freedom, exemption; privilege; + vacatio_F_N = mkN "vacatio" "vacationis" feminine ; -- [XXXDX] :: freedom, exemption; privilege; vacca_F_N = mkN "vacca" ; -- [XAXCO] :: cow; - vaccinatio_F_N = mkN "vaccinatio" "vaccinationis " feminine ; -- [GBXEK] :: vaccination; + vaccinatio_F_N = mkN "vaccinatio" "vaccinationis" feminine ; -- [GBXEK] :: vaccination; vaccinium_N_N = mkN "vaccinium" ; -- [GAXEK] :: huckleberry; vaccinum_N_N = mkN "vaccinum" ; -- [GBXEK] :: vaccine; (from a cow/vacca); vaccinus_A = mkA "vaccinus" "vaccina" "vaccinum" ; -- [XAXEO] :: cow-; of/derived from a cow; @@ -36529,8 +36518,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; @@ -36549,14 +36538,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat vage_Adv = mkAdv "vage" ; -- [XXXDX] :: so as to move in different directions over a wide area; vagina_F_N = mkN "vagina" ; -- [XXXDX] :: sheath, scabbard; vagio_V2 = mkV2 (mkV "vagire" "vagio" "vagivi" nonExist ) ; -- [XXXDX] :: utter cries of distress, wail, squall; - vagitus_M_N = mkN "vagitus" "vagitus " masculine ; -- [XXXDX] :: crying; + 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; + 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; @@ -36566,18 +36555,18 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + valetudo_F_N = mkN "valetudo" "valetudinis" feminine ; -- [XXXBX] :: good health, soundness; condition of body/health; illness, indisposition; valgus_A = mkA "valgus" "valga" "valgum" ; -- [XBXEO] :: knock-kneed, having legs converging at the knee and diverging below; validus_A = mkA "validus" "valida" "validum" ; -- [XXXAX] :: strong, powerful; valid; - valitudo_F_N = mkN "valitudo" "valitudinis " feminine ; -- [XXXDX] :: good health, soundness; condition of body/health; illness, indisposition; + valitudo_F_N = mkN "valitudo" "valitudinis" feminine ; -- [XXXDX] :: good health, soundness; condition of body/health; illness, indisposition; vallaris_A = mkA "vallaris" "vallaris" "vallare" ; -- [XXXDX] :: of a rampart/corona; of the first soldier to scale an enemy rampart (vallum); - vallaris_F_N = mkN "vallaris" "vallaris " feminine ; -- [XXXDX] :: crown/garland awarded to first soldier to scale an enemy rampart (vallum); - valles_F_N = mkN "valles" "vallis " feminine ; -- [XXXBX] :: valley, vale, hollow; - vallis_F_N = mkN "vallis" "vallis " feminine ; -- [XXXDX] :: valley, vale, hollow; + vallaris_F_N = mkN "vallaris" "vallaris" feminine ; -- [XXXDX] :: crown/garland awarded to first soldier to scale an enemy rampart (vallum); + valles_F_N = mkN "valles" "vallis" feminine ; -- [XXXBX] :: valley, vale, hollow; + vallis_F_N = mkN "vallis" "vallis" feminine ; -- [XXXDX] :: valley, vale, hollow; vallo_V = mkV "vallare" ; -- [XXXDX] :: surround/fortify/furnish (camp, etc) with a palisaded rampart; vallum_N_N = mkN "vallum" ; -- [XXXBX] :: wall, rampart; entrenchment, line of palisades, stakes; vallus_M_N = mkN "vallus" ; -- [XXXDX] :: stake, palisade, point, post, pole; - valor_M_N = mkN "valor" "valoris " masculine ; -- [XXXDX] :: valor; + 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; vanesco_V = mkV "vanescere" "vanesco" nonExist nonExist ; -- [XXXDX] :: vanish, fade, disappear; @@ -36586,81 +36575,81 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + vanitas_F_N = mkN "vanitas" "vanitatis" feminine ; -- [XXXDX] :: emptiness, untruthfulness; futility, foolishness, empty pride; vannus_M_N = mkN "vannus" ; -- [XXXDX] :: winnowing basket; vanus_A = mkA "vanus" "vana" "vanum" ; -- [XXXBX] :: empty, vain; false, untrustworthy; vapide_Adv = mkAdv "vapide" ; -- [XXXFO] :: in a flat/vapid manner; [vapide se habere => be poorly - Augustus]; vapidus_A = mkA "vapidus" "vapida" "vapidum" ; -- [XXXDO] :: flat, vapid; that has lost its freshness (of wine); - vapor_M_N = mkN "vapor" "vaporis " masculine ; -- [DXXDS] :: |sound; cry; + vapor_M_N = mkN "vapor" "vaporis" masculine ; -- [DXXDS] :: |sound; cry; vaporarium_N_N = mkN "vaporarium" ; -- [XTXES] :: room for circulating steam heating bath suite; steam-pipe (for baths L+S); vaporarius_A = mkA "vaporarius" "vaporaria" "vaporarium" ; -- [GXXEK] :: steam-powered; vaporo_V = mkV "vaporare" ; -- [XXXDX] :: cover or fill with vapor; heat, warm; be hot; vappa_F_N = mkN "vappa" ; -- [XXXDX] :: flat wine, wine that has gone flat; vappa_M_N = mkN "vappa" ; -- [XXXDX] :: worthless person; good-for-nothing; - vapulatio_F_N = mkN "vapulatio" "vapulationis " feminine ; -- [FXXEM] :: flogging; threshing; - vapulator_M_N = mkN "vapulator" "vapulatoris " masculine ; -- [FXXEM] :: flogger; thresher; + vapulatio_F_N = mkN "vapulatio" "vapulationis" feminine ; -- [FXXEM] :: flogging; threshing; + vapulator_M_N = mkN "vapulator" "vapulatoris" masculine ; -- [FXXEM] :: flogger; thresher; vapulo_V = mkV "vapulare" ; -- [XXXDX] :: be beaten; vapulus_A = mkA "vapulus" "vapula" "vapulum" ; -- [FXXEN] :: flogged, beaten; knocked about; variabilis_A = mkA "variabilis" "variabilis" "variabile" ; -- [DXXES] :: variable, changeable; variantia_F_N = mkN "variantia" ; -- [XXXDX] :: diversity, variety; varianus_A = mkA "varianus" "variana" "varianum" ; -- [XXXFS] :: diverse-colored; variegated (Pliny); of Varus; - variatio_F_N = mkN "variatio" "variationis " feminine ; -- [XXXDX] :: divergence of behavior; + variatio_F_N = mkN "variatio" "variationis" feminine ; -- [XXXDX] :: divergence of behavior; varico_V = mkV "varicare" ; -- [XXXFS] :: straddle (with legs apart); varicosus_A = mkA "varicosus" "varicosa" "varicosum" ; -- [XXXFS] :: varicose; full of dilated veins; varicus_A = mkA "varicus" "varica" "varicum" ; -- [XXXDX] :: straddling; - varietas_F_N = mkN "varietas" "varietatis " feminine ; -- [XXXBX] :: variety, difference; mottled appearance; + varietas_F_N = mkN "varietas" "varietatis" feminine ; -- [XXXBX] :: variety, difference; mottled appearance; vario_V = mkV "variare" ; -- [XXXBX] :: mark with contrasting colors, variegate; vary, waver; fluctuate, change; varius_A = mkA "varius" "varia" "varium" ; -- [XXXAX] :: different; various, diverse; changing; colored; party colored, variegated; - varix_F_N = mkN "varix" "varicis " feminine ; -- [XBXEC] :: varicose vein; - varix_M_N = mkN "varix" "varicis " masculine ; -- [XBXEC] :: varicose vein; + varix_F_N = mkN "varix" "varicis" feminine ; -- [XBXEC] :: varicose vein; + varix_M_N = mkN "varix" "varicis" masculine ; -- [XBXEC] :: varicose vein; varus_A = mkA "varus" "vara" "varum" ; -- [XXXDX] :: bent-outwards; bandy; bow-legged; contrasting; - vas_M_N = mkN "vas" "vadis " masculine ; -- [XLXCO] :: one who guarantees court appearance of defendant; surety; bail (L+S); - vas_N_N = mkN "vas" "vasis " neuter ; -- [XXXAO] :: vessel/dish; vase; pack/kit; utensil/instrument/tool; equipment/apparatus (pl.); + vas_M_N = mkN "vas" "vadis" masculine ; -- [XLXCO] :: one who guarantees court appearance of defendant; surety; bail (L+S); + vas_N_N = mkN "vas" "vasis" neuter ; -- [XXXAO] :: vessel/dish; vase; pack/kit; utensil/instrument/tool; equipment/apparatus (pl.); vasarium_N_N = mkN "vasarium" ; -- [XXXEC] :: outfit allowance; vascularius_M_N = mkN "vascularius" ; -- [XXXEC] :: maker of vessels, esp. in metal; vasculum_N_N = mkN "vasculum" ; -- [XXXCO] :: small vessel/container/vase; (seed) capsule, calyx; instrument, tool; penis; vassallus_M_N = mkN "vassallus" ; -- [FXXEM] :: vassal; servant; - vastatio_F_N = mkN "vastatio" "vastationis " feminine ; -- [XXXDX] :: laying waste, ravaging; - vastator_M_N = mkN "vastator" "vastatoris " masculine ; -- [XXXDX] :: destroyer, ravager; + vastatio_F_N = mkN "vastatio" "vastationis" feminine ; -- [XXXDX] :: laying waste, ravaging; + vastator_M_N = mkN "vastator" "vastatoris" masculine ; -- [XXXDX] :: destroyer, ravager; vastificus_A = mkA "vastificus" "vastifica" "vastificum" ; -- [XXXEC] :: devastating; - vastitas_F_N = mkN "vastitas" "vastitatis " feminine ; -- [XXXDX] :: desolation; devastation; - vastities_F_N = mkN "vastities" "vastitiei " feminine ; -- [XXXDS] :: ruin; destruction; + 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; 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); - vaticinatio_F_N = mkN "vaticinatio" "vaticinationis " feminine ; -- [XEXDO] :: prophecy, prediction; - vaticinator_M_N = mkN "vaticinator" "vaticinatoris " masculine ; -- [XEXFO] :: prophet; seer; + vates_M_N = mkN "vates" "vatis" masculine ; -- [XXXBO] :: prophet/seer, mouthpiece of deity; oracle, soothsayer; poet (divinely inspired); + vaticinatio_F_N = mkN "vaticinatio" "vaticinationis" feminine ; -- [XEXDO] :: prophecy, prediction; + vaticinator_M_N = mkN "vaticinator" "vaticinatoris" masculine ; -- [XEXFO] :: prophet; seer; vaticinium_N_N = mkN "vaticinium" ; -- [FEXFS] :: prediction; prophecy; vaticinius_A = mkA "vaticinius" "vaticinia" "vaticinium" ; -- [XEXES] :: prophetic, vatic; revealing future by divine inspiration; vaticinor_V = mkV "vaticinari" ; -- [XEXCO] :: prophesy; utter inspired predictions/warnings; rave, talk wildly; vaticinus_A = mkA "vaticinus" "vaticina" "vaticinum" ; -- [XEXEO] :: prophetic, vatic; revealing future by divine inspiration; vatillum_N_N = mkN "vatillum" ; -- [XXXES] :: shovel; fire/coal/dirt/dung shovel; chafing dish, fire/fumigating/incense pan; - vatis_F_N = mkN "vatis" "vatis " feminine ; -- [XXXBO] :: prophetess/ mouthpiece of deity; oracle/soothsayer; poetess (divinely inspired); + 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; 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); + 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; - vectigal_N_N = mkN "vectigal" "vectigalis " neuter ; -- [XXXDX] :: tax, tribute, revenue; + vectigal_N_N = mkN "vectigal" "vectigalis" neuter ; -- [XXXDX] :: tax, tribute, revenue; vectigalis_A = mkA "vectigalis" "vectigalis" "vectigale" ; -- [XXXDX] :: yielding taxes, subject to taxation; - vectio_F_N = mkN "vectio" "vectionis " feminine ; -- [XXXDS] :: conveyance; transport; - vectis_M_N = mkN "vectis" "vectis " masculine ; -- [XXXDX] :: crowbar, lever; + vectio_F_N = mkN "vectio" "vectionis" feminine ; -- [XXXDS] :: conveyance; transport; + vectis_M_N = mkN "vectis" "vectis" masculine ; -- [XXXDX] :: crowbar, lever; vecto_V2 = mkV2 (mkV "vectare") ; -- [XXXCO] :: transport, carry; (of habitual agent/means); (PASS) ride, be conveyed, travel; - vector_M_N = mkN "vector" "vectoris " masculine ; -- [XXXDX] :: passenger; one that carries or transports; + vector_M_N = mkN "vector" "vectoris" masculine ; -- [XXXDX] :: passenger; one that carries or transports; vectorius_A = mkA "vectorius" "vectoria" "vectorium" ; -- [XXXDX] :: for carrying; [vectorium navigium => transport/cargo ship]; vectura_F_N = mkN "vectura" ; -- [XXXDX] :: transportation, carriage; vegeo_V = mkV "vegere" ; -- [XXXEC] :: stir up, excite; vegetabilis_A = mkA "vegetabilis" "vegetabilis" "vegetabile" ; -- [FXXEM] :: vegetative; capable of growth; vegetabiliter_Adv = mkAdv "vegetabiliter" ; -- [FXXEN] :: vigorously; - vegetale_N_N = mkN "vegetale" "vegetalis " neuter ; -- [GAXEK] :: plant; + vegetale_N_N = mkN "vegetale" "vegetalis" neuter ; -- [GAXEK] :: plant; vegetalis_A = mkA "vegetalis" "vegetalis" "vegetale" ; -- [GAXEK] :: plant-like; vegetarianus_A = mkA "vegetarianus" "vegetariana" "vegetarianum" ; -- [GXXEK] :: vegetarian; - vegetatio_F_N = mkN "vegetatio" "vegetationis " feminine ; -- [FXXEM] :: power of growth; vegetation (Cal); + 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; vegetus_A = mkA "vegetus" ; -- [XXXBO] :: vigorous, active, energetic; invigorating; lively, bright, vivid, quick; @@ -36668,20 +36657,20 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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 = 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); + 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); - veles_M_N = mkN "veles" "velitis " masculine ; -- [XXXDX] :: light-armed foot-soldier; guerrilla forces (pl.), irregular bands; skirmishers; + veles_M_N = mkN "veles" "velitis" masculine ; -- [XXXDX] :: light-armed foot-soldier; guerrilla forces (pl.), irregular bands; skirmishers; velifer_A = mkA "velifer" "velifera" "veliferum" ; -- [XXXDX] :: carrying a sail; - velificatio_F_N = mkN "velificatio" "velificationis " feminine ; -- [XWXEC] :: sailing; - velificator_M_N = mkN "velificator" "velificatoris " masculine ; -- [GXXEK] :: sailor; + velificatio_F_N = mkN "velificatio" "velificationis" feminine ; -- [XWXEC] :: sailing; + velificator_M_N = mkN "velificator" "velificatoris" masculine ; -- [GXXEK] :: sailor; velifico_V = mkV "velificare" ; -- [XWXCO] :: sail (ship); operate sails; set/direct course; direct effort towards, work for; velificor_V = mkV "velificari" ; -- [XWXDO] :: sail (ship); operate sails; set/direct course; direct effort towards, work for; velitaris_A = mkA "velitaris" "velitaris" "velitare" ; -- [XXXDX] :: of or belonging to the velites (guerrilla forces); - velitatio_F_N = mkN "velitatio" "velitationis " feminine ; -- [XXXES] :: skirmishing; bickering, wrangling (Nelson); + velitatio_F_N = mkN "velitatio" "velitationis" feminine ; -- [XXXES] :: skirmishing; bickering, wrangling (Nelson); velitor_V = mkV "velitari" ; -- [XXXFS] :: skirmish; fight like light troops (velites); velivolans_A = mkA "velivolans" "velivolantis"; -- [XWXEC] :: flying with sails; velivolum_N_N = mkN "velivolum" ; -- [HTXEK] :: glider; @@ -36691,10 +36680,10 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + velocitas_F_N = mkN "velocitas" "velocitatis" feminine ; -- [XXXDX] :: speed, swiftness; velocity; velociter_Adv =mkAdv "velociter" "velocius" "velocissime" ; -- [XXXCO] :: swiftly/rapidly, with speed of movement; quickly, in a short time; velox_A = mkA "velox" "velocis"; -- [XXXBX] :: swift, quick, fleet, rapid, speedy; velum_N_N = mkN "velum" ; -- [XXXBX] :: sail, covering; curtain; [vela vento dare => sail away]; @@ -36706,21 +36695,21 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat venalicius_A = mkA "venalicius" "venalicia" "venalicium" ; -- [XXXDX] :: for sale; venalicius_M_N = mkN "venalicius" ; -- [XXXDX] :: slave dealer; venalis_A = mkA "venalis" "venalis" "venale" ; -- [XXXDX] :: for sale; (that is) on hire; open to the influence of bribes; - venalitas_F_N = mkN "venalitas" "venalitatis " feminine ; -- [DLXES] :: corruptibility; venality; capability of being bought (by bribes); + venalitas_F_N = mkN "venalitas" "venalitatis" feminine ; -- [DLXES] :: corruptibility; venality; capability of being bought (by bribes); venaticus_A = mkA "venaticus" "venatica" "venaticum" ; -- [XXXDX] :: for hunting; - venatio_F_N = mkN "venatio" "venationis " feminine ; -- [XXXDX] :: hunting; the chase; - venator_M_N = mkN "venator" "venatoris " masculine ; -- [XXXBX] :: hunter; + venatio_F_N = mkN "venatio" "venationis" feminine ; -- [XXXDX] :: hunting; the chase; + venator_M_N = mkN "venator" "venatoris" masculine ; -- [XXXBX] :: hunter; venatorius_A = mkA "venatorius" "venatoria" "venatorium" ; -- [XXXDS] :: hunter's; of a hunter; - venatrix_F_N = mkN "venatrix" "venatricis " feminine ; -- [XXXDX] :: huntress; - venatus_M_N = mkN "venatus" "venatus " masculine ; -- [XXXDX] :: hunting, hunt; + venatrix_F_N = mkN "venatrix" "venatricis" feminine ; -- [XXXDX] :: huntress; + venatus_M_N = mkN "venatus" "venatus" masculine ; -- [XXXDX] :: hunting, hunt; vendibilis_A = mkA "vendibilis" "vendibilis" "vendibile" ; -- [XXXDX] :: that can (easily) be sold, marketable; vendico_V = mkV "vendicare" ; -- [XXXES] :: claim, vindicate; punish, avenge; (alternative spelling of vindico); - venditatio_F_N = mkN "venditatio" "venditationis " feminine ; -- [XXXDS] :: showing-off; specious display; boasting; - venditio_F_N = mkN "venditio" "venditionis " feminine ; -- [XXXCO] :: sale, action/process of selling; document recording a sale; + venditatio_F_N = mkN "venditatio" "venditationis" feminine ; -- [XXXDS] :: showing-off; specious display; boasting; + venditio_F_N = mkN "venditio" "venditionis" feminine ; -- [XXXCO] :: sale, action/process of selling; document recording a sale; 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; + 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; @@ -36730,24 +36719,24 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat veneno_V = mkV "venenare" ; -- [XXXDX] :: imbue or infect with poison; injure by slander; venenum_N_N = mkN "venenum" ; -- [XXXBX] :: poison; drug; 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; + veneo_2_V = mkV "venire" "veneo" "veniii" "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; - veneratio_F_N = mkN "veneratio" "venerationis " feminine ; -- [XXXDX] :: veneration, reverence, worship; - venerator_M_N = mkN "venerator" "veneratoris " masculine ; -- [XXXDX] :: one who reveres; + veneratio_F_N = mkN "veneratio" "venerationis" feminine ; -- [XXXDX] :: veneration, reverence, worship; + venerator_M_N = mkN "venerator" "veneratoris" masculine ; -- [XXXDX] :: one who reveres; venero_V = mkV "venerare" ; -- [XXXDX] :: adore, revere, do homage to, honor, venerate; worship; beg, pray, entreat; veneror_V = mkV "venerari" ; -- [XXXBX] :: adore, revere, do homage to, honor, venerate; worship; beg, pray, entreat; venetum_N_N = mkN "venetum" ; -- [XXXDO] :: blue; (racing faction/team of Roman circus); 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; + 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; ventagium_N_N = mkN "ventagium" ; -- [FXXEN] :: winnowing; - venter_M_N = mkN "venter" "ventris " masculine ; -- [XXXAX] :: stomach, womb; belly; + venter_M_N = mkN "venter" "ventris" masculine ; -- [XXXAX] :: stomach, womb; belly; ventilabrum_N_N = mkN "ventilabrum" ; -- [XXXEO] :: winnowing-shovel; ventilagium_N_N = mkN "ventilagium" ; -- [FXXEM] :: window, louver; ventilatrum_N_N = mkN "ventilatrum" ; -- [GXXEK] :: ventilator; fan; @@ -36763,26 +36752,26 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat venum_N_N = mkN "venum" ; -- [XXXCO] :: sale, purchase; (only sg. ACC/DAT w/dare); [venum dare => put up for sale]; venumdo_V2 = mkV2 (mkV "venumdare") ; -- [XXXCO] :: sell; offer for sale; venundo_V2 = mkV2 (mkV "venundare") ; -- [XXXCO] :: sell; offer for sale; - venus_M_N = mkN "venus" "venus " masculine ; -- [XXXCO] :: sale, purchase; (only sg. ACC/DAT w/dare); [venui dare => put up for sale]; - venustas_F_N = mkN "venustas" "venustatis " feminine ; -- [XXXBO] :: attractiveness, charm, grace; luck in love; delightful conditions (pl.); + venus_M_N = mkN "venus" "venus" masculine ; -- [XXXCO] :: sale, purchase; (only sg. ACC/DAT w/dare); [venui dare => put up for sale]; + venustas_F_N = mkN "venustas" "venustatis" feminine ; -- [XXXBO] :: attractiveness, charm, grace; luck in love; delightful conditions (pl.); venuste_Adv =mkAdv "venuste" "venustius" "venustissime" ; -- [XXXCO] :: charmingly, attractively, gracefully; in a charming/attractive manner; venusto_V2 = mkV2 (mkV "venustare") ; -- [XXXDS] :: make lovely/attractive; beautify; adorn; venustulus_A = mkA "venustulus" "venustula" "venustulum" ; -- [XXXDS] :: charming; delightful; venustus_A = mkA "venustus" "venusta" "venustum" ; -- [XXXBO] :: attractive, charming, graceful, pretty, neat; vepallidus_A = mkA "vepallidus" "vepallida" "vepallidum" ; -- [XXXDX] :: deathly pale; veprecula_F_N = mkN "veprecula" ; -- [XXXEC] :: thorn-bush; - vepris_M_N = mkN "vepris" "vepris " masculine ; -- [XXXDX] :: thorn-bush; - ver_N_N = mkN "ver" "veris " neuter ; -- [XXXBO] :: spring; spring-time of life, youth; [ver sacrum => sacrifice of spring-born]; + vepris_M_N = mkN "vepris" "vepris" masculine ; -- [XXXDX] :: thorn-bush; + ver_N_N = mkN "ver" "veris" neuter ; -- [XXXBO] :: spring; spring-time of life, youth; [ver sacrum => sacrifice of spring-born]; veraciter_Adv = mkAdv "veraciter" ; -- [XXXCS] :: truly; in truth, truthfully; really; veratrum_N_N = mkN "veratrum" ; -- [XAXEC] :: hellebore; (poisonous winter plant); verax_A = mkA "verax" "veracis"; -- [XXXCO] :: speaking the truth, truthful (people); conveying the truth (things); verbatim_Adv = mkAdv "verbatim" ; -- [GXXEK] :: literally, word to word; verbena_F_N = mkN "verbena" ; -- [XXXDX] :: leafy branch/twig from aromatic trees/shrubs (religious/medicinal purposes); verbeneca_F_N = mkN "verbeneca" ; -- [XBXNS] :: vervain (plant); - verber_N_N = mkN "verber" "verberis " neuter ; -- [XXXBX] :: lash, whip; blows (pl.), a beating, flogging; + verber_N_N = mkN "verber" "verberis" neuter ; -- [XXXBX] :: lash, whip; blows (pl.), a beating, flogging; verberabilis_A = mkA "verberabilis" "verberabilis" "verberabile" ; -- [XXXDS] :: flogging-worthy; worthy of being beaten; - verberatus_M_N = mkN "verberatus" "verberatus " masculine ; -- [XXXES] :: beating; chastisement (Vulgate); - verbero_M_N = mkN "verbero" "verberonis " masculine ; -- [XXXDX] :: scoundrel; + verberatus_M_N = mkN "verberatus" "verberatus" masculine ; -- [XXXES] :: beating; chastisement (Vulgate); + verbero_M_N = mkN "verbero" "verberonis" masculine ; -- [XXXDX] :: scoundrel; verbero_V = mkV "verberare" ; -- [XXXAX] :: beat, strike, lash; verbosus_A = mkA "verbosus" "verbosa" "verbosum" ; -- [XXXDX] :: verbose; copious; verbum_N_N = mkN "verbum" ; -- [XXXAX] :: word; proverb; [verba dare alicui => cheat/deceive someone]; @@ -36805,28 +36794,28 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat verifico_V2 = mkV2 (mkV "verificare") ; -- [FSXEF] :: verify, confirm the truth/authenticity of; show to be true by evidence; veriloquium_N_N = mkN "veriloquium" ; -- [XXXEC] :: etymology; verisimilis_A = mkA "verisimilis" "verisimilis" "verisimile" ; -- [XXXDX] :: having appearance of truth; - verisimilitudo_F_N = mkN "verisimilitudo" "verisimilitudinis " feminine ; -- [XXXDX] :: true likeness; verisimilitude; - veritas_F_N = mkN "veritas" "veritatis " feminine ; -- [XXXAO] :: |reality, that which is real; real life, actuality; true nature; correctness; + verisimilitudo_F_N = mkN "verisimilitudo" "verisimilitudinis" feminine ; -- [XXXDX] :: true likeness; verisimilitude; + veritas_F_N = mkN "veritas" "veritatis" feminine ; -- [XXXAO] :: |reality, that which is real; real life, actuality; true nature; correctness; veritate_Adv = mkAdv "veritate" ; -- [XXXEO] :: in point of fact; actually; vermiculus_M_N = mkN "vermiculus" ; -- [XXXDX] :: grub, larva; - verminatio_F_N = mkN "verminatio" "verminationis " feminine ; -- [XBXFS] :: worms; itching pain; + verminatio_F_N = mkN "verminatio" "verminationis" feminine ; -- [XBXFS] :: worms; itching pain; vermino_V = mkV "verminare" ; -- [XBXFS] :: have worms; have itching; - vermis_M_N = mkN "vermis" "vermis " masculine ; -- [XXXDX] :: worm, maggot; + vermis_M_N = mkN "vermis" "vermis" masculine ; -- [XXXDX] :: worm, maggot; verna_C_N = mkN "verna" ; -- [XXXDX] :: slave born in the master's household; house servant, family slave; vernaculus_A = mkA "vernaculus" "vernacula" "vernaculum" ; -- [XXXDX] :: domestic, homegrown; indigenous, native; country; low-bred, proletarian; vernilis_A = mkA "vernilis" "vernilis" "vernile" ; -- [XXXDX] :: servile, obsequious; verniliter_Adv = mkAdv "verniliter" ; -- [XXXDX] :: obsequiously, fawningly; - vernix_M_N = mkN "vernix" "vernicis " masculine ; -- [GXXEK] :: varnish; + vernix_M_N = mkN "vernix" "vernicis" masculine ; -- [GXXEK] :: varnish; verno_V = mkV "vernare" ; -- [XXXDX] :: carry on or undergo the process proper to spring; vernula_F_N = mkN "vernula" ; -- [XXXEZ] :: young home-grown slave, native; (Collins); vernus_A = mkA "vernus" "verna" "vernum" ; -- [XXXBX] :: of spring, vernal; vero_Adv = mkAdv "vero" ; -- [XXXAX] :: yes; in truth; certainly; truly, to be sure; however; verpa_F_N = mkN "verpa" ; -- [XXXDX] :: penis; penis (as protruded from foreskin); erect penis; (rude); verpus_A = mkA "verpus" "verpa" "verpum" ; -- [XXXDX] :: circumcised; - verres_M_N = mkN "verres" "verris " masculine ; -- [XXXDX] :: boar, uncastrated male hog/swine; wild boar; + 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; + 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; verrunco_V = mkV "verruncere" "verrunco" nonExist nonExist ; -- [XXXDX] :: turn out; (w/bene, turn out well, have a fortunate outcome); @@ -36834,41 +36823,41 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat versabundus_A = mkA "versabundus" "versabunda" "versabundum" ; -- [XXXDX] :: revolving; versara_F_N = mkN "versara" ; -- [XXXDX] :: loan; [versaram facere => get a loan]; versatilis_A = mkA "versatilis" "versatilis" "versatile" ; -- [XXXDX] :: revolving; versatile; - versatio_F_N = mkN "versatio" "versationis " feminine ; -- [XXXES] :: turning around; changing; + versatio_F_N = mkN "versatio" "versationis" feminine ; -- [XXXES] :: turning around; changing; versicolor_A = mkA "versicolor" "versicoloris"; -- [XXXDX] :: having colors that change; versiculus_M_N = mkN "versiculus" ; -- [XXXDX] :: verse; - versificatio_F_N = mkN "versificatio" "versificationis " feminine ; -- [XPXEC] :: making of verses; - versificator_M_N = mkN "versificator" "versificatoris " masculine ; -- [XPXEC] :: poet, versifier, one who composes verses, verse-maker; + versificatio_F_N = mkN "versificatio" "versificationis" feminine ; -- [XPXEC] :: making of verses; + versificator_M_N = mkN "versificator" "versificatoris" masculine ; -- [XPXEC] :: poet, versifier, one who composes verses, verse-maker; versifico_V = mkV "versificare" ; -- [XPXEC] :: write verse; versilis_A = mkA "versilis" "versilis" "versile" ; -- [EXXES] :: turnable; may be turned; - versio_F_N = mkN "versio" "versionis " feminine ; -- [FXXDM] :: turning; change; conversion; version; translation; - versipellis_M_N = mkN "versipellis" "versipellis " masculine ; -- [XXXEO] :: shape-changer, who can metamorphose to different shape; double-dealer (Vulgate); + versio_F_N = mkN "versio" "versionis" feminine ; -- [FXXDM] :: turning; change; conversion; version; translation; + 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); + 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; versutiloquus_A = mkA "versutiloquus" "versutiloqua" "versutiloquum" ; -- [XXXDS] :: crafty-speaking; sly; versutus_A = mkA "versutus" "versuta" "versutum" ; -- [XXXDX] :: full of stratagems or shifts wily cunning, adroit; vertebra_F_N = mkN "vertebra" ; -- [XXXES] :: joint; - vertex_M_N = mkN "vertex" "verticis " masculine ; -- [XXXDX] :: whirlpool, eddy, vortex; crown of the head; peak, top, summit; the pole; + vertex_M_N = mkN "vertex" "verticis" masculine ; -- [XXXDX] :: whirlpool, eddy, vortex; crown of the head; peak, top, summit; the pole; vertibilis_A = mkA "vertibilis" "vertibilis" "vertibile" ; -- [FEXFZ] :: changeability; - vertibilitas_F_N = mkN "vertibilitas" "vertibilitatis " feminine ; -- [EXXEP] :: change; ability to change, changeableness; vicissitude; inconstancy (Def); - verticitas_F_N = mkN "verticitas" "verticitatis " feminine ; -- [FXXFM] :: vertical direction; + vertibilitas_F_N = mkN "vertibilitas" "vertibilitatis" feminine ; -- [EXXEP] :: change; ability to change, changeableness; vicissitude; inconstancy (Def); + 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.); + 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 = 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; + 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; @@ -36878,14 +36867,14 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat vesicuia_F_N = mkN "vesicuia" ; -- [XXXDX] :: small bladder-like formation; vesicula_F_N = mkN "vesicula" ; -- [XXXEC] :: little bladder; vespa_F_N = mkN "vespa" ; -- [XXXDX] :: wasp; - vesper_M_N = mkN "vesper" "vesperis " masculine ; -- [XXXBX] :: evening; evening star; west; + vesper_M_N = mkN "vesper" "vesperis" masculine ; -- [XXXBX] :: evening; evening star; west; vespera_F_N = mkN "vespera" ; -- [XXXDX] :: evening, even-tide; 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); + vespertilio_M_N = mkN "vespertilio" "vespertilionis" masculine ; -- [XAXEO] :: bat; (night flying mammal); vespertinus_A = mkA "vespertinus" "vespertina" "vespertinum" ; -- [XXXDX] :: evening; - vespillo_M_N = mkN "vespillo" "vespillonis " masculine ; -- [XXXCO] :: undertaker who buries paupers; (disreputable trade); night thief/robber (Nel); + vespillo_M_N = mkN "vespillo" "vespillonis" masculine ; -- [XXXCO] :: undertaker who buries paupers; (disreputable trade); night thief/robber (Nel); vester_A = mkA "vester" "vestra" "vestrum" ; -- [XXXBO] :: your (pl.), of/belonging to/associated with you; vestiarium_N_N = mkN "vestiarium" ; -- [FXXEK] :: cloakroom; vestiarius_M_N = mkN "vestiarius" ; -- [XXXEO] :: clothes-, concerned with/relating to clothes; @@ -36893,15 +36882,15 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + 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; + 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; + 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; + 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; @@ -36913,39 +36902,39 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat veto_V2 = mkV2 (mkV "vetare") ; -- [XXXAO] :: forbid, prohibit; reject, veto; be an obstacle to; prevent; vetulus_A = mkA "vetulus" "vetula" "vetulum" ; -- [XXXDX] :: elderly, aging; vetus_A = mkA "vetus" "veteris"; -- [XXXAX] :: old, aged, ancient; former; veteran, experienced; long standing, chronic; - vetus_M_N = mkN "vetus" "veteris " masculine ; -- [XXXDX] :: ancients (pl.), men of old, forefathers; - vetus_N_N = mkN "vetus" "veteris " neuter ; -- [XXXDX] :: old/ancient times (pl.), antiquity; earlier events; old traditions/ways; + vetus_M_N = mkN "vetus" "veteris" masculine ; -- [XXXDX] :: ancients (pl.), men of old, forefathers; + vetus_N_N = mkN "vetus" "veteris" neuter ; -- [XXXDX] :: old/ancient times (pl.), antiquity; earlier events; old traditions/ways; vetust_A = mkA "vetust" "vetustis"; -- [XXXDX] :: old, aged, ancient; former; veteran, experienced; long standing, chronic; - vetustas_F_N = mkN "vetustas" "vetustatis " feminine ; -- [XXXBX] :: old age; antiquity; long duration; + vetustas_F_N = mkN "vetustas" "vetustatis" feminine ; -- [XXXBX] :: old age; antiquity; long duration; vetuste_Adv = mkAdv "vetuste" ; -- [XXXDX] :: in accordance with primitive practice/long standing/ancient practice; vetustus_A = mkA "vetustus" "vetusta" "vetustum" ; -- [XXXDX] :: ancient, old established; long-established; - vexamen_N_N = mkN "vexamen" "vexaminis " neuter ; -- [XXXDX] :: shaking, jolting; shock; disturbance, upheaval; - vexatio_F_N = mkN "vexatio" "vexationis " feminine ; -- [XXXDX] :: shaking, jolting; shock; disturbance, upheaval; + vexamen_N_N = mkN "vexamen" "vexaminis" neuter ; -- [XXXDX] :: shaking, jolting; shock; disturbance, upheaval; + vexatio_F_N = mkN "vexatio" "vexationis" feminine ; -- [XXXDX] :: shaking, jolting; shock; disturbance, upheaval; vexillarius_M_N = mkN "vexillarius" ; -- [XXXDX] :: |troops (pl.) serving for the time being in a special detachment; - vexillatio_F_N = mkN "vexillatio" "vexillationis " feminine ; -- [XWXDS] :: body of troops; division of cavalry; - vexilliatio_F_N = mkN "vexilliatio" "vexilliationis " feminine ; -- [XXXDX] :: military detachment; + vexillatio_F_N = mkN "vexillatio" "vexillationis" feminine ; -- [XWXDS] :: body of troops; division of cavalry; + vexilliatio_F_N = mkN "vexilliatio" "vexilliationis" feminine ; -- [XXXDX] :: military detachment; vexillium_N_N = mkN "vexillium" ; -- [XWXDX] :: cavalry standard; small banner; vexillum_N_N = mkN "vexillum" ; -- [XXXDX] :: flag, banner; vexo_V = mkV "vexare" ; -- [XXXBX] :: shake, jolt, toss violently; annoy, trouble, harass, plague, disturb, vex; via_F_N = mkN "via" ; -- [XXXAX] :: way, road, street; journey; - viaeductus_M_N = mkN "viaeductus" "viaeductus " masculine ; -- [GXXEK] :: viaduct; + viaeductus_M_N = mkN "viaeductus" "viaeductus" masculine ; -- [GXXEK] :: viaduct; viaticum_N_N = mkN "viaticum" ; -- [XXXDX] :: provision for a journey, traveling allowance; money saved by soldiers; viaticus_A = mkA "viaticus" "viatica" "viaticum" ; -- [XXXEC] :: relating to a journey; - viator_M_N = mkN "viator" "viatoris " masculine ; -- [XXXBX] :: traveler; + viator_M_N = mkN "viator" "viatoris" masculine ; -- [XXXBX] :: traveler; viatorius_A = mkA "viatorius" "viatoria" "viatorium" ; -- [XXXFS] :: traveling; of journey; - vibramen_N_N = mkN "vibramen" "vibraminis " neuter ; -- [XXXFS] :: quivering; + vibramen_N_N = mkN "vibramen" "vibraminis" neuter ; -- [XXXFS] :: quivering; vibro_V = mkV "vibrare" ; -- [XXXDX] :: brandish, wave, crimp, corrugate; rock; propel suddenly; flash; dart; glitter; viburnum_N_N = mkN "viburnum" ; -- [XXXDX] :: guelder rose; wayfaring-tree; vicanus_A = mkA "vicanus" "vicana" "vicanum" ; -- [XXXEC] :: dwelling in a village; vicanus_M_N = mkN "vicanus" ; -- [XXXEC] :: villagers (pl.); vicaria_F_N = mkN "vicaria" ; -- [FEBEM] :: vicarage, office of vicar; its income, payment due vicar; parish; - vicariatus_M_N = mkN "vicariatus" "vicariatus " masculine ; -- [GEXEK] :: curacy, office/position od curate; + vicariatus_M_N = mkN "vicariatus" "vicariatus" masculine ; -- [GEXEK] :: curacy, office/position od curate; vicarius_A = mkA "vicarius" "vicaria" "vicarium" ; -- [XXXDO] :: substitute; substituted; vicarious; supplying the place of someone/something; vicarius_M_N = mkN "vicarius" ; -- [FEXEM] :: vicarage, office of vicar; its income, payment due vicar; house of vicar; vicatim_Adv = mkAdv "vicatim" ; -- [XXXDX] :: by (urban) districts, street by street; in or by villages; - vicecomes_M_N = mkN "vicecomes" "vicecomitis " masculine ; -- [FLXFJ] :: sheriff; + vicecomes_M_N = mkN "vicecomes" "vicecomitis" masculine ; -- [FLXFJ] :: sheriff; vicedominus_M_N = mkN "vicedominus" ; -- [FLXFM] :: deputy, vidame; - vicennal_N_N = mkN "vicennal" "vicennalis " neuter ; -- [ELXFS] :: 20-year festival (pl.); celebration of 20 years of rule; + vicennal_N_N = mkN "vicennal" "vicennalis" neuter ; -- [ELXFS] :: 20-year festival (pl.); celebration of 20 years of rule; vicenus_A = mkA "vicenus" "vicena" "vicenum" ; -- [XXXDX] :: twenty each (pl.); vicepraepositus_M_N = mkN "vicepraepositus" ; -- [GGXET] :: vice-provost; (Erasmus); vicesima_F_N = mkN "vicesima" ; -- [XXXDX] :: five-percent tax; @@ -36955,35 +36944,35 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat vicies_Adv = mkAdv "vicies" ; -- [XXXDX] :: twenty times; vicinalis_A = mkA "vicinalis" "vicinalis" "vicinale" ; -- [XXXDX] :: of or for the use of local inhabitants; vicinia_F_N = mkN "vicinia" ; -- [XXXDX] :: neighborhood, nearness; - vicinitas_F_N = mkN "vicinitas" "vicinitatis " feminine ; -- [XXXDX] :: neighborhood, proximity; + vicinitas_F_N = mkN "vicinitas" "vicinitatis" feminine ; -- [XXXDX] :: neighborhood, proximity; vicinum_N_N = mkN "vicinum" ; -- [XXXDX] :: neighborhood, neighboring place, vicinity (of ); vicinus_A = mkA "vicinus" "vicina" "vicinum" ; -- [XXXAX] :: nearby, neighboring; vicinus_M_N = mkN "vicinus" ; -- [XXXDX] :: neighbor; - vicis_F_N = mkN "vicis" "vicis " feminine ; -- [XXXAX] :: turn, change, succession; exchange, interchange, repayment; plight, lot; + vicis_F_N = mkN "vicis" "vicis" feminine ; -- [XXXAX] :: turn, change, succession; exchange, interchange, repayment; plight, lot; vicissatim_Adv = mkAdv "vicissatim" ; -- [BXXFS] :: in turn, again; (pre-classical form of vicissim); vicissim_Adv = mkAdv "vicissim" ; -- [XXXDX] :: in turn, again; - vicissitudo_F_N = mkN "vicissitudo" "vicissitudinis " feminine ; -- [XXXDX] :: change, vicissitude; + vicissitudo_F_N = mkN "vicissitudo" "vicissitudinis" feminine ; -- [XXXDX] :: change, vicissitude; victima_F_N = mkN "victima" ; -- [XXXDX] :: victim; animal for sacrifice; victimarius_M_N = mkN "victimarius" ; -- [XXXEC] :: attendant at a sacrifice; victimo_V2 = mkV2 (mkV "victimare") ; -- [XEXFO] :: offer (victim/animal) for sacrifice; victor_A = mkA "victor" "victoris"; -- [XXXDX] :: triumphant; - victor_M_N = mkN "victor" "victoris " masculine ; -- [XXXAX] :: conqueror; victor; [in apposition => victorious, conquering]; + victor_M_N = mkN "victor" "victoris" masculine ; -- [XXXAX] :: conqueror; victor; [in apposition => victorious, conquering]; victoria_F_N = mkN "victoria" ; -- [XXXAX] :: victory; victoriatus_M_N = mkN "victoriatus" ; -- [XXXEC] :: silver coin stamped with a figure of Victory; victoriola_F_N = mkN "victoriola" ; -- [XXXEC] :: small statue of Victory; victoriosus_A = mkA "victoriosus" "victoriosa" "victoriosum" ; -- [XXXES] :: victorious; victrix_A = mkA "victrix" "victricis"; -- [XWXBS] :: conquering; - victrix_F_N = mkN "victrix" "victricis " feminine ; -- [XXXBX] :: conqueror; - victuale_N_N = mkN "victuale" "victualis " neuter ; -- [XXXES] :: provisions (pl.), victuals, sustenance; + victrix_F_N = mkN "victrix" "victricis" feminine ; -- [XXXBX] :: conqueror; + victuale_N_N = mkN "victuale" "victualis" neuter ; -- [XXXES] :: provisions (pl.), victuals, sustenance; victualis_A = mkA "victualis" "victualis" "victuale" ; -- [XXXEO] :: nutritional; of/associated with bodily sustenance; victuma_F_N = mkN "victuma" ; -- [XXXFX] :: victim; animal for sacrifice; (also victima); - victus_M_N = mkN "victus" "victus " masculine ; -- [XXXBX] :: living, way of life; that which sustains life; nourishment; provisions; diet; + victus_M_N = mkN "victus" "victus" masculine ; -- [XXXBX] :: living, way of life; that which sustains life; nourishment; provisions; diet; viculus_M_N = mkN "viculus" ; -- [XXXDX] :: small village, hamlet; vicus_M_N = mkN "vicus" ; -- [XXXBX] :: village; hamlet; street, row of houses; videlicet_Adv = mkAdv "videlicet" ; -- [XXXBX] :: one may see; clearly, evidently; video_V = mkV "videre" ; -- [XXXAX] :: see, look at; consider; (PASS) seem, seem good, appear, be seen; viduatus_A = mkA "viduatus" "viduata" "viduatum" ; -- [XXXDX] :: devoid (of); - viduitas_F_N = mkN "viduitas" "viduitatis " feminine ; -- [XXXDX] :: widowhood; bereavement; + viduitas_F_N = mkN "viduitas" "viduitatis" feminine ; -- [XXXDX] :: widowhood; bereavement; vidulus_M_N = mkN "vidulus" ; -- [XXXES] :: travel-trunk, portmanteau, wallet; bag for carrying belongings; box/trunk (Cas); viduo_V = mkV "viduare" ; -- [XXXDX] :: widow; bereave of a husband; viduus_A = mkA "viduus" "vidua" "viduum" ; -- [XXXDX] :: widowed, deprived of (with gen.); bereft; unmarried; @@ -36997,7 +36986,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + vigil_M_N = mkN "vigil" "vigilis" masculine ; -- [XXXBO] :: sentry, guard; fireman, member of Roman fire/police brigade; watchman; vigilabilis_A = mkA "vigilabilis" "vigilabilis" "vigilabile" ; -- [XXXFO] :: awake, wakeful; watchful; alert, vigilant, paying attention; vigilans_A = mkA "vigilans" "vigilantis"; -- [XXXCO] :: watchful, vigilant, alert; wakeful, wide awake (of watchkeeper); vigilanter_Adv =mkAdv "vigilanter" "vigilantius" "vigilantissime" ; -- [XXXDO] :: vigilantly, alertly; @@ -37008,20 +36997,20 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat vigintisexvir_M_N = mkN "vigintisexvir" ; -- [CLIEO] :: member of board of twenty six at Rome to fill boards of minor magistrates; vigintivir_M_N = mkN "vigintivir" ; -- [CLIEO] :: member of commission of twenty (by Caesar 59 BC)/(municipal administration); vigintiviratus_M_N = mkN "vigintiviratus" ; -- [CLIFO] :: rank/office of a member of commission of twenty (municipal administrators); - vigor_M_N = mkN "vigor" "vigoris " masculine ; -- [XXXBX] :: vigor, liveliness; - vigoratio_M_N = mkN "vigoratio" "vigorationis " masculine ; -- [FEXEM] :: invigoration; + vigor_M_N = mkN "vigor" "vigoris" masculine ; -- [XXXBX] :: vigor, liveliness; + vigoratio_M_N = mkN "vigoratio" "vigorationis" masculine ; -- [FEXEM] :: invigoration; 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; + 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; vilipendo_V = mkV "vilipendere" "vilipendo" nonExist nonExist ; -- [XXXDX] :: despise, slight; - vilipensio_F_N = mkN "vilipensio" "vilipensionis " feminine ; -- [FXXEM] :: disparagement; contempt; + 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; + vilitas_F_N = mkN "vilitas" "vilitatis" feminine ; -- [XXXDX] :: cheapness; worthlessness; villa_F_N = mkN "villa" ; -- [XXXBO] :: farm/country home/estate; large country residence/seat, villa; village (L+S); villana_F_N = mkN "villana" ; -- [FLXFJ] :: female villein, female feudal tenant; villanus_M_N = mkN "villanus" ; -- [FLXEJ] :: villein; feudal tenant; @@ -37029,28 +37018,28 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat villaticus_A = mkA "villaticus" "villatica" "villaticum" ; -- [XXXES] :: villa-; villenagium_N_N = mkN "villenagium" ; -- [FLXFJ] :: villeinage; tenure of a villein/serf/peasant; villica_F_N = mkN "villica" ; -- [XXXDX] :: wife of a farm overseer; - villicatio_M_N = mkN "villicatio" "villicationis " masculine ; -- [XAXEO] :: function of a farm overseer (slave/free) or estate manager; + villicatio_M_N = mkN "villicatio" "villicationis" masculine ; -- [XAXEO] :: function of a farm overseer (slave/free) or estate manager; villico_V = mkV "villicare" ; -- [XAXCO] :: perform duties of farm overseer; act as overseer of estate/public property; villicus_M_N = mkN "villicus" ; -- [XXXDX] :: farm overseer (slave/free), estate manager; grade of imperial/public servant; villosus_A = mkA "villosus" "villosa" "villosum" ; -- [XXXDX] :: shaggy; villula_F_N = mkN "villula" ; -- [XXXDX] :: small farmstead or country house; villus_M_N = mkN "villus" ; -- [XXXDX] :: shaggy hair, tuft of hair; - vimen_N_N = mkN "vimen" "viminis " neuter ; -- [XXXDX] :: twig, shoot; + vimen_N_N = mkN "vimen" "viminis" neuter ; -- [XXXDX] :: twig, shoot; vimineus_A = mkA "vimineus" "viminea" "vimineum" ; -- [XXXDX] :: of wickerwork; 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; + 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; + 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; + vindemiator_M_N = mkN "vindemiator" "vindemiatoris" masculine ; -- [XAXCO] :: grape-picker; vindemiatorius_A = mkA "vindemiatorius" "vindemiatoria" "vindemiatorium" ; -- [XAXCO] :: used by a grape-picker (vindemiator); vindemio_V = mkV "vindemiare" ; -- [XAXDO] :: gather/harvest grapes (for wine); gather grapes with which to make (wine); vindemiola_F_N = mkN "vindemiola" ; -- [XXXEC] :: little vintage; a perquisite; - vindex_M_N = mkN "vindex" "vindicis " masculine ; -- [XXXDX] :: defender, protector; - vindicatio_F_N = mkN "vindicatio" "vindicationis " feminine ; -- [XLXCO] :: suing for possession; championing (cause); avenging (wrong); punishment; + vindex_M_N = mkN "vindex" "vindicis" masculine ; -- [XXXDX] :: defender, protector; + vindicatio_F_N = mkN "vindicatio" "vindicationis" feminine ; -- [XLXCO] :: suing for possession; championing (cause); avenging (wrong); punishment; vindicia_F_N = mkN "vindicia" ; -- [XXXDX] :: interim possession (pl.) (of disputed property); vindico_V = mkV "vindicare" ; -- [XXXBX] :: claim, vindicate; punish, avenge; vindicta_F_N = mkN "vindicta" ; -- [XXXDX] :: ceremonial act claiming as free one contending wrongly enslaved; vengeance; @@ -37058,7 +37047,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat vinetum_N_N = mkN "vinetum" ; -- [XXXDX] :: vineyard; vineus_A = mkA "vineus" "vinea" "vineum" ; -- [DXXFS] :: made of/belonging to wine, wine-; vinia_F_N = mkN "vinia" ; -- [XXXCO] :: vines in a vineyard/arranged in rows; vine; (movable) bower-like shelter; - vinitor_M_N = mkN "vinitor" "vinitoris " masculine ; -- [XXXDX] :: vineyard worker; + vinitor_M_N = mkN "vinitor" "vinitoris" masculine ; -- [XXXDX] :: vineyard worker; vinolentia_F_N = mkN "vinolentia" ; -- [XXXEC] :: wine-drinking, intoxication; vinolentus_A = mkA "vinolentus" "vinolenta" "vinolentum" ; -- [XXXEC] :: mixed with wine; drunk, intoxicated; vinosus_A = mkA "vinosus" "vinosa" "vinosum" ; -- [XXXCO] :: drunk w/over fond of wine; tasting/smelling of wine; vinous; dreg-colored; @@ -37070,8 +37059,8 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat violaceus_A = mkA "violaceus" "violacea" "violaceum" ; -- [XXXDX] :: violet-colored; violacium_N_N = mkN "violacium" ; -- [XAXFS] :: violet wine; violarium_N_N = mkN "violarium" ; -- [XXXDX] :: bed of violets; - violatio_F_N = mkN "violatio" "violationis " feminine ; -- [XXXDX] :: profanation, violation; - violator_M_N = mkN "violator" "violatoris " masculine ; -- [XXXDX] :: profaner, violator; + violatio_F_N = mkN "violatio" "violationis" feminine ; -- [XXXDX] :: profanation, violation; + violator_M_N = mkN "violator" "violatoris" masculine ; -- [XXXDX] :: profaner, violator; violens_A = mkA "violens" "violentis"; -- [XXXBX] :: violent; violenter_Adv =mkAdv "violenter" "violentius" "violentissime" ; -- [XXXCO] :: violently, w/unreasonable/destructive force; w/violent (expression of) feelings; violentia_F_N = mkN "violentia" ; -- [XXXBX] :: violence, aggressiveness; @@ -37084,18 +37073,18 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat vipereus_A = mkA "vipereus" "viperea" "vipereum" ; -- [XXXDX] :: of a viper/snake; of vipers; viperinus_A = mkA "viperinus" "viperina" "viperinum" ; -- [XXXDX] :: of a viper/snake; of vipers; vir_M_N = mkN "vir" ; -- [XXXAX] :: man; husband; hero; person of courage, honor, and nobility; - virago_F_N = mkN "virago" "viraginis " feminine ; -- [XXXDX] :: warlike/heroic woman; + virago_F_N = mkN "virago" "viraginis" feminine ; -- [XXXDX] :: warlike/heroic woman; virdiarium_N_N = mkN "virdiarium" ; -- [XAXES] :: tree-plantation; tree garden; virectum_N_N = mkN "virectum" ; -- [XXXDX] :: area of greenery; virens_A = mkA "virens" "virentis"; -- [GAXEQ] :: green; (in reference to plants); (Dell); - virens_N_N = mkN "virens" "virentiis " neuter ; -- [DAXFS] :: plants (pl.); herbage; + 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; 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; virgeus_A = mkA "virgeus" "virgea" "virgeum" ; -- [XXXDX] :: consisting of twigs or shoots; - virginal_N_N = mkN "virginal" "virginalis " neuter ; -- [XXXEO] :: external female genitals; unknown sea creature resembling female genitals; + virginal_N_N = mkN "virginal" "virginalis" neuter ; -- [XXXEO] :: external female genitals; unknown sea creature resembling female genitals; virginalis_A = mkA "virginalis" "virginalis" "virginale" ; -- [XXXCO] :: maidenly; of/appropriate for girls of marriageable age; virginal; virginarius_A = mkA "virginarius" "virginaria" "virginarium" ; -- [XXXFO] :: maidenly; of/concerned with girls of marriageable age; virginea_F_N = mkN "virginea" ; -- [XXXIO] :: virgin bride/wife; one married when still single girl; @@ -37103,16 +37092,16 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat virgineus_A = mkA "virgineus" "virginea" "virgineum" ; -- [XXXBO] :: |married (couple) when wife still girl; of constellation Virgo; of aqua Virgo; virginia_F_N = mkN "virginia" ; -- [XXXIO] :: virgin bride/wife; one married when still single girl; virginia_M_N = mkN "virginia" ; -- [XXXIO] :: husband of virgin bride; first husband of girl/virgin; - virginitas_F_N = mkN "virginitas" "virginitatis " feminine ; -- [XXXDX] :: maidenhood; virginity; being girl of marriageable age; being sworn to celibacy; + virginitas_F_N = mkN "virginitas" "virginitatis" feminine ; -- [XXXDX] :: maidenhood; virginity; being girl of marriageable age; being sworn to celibacy; virginius_A = mkA "virginius" "virginia" "virginium" ; -- [XXXBO] :: |married (couple) when wife still girl; of constellation Virgo; of aqua Virgo; - virgo_F_N = mkN "virgo" "virginis " feminine ; -- [XXXAO] :: maiden, young woman, girl of marriageable age; virgin, woman sexually intact; + virgo_F_N = mkN "virgo" "virginis" feminine ; -- [XXXAO] :: maiden, young woman, girl of marriageable age; virgin, woman sexually intact; virgula_F_N = mkN "virgula" ; -- [XXXCO] :: small rod/stick/staff; shoot, small twig; streak, mark; comma; line in diagram; virgultum_N_N = mkN "virgultum" ; -- [XXXDX] :: brushwood; virguncula_F_N = mkN "virguncula" ; -- [XXXEC] :: little girl; viridarium_N_N = mkN "viridarium" ; -- [XAXES] :: tree-plantation; tree garden; viridiarium_N_N = mkN "viridiarium" ; -- [XAXFS] :: tree-plantation; tree garden; viridis_A = mkA "viridis" "viridis" "viride" ; -- [XXXBX] :: fresh, green; blooming,youthful; - viriditas_F_N = mkN "viriditas" "viriditatis " feminine ; -- [XXXCO] :: greenness; fresh green color of plants; green vegetation; youthful vigor; + viriditas_F_N = mkN "viriditas" "viriditatis" feminine ; -- [XXXCO] :: greenness; fresh green color of plants; green vegetation; youthful vigor; virido_V = mkV "viridare" ; -- [XXXDX] :: make green; be green; viridor_V = mkV "viridari" ; -- [XXXFC] :: become green; virilis_A = mkA "virilis" "virilis" "virile" ; -- [XXXDX] :: manly, virile; mature; @@ -37120,70 +37109,70 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat viripotens_A = mkA "viripotens" "viripotentis"; -- [EXXFS] :: mighty, powerful; viritim_Adv = mkAdv "viritim" ; -- [XXXDX] :: man by man; individually; viritualis_A = mkA "viritualis" "viritualis" "virituale" ; -- [FXXDF] :: pertaining to/coming from the power/potentiality of a thing; virtuous; - viror_M_N = mkN "viror" "viroris " masculine ; -- [XXXFO] :: verdure, fresh green quality (of vegetation); + viror_M_N = mkN "viror" "viroris" masculine ; -- [XXXFO] :: verdure, fresh green quality (of vegetation); virosus_A = mkA "virosus" "virosa" "virosum" ; -- [XXXDX] :: having unpleasantly strong taste or smell, rank; virtualis_A = mkA "virtualis" "virtualis" "virtuale" ; -- [FXXDM] :: virtual; - virtualis_F_N = mkN "virtualis" "virtualis " feminine ; -- [FXXEN] :: manliness, virtues; - virtualitas_F_N = mkN "virtualitas" "virtualitatis " feminine ; -- [FXXEM] :: virtuality; + virtualis_F_N = mkN "virtualis" "virtualis" feminine ; -- [FXXEN] :: manliness, virtues; + virtualitas_F_N = mkN "virtualitas" "virtualitatis" feminine ; -- [FXXEM] :: virtuality; virtualiter_Adv = mkAdv "virtualiter" ; -- [FXXDM] :: virtually; virtualosus_A = mkA "virtualosus" "virtualosa" "virtualosum" ; -- [FXXDM] :: virtual; virtuose_Adv = mkAdv "virtuose" ; -- [FXXDM] :: virtuously, manfully; - virtus_F_N = mkN "virtus" "virtutis " feminine ; -- [EEXCR] :: |army; host; mighty works (pl.); class of Angels; [Dominus ~ => Lord of hosts]; + virtus_F_N = mkN "virtus" "virtutis" feminine ; -- [EEXCR] :: |army; host; mighty works (pl.); class of Angels; [Dominus ~ => Lord of hosts]; virulentus_A = mkA "virulentus" "virulenta" "virulentum" ; -- [XXXES] :: full-of-poison; virulent; virum_N_N = mkN "virum" ; -- [GBXEK] :: virus; virus_N_N = mkN "virus" ; -- [XXXAO] :: venom (sg.), poisonous secretion of snakes/creatures/plants; acrid element; - vis_F_N = mkN "vis" "vis " feminine ; -- [XXXAX] :: strength (sg. only), force, power, might, violence; + vis_F_N = mkN "vis" "vis" feminine ; -- [XXXAX] :: strength (sg. only), force, power, might, violence; visa_F_N = mkN "visa" ; -- [GXXEK] :: visa; viscatus_A = mkA "viscatus" "viscata" "viscatum" ; -- [XXXDX] :: smeared with birdlime; - viscer_N_N = mkN "viscer" "visceris " neuter ; -- [XXXDX] :: entrails; innermost part of the body; heart; vitals; - visceratio_F_N = mkN "visceratio" "viscerationis " feminine ; -- [XXXDX] :: communal sacrificial feast at which the flesh of the victim was shared among; + viscer_N_N = mkN "viscer" "visceris" neuter ; -- [XXXDX] :: entrails; innermost part of the body; heart; vitals; + visceratio_F_N = mkN "visceratio" "viscerationis" feminine ; -- [XXXDX] :: communal sacrificial feast at which the flesh of the victim was shared among; vischium_N_N = mkN "vischium" ; -- [GXXEK] :: whisky; visco_V2 = mkV2 (mkV "viscare") ; -- [XXXDS] :: smear; glue; make sticky; viscum_N_N = mkN "viscum" ; -- [XXXDX] :: mistletoe; bird-lime (made from mistletoe berries); viscus_M_N = mkN "viscus" ; -- [XXXDX] :: mistletoe; bird-lime (made from mistletoe berries); - viscus_N_N = mkN "viscus" "visceris " neuter ; -- [XBXBX] :: soft fleshy body parts (usu. pl.), internal organs; entrails, flesh; offspring; + viscus_N_N = mkN "viscus" "visceris" neuter ; -- [XBXBX] :: soft fleshy body parts (usu. pl.), internal organs; entrails, flesh; offspring; visibilis_A = mkA "visibilis" "visibilis" "visibile" ; -- [XXXEO] :: visible, capable of being seen; capable of seeing; visibiliter_Adv = mkAdv "visibiliter" ; -- [DXXFS] :: visibly; visificus_A = mkA "visificus" "visifica" "visificum" ; -- [HDXEK] :: video; visual; - visio_F_N = mkN "visio" "visionis " feminine ; -- [XXXDX] :: vision; - visitatio_F_N = mkN "visitatio" "visitationis " feminine ; -- [EXXDP] :: |visit/visitation; (to sick/prisoners); visit of inspection/supervision; - visitator_M_N = mkN "visitator" "visitatoris " masculine ; -- [XXXDX] :: visitor; frequent visitor; + visio_F_N = mkN "visio" "visionis" feminine ; -- [XXXDX] :: vision; + visitatio_F_N = mkN "visitatio" "visitationis" feminine ; -- [EXXDP] :: |visit/visitation; (to sick/prisoners); visit of inspection/supervision; + visitator_M_N = mkN "visitator" "visitatoris" masculine ; -- [XXXDX] :: visitor; frequent visitor; 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; + 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; + vison_M_N = mkN "vison" "visontis" masculine ; -- [XXXDX] :: bison; wild ox; visorius_A = mkA "visorius" "visoria" "visorium" ; -- [GXXEK] :: showing; indicating; - vispellio_M_N = mkN "vispellio" "vispellionis " masculine ; -- [XXXEO] :: undertaker who buries paupers; (disreputable trade); night thief/robber (Nel); - vispilio_M_N = mkN "vispilio" "vispilionis " masculine ; -- [XXXEN] :: undertaker who buries paupers; (disreputable trade); night thief/robber (Nel); - vispillo_M_N = mkN "vispillo" "vispillonis " masculine ; -- [XXXCO] :: undertaker who buries paupers; (disreputable trade); night thief/robber (Nel); + vispellio_M_N = mkN "vispellio" "vispellionis" masculine ; -- [XXXEO] :: undertaker who buries paupers; (disreputable trade); night thief/robber (Nel); + vispilio_M_N = mkN "vispilio" "vispilionis" masculine ; -- [XXXEN] :: undertaker who buries paupers; (disreputable trade); night thief/robber (Nel); + vispillo_M_N = mkN "vispillo" "vispillonis" masculine ; -- [XXXCO] :: undertaker who buries paupers; (disreputable trade); night thief/robber (Nel); visum_N_N = mkN "visum" ; -- [XXXDX] :: vision; that which is seen, appearance, sight; visual/mental image; - visus_M_N = mkN "visus" "visus " masculine ; -- [XXXDX] :: look, sight, appearance; vision; + visus_M_N = mkN "visus" "visus" masculine ; -- [XXXDX] :: look, sight, appearance; vision; vita_F_N = mkN "vita" ; -- [XXXAX] :: life, career, livelihood; mode of life; vitabilis_A = mkA "vitabilis" "vitabilis" "vitabile" ; -- [XXXDX] :: to be avoided; vitabundus_A = mkA "vitabundus" "vitabunda" "vitabundum" ; -- [XXXDX] :: taking evasive action; - vital_N_N = mkN "vital" "vitalis " neuter ; -- [XXXDX] :: vital parts, indispensable body parts (pl.); grave clothes; [lectus ~ => bier]; + vital_N_N = mkN "vital" "vitalis" neuter ; -- [XXXDX] :: vital parts, indispensable body parts (pl.); grave clothes; [lectus ~ => bier]; vitalis_A = mkA "vitalis" "vitalis" "vitale" ; -- [XXXBX] :: vital; of life (and death); living/alive, able to survive; lively; life-giving; vitaliter_Adv = mkAdv "vitaliter" ; -- [XXXDX] :: so as to endow with life; vitaminum_N_N = mkN "vitaminum" ; -- [GBXEK] :: vitamin; - vitatio_F_N = mkN "vitatio" "vitationis " feminine ; -- [XXXDS] :: avoidance; shunning; + vitatio_F_N = mkN "vitatio" "vitationis" feminine ; -- [XXXDS] :: avoidance; shunning; vitellum_N_N = mkN "vitellum" ; -- [XAXES] :: little-calf; egg-yoke; (see also vitellus); vitellus_M_N = mkN "vitellus" ; -- [XXXDO] :: yolk, yolk of egg; viteus_A = mkA "viteus" "vitea" "viteum" ; -- [XXXDX] :: of/belonging to vine; - vitex_F_N = mkN "vitex" "viticis " feminine ; -- [DAXNS] :: chaste-tree (Pliny); + vitex_F_N = mkN "vitex" "viticis" feminine ; -- [DAXNS] :: chaste-tree (Pliny); viticula_F_N = mkN "viticula" ; -- [XXXEC] :: little vine; vitifer_A = mkA "vitifer" "vitifera" "vitiferum" ; -- [XAXEC] :: vine-bearing; vitigenus_A = mkA "vitigenus" "vitigena" "vitigenum" ; -- [XXXDX] :: produced from the vine; - vitil_N_N = mkN "vitil" "vitilis " neuter ; -- [XXXFS] :: wicker-work (pl.); + vitil_N_N = mkN "vitil" "vitilis" neuter ; -- [XXXFS] :: wicker-work (pl.); vitilena_F_N = mkN "vitilena" ; -- [XXXDS] :: procuress; vitilis_A = mkA "vitilis" "vitilis" "vitile" ; -- [XXXFS] :: plaited; interwoven; vitilitigo_V = mkV "vitilitigare" ; -- [XXXFS] :: brawl; guard; vitilla_F_N = mkN "vitilla" ; -- [XXXIO] :: little darling; (term of endearment); vitio_V = mkV "vitiare" ; -- [XXXDX] :: make faulty, spoil, damage; vitiate; vitiosus_A = mkA "vitiosus" "vitiosa" "vitiosum" ; -- [XXXDX] :: full of vice, vicious; - vitis_F_N = mkN "vitis" "vitis " feminine ; -- [XXXBX] :: vine; grape vine; - vitisator_M_N = mkN "vitisator" "vitisatoris " masculine ; -- [XXXDX] :: vine-planter; + vitis_F_N = mkN "vitis" "vitis" feminine ; -- [XXXBX] :: vine; grape vine; + vitisator_M_N = mkN "vitisator" "vitisatoris" masculine ; -- [XXXDX] :: vine-planter; vitium_N_N = mkN "vitium" ; -- [XXXAX] :: fault, vice, crime, sin; defect; vito_V = mkV "vitare" ; -- [XXXBX] :: avoid, shun; evade; vitreo_V = mkV "vitreare" ; -- [GXXEK] :: glaze; @@ -37195,16 +37184,16 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat vitta_F_N = mkN "vitta" ; -- [XXXDX] :: band, ribbon; fillet; vittatus_A = mkA "vittatus" "vittata" "vittatum" ; -- [XXXDX] :: wearing or carrying a ritual vitta; vitula_F_N = mkN "vitula" ; -- [XXXDX] :: calf, young cow; - vitulamen_N_N = mkN "vitulamen" "vitulaminis " neuter ; -- [DAXFS] :: shoot, sucker, sprig; + vitulamen_N_N = mkN "vitulamen" "vitulaminis" neuter ; -- [DAXFS] :: shoot, sucker, sprig; vitulina_F_N = mkN "vitulina" ; -- [XAXEC] :: veal; vitulinus_A = mkA "vitulinus" "vitulina" "vitulinum" ; -- [XAXEC] :: of a calf; [w/assum => roast veal]; vitulus_M_N = mkN "vitulus" ; -- [XXXDX] :: calf; vituperabilis_A = mkA "vituperabilis" "vituperabilis" "vituperabile" ; -- [XXXFS] :: blamable; can be censured; vituperabiliter_Adv = mkAdv "vituperabiliter" ; -- [XXXES] :: blamably; - vituperatio_F_N = mkN "vituperatio" "vituperationis " feminine ; -- [XXXCO] :: blame; censure; unfavorable criticism; + vituperatio_F_N = mkN "vituperatio" "vituperationis" feminine ; -- [XXXCO] :: blame; censure; unfavorable criticism; vitupero_V = mkV "vituperare" ; -- [XXXDX] :: find fault with, blame, reproach, disparage, scold, censure; - vitus_F_N = mkN "vitus" "vitus " feminine ; -- [FEXEK] :: rim; - vitus_M_N = mkN "vitus" "vitus " masculine ; -- [FEXEK] :: rim; + vitus_F_N = mkN "vitus" "vitus" feminine ; -- [FEXEK] :: rim; + vitus_M_N = mkN "vitus" "vitus" masculine ; -- [FEXEK] :: rim; vivarium_N_N = mkN "vivarium" ; -- [XXXDX] :: game enclosure or preserve; vivatus_A = mkA "vivatus" "vivata" "vivatum" ; -- [XXXDS] :: animated; vivax_A = mkA "vivax" "vivacis"; -- [XXXCO] :: long-lived, tenacious of life; lively, vigorous, energetic; high-spirited; @@ -37213,21 +37202,21 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; + viviradix_F_N = mkN "viviradix" "viviradicis" feminine ; -- [XXXEC] :: cutting with a root, a layer; 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; + 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; vocabularium_N_N = mkN "vocabularium" ; -- [GXXEK] :: vocabulary; vocabulum_N_N = mkN "vocabulum" ; -- [XGXBO] :: noun, common/concrete noun; word used to designate thing/idea, term, name; vocalis_A = mkA "vocalis" "vocalis" "vocale" ; -- [XXXDX] :: able to speak; having a notable voice; tuneful; - vocamen_N_N = mkN "vocamen" "vocaminis " neuter ; -- [XXXDX] :: designation, name; - vocatio_F_N = mkN "vocatio" "vocationis " feminine ; -- [XXXDX] :: calling; vocation; + vocamen_N_N = mkN "vocamen" "vocaminis" neuter ; -- [XXXDX] :: designation, name; + vocatio_F_N = mkN "vocatio" "vocationis" feminine ; -- [XXXDX] :: calling; vocation; vocativus_A = mkA "vocativus" "vocativa" "vocativum" ; -- [XGXFO] :: vocative (case); vocativus_M_N = mkN "vocativus" ; -- [XGXFO] :: vocative case; - vocatus_M_N = mkN "vocatus" "vocatus " masculine ; -- [XXXDX] :: peremptory or urgent call; - vociferatio_F_N = mkN "vociferatio" "vociferationis " feminine ; -- [XXXDX] :: loud cry, yell; + vocatus_M_N = mkN "vocatus" "vocatus" masculine ; -- [XXXDX] :: peremptory or urgent call; + vociferatio_F_N = mkN "vociferatio" "vociferationis" feminine ; -- [XXXDX] :: loud cry, yell; vociferor_V = mkV "vociferari" ; -- [XXXDX] :: utter a loud cry, shout, yell, cry out, announce loudly; vocito_V = mkV "vocitare" ; -- [XXXDX] :: call; vocivus_A = mkA "vocivus" "vociva" "vocivum" ; -- [BXXES] :: empty; void; (form of vacivus found in Plautus); @@ -37235,78 +37224,78 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat vocula_F_N = mkN "vocula" ; -- [XXXEC] :: low, weak voice; a low tone; a petty speech; volaemum_N_N = mkN "volaemum" ; -- [XXXDX] :: large kind of pear; volans_A = mkA "volans" "volantis"; -- [FXXDM] :: flying, soaring; movable, hinged; - volans_M_N = mkN "volans" "volantis " masculine ; -- [FXXDM] :: mercury (element); flying/soaring things, birds (pl.); + volans_M_N = mkN "volans" "volantis" masculine ; -- [FXXDM] :: mercury (element); flying/soaring things, birds (pl.); volaticus_A = mkA "volaticus" "volatica" "volaticum" ; -- [XXXEC] :: winged, flying; flighty, inconstant; volatilis_A = mkA "volatilis" "volatilis" "volatile" ; -- [XXXDX] :: equipped to fly, flying fleeing, fleeting transient; - volatilitas_F_N = mkN "volatilitas" "volatilitatis " feminine ; -- [GXXEK] :: volatility; - volatio_F_N = mkN "volatio" "volationis " feminine ; -- [XXXEZ] :: flying about; hovering; - volatus_M_N = mkN "volatus" "volatus " masculine ; -- [XXXDX] :: flight; + volatilitas_F_N = mkN "volatilitas" "volatilitatis" feminine ; -- [GXXEK] :: volatility; + volatio_F_N = mkN "volatio" "volationis" feminine ; -- [XXXEZ] :: flying about; hovering; + volatus_M_N = mkN "volatus" "volatus" masculine ; -- [XXXDX] :: flight; volens_A = mkA "volens" "volentis"; -- [XXXDX] :: willing, welcome; volgo_Adv = mkAdv "volgo" ; -- [XXXDX] :: generally, universally, everywhere; publicly, in/to the crowd/multitude/world; volgo_V = mkV "volgare" ; -- [XXXDX] :: spread around/among the multitude; publish, divulge, circulate; prostitute; volgus_N_N = mkN "volgus" ; -- [XXXBO] :: common people/general public/multitude/common herd/rabble/crowd/mob; flock; - volitio_F_N = mkN "volitio" "volitionis " feminine ; -- [GXXFX] :: volition; (Spinoza); act of willing; resolution; (w/reference to will of God); + volitio_F_N = mkN "volitio" "volitionis" feminine ; -- [GXXFX] :: volition; (Spinoza); act of willing; resolution; (w/reference to will of God); volito_V = mkV "volitare" ; -- [XXXBX] :: fly about, hover over; volitus_A = mkA "volitus" "volita" "volitum" ; -- [FXXFZ] :: desired; (this is the otherwise-unknown medieval VPAR of volo, velle, volui); volnero_V2 = mkV2 (mkV "volnerare") ; -- [XXXBO] :: wound/injure/harm, pain/distress; inflict wound on; damage (things/interest of); volnificus_A = mkA "volnificus" "volnifica" "volnificum" ; -- [XXXCO] :: causing wounds; - volnus_N_N = mkN "volnus" "volneris " neuter ; -- [XXXAO] :: wound; mental/emotional hurt; injury to one's interests; wound of love; - volo_M_N = mkN "volo" "volonis " masculine ; -- [XWXEC] :: volunteers (pl.); (in the Second Punic War); + volnus_N_N = mkN "volnus" "volneris" neuter ; -- [XXXAO] :: wound; mental/emotional hurt; injury to one's interests; wound of love; + volo_M_N = mkN "volo" "volonis" masculine ; -- [XWXEC] :: volunteers (pl.); (in the Second Punic War); volo_V = mkV "volare" ; -- [XXXAX] :: fly; - volpes_F_N = mkN "volpes" "volpis " feminine ; -- [XXXDX] :: fox; + volpes_F_N = mkN "volpes" "volpis" feminine ; -- [XXXDX] :: fox; volsella_F_N = mkN "volsella" ; -- [XXXEC] :: pair of tweezers; voltium_N_N = mkN "voltium" ; -- [GSXEK] :: volt; - voltur_M_N = mkN "voltur" "volturis " masculine ; -- [XXXDX] :: vulture; + voltur_M_N = mkN "voltur" "volturis" masculine ; -- [XXXDX] :: vulture; volturius_M_N = mkN "volturius" ; -- [XXXDX] :: vulture; - voltus_M_N = mkN "voltus" "voltus " masculine ; -- [XXXDX] :: face, expression; looks; + voltus_M_N = mkN "voltus" "voltus" masculine ; -- [XXXDX] :: face, expression; looks; volubilis_A = mkA "volubilis" "volubilis" "volubile" ; -- [XXXDX] :: winding, twisting; - volubilitas_F_N = mkN "volubilitas" "volubilitatis " feminine ; -- [XXXDX] :: rapid turning, whirling; circular motion; fickleness (fate); fluency (speech); + volubilitas_F_N = mkN "volubilitas" "volubilitatis" feminine ; -- [XXXDX] :: rapid turning, whirling; circular motion; fickleness (fate); fluency (speech); volucer_A = mkA "volucer" "volucris" "volucre" ; -- [XXXBO] :: winged; able to fly; flying; in rapid motion, fleet/swift; transient, fleeting; - volucris_F_N = mkN "volucris" "volucris " feminine ; -- [XXXCO] :: bird, flying insect/creature; constellation Cycnus/Cygnus; - volumen_N_N = mkN "volumen" "voluminis " neuter ; -- [XXXDX] :: book, chapter, fold; + volucris_F_N = mkN "volucris" "volucris" feminine ; -- [XXXCO] :: bird, flying insect/creature; constellation Cycnus/Cygnus; + volumen_N_N = mkN "volumen" "voluminis" neuter ; -- [XXXDX] :: book, chapter, fold; voluntarie_Adv = mkAdv "voluntarie" ; -- [XXXES] :: willingly; voluntarius_A = mkA "voluntarius" "voluntaria" "voluntarium" ; -- [XXXDX] :: willing, voluntary; voluntarius_M_N = mkN "voluntarius" ; -- [XXXDX] :: volunteer; - voluntas_F_N = mkN "voluntas" "voluntatis " feminine ; -- [XXXAX] :: will, desire; purpose; good will; wish, favor, consent; + voluntas_F_N = mkN "voluntas" "voluntatis" feminine ; -- [XXXAX] :: will, desire; purpose; good will; wish, favor, consent; volup_Adv = mkAdv "volup" ; -- [XXXDX] :: with pleasure; pleasurably; [~ esse => be pleasurable/a source of pleasure]; volupe_Adv = mkAdv "volupe" ; -- [XXXDX] :: with pleasure; pleasurably; [~ esse => be a source of pleasure (early)]; voluptabilis_A = mkA "voluptabilis" "voluptabilis" "voluptabile" ; -- [XXXDS] :: pleasurable; voluptuous; voluptarius_A = mkA "voluptarius" "voluptaria" "voluptarium" ; -- [XXXEC] :: pleasant; concerned with or devoted to pleasure; - voluptas_F_N = mkN "voluptas" "voluptatis " feminine ; -- [XXXAX] :: pleasure, delight, enjoyment; + voluptas_F_N = mkN "voluptas" "voluptatis" feminine ; -- [XXXAX] :: pleasure, delight, enjoyment; voluptuosus_A = mkA "voluptuosus" "voluptuosa" "voluptuosum" ; -- [XXXEC] :: delightful; volutabrum_N_N = mkN "volutabrum" ; -- [XXXDX] :: place where pigs wallow, wallowing hole; 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); + 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; + vomitio_F_N = mkN "vomitio" "vomitionis" feminine ; -- [XXXCO] :: vomit; vomited matter; act of vomiting; vomito_V = mkV "vomitare" ; -- [XXXDX] :: vomit frequently or continually; - vomitor_M_N = mkN "vomitor" "vomitoris " masculine ; -- [XXXFO] :: one who vomits, vomiter; + 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; + 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; + 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); + 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_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; + 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; votivus_A = mkA "votivus" "votiva" "votivum" ; -- [XXXDX] :: offered in fulfillment of a vow; voto_V2 = mkV2 (mkV "votare") ; -- [BXXAO] :: forbid, prohibit; reject, veto; be an obstacle to; prevent; votum_N_N = mkN "votum" ; -- [XXXAO] :: vow, pledge, religious undertaking/promise; prayer/wish; votive offering; vote; voveo_V = mkV "vovere" ; -- [XXXDX] :: vow, dedicate, consecrate; - vox_F_N = mkN "vox" "vocis " feminine ; -- [XXXAX] :: voice, tone, expression; + vox_F_N = mkN "vox" "vocis" feminine ; -- [XXXAX] :: voice, tone, expression; vulcanus_M_N = mkN "vulcanus" ; -- [GXXEK] :: volcano; vulgaris_A = mkA "vulgaris" "vulgaris" "vulgare" ; -- [XXXDX] :: usual, common, commonplace, everyday; of the common people; shared by all; - vulgator_M_N = mkN "vulgator" "vulgatoris " masculine ; -- [XXXDX] :: divulger; + vulgator_M_N = mkN "vulgator" "vulgatoris" masculine ; -- [XXXDX] :: divulger; vulgatus_A = mkA "vulgatus" "vulgata" "vulgatum" ; -- [XXXDX] :: common, ordinary; conventional, well-known; vulgivagus_A = mkA "vulgivagus" "vulgivaga" "vulgivagum" ; -- [XXXDX] :: widely ranging; promiscuous; vulgo_Adv = mkAdv "vulgo" ; -- [XXXDX] :: generally, usually; universally; publicly, in/to the crowd/multitude/world; @@ -37314,21 +37303,21 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat vulgus_N_N = mkN "vulgus" ; -- [XXXBO] :: common people/general public/multitude/common herd/rabble/crowd/mob; flock; 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; - vulo_V = mkV0 "vulo" ; -- [XXXEX] :: wish, want, prefer; be willing, will; + 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; vulpecula_F_N = mkN "vulpecula" ; -- [XXXDX] :: fox (little); - vulpes_F_N = mkN "vulpes" "vulpis " feminine ; -- [XAXBX] :: fox; + vulpes_F_N = mkN "vulpes" "vulpis" feminine ; -- [XAXBX] :: fox; vulticulus_M_N = mkN "vulticulus" ; -- [XXXEC] :: look, aspect; vultuosus_A = mkA "vultuosus" "vultuosa" "vultuosum" ; -- [XXXEC] :: grimacing, affected; - vultur_M_N = mkN "vultur" "vulturis " masculine ; -- [XXXDX] :: vulture; + vultur_M_N = mkN "vultur" "vulturis" masculine ; -- [XXXDX] :: vulture; vulturius_M_N = mkN "vulturius" ; -- [XXXDX] :: vulture; vulturnus_A = mkA "vulturnus" "vulturna" "vulturnum" ; -- [FXXFM] :: south-east; south-easterly; - vultus_M_N = mkN "vultus" "vultus " masculine ; -- [XXXAX] :: face, expression; looks; + vultus_M_N = mkN "vultus" "vultus" masculine ; -- [XXXAX] :: face, expression; looks; vulva_F_N = mkN "vulva" ; -- [XBXCO] :: womb/uterus/matrix; (esp. sow's); female sexual organ; (seed) covering (L+S); wadiarius_M_N = mkN "wadiarius" ; -- [FLXFY] :: executor of will; security; - wadiator_M_N = mkN "wadiator" "wadiatoris " masculine ; -- [FLXFY] :: executor of will; + wadiator_M_N = mkN "wadiator" "wadiatoris" masculine ; -- [FLXFY] :: executor of will; warantia_F_N = mkN "warantia" ; -- [FLXFJ] :: warranty; - warantizatio_F_N = mkN "warantizatio" "warantizationis " feminine ; -- [FLXFJ] :: warranty; + warantizatio_F_N = mkN "warantizatio" "warantizationis" feminine ; -- [FLXFJ] :: warranty; warantizo_V = mkV "warantizare" ; -- [FLXFJ] :: warrant; warantus_M_N = mkN "warantus" ; -- [FLXFJ] :: warrantor; warra_F_N = mkN "warra" ; -- [FWXEM] :: war; retaliation, feud; @@ -37338,24 +37327,24 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat xenium_N_N = mkN "xenium" ; -- [XXXDO] :: present/gift from host to guest; gift (other); picture depicting such gift; xenodochium_N_N = mkN "xenodochium" ; -- [DXXES] :: guest-house; inn, caravansary; hospital/home for strangers/travelers; hospice; xenodochus_M_N = mkN "xenodochus" ; -- [DXXFS] :: one who receives strangers; superintendent of stranger's hospital/housing; - xenon_M_N = mkN "xenon" "xenonis " masculine ; -- [DXXES] :: guest-house; inn, caravansary; hospital/home for strangers/travelers; hospice; + xenon_M_N = mkN "xenon" "xenonis" masculine ; -- [DXXES] :: guest-house; inn, caravansary; hospital/home for strangers/travelers; hospice; xenoparochus_M_N = mkN "xenoparochus" ; -- [DXXFS] :: one who attends or provides for strangers; xenophobia_F_N = mkN "xenophobia" ; -- [GXXEK] :: xenophobia; hatred/antipathy towards foreigners; xerampelina_F_N = mkN "xerampelina" ; -- [XXXEC] :: dark red garments (pl.); xerophagia_F_N = mkN "xerophagia" ; -- [XBXFS] :: eating dry food; dry fast (Ecc); - xiphias_M_N = mkN "xiphias" "xiphiae " masculine ; -- [XXXDX] :: swordfish; + xiphias_M_N = mkN "xiphias" "xiphiae" masculine ; -- [XXXDX] :: swordfish; xprimus_M_N = mkN "xprimus" ; -- [XLXDO] :: one of 10 seniors of the senate/priesthood in municipium/colonia; abb. xprimus; xvir_M_N = mkN "xvir" ; -- [XLXCO] :: decemvir, one of ten men; (commission of ten, board with consular powers); xviralis_A = mkA "xviralis" "xviralis" "xvirale" ; -- [XLXCO] :: of/belonging to a decemvirate (office of decemvir/board of ten); abb. xviralis; - xviratus_M_N = mkN "xviratus" "xviratus " masculine ; -- [XXXDO] :: office of decemvir; abb. xviratus; - xylon_N_N = mkN "xylon" "xyli " neuter ; -- [XAXNO] :: cotton (plant); + xviratus_M_N = mkN "xviratus" "xviratus" masculine ; -- [XXXDO] :: office of decemvir; abb. xviratus; + xylon_N_N = mkN "xylon" "xyli" neuter ; -- [XAXNO] :: cotton (plant); xylophonum_N_N = mkN "xylophonum" ; -- [GDXEK] :: xylophone; xysticus_M_N = mkN "xysticus" ; -- [XXXDX] :: athlete; xystus_M_N = mkN "xystus" ; -- [XXXDX] :: shaded/colonnaded walk; covered way used for winter athletic exercise; yatus_A = mkA "yatus" "yata" "yatum" ; -- [XXXFX] :: gaped; zabulus_M_N = mkN "zabulus" ; -- [EEXCM] :: devil; The Devil, Satan, Prince of Evil/Darkness; evil one; 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); + 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); 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); @@ -37363,7 +37352,7 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat 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; zelo_V2 = mkV2 (mkV "zelare") ; -- [XEXFO] :: love ardently; be jealous of (L+S); be serious about; - zelotes_M_N = mkN "zelotes" "zelotae " masculine ; -- [EEXES] :: one who is jealous; who loves with jealously (God); who loves with zeal (Ecc); + zelotes_M_N = mkN "zelotes" "zelotae" masculine ; -- [EEXES] :: one who is jealous; who loves with jealously (God); who loves with zeal (Ecc); 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; @@ -37374,19 +37363,19 @@ concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat zeta_F_N = mkN "zeta" ; -- [XBXFS] :: |diet, regimen; course of treatment, way/mode of living prescribed by physician; zetarius_M_N = mkN "zetarius" ; -- [FXXFE] :: valet; chamberlain; zimmarra_F_N = mkN "zimmarra" ; -- [FEXFE] :: cassock w/small cape; - zingiber_N_N = mkN "zingiber" "zingiberis " neuter ; -- [GXXEK] :: ginger; + zingiber_N_N = mkN "zingiber" "zingiberis" neuter ; -- [GXXEK] :: ginger; zinzio_V = mkV "zinziare" ; -- [XXXDX] :: zinzie; (expressing the sound made by a blackbird); 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); zizyfum_N_N = mkN "zizyfum" ; -- [DAXNS] :: jujube plant (Pliny); - zmaragdachates_F_N = mkN "zmaragdachates" "zmaragdachatae " feminine ; -- [XXHNO] :: precious stone (described as a variety of agate); + zmaragdachates_F_N = mkN "zmaragdachates" "zmaragdachatae" feminine ; -- [XXHNO] :: precious stone (described as a variety of agate); zmaragdinus_A = mkA "zmaragdinus" "zmaragdina" "zmaragdinum" ; -- [XXHFO] :: emerald-green; zmaragdites_A = mkA "zmaragdites" "zmaragdites" "zmaragdites" ; -- [XXHNO] :: emerald-like, having the nature of emeralds; - zmaragdos_M_N = mkN "zmaragdos" "zmaragdi " masculine ; -- [XXHCO] :: green precious stone, emerald; beryl, jasper; + zmaragdos_M_N = mkN "zmaragdos" "zmaragdi" masculine ; -- [XXHCO] :: green precious stone, emerald; beryl, jasper; zmaragdus_M_N = mkN "zmaragdus" ; -- [XXHCO] :: green precious stone; emerald; beryl, jasper; - zmegma_N_N = mkN "zmegma" "zmegmatis " neuter ; -- [XXXNO] :: ointment; cleansing preparation; fine slag from copper melting; + zmegma_N_N = mkN "zmegma" "zmegmatis" neuter ; -- [XXXNO] :: ointment; cleansing preparation; fine slag from copper melting; zmyrna_F_N = mkN "zmyrna" ; -- [XXXCO] :: myrrh; Smyrna (city on the coast of Ionia); zodiacus_M_N = mkN "zodiacus" ; -- [XXXDX] :: zodiac; zona_F_N = mkN "zona" ; -- [XXXBO] :: |celestial zone; encircling band/marking; B:shingles (Herpes zoster); diff --git a/src/latin/DictLatAbs.gf b/src/latin/DictLatAbs.gf index 10697e583..e525ceb55 100644 --- a/src/latin/DictLatAbs.gf +++ b/src/latin/DictLatAbs.gf @@ -2,37402 +2,37408 @@ abstract DictLatAbs = Cat ** { -- extracted from http://archives.nd.edu/whitaker/dictpage.htm fun - A_N : N ; - Abba_N : N ; - Academia_F_N : N ; - Achillas_M_N : N ; - Achilles_M_N : N ; - Achilleus_M_N : N ; - Act_N : N ; - Adam_M_N : N ; - Adam_N : N ; - Adamus_M_N : N ; - Adonai_N : N ; - Adrumetinus_A : A ; - Adrumetinus_M_N : N ; - Adrumetum_N_N : N ; - Adrumetus_F_N : N ; - Aeduus_M_N : N ; - Aegides_M_N : N ; - Aegidius_M_N : N ; - Aegyptiacus_A : A ; - Aegyptius_A : A ; - Aegyptius_M_N : N ; - Aegyptus_F_N : N ; - Aemilius_A : A ; - Aesopus_M_N : N ; - Aethiopia_F_N : N ; - Aethiopicus_A : A ; - Aethiopissa_F_N : N ; - Aethiops_A : A ; - Aethiops_M_N : N ; - Afer_A : A ; - Afer_M_N : N ; - Afranius_A : A ; - Afranius_M_N : N ; - Africa_F_N : N ; - Africanus_A : A ; - Africus_A : A ; - Africus_M_N : N ; - Aggaeus_M_N : N ; - Aggeus_M_N : N ; - Agobardus_M_N : N ; - Agrippa_M_N : N ; - Agrippina_F_N : N ; - Alaricus_M_N : N ; - Albion_F_N : N ; - Albis_M_N : N ; - Alexander_M_N : N ; - Alexandrea_F_N : N ; - Alexandria_F_N : N ; - Alexandrinus_A : A ; - Alexandrinus_M_N : N ; - Alleluia_Interj : Interj ; - Allobrox_M_N : N ; - Alpinus_A : A ; - Alpis_F_N : N ; - Amalechita_M_N : N ; - Amazon_F_N : N ; - Ambiorix_M_N : N ; - Amburbium_N_N : N ; - America_F_N : N ; - Americanus_A : A ; - Aminaeus_A : A ; - Amineus_A : A ; - Aminneus_A : A ; - Aminnius_A : A ; - Ammanites_M_N : N ; + A_N : N ; -- [XXXCG] :: Aulus (Roman praenomen); (abb. A./Au.); [Absolvo, Antiquo => free, reject]; + Abba_N : N ; -- [EEQEE] :: Father; (Aramaic); bishop of Syriac/Coptic church; (false read obba/decanter); + Academia_F_N : N ; -- [XXXBO] :: academy, university; gymnasium where Plato taught; school built by Cicero; + Achillas_M_N : N ; -- [CXEFO] :: Achillas; (the Egyptian who murdered Pompey); + Achilles_M_N : N ; -- [XYHCO] :: Achilles, Greek hero; (other Greeks); (typifying great warrior); + Achilleus_M_N : N ; -- [XYHCO] :: Achilles, Greek hero; (other Greeks); (typifying great warrior); + Act_N : N ; -- [EEXDE] :: Acts (abbreviation); [Acta Apostolorum => Acts, book of the Bible]; + Adam_M_N : N ; -- [DEXCS] :: Adam; (Hebrew); (NOM S => Adam, not Ada, otherwise 1 DECL Ad...?); + Adam_N : N ; -- [EEXDX] :: Adam; (from the Hebrew); [NOM S => Adam, not Ada (otherwise 1 DECL Ad...)]; + Adamus_M_N : N ; -- [DEXCS] :: Adam, first man; + Adonai_N : N ; -- [XEXFE] :: Lord, God; (Hebrew); + Adrumetinus_A : A ; -- [XXAES] :: Andrumetine, of/from Andrumetum/Hadrumetum (city of Africa propria/Byzacene); + Adrumetinus_M_N : N ; -- [XXAFS] :: Andrumetine, inhabitant of Andrumetum/Hadrumetum (city in Africa/Byzacane); + Adrumetum_N_N : N ; -- [XXAES] :: Andrumetum/Hadrumetum (city of Africa propria, capital of province Byzacene); + Adrumetus_F_N : N ; -- [XXAES] :: Andrumetum/Hadrumetum (city of Africa propria, capital of province Byzacene); + Aeduus_M_N : N ; -- [XXFDO] :: Aedui (pl.); (also Haedui); (tribe of Cen. Gaul - in Caesar's Gallic War); + Aegides_M_N : N ; -- [XYXDO] :: son of Aegeus (i.e. Theseus); descendants of Aegeus (pl.); + Aegidius_M_N : N ; -- [EXXEE] :: Giles; (St. Giles, patron of beggars/Edinburgh); (Giles of Rome, theologian); + Aegyptiacus_A : A ; -- [XXEEO] :: Egyptian; of/connected with Egypt; + Aegyptius_A : A ; -- [XXECO] :: Egyptian; of/connected with Egypt; + Aegyptius_M_N : N ; -- [XXECO] :: Egyptian, inhabitant of Egypt; Egyptian sage/prophet; + Aegyptus_F_N : N ; -- [XXECO] :: Egypt; + Aemilius_A : A ; -- [XXXCS] :: Aemilian; of Aemilius gens; + Aesopus_M_N : N ; -- [XGHCO] :: Aesop (Greek author of fables); (Roman tragic actor contemporary with Cicero); + Aethiopia_F_N : N ; -- [XXACO] :: Ethiopia; present day Sudan; inland central Africa; + Aethiopicus_A : A ; -- [XXXCZ] :: Ethiopian; + Aethiopissa_F_N : N ; -- [XXAES] :: Ethiopian woman, female inhabitant of "Ethiopia"/Sudan; negro/black woman; + Aethiops_A : A ; -- [XXAEO] :: Ethiopian, of/connected with "Ethiopia"/Sudan/central Africa; + Aethiops_M_N : N ; -- [XXACO] :: Ethiopian, inhabitant of "Ethiopia"/Sudan; negro/black man; black slave; + Afer_A : A ; -- [XXXBO] :: African; of/connected with Africa; + Afer_M_N : N ; -- [XXXBO] :: African; inhabitant of north coast of Africa (except Egypt); Carthaginian; + Afranius_A : A ; -- [XXXCO] :: Afranius; (Roman gens name); (L. Afranius -> one of Pompey's generals); + Afranius_M_N : N ; -- [XXXCO] :: Afranius; (Roman gens name); (L. Afranius -> one of Pompey's generals); + Africa_F_N : N ; -- [XXACO] :: Africa (North); (Roman province); Libya (Carthagenian); the continent; + Africanus_A : A ; -- [XXXCO] :: African; from/of Africa; plants/animals from Africa; + Africus_A : A ; -- [XXXCO] :: African; from the southwest (e.g. sea between Africa and Sicily, wind); + Africus_M_N : N ; -- [XXXCO] :: southwest wind; + Aggaeus_M_N : N ; -- [XEXFE] :: Haggai/Aggeus; (minor prophet); (book of Old Testament); + Aggeus_M_N : N ; -- [XEXFE] :: Haggai/Aggeus; (minor prophet); (book of Old Testament); + Agobardus_M_N : N ; -- [DEFFZ] :: Agobard; (Bishop of Lyons, 816-840); + Agrippa_M_N : N ; -- [CLICC] :: Agrippa; (Roman cognomen); [Menenius A~ => fable of the belly and members]; + Agrippina_F_N : N ; -- [CLICC] :: Agrippina (Roman woman's name); (mother of Nero); [Colonia ~ => Cologne]; + Alaricus_M_N : N ; -- [DWXFS] :: Alaric; (Gothic king who sacked Rome in 410 AD); + Albion_F_N : N ; -- [XXBES] :: Britain (ancient name); + Albis_M_N : N ; -- [XXGEO] :: Elbe; (river in Germany); + Alexander_M_N : N ; -- [BXHCO] :: Alexander; (common Greek name); (Alexander the Great - Macedonian king/general); + Alexandrea_F_N : N ; -- [XXECO] :: Alexandria; (City in Egypt and others); + Alexandria_F_N : N ; -- [XXECO] :: Alexandria; (City in Egypt and others); + Alexandrinus_A : A ; -- [XXECO] :: Alexandrian, of/belonging to Alexandria (City in Egypt and others); + Alexandrinus_M_N : N ; -- [XXEEE] :: Alexandrian, citizen/inhabitant of Alexandria (City in Egypt and others); + Alleluia_Interj : Interj ; -- [EEQCE] :: Halleluia, cry of joy and praise to God; (praise ye Jehovah); + Allobrox_M_N : N ; -- [XXFES] :: Allobroges (pl.); (tribe of Gaul - in Caesar's Gallic War); + Alpinus_A : A ; -- [XXXCO] :: Alpine; of the Alps; + Alpis_F_N : N ; -- [XXXCO] :: Alps (usually pl.), mountains to the north of Italy; + Amalechita_M_N : N ; -- [EXQFW] :: Amalechite, one from the tribe of Amalech; (David slaughtered them - 2 Samuel); + Amazon_F_N : N ; -- [XYXCO] :: Amazon, member of race of legendary female warriors; woman as man's antagonist; + Ambiorix_M_N : N ; -- [XXXCO] :: Ambiorix, a chief of the Eburones, a tribe of Gaul, central Normandy - Caesar; + Amburbium_N_N : N ; -- [CEIFO] :: Amburbia festival, annual expiatory procession round Rome; + America_F_N : N ; -- [HXXFE] :: America; + Americanus_A : A ; -- [HXXEZ] :: American; + Aminaeus_A : A ; -- [XAXCO] :: Aminean; (applied to vines/grapes/wine, myrrh); (of a region in eastern Italy); + Amineus_A : A ; -- [XAXCO] :: Aminean; (applied to vines/grapes/wine, myrrh); (of a region in eastern Italy); + Aminneus_A : A ; -- [XAXCO] :: Aminean; (applied to vines/grapes/wine, myrrh); (of a region in eastern Italy); + Aminnius_A : A ; -- [XAXCO] :: Aminean; (applied to vines/grapes/wine, myrrh); (of a region in eastern Italy); + Ammanites_M_N : N ; -- [EXQEW] :: Ammonite, inhabitant of Ammon (land north-east of the Dead Sea); Ammanitis_1_N : N ; -- [EXQEW] :: Ammonite woman, inhabitant of Ammon (land north-east of the Dead Sea); - Ammanitis_2_N : N ; - Ammanitis_A : A ; - Ammineus_A : A ; - Andreas_M_N : N ; - Androgeosos_M_N : N ; - Androgyne_F_N : N ; - Anglia_F_N : N ; - Anglicanus_A : A ; - Anglicanus_M_N : N ; - Anglice_Adv : Adv ; - Anglicus_M_N : N ; - Anglus_M_N : N ; - Anticato_M_N : N ; - Antichristus_M_N : N ; - Antiochea_F_N : N ; - Antiochenesis_M_N : N ; - Antiochensis_A : A ; - Antiochensis_M_N : N ; - Antiochenus_A : A ; - Antiochenus_M_N : N ; - Antiochia_F_N : N ; - Antiochinus_A : A ; - Antonius_A : A ; - Antonius_M_N : N ; - Antuuerpia_F_N : N ; - Antverpia_F_N : N ; - Ap_N : N ; - Apollinaris_A : A ; - Apollo_M_N : N ; - App_N : N ; - Apr_A : A ; - Aprilis_A : A ; - Aprilis_M_N : N ; - Aquileia_F_N : N ; - Aquilius_A : A ; - Aquilius_M_N : N ; - Aquisgranenis_A : A ; - Aquisgranum_N_N : N ; - Aquitania_F_N : N ; - Aquitanus_A : A ; - Arabia_F_N : N ; - Arabs_M_N : N ; - Arar_M_N : N ; - Araris_M_N : N ; - Arbavalium_N_N : N ; - Archiacus_A : A ; - Archias_M_N : N ; - Arcitenens_M_N : N ; - Arctos_F_N : N ; - Arctous_A : A ; - Arcturus_M_N : N ; - Arctus_F_N : N ; - Argentoratus_N_N : N ; - Argestes_M_N : N ; - Arianismus_M_N : N ; - Arianus_M_N : N ; - Ariovistus_M_N : N ; - Aristotoles_M_N : N ; - Arithmus_M_N : N ; - Armenia_F_N : N ; - Armenius_A : A ; - Armilustrium_N_N : N ; - Arquitenens_M_N : N ; - Arvernus_M_N : N ; - Asia_F_N : N ; - Asianus_A : A ; - Asianus_M_N : N ; - Asiaticus_A : A ; - Assisinas_A : A ; - Assisium_N_N : N ; - Assyrius_M_N : N ; - Athena_F_N : N ; - Atheneus_A : A ; - Atheniensis_A : A ; - Atheniensis_M_N : N ; - Attice_Adv : Adv ; - Atticus_A : A ; - Atuatucus_M_N : N ; - Au_N : N ; - Aug_A : A ; - Augusta_F_N : N ; - Augustalis_A : A ; - Augustalis_M_N : N ; - Augustianismus_M_N : N ; - Augustinus_M_N : N ; - Augustus_A : A ; - Augustus_M_N : N ; - Aulus_M_N : N ; - Austeralia_F_N : N ; - Azotice_Adv : Adv ; - Azoticus_A : A ; - Azotius_A : A ; - Azotus_F_N : N ; - Azrael_N : N ; - Baal_N : N ; + Ammanitis_2_N : N ; -- [EXQEW] :: Ammonite woman, inhabitant of Ammon (land north-east of the Dead Sea); + Ammanitis_A : A ; -- [EXQEW] :: Ammonite, of Ammon (land north-east of the Dead Sea); + Ammineus_A : A ; -- [XAXCO] :: Aminean; (applied to vines/grapes/wine, myrrh); (of a region in eastern Italy); + Andreas_M_N : N ; -- [XXXDE] :: Andrew; + Androgeosos_M_N : N ; -- [XXXCO] :: Androgeos (son of Minos and Pasiphae, whose death was avenged on Athens); + Androgyne_F_N : N ; -- [XXXFO] :: masculine heroic woman; (nickname given to a mannish woman/tomboy); + Anglia_F_N : N ; -- [EXBCE] :: England; Anglia, place of the Angles, area/kingdom in eastern England; + Anglicanus_A : A ; -- [GEBDE] :: Anglican (follower of the Church of England); + Anglicanus_M_N : N ; -- [GEBDE] :: Anglican (follower of the Church of England); + Anglice_Adv : Adv ; -- [EXBEE] :: in/into English; + Anglicus_M_N : N ; -- [FXBDE] :: Englishman; + Anglus_M_N : N ; -- [EXBDX] :: Englishman; English (pl.); Angles (Low German invaders/colonizers of Britain); + Anticato_M_N : N ; -- [XXXDO] :: title of books which Caesar wrote in reply to Cicero's panegyric Cato; + Antichristus_M_N : N ; -- [EEXCS] :: Antichrist; man of sin (Souter); + Antiochea_F_N : N ; -- [XXQCO] :: Antioch; (city in Roman Syria/modern Turkey); + Antiochenesis_M_N : N ; -- [XXQEO] :: Antiochian, person from Antioch; high official from Antioch (2 Maccabee 6:1); + Antiochensis_A : A ; -- [XXQEO] :: Antiochian, of/from/pertaining to Antioch (city) or King Antiochus; + Antiochensis_M_N : N ; -- [XXQEO] :: Antiochian, person from Antioch; high official from Antioch (2 Maccabee 6:1); + Antiochenus_A : A ; -- [XXQFS] :: Antiochian, of/from/pertaining to Antioch (city) or King Antiochus; + Antiochenus_M_N : N ; -- [XXQFS] :: Antiochian, person from Antioch; high official from Antioch (2 Maccabee 6:1); + Antiochia_F_N : N ; -- [XXQCO] :: Antioch; (city in Roman Syria/modern Turkey); + Antiochinus_A : A ; -- [XXQFS] :: of/from/pertaining to King or philosopher Antiochus; + Antonius_A : A ; -- [XXXCO] :: Antony/Anthony; (Roman gens name); (M. Antonius -> Mark Antony, triumvir); + Antonius_M_N : N ; -- [XXXCO] :: Antony/Anthony; (Roman gens name); (M. Antonius -> Mark Antony, triumvir); + Antuuerpia_F_N : N ; -- [GXNET] :: Antwerp; + Antverpia_F_N : N ; -- [FXNFE] :: Antwerp; + Ap_N : N ; -- [XXXCO] :: Appius (Roman praenomen); (esp, gens Claudia); Ap.Cl. Caecus built Appian Way; + Apollinaris_A : A ; -- [XEXES] :: sacred to Apollo; of Apollo (games); + Apollo_M_N : N ; -- [XEXBO] :: Apollo; (Roman god of prophecy, music, poetry, archery, medicine); + App_N : N ; -- [XXXCO] :: Appius (Roman praenomen); (abb. App.); + Apr_A : A ; -- [XXXCO] :: April (month/mensis understood); abb. Apr.; + Aprilis_A : A ; -- [XXXCO] :: April (month/mensis understood); abb. Apr.; + Aprilis_M_N : N ; -- [XXXEO] :: April; + Aquileia_F_N : N ; -- [XXIDO] :: Aquileia; (town in NE Italy); + Aquilius_A : A ; -- [XXXDO] :: Aquilius; (Roman gens); of/named after Aquilius; + Aquilius_M_N : N ; -- [XXXDO] :: Aquilius; (Roman gens name); of/named after Aquilius; + Aquisgranenis_A : A ; -- [EXGEE] :: of Aachen; + Aquisgranum_N_N : N ; -- [EXGET] :: Aachen; + Aquitania_F_N : N ; -- [XXFEO] :: Aquitania, one of the divisions of Gaul/France (southwest); + Aquitanus_A : A ; -- [XXFEO] :: of Aquitania (southwest Gaul/France); + Arabia_F_N : N ; -- [XXXCO] :: Arabia; Aden; [~ Felix => Yemen]; + Arabs_M_N : N ; -- [XXXCO] :: Arab, people of Arabia; + Arar_M_N : N ; -- [XXFDO] :: Arar/Saone; (river in Gaul, tributary of the Rhone); + Araris_M_N : N ; -- [XXFDO] :: Arar/Saone; (river in Gaul, tributary of the Rhone); + Arbavalium_N_N : N ; -- [XEXFX] :: Arbarvalia festival (pl.); + Archiacus_A : A ; -- [XXXFS] :: made by Archius (cabinet maker, maker of plain/cheap couches); + Archias_M_N : N ; -- [XXXES] :: Archius; (cabinet maker, maker of plain couches); Greek poet defended by Cicero + Arcitenens_M_N : N ; -- [XEXDO] :: Apollo (who carries a bow), (constellation) Sagittarius, the Archer; + Arctos_F_N : N ; -- [XSXCO] :: Big/Little Dipper/Bear, region of celestial pole; North lands/people/direction; + Arctous_A : A ; -- [XXXCO] :: northern, arctic, of the far north; occurring in/connected with the far north; + Arcturus_M_N : N ; -- [XXXCO] :: Acturus, brightest star in Bootes; the whole constellation; arction plant; + Arctus_F_N : N ; -- [XSXCO] :: Big/Little Dipper/Bear, region of celestial pole; North lands/people/direction; + Argentoratus_N_N : N ; -- [EXGFE] :: Strasbourg; + Argestes_M_N : N ; -- [XXXES] :: west-southwest wind (acc. to Vitruvius); west-northwest wind (Plinius); + Arianismus_M_N : N ; -- [EEXEE] :: Arianism, heresy of Arius of Alexandria (Christ not same essence as God); + Arianus_M_N : N ; -- [EEXEE] :: Arian, one holding to Arian heresy (Christ not same essence as God); + Ariovistus_M_N : N ; -- [XXXCO] :: Ariovistus; (king of a German tribe - in Caesar's Gallic War); + Aristotoles_M_N : N ; -- [BSHCS] :: Aristotle; famous learned Greek; + Arithmus_M_N : N ; -- [DEXES] :: another name for the fourth book of the Bible, Numbers; + Armenia_F_N : N ; -- [XXQCO] :: Armenia; (country lying north of Persia); + Armenius_A : A ; -- [XXQCO] :: Armenian; [~ prunum => apricot]; + Armilustrium_N_N : N ; -- [XWXEO] :: ceremony of purifying arms; place on Aventine Hill where performed; + Arquitenens_M_N : N ; -- [XEXEO] :: Apollo (who carries a bow), (constellation) Sagittarius, the Archer; + Arvernus_M_N : N ; -- [XXXCO] :: Arverni (pl.); (tribe of SE Gaul - in Caesar's Gallic War); + Asia_F_N : N ; -- [XXQBO] :: Asia (Roman province formed from Pergamene); Asia Minor; the East; + Asianus_A : A ; -- [XXXCO] :: Asian, of/from/belonging to Asia (Roman province)/Asia Minor/the East; florid; + Asianus_M_N : N ; -- [XXXCO] :: Asian, inhabitant of Asia (Roman province)/Asia Minor/the East; Easterner; + Asiaticus_A : A ; -- [XXQCO] :: Asiatic, of/connected with Asia/the East/Asia Minor; w/Asiatic/florid style; + Assisinas_A : A ; -- [EEIDE] :: of Assisi; (St Francis of Assisi); + Assisium_N_N : N ; -- [EEIDE] :: Assisi; (home of St Francis); + Assyrius_M_N : N ; -- [EXQEE] :: Assyrian; inhabitant of Assur/Assyria; + Athena_F_N : N ; -- [XXHCO] :: Athens (pl.); inhabitants of Athens, Athenians; + Atheneus_A : A ; -- [XXHCO] :: Athenian, of Athens; of inhabitants of Athens/Athenians; + Atheniensis_A : A ; -- [XXHCO] :: Athenian, of Athens; of inhabitants of Athens/Athenians; + Atheniensis_M_N : N ; -- [XXHCO] :: Athenian, inhabitant of Athens; + Attice_Adv : Adv ; -- [XXHCO] :: Attic, in Attic/Athenian manner; elegantly; + Atticus_A : A ; -- [XXXCO] :: Attic, Athenian; classic, elegant; + Atuatucus_M_N : N ; -- [XXFCT] :: Atuatuci, tribe of north (Belgic) Gaul - Caesar; + Au_N : N ; -- [XXXCG] :: Aulus (Roman praenomen); (abb. A./Au.); + Aug_A : A ; -- [XXXCO] :: August (month/mensis understood); abb. Aug.; renamed from Sextilis in 8 BC; + Augusta_F_N : N ; -- [CLICO] :: Augusta; (title of Emperor's wife/occasionally other close female relatives); + Augustalis_A : A ; -- [EXXEE] :: of/pertaining to Augustus; imperial; + Augustalis_M_N : N ; -- [EXXEE] :: member of imperial military/religious group; title of Prefect of Egypt (OED); + Augustianismus_M_N : N ; -- [EEXFE] :: Augustinism, teaching of St Augustine (Bishop of Hippo, 354-430, City of God); + Augustinus_M_N : N ; -- [DEACF] :: Augustine; (St./Bishop of Hippo, 354-430, author of Confessions, City of God); + Augustus_A : A ; -- [XXXCO] :: August (month) (mensis understood); abb. Aug.; renamed from Sextilis in 8 BC; + Augustus_M_N : N ; -- [CLIAO] :: Augustus; (title of Octavius Caesar, Emperor, 27 BC-14 AD); of all emperors; + Aulus_M_N : N ; -- [XXXEO] :: Aulus (Roman praenomen); (abb. A.); + Austeralia_F_N : N ; -- [HXXFE] :: Australia; + Azotice_Adv : Adv ; -- [EXQFW] :: Azotian, in the language/manner of Azotus/Ahdod (Esdud); (city of Palestine); + Azoticus_A : A ; -- [EXQFW] :: Azotian, of/from Azotus/Ahdod (Esdud); (city of Palestine near the coast); + Azotius_A : A ; -- [EXQFW] :: Azotian, of/from Azotus/Ahdod (now Esdud); (city of Palestine near the coast); + Azotus_F_N : N ; -- [EXQFS] :: Ahdod (now Esdud); (city of Palestine near the coast); + Azrael_N : N ; -- [EXQFE] :: Azrael (Aramaic), angel of death; + Baal_N : N ; -- [DEXES] :: Baal (Syrian deity); 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 ; - Bacchanal_N_N : N ; - Bacchanalis_A : A ; - Bacchanalium_N_N : N ; - Bacchus_M_N : N ; - Baetica_F_N : N ; - Bardus_M_N : N ; - Baruch_N : N ; - Beda_M_N : N ; - Beduinus_M_N : N ; - Belga_M_N : N ; - Belgicus_A : A ; - Belgium_N_N : N ; - Bellovacus_M_N : N ; - Bethleemites_M_N : N ; - Bethsames_A : A ; - Bethsames_F_N : N ; - Biblia_F_N : N ; - Biblium_N_N : N ; - Bibrax_F_N : N ; - Bicorniger_M_N : N ; - Biturig_M_N : N ; - Boius_M_N : N ; - Bononia_F_N : N ; - Boreas_M_N : N ; - Borras_M_N : N ; - Breve_N_N : N ; - Britannia_F_N : N ; - Britannicus_A : A ; - Britannus_M_N : N ; - Brito_M_N : N ; - Britto_M_N : N ; - Bronte_F_N : N ; - Brontes_M_N : N ; - Brutus_M_N : N ; - Bugella_F_N : N ; - Byzantium_N_N : N ; - C_N : N ; - Cacus_M_N : N ; - Caesar_M_N : N ; - Caesaraugusta_F_N : N ; - Caeso_M_N : N ; - Caledonia_F_N : N ; - Calenda_F_N : N ; - Caligula_M_N : N ; - Calpurnia_F_N : N ; - Calvinianus_A : A ; - Calvinismus_M_N : N ; - Calvinista_M_N : N ; - Cambria_F_N : N ; - Camena_F_N : N ; - Campania_F_N : N ; - Cantabrigia_F_N : N ; - Cantuaria_F_N : N ; - Capitolinus_A : A ; - Capitolium_N_N : N ; - Capua_F_N : N ; - Capuccinus_M_N : N ; - Carchedonius_A : A ; - Carmelitus_C_N : N ; - Carmelus_M_N : N ; - Carnutes_M_N : N ; - Carolus_M_N : N ; - Cartago_F_N : N ; - Carthaginiensis_A : A ; - Carthaginiensis_M_N : N ; - Carthago_F_N : N ; - Carthusianus_M_N : N ; - Carus_M_N : N ; - Cassius_A : A ; - Cassius_M_N : N ; - Cassivellaunus_M_N : N ; - Castor_M_N : N ; - Cathartarium_N_N : N ; - Cato_M_N : N ; - Celer_M_N : N ; - Celtus_A : A ; - Cenabum_N_N : N ; - Cephas_N : N ; - Cerbereus_A : A ; - Cerberos_M_N : N ; - Cerberus_M_N : N ; - Cereale_N_N : N ; - Cerealis_A : A ; - Ceres_F_N : N ; + Babylon_2_N : N ; -- [XXQFO] :: Babylon (city on Euphrates, capital of Babylonia); people of Babylon; + Babylonia_F_N : N ; -- [XXQCO] :: Babylon (city on Euphrates, capital of Babylonia); Babylonia; + Babylonius_A : A ; -- [XXQEO] :: Babylonian, of Babylon (city on Euphrates, capital of Babylonia); + Babylonius_M_N : N ; -- [XXQEO] :: Babylonian, inhabitant of Babylon (city on Euphrates, capital of Babylonia); + Bacchanal_N_N : N ; -- [XEXDO] :: |shrine/site where the rites of Bacchus were celebrated; + Bacchanalis_A : A ; -- [XEXDO] :: relating to Bacchus; Bacchanalian; + Bacchanalium_N_N : N ; -- [XEXCO] :: festival/rites (pl.) of Bacchus; Bacchanalian orgy; + Bacchus_M_N : N ; -- [XEXCO] :: Bacchus, god of wine/vine; the vine, wine; + Baetica_F_N : N ; -- [XXSDO] :: Baectia (province in southern Spain, Andalusia/Granada); + Bardus_M_N : N ; -- [XDFEO] :: bard (Gallic), poet-singer, minstrel; + Baruch_N : N ; -- [EEXFE] :: Baruch; (book of Old Testament); + Beda_M_N : N ; -- [EEXEE] :: Bede; (Venerable Bede, 673-735, English historian/theologian); + Beduinus_M_N : N ; -- [GXXEK] :: Bedouin; + Belga_M_N : N ; -- [XXFCO] :: Belgae (pl.); (people of N Gaul - in Caesar's Gallic War); + Belgicus_A : A ; -- [XXFCO] :: of/connected with the Belgae; (tribe of N Gaul); + Belgium_N_N : N ; -- [XXFEO] :: Belgium, country of Belgae; (tribe of N Gaul); + Bellovacus_M_N : N ; -- [XXXDO] :: Bellovaci, tribe of Gallia Belgica (near Rouen in Normandy) - Caesar; + Bethleemites_M_N : N ; -- [EXQDW] :: inhabitant/citizen of Bethlehem; (town where Christ was born); + Bethsames_A : A ; -- [EXQEW] :: Bethsamite, of/from Bethsames (town in Palistine); + Bethsames_F_N : N ; -- [EXQEW] :: Bethsames; (town in Palistine); + Biblia_F_N : N ; -- [EEXCS] :: Bible (later and more common usage); + Biblium_N_N : N ; -- [DEXCS] :: Bible (pl.) (early usage); + Bibrax_F_N : N ; -- [CXFDX] :: Bibrax, a town of the Remi in central Gaul; + Bicorniger_M_N : N ; -- [XEXCO] :: two-horned (god), epithet of Bacchus; + Biturig_M_N : N ; -- [CXFDX] :: Bituriges (pl.), a people of SW Gaul, Aquitania - in Caesar's "Gallic War"; + Boius_M_N : N ; -- [CXFDX] :: Boli (pl.), a people of Cisalpine Gaul - in Caesar's "Gallic War"; + Bononia_F_N : N ; -- [GXIET] :: Bologna; + Boreas_M_N : N ; -- [XXXCO] :: north wind; the_North; Boreas (god of the north wind); + Borras_M_N : N ; -- [XXXES] :: north wind; the North; Boreas (god of the north wind); + Breve_N_N : N ; -- [FEXET] :: Papal letter, Brief; + Britannia_F_N : N ; -- [XXBDX] :: Britain; + Britannicus_A : A ; -- [XXXCZ] :: British; + Britannus_M_N : N ; -- [XXBBX] :: Britons (usu, pl.); + Brito_M_N : N ; -- [XXBDO] :: Briton, inhabitant of Britain; (usu. pl.); + Britto_M_N : N ; -- [XXBFO] :: Briton, inhabitant of Britain; (usu. pl.); + Bronte_F_N : N ; -- [XXXNO] :: thunder; name of picture of Apeiles; name of one of horses of Sun; + Brontes_M_N : N ; -- [CEXIO] :: Thunderer, title of Jupiter; + Brutus_M_N : N ; -- [CXICO] :: Brutus; (Roman cognomen); [L. Junius Brutus => first consul; M. J. ~ assassin]; + Bugella_F_N : N ; -- [FXXFZ] :: Bugella; (medieval town famous for its records); (now Biella, 40 mi. NE Turino); + Byzantium_N_N : N ; -- [XXHCO] :: Byzantium (city on Bosphorus, later Constantinople, now Istanbul); + C_N : N ; -- [XXXCO] :: Gaius (Roman praenomen); (abb. C.); (abb. for) centum/100; + Cacus_M_N : N ; -- [XYXCO] :: Cacus, giant son of Vulcan; (lived on Mt Aventius); servant (L+S); + Caesar_M_N : N ; -- [XLXBO] :: Caesar; (Julian gens cognomen); (adopted by emperors); [C. Julius ~ => Emperor]; + Caesaraugusta_F_N : N ; -- [XXSFE] :: Saragossa (Spain); + Caeso_M_N : N ; -- [XXXCO] :: Kaeso/Caeso (Roman praenomen); (abb. K.); + Caledonia_F_N : N ; -- [CXBFO] :: Caledonia, Scotland, northern part of Britain; + Calenda_F_N : N ; -- [XXXCO] :: Kalends (pl.), 1st of month; abb. Kal./Kl.; day of proclamation, interest due; + Caligula_M_N : N ; -- [CLIDO] :: Caligula (Gaius Claudius Caesar Germanicus, 37-41 AD); little soldier('s boot); + Calpurnia_F_N : N ; -- [XXCDO] :: Calpurnia, wife of Caesar; a daughter of plebeian gens Calpurnius; + Calvinianus_A : A ; -- [GEXEK] :: Calvinist; + Calvinismus_M_N : N ; -- [GEXEK] :: Calvinism; + Calvinista_M_N : N ; -- [GEXEE] :: Calvinist; + Cambria_F_N : N ; -- [XXBEE] :: Wales; + Camena_F_N : N ; -- [XPXCO] :: Muse; poetry; poem (L+S); song; (pl.) Latin goddesses of poetry (Cas); + Campania_F_N : N ; -- [XXICO] :: Campania; (province of Italy south of Latinium noted for its fertility); + Cantabrigia_F_N : N ; -- [GXBET] :: Cambridge; + Cantuaria_F_N : N ; -- [GXBET] :: Canterbury; + Capitolinus_A : A ; -- [XXICO] :: Capitoline; (one of 7 hills of Rome); of the Capitol; (temple of ~ Jupiter); + Capitolium_N_N : N ; -- [XXICO] :: Capitol; Capitoline Hill in Rome; + Capua_F_N : N ; -- [XXXCS] :: Capua; chief city of Campania; + Capuccinus_M_N : N ; -- [GEXDE] :: Capuchin; (of order of St Francis new rule of 1528, from capuche/pointed hood); + Carchedonius_A : A ; -- [XXAFE] :: Carthaginian; + Carmelitus_C_N : N ; -- [EEXEE] :: Carmelite, White Friar; + Carmelus_M_N : N ; -- [EEQET] :: Carmel; (area/mountain range in north-west Palestine); beautiful hill (Isaiah); + Carnutes_M_N : N ; -- [XXXCO] :: Carnutes, tribe of central Gaul, around Loire - Caesar; + Carolus_M_N : N ; -- [EXFCF] :: Charles; (Charlemagne, 742-814, King of Franks, first Holy Roman Emperor); + Cartago_F_N : N ; -- [XXACO] :: Carthage; + Carthaginiensis_A : A ; -- [XXACO] :: of/belonging to Carthage, Carthaginian; (also of New Carthage in Spain); + Carthaginiensis_M_N : N ; -- [XXACO] :: Carthaginian, inhabitant of Carthage; (also of New Carthage in Spain?); + Carthago_F_N : N ; -- [XXACO] :: Carthage; + Carthusianus_M_N : N ; -- [FEXEE] :: Carthusian; Charterhouse monk; (order founded by St Bruno 1086); + Carus_M_N : N ; -- [DLIEO] :: Carus; (Emperor Marcus Aurelius Numerius Carus 282-283); + Cassius_A : A ; -- [XXXCO] :: Cassius, Roman gens; (L. C~ Longinus defeated by Helvetii; C. C~ L~ assassin); + Cassius_M_N : N ; -- [XXXCO] :: Cassius; (Roman gens name); (L. ~ Longinus defeated by Helvetii; Caesar killer); + Cassivellaunus_M_N : N ; -- [XXXCO] :: Cassiveellaunus, Commander of forces of Britons - Caesar; + Castor_M_N : N ; -- [XYHCO] :: Castor; (twin to Pollux, brother to Helen); St Elmo's fire (pl.), corposant; + Cathartarium_N_N : N ; -- [EEXFE] :: Purgatory; + Cato_M_N : N ; -- [XXICO] :: Cato; (Roman cognomen); [M. Porcius Cato => Censor]; + Celer_M_N : N ; -- [XXXDO] :: knights (pl.) (old name/precursor of equestrian order); Roman kings' bodyguard; + Celtus_A : A ; -- [XXXCO] :: Celts; (inhabitants of central Gaul); + Cenabum_N_N : N ; -- [XXFEO] :: Cenabum; town in Gaul; Orleans; + Cephas_N : N ; -- [XEXFE] :: rock (Aramaic), surname of Simon Peter; + Cerbereus_A : A ; -- [XYXDO] :: of/connected with Cerberus; (three-headed dog guarding entrance to underworld); + Cerberos_M_N : N ; -- [XYXEO] :: Cerberus; (three-headed dog guarding entrance to underworld); + Cerberus_M_N : N ; -- [XYXCO] :: Cerberus; (three-headed dog guarding entrance to underworld); + Cereale_N_N : N ; -- [XEXCO] :: festival of Ceres (pl.); + Cerealis_A : A ; -- [XEXCO] :: of/associated with Ceres, suitable for festival of Ceres; of wheat; + Ceres_F_N : N ; -- [XEXBO] :: Ceres (goddess of grain/fruits); wheat; bread; food; 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 ; - Chaldeus_A : A ; - Chaldeus_M_N : N ; - Chanaan_N : N ; - Chanan_N : N ; - Chananea_F_N : N ; - Chananeus_A : A ; - Chaos_N_N : N ; - Charmides_M_N : N ; - Charybdis_F_N : N ; - Chaus_N_N : N ; - Cherub_N : N ; - Cherubim_N : N ; - Cherubin_N : N ; - Chilo_M_N : N ; - Chius_A : A ; - Christiadum_N_N : N ; - Christiane_Adv : Adv ; - Christianismus_M_N : N ; - Christianitas_F_N : N ; - Christianizo_V : V ; - Christianus_A : A ; - Christianus_M_N : N ; - Christias_M_N : N ; - Christicola_M_N : N ; - Christifer_A : A ; - Christifidelis_A : A ; + Chalcis_2_N : N ; -- [XXXEO] :: Chalcis; (several towns in Greece/elsewhere, esp. chief city of Euboea); + Chaldaeus_A : A ; -- [XXQEO] :: Chaldaen, of/concerning Chaldaens; of their soothsayers/astrologers/astronomers; + Chaldaeus_M_N : N ; -- [XXQCO] :: Chaldaen, people of south Assyria; their soothsayers/astrologers/astronomers; + Chaldaicus_A : A ; -- [XXQEO] :: Chaldaen, of/concerning Chaldaens; of their soothsayers/astrologers/astronomers; + Chaldeus_A : A ; -- [EXQEW] :: Chaldaen, of/concerning Chaldaens; of their soothsayers/astrologers/astronomers; + Chaldeus_M_N : N ; -- [EXQCW] :: Chaldaen, people of south Assyria; their soothsayers/astrologers/astronomers; + Chanaan_N : N ; -- [EXQES] :: Canaan/Palestine; + Chanan_N : N ; -- [EXQES] :: Canaan/Palestine; + Chananea_F_N : N ; -- [EXQEW] :: Canaan, Palestine; + Chananeus_A : A ; -- [EXQEW] :: of/from Canaan/Palestine; + Chaos_N_N : N ; -- [XEXCO] :: Chaos, pit of Hell, underworld; formless/shapeless primordial matter; + Charmides_M_N : N ; -- [BDXFS] :: Charmides (comic character in Plautus' play Trinummus); (Son of Joy); + Charybdis_F_N : N ; -- [XXICO] :: Charybdis (whirlpool Sicily/Italy); cruel person; whirlpool; tortuous cavity; + Chaus_N_N : N ; -- [DEXCS] :: Chaos, pit of Hell, underworld; formless/shapeless primordial matter; + Cherub_N : N ; -- [DEXCS] :: cherub; + Cherubim_N : N ; -- [DEXCS] :: Cherubim, rank of angels; heavenly choir; cherubs (pl.); + Cherubin_N : N ; -- [DEXCS] :: Cherubim, rank of angels; heavenly choir; cherubs (pl.); + Chilo_M_N : N ; -- [XXXEO] :: Chilo; Big Lips (Roman cognomen); fellator, one who practices fellatio; + Chius_A : A ; -- [XXXEO] :: Chian, of Chios; of Chian wine; characteristic/suggestive of Chios, luxurious; + Christiadum_N_N : N ; -- [EEXCE] :: Christendom; + Christiane_Adv : Adv ; -- [DEXES] :: Christian, in Christian manner; + Christianismus_M_N : N ; -- [DEXCS] :: Christianity; + Christianitas_F_N : N ; -- [DEXCS] :: Christianity; Christian religion; Christian clergy; + Christianizo_V : V ; -- [DEXES] :: profess Christianity; + Christianus_A : A ; -- [DEXBS] :: Christian; + Christianus_M_N : N ; -- [XEXAS] :: Christian/follower of Christ; Christian clergyman; Christianity (pl.) (Beesom); + Christias_M_N : N ; -- [FEXEE] :: Christians (pl.), followers of Christ; + Christicola_M_N : N ; -- [DEXES] :: Christian, worshiper of Christ; (often used in pl.); + Christifer_A : A ; -- [FEXFE] :: Christ-bearing; + Christifidelis_A : A ; -- [FEXEE] :: faithful to Christ/Christianity; following Christ; Christifidelis_F_N : N ; -- [FEXEE] :: one of Christian faithful; follower of Christ; - Christifidelis_M_N : N ; - Christigenus_A : A ; - Christipotens_A : A ; - Christus_M_N : N ; - Chuthenus_M_N : N ; - Cicero_M_N : N ; - Cimber_M_N : N ; - Cimbricus_A : A ; - Cingetorix_M_N : N ; - Cisalpinus_A : A ; - Cisterciensis_A : A ; - Claudius_A : A ; - Claudius_M_N : N ; - Cleopatra_F_N : N ; - Clodius_A : A ; - Clodoveus_M_N : N ; - Cluniacensis_A : A ; - Cluniacum_N_N : N ; - Cn_N : N ; - Cocles_M_N : N ; - Coloniensus_A : A ; - Colossos_M_N : N ; - Colossus_M_N : N ; - Commodus_M_N : N ; - Competalis_M_N : N ; - Compitalis_M_N : N ; - Compitalium_N_N : N ; - Conpetalis_M_N : N ; - Conpitalis_M_N : N ; - Conpitalium_N_N : N ; - Consens_A : A ; - Consistens_M_N : N ; - Constans_M_N : N ; - Constantinopolis_F_N : N ; - Constantinus_M_N : N ; - Constantius_M_N : N ; - Consualium_N_N : N ; - Consus_M_N : N ; + Christifidelis_M_N : N ; -- [FEXEE] :: one of Christian faithful; follower of Christ; + Christigenus_A : A ; -- [DEXFS] :: of lineage of Christ; (i.e. posterity of Ruth/Jesse); + Christipotens_A : A ; -- [DEXFS] :: strong in Christ; + Christus_M_N : N ; -- [XEXAO] :: Christ; + Chuthenus_M_N : N ; -- [EXQFW] :: Chuthite, inhabitant of Chutha; (ancient tribe in Near East); + Cicero_M_N : N ; -- [XXXCO] :: Cicero; (gens Tullia cognomen; M. Tullius Cicero, Roman orator and statesman); + Cimber_M_N : N ; -- [XXXCO] :: Cimberi (pl.), a German tribe, invaded Gaul - in Caesar's "Gallic War"; + Cimbricus_A : A ; -- [XXXCZ] :: Cimbrian; of the Cimbri; + Cingetorix_M_N : N ; -- [CXFEO] :: Cingetorix; a Gaul of Treveri; a Briton king; + Cisalpinus_A : A ; -- [XXXCO] :: lying on south side of Alps; [Cisalpine Gaul => Northern Italy]; + Cisterciensis_A : A ; -- [FXXEE] :: Cistercian; of Citeaux; (order of monks founded 1098, stricter Benedictines); + Claudius_A : A ; -- [CLICO] :: Claudius; Roman gens; (Ti. C. Nero Germanicus, Emperor, 41-54 AD); the_Lame; + Claudius_M_N : N ; -- [XXXCO] :: Claudius; (Roman gens name); (Ti. C. Nero Germanicus, Emperor, 41-54 AD); Lame; + Cleopatra_F_N : N ; -- [XXEDS] :: Cleopatra; (Queen of Egypt); + Clodius_A : A ; -- [XXXCS] :: Claudian; of Claudius gens (= Claudius); + Clodoveus_M_N : N ; -- [EXFDE] :: Clovis; + Cluniacensis_A : A ; -- [FEXEE] :: of/pertaining to Cluny; + Cluniacum_N_N : N ; -- [FEXEE] :: Cluny; + Cn_N : N ; -- [XXXCO] :: Gnaeus (Roman praenomen); (abb. Cn.); + Cocles_M_N : N ; -- [XYXCO] :: one-eyed person; Horatius (who kept Etruscans from Subician bridge); + Coloniensus_A : A ; -- [XXGEE] :: of Cologne; + Colossos_M_N : N ; -- [XXXCO] :: Colossus of Rhodes (colossal statue in harbor); any large statue (Emperor); + Colossus_M_N : N ; -- [XXXCO] :: Colossus of Rhodes (colossal statue in harbor); any large statue (Emperor); + Commodus_M_N : N ; -- [DLIDO] :: Commodus; (Emperor Lucius Aurelius Commodus 180-192); + Competalis_M_N : N ; -- [XEXEO] :: priest of the_Lares Compitales/rural gods (worshiped at crossroads); + Compitalis_M_N : N ; -- [XEXEO] :: priest of the_Lares Compitales/rural gods (worshiped at crossroads); + Compitalium_N_N : N ; -- [XEXCO] :: festival celebrated at cross-roads in honor of the_Lares/rural gods (pl.); + Conpetalis_M_N : N ; -- [XEXEO] :: priest of the Lares Compitales/rural gods (worshiped at crossroads); + Conpitalis_M_N : N ; -- [XEXEO] :: priest of the Lares Compitales/rural gods (worshiped at crossroads); + Conpitalium_N_N : N ; -- [XEXCO] :: festival celebrated at the cross-roads in honor of the Lares/rural gods (pl.); + Consens_A : A ; -- [CEXEO] :: consensus; [Dei ~ => the twelve major deities; (rites) connected with them]; + Consistens_M_N : N ; -- [EEXEE] :: class (pl.) of penitents in early Church; + Constans_M_N : N ; -- [DLIDZ] :: Constans; (Emperor Flavius Julius Constans I 337-350); + Constantinopolis_F_N : N ; -- [DXHCS] :: Constantinople (elsewhen Byzantium or Istanbul); + Constantinus_M_N : N ; -- [DLICZ] :: Constantine; (Emperor Constantine I 306-337; II 337-340; III 407-411); + Constantius_M_N : N ; -- [DLIDZ] :: Constantius; (Emperor Constantius I 305-306; II 337-361; III 421); + Consualium_N_N : N ; -- [AEICS] :: festival of Consus (ancient god); (21 August, buried altar at Circus uncovered); + Consus_M_N : N ; -- [AEICS] :: Consus, ancient Italian god (earth/fertility/agriculture/counsels/secret plans); Conventualis_F_N : N ; -- [FEXFE] :: Conventual Franciscan; - Conventualis_M_N : N ; - Copta_M_N : N ; - Corduba_F_N : N ; - Corintheus_A : A ; - Corinthiacus_A : A ; - Corinthienis_A : A ; - Corinthium_N_N : N ; - Corinthius_A : A ; - Corinthos_F_N : N ; - Corinthus_F_N : N ; - Corsica_F_N : N ; - Cotta_M_N : N ; - Coum_N_N : N ; - Cous_A : A ; - Crassus_M_N : N ; - Creta_F_N : N ; - Crete_F_N : N ; - Cupido_M_N : N ; - Curena_F_N : N ; - Curene_F_N : N ; + Conventualis_M_N : N ; -- [FEXFE] :: Conventual Franciscan; + Copta_M_N : N ; -- [EEEEE] :: Copt, Egyptian Christian; + Corduba_F_N : N ; -- [XXSEO] :: Cordova (town in Hispania Baetica on the river Baetis); + Corintheus_A : A ; -- [AXHCO] :: of/from/pertaining to Corinth, Corinthian; of Corinthian bronze/order; + Corinthiacus_A : A ; -- [AXHEO] :: of/from/pertaining to Corinth, Corinthian; of Corinthian bronze/order; + Corinthienis_A : A ; -- [AXHCO] :: of/from/pertaining to Corinth, Corinthian; of Roman settlers at Corinth; + Corinthium_N_N : N ; -- [AXHCO] :: Corinthian bronze vessels (pl.); buildings of the Corinthian order/style; + Corinthius_A : A ; -- [AXHCO] :: of/from/pertaining to Corinth, Corinthian; of Corinthian bronze/order; + Corinthos_F_N : N ; -- [AXHCO] :: Corinth; + Corinthus_F_N : N ; -- [AXHCO] :: Corinth; + Corsica_F_N : N ; -- [XXFEO] :: Corsica; (island); + Cotta_M_N : N ; -- [XXXDX] :: Cotta; (Roman cognomen); + Coum_N_N : N ; -- [XXXDO] :: Coan wine (from Cos); garments (pl.) of Coan/fine silk; + Cous_A : A ; -- [XXXCO] :: of/from/belonging to Cos (island in Aegean, now Stanchio); (its wine/fine silk); + Crassus_M_N : N ; -- [XXXDX] :: Crassus; (Roman cognomen); [M. Licinius Crassus Dives => triumvir]; + Creta_F_N : N ; -- [XXXCO] :: Crete, island of Crete; + Crete_F_N : N ; -- [XXXCO] :: Crete, island of Crete; + Cupido_M_N : N ; -- [XEXCO] :: Cupid, son of Venus; personification of carnal desire; + Curena_F_N : N ; -- [XXACO] :: Cyrenae (pl.), town in north-west Libia, associated district including Crete; + Curene_F_N : N ; -- [XXACO] :: Cyrenae (pl.), town in north-west Libia, associated district including Crete; 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 ; - Cyprianus_M_N : N ; - Cypris_F_N : N ; - Cyprius_A : A ; - Cyprius_M_N : N ; - Cypros_M_N : N ; - Cyprus_M_N : N ; - Cyrena_F_N : N ; - Cyrenaeus_A : A ; - Cyrenaeus_M_N : N ; - Cyrene_F_N : N ; - Cyreneus_A : A ; - Cyreneus_M_N : N ; - Cyrillus_M_N : N ; - D_N : N ; - Damascenus_A : A ; - Damascenus_M_N : N ; - Damascos_M_N : N ; - Damascus_M_N : N ; - Danicus_A : A ; - Daniel_M_N : N ; - Danus_M_N : N ; - Dataria_F_N : N ; - Datarius_M_N : N ; - David_M_N : N ; - David_N : N ; - Dec_A : A ; - Decalogus_M_N : N ; - December_A : A ; - December_M_N : N ; - Decemprimatus_M_N : N ; - Decemprimus_M_N : N ; - Decimus_M_N : N ; - Deipara_F_N : N ; - Demosthenes_M_N : N ; - Deus_M_N : N ; - Deuteronomium_N_N : N ; - Diaconicon_N_N : N ; - Dialis_A : A ; - Diana_F_N : N ; - Dianarius_A : A ; - Dianium_N_N : N ; - Dianius_A : A ; - Dido_F_N : N ; - Didymus_M_N : N ; - Dijovis_M_N : N ; - Diocletianus_M_N : N ; - Dionysius_M_N : N ; - Dionysus_M_N : N ; - Diovis_M_N : N ; - Dis_M_N : N ; - Diviciacus_M_N : N ; - Dolabella_M_N : N ; - Dominica_F_N : N ; - Dominicanus_A : A ; - Dominicanus_M_N : N ; - Dominicus_C_N : N ; - Dominicus_M_N : N ; - Domitianus_M_N : N ; - Domitius_A : A ; - Domitius_M_N : N ; - Donatista_M_N : N ; - Dorius_A : A ; - Druida_M_N : N ; - Druis_M_N : N ; - Dryas_F_N : N ; - Dumnorix_M_N : N ; - Eboracum_N_N : N ; - Eburones_M_N : N ; - Ecclesiastes_M_N : N ; - Eccli_N : N ; - Eli_Interj : Interj ; - Eloi_Interj : Interj ; - Emmanuel_N : N ; - Encaenium_N_N : N ; - Encenium_N_N : N ; - Eosos_F_N : N ; - Eous_A : A ; - Eous_M_N : N ; - Ephesius_A : A ; - Ephesos_F_N : N ; - Ephesus_F_N : N ; - Ephratheus_M_N : N ; - Epicureus_A : A ; - Epicureus_M_N : N ; - Epicurius_A : A ; - Epicurius_M_N : N ; - Epiphania_F_N : N ; - Epistolarium_N_N : N ; - Eporedorix_M_N : N ; - Esdras_N : N ; - Esther_N : N ; - Euhios_M_N : N ; - Euhius_M_N : N ; + Cyclops_2_N : N ; -- [XYXCO] :: Cyclops; one of the Cyclopes (one-eyed giants of Sicily); (esp. Polyphemus); + Cydonea_F_N : N ; -- [XXHEO] :: Cydonia, city in Crete; (now Canea L+S)) + Cydonia_F_N : N ; -- [XXHES] :: Cydonia, city in Crete; (now Canea L+S)) + Cynosura_F_N : N ; -- [XSXCO] :: Little Dipper/Bear (constellation); mythical person, nurse of Zeus; + Cyprianus_M_N : N ; -- [DEAFF] :: Cyprian; (St./Bishop of Carthage, ?-258, first great Church organizer); + Cypris_F_N : N ; -- [EXQDE] :: Cyprus; (island); + Cyprius_A : A ; -- [XXQCO] :: Cyprian, of/belonging to Cyprus; (island); (plants/metals); of Cyprian copper; + Cyprius_M_N : N ; -- [XXQEO] :: Cypiran, inhabitant of Cyprus; (island); + Cypros_M_N : N ; -- [XXQCO] :: Cyprus; (island); + Cyprus_M_N : N ; -- [XXQCO] :: Cyprus; (island); + Cyrena_F_N : N ; -- [XXACO] :: Cyrenae (pl.), town in north-west Libia, associated district including Crete; + Cyrenaeus_A : A ; -- [XXXEO] :: Cyrenean (of town in north-west Libia and associated district including Crete); + Cyrenaeus_M_N : N ; -- [XXXEO] :: Cyrenean, inhabitant of Cyrenae (town in north-west Libia/district w/Crete); + Cyrene_F_N : N ; -- [XXACO] :: Cyrenae (pl.), town in north-west Libia, associated district including Crete; + Cyreneus_A : A ; -- [EXXEW] :: Cyrenean (of town in north-west Libia and associated district including Crete); + Cyreneus_M_N : N ; -- [EXXEW] :: Cyrenean, inhabitant of Cyrenae (town in north-west Libia/district w/Crete); + Cyrillus_M_N : N ; -- [FXXEE] :: Cyril; + D_N : N ; -- [EEXCW] :: |Dominus, Lord; abb. D; [calendar AD/Anno Domini => in the year of our Lord]; + Damascenus_A : A ; -- [XXQES] :: Damascus-, of/from Damascus; (city in Syria); made of damask (fabric); + Damascenus_M_N : N ; -- [XXQES] :: inhabitant of Damascus; (city in Syria); [~ pruna => Damascus/damson plums]; + Damascos_M_N : N ; -- [XXQEO] :: Damascus; (city in Syria); + Damascus_M_N : N ; -- [XXQEO] :: Damascus; (city in Syria); + Danicus_A : A ; -- [FXXEM] :: Danish; + Daniel_M_N : N ; -- [XEQEE] :: Daniel; prophet Daniel; book of Old Testament; + Danus_M_N : N ; -- [FXDEE] :: Dane; + Dataria_F_N : N ; -- [FEXFE] :: Dataria Apostolica, office of Roman Curia issuing dispensations/appointments; + Datarius_M_N : N ; -- [FEXFE] :: Cardinal-President of Dataria Apostolica; (office of Curia for dispensations); + David_M_N : N ; -- [XEQDE] :: David; + David_N : N ; -- [XEQDE] :: David; + Dec_A : A ; -- [XXXDX] :: December (month/mensis understood); abb. Dec.; + Decalogus_M_N : N ; -- [DEXES] :: Decalogue; Ten Commandments as body of law; + December_A : A ; -- [XXXCO] :: December (month/mensis understood); abb. Dec.; of/pertaining to December; + December_M_N : N ; -- [XXXCO] :: December; (the 10th month of the old calender, 12th/last month after Caesar); + Decemprimatus_M_N : N ; -- [ALXFS] :: office/dignity of the decemprimi/decaproti; (ten chief men in municipia); + Decemprimus_M_N : N ; -- [ALXFO] :: municipal finance committee (pl.); ten chief men/magistrates in municipia; + Decimus_M_N : N ; -- [XXXDX] :: Decimus (Roman praenomen); (abb. D.); + Deipara_F_N : N ; -- [DEXFS] :: Mother of God, God-bearer, she who gives birth to God; (Mary); + Demosthenes_M_N : N ; -- [AXHDO] :: Demosthenes; (Greek orator of 4th century BC); + Deus_M_N : N ; -- [XEXAO] :: God (Christian text); god; divine essence/being, supreme being; statue of god; + Deuteronomium_N_N : N ; -- [EEXES] :: Deuteronomy, fifth book of the Bible; copy of the law; + Diaconicon_N_N : N ; -- [FEHFE] :: Diaconicon, book for use of deacons in Greek rite; + Dialis_A : A ; -- [XEXCO] :: of Jupiter; of flamen Dialis; heavenly/aerial; [flamen ~ => Roman chief priest]; + Diana_F_N : N ; -- [XEXCO] :: Diana (virgin goddess of light/moon/hunt); (identified w/Artimis); moon; + Dianarius_A : A ; -- [XEXFS] :: of Diana (virgin goddess of light/moon/hunt); [radix ~ => plant mugwort]; + Dianium_N_N : N ; -- [XEXES] :: temple/place sacred to Diana (virgin goddess of light/moon/hunt); + Dianius_A : A ; -- [XEXEO] :: of Diana (virgin goddess of light/moon/hunt); + Dido_F_N : N ; -- [XXXEO] :: Dido; (queen and founder of Carthage); (lover of Aeneas); + Didymus_M_N : N ; -- [EEHEE] :: "twin", apostle Thomas; + Dijovis_M_N : N ; -- [AEIES] :: Jupiter (old name); (Italian sky god); (supreme being); heavens/sky (poetic); + Diocletianus_M_N : N ; -- [DLIEE] :: Diocletian; (Emperor Gaius Aurelius Valerius Diocletian 284-305); + Dionysius_M_N : N ; -- [XXHDO] :: Dionysius (long y); (of Syracuse); Dennis (Ecc); St Dennis of Paris; + Dionysus_M_N : N ; -- [XEHDO] :: Dionysus (Greek long y); Bacchus (Roman); god of wine; + Diovis_M_N : N ; -- [AEIEO] :: Jupiter/Jove; (Italian sky god); (supreme being); heavens/sky (poetic); + Dis_M_N : N ; -- [XEIDO] :: Dis (Roman ruler of the underworld); (originally) deity/godhead (L+S); Jupiter; + Diviciacus_M_N : N ; -- [XXXDX] :: Diviciacus; an Aeduan Gaul chief in Caesar; a Suessiones king; + Dolabella_M_N : N ; -- [CXXDO] :: Dolabella; (cognomen of gens Cornelia); (P. Cornelius ~ -> Cicero's son-in-law); + Dominica_F_N : N ; -- [EEXBE] :: Sunday, the Lord's day; + Dominicanus_A : A ; -- [FEXDE] :: Dominican; of Dominican order/Black Friars/nuns; + Dominicanus_M_N : N ; -- [FEXDE] :: Dominican, Black Friar; + Dominicus_C_N : N ; -- [EEXCB] :: Sunday, the Lord's day (assumed dies); + Dominicus_M_N : N ; -- [FESDE] :: Dominic; (St Dominic, Domingo de Guzman 1170-1221, founder of Dominicans); + Domitianus_M_N : N ; -- [CLICO] :: Domitian (Emperor 81-96); (son of Vespasian, brother of Titus, last Flavian); + Domitius_A : A ; -- [XXXCO] :: Domitius; (Roman gens name); + Domitius_M_N : N ; -- [XXXCO] :: Domitius; (Roman gens name); + Donatista_M_N : N ; -- [EEXEE] :: Donatists (pl.), followers of Donat; (forgive not renouncers); Latin beginner; + Dorius_A : A ; -- [FXXEO] :: Dorian; (esp. designating Dorian mode); + Druida_M_N : N ; -- [XXXDX] :: druids (pl.), priests of the Gauls; + Druis_M_N : N ; -- [XXXDX] :: druids (pl.), priests of the Gauls; + Dryas_F_N : N ; -- [XAXDS] :: Dryad; wood-nymph; + Dumnorix_M_N : N ; -- [CXXCT] :: Dumnorix, name of a Gaul - in Caesar's Gallic War; + Eboracum_N_N : N ; -- [GXBET] :: York; + Eburones_M_N : N ; -- [XXXDX] :: Eburones, tribe of north Gaul - Caesar; + Ecclesiastes_M_N : N ; -- [EEXES] :: Ecclesiastes, Book of Bible/OT; The Preacher; + Eccli_N : N ; -- [EEXDX] :: Ecclisiasties (abb.), Book of Bible/OT; + Eli_Interj : Interj ; -- [EEQFE] :: My God; [Eli Eli lama sabacthani => My God, my God why hast thou forsaken me]; + Eloi_Interj : Interj ; -- [EEQFE] :: My God; (Aramaic); + Emmanuel_N : N ; -- [EEQEE] :: Emmanuel, God with us; + Encaenium_N_N : N ; -- [EEXFS] :: Feast of the Dedication of the Temple (pl.); (Jewish); + Encenium_N_N : N ; -- [EEXFW] :: Feast of the Dedication of the Temple (pl.); (Jewish); + Eosos_F_N : N ; -- [XXXDX] :: dawn; Dawn (personified); the_Orient; + Eous_A : A ; -- [XXXDX] :: eastern; of the dawn; belonging to/of/set in the morning; + Eous_M_N : N ; -- [XXXDX] :: morning star; Oriental, dweller in the east; one of the horses of the Sun; + Ephesius_A : A ; -- [AXQCO] :: of/from/belonging to Ephesus (city in Asia Minor), Ephesian; + Ephesos_F_N : N ; -- [AXQCO] :: Ephesus, city in Asia Minor (w/temple of Artemis/a 7 wonder); + Ephesus_F_N : N ; -- [AXQCO] :: Ephesus, city in Asia Minor (w/temple of Artemis/a 7 wonder); + Ephratheus_M_N : N ; -- [EXQEW] :: Ephramite, member of the Israel tribe of Ephraim; + Epicureus_A : A ; -- [XSHEO] :: Epicurean, belonging to the Epicureans, following philosopher Epicurus; + Epicureus_M_N : N ; -- [XSHEO] :: Epicurean, one belonging to the Epicureans, follower philosopher Epicurus; + Epicurius_A : A ; -- [XSHEO] :: Epicurean, belonging to the Epicureans, following philosopher Epicurus; + Epicurius_M_N : N ; -- [XSHEO] :: Epicurean, one belonging to the Epicureans, follower philosopher Epicurus; + Epiphania_F_N : N ; -- [EEXEE] :: Epiphany, 12th Night, feast of three Kings/Magi; manifestation; plane surface; + Epistolarium_N_N : N ; -- [EEXEE] :: book of Epistles; + Eporedorix_M_N : N ; -- [XXXDX] :: Eporedorix; (Aedui Gaul); + Esdras_N : N ; -- [EEQEE] :: Esdras; (name sometimes given to Bible book Ezra and author); + Esther_N : N ; -- [EEQEE] :: Esther; (book/heroine of Bible, Jewess born Edessa, Queen of Persia); + Euhios_M_N : N ; -- [XXXDX] :: Bacchus, title given to Bacchus; + Euhius_M_N : N ; -- [XXXDX] :: Bacchus; title given to Bacchus; 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 ; - Eva_F_N : N ; - Evangelium_N_N : N ; - Exodus_M_N : N ; - Ezechiel_M_N : N ; - Ezra_M_N : N ; - FARES_V : V ; - Fabius_A : A ; - Fabius_M_N : N ; - Falcidia_F_N : N ; - Falerius_M_N : N ; - Falernum_N_N : N ; - Faliscus_A : A ; - Faliscus_M_N : N ; - Faunus_M_N : N ; - Favonius_M_N : N ; - Feb_A : A ; - Februarius_A : A ; - Ferale_N_N : N ; - Flaccus_M_N : N ; - Flora_F_N : N ; - Frygia_F_N : N ; - Frygius_A : A ; - Gabalus_M_N : N ; - Gabinius_A : A ; - Gabinius_M_N : N ; - Gaius_M_N : N ; - Galatea_F_N : N ; - Galatia_F_N : N ; - Galaticus_A : A ; - Galba_M_N : N ; - Galilaea_F_N : N ; - Galilaeus_A : A ; - Gallia_F_N : N ; - Gallicus_A : A ; - Gallienus_M_N : N ; - Gallus_A : A ; - Gallus_M_N : N ; - Garunna_M_N : N ; - Gelasius_M_N : N ; - Genava_F_N : N ; - Gergovia_F_N : N ; - Germania_F_N : N ; - Germanicus_A : A ; - Germanicus_M_N : N ; - Germanus_M_N : N ; - Gigans_M_N : N ; - Giganteus_A : A ; + Euminis_2_N : N ; -- [XEXEO] :: Fury/Eumenide; (usu. pl.); (euphemistically) the gracious/benevolent ones; + Euphrates_M_N : N ; -- [XXXEO] :: Euphrates; (river); + Europa_F_N : N ; -- [XXXDX] :: Europe; + Eusebius_M_N : N ; -- [DXQFZ] :: Eusebius; (Bishop of Caesarea, 260-341, "Historia Ecclesiatica"); (Pope 310); + Eva_F_N : N ; -- [EEXDX] :: Eve; + Evangelium_N_N : N ; -- [EEXDX] :: Gospel, Good News; + Exodus_M_N : N ; -- [EEXEE] :: Exodus; (book of Bible); + Ezechiel_M_N : N ; -- [EEXEE] :: Ezechiel; (Old Testament prophet); (book of Bible); + Ezra_M_N : N ; -- [EEXEE] :: Ezra; (Old Testament priest); (book of Bible); + FARES_V : V ; -- [EEQFW] :: PHARES; (MENE TEKEL PHARES writing on the wall - Vulgate Daniel 5:25); + Fabius_A : A ; -- [XXXDX] :: Fabius, Roman gens; Q. Fabius Maximus Cunctator, hero of second Punic War; + Fabius_M_N : N ; -- [XXXDX] :: Fabius; (Roman gens name); Q. Fabius Maximus Cunctator, hero second Punic War; + Falcidia_F_N : N ; -- [XLXEO] :: portion (1/4) of estate secured to legal heir by Falcidian law of 40 BC; + Falerius_M_N : N ; -- [XXIDS] :: Falisci (pl.); (Latin people/Etruscan culture); (altered by Romans to Falerii); + Falernum_N_N : N ; -- [XXXDX] :: Falernian wine; + Faliscus_A : A ; -- [XXICS] :: of/belonging to Falisci (people of Etruria); [~ venter => a sausage/haggis]; + Faliscus_M_N : N ; -- [XXIDS] :: Falisci (pl.); (Latin people of Etruscan culture); (sometimes called Aequi); + Faunus_M_N : N ; -- [XXXDX] :: rustic god; deity of forest, herdsman; sometimes identified with Pan; + Favonius_M_N : N ; -- [XXXDX] :: west wind; + Feb_A : A ; -- [XXXDX] :: February (month/mensis understood); abb. Feb.; + Februarius_A : A ; -- [XXXDX] :: February (month/mensis understood); abb. Feb.; + Ferale_N_N : N ; -- [XXXFX] :: festival of the dead (pl.); + Flaccus_M_N : N ; -- [XXIDX] :: Flaccus; (Roman cognomen); [Q. Horatius Flaccus => the poet Horace]; + Flora_F_N : N ; -- [XEXES] :: Flora; goddess of flowers; + Frygia_F_N : N ; -- [XXQEO] :: Phrygia, country comprising center and west of Asia Minor; Troy (poetical); + Frygius_A : A ; -- [XXQCO] :: Phrygian, of Phyrigia (center and west of Asia Minor); Trojan; + Gabalus_M_N : N ; -- [XXFDX] :: Gabali, tribe of Gaul; + Gabinius_A : A ; -- [XXXDX] :: Gabinus, Roman gens; (A. Gabinius, consul 58 BC, supporter of Caesar); + Gabinius_M_N : N ; -- [XXXDX] :: Gabinus; (Roman gens name); (A. Gabinius, consul 58 BC, supporter of Caesar); + Gaius_M_N : N ; -- [XXXDX] :: Gaius (Roman praenomen); (abb. C.); + Galatea_F_N : N ; -- [XXQEO] :: Galatia, region of Asia Minor; + Galatia_F_N : N ; -- [XXQEO] :: Galatia, region of Asia Minor; + Galaticus_A : A ; -- [XXQEO] :: Galatian, of/from/belonging to Galatia (region of Asia Minor); + Galba_M_N : N ; -- [CLIEO] :: Galba (Servinus Supicius Galba, Emperor, 69 AD, year of the 4 Emperors); + Galilaea_F_N : N ; -- [EEQDX] :: Galilee; + Galilaeus_A : A ; -- [EEXDX] :: Galilean; + Gallia_F_N : N ; -- [XXFAO] :: Gaul; (early Northern Italy, then South-East France, then France and Belgium); + Gallicus_A : A ; -- [XXFBO] :: Gallic, of Gaul, of the Gauls; + Gallienus_M_N : N ; -- [DLIDZ] :: Gallienus; (Emperor Publius Licinius Egnatius Gallienus 253-268); + Gallus_A : A ; -- [XXXCO] :: Gallic, of Gaul/the Gauls; class of gladiator w/Gallic armor; (also Galatian?); + Gallus_M_N : N ; -- [XXFAX] :: Gaul; the Gauls (pl.); + Garunna_M_N : N ; -- [XXFDX] :: Garonne, river in SW Gaul - in Caesar's "Gallic War"; + Gelasius_M_N : N ; -- [DEIFF] :: Gelasius; (I - St./Pope 492-496, said Primacy of Pope derived from Christ); + Genava_F_N : N ; -- [XXFDX] :: Geneva, city in Gaul - in Caesar's "Gallic War"; + Gergovia_F_N : N ; -- [XXFDX] :: Gergovia; (town of the Arverni in central Gaul); + Germania_F_N : N ; -- [XXGBX] :: Germany; + Germanicus_A : A ; -- [XXXBZ] :: German; + Germanicus_M_N : N ; -- [XXXCZ] :: Germanicus; + Germanus_M_N : N ; -- [XXGDX] :: Germans (pl.); + Gigans_M_N : N ; -- [XYXCO] :: giant; Giant; the Giants (pl.); (race defeated by the Olympians); + Giganteus_A : A ; -- [XYXCO] :: of/connected with the Giants; like that of the Giants; 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 ; - Gothus_M_N : N ; - Graecanicus_A : A ; - Graecatus_A : A ; - Graecia_F_N : N ; - Graecitas_F_N : N ; - Graeculus_A : A ; - Graeculus_M_N : N ; - Graecus_M_N : N ; - Gregorianus_A : A ; - Gulielmus_M_N : N ; - HS_N : N ; - Habacuc_N : N ; - Habraeus_A : A ; - Haceldama_N : N ; - Hadrianus_A : A ; - Hadrianus_M_N : N ; - Hadrumetinus_A : A ; - Hadrumetinus_M_N : N ; - Hadrumetum_N_N : N ; - Hadrumetus_F_N : N ; - Haeduus_M_N : N ; - Hallelujah_Interj : Interj ; - Hannibal_M_N : N ; - Hasdrubal_M_N : N ; - Hebraea_F_N : N ; - Hebraeus_A : A ; - Hebraeus_M_N : N ; - Hebraice_Adv : Adv ; - Hebraicis_A : A ; - Hebraicus_A : A ; - Hector_M_N : N ; - Hegumen_M_N : N ; - Heli_Interj : Interj ; - Helvetia_F_N : N ; - Helvetius_A : A ; - Helvetius_M_N : N ; - Hercules_M_N : N ; - Hermes_M_N : N ; - Herodes_M_N : N ; - Hesperia_F_N : N ; - Hesperus_M_N : N ; - Heva_F_N : N ; - Hibernia_F_N : N ; - Hibernus_M_N : N ; - Hieremias_M_N : N ; - Hiericuntinus_A : A ; - Hiericus_F_N : N ; - Hieronymus_M_N : N ; - Hierosolimitanus_A : A ; - Hierosolyma_F_N : N ; - Hierosolymum_N_N : N ; - Hierurgia_F_N : N ; - Hierusalem_N : N ; - Hilarium_N_N : N ; - Hilarius_M_N : N ; - Hinduismus_M_N : N ; - Hippo_M_N : N ; - Hipponensis_A : A ; - Hispane_Adv : Adv ; - Hispania_F_N : N ; - Hispanus_A : A ; - Homuncionita_M_N : N ; - Honorius_M_N : N ; - Horeb_N : N ; - Hortius_A : A ; - Hortius_M_N : N ; - Hosanna_Interj : Interj ; - Hosianna_Interj : Interj ; - Hyas_F_N : N ; - Hymen_N : N ; - Hymenaeos_M_N : N ; - Hymenaeus_M_N : N ; - Hypostasis_M_N : N ; - IIvir_M_N : N ; - INRI_N : N ; - Iconoclasta_M_N : N ; - Iconomachus_M_N : N ; - Id_N : N ; - Idithum_N : N ; - Idus_F_N : N ; - Ignatius_M_N : N ; - Ilion_N_N : N ; - Illustris_M_N : N ; - Illyricum_N_N : N ; - India_F_N : N ; - Indicus_A : A ; - Indiges_M_N : N ; - Indigis_M_N : N ; - Indus_A : A ; - Indus_M_N : N ; - Indutiomarus_M_N : N ; - Io_Interj : Interj ; - Ion_F_N : N ; - Ion_N : N ; - Ionicus_A : A ; - Iris_F_N : N ; - Isai_N : N ; - Islamicus_A : A ; - Islamismus_M_N : N ; - Israel_M_N : N ; - Israelita_M_N : N ; - Israelitis_F_N : N ; - Israhel_M_N : N ; - Israheles_M_N : N ; - Israhelita_M_N : N ; - Israhelitis_F_N : N ; - Italia_F_N : N ; - Italica_F_N : N ; - Italicus_M_N : N ; - Italus_M_N : N ; - Jacob_N : N ; - Jan_A : A ; - Januarius_A : A ; - Janus_M_N : N ; - Jemineus_A : A ; - Jerusalem_N : N ; - Jesuita_M_N : N ; - Jesuiticus_A : A ; - Jesus_M_N : N ; - Joannes_M_N : N ; - Jovis_M_N : N ; - Juda_N : N ; - Judaea_F_N : N ; - Judaeus_A : A ; - Judaeus_M_N : N ; - Judaicus_A : A ; - Judaismus_M_N : N ; - Judaizo_V : V ; - Judas_M_N : N ; - Judes_M_N : N ; - Jul_A : A ; - Julianus_M_N : N ; - Julius_A : A ; - Julius_M_N : N ; - Jun_A : A ; - Junius_A : A ; - Juno_F_N : N ; - Jupiter_M_N : N ; - Juppiter_M_N : N ; - Justinianus_M_N : N ; - K_N : N ; - Kaeso_M_N : N ; - Kal_N : N ; - Kalenda_F_N : N ; - Karthago_F_N : N ; - Kl_N : N ; - Kyrie_N : N ; - LS_N : N ; - L_N : N ; - Labeo_M_N : N ; - Lactantius_M_N : N ; - Lar_M_N : N ; - Latina_F_N : N ; - Latine_Adv : Adv ; - Latinitas_F_N : N ; - Latinus_A : A ; - Latius_A : A ; - Lavabo_N : N ; - Lebnitica_F_N : N ; - Lectionarium_N_N : N ; - Lemannus_M_N : N ; - Leo_M_N : N ; - Leodium_N_N : N ; + Gigas_2_N : N ; -- [XYXCO] :: giant; Giant; the Giants (pl.); (race defeated by the Olympians); + Gnaeus_M_N : N ; -- [XXIDX] :: Gnaeus (Roman praenomen); (abb. Cn.); + Gordianus_M_N : N ; -- [XXXCS] :: Gordianus; emperor Gordianus; + Gothicus_A : A ; -- [XXXDS] :: Gothic; of/belonging to the Goths; + Gothus_M_N : N ; -- [DXGDS] :: Goth; (tribe of Northern Germany); + Graecanicus_A : A ; -- [GXHET] :: Greek, of Greek origin; (Erasmus); + Graecatus_A : A ; -- [XXHFO] :: Greek, written in Greek; + Graecia_F_N : N ; -- [XXHBX] :: Greece; + Graecitas_F_N : N ; -- [GXHET] :: Greek language; (Erasmus); + Graeculus_A : A ; -- [XXXDX] :: Grecian, Greek (mostly in a contemptuous sense); + Graeculus_M_N : N ; -- [XXXCS] :: little Greek; contemptible Greek; + Graecus_M_N : N ; -- [XXHAX] :: Greek; the Greeks (pl.); + Gregorianus_A : A ; -- [FEXDE] :: Gregorian; + Gulielmus_M_N : N ; -- [FXXEE] :: William; (French based); + HS_N : N ; -- [XXXDX] :: sesterce (abb.), 2 1/2 asses; (IIS/HS = one+one+semi); + Habacuc_N : N ; -- [XEQFE] :: Habakkuk; (minor prophet); (book of Old Testament); + Habraeus_A : A ; -- [XXQCO] :: Hebrew, Jewish; + Haceldama_N : N ; -- [XEQFE] :: Akeldama; field of blood (Aramaic); potter's field; + Hadrianus_A : A ; -- [XXICO] :: Adriatic, of the Adriatic Sea; of the Emperor Hadrian; + Hadrianus_M_N : N ; -- [CLIBO] :: Hadrian (P. Aelius Hadrianus, Emperor, 117-138 AD); Adriatic; + Hadrumetinus_A : A ; -- [XXAES] :: Andrumetine, of/from Andrumetum/Hadrumetum (city of Africa propria/Byzacene); + Hadrumetinus_M_N : N ; -- [XXAFS] :: Andrumetine, inhabitant of Andrumetum/Hadrumetum (city in Africa/Byzacane); + Hadrumetum_N_N : N ; -- [XXAES] :: Andrumetum/Hadrumetum (city of Africa propria, capital of province Byzacene); + Hadrumetus_F_N : N ; -- [XXAES] :: Andrumetum/Hadrumetum (city of Africa propria, capital of province Byzacene); + Haeduus_M_N : N ; -- [XXFDX] :: Haedui (pl.), also Aedui, a people of Cen. Gaul - in Caesar's "Gallic War"; + Hallelujah_Interj : Interj ; -- [EEQCE] :: Halleluia, cry of joy and praise to God; (praise ye Jehovah); + Hannibal_M_N : N ; -- [BXACO] :: Hannibal; (Carthaginian general in 2nd Punic War); + Hasdrubal_M_N : N ; -- [BXADO] :: Hasdrubal; (Carthaginian name, general brother of Hanninbal); + Hebraea_F_N : N ; -- [EEXEE] :: Hebrew/Jewish woman; + Hebraeus_A : A ; -- [XXQEO] :: Hebrew, Jewish; + Hebraeus_M_N : N ; -- [EEQDS] :: Hebrew, Jew; the Hebrews (pl.); + Hebraice_Adv : Adv ; -- [EEQFS] :: Hebrew, in Hebrew, in Hebrew language; + Hebraicis_A : A ; -- [EXQEE] :: Hebrew, Jewish; + Hebraicus_A : A ; -- [EXQES] :: Hebrew, Jewish; + Hector_M_N : N ; -- [AXQDO] :: Hector; (chief Trojan hero); + Hegumen_M_N : N ; -- [FEHFE] :: Hegumen, Basilian monastery superior; abbot (of second class abbey); prior; + Heli_Interj : Interj ; -- [EEQFW] :: My God; [~ ~ lemma sabacthani => My God, my God why hast thou forsaken me]; + Helvetia_F_N : N ; -- [GXFDT] :: Switzerland; + Helvetius_A : A ; -- [XXXDX] :: of/connected with the Helvetii (pl.), a people of Cen. Gaul (Switzerland); + Helvetius_M_N : N ; -- [XXFDX] :: Helvetii (pl.), tribe in Central Gaul (Switzerland); (Caesar's "Gallic War"); + Hercules_M_N : N ; -- [XXXDX] :: Hercules (Greek hero of great strength); + Hermes_M_N : N ; -- [XYICO] :: Hermes; (Greek god Hermes = Roman Mercury); herm (pillar with bust of Hermes); + Herodes_M_N : N ; -- [XXQEO] :: Herod; (Greek name, used by ruling family of Judea); + Hesperia_F_N : N ; -- [XXIDX] :: Italy, the western land; + Hesperus_M_N : N ; -- [XXXDX] :: evening-star; + Heva_F_N : N ; -- [XXXEE] :: Eve; + Hibernia_F_N : N ; -- [XXBEO] :: Ireland; + Hibernus_M_N : N ; -- [EXBFE] :: Irishman; the Irish (pl.); + Hieremias_M_N : N ; -- [EEQFE] :: Jeremiah; (Hebrew prophet); book of Bible); + Hiericuntinus_A : A ; -- [EXQFW] :: of/from/pertaining to Jericho; (city in Palestine); (Hebrew); + Hiericus_F_N : N ; -- [XXQES] :: Jericho; (city in Palestine); (Hebrew); + Hieronymus_M_N : N ; -- [DEICF] :: Jerome; (St., 340-420, Doctor of the Church, produced Vulgate Bible); + Hierosolimitanus_A : A ; -- [XXQFE] :: of Jerusalem; + Hierosolyma_F_N : N ; -- [XXQDO] :: Jerusalem (Hebrew); + Hierosolymum_N_N : N ; -- [XXQDO] :: Jerusalem (pl.) (Hebrew); + Hierurgia_F_N : N ; -- [FEXFE] :: Mess, liturgy, sacred rite; + Hierusalem_N : N ; -- [AEQDP] :: Jerusalem (Hebrew); + Hilarium_N_N : N ; -- [XXXES] :: Hilarian feast (pl.), Feast of the Hilaria (Joy/Cybele/Great Mother) 25 March; + Hilarius_M_N : N ; -- [EXXFZ] :: Hilary; (St./Bishop of Poitiers, ~300-368, "De Trinitate", "De Synodis"); + Hinduismus_M_N : N ; -- [FEXFE] :: Hinduism; + Hippo_M_N : N ; -- [XXAFE] :: Hippo (town in north Africa); + Hipponensis_A : A ; -- [XXAFE] :: of/from Hippo (town in north Africa); + Hispane_Adv : Adv ; -- [XXSFO] :: in Spanish manner; + Hispania_F_N : N ; -- [XXSCO] :: Spain; Spanish peninsula; + Hispanus_A : A ; -- [XXSDO] :: Spanish, of Spain; + Homuncionita_M_N : N ; -- [EEXFE] :: Homuncionite (pl.); (Christian sect considering Jesus as man only); + Honorius_M_N : N ; -- [ELIDZ] :: Honorius; (Emperor Flavius Honorius 395-423); + Horeb_N : N ; -- [EEQFE] :: Sinai, Horeb; (mountain of Moses and burning bush); + Hortius_A : A ; -- [XXICO] :: Horace/Horatio; Roman gens; (H. Cocles held bridge) (Q. H~ Flaccus, poet); + Hortius_M_N : N ; -- [XXICO] :: Horace/Horatio; (Roman gens name); (H. Cocles held bridge; Q. H~ Flaccus, poet); + Hosanna_Interj : Interj ; -- [DEQEE] :: Hosanna, "God save", a cry of praise (Hebrew); + Hosianna_Interj : Interj ; -- [DEQEE] :: Hosanna, "God save", a cry of praise (Hebrew); + Hyas_F_N : N ; -- [XXXDX] :: five stars (pl.) in Taurus associated with rainy weather; + Hymen_N : N ; -- [XXHCO] :: Greek wedding chant/refrain; (personified as a god); marriage, wedding, match; + Hymenaeos_M_N : N ; -- [XXHCO] :: Greek wedding chant/refrain; (personified as a god); marriage, wedding, match; + Hymenaeus_M_N : N ; -- [XXHCO] :: Greek wedding chant/refrain; (personified as a god); marriage, wedding, match; + Hypostasis_M_N : N ; -- [EEXEP] :: Substance; Person of the Trinity; + IIvir_M_N : N ; -- [XLIEO] :: |special criminal court; keepers of Sibylline books; colony chief magistrates; + INRI_N : N ; -- [EEXCE] :: I.N.R.I. (Iesus Nazarenus Rex Iudaeorum); Jesus of Nazareth King of the Jews; + Iconoclasta_M_N : N ; -- [EEHEE] :: Iconoclast; image-breaker; one who opposes veneration of images; + Iconomachus_M_N : N ; -- [EEHEE] :: Iconoclasts (pl.); those who oppose veneration of images; + Id_N : N ; -- [XXXDX] :: Ides (pl.), abb. Id.; 15th of month, March, May, July, Oct., 13th elsewhen; + Idithum_N : N ; -- [EEQFE] :: Idithun (Hebrew); choir leader + Idus_F_N : N ; -- [XXXDX] :: Ides (pl.), abb. Id.; 15th of month, March, May, July, Oct., 13th elsewhen; + Ignatius_M_N : N ; -- [FXXEE] :: Ignatius; + Ilion_N_N : N ; -- [XXXDX] :: Ilium, Troy; + Illustris_M_N : N ; -- [DLXEQ] :: Illustrious, title of highest officers of late empire; (above Spectabiles); + Illyricum_N_N : N ; -- [XXXDX] :: Illyricum; territory NE of Adriatic; Slovenia/Croatia region, Dalmatia/Albania; + India_F_N : N ; -- [XXICO] :: India; (ill-defined region of Asia); + Indicus_A : A ; -- [XXXCZ] :: Indian; + Indiges_M_N : N ; -- [XYXCS] :: hero elevated to god after death as patron deity of country; Aeneas; + Indigis_M_N : N ; -- [XXXDX] :: deified heroes (pl.), tutelary/protective deities (local not foreign gods); + Indus_A : A ; -- [XXXBX] :: Indian, from/of/belonging to India; of Indian ivory; [dens ~ => Indian ivory]; + Indus_M_N : N ; -- [XXIDO] :: Indus (river); + Indutiomarus_M_N : N ; -- [XXFDX] :: Inductiomarus; (Gaul of Treveri, opponent of Caesar); + Io_Interj : Interj ; -- [XXXAO] :: Yo!; Hurrah! (ritual exclamation of strong emotion/joy); Ho!; Look!; Quick!; + Ion_F_N : N ; -- [XEXCS] :: Isis; daughter of Inachus; + Ion_N : N ; -- [XEXCS] :: Isis; daughter of Inachus; + Ionicus_A : A ; -- [XXHCO] :: Ionic/Ionian; (architectural order, dialect/style, meter, lascivious dance); + Iris_F_N : N ; -- [XYXCO] :: Iris (messenger of the gods, goddess of the rainbow); rainbow; + Isai_N : N ; -- [EEXDX] :: Isaiah (abb.), Book of the Bible; + Islamicus_A : A ; -- [GXXEK] :: Islamic; + Islamismus_M_N : N ; -- [GXXEK] :: Islam; + Israel_M_N : N ; -- [DEQES] :: Israel/Jacob; Israelites, decedents of Israel; people of God; + Israelita_M_N : N ; -- [DEQES] :: Israelite; + Israelitis_F_N : N ; -- [DEQES] :: Israelite woman; + Israhel_M_N : N ; -- [EEQEW] :: Israel/Jacob; Israelites, decedents of Israel; people of God; + Israheles_M_N : N ; -- [EEQFW] :: Israel/Jacob; Israelites, decedents of Israel; people of God; + Israhelita_M_N : N ; -- [EEQEW] :: Israelite; + Israhelitis_F_N : N ; -- [EEQEW] :: Israelite woman; + Italia_F_N : N ; -- [XXIAX] :: Italy; + Italica_F_N : N ; -- [FGXEK] :: italic print; + Italicus_M_N : N ; -- [XXIDX] :: Italians (pl.); + Italus_M_N : N ; -- [XXIBX] :: Italian; + Jacob_N : N ; -- [CEXCS] :: Jacob; + Jan_A : A ; -- [XXXDX] :: January (month/mensis understood); abb. Jan.; + Januarius_A : A ; -- [XXXDX] :: January (month/mensis understood); abb. Jan.; + Janus_M_N : N ; -- [XXXDX] :: Janus, Roman god of gates and doorways (with two faces); gate (Ecc); + Jemineus_A : A ; -- [EEQEW] :: Benjamite, of the tribe of Benjamin; descendant of Benjamin; + Jerusalem_N : N ; -- [AEXDX] :: Jerusalem (Hebrew); + Jesuita_M_N : N ; -- [GXXEK] :: Jesuit; + Jesuiticus_A : A ; -- [GXXEK] :: Jesuit-, of the Jesuits; + Jesus_M_N : N ; -- [XEXAX] :: Jesus; + Joannes_M_N : N ; -- [EEXDX] :: John; + Jovis_M_N : N ; -- [XEICO] :: Jupiter; (Roman chief/sky god); (supreme being); heavens/sky (poetic); + Juda_N : N ; -- [CEXCS] :: Judah; Jude; Judas; a son of Jacob; tribe of Judah; + Judaea_F_N : N ; -- [AXQBS] :: Judea; Israel; Canaan; Palestine; + Judaeus_A : A ; -- [XXQEO] :: of/relating to the Jews, Jewish; of/originating/stationed in Judea (troops); + Judaeus_M_N : N ; -- [XXQDS] :: Jew, Jewish person; the Jews (pl.); + Judaicus_A : A ; -- [XXQEO] :: of/relating to the Jews, Jewish; of/originating/stationed in Judea (troops); + Judaismus_M_N : N ; -- [DEQFS] :: Judaism; + Judaizo_V : V ; -- [EXQFS] :: live in the Jewish manner; keep the law, keep kosher?; + Judas_M_N : N ; -- [XEQDE] :: Judas; Jude;exquisit exquisit + Judes_M_N : N ; -- [CEXCS] :: Judah; Jude; Judas; a son of Jacob; tribe of Judah; + Jul_A : A ; -- [XXXDX] :: July (month/mensis understood); abb. Jul.; renamed from Quintilis in 44 BC; + Julianus_M_N : N ; -- [ELXET] :: Julian; (Flavius Claudius Julianus emperor 361-363 AD); + Julius_A : A ; -- [XXXCO] :: July (month/mensis understood); abb. Jul.; renamed from Quintilis in 44 BC; + Julius_M_N : N ; -- [XXXBO] :: Julius; (Roman gens name); (C. ~ Caesar 102-44 BC); + Jun_A : A ; -- [XXXDX] :: June (month/mensis understood); abb. Jun.; + Junius_A : A ; -- [XXXDX] :: June (month/mensis understood); abb. Jun.; + Juno_F_N : N ; -- [AEIBX] :: Juno; (Roman goddess, wife of Jupiter); + Jupiter_M_N : N ; -- [XEIEO] :: Jupiter; (Roman chief/sky god); (supreme being); heavens/sky (poetic); + Juppiter_M_N : N ; -- [XEIAO] :: Jupiter; (Roman chief/sky god); (supreme being); heavens/sky (poetic); + Justinianus_M_N : N ; -- [ELIDZ] :: Justinian; (Emperor Justinian 527-565); + K_N : N ; -- [XXXDX] :: Kaeso/Caeso (Roman praenomen); (abb. K.); + Kaeso_M_N : N ; -- [XXXDX] :: Kaeso/Caeso (Roman praenomen); (abb. K.); + Kal_N : N ; -- [XXXDX] :: Kalends (pl.), 1st of month; abb. Kal./Kl.; day of proclamation, interest due; + Kalenda_F_N : N ; -- [XXXBO] :: Kalends (pl.), 1st of month; abb. Kal./Kl.; day of proclamation, interest due; + Karthago_F_N : N ; -- [XXACO] :: Carthage; + Kl_N : N ; -- [XXXDX] :: Kalends (pl.), 1st of month; abb. Kal./Kl.; day of proclamation, interest due; + Kyrie_N : N ; -- [EEXDX] :: Oh Lord (Greek vocative); + LS_N : N ; -- [FXXFE] :: place for seal or signature; (locus sigilli); + L_N : N ; -- [XXXDX] :: Lucius (Roman praenomen); (abb. L.); + Labeo_M_N : N ; -- [XXIDO] :: Labeo; (Roman cognomen); one who has large/blubber lips (L+S); + Lactantius_M_N : N ; -- [DXXFZ] :: Lactantius; (Christian apologist, ~250-~325, "Divinarum Institutionum"); + Lar_M_N : N ; -- [XEIBO] :: Lares; (usu. pl.); tutelary god/gods of home/hearth/crossroads; home/dwelling; + Latina_F_N : N ; -- [XGIDO] :: Latin (lingua/language); Latin Way (via); (road between Rome and Beneventum); + Latine_Adv : Adv ; -- [XXXCO] :: in Latin; correctly, in good Latin; in plain Latin without circumlocution; + Latinitas_F_N : N ; -- [XXXDS] :: good Latin; L:Latin rights; + Latinus_A : A ; -- [XXXBO] :: Latin; of Latium; of/in (good/correct/plain) Latin (language); Roman/Italian; + Latius_A : A ; -- [XXICO] :: Latin; of Latium (central Italy including Rome/Italy); Roman; Italian; + Lavabo_N : N ; -- [FEXFE] :: Lavabo, ceremonial hand washing in liturgy; + Lebnitica_F_N : N ; -- [EXQFW] :: family of Libini; (son of Gerson, grandson of Levi); + Lectionarium_N_N : N ; -- [FEXFE] :: book of lessons for the Divine Office; + Lemannus_M_N : N ; -- [XXXDX] :: Lake Geneva - in Caesar's "Gallic War"; + Leo_M_N : N ; -- [XEXES] :: Leo (name of several Popes); priests (pl.) of Persian god Mithras; + Leodium_N_N : N ; -- [GXFET] :: Liege; Lesbias_1_N : N ; -- [XXHEO] :: Lesbian woman, woman from the island of Lesbos; precious stone from Lesbos; - Lesbias_2_N : N ; + Lesbias_2_N : N ; -- [XXHEO] :: Lesbian woman, woman from the island of Lesbos; precious stone from Lesbos; 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 ; - Lesbous_A : A ; - Lesbus_F_N : N ; - Lethaeus_A : A ; - Levita_M_N : N ; - Leviticus_A : A ; - Libitina_F_N : N ; - Libo_M_N : N ; - Liburnicus_A : A ; - Liburnus_M_N : N ; - Libya_F_N : N ; - Libycus_A : A ; - Libye_F_N : N ; - Licinius_A : A ; - Liger_M_N : N ; - Lingon_M_N : N ; - Litaviccus_M_N : N ; - Londinium_N_N : N ; - Londinum_N_N : N ; - Londonium_N_N : N ; - Lucas_M_N : N ; - Lucifer_M_N : N ; - Lucina_F_N : N ; - Lucius_M_N : N ; - Lugdunum_N_N : N ; - Lupercal_N_N : N ; - Lupercus_M_N : N ; - Lutetia_F_N : N ; - Lutheranismus_M_N : N ; - Lutheranus_A : A ; - Lycaonia_F_N : N ; - Lycaonius_A : A ; - MANE_V : V ; - M_N : N ; - Macedo_M_N : N ; - Macedonia_F_N : N ; - Macedonicus_A : A ; - Macedonienis_A : A ; - Macedonius_A : A ; + Lesbis_2_N : N ; -- [XXHEO] :: Lesbian woman, woman from the island of Lesbos; + Lesbium_N_N : N ; -- [XXHEO] :: Lesbian wine, wine from the island of Lesbos; vessel in embossed style; + Lesbius_A : A ; -- [XXHDO] :: Lesbian, of Lesbos (Aegean island); type of sculptured decoration; + Lesbos_F_N : N ; -- [XPHEO] :: Lesbos; (island in North Aegean, famous for lyric poetry of Sappho and wine); + Lesbous_A : A ; -- [XXHFO] :: Lesbian, of Lesbos (Aegean island); + Lesbus_F_N : N ; -- [XPHEO] :: Lesbos; (island in North Aegean, famous for lyric poetry of Sappho and wine); + Lethaeus_A : A ; -- [XXXDX] :: of Lethe; causing forgetfulness, of the underworld; + Levita_M_N : N ; -- [EEXDX] :: deacon; Levite; + Leviticus_A : A ; -- [EXXFS] :: Levitical, of/belonging to Levi/Levites; + Libitina_F_N : N ; -- [XEXDX] :: Libitina, goddess of funerals; + Libo_M_N : N ; -- [XXXEO] :: Libo; (Roman cognomen); + Liburnicus_A : A ; -- [XXKEO] :: of/belonging to the Liburian/Illyrian/Croatian people; + Liburnus_M_N : N ; -- [XXKFO] :: Liburian/Illyrian/Croatian (pl.) peoples; + Libya_F_N : N ; -- [XXACO] :: Libya (general term for North Africa); peoples (pl.) of Libya; + Libycus_A : A ; -- [XXXES] :: Libyan; African; + Libye_F_N : N ; -- [XXACO] :: Libya (general term for North Africa); peoples (pl.) of Libya; + Licinius_A : A ; -- [XXXCS] :: Licinian; of Licenius gens; + Liger_M_N : N ; -- [XXXDX] :: Liger; the Loire, river in western Gaul; + Lingon_M_N : N ; -- [XXXDX] :: Lingones (pl.), a people of W Cen. Gaul - in Caesar's "Gallic War"; + Litaviccus_M_N : N ; -- [XXXDX] :: Litaviccus; (Aedui Gaul, led forces against Caesar); + Londinium_N_N : N ; -- [XXBES] :: London; + Londinum_N_N : N ; -- [GXXET] :: London; + Londonium_N_N : N ; -- [GXXET] :: London; + Lucas_M_N : N ; -- [EEXDX] :: Luke; + Lucifer_M_N : N ; -- [EEXDX] :: Lucifer, Satan; + Lucina_F_N : N ; -- [XEXDX] :: Lucina, goddess of childbirth; childbirth; + Lucius_M_N : N ; -- [XXXDX] :: Lucius (Roman praenomen); (abb. L.); + Lugdunum_N_N : N ; -- [CXFEF] :: Lyons in France; Leyden (-Batava) in Belgium; + Lupercal_N_N : N ; -- [XXXDX] :: grotto on Palatine hill sacred to Lycean Pan; fertility festival of Lycean Pan; + Lupercus_M_N : N ; -- [XXXDX] :: protector against wolves (Pan); priest in Lycean fertility festival (15 Feb); + Lutetia_F_N : N ; -- [EXFET] :: Paris; (city in Gaul/France); + Lutheranismus_M_N : N ; -- [GXXEK] :: Lutheranism; + Lutheranus_A : A ; -- [GXXEK] :: Lutheran; + Lycaonia_F_N : N ; -- [XXQEO] :: Lycaonia (district in southern Asia Minor between Galatia and Cilicia); + Lycaonius_A : A ; -- [XXQFO] :: Lycaonian, inhabitant of Lycaonia (district in southern Asia Minor); + MANE_V : V ; -- [EEQFW] :: MENE; (MENE TEKEL PHARES writing on the wall - Vulgate Daniel 5:25); + M_N : N ; -- [XXXCO] :: Marcus (Roman praenomen); (abb. M.); (also) maximus, mille, milia, municipium; + Macedo_M_N : N ; -- [XXHCO] :: Macedonian, one from Macedonia; Macedonia, the territory; men Macedonian armed; + Macedonia_F_N : N ; -- [XXHCO] :: Macedonia; + Macedonicus_A : A ; -- [XXHCO] :: Macedonian, of/from/belonging to Macedonia; + Macedonienis_A : A ; -- [XXHFO] :: Macedonian, of/from/belonging to Macedonia; + Macedonius_A : A ; -- [XXHEO] :: Macedonian, of/from/belonging to Macedonia; 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_2_M_N : N ; -- [EXQFW] :: Madianite/Midianite, person from Madian/Midian; + Madianitis_A : A ; -- [EXQFW] :: Madianite/Midianite, of/from Madian/Midian; Madianitish; Maenas_1_N : N ; -- [XXXDX] :: Bacchante, female votary of Bacchus; inspired/frenzied woman; - Maenas_2_N : N ; - Maenas_F_N : N ; - Magdalena_F_N : N ; - Mahometanus_M_N : N ; - Mai_A : A ; - Maius_A : A ; - Majuma_F_N : N ; - Mam_N : N ; - Mamereus_M_N : N ; - Manasses_M_N : N ; - Manius_M_N : N ; - Manlius_A : A ; - Marcus_M_N : N ; - Maria_F_N : N ; - Marius_A : A ; - Marius_M_N : N ; - Maro_M_N : N ; - Mars_M_N : N ; - Mart_A : A ; - Martialis_A : A ; - Martius_A : A ; - Marxianus_A : A ; - Marxismus_M_N : N ; - Marxista_M_N : N ; - Massieum_N_N : N ; - Mauricius_A : A ; - Maurus_M_N : N ; - Mausoleum_N_N : N ; - Mavors_M_N : N ; - Melita_F_N : N ; - Melite_F_N : N ; - Menapius_M_N : N ; - Mercuria_M_N : N ; - Mercurius_M_N : N ; - Messala_M_N : N ; - Messalla_M_N : N ; - Metropolitanus_M_N : N ; - Milo_M_N : N ; - Minerva_F_N : N ; - Mithridates_M_N : N ; - Mitridates_M_N : N ; - Moabites_M_N : N ; + Maenas_2_N : N ; -- [XXXDX] :: Bacchante, female votary of Bacchus; inspired/frenzied woman; + Maenas_F_N : N ; -- [XXXDX] :: Bacchante, female votary of Bacchus; inspired/frenzied woman; + Magdalena_F_N : N ; -- [EEXDX] :: Magdalen; + Mahometanus_M_N : N ; -- [GXXEK] :: Moslem; + Mai_A : A ; -- [XXXDX] :: May (month/mensis understood); abb. Mai.; + Maius_A : A ; -- [XXXDX] :: May (month/mensis understood); abb. Mai.; + Majuma_F_N : N ; -- [ELXFS] :: Majuma festival; mock sea fight on Tiber in May; + Mam_N : N ; -- [XXXDX] :: Mamereus (Roman praenomen); (abb. Mam.); + Mamereus_M_N : N ; -- [XXIDX] :: Mamereus (Roman praenomen); (abb. Mam.); + Manasses_M_N : N ; -- [EEQEW] :: Manasses; (son of Joseph in Vulgate Genesis); + Manius_M_N : N ; -- [XXXDX] :: Manius (Roman praenomen); (abb. M'.); one who has fallen on hard times; + Manlius_A : A ; -- [XXXCS] :: Manlian; of Manlius gens; + Marcus_M_N : N ; -- [XXIDX] :: Marcus (Roman praenomen); (abb. M.); + Maria_F_N : N ; -- [EEXBX] :: Mary; + Marius_A : A ; -- [XXXDX] :: Marius, Roman gens; (C. Marius, consul around 100 BC); + Marius_M_N : N ; -- [XXXDX] :: Marius; (Roman gens name); (C. Marius, consul around 100 BC); + Maro_M_N : N ; -- [XPICO] :: Maro; (Virgil's cognomen); mythical character; for outstanding poets (pl.); + Mars_M_N : N ; -- [XEIAX] :: Mars, Roman god of war; warlike spirit, fighting, battle, army, force of arms; + Mart_A : A ; -- [XXXDX] :: March (month/mensis understood); abb. Mart.; + Martialis_A : A ; -- [XXXDX] :: of or belonging to Mars; + Martius_A : A ; -- [XXXBX] :: March (month/mensis understood); abb. Mart.; of/belonging to Mars; + Marxianus_A : A ; -- [GXXEK] :: Marxist; + Marxismus_M_N : N ; -- [GXXEK] :: Marxism; + Marxista_M_N : N ; -- [GXXEK] :: Marxist; + Massieum_N_N : N ; -- [XXXDX] :: Massic wine; + Mauricius_A : A ; -- [XXXES] :: Moorish; Mauretanian; + Maurus_M_N : N ; -- [XXABO] :: Moor; (inhabitant of North Africa); Mauretanian; + Mausoleum_N_N : N ; -- [XXXCO] :: Mausoleum (magnificent tomb of Mausolus); large/ornate tomb (esp. of Emperors); + Mavors_M_N : N ; -- [XXXDX] :: Mars, Roman god of war; warlike spirit, fighting, battle, army, force of arms; + Melita_F_N : N ; -- [XXIDO] :: Malta (island); Mljet/Meleda (Adriatic island); some cities (L+S); sea-nymph; + Melite_F_N : N ; -- [XXIDO] :: Malta (island); Mljet/Meleda (Adriatic island); some cities (L+S); sea-nymph; + Menapius_M_N : N ; -- [XXFDX] :: Menapii; Belgic (north Gallic) tribe; + Mercuria_M_N : N ; -- [XXXDX] :: Mercury, Roman god of commerce, luck; + Mercurius_M_N : N ; -- [XEXES] :: Mercury (god); + Messala_M_N : N ; -- [XXXDX] :: Messala/Messalla; (Roman cognomen); [M. Valerius ~ Corvinus => orator]; + Messalla_M_N : N ; -- [XXXDX] :: Messala/Messalla; (Roman cognomen); [M. Valerius ~ Corvinus => orator]; + Metropolitanus_M_N : N ; -- [DEXFS] :: metropolitan, bishop in metropolis/chief city; bishop of a metropolitan church; + Milo_M_N : N ; -- [CLXDS] :: Milo; (tribune Milo 57 BC, killed Clodius, defended by Cicero); + Minerva_F_N : N ; -- [XEXDX] :: Minerva, Roman goddess of wisdom; + Mithridates_M_N : N ; -- [XXQDO] :: Mithridates; (various kings of Pontus, esp. the Great beaten by Sulla/Pompey); + Mitridates_M_N : N ; -- [XXQDO] :: Mithridates; (various kings of Pontus, esp. the Great beaten by Sulla/Pompey); + Moabites_M_N : N ; -- [EXQES] :: Moabite, inhabitant of Moab (land north of the Dead Sea); Moabitis_1_N : N ; -- [EXQES] :: Moabite woman, inhabitant of Moab (land north of the Dead Sea); - Moabitis_2_N : N ; - Moabitis_A : A ; - Montepessulanus_M_N : N ; - Morbonia_F_N : N ; - Mosa_F_N : N ; - Moses_M_N : N ; - Moyses_M_N : N ; - Mulciber_M_N : N ; - Muslimus_M_N : N ; - Musulmanus_A : A ; - N_N : N ; + Moabitis_2_N : N ; -- [EXQES] :: Moabite woman, inhabitant of Moab (land north of the Dead Sea); + Moabitis_A : A ; -- [EXQES] :: Moabite, of Moab (land north of the Dead Sea); + Montepessulanus_M_N : N ; -- [CXFFZ] :: Montpellier (in southern France); + Morbonia_F_N : N ; -- [XXXEX] :: Plagueville; [~ abeas => go to hell!]; + Mosa_F_N : N ; -- [XXNEO] :: river Maas/Meuse, in Holland/France/Belgium; + Moses_M_N : N ; -- [EEQEE] :: Moses; + Moyses_M_N : N ; -- [EEQEE] :: Moses; + Mulciber_M_N : N ; -- [XEXDO] :: surname of Vulcan; P:fire; + Muslimus_M_N : N ; -- [FEXEE] :: Moslem; + Musulmanus_A : A ; -- [FEXEE] :: Muslim; + N_N : N ; -- [XXXDX] :: Numerius (Roman praenomen); (abb. N./Num.); Naias_1_N : N ; -- [XXXDX] :: Naiad; water nymph; nymph; - Naias_2_N : N ; + Naias_2_N : N ; -- [XXXDX] :: Naiad; water nymph; nymph; Nais_1_N : N ; -- [XXXDX] :: Naiad; water nymph; nymph; - Nais_2_N : N ; - Nazara_F_N : N ; - Nazaraeus_M_N : N ; - Nazarenus_A : A ; - Nazarenus_M_N : N ; - Nazareth_N : N ; - Nazareus_A : A ; - Nazarus_A : A ; - Nehalannia_F_N : N ; - Neptunus_M_N : N ; - Nero_M_N : N ; - Nerva_M_N : N ; - Nervius_M_N : N ; - Nicomedia_F_N : N ; - Nineve_F_N : N ; - Ninevita_M_N : N ; - Nineviticus_A : A ; - Ninevitus_A : A ; - Ninive_F_N : N ; - Ninivita_M_N : N ; - Niniviticus_A : A ; - Ninivitus_A : A ; - Nivomagus_F_N : N ; - Non_N : N ; - Nona_F_N : N ; - Nov_A : A ; - November_A : A ; - November_M_N : N ; - Noviomagus_F_N : N ; - Novomagus_F_N : N ; - Num_N : N ; - Numerius_M_N : N ; - Oceanus_M_N : N ; - Ocelum_N_N : N ; - Oct_A : A ; - Octavius_M_N : N ; - October_A : A ; - October_M_N : N ; - Odollames_M_N : N ; - Olympia_F_N : N ; - Olympus_M_N : N ; - Orcus_M_N : N ; - Orestes_M_N : N ; - Orgetorix_M_N : N ; + Nais_2_N : N ; -- [XXXDX] :: Naiad; water nymph; nymph; + Nazara_F_N : N ; -- [DEQES] :: Nazareth; city in Palestine; (home of the parents of Jesus); + Nazaraeus_M_N : N ; -- [DEXES] :: Nazarite; man set apart to the service of God; + Nazarenus_A : A ; -- [EEXES] :: Nazarene, of/from/belonging to Nazareth; "Christian"; + Nazarenus_M_N : N ; -- [DEXDS] :: Christ, the Nazarene; + Nazareth_N : N ; -- [DEXES] :: Nazareth; city in Palestine; (home of the parents of Jesus); + Nazareus_A : A ; -- [EEXES] :: Nazarene, of/from/belonging to Nazareth; "Christian"; + Nazarus_A : A ; -- [EEXCS] :: Nazarene, of/from/belonging to Nazareth; "Christian"; + Nehalannia_F_N : N ; -- [EENFZ] :: German goddess, worshiped by traders who sailed across the North Sea; + Neptunus_M_N : N ; -- [XEIDX] :: Neptune; sea; + Nero_M_N : N ; -- [CLIBO] :: Nero; (cognomen of Claudian gens); (Nero Claudius Caesar -> Emperor, 54-69); + Nerva_M_N : N ; -- [CLIEO] :: Nerva; (Roman cognomen); [M. Cocceius Nerva => Emperor, 96-98 AD]; + Nervius_M_N : N ; -- [XXXDX] :: Nervii (pl.); Belgic (north Gallic) tribe; + Nicomedia_F_N : N ; -- [XXXES] :: Nicomedia (city), capital of Bithynia; (now Izmid/Izmit Turkey); + Nineve_F_N : N ; -- [EXQEW] :: Nineveh; (ancient capital of Assyria); + Ninevita_M_N : N ; -- [EXQFW] :: Ninivite, inhabitant of Nineveh (ancient capital of Assyria); + Nineviticus_A : A ; -- [EXQFW] :: Ninivite, of/from Nineveh; (ancient capital of Assyria); + Ninevitus_A : A ; -- [EXQEW] :: Ninivite, of/from Nineveh; (ancient capital of Assyria); + Ninive_F_N : N ; -- [EXQES] :: Nineveh; (ancient capital of Assyria); + Ninivita_M_N : N ; -- [EXQFS] :: Ninivite, inhabitant of Nineveh (ancient capital of Assyria); + Niniviticus_A : A ; -- [EXQFS] :: Ninivite, of/from Nineveh; (ancient capital of Assyria); + Ninivitus_A : A ; -- [EXQES] :: Ninivite, of/from Nineveh; (ancient capital of Assyria); + Nivomagus_F_N : N ; -- [DXNFS] :: city of the Treveri, now Nijmegen, city in Holland; + Non_N : N ; -- [XXXDX] :: Nones (pl.), abb. Non.; 7th of month, March, May, July, Oct., 5th elsewhen; + Nona_F_N : N ; -- [XXXDX] :: Nones (pl.), abb. Non.; 7th of month, March, May, July, Oct., 5th elsewhen; + Nov_A : A ; -- [XXXDX] :: November (month/mensis understood); abb. Nov.; + November_A : A ; -- [XXXCO] :: November (month/mensis understood); abb. Nov.; of/pertaining to November; + November_M_N : N ; -- [XXXEO] :: November; (9th month before Caesar, 11th after); abb. Nov.; + Noviomagus_F_N : N ; -- [DXNFS] :: city of the Treveri, now Nijmegen, city in Holland; + Novomagus_F_N : N ; -- [DXNFS] :: city of the Treveri, now Nijmegen, city in Holland; + Num_N : N ; -- [XXXDX] :: Numerius (Roman praenomen); (abb. N./Num.); + Numerius_M_N : N ; -- [XXXDX] :: Numerius (Roman praenomen); (abb. N./Num.); + Oceanus_M_N : N ; -- [XXXBX] :: Ocean; + Ocelum_N_N : N ; -- [XXXDX] :: Ocelum, city in Cisalpine Gaul (N. Italy); + Oct_A : A ; -- [XXXDX] :: October (month/mensis understood); abb. Oct.; + Octavius_M_N : N ; -- [XXXDS] :: Octavius; name of Roman gens; + October_A : A ; -- [XXXCO] :: October (month/mensis understood); abb. Oct.; of/pertaining to October; + October_M_N : N ; -- [XXXCO] :: October; (8th month before Caesar, 10 th after); abb. Oct.; + Odollames_M_N : N ; -- [EEQFW] :: Adullamite; person from Adullam (in Judea, famous for refuge caves); + Olympia_F_N : N ; -- [XXHDS] :: Olympia; + Olympus_M_N : N ; -- [XXHDS] :: Olympus; Mt Olympus in Greece; the gods; heaven; + Orcus_M_N : N ; -- [XXXBX] :: god of the underworld, Dis; death; the underworld; + Orestes_M_N : N ; -- [XYHCO] :: Orestes; son of Agamennon and Clytaemnestra; play by Euripides; book by Varro; + Orgetorix_M_N : N ; -- [XXXDX] :: Orgetorix, chief of Helvetii, hostile to Caesar - in Caesar's "Gallic War"; 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 ; - Otho_M_N : N ; - Oxonia_F_N : N ; - P_N : N ; - Padus_M_N : N ; - Palatinus_A : A ; - Palatium_N_N : N ; - Palile_N_N : N ; - Palmyra_F_N : N ; + Orientalis_M_N : N ; -- [DXXES] :: Easterner, one from the East; Oriental; (F) wild beasts hunting/exhibition; + Osanna_Interj : Interj ; -- [DEQEE] :: Hosanna, "God save", a cry of praise (Hebrew); + Oscus_A : A ; -- [BXXDS] :: Oscan; of the ancients of Campania; + Otho_M_N : N ; -- [CLIEO] :: Otho; (Roman cognomen); [Silvius ~ => Emperor, 69 AD, year of the 4 Emperors]; + Oxonia_F_N : N ; -- [GXBET] :: Oxford; + P_N : N ; -- [XXXDX] :: Publius (Roman praenomen); (abb. P.); + Padus_M_N : N ; -- [XXXDS] :: Po river; + Palatinus_A : A ; -- [XXXDS] :: Palatine; imperial; name of one of the hills of Rome, the Palatine; + Palatium_N_N : N ; -- [XXIBX] :: Palatine Hill; + Palile_N_N : N ; -- [XXXEO] :: Feast (pl.) of Pales (tutelary deity of sheep and herds) on 21 April; + Palmyra_F_N : N ; -- [AXQFO] :: Palmyra, city in Syria; 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 ; - Papa_M_N : N ; - Parca_F_N : N ; - Parthicus_A : A ; - Parthus_M_N : N ; - Pascha_F_N : N ; - Paulus_M_N : N ; - Pedius_A : A ; - Pedius_M_N : N ; - Pelasgus_M_N : N ; - Penas_M_N : N ; - Pentecostalis_A : A ; - Pentecoste_F_N : N ; - Peripateticus_A : A ; - Peripateticus_M_N : N ; - Persa_M_N : N ; - Perses_M_N : N ; - Persicus_A : A ; - Persis_A : A ; - Pertinax_M_N : N ; - Petrus_M_N : N ; - Phaedo_M_N : N ; - Phaedon_M_N : N ; - Phaedrus_M_N : N ; - Pharao_M_N : N ; - Phase_N : N ; - Philippus_M_N : N ; - Phoebe_F_N : N ; - Phoenica_F_N : N ; - Phoenice_F_N : N ; - Phrigia_F_N : N ; - Phrigius_A : A ; - Phrygia_F_N : N ; - Phrygius_A : A ; - Pilatus_M_N : N ; - Piso_M_N : N ; - Plancus_M_N : N ; + Pan_2_N : N ; -- [XEXDS] :: Pan; Greek god of shepherds; + Pantheon_N_N : N ; -- [CEIEO] :: Pantheon, temple to all gods; (esp. rotunda temple by Agrippa in Rome); + Pantheum_N_N : N ; -- [CEIEO] :: Pantheon, temple to all gods; (esp. rotunda temple by Agrippa in Rome); + Panthus_M_N : N ; -- [XXXCG] :: Panthus, a priest of Apollo at Troy; used as a pseudonym; + Papa_M_N : N ; -- [EEXBX] :: pope; + Parca_F_N : N ; -- [XEXDS] :: Fate; one of the goddesses of fate; + Parthicus_A : A ; -- [XXXCZ] :: Parthian; + Parthus_M_N : N ; -- [XXPCO] :: Parthian; inhabitant of Parthia (country south of Caspian Sea); + Pascha_F_N : N ; -- [EEXDX] :: Passover; Easter; + Paulus_M_N : N ; -- [EEXBX] :: Paul; + Pedius_A : A ; -- [XXXDO] :: Pedius, Roman gens; [Q ~ =>Caesar's nephew, lex ~ =>law trying Caesar's killer]; + Pedius_M_N : N ; -- [XXXDO] :: Pedius; (gens name); any/fictitious name (law); [Q Pedius => Caesar's nephew]; + Pelasgus_M_N : N ; -- [XXXDS] :: ancient Greek; + Penas_M_N : N ; -- [XEIBO] :: Penates; (usu. pl.); gods of home/larder/family; home/dwelling; family/line; + Pentecostalis_A : A ; -- [EEXES] :: Pentecostal, belonging to Pentecost/Whitsuntide; + Pentecoste_F_N : N ; -- [EEXES] :: Pentecost, Whit-Sunday, fiftieth day after Easter; + Peripateticus_A : A ; -- [XSHEO] :: of/belonging to the Peripatetic (Aristotelian) school of philosophy; + Peripateticus_M_N : N ; -- [XSHDO] :: philosopher of the Peripatetic (Aristotelian) school; + Persa_M_N : N ; -- [XXPCO] :: Persian, native of Persia; (sometimes for Parthian; Persian breed of dog); + Perses_M_N : N ; -- [XXPCO] :: Persian, native of Persia; (sometimes for Parthian; Persian breed of dog); + Persicus_A : A ; -- [XXXCZ] :: Persian; + Persis_A : A ; -- [XXPFO] :: Persian; + Pertinax_M_N : N ; -- [DLIDZ] :: Pertinax; (Emperor Publius Helvius Pertinax 193); + Petrus_M_N : N ; -- [EEXBX] :: Peter; + Phaedo_M_N : N ; -- [XSHES] :: Phaedo (disciple of Socrates, friend of Plato, founder of school at Elis); + Phaedon_M_N : N ; -- [XSHEO] :: Phaedo (disciple of Socrates, friend of Plato, founder of school at Elis); + Phaedrus_M_N : N ; -- [XSHDO] :: Phaedo (pupil of Socrates); Phaedrus (Latin fabulist); (Cicero's teacher); + Pharao_M_N : N ; -- [EEXDX] :: Pharaoh, title of King of Egypt; + Phase_N : N ; -- [DEQDS] :: Passover; Jewish feast; paschal lamb/sacrifice at the Passover; + Philippus_M_N : N ; -- [XXHCO] :: Philippi (pl.); (town in eastern Macedonia where Octavius defeated Brutus); + Phoebe_F_N : N ; -- [XEXDS] :: Diana; moon goddess; + Phoenica_F_N : N ; -- [XLQEO] :: Phoenicia; (coastal region of Syria); + Phoenice_F_N : N ; -- [XLQEO] :: Phoenicia; (coast region of Syria); wild grass; rye grass/Lolium perenne?; + Phrigia_F_N : N ; -- [XXQEO] :: Phrygia, country comprising center and west of Asia Minor; Troy (poetical); + Phrigius_A : A ; -- [XXQCO] :: Phrygian, of Phyrigia (center and west of Asia Minor); Trojan; + Phrygia_F_N : N ; -- [XXQEO] :: Phrygia, country comprising center and west of Asia Minor; Troy (poetical); + Phrygius_A : A ; -- [XXQCO] :: Phrygian, of Phyrigia (center and west of Asia Minor); Trojan; + Pilatus_M_N : N ; -- [EEXDX] :: Pilatus; (Roman cognomen); [Pontius ~ (Pilate) => prefect Judea, 26-36 AD]; + Piso_M_N : N ; -- [XXXDX] :: Piso; (Roman cognomen); [L. Calpurnius ~/M. Pupius ~ => consul 58/61 BC]; + Plancus_M_N : N ; -- [XXXCS] :: Plancus (proper name); Plato_1_N : N ; -- [XSHCO] :: Plato; (Greek philosopher 429-347 BC, disciple of Socrates); - Plato_2_N : N ; - Plato_M_N : N ; - Platonicus_A : A ; - Plinius_A : A ; - Plinius_M_N : N ; - Pluto_M_N : N ; - Poenus_A : A ; - Poenus_M_N : N ; - Pol_Interj : Interj ; - Pollux_M_N : N ; - Pompeianus_A : A ; - Pompeius_A : A ; - Pompeius_M_N : N ; - Pontius_A : A ; - Pontius_M_N : N ; - Pontus_M_N : N ; - Praenestinus_A : A ; - Probus_M_N : N ; - Publicianus_A : A ; - Publius_M_N : N ; - Punicanus_A : A ; - Puniceus_A : A ; - Punicus_A : A ; - Punus_A : A ; - Punus_M_N : N ; - Pyrenaeus_A : A ; - Pythagoricus_A : A ; - Pythagoricus_M_N : N ; - Python_M_N : N ; - Q_N : N ; - Quinctilis_A : A ; - Quinctius_A : A ; - Quinquatrus_F_N : N ; - Quinquegentianus_N_N : N ; - Quint_A : A ; - Quintilis_A : A ; - Quintilius_A : A ; - Quintilius_M_N : N ; - Quintus_M_N : N ; - Quirinale_N_N : N ; - Quiris_M_N : N ; - Quirites_M_N : N ; - R_A : A ; - Ravenna_F_N : N ; - Regulus_M_N : N ; - Rhenus_M_N : N ; - Rhodanus_M_N : N ; - Rolvo_M_N : N ; - Roma_F_N : N ; - Romanicus_A : A ; - Romulus_A : A ; - Romulus_M_N : N ; - Rufinus_M_N : N ; - Rufus_M_N : N ; - Rutilius_A : A ; - Rutilius_M_N : N ; - SELAH_V : V ; - SIDa_F_N : N ; - SPQR_N : N ; - SS_A : A ; - SS_N : N ; - Sabaoth_N : N ; - Sabbaoth_N : N ; - Sabine_Adv : Adv ; - Sabinus_A : A ; - Sabinus_M_N : N ; - Salomon_M_N : N ; - Samaria_F_N : N ; - Samaritanus_A : A ; - Samarites_M_N : N ; - Samariticus_A : A ; - Samaritis_F_N : N ; - Samius_A : A ; - Sardinia_F_N : N ; - Sardonius_A : A ; - Sardus_A : A ; - Sardus_C_N : N ; - Sarmata_M_N : N ; - Sarmaticus_A : A ; - Satan_N : N ; - Satanas_M_N : N ; - Saturnali_N_N : N ; - Saturnalium_N_N : N ; - Saturninus_M_N : N ; - Saul_M_N : N ; - Saul_N : N ; - Saulus_M_N : N ; - Scipio_M_N : N ; - Scotia_F_N : N ; - Scotus_M_N : N ; - Seia_F_N : N ; - Seius_A : A ; - Seius_M_N : N ; - Semeitica_F_N : N ; - Sempronianus_A : A ; - Sempronius_A : A ; - Senatusconsultum_N_N : N ; - Senatusconsultus_M_N : N ; - Seneca_M_N : N ; - Senones_M_N : N ; - Sept_A : A ; - September_A : A ; - September_M_N : N ; - Sequana_M_N : N ; - Sequanus_A : A ; - Sequanus_M_N : N ; + Plato_2_N : N ; -- [XSHCO] :: Plato; (Greek philosopher 429-347 BC, disciple of Socrates); + Plato_M_N : N ; -- [XSHDS] :: Plato; Greek philosopher; + Platonicus_A : A ; -- [XXXCZ] :: Platonic; + Plinius_A : A ; -- [XXXDO] :: Plinius; (Roman gens); (C. Plinius Secundus/Pliny, author of Natural History); + Plinius_M_N : N ; -- [CLIBO] :: Pliny; (Roman gens name); (C. Plinius Secundus, author of Natural History); + Pluto_M_N : N ; -- [XEXDS] :: Pluto; king of underworld; + Poenus_A : A ; -- [XXACO] :: Carthaginian, Punic; of/associated w/Carthage; Phoenician; scarlet, bright red; + Poenus_M_N : N ; -- [XXACO] :: Carthaginian; Phoenician; (specifically Hannibal); + Pol_Interj : Interj ; -- [XXXDX] :: by Pollux; truly; really; + Pollux_M_N : N ; -- [XYHCO] :: Pollux; (son of Tyndarus and Leda, twin of Castor); + Pompeianus_A : A ; -- [XXXBO] :: Pompeian; of/belonging to member of Pompian gens; (esp. of triumvir Pompey); + Pompeius_A : A ; -- [XXXDX] :: Pompeius; Roman gens; (Cn. Pompeius Magnus (Pompey), triumvir); + Pompeius_M_N : N ; -- [XXXAX] :: Pompeius; (Roman gens name); (Cn. Pompeius Magnus (Pompey), triumvir); + Pontius_A : A ; -- [XXXDX] :: Pontius; Roman gens; a Sammite leader; (P~ Pilatus, prefect of Judea 26-36 AD); + Pontius_M_N : N ; -- [XXXDX] :: Pontius; (Roman gens name); (Pontius Pilatus, prefect of Judea 26-36 AD); + Pontus_M_N : N ; -- [XXXDS] :: Pontus (province in Asia Minor); Black Sea; + Praenestinus_A : A ; -- [DXXDS] :: Proenestian; of Proeneste (Latium city, famous for roses); + Probus_M_N : N ; -- [DLIDZ] :: Probus; (Emperor Marcus Aurelius Equitius Probus 276-282); + Publicianus_A : A ; -- [XXXEO] :: of/connected with a Publius (gens); + Publius_M_N : N ; -- [XXXDX] :: Publius (Roman praenomen); (abb. P.); + Punicanus_A : A ; -- [XXXCO] :: made in the Punic style/manner; Punic, Carthaginian; + Puniceus_A : A ; -- [XXAEO] :: Carthaginian, Punic; [Puniceum pomum/Punicum malum => pomegranate]; + Punicus_A : A ; -- [XXABO] :: Carthaginian, Punic; of/associated with Carthage; scarlet, bright red; + Punus_A : A ; -- [XXAEZ] :: Carthaginian, Punic; Phoenician; + Punus_M_N : N ; -- [XXAEZ] :: Carthaginian; Phoenician; (specifically Hannibal); + Pyrenaeus_A : A ; -- [XXXDX] :: Pyrenees (w/montes); + Pythagoricus_A : A ; -- [FSXFM] :: Pythagorean; of follower of Pythagoras or his philosophy; + Pythagoricus_M_N : N ; -- [FSXFM] :: Pythagorean, follower of Pythagoras or his philosophy; + Python_M_N : N ; -- [XEXDS] :: familiar spirit/demon possessing soothsayer; soothsayer; snake slain at Delphi; + Q_N : N ; -- [XXXDX] :: Quintus (Roman praenomen); (abb. Q.); + Quinctilis_A : A ; -- [XXXDX] :: July (month/mensis); abb. Quin.?; renamed Julius in 44 BC; in 5th place; + Quinctius_A : A ; -- [XXXCS] :: Quinctian; of Quinctius gens; + Quinquatrus_F_N : N ; -- [XEXFS] :: Minerva festival; + Quinquegentianus_N_N : N ; -- [DXAFT] :: Five_Nations; (league of desert people against Romans - 3rd century Mauretania); + Quint_A : A ; -- [XXXDX] :: July (month/mensis understood); abb. Quint.??; renamed to Julius in 44 BC; + Quintilis_A : A ; -- [XXXDX] :: July (month/mensis); abb. Quin.??; renamed Julius in 44 BC; in 5th place; + Quintilius_A : A ; -- [XXXCO] :: Quintilius; (Roman gens name); (P. ~ Varus general annihilated in 9 AD); + Quintilius_M_N : N ; -- [XXXCO] :: Quintilius; (Roman gens name); (P. ~ Varus general annihilated in 9 AD); + Quintus_M_N : N ; -- [XXIDX] :: Quintus (Roman praenomen); (abb. Q.); + Quirinale_N_N : N ; -- [XXXDX] :: festival (pl.) in honor of Quirinus/Romulus, celebrated 17th of February; + Quiris_M_N : N ; -- [XXXDX] :: inhabitants (pl.) of the Sabine town Cures; Romans in their civil capacity; + Quirites_M_N : N ; -- [XXXCX] :: citizens (pl.) of Rome collectively in their peacetime functions; + R_A : A ; -- [XXXEO] :: Roman (abb.); (E.Q.R. = Eques Romanus); Rufus; + Ravenna_F_N : N ; -- [XXIDO] :: Ravenna; (port/naval base in NE Italy); (late capital of Western Empire); + Regulus_M_N : N ; -- [XXXCZ] :: Regulus; (Roman consul captured by Carthaginians); + Rhenus_M_N : N ; -- [XXGDX] :: Rhine; (river dividing Gaul and Germany - in Caesar's Gallic War); + Rhodanus_M_N : N ; -- [XXFDX] :: Rhone; (river in SW Gaul - in Caesar's Gallic War); + Rolvo_M_N : N ; -- [FXDDV] :: Rolf; + Roma_F_N : N ; -- [XXIAX] :: Rome; + Romanicus_A : A ; -- [GXXEK] :: Roman (architectural style); + Romulus_A : A ; -- [XXIDO] :: of/pertaining to Romulus (legendary founder of Rome); Roman; + Romulus_M_N : N ; -- [XXICO] :: Romulus (legendary founder of Rome); + Rufinus_M_N : N ; -- [XEIEF] :: Rufinus; (St./Bishop of Assisi); (other Saints); (friend/enemy of Jerome); + Rufus_M_N : N ; -- [XXXDO] :: Rufus; (Roman cognomen); + Rutilius_A : A ; -- [XXICO] :: Rutilius; (Roman gens name); (P. ~ Rufus -> exiled historian); + Rutilius_M_N : N ; -- [XXICO] :: Rutilius; (Roman gens name); (P. ~ Rufus -> exiled historian); + SELAH_V : V ; -- [DEQEW] :: selah, musical pause (Psalms); sing loud; change pitch; (full meaning unknown); + SIDa_F_N : N ; -- [GXXEK] :: AIDS, SIDA; + SPQR_N : N ; -- [XLIDX] :: Senate and People of Rome; (Senatus PopulusQue Romanus,logo of Rome, like USA); + SS_A : A ; -- [EXXEP] :: suprascriptus; entitled; inscribed; (sometimes abb. SS.); + SS_N : N ; -- [EEXEW] :: sacred scripture (early Church writings except Bible), Sacrae Scripturae (pl.); + Sabaoth_N : N ; -- [EEQEE] :: hosts (pl.); armies; (Hebrew); [Deus Sabaoth => God of Hosts]; + Sabbaoth_N : N ; -- [EEQEE] :: hosts (pl.); armies; (Hebrew); [Deus Sabaoth => God of Hosts]; + Sabine_Adv : Adv ; -- [XXIDX] :: Sabine, in Sabine language; + Sabinus_A : A ; -- [XXXDX] :: Sabine, of the Sabines/their country/that area; the shrub savin/its oil; + Sabinus_M_N : N ; -- [XXIDX] :: Sabines (pl.), people living NE of Rome; their territory; an estate there; + Salomon_M_N : N ; -- [XEQDE] :: David; + Samaria_F_N : N ; -- [XXQNS] :: Samaria; (middle district of Palestine); + Samaritanus_A : A ; -- [DXQES] :: Samaritan, of/pertaining to Samaria; (middle district of Palestine); + Samarites_M_N : N ; -- [EXQES] :: Samaritan, inhabitant of Samaria; (middle district of Palestine); + Samariticus_A : A ; -- [DXQFS] :: Samaritan, of/pertaining to Samaria; (middle district of Palestine); + Samaritis_F_N : N ; -- [DXQFS] :: Samaritan woman, inhabitant of Samaria; (middle district of Palestine); + Samius_A : A ; -- [XXXCO] :: of/belonging to Samos; (cheap/brittle pottery); [testa ~ => shard for cutting]; + Sardinia_F_N : N ; -- [XXIDO] :: Sardinia; (large island west of Italy); + Sardonius_A : A ; -- [XXIEO] :: Sardinian; [~ herba => kind of acrid buttercup/poisonous plant, crowfoot (L+S)]; + Sardus_A : A ; -- [XXIDS] :: Sardinian; + Sardus_C_N : N ; -- [XXIDS] :: Sardinian (person); + Sarmata_M_N : N ; -- [XXXDS] :: Sarmatian; people from south Russia/Iran; + Sarmaticus_A : A ; -- [XXXDS] :: Sarmatian; of the Sarmatian people; + Satan_N : N ; -- [EEXDS] :: Satan, the Devil; adversary (Def); + Satanas_M_N : N ; -- [EEXDS] :: Satan, the Devil; adversary (Def); + Saturnali_N_N : N ; -- [XEXDS] :: Saturnalia; festival of Saturnalia (December); + Saturnalium_N_N : N ; -- [XEXDS] :: Saturnalia; festival of Saturnalia (December); + Saturninus_M_N : N ; -- [XXXCZ] :: Saturninus; (revolutionary tribune); + Saul_M_N : N ; -- [XEQEE] :: Saul; King of Israel); (original name of St Paul); + Saul_N : N ; -- [XEQEE] :: Saul; King of Israel); (original name of St Paul); + Saulus_M_N : N ; -- [XEQEE] :: Saul; King of Israel); (original name of St Paul); + Scipio_M_N : N ; -- [XXICO] :: Scipio; (P. Cornelia ~ beat Hannibal, his grandson destroyed Carthage); + Scotia_F_N : N ; -- [EXBCE] :: Scotland; + Scotus_M_N : N ; -- [EXBDE] :: Scot, Scotsman, person from Scotland; Scots (pl.); + Seia_F_N : N ; -- [XEINO] :: Seia; (tutelary goddess of grain at time of sowing); + Seius_A : A ; -- [XLICO] :: Seius; (Roman gens); fictitious name in law; [M. Seius => supporter of Caesar]; + Seius_M_N : N ; -- [XLICO] :: Seius; (Roman gens name); fictitious name in law; [M. Seius => ally of Caesar]; + Semeitica_F_N : N ; -- [EXQFW] :: family of Semei/Shimi; (son of Gerson, grandson of Levi); + Sempronianus_A : A ; -- [XXXFS] :: Sempronian; of gens Sempronia; (in title of laws by Ti./C. Gracchus); + Sempronius_A : A ; -- [XXXFS] :: Sempronian; of gens Sempronia; (in title of laws by Ti./C. Gracchus); + Senatusconsultum_N_N : N ; -- [XLXCS] :: decree of the Senate; + Senatusconsultus_M_N : N ; -- [DLXFS] :: decree of the Senate; + Seneca_M_N : N ; -- [XDXCS] :: Seneca; playwright; philosopher; + Senones_M_N : N ; -- [XXXDX] :: Senones; tribe of central Gaul (Seine valley); + Sept_A : A ; -- [XXXDX] :: September (month/mensis understood); abb. Sept.; + September_A : A ; -- [XXXCO] :: September (month/mensis understood); abb. Sept.; of/pertaining to September; + September_M_N : N ; -- [XXXCO] :: September; (7th month before Caesar, 9th after); abb. Sept.; + Sequana_M_N : N ; -- [XXFDX] :: Seine, river in N Cen. Gaul - in Caesar's "Gallic War"; + Sequanus_A : A ; -- [XXXDX] :: of the Sequani, tribe in E. Gaul - in Caesar's "Gallic War"; + Sequanus_M_N : N ; -- [XXFDX] :: Sequani, tribe in E. Gaul - in Caesar's "Gallic War"; Ser_F_N : N ; -- [XXXDO] :: Chinese (people); inhabitants of region beyond Scythia and India; - Ser_M_N : N ; - Ser_N : N ; - Seraph_N : N ; - Seraphim_N : N ; - Seraphin_N : N ; - Sericus_A : A ; - Servius_M_N : N ; - Seubus_A : A ; - Seubus_M_N : N ; - Severus_M_N : N ; - Sex_N : N ; - Sext_A : A ; - Sextilis_A : A ; - Sextius_A : A ; - Sextius_M_N : N ; - Sextus_M_N : N ; - Sibylla_F_N : N ; - Sibyllinus_A : A ; - Sicanus_C_N : N ; - Sicilia_F_N : N ; - Siculus_A : A ; - Siculus_C_N : N ; - Sinope_F_N : N ; - Sinopis_F_N : N ; + Ser_M_N : N ; -- [XXXDO] :: Chinese (people); inhabitants of region beyond Scythia and India; + Ser_N : N ; -- [XXXDX] :: Servius (Roman praenomen); (abb. Ser.); + Seraph_N : N ; -- [EEQDS] :: Seraphim, angels (pl.) of higher order among the Jews; + Seraphim_N : N ; -- [EEQDS] :: Seraphim, angels (pl.) of higher order among the Jews; + Seraphin_N : N ; -- [EEQDS] :: Seraphim, angel (sg.) of higher order among the Jews; + Sericus_A : A ; -- [XXXDO] :: Chinese, of/from the Seres; silk-, made of silk; silken; + Servius_M_N : N ; -- [XXXDX] :: Servius (Roman praenomen); (abb. Ser.); + Seubus_A : A ; -- [XXXDX] :: of the Seubi, German tribes east of the Elbe - in Caesar's "Gallic War"; + Seubus_M_N : N ; -- [XXXDX] :: Seubi, German tribes centered east of the Elbe - in Caesar's "Gallic War"; + Severus_M_N : N ; -- [DLIDZ] :: Severus; (Emperor Lucius Septimius Severus 193-211); + Sex_N : N ; -- [XXXDX] :: Sextus (Roman praenomen); (abb. Sex.); + Sext_A : A ; -- [XXXDX] :: August (month/mensis understood); abb. Sext.??; renamed to Julius in 44 BC; + Sextilis_A : A ; -- [XXXDX] :: August (month/mensis understood); abb. Sext.??; renamed to Julius in 44 BC; + Sextius_A : A ; -- [XXXCO] :: Sextius; (Roman gens name); [Quintus ~ => Augustian philosopher]; + Sextius_M_N : N ; -- [XXXCO] :: Sextius; (Roman gens name); [Quintus ~ => Augustian philosopher]; + Sextus_M_N : N ; -- [XXIDX] :: Sextus (Roman praenomen); (abb. Sex.); + Sibylla_F_N : N ; -- [XXXDX] :: prophetess, sibyl; + Sibyllinus_A : A ; -- [XXXDX] :: of or connected with a sibyl, sibylline; + Sicanus_C_N : N ; -- [XXXDS] :: Sican; ancient occupant of Italy; + Sicilia_F_N : N ; -- [XXICO] :: Sicily; (large island southwest of Italy); + Siculus_A : A ; -- [XXICO] :: Sicilian, of/pertaining to Sicily (island southwest of Italy); cruel; luxurious; + Siculus_C_N : N ; -- [XXXDS] :: Sicilian; + Sinope_F_N : N ; -- [XXHCO] :: Sinope; (Greek colony midway along south shore of Euxine/Black Sea); + Sinopis_F_N : N ; -- [XXXDS] :: kind of red ocher (pigment, found on Sinope on Black Sea); name for Sinuessa; 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 ; - Sirius_M_N : N ; - Socrates_M_N : N ; - Socraticus_A : A ; - Socratus_M_N : N ; - Solinus_M_N : N ; - Sophocles_M_N : N ; - Sp_N : N ; - Sparta_F_N : N ; - Spartanus_A : A ; - Spectabilis_M_N : N ; - Spes_F_N : N ; - Sphinx_F_N : N ; - Spurius_M_N : N ; - Stichus_M_N : N ; - Stoicus_A : A ; - Stygius_A : A ; + Siren_2_N : N ; -- [XYXCO] :: Siren; (lured sailors with song); type of drone/solitary bee/wasp); + Sireneus_A : A ; -- [DYXFS] :: Siren-, of/belonging to the Sirens; [~cantus => Siren song]; + Sirenius_A : A ; -- [XYXFO] :: Siren-, of/belonging to the Sirens; [~cantus => Siren song]; + Sirius_A : A ; -- [DXXFX] :: of the dog-star/Sirius; + Sirius_M_N : N ; -- [DXXDX] :: Sirius, greater dog-star; + Socrates_M_N : N ; -- [XSHCO] :: Socrates (Athenian philosopher 469-399 B.C.); + Socraticus_A : A ; -- [XXXCZ] :: Socratic; of Socrates; + Socratus_M_N : N ; -- [XSHEO] :: Socrates (Athenian philosopher 469-399 B.C.); his disciples/followers (pl.); + Solinus_M_N : N ; -- [DXXFS] :: Solinus; (C. Julius Solinus third century Roman writer); + Sophocles_M_N : N ; -- [BPHDS] :: Sophocles (Greek poet); + Sp_N : N ; -- [XXXDX] :: Spurius (Roman praenomen); (abb. Sp.); + Sparta_F_N : N ; -- [XXHDS] :: Sparta (Greek city); + Spartanus_A : A ; -- [BXHDS] :: Spartan; + Spectabilis_M_N : N ; -- [DLXES] :: Respectable, title of high officers of late empire; (below Illustres); + Spes_F_N : N ; -- [XEXDO] :: ||Spes, goddess of hope; hope personified; + Sphinx_F_N : N ; -- [XXXFS] :: Sphinx; + Spurius_M_N : N ; -- [XXXDX] :: Spurius (Roman praenomen); (abb. Sp.); + Stichus_M_N : N ; -- [XLXDO] :: common slave name; representative name in legal forms, Anyslave; + Stoicus_A : A ; -- [XXXDX] :: Stoic; + Stygius_A : A ; -- [XXXDS] :: Stygian; of the river Styx; of the underworld; 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 ; - Sulpicia_F_N : N ; - Sulpicius_A : A ; - Sulpicius_M_N : N ; - Suria_F_N : N ; - Surius_M_N : N ; - Surus_A : A ; - Surus_M_N : N ; - Susum_N_N : N ; - Syracuses_F_N : N ; - Syria_F_N : N ; - Syriacus_A : A ; - Syrius_M_N : N ; - Syrus_A : A ; - Syrus_M_N : N ; - TECEL_V : V ; - T_N : N ; - Tacitus_M_N : N ; - Tarquinius_M_N : N ; - Tartareus_A : A ; - Tartarum_N_N : N ; - Tartarus_M_N : N ; - Terminal_N_N : N ; - Tertullianus_M_N : N ; - Tetrardus_M_N : N ; - Teucer_M_N : N ; - Teucria_F_N : N ; - Teutonus_M_N : N ; - Thecuites_A : A ; - Theodosius_M_N : N ; - Thessalonica_F_N : N ; - Thomas_N : N ; - Thracia_F_N : N ; - Thracius_A : A ; - Thraecia_F_N : N ; - Thraecius_A : A ; - Thraex_M_N : N ; - Thrax_M_N : N ; - Threcia_F_N : N ; - Threcius_A : A ; - Threnus_M_N : N ; - Threx_M_N : N ; - Ti_N : N ; - Tib_N : N ; - Tiberinus_A : A ; - Tiberinus_M_N : N ; + Styx_2_N : N ; -- [XXXDS] :: Styx river; river of the underworld; + Subura_F_N : N ; -- [XXIDX] :: valley between Esquiline and Viminal hills of Rome (center of night life); + Suebus_M_N : N ; -- [XXXDX] :: Swabian; (Gallic tribe - in Caesar's "Gallic War"); + Sulla_M_N : N ; -- [XXXDX] :: Sulla (Roman cognomen); [L. Cornelius ~ Felix => Roman dictator 138-78 BC]; + Sulpicia_F_N : N ; -- [XXXES] :: Sulpicia; + Sulpicius_A : A ; -- [XXXCS] :: Sulpician; of Sulpicius gens; + Sulpicius_M_N : N ; -- [XXXCS] :: Sulpicius; + Suria_F_N : N ; -- [XXQCO] :: Syria; (area between Asia Minor and Egypt including Phoenicia and Palestine); + Surius_M_N : N ; -- [XXQCO] :: Syrian, of Syria; (name of a variety of dark-skinned pear); + Surus_A : A ; -- [XXQCS] :: Syrian, of Syria; + Surus_M_N : N ; -- [XXQCO] :: Syrian, native of Syria; (esp. as a slave); (name of a slave); + Susum_N_N : N ; -- [XXXDS] :: Susum; Susa (ancient Persian capital, modern Soos); + Syracuses_F_N : N ; -- [XXICO] :: Syracuse (pl.); (chief city of Sicily); + Syria_F_N : N ; -- [XXQCO] :: Syria; (area between Asia Minor and Egypt including Phoenicia and Palestine); + Syriacus_A : A ; -- [XXQCO] :: Syrian, of/connected with Syria, produced/found in Syria; + Syrius_M_N : N ; -- [XXQCO] :: Syrian, of Syria; (name of a variety of dark-skinned pear); + Syrus_A : A ; -- [XXQCS] :: Syrian, of Syria; + Syrus_M_N : N ; -- [XXQCO] :: Syrian, native of Syria; (esp. as a slave); (name of a slave); + TECEL_V : V ; -- [EEQFW] :: TEKEL; (MENE TEKEL PHARES writing on the wall - Vulgate Daniel 5:25); + T_N : N ; -- [XXXDX] :: Titus, Roman praenomen; (abb. T.); + Tacitus_M_N : N ; -- [DLIDZ] :: Tacitus; (Emperor Marcus Claudius Tacitus 275-276); + Tarquinius_M_N : N ; -- [BLIBO] :: Etruscan name; (T~ Priscus, 5th Roman king; T~ Superbus, last king 534-510 BC); + Tartareus_A : A ; -- [XXXDX] :: of or belonging to the underworld; Tartarean; + Tartarum_N_N : N ; -- [XXXDX] :: infernal regions (pl.), the underworld; + Tartarus_M_N : N ; -- [XXXBX] :: infernal regions (pl.), the underworld; + Terminal_N_N : N ; -- [XXXDX] :: festival (pl.) of the god of boundaries (Terminus) on 23 February; + Tertullianus_M_N : N ; -- [DEXFZ] :: Tertullian; (c. 200, first Latin Christian writer); + Tetrardus_M_N : N ; -- [FDXEZ] :: Tetrardus; fourth-voice antiphon; fourth note(?); + Teucer_M_N : N ; -- [XWGES] :: Trojan; originally brother of Ajax; + Teucria_F_N : N ; -- [XWGES] :: Troy; ancient city taken by the Greeks; + Teutonus_M_N : N ; -- [XXXDX] :: Teutoni, German tribe from Baltic, migrated w/Cimbri, smashed by Marius 102 BC; + Thecuites_A : A ; -- [EXXFW] :: of/from Thecua; (2 Samuel 14); + Theodosius_M_N : N ; -- [ELIDZ] :: Theodosius; (Emperor Theodosius 379-395; II 408-450); + Thessalonica_F_N : N ; -- [XXIDO] :: Thessalonica (Macedonian city); (now Saloniki); + Thomas_N : N ; -- [CEXCS] :: Thomas; + Thracia_F_N : N ; -- [XXHCO] :: Thrace; (vaguely defined country east of Macedon/north-east of Greece); + Thracius_A : A ; -- [XXHCO] :: Thracian, of/belonging to Thrace; gem; [lapis ~ => combustible stone/lignite]; + Thraecia_F_N : N ; -- [XXHCO] :: Thrace; (vaguely defined country east of Macedon/north-east of Greece); + Thraecius_A : A ; -- [XXHCO] :: Thracian, of/belonging to Thrace; gem; [lapis ~ => combustible stone/lignite]; + Thraex_M_N : N ; -- [XXHCO] :: Thracian, native of Thrace; gladiator armed with saber and short shield; + Thrax_M_N : N ; -- [XXXDX] :: Thracian; gladiator with saber and short shield, gladiator; + Threcia_F_N : N ; -- [XXHCO] :: Thrace; (vaguely defined country east of Macedon/north-east of Greece); + Threcius_A : A ; -- [XXHCO] :: Thracian, of/belonging to Thrace; gem; [lapis ~ => combustible stone/lignite]; + Threnus_M_N : N ; -- [XXXDX] :: throne; + Threx_M_N : N ; -- [XXHCO] :: Thracian, native of Thrace; gladiator armed with saber and short shield; + Ti_N : N ; -- [XXXDX] :: Tiberius, Roman praenomen; (abb. Ti./Tib.); + Tib_N : N ; -- [XXXDX] :: Tiberius, Roman praenomen; (abb. Ti./Tib.); + Tiberinus_A : A ; -- [XXXCZ] :: Tiber-; of the river Tiber (Collins); + Tiberinus_M_N : N ; -- [XXXCZ] :: Tiber (river); (Collins); 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 ; + Tiberis_M_N : N ; -- [DXICO] :: Tiber; (the river at Rome); + Tiberius_M_N : N ; -- [CLIBO] :: Tiberius (praenomen); abb. Ti./Tib.; (Tiberius Julius Caesar Emperor, 14-37 AD); + Tigurinus_M_N : N ; -- [XXXDX] :: Tiguri, one of the four divisions of the Helvetii - in Caesar's "Gallic War"; + Tim_N : N ; -- [EEXEE] :: Timothy (abb.); (Book of the Bible); 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 ; - Titus_M_N : N ; - Traex_M_N : N ; - Trajanus_M_N : N ; - Trajectum_N_N : N ; - Transalpinus_A : A ; - Transalpinus_M_N : N ; - Trax_M_N : N ; - Treverus_M_N : N ; - Trex_M_N : N ; - Trinitas_F_N : N ; - Trio_M_N : N ; - Troiugena_M_N : N ; - Trojanus_A : A ; - Tubero_F_N : N ; - Tubilustrium_N_N : N ; - Tulingus_M_N : N ; - Tullianus_A : A ; - Tullius_A : A ; - Tullius_M_N : N ; - Tusculum_N_N : N ; - Tyros_F_N : N ; - Tyrus_F_N : N ; - Ubius_M_N : N ; - Ulixes_M_N : N ; - Utica_F_N : N ; - Valens_M_N : N ; - Valentinianus_M_N : N ; - Valerianus_M_N : N ; - Valerius_A : A ; - Valerius_M_N : N ; - Veneri_A : A ; - Venetia_F_N : N ; - Venetus_M_N : N ; - Venus_F_N : N ; - Vercingetorix_M_N : N ; - Vergilia_F_N : N ; - Vergilius_A : A ; - Vergilius_M_N : N ; - Verres_M_N : N ; - Verus_M_N : N ; - Vespasianus_M_N : N ; - Vesta_F_N : N ; - Vestalis_A : A ; - Vestalis_F_N : N ; - Vinal_N_N : N ; - Vincentius_M_N : N ; - Vitellius_M_N : N ; - Volcanus_M_N : N ; - Vulcanus_M_N : N ; - Wormacia_F_N : N ; - Xeres_M_N : N ; - Xerxes_M_N : N ; - Zeno_M_N : N ; - Zenon_M_N : N ; - Zephyrus_M_N : N ; - a_Abl_Prep : Prep ; - a_Acc_Prep : Prep ; - a_Interj : Interj ; - a_N : N ; - ab_Abl_Prep : Prep ; - abactius_A : A ; - abactor_M_N : N ; - abactus_A : A ; - abactus_M_N : N ; - abaculus_M_N : N ; - abacus_M_N : N ; - abaestuo_V : V ; - abagmentum_N_N : N ; - abalienatio_F_N : N ; - abalienatus_A : A ; - abalieno_V2 : V2 ; - abambulo_V : V ; - abamita_F_N : N ; - abante_Abl_Prep : Prep ; - abante_Adv : Adv ; - abarceo_V2 : V2 ; - abascantus_A : A ; - abavia_F_N : N ; - abavunculus_M_N : N ; - abavus_M_N : N ; - abax_M_N : N ; - abbas_M_N : N ; - abbatia_F_N : N ; - abbatialis_A : A ; - abbatissa_F_N : N ; - abbatizo_V : V ; - abbibo_V2 : V2 ; - abbito_V : V ; - abbreviatio_F_N : N ; - abbreviator_M_N : N ; - abbreviatus_A : A ; - abbrevio_V2 : V2 ; - abbrocamentum_N_N : N ; - abdicatio_F_N : N ; - abdicative_Adv : Adv ; - abdicativus_A : A ; - abdicatrix_F_N : N ; - abdicatus_M_N : N ; - abdico_V2 : V2 ; - abdite_Adv : Adv ; - abditivus_A : A ; - abditum_N_N : N ; - abditus_A : A ; - abdo_V2 : V2 ; - abdomen_N_N : N ; - abdominalis_A : A ; - abduco_V2 : V2 ; - abductio_F_N : N ; - abecedaria_F_N : N ; - abecedarium_N_N : N ; - abecedarius_A : A ; - abecedarius_M_N : N ; - abecetuorium_N_N : N ; - abellana_F_N : N ; - abellanus_A : A ; - abeo_V : V ; - abequito_V : V ; - aberceo_V2 : V2 ; - aberratio_F_N : N ; - aberro_V : V ; - abfero_V2 : V2 ; - abfluo_V : V ; - abfugio_V2 : V2 ; - abhibeo_V2 : V2 ; - abhinc_Adv : Adv ; - abhorreo_V : V ; - abhorresco_V2 : V2 ; - abhorride_Adv : Adv ; - abhorridus_A : A ; - abicio_V2 : V2 ; - abico_V2 : V2 ; - abiegneus_A : A ; - abiegnius_A : A ; - abiegnus_A : A ; - abies_F_N : N ; - abietarius_A : A ; - abietarius_M_N : N ; - abiga_F_N : N ; - abigeator_M_N : N ; - abigeatus_M_N : N ; - abigeus_M_N : N ; - abigo_V2 : V2 ; - abinde_Adv : Adv ; - abinvicem_Adv : Adv ; - abitio_F_N : N ; - abito_V : V ; - abitus_M_N : N ; - abjecte_Adv : Adv ; - abjectio_F_N : N ; - abjecto_V2 : V2 ; - abjectus_A : A ; - abjicio_V2 : V2 ; - abjudicativus_A : A ; - abjudico_V2 : V2 ; - abjugo_V2 : V2 ; - abjungo_V2 : V2 ; - abjuratio_F_N : N ; - abjurgo_V2 : V2 ; - abjuro_V2 : V2 ; - ablactatio_F_N : N ; - ablacto_V : V ; - ablacuo_V : V ; - ablacuo_V2 : V2 ; - ablaqueatio_F_N : N ; - ablaqueo_V2 : V2 ; - ablatio_F_N : N ; - ablativus_A : A ; - ablativus_M_N : N ; - ablator_M_N : N ; - ablegatio_F_N : N ; - ablego_V2 : V2 ; - ablepsia_F_N : N ; - abligurio_V2 : V2 ; - abligurrio_V2 : V2 ; - abloco_V2 : V2 ; - abludo_V : V ; - abluo_V2 : V2 ; - ablutio_F_N : N ; - abluvio_F_N : N ; - abluvium_N_N : N ; - abmatertera_F_N : N ; - abnato_V : V ; - abnegatio_F_N : N ; - abnegativus_A : A ; - abnegator_M_N : N ; - abnego_V2 : V2 ; - abnepos_M_N : N ; - abneptis_F_N : N ; - abnocto_V : V ; - abnodo_V2 : V2 ; - abnormalis_A : A ; - abnormis_A : A ; - abnueo_V : V ; - abnuitio_F_N : N ; - abnumero_V2 : V2 ; - abnuo_V2 : V2 ; - abnutivum_N_N : N ; - abnutivus_A : A ; - abnuto_V : V ; - abolefacio_V2 : V2 ; - abolefio_V : V ; - aboleo_V2 : V2 ; - abolesco_V : V ; - abolitio_F_N : N ; - abolitor_M_N : N ; - abolla_C_N : N ; - abominabilis_A : A ; - abominamentum_N_N : N ; - abominandus_A : A ; - abominanter_Adv : Adv ; - abominatio_F_N : N ; - abominatus_A : A ; - abomino_V2 : V2 ; - abominor_V : V ; - abominosus_A : A ; - aborigineus_A : A ; - aborior_V : V ; - aborisco_V : V ; - aborsus_A : A ; - abortio_F_N : N ; - abortio_V : V ; - abortium_N_N : N ; - abortivum_N_N : N ; - abortivus_A : A ; - abortivus_M_N : N ; - aborto_V : V ; - abortum_N_N : N ; - abortus_M_N : N ; - abpatruus_M_N : N ; - abra_F_N : N ; - abrado_V2 : V2 ; - abrelictus_A : A ; - abrenunciatio_F_N : N ; - abrenuntio_V2 : V2 ; - abripio_V2 : V2 ; - abrodiaetus_M_N : N ; - abrodo_V2 : V2 ; - abrogatio_F_N : N ; - abrogo_V2 : V2 ; - abrotonites_M_N : N ; - abrotonum_N_N : N ; - abrotonus_M_N : N ; - abrumpo_V2 : V2 ; - abrupte_Adv : Adv ; - abruptio_F_N : N ; - abruptum_N_N : N ; - abruptus_A : A ; - abs_Abl_Prep : Prep ; - abscedo_V : V ; - abscessus_M_N : N ; - abscido_V2 : V2 ; - abscindo_V2 : V2 ; - abscise_Adv : Adv ; - abscisio_F_N : N ; - abscissio_F_N : N ; - abscisus_A : A ; - abscondeo_V : V ; - abscondite_Adv : Adv ; - absconditum_N_N : N ; - absconditus_A : A ; - abscondo_V2 : V2 ; - absconse_Adv : Adv ; - absconsio_F_N : N ; - absconsus_A : A ; - absegmen_N_N : N ; - absens_A : A ; - absenthium_N_N : N ; - absentia_F_N : N ; - absentio_F_N : N ; - absentivus_A : A ; - absento_V2 : V2 ; - absida_F_N : N ; - absidatus_A : A ; - absidiale_N_N : N ; - absidiola_F_N : N ; - absilio_V : V ; - absimilis_A : A ; - absinthites_M_N : N ; - absinthium_N_N : N ; - absinthius_A : A ; - absinthius_M_N : N ; - absis_F_N : N ; - absisto_V : V ; - absistus_A : A ; - absit_Interj : Interj ; - absocer_M_N : N ; - absolute_Adv : Adv ; - absolutio_F_N : N ; - absolutismus_M_N : N ; - absolutorium_N_N : N ; - absolutorius_A : A ; - absolutus_A : A ; - absolvo_V2 : V2 ; - absone_Adv : Adv ; - absonia_F_N : N ; - absono_V : V ; - absonus_A : A ; - absorbeo_V2 : V2 ; - absorptio_F_N : N ; - absortio_F_N : N ; - absortus_A : A ; - absque_Abl_Prep : Prep ; - abstantia_F_N : N ; - abstemia_F_N : N ; - abstemius_A : A ; - abstergeo_V2 : V2 ; - abstergo_V2 : V2 ; - absterreo_V2 : V2 ; - abstinax_A : A ; - abstinens_A : A ; - abstinenter_Adv : Adv ; - abstinentia_F_N : N ; - abstineo_V : V ; - absto_V : V ; - abstractio_F_N : N ; - abstractus_A : A ; - abstraho_V2 : V2 ; - abstrudo_V2 : V2 ; - abstruse_Adv : Adv ; - abstrusio_F_N : N ; - abstrusus_A : A ; - abstulo_V2 : V2 ; - absum_V : V ; - absumedo_F_N : N ; - absumo_V2 : V2 ; - absumptio_F_N : N ; - absurde_Adv : Adv ; - absurditas_F_N : N ; - absurdus_A : A ; - absus_M_N : N ; - absynthium_N_N : N ; - abundans_A : A ; - abundanter_Adv : Adv ; - abundantia_F_N : N ; - abundatio_F_N : N ; - abunde_Adv : Adv ; - abundo_V : V ; - abundus_A : A ; - abusio_F_N : N ; - abusive_Adv : Adv ; - abusivus_A : A ; - abusor_M_N : N ; - abusque_Abl_Prep : Prep ; - abusque_Adv : Adv ; - abusus_M_N : N ; - abutor_V : V ; - abverto_V2 : V2 ; - abyssus_F_N : N ; - ac_Conj : Conj ; - acacia_F_N : N ; - academicus_A : A ; + Titan_2_N : N ; -- [XYHCO] :: Titan; (one of race of gods/giants preceding Olympians); + Titanus_M_N : N ; -- [XYHEO] :: Titan; (one of race of gods/giants preceding Olympians); + Titius_A : A ; -- [XLXCO] :: Titius; (Roman gens); fictitious name in legal examples; + Titius_M_N : N ; -- [XLXCO] :: Titius; (Roman gens name); fictitious name in legal examples; + Titus_M_N : N ; -- [CLIBO] :: Titus; Roman praenomen, abb. T.; (~ Flavius Vespasianus, Emperor, 79-81 AD); + Traex_M_N : N ; -- [XXHCO] :: Thracian, native of Thrace; gladiator armed with saber and short shield; + Trajanus_M_N : N ; -- [CLIBO] :: Trajan; (Roman cognomen); [M. Ulpius Traianus => Emperor, 98-117 AD]; + Trajectum_N_N : N ; -- [EXNFZ] :: Utrecht, city in Holland; (river crossing/ferry); + Transalpinus_A : A ; -- [XXXCO] :: of/belonging to/situated in the region beyond the Alps (from Rome); + Transalpinus_M_N : N ; -- [XXXCO] :: people (pl.) from the region beyond the Alps (from Rome); + Trax_M_N : N ; -- [XXXDX] :: Thracian; gladiator with saber and short shield, gladiator; + Treverus_M_N : N ; -- [XXGDX] :: Treveri, German tribe around Trier (Treves); + Trex_M_N : N ; -- [XXHCO] :: Thracian, native of Thrace; gladiator armed with saber and short shield; + Trinitas_F_N : N ; -- [XEXDS] :: number three; triad, trinity; the Holy/Blessed Trinity; + Trio_M_N : N ; -- [XXXCO] :: oxen (pl.) used for plowing; constellations Great/Little Bear (7 stars/oxen); + Troiugena_M_N : N ; -- [XXXDX] :: born of Trojan stock, descendent of Trojans; Trojan; the Romans (pl.); + Trojanus_A : A ; -- [XXXFS] :: Trojan; + Tubero_F_N : N ; -- [XXXDO] :: Tuber (surname of gens Aelia); + Tubilustrium_N_N : N ; -- [XXXDX] :: feast of trumpets (on the 23rd of March and 23rd of May); + Tulingus_M_N : N ; -- [XXGDX] :: Tulingi, German tribe north of the Helvetii - in Caesar's "Gallic War"; + Tullianus_A : A ; -- [XGICO] :: of/belonging to a Tullius; of/written by M Tullius Cicero or in his style; + Tullius_A : A ; -- [XXXDX] :: Tullius, Roman gens; M. Tullius Cicero, orator; + Tullius_M_N : N ; -- [XXXDX] :: Tullius; (Roman gens name); M. Tullius Cicero, orator; + Tusculum_N_N : N ; -- [XXIES] :: Tusculum; town in Latium/Italy; + Tyros_F_N : N ; -- [XXQCO] :: Tyre; (city on the Phoenician coast); (famous for crimson dye Tyrian purple); + Tyrus_F_N : N ; -- [XXQCO] :: Tyre; (city on the Phoenician coast); (famous for crimson dye Tyrian purple); + Ubius_M_N : N ; -- [XXGEX] :: Ubii, German tribe, west of Rhine near Coblenz; + Ulixes_M_N : N ; -- [XYHEO] :: Ulysses/Odysseus; (crafty hero of Trojan war and the Odyssey; King of Ithaca); + Utica_F_N : N ; -- [XXADO] :: Utica; (town in Africa west of Carthage); + Valens_M_N : N ; -- [ELIDS] :: Valens; (Emperor Flavius Julius Valens 364-378 lost at Adrianople); + Valentinianus_M_N : N ; -- [ELIDZ] :: Valentinian; (Emperor Flavius Valentinian I 364-375; II 375-392); + Valerianus_M_N : N ; -- [DLIDZ] :: Valerian; (Emperor Publius Licinius Valerian 253-260); + Valerius_A : A ; -- [XXXDX] :: of Valerius, Roman gens; P. V. Publicola, one of the first consuls (509 BC); + Valerius_M_N : N ; -- [XXXDX] :: Valerius; (Roman gens name); P. Valerius Publicola, very early consul (509 BC); + Veneri_A : A ; -- [XEIBO] :: of/sacred to/devoted to Venus, Roman goddess of love; of sexual love; erotic; + Venetia_F_N : N ; -- [XXIDO] :: Venice; the region in northern Italy around Venice; + Venetus_M_N : N ; -- [XXFDX] :: Veneti; tribe of W. Britiany; people inhabiting Veneti (Venice to Po) region; + Venus_F_N : N ; -- [XEIAO] :: |sexual activity/appetite/intercourse; [~ tali => best dice throw]; + Vercingetorix_M_N : N ; -- [XXXDX] :: Vercingetorix; a Gaul (Avernian). led revolt against Caesar in 52 BC; + Vergilia_F_N : N ; -- [XSXCO] :: Pleiades (pl.), constellation, seven sisters; (rises early May, sets late Oct.); + Vergilius_A : A ; -- [XXXCO] :: Vergilius; (Roman gens); [L. Verginius => killed daughter led to revolt 449 BC]; + Vergilius_M_N : N ; -- [XXXCO] :: Virgil; (Roman gens name); [P. Vergilius Maro => poet Virgil 70-19 BC]; + Verres_M_N : N ; -- [XXXDO] :: Verres; (Roman gentile name); [C. ~ => of Sicily, prosecuted by Cicero]; + Verus_M_N : N ; -- [DLIDZ] :: Verus; (Emperor Lucius Verus 161-169); + Vespasianus_M_N : N ; -- [CLIBO] :: Vespasian; (Tiberius Flavius Vespasianus, Emperor, 69-79 AD); + Vesta_F_N : N ; -- [XEXDL] :: Vesta; (goddess of flocks/herds and of hearth/household); (child of Saturn+Ops); + Vestalis_A : A ; -- [XEXEC] :: Vestal, of Vesta; (festival 9 June); + Vestalis_F_N : N ; -- [XEXEC] :: Vestal, Vestal virgin, priestess of Vesta; + Vinal_N_N : N ; -- [XXXDX] :: wine-festivals (pl.) (on 22 April and 19-20 of August); + Vincentius_M_N : N ; -- [DEXFF] :: Vincent; (Bishop of Cartenna, friend of St. Augustine of Hippo); + Vitellius_M_N : N ; -- [CLIEO] :: Vitellius (Emperor, 69 AD, year of the 4 Emperors); + Volcanus_M_N : N ; -- [XXXDX] :: Vulcan, god of fire; fire; + Vulcanus_M_N : N ; -- [XXXDX] :: Vulcan, god of fire; fire; + Wormacia_F_N : N ; -- [GXGET] :: Worms; + Xeres_M_N : N ; -- [XXPCO] :: Xerxes; (son of Darius, King of Persia 485-465 BC); (invaded Greece 480 BC); + Xerxes_M_N : N ; -- [XXPCO] :: Xerxes; (son of Darius, King of Persia 485-465 BC); (invaded Greece 480 BC); + Zeno_M_N : N ; -- [XSXCS] :: Zeno (Greek philosopher); L:Zeno (Emperor 474-491); + Zenon_M_N : N ; -- [XSXCS] :: Zenon; (Greek philosopher); + Zephyrus_M_N : N ; -- [XXXDX] :: Zephyr, the west wind; + a_Abl_Prep : Prep ; -- [XXXAO] :: by (agent), from (departure, cause, remote origin/time); after (reference); + a_Acc_Prep : Prep ; -- [XXXCO] :: ante, abb. a.; [in calendar expression a. d. = ante diem => before the day]; + a_Interj : Interj ; -- [XXXBO] :: Ah!; (distress/regret/pity, appeal/entreaty, surprise/joy, objection/contempt); + a_N : N ; -- [XXXDG] :: year; abb. ann./a.; [regnavit a(nnis). XLIIII => he reigned for 44 years]; + ab_Abl_Prep : Prep ; -- [XXXAO] :: by (agent), from (departure, cause, remote origin/time); after (reference); + abactius_A : A ; -- [XAXEO] :: stolen/rustled (of cattle); + abactor_M_N : N ; -- [XAXEO] :: cattle thief, rustler; one who drives off; + abactus_A : A ; -- [XXXES] :: driven away/off/back; forced to resign (office); restrained by; passed (night); + abactus_M_N : N ; -- [XAXEO] :: cattle thieving, stealing of cattle, rustling; + abaculus_M_N : N ; -- [ETXFS] :: tessera/small cube of colored glass for ornamental pavements/wall mosaics; + abacus_M_N : N ; -- [XXXCO] :: |counting-board; side-board; slab table; panel; square stone on top of column; + abaestuo_V : V ; -- [DXXFS] :: wave down; hang down richly (poet.); + abagmentum_N_N : N ; -- [DBXFS] :: means for obtaining abortion?; + abalienatio_F_N : N ; -- [XLXDO] :: transfer of property (legal), sale; cession; alienation; + abalienatus_A : A ; -- [XXXDO] :: unfriendly, estranged; dead/mortified (medical, of tissues); + abalieno_V2 : V2 ; -- [XXXBO] :: |transfer (sale/contract); remove, take away, dispose of; numb/deaden; + abambulo_V : V ; -- [XXXFO] :: go away; + abamita_F_N : N ; -- [XXXEO] :: great-great-great aunt; (sister of abavus/gt-gt-grandfather); female ancestor; + abante_Abl_Prep : Prep ; -- [XXXES] :: from before/in front of; + abante_Adv : Adv ; -- [XXXIO] :: in front (of); before; + abarceo_V2 : V2 ; -- [XXXEO] :: keep away; + abascantus_A : A ; -- [XXXFS] :: unenvied?; + abavia_F_N : N ; -- [XXXEO] :: ancestress; great-great grandmother; + abavunculus_M_N : N ; -- [XXXEO] :: great-great-great-great uncle; remote ancestor; + abavus_M_N : N ; -- [XXXCO] :: ancestor, forefather; great-great grandfather, grandfather's grandfather; + abax_M_N : N ; -- [DXXFS] :: counting-board; side-board; slab table; panel; square stone on top of column; + abbas_M_N : N ; -- [EEXCE] :: abbot; head of an ecclesiastical community; father; any respected monk (early); + abbatia_F_N : N ; -- [EEXCE] :: abbey, monastery; + abbatialis_A : A ; -- [EEXCE] :: of/pertaining to an abbot/abbey; abbey derived; + abbatissa_F_N : N ; -- [EEXCE] :: abbess; + abbatizo_V : V ; -- [FEXFM] :: be abbot; + abbibo_V2 : V2 ; -- [XXXDO] :: drink (in addition), take in by drinking; drink in, absorb, listen eagerly to; + abbito_V : V ; -- [XXXFO] :: approach, come/draw near; + abbreviatio_F_N : N ; -- [EXXFS] :: abbreviation; diminution; epitome (Souter); shortening; + abbreviator_M_N : N ; -- [EEXEE] :: summarizer; one who makes abstracts/epitomes from papal bulls; + abbreviatus_A : A ; -- [EXXCW] :: abridged, shortened, cut off; straitened, contracted, narrowed; abbreviated; + abbrevio_V2 : V2 ; -- [EXXCE] :: shorten, cut off; abbreviate, abstract; epitomize (Souter); break off; weaken; + abbrocamentum_N_N : N ; -- [FXXEQ] :: abbrochment, forestalling market/fair (buying before fair then retailing OED); + abdicatio_F_N : N ; -- [XLXDO] :: renunciation; disowning/disinheriting (son); resignation/abdication (office); + abdicative_Adv : Adv ; -- [DXXES] :: negatively; + abdicativus_A : A ; -- [DXXES] :: negative; + abdicatrix_F_N : N ; -- [DXXFS] :: renouncer (female); she who renounces/disclaims something; + abdicatus_M_N : N ; -- [XXXFO] :: disowned/disinherited son; + abdico_V2 : V2 ; -- [XLXEO] :: be against, reject; withhold (someone's right); forbid by unfavorable omen; + abdite_Adv : Adv ; -- [XXXFS] :: secretly; + abditivus_A : A ; -- [XXXFC] :: removed, separated (from); + abditum_N_N : N ; -- [XXXCE] :: hidden/secret/out of the way place, lair, (in) secret; + abditus_A : A ; -- [XXXBO] :: hidden, secret, out of the way, remote, secluded; obscure/abstruse (meaning); + abdo_V2 : V2 ; -- [XXXAO] :: remove, put away, set aside; depart, go away; hide, keep secret, conceal; + abdomen_N_N : N ; -- [XBXCO] :: abdomen, paunch, lower part of the belly; gluttony; as indicative of obesity; + abdominalis_A : A ; -- [GBXEK] :: abdominal; + abduco_V2 : V2 ; -- [XXXAO] :: lead away, carry off; detach, attract away, entice, seduce, charm; withdraw; + abductio_F_N : N ; -- [DXXES] :: abduction, forcible carrying off; robbing; retirement (Vulg. Eccli.); + abecedaria_F_N : N ; -- [DXXFS] :: elementary introduction; the ABC of the matter; + abecedarium_N_N : N ; -- [EEXCE] :: alphabet; + abecedarius_A : A ; -- [DXXFS] :: alphabetical; belonging to the alphabet; + abecedarius_M_N : N ; -- [DXXFS] :: one who learns the ABC's; + abecetuorium_N_N : N ; -- [EEXEE] :: act of tracing Greek and Hebrew alphabets on church floor while consecrating; + abellana_F_N : N ; -- [XAXCO] :: filbert, hazel nut; + abellanus_A : A ; -- [XAXCO] :: filbert/hazel (w/nut); of Abella (town in Campania noted for fruit/filberts); + abeo_V : V ; -- [XXXAO] :: depart, go away; go off, go forth; pass away, die, disappear; be changed; + abequito_V : V ; -- [XXXEO] :: ride away; + aberceo_V2 : V2 ; -- [XXXEO] :: keep away; forbid; + aberratio_F_N : N ; -- [XXXEO] :: diversion, relief; + aberro_V : V ; -- [XXXBO] :: stray, wander, deviate; go/be/do wrong; be unfaithful; escape; disagree (with); + abfero_V2 : V2 ; -- [XXXCO] :: bear, take away, remove, obtain, carry off/away, steal; (error for aufero); + abfluo_V : V ; -- [XXXEO] :: flow/stream/issue (from); flow away; be abundant, abound (in w/ABL); + abfugio_V2 : V2 ; -- [XXXCO] :: flee (from), shun; run/fly away, escape; disappear/vanish (things); + abhibeo_V2 : V2 ; -- [XXXEO] :: hold at a distance; + abhinc_Adv : Adv ; -- [XXXCO] :: since, ago, in past; from this time, henceforth; from this place, hence; + abhorreo_V : V ; -- [XXXAO] :: abhor, shrink back; be averse to, shudder at; differ from; be inconsistent; + abhorresco_V2 : V2 ; -- [DEXFS] :: dread, become terrified; bristle up; begin to shake/tremble/shudder/shiver; + abhorride_Adv : Adv ; -- [DXXFS] :: roughly, improperly; in an unfit manner; + abhorridus_A : A ; -- [XXXFO] :: rough, unsightly; + abicio_V2 : V2 ; -- [XXXAO] :: throw/cast away/down/aside; abandon; slight; humble; debase; sell too cheaply; + abico_V2 : V2 ; -- [EXXCN] :: humble; cast aside/away/off, reject; + abiegneus_A : A ; -- [XAXEO] :: made of fir, deal; + abiegnius_A : A ; -- [XAXEO] :: made of fir, deal; + abiegnus_A : A ; -- [XAXCO] :: made of fir, deal; wooden; + abies_F_N : N ; -- [XAXBO] :: fir tree/wood; white/silver fir, spruce; thing of fir, ship, spear; sea weed; + abietarius_A : A ; -- [XAXEO] :: of/pertaining to/concerned with timber or fir/deal; + abietarius_M_N : N ; -- [XAXEO] :: timber merchant; carpenter, joiner; + abiga_F_N : N ; -- [DBXFS] :: plant which has the power of producing abortion; + abigeator_M_N : N ; -- [DAXES] :: cattle stealer/thief, rustler; + abigeatus_M_N : N ; -- [XAXEO] :: cattle stealing, rustling; + abigeus_M_N : N ; -- [XAXEO] :: cattle stealer/thief, rustler; + abigo_V2 : V2 ; -- [EBXEW] :: |remove/cure (disease); drive away (an evil); force birth; procure abortion; + abinde_Adv : Adv ; -- [XXXEO] :: from that source, thence; + abinvicem_Adv : Adv ; -- [FXXEM] :: mutually; (usually as two words); from one another; + abitio_F_N : N ; -- [XXXDO] :: departure; going away, departing; + abito_V : V ; -- [XXXFC] :: go away, depart; + abitus_M_N : N ; -- [XXXCO] :: departure, removal; going away; way out, exit, outlet, passage out, egress; + abjecte_Adv : Adv ; -- [XXXCL] :: in spiritless manner; in humble circumstances, lowly; negligently; cowardly; + abjectio_F_N : N ; -- [XXXEO] :: dejection; a casting down/out; outcast; + abjecto_V2 : V2 ; -- [FXXCV] :: throw/cast away/down/aside; abandon; slight; humble; debase; sell too cheaply; + abjectus_A : A ; -- [XXXBL] :: downcast, dejected; humble, low, common, mean; subservient; base, sordid, vile; + abjicio_V2 : V2 ; -- [XXXAS] :: throw/cast away/down/aside; abandon; slight; humble; debase; sell too cheaply; + abjudicativus_A : A ; -- [DSXFS] :: negative; + abjudico_V2 : V2 ; -- [XLXCO] :: deprive by judicial verdict; give judgment against; reject; deny an oath; + abjugo_V2 : V2 ; -- [XXXES] :: separate (from), remove; loose from the yoke; + abjungo_V2 : V2 ; -- [XXXBO] :: unyoke, remove, separate; unharness; remove part, split; cut off from, detach; + abjuratio_F_N : N ; -- [ELXCE] :: |forswearing, denial under oath; perjury; + abjurgo_V2 : V2 ; -- [XLXEO] :: take away in settlement of a quarrel; deny/refuse reproachfully (L+S); + abjuro_V2 : V2 ; -- [XLXCO] :: repudiate (obligation or duty); deny on oath (falsely); abjure; perjure; + ablactatio_F_N : N ; -- [DEXES] :: act/process of weaning a child; + ablacto_V : V ; -- [EXXCE] :: wean; + ablacuo_V : V ; -- [XAXEO] :: loosen/weed the soil at the roots (of trees); + ablacuo_V2 : V2 ; -- [XAXEO] :: loosen/weed the soil at the roots (of trees); + ablaqueatio_F_N : N ; -- [XAXEO] :: act/process of loosening/weeding soil at base/roots of a tree; + ablaqueo_V2 : V2 ; -- [XAXEO] :: loosen/weed the soil at the roots (of trees); + ablatio_F_N : N ; -- [DEXES] :: removal, taking away; + ablativus_A : A ; -- [XGXEO] :: ablative (gram.); + ablativus_M_N : N ; -- [XGXEO] :: ablative case (with or without casus) (gram.); + ablator_M_N : N ; -- [XXXEE] :: one who takes away/removes; + ablegatio_F_N : N ; -- [XXXEO] :: dispatch, sending away/off; dispatch on a duty; + ablego_V2 : V2 ; -- [XXXCO] :: send away/off (on a mission); banish, get rid of; remove/delete a word; + ablepsia_F_N : N ; -- [DBXFS] :: blindness; + abligurio_V2 : V2 ; -- [XXXEO] :: eat up (dainties); consume in dainty living; waste, squander; waste in feasting; + abligurrio_V2 : V2 ; -- [XXXFL] :: eat up (dainties); consume in dainty living; waste, squander; waste in feasting; + abloco_V2 : V2 ; -- [XXXEO] :: place a contract for (work), hire; let/lease/rent (house); + abludo_V : V ; -- [XXXEO] :: differ from; fall short of; play out of tune; + abluo_V2 : V2 ; -- [XXXBO] :: wash away/off/out, blot out, purify, wash, cleanse; dispel (infection); quench; + ablutio_F_N : N ; -- [EEXCE] :: washing, ablution; pouring on (mixture of water and wine) in the liturgy; + abluvio_F_N : N ; -- [XAXEO] :: erosion; + abluvium_N_N : N ; -- [XAXEO] :: flooding of rivers, inundation; + abmatertera_F_N : N ; -- [XXXEO] :: great-great-great aunt (mother's side); + abnato_V : V ; -- [XXXEO] :: swim away from; swim off; + abnegatio_F_N : N ; -- [EXXCE] :: denial; + abnegativus_A : A ; -- [EXXCE] :: negative; + abnegator_M_N : N ; -- [EXXCE] :: denier, one who denies; + abnego_V2 : V2 ; -- [XXXCO] :: deny; decline (to), refuse, reject; refuse to give, withhold (what is due); + abnepos_M_N : N ; -- [XXXCO] :: great-great grandson; indefinitely distant descendent; + abneptis_F_N : N ; -- [XXXEO] :: great-great granddaughter; indefinitely distant female descendent; + abnocto_V : V ; -- [XXXEO] :: spend the night out, stay away all night; spend the night away from Rome; + abnodo_V2 : V2 ; -- [DAXFS] :: cut off knots; clear trees of knots; + abnormalis_A : A ; -- [FXXEM] :: abnormal; + abnormis_A : A ; -- [XSXEL] :: of/belonging to no school (of philosophy); deviating from the rule; irregular; + abnueo_V : V ; -- [BXXAO] :: refuse, decline; deny (guilt); refuse by a sign, shake head; reject; rule out; + abnuitio_F_N : N ; -- [DSXFS] :: negation; + abnumero_V2 : V2 ; -- [DSXFS] :: count up, reckon up; + abnuo_V2 : V2 ; -- [XXXAO] :: refuse, decline; deny (guilt); refuse by a sign, shake head; reject; rule out; + abnutivum_N_N : N ; -- [DXXFS] :: refusal, denying; + abnutivus_A : A ; -- [XXXFO] :: negative; + abnuto_V : V ; -- [BXXCL] :: deny/refuse/forbid (w/shake of head) repeatedly; forbid; + abolefacio_V2 : V2 ; -- [DXXFS] :: destroy; + abolefio_V : V ; -- [DXXFS] :: be destroyed; (abolefacio PASS); + aboleo_V2 : V2 ; -- [XXXBO] :: destroy, efface, obliterate; kill; banish, dispel; put end to. abolish, rescind; + abolesco_V : V ; -- [XXXCO] :: decay gradually, shrivel, wilt; vanish, disappear; die out; fall into disuse; + abolitio_F_N : N ; -- [XLXCO] :: cancellation, annulment (law); withdrawal (charge), amnesty; obliteration; + abolitor_M_N : N ; -- [DXXFS] :: one who takes away a thing; one who casts a thing into oblivion; + abolla_C_N : N ; -- [XXXEL] :: cloak (thick wool, for soldiers/peasants), mantle; wearer of a cloak; + abominabilis_A : A ; -- [EXXCE] :: detestable, hateful, abominable; worthy of destruction; + abominamentum_N_N : N ; -- [DXXFS] :: abomination, detestable thing; + abominandus_A : A ; -- [XXXCO] :: ill-omened, of evil omen; detestable, odious; execrable, abominable; + abominanter_Adv : Adv ; -- [DXXFS] :: abominably, detestably; + abominatio_F_N : N ; -- [EXXCE] :: aversion, detestation, loathing; + abominatus_A : A ; -- [XXXES] :: abominated/detested; accursed; + abomino_V2 : V2 ; -- [BXXFS] :: avert; (seek to) avert (omen/eventuality) (by prayer); loathe, detest, abhor; + abominor_V : V ; -- [XXXCO] :: avert; (seek to) avert (omen/eventuality) (by prayer); loathe, detest, abhor; + abominosus_A : A ; -- [DXXFS] :: full of ill omens, portentous; + aborigineus_A : A ; -- [XXXFO] :: aboriginal; (pertaining to) pre-Roman Italy/original founders of a city; + aborior_V : V ; -- [XXXCO] :: pass away, disappear, be lost; miscarry, be aborted; set (sun/planet/star); + aborisco_V : V ; -- [XXXFO] :: pass/fade away, disappear, be lost; + aborsus_A : A ; -- [DBXES] :: miscarriage; abortion; that which has been brought forth prematurely; + abortio_F_N : N ; -- [XBXDO] :: abortion, miscarriage; premature delivery; procuring an abortion; + abortio_V : V ; -- [DBXFS] :: miscarry; + abortium_N_N : N ; -- [DEXFS] :: abortion; miscarriage; + abortivum_N_N : N ; -- [XBXES] :: |abortion; miscarriage; means of procuring an abortion; + abortivus_A : A ; -- [XBXCO] :: abortive; abortificient; contraceptive; addled; prematurely born; + abortivus_M_N : N ; -- [XBXCO] :: one prematurely born; one addled; + aborto_V : V ; -- [XAXFO] :: cast its young (beast) (give birth prematurely); + abortum_N_N : N ; -- [DBXES] :: miscarriage; premature/untimely birth; abortion; dead fetus; getting abortion; + abortus_M_N : N ; -- [XBXCO] :: miscarriage; premature/untimely birth; abortion; dead fetus; getting abortion; + abpatruus_M_N : N ; -- [XXXFO] :: great-great-great uncle (father's side); + abra_F_N : N ; -- [EXXCE] :: maid; + abrado_V2 : V2 ; -- [XXXCO] :: scratch/scrape/rub/wipe (off), shave; erase; wash/erode away; "knock off", rob; + abrelictus_A : A ; -- [DXXFS] :: deserted, abandoned; + abrenunciatio_F_N : N ; -- [EXXCE] :: repudiation, renunciation, renouncing; + abrenuntio_V2 : V2 ; -- [EXXCE] :: renounce, repudiate (strongly); + abripio_V2 : V2 ; -- [XXXBO] :: drag/snatch/carry/remove away by force; wash/blow away (storm); abduct, kidnap; + abrodiaetus_M_N : N ; -- [CXXFS] :: living delicately, epithet of the painter Parrhasius; + abrodo_V2 : V2 ; -- [XXXEO] :: gnaw off/away; + abrogatio_F_N : N ; -- [XLXEO] :: repeal of a law; disregard, ignore, repudiate; cancel, rescind, revoke (honor); + abrogo_V2 : V2 ; -- [XLXBO] :: abolish; repeal wholly, annul; remove, take away; + abrotonites_M_N : N ; -- [DAXFS] :: wine prepared with the aromatic plant, southern-wood; + abrotonum_N_N : N ; -- [XAXFL] :: aromatic plant, southern-wood (medicine); + abrotonus_M_N : N ; -- [XAXFS] :: aromatic plant, southern-wood (medicine); + abrumpo_V2 : V2 ; -- [XXXAO] :: break (bonds); break off; tear asunder; cut through, sever; remove, separate; + abrupte_Adv : Adv ; -- [XXXFO] :: abruptly, suddenly; precipitously, steeply; hastily; rashly; here and there; + abruptio_F_N : N ; -- [XXXEO] :: breaking, breaking off; separation, divorce; + abruptum_N_N : N ; -- [DXXES] :: steep ascent/decent; rough dangerous ways (pl.); + abruptus_A : A ; -- [DXXES] :: |broken, disconnected, abrupt; stubborn; + abs_Abl_Prep : Prep ; -- [XXXAO] :: by (agent), from (departure, cause, remote origin (time); after (reference); + abscedo_V : V ; -- [XXXAO] :: withdraw, depart, retire; go/pass off/away; desist; recede (coasts); slough; + abscessus_M_N : N ; -- [XXXCO] :: going away, departure, withdrawal, absence; remoteness; abscess; death; + abscido_V2 : V2 ; -- [XXXBO] :: |take away violently; expel/banish; destroy (hope); amputate; prune; cut short; + abscindo_V2 : V2 ; -- [XXXBO] :: tear (away/off) (clothing); cut off/away/short; part, break, divide, separate; + abscise_Adv : Adv ; -- [XXXEO] :: abruptly, brusquely, curtly; shortly, concisely, distinctly; + abscisio_F_N : N ; -- [XGXEO] :: loss of voice; aposiopesis (rhetoric, breaking off emotionally), interruption; + abscissio_F_N : N ; -- [XGXFS] :: loss of voice; aposiopesis (rhetoric, breaking off emotionally), interruption; + abscisus_A : A ; -- [XXXCO] :: steep, sheer, precipitous; abrupt, curt, brusque; restricted; cut off, severed; + abscondeo_V : V ; -- [EXXEW] :: hide, conceal, secrete, "shelter"; leave behind; bury, engulf, swallow up; keep; + abscondite_Adv : Adv ; -- [XXXEO] :: abstrusely; profoundly; secretly; + absconditum_N_N : N ; -- [XXXCE] :: hidden/secret/concealed place/thing; secret; + absconditus_A : A ; -- [XXXAO] :: hidden, secret, concealed; covert, disguised; abstruse, recondite; + abscondo_V2 : V2 ; -- [XXXDX] :: hide, conceal, secrete, "shelter"; leave behind; bury, engulf, swallow up; keep; + absconse_Adv : Adv ; -- [XXXEO] :: secretly; + absconsio_F_N : N ; -- [EXXCE] :: shelter; + absconsus_A : A ; -- [EXXCE] :: hidden, secret, concealed, unknown; + absegmen_N_N : N ; -- [XXXFO] :: piece/slice/hunk of meat, collop; morsel, portion, lump, mouthful, gobbet; + absens_A : A ; -- [XXXBO] :: absent, missing, away, gone; physically elsewhere (things), non-existent; + absenthium_N_N : N ; -- [XXXEO] :: wormwood; absinthe, infusion/tincture of wormwood (often mixed with honey); + absentia_F_N : N ; -- [XXXCO] :: absence; absence form Rome/duty; non-appearance in court; lack; + absentio_F_N : N ; -- [DXXFS] :: holding back, restraining; + absentivus_A : A ; -- [XXXFS] :: long absent; + absento_V2 : V2 ; -- [XXXES] :: send away, cause one to be absent; be absent; + absida_F_N : N ; -- [FEXDE] :: |apse, apsis; (arched/domed part of building, at end of choir/nave of church); + absidatus_A : A ; -- [DTXES] :: arched; vaulted; having arch/arches; + absidiale_N_N : N ; -- [FEXEE] :: smaller apse (flanking larger one); (arched/domed part of church); + absidiola_F_N : N ; -- [FEXFE] :: smaller apse (flanking larger one); (arched/domed part of church); + absilio_V : V ; -- [XXXDO] :: rush/fly away (from); burst/fly apart; + absimilis_A : A ; -- [XXXCO] :: unlike, dissimilar; + absinthites_M_N : N ; -- [XAXEO] :: wine flavored with wormwood; absinthe; + absinthium_N_N : N ; -- [XXXEO] :: wormwood, absinthe, infusion/tincture of wormwood (often mixed with honey); + absinthius_A : A ; -- [XAXFS] :: containing wormwood (e.g., wine); (often mixed with honey to mask taste); + absinthius_M_N : N ; -- [XAXFO] :: wormwood, absinthe, infusion/tincture of wormwood (often mixed with honey); + absis_F_N : N ; -- [XSXCO] :: arc described by a planet; arc, segment of a circle; kind of round vessel/bowl; + absisto_V : V ; -- [XXXCO] :: withdraw from; desist, cease; leave off; depart, go away from; stand back; + absistus_A : A ; -- [DXXFS] :: distant, lying away; + absit_Interj : Interj ; -- [EEXCE] :: "god forbid", "let it be far from the hearts of the faithful"; + absocer_M_N : N ; -- [DXXFS] :: great-great grandfather of the husband or wife (in-law); + absolute_Adv : Adv ; -- [XXXCO] :: completely, absolutely; perfectly; without qualification, simply, unreservedly; + absolutio_F_N : N ; -- [XXXCO] :: finishing, completion; acquittal, release (obligat.); perfection; completeness; + absolutismus_M_N : N ; -- [GXXEK] :: absolutism; + absolutorium_N_N : N ; -- [XXXFS] :: means of deliverance from; + absolutorius_A : A ; -- [XXXCO] :: favoring/securing acquittal; pertaining to acquittal/release; effecting a cure; + absolutus_A : A ; -- [GXXEK] :: absolute; + absolvo_V2 : V2 ; -- [XLXAO] :: free (bonds), release; acquit; vote for/secure acquittal; pay off; sum up; + absone_Adv : Adv ; -- [XXXEO] :: harshly, discordantly; + absonia_F_N : N ; -- [FDXEZ] :: harshness; discordance; + absono_V : V ; -- [XXXFO] :: have harsh/discordant/unpleasant sound; + absonus_A : A ; -- [XXXCO] :: harsh/discordant/inharmonious; jarring; inconsistent; unsuitable, in bad taste; + absorbeo_V2 : V2 ; -- [XXXDX] :: devour; overwhelm; swallow up/engulf, submerge; absorb, suck in; import; dry up; + absorptio_F_N : N ; -- [XXXFS] :: drink, beverage; swallowing (Latham); + absortio_F_N : N ; -- [EWXEP] :: victory, overwhelming; + absortus_A : A ; -- [EXXDP] :: overwhelmed, swallowed up/engulfed/submerged/absorbed; (= absorptus); engulfing; + absque_Abl_Prep : Prep ; -- [XXXCO] :: without, apart from, away from; but for; except for; were it not for; (early); + abstantia_F_N : N ; -- [XXXFO] :: distance; + abstemia_F_N : N ; -- [XXXEO] :: distance; + abstemius_A : A ; -- [XXXCO] :: abstemious, abstaining from drink; sober, temperate; moderate; fasting; saving; + abstergeo_V2 : V2 ; -- [XXXCO] :: wipe off/clean/away, clean away, cleanse, strip off; banish, expel, dispel; + abstergo_V2 : V2 ; -- [XXXCO] :: wipe off/clean/away, clean away, cleanse, strip off; banish, expel, dispel; + absterreo_V2 : V2 ; -- [XXXCO] :: frighten off/away; drive away; deter, discourage; keep away/withhold from, den; + abstinax_A : A ; -- [XXXEO] :: abstemious, staying away from liquor; temperate/sparing in drink/food; + abstinens_A : A ; -- [XXXCO] :: abstinent, temperate; showing restraint, self restrained; not covetous; chaste; + abstinenter_Adv : Adv ; -- [XXXCO] :: abstinently, with self restraint (esp. financial dealings); scrupulously; + abstinentia_F_N : N ; -- [XXXBO] :: abstinence; fasting; moderation, self control, restraint; integrity; parsimony; + abstineo_V : V ; -- [XXXAO] :: withhold, keep away/clear; abstain, fast; refrain (from); avoid; keep hands of; + absto_V : V ; -- [XXXCO] :: stand at a distance, stand off; keep at a distance; + abstractio_F_N : N ; -- [DXXFS] :: separation; + abstractus_A : A ; -- [DSXES] :: abstract (as opposed to concrete); + abstraho_V2 : V2 ; -- [XXXAO] :: drag away from, remove forcibly, abort; carry off to execution; split; + abstrudo_V2 : V2 ; -- [XXXCO] :: thrust away, conceal, hide; suppress/prevent (emotion) becoming apparent; + abstruse_Adv : Adv ; -- [XXXFS] :: secretly; remotely; abstrusely; + abstrusio_F_N : N ; -- [DXXFS] :: removing, concealing; + abstrusus_A : A ; -- [XXXBO] :: secret, reserved; concealed, hidden; remote, secluded; abstruse, recondite; + abstulo_V2 : V2 ; -- [XXXFO] :: to take away, withdraw; + absum_V : V ; -- [XXXAO] :: be away/absent/distant/missing; be free/removed from; be lacking; be distinct; + absumedo_F_N : N ; -- [XXXEO] :: act of squandering/wasting/using up; consuming/devouring consumption; + absumo_V2 : V2 ; -- [XXXAO] :: spend, waste, squander, use up; take up (time); consume; exhaust, wear out; + absumptio_F_N : N ; -- [XXXEO] :: act of spending/using up; consumption; a consuming; + absurde_Adv : Adv ; -- [XXXCO] :: as to be out of tune, discordantly; preposterously, absurdly, inappropriately; + absurditas_F_N : N ; -- [FXXEE] :: absurdity, incongruity, nonsense; + absurdus_A : A ; -- [XXXBO] :: out of tune, discordant; absurd, nonsensical, out of place; awkward, uncouth; + absus_M_N : N ; -- [XXXEO] :: wad (of wool); + absynthium_N_N : N ; -- [XXXEO] :: wormwood; absinthe, infusion/tincture of wormwood (often mixed with honey); + abundans_A : A ; -- [XXXBO] :: abundant; overflowing; abounding, copious, in large measure; overdone; rich; + abundanter_Adv : Adv ; -- [XXXBO] :: abundantly; profusely, copiously; on a lavish scale; + abundantia_F_N : N ; -- [XXXBO] :: abundance, plenty; riches; fullness; overflow, excess; discharge (of blood); + abundatio_F_N : N ; -- [XXXEO] :: overflowing; abundance; overflow; + abunde_Adv : Adv ; -- [XXXBO] :: abundantly; in profusion/abundance; more than enough; amply, exceedingly, very; + abundo_V : V ; -- [XXXAO] :: abound (in), have in large measure; overdo, exceed; overflow; be rich/numerous; + abundus_A : A ; -- [XXXFO] :: having plenty of water; copious (L+S, Late Latin); + abusio_F_N : N ; -- [XGXCO] :: use of wrong synonym; catachresis, loose/improper use of a word/term/metaphor; + abusive_Adv : Adv ; -- [XGXEO] :: loosely, catachresisly, by loose/improper use of language/term/metaphor; + abusivus_A : A ; -- [DXXES] :: misapplied; + abusor_M_N : N ; -- [DEXFS] :: he who misuses; + abusque_Abl_Prep : Prep ; -- [XXXCL] :: all the way from; from/since the time of; + abusque_Adv : Adv ; -- [XXXCO] :: all the way from; from/since the time of; + abusus_M_N : N ; -- [XXXEO] :: abusing, misuse, wasting; using up; + abutor_V : V ; -- [XXXAO] :: waste, squander; abuse; misuse; use up; spend; exhaust; misapply (word); curse; + abverto_V2 : V2 ; -- [XXXES] :: turn away from/aside, divert, rout; disturb; withdraw; steal, misappropriate; + abyssus_F_N : N ; -- [EEXDX] :: deep, sea; abyss; hell, infernal pit; bowels of the earth; primal chaos; + ac_Conj : Conj ; -- [XXXAO] :: and, and also, and besides; + acacia_F_N : N ; -- [XAXCO] :: acacia, gum arabic tree; gum of this or related trees. gum arabic; + academicus_A : A ; -- [XXXCO] :: academic; of the Academy/Academic philosophy/Cicero's Academics (views); 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 ; - acanthillis_F_N : N ; - acanthinus_A : A ; - acanthion_N_N : N ; - acanthis_F_N : N ; - acanthius_A : A ; - acanthos_M_N : N ; - acanthus_M_N : N ; - acanthyllis_F_N : N ; - acanus_M_N : N ; - acapnos_A : A ; - acapnus_A : A ; - acarna_F_N : N ; - acarne_F_N : N ; - acarus_M_N : N ; - acatalecticus_A : A ; - acatalectus_A : A ; - acatalepsia_F_N : N ; - acatholice_Adv : Adv ; - acatholicus_A : A ; - acation_N_N : N ; - acatium_N_N : N ; - acatus_F_N : N ; - acaunumarga_F_N : N ; - acaustos_A : A ; - acaustus_A : A ; - accano_V : V ; - accanto_V : V ; - accantus_M_N : N ; - accapito_V : V ; - accedenter_Adv : Adv ; - accedentia_F_N : N ; - accedo_V2 : V2 ; - acceleratio_F_N : N ; - acceleratrum_N_N : N ; - accelero_V : V ; - accendium_N_N : N ; - accendo_M_N : N ; - accendo_V2 : V2 ; - accenseo_V2 : V2 ; - accensibilis_A : A ; - accensus_A : A ; - accensus_M_N : N ; - accentiuncula_F_N : N ; - accento_V : V ; - accentor_M_N : N ; - accentus_M_N : N ; - acceo_V2 : V2 ; - accepta_F_N : N ; - acceptabilis_A : A ; - acceptarius_A : A ; - acceptator_M_N : N ; - acceptatus_A : A ; - acceptilatio_F_N : N ; - acceptio_F_N : N ; - accepto_V2 : V2 ; - acceptor_M_N : N ; - acceptorius_A : A ; - acceptrix_F_N : N ; - acceptum_N_N : N ; - acceptus_A : A ; - accersio_V2 : V2 ; - accersitio_F_N : N ; - accersitor_M_N : N ; - accersitus_A : A ; - accersitus_M_N : N ; - accerso_V2 : V2 ; - accessa_F_N : N ; - accessibilis_A : A ; - accessibilitas_F_N : N ; - accessio_F_N : N ; - accessito_V : V ; - accessorie_Adv : Adv ; - accessorius_A : A ; - accessus_M_N : N ; - accidens_N_N : N ; - accidentalis_A : A ; - accidentia_F_N : N ; - accido_V2 : V2 ; - accidt_V0 : V ; - accieo_V2 : V2 ; - accinctus_A : A ; - accingo_V2 : V2 ; - accino_V : V ; - accio_V2 : V2 ; - accipio_V2 : V2 ; + acalanthis_2_N : N ; -- [XAXCS] :: small song-bird (of dark-green color); thistle-finch, goldfinch; + acalephe_F_N : N ; -- [DAXFS] :: nettle (plant); + acanos_M_N : N ; -- [DAXFS] :: thistle (plant); + acanthicos_A : A ; -- [XAXNO] :: from pine-thistle; [only ~e mastiche => gum/mastich from pine-thistle/helxine]; + acanthillis_F_N : N ; -- [XAXFS] :: wild asparagus; + acanthinus_A : A ; -- [XAXDO] :: of/resembling bear's-foot/hellbore plant; (gum) arabic; of/made of cotton; + acanthion_N_N : N ; -- [XAXNO] :: species of cotton plant or thistle; cotton thistle; + acanthis_F_N : N ; -- [XAXCO] :: small song-bird (thistle/gold finch L+S); groundsel (plant Senecio vulgaris); + acanthius_A : A ; -- [XAXFO] :: made from some species of cotton plant; + acanthos_M_N : N ; -- [XAXCO] :: bear's-foot, (black) hellbore (plant); gum arabic tree/wood; + acanthus_M_N : N ; -- [XAXCO] :: bear's-foot, (black) hellbore (plant); gum arabic tree/wood; + acanthyllis_F_N : N ; -- [XAXNO] :: small song-bird; + acanus_M_N : N ; -- [XAXNO] :: pine thistle; + acapnos_A : A ; -- [XAXES] :: obtained without smoke (honey); burning without smoke (wood); smokeless; + acapnus_A : A ; -- [XAXEO] :: obtained without smoke (honey); burning without smoke (wood); smokeless; + acarna_F_N : N ; -- [XAXFO] :: edible sea fish; + acarne_F_N : N ; -- [XAXFO] :: edible sea fish; + acarus_M_N : N ; -- [GXXEK] :: mite; + acatalecticus_A : A ; -- [DPXFS] :: verse in which no syllable is wanting in the last foot (opp. catalecticus); + acatalectus_A : A ; -- [DPXFS] :: verse in which no syllable is wanting in the last foot (opp. catalectus); + acatalepsia_F_N : N ; -- [FXXFM] :: scepticism; + acatholice_Adv : Adv ; -- [FEXFE] :: non-catholicly, in non-catholic manner; + acatholicus_A : A ; -- [FEXFE] :: non-catholic; + acation_N_N : N ; -- [XWHEO] :: kind of light Greek sailing boat; large sail; + acatium_N_N : N ; -- [XWHES] :: kind of light Greek sailing boat; large sail; + acatus_F_N : N ; -- [XWXFS] :: light vessel/boat; + acaunumarga_F_N : N ; -- [XXXNO] :: red marl (clayey limestone); (fertilizer used by Celts in Gaul/Britain); + acaustos_A : A ; -- [XXXNO] :: incombustible; + acaustus_A : A ; -- [XXXNS] :: incombustible; + accano_V : V ; -- [XDXFS] :: sing to/with; + accanto_V : V ; -- [XDXEO] :: sing to (person); sing at (place); + accantus_M_N : N ; -- [XGXFS] :: accent, intonation, accentuation, intensity, tone; signal, blast; + accapito_V : V ; -- [FLXFM] :: admit subservience; acknowledge feudal liability; + accedenter_Adv : Adv ; -- [DXXFS] :: nearly; + accedentia_F_N : N ; -- [XXXNO] :: additional quality; + accedo_V2 : V2 ; -- [XXXAO] :: come near, approach; agree with; be added to (w/ad or in + ACC); constitute; + acceleratio_F_N : N ; -- [XXXFO] :: speeding up, quickening, acceleration, hastening; + acceleratrum_N_N : N ; -- [GXXEK] :: accelerator; + accelero_V : V ; -- [XXXBO] :: speed up, quicken, hurry; make haste, act quickly, hasten; accelerate; + accendium_N_N : N ; -- [XXXFS] :: kindling, setting on fire; + accendo_M_N : N ; -- [XXXFS] :: inciter, instigator; + accendo_V2 : V2 ; -- [XXXAO] :: kindle, set on fire, light; illuminate; inflame, stir up, arouse; make bright; + accenseo_V2 : V2 ; -- [XXXEO] :: attach as an attendant to; add to; + accensibilis_A : A ; -- [DXXFS] :: burnable, that may be burned; burning; + accensus_A : A ; -- [XWXFS] :: reckoned among; attached, attending; + accensus_M_N : N ; -- [XXXNO] :: lighting; kindling, setting on fire; + accentiuncula_F_N : N ; -- [XGXFO] :: accent, intonation; + accento_V : V ; -- [XDXEO] :: sing to (person); sing at (place); + accentor_M_N : N ; -- [DDXFS] :: one who sings with another; + accentus_M_N : N ; -- [XGXCS] :: accent, intonation, accentuation, intensity, tone; signal, blast; + acceo_V2 : V2 ; -- [BXXES] :: send for, summon (forth), fetch; invite; (w/mortum) commit suicide; + accepta_F_N : N ; -- [XLXEO] :: allotment, portion of land assigned to one person; + acceptabilis_A : A ; -- [XXXCO] :: acceptable; + acceptarius_A : A ; -- [XLXFO] :: allotment-holding; + acceptator_M_N : N ; -- [DEXFS] :: one who accepts/approves; avenue/access/passage for admittance of the people; + acceptatus_A : A ; -- [XLXFO] :: acceptable, welcome, pleasing; + acceptilatio_F_N : N ; -- [XLXDO] :: formal release from an obligation; + acceptio_F_N : N ; -- [XXXEO] :: taking (over), accepting, receiving; meaning; sense; + accepto_V2 : V2 ; -- [XXXCO] :: receive regularly, take (payment/food); be given (name); submit to; grasp idea; + acceptor_M_N : N ; -- [XXXFO] :: receiver; collector; believer, one who accepts as true; type of hawk; + acceptorius_A : A ; -- [XXXFO] :: designed/fit/suitable for receiving; + acceptrix_F_N : N ; -- [XXXFO] :: receiver (female); she who receives; believer, she who accepts as true; + acceptum_N_N : N ; -- [XXXCO] :: receipts (vs. expenditures); favors; receipt side of account; written receipt; + acceptus_A : A ; -- [XXXBO] :: welcome, pleasing; popular with, well liked; dear; received/credited (money); + accersio_V2 : V2 ; -- [XXXDO] :: send for, summon; indict/accuse; fetch, import; invite; invoke; bring on oneself + accersitio_F_N : N ; -- [DXXFS] :: summons, sending for; [dies ~ => day of death]; + accersitor_M_N : N ; -- [XLXEO] :: one who comes to summon/call/fetch another; accuser; + accersitus_A : A ; -- [XXXCO] :: brought from elsewhere, foreign; extraneous; self-inflicted (death); sent for; + accersitus_M_N : N ; -- [XXXEO] :: summons, sending for; + accerso_V2 : V2 ; -- [XXXAO] :: send for, summon; indict/accuse; fetch, import; invite; invoke; bring on oneself + accessa_F_N : N ; -- [DXXES] :: approach, arrival; entry, admittance, audience; hostile approach/attack; onset; + accessibilis_A : A ; -- [DXXES] :: accessible; + accessibilitas_F_N : N ; -- [DXXES] :: accessibility; + accessio_F_N : N ; -- [XXXAO] :: approach; increase, bonus; accessory; attack, onset (fever, rage); fit; + accessito_V : V ; -- [XXXFO] :: approach repeatedly; keep on coming; + accessorie_Adv : Adv ; -- [FEXFE] :: assessorily, in assessory/supplementary/adjunct manner; + accessorius_A : A ; -- [FEXEE] :: assessory, adjunct; + accessus_M_N : N ; -- [XXXBO] :: approach, arrival; entry, admittance, audience; hostile approach/attack; onset; + accidens_N_N : N ; -- [XXXCO] :: accidental happening, chance event, contingency; accident, circumstance; + accidentalis_A : A ; -- [FXXEZ] :: accidental; + accidentia_F_N : N ; -- [XXXES] :: chance, casual event, that which happens; + accido_V2 : V2 ; -- [XXXCO] :: cut, cut into/down/up, hack, hew, fell; overthrow, destroy; cut short; weaken; + accidt_V0 : V ; -- [XXXCO] :: happens, turns out, befalls; fall upon; come to pass, occur; + accieo_V2 : V2 ; -- [DXXES] :: send for, summon (forth), fetch; invite; (w/mortum) commit suicide; + accinctus_A : A ; -- [XXXES] :: well girded; ready, prepared; strict (opp. negligens); + accingo_V2 : V2 ; -- [XXXAO] :: gird on or about, surround; equip, provide (with); get ready, prepare (for); + accino_V : V ; -- [XDXFS] :: sing to/with; + accio_V2 : V2 ; -- [XXXBO] :: send for, summon (forth), fetch; invite; (w/mortum) commit suicide; + accipio_V2 : V2 ; -- [XXXAO] :: take, grasp, receive, accept, undertake; admit, let in, hear, learn; obey; accipiter_F_N : N ; -- [XAXCO] :: hawk (any of several species); flying gurnard (fish); - accipiter_M_N : N ; - accipitrina_F_N : N ; - accipitro_V2 : V2 ; - accitio_F_N : N ; - accitus_A : A ; - accitus_M_N : N ; - acclamatio_F_N : N ; - acclamo_V : V ; - acclaro_V2 : V2 ; - acclinis_A : A ; - acclino_V2 : V2 ; - acclive_N_N : N ; - acclivis_A : A ; - acclivitas_F_N : N ; - acclivius_A : A ; - acclivus_A : A ; - accludo_V2 : V2 ; - accognosco_V2 : V2 ; - accola_C_N : N ; - accolens_M_N : N ; - accolo_V2 : V2 ; - accommodate_Adv : Adv ; - accommodatio_F_N : N ; - accommodatus_A : A ; - accommodo_V2 : V2 ; - accommodus_A : A ; - accomodate_Adv : Adv ; - accomodatio_F_N : N ; - accomodatus_A : A ; - accomodo_V2 : V2 ; - accomodus_A : A ; - accongero_V2 : V2 ; - accordeon_N_N : N ; - accordo_V : V ; - accordum_N_N : N ; - accorporo_V2 : V2 ; - accredo_V2 : V2 ; - accresco_V : V ; - accretio_F_N : N ; - accretus_A : A ; - accubitalia_F_N : N ; - accubitatio_F_N : N ; - accubitio_F_N : N ; - accubitorius_A : A ; - accubitum_N_N : N ; - accubitus_M_N : N ; - accubo_Adv : Adv ; - accubo_V : V ; - accudo_V2 : V2 ; - accumbo_V2 : V2 ; - accumulate_Adv : Adv ; - accumulatio_F_N : N ; - accumulator_M_N : N ; - accumulatrum_N_N : N ; - accumulo_V2 : V2 ; - accurate_Adv : Adv ; - accuratio_F_N : N ; - accuratus_A : A ; - accuro_V2 : V2 ; - accurro_V2 : V2 ; - accursus_M_N : N ; - accusabilis_A : A ; - accusatio_F_N : N ; - accusativus_A : A ; - accusativus_M_N : N ; - accusator_M_N : N ; - accusatorie_Adv : Adv ; - accusatorius_A : A ; - accusatrix_F_N : N ; - accusito_V2 : V2 ; - accuso_V : V ; - accusso_V : V ; - acedia_F_N : N ; - acedior_V : V ; - acediosus_A : A ; - acentetus_A : A ; - aceo_V : V ; - acephalos_A : A ; - acephalus_A : A ; - acer_A : A ; - acer_N_N : N ; - aceratus_A : A ; - acerbe_Adv : Adv ; - acerbitas_F_N : N ; - acerbitudo_F_N : N ; - acerbo_V2 : V2 ; - acerbum_N_N : N ; - acerbus_A : A ; - acerneus_A : A ; - acernia_F_N : N ; - acernus_A : A ; - acerosus_A : A ; - acerra_F_N : N ; - acersecomes_M_N : N ; - acertas_F_N : N ; - acerus_A : A ; - acervalis_A : A ; - acervalis_M_N : N ; - acervatim_Adv : Adv ; - acervatio_F_N : N ; - acervo_V2 : V2 ; - acervus_M_N : N ; - acescentia_F_N : N ; - acesco_V : V ; - acesis_F_N : N ; - acetabulum_N_N : N ; - acetarium_N_N : N ; - acetarum_N_N : N ; - acetasco_V2 : V2 ; - acetosus_A : A ; - acetum_N_N : N ; - achaemenis_F_N : N ; - achantum_N_N : N ; - achanum_N_N : N ; - acharis_A : A ; - acharistos_A : A ; - acharistum_N_N : N ; - achariter_Adv : Adv ; - acharna_F_N : N ; - acharne_F_N : N ; + accipiter_M_N : N ; -- [XAXCO] :: hawk (any of several species); flying gurnard (fish); + accipitrina_F_N : N ; -- [XAXFO] :: act of a hawk; rapacity; + accipitro_V2 : V2 ; -- [XAXFO] :: tear, rend (like a hawk); + accitio_F_N : N ; -- [DXXFS] :: calling, summoning; + accitus_A : A ; -- [XXXEO] :: imported, brought from abroad; + accitus_M_N : N ; -- [XXXEO] :: summons, call; + acclamatio_F_N : N ; -- [XXXCO] :: acclamation, shout (of comment/approval/disapproval); crying against; brawling; + acclamo_V : V ; -- [XXXCO] :: shout (at), cry out against, protest; shout approval, applaud; + acclaro_V2 : V2 ; -- [XXXFO] :: make clear, reveal, make manifest; + acclinis_A : A ; -- [XXXCO] :: leaning/resting (on/against); sloping, inclined; disposed/inclined (to); + acclino_V2 : V2 ; -- [XXXCO] :: lay down, rest (on) (w/DAT), lean against/towards, incline (to); + acclive_N_N : N ; -- [XXXEO] :: upward slope; + acclivis_A : A ; -- [XXXCO] :: rising, sloping/inclining upward, ascending, up hill; steep; + acclivitas_F_N : N ; -- [XXXEO] :: slope, ascent, upward inclination, steepness; + acclivius_A : A ; -- [EXXCN] :: well-disposed; + acclivus_A : A ; -- [XXXCO] :: rising, sloping/inclining upward, ascending, up hill; steep; + accludo_V2 : V2 ; -- [EXXEP] :: close up, shut the door; + accognosco_V2 : V2 ; -- [XXXEO] :: recognize (visually or by some other means); + accola_C_N : N ; -- [XXXCO] :: neighbor; one who lives nearby/beside; inhabitant; + accolens_M_N : N ; -- [DXXDX] :: neighbors, people of the neighborhood; + accolo_V2 : V2 ; -- [XXXCO] :: dwell/live near; be a neighbor to; + accommodate_Adv : Adv ; -- [XXXCO] :: fittingly, in a suitable manner; + accommodatio_F_N : N ; -- [XXXEO] :: adjustment, willingness to oblige, complaisance; fitting, adapting, adaptation; + accommodatus_A : A ; -- [XXXCO] :: fit/suitable/appropriate; suiting the interest (of); favorably disposed (to); + accommodo_V2 : V2 ; -- [XXXBO] :: adapt, adjust to, fit, suit; apply to, fasten on; apply/devote oneself to; + accommodus_A : A ; -- [XXXEO] :: fitting, convenient, suitable to, adapted to; + accomodate_Adv : Adv ; -- [XXXEO] :: fittingly, in a suitable manner; + accomodatio_F_N : N ; -- [XXXEO] :: adjustment, willingness to oblige, complaisance; fitting, adapting, adaptation; + accomodatus_A : A ; -- [XXXEO] :: fit/suitable/appropriate; suiting the interests (of); favorably disposed (to); + accomodo_V2 : V2 ; -- [XXXEO] :: adapt, adjust to, fit, suit; apply to, fasten on; apply/devote oneself to; + accomodus_A : A ; -- [XXXEO] :: fitting, convenient, suitable to, adapted to; + accongero_V2 : V2 ; -- [DEXFS] :: bear, bring forth; + accordeon_N_N : N ; -- [GDXEK] :: accordion; + accordo_V : V ; -- [FXXFM] :: agree with; harmonize; + accordum_N_N : N ; -- [GDXEK] :: accord (musical); + accorporo_V2 : V2 ; -- [DXXFS] :: incorporate, fit/join to; + accredo_V2 : V2 ; -- [XXXCO] :: give credence to, believe; put faith in, trust; + accresco_V : V ; -- [XXXBO] :: increase/swell, grow larger/up/progressively; be added/annexed to; arise; + accretio_F_N : N ; -- [XXXFO] :: increase, an increasing, increment; + accretus_A : A ; -- [XXXNO] :: overgrown with; encased in; + accubitalia_F_N : N ; -- [XXXFS] :: covering spread over dining table couches; + accubitatio_F_N : N ; -- [DXXFS] :: reclining (at meals), lying (at table); + accubitio_F_N : N ; -- [XXXEO] :: reclining (at meals), lying (at table); couch (L+S); + accubitorius_A : A ; -- [DXXFS] :: pertaining to reclining (at table); + accubitum_N_N : N ; -- [DXXFS] :: couch for large number of guests to recline at meals (triclinium/3 seats); + accubitus_M_N : N ; -- [XXXEO] :: reclining (at meals), lying (at table); couch/seat; place for a couch (L+S); + accubo_Adv : Adv ; -- [XXXFO] :: in a prone/recumbent position; + accubo_V : V ; -- [XXXFO] :: lie near or by; recline at table; + accudo_V2 : V2 ; -- [XXXFO] :: coin in addition; strike/stamp/mint (coin) (L+S); make more money, add wealth; + accumbo_V2 : V2 ; -- [XXXBO] :: take a place/recline at the table; lie on (bed), lie at/prone, lie beside; + accumulate_Adv : Adv ; -- [XXXEO] :: copiously, abundantly; superabuntly; + accumulatio_F_N : N ; -- [XXXNO] :: accumulation, heaping/piling up (earth); + accumulator_M_N : N ; -- [XXXFO] :: heaper up; one who accumulates/amasses; + accumulatrum_N_N : N ; -- [GTXEK] :: accumulator; + accumulo_V2 : V2 ; -- [XXXCO] :: accumulate, heap/pile up/soil; add by exaggeration; add, increase, enhance; + accurate_Adv : Adv ; -- [XXXCO] :: carefully, accurately, precisely, exactly; nicely; painstakingly, meticulous; + accuratio_F_N : N ; -- [XXXEO] :: accuracy, preciseness, care; carefulness, painstakingness; treatment (medical); + accuratus_A : A ; -- [XXXCO] :: accurate, exact, with care, meticulous; carefully performed/prepared; finished; + accuro_V2 : V2 ; -- [XXXCO] :: take care of, attend to (duties/guests), give attention to; perform with care; + accurro_V2 : V2 ; -- [XXXBO] :: run/hasten to (help); come/rush up (inanim subj.); charge, rush to attack; + accursus_M_N : N ; -- [XXXCO] :: rushing up (to see or give help); attack; onset; + accusabilis_A : A ; -- [XXXFO] :: blamable, reprehensible; + accusatio_F_N : N ; -- [XLXBO] :: accusation, inditement; act/occasion of accusation; rebuke, reproof; + accusativus_A : A ; -- [XGXEO] :: accusative/objective (applied to case); + accusativus_M_N : N ; -- [XGXEO] :: accusative/objective case; + accusator_M_N : N ; -- [XLXCO] :: accuser, prosecutor at trial; plaintiff; informer; + accusatorie_Adv : Adv ; -- [XLXEO] :: accusingly; in the manner of a prosecutor/accuser; + accusatorius_A : A ; -- [XLXCO] :: of/belonging to a public/professional prosecutor; accusatory, denunciatory; + accusatrix_F_N : N ; -- [XLXEO] :: prosecutor at trial (female), accuser, plaintiff; + accusito_V2 : V2 ; -- [XLXFO] :: accuse repeatedly; go on accusing; + accuso_V : V ; -- [XXXBO] :: accuse, blame, find fault, impugn; reprimand; charge (w/crime/offense); + accusso_V : V ; -- [FXXEZ] :: accuse, blame, find fault, impugn; reprimand; charge (w/crime/offense); + acedia_F_N : N ; -- [EXXFP] :: weariness (of body or soul); + acedior_V : V ; -- [DXXFS] :: be morose/peevish; be weary (Souter); + acediosus_A : A ; -- [EXXFP] :: wearied; listless; + acentetus_A : A ; -- [XXXEO] :: flawless; without points or spots; (used in connection with crystals/gems L+S); + aceo_V : V ; -- [XXXFO] :: be sour; + acephalos_A : A ; -- [XPXFO] :: lacking the first syllable; + acephalus_A : A ; -- [DPXFS] :: lacking the first syllable; beginning w/short syllable; lacking head/leader; + acer_A : A ; -- [XXXAO] :: sharp, bitter, pointed, piercing, shrill; sagacious, keen; severe, vigorous; + acer_N_N : N ; -- [XAXCO] :: maple tree; wood of the maple tree; maple; + aceratus_A : A ; -- [XXXEO] :: mixed with chaff/husks (of clay for bricklaying); without horns (L+S); + acerbe_Adv : Adv ; -- [XXXBO] :: stridently, with harsh sound; cruelly, harshly; with pain/severity; premature; + acerbitas_F_N : N ; -- [XXXCO] :: harshness, severity; bitterness, sourness, ill feeling; anguish, hardship; + acerbitudo_F_N : N ; -- [XXXFO] :: harshness, severity; bitterness, sourness, ill feeling; anguish, hardship; + acerbo_V2 : V2 ; -- [XXXCO] :: embitter; aggravate; make disagreeable; make worse; + acerbum_N_N : N ; -- [XXXES] :: calamity, misfortune; + acerbus_A : A ; -- [XXXAO] :: harsh, strident, bitter, sour; unripe, green, unfinished; grievous; gloomy; + acerneus_A : A ; -- [XAXIO] :: maple, of maple (wood); belonging to the maple tree; + acernia_F_N : N ; -- [DAXFS] :: fish (unidentified); + acernus_A : A ; -- [XAXCO] :: maple, of maple (wood); belonging to the maple tree; + acerosus_A : A ; -- [XAXEO] :: having husks included (of flour/bread); + acerra_F_N : N ; -- [XXXCO] :: box or casket for incense; + acersecomes_M_N : N ; -- [XXXEL] :: long-haired/unshorn youth; one ever youthful; young favorite/"fair-haired boy"; + acertas_F_N : N ; -- [XXXIO] :: sharpness, keenness; vehemence, force; severity; + acerus_A : A ; -- [XAXFS] :: without wax; [mel ~ => honey flowing spontaneously from the comb]; + acervalis_A : A ; -- [XXXFO] :: characterized by piling up; by accumulation; + acervalis_M_N : N ; -- [XXXFL] :: conclusion by accumulation; a piling up (of facts); + acervatim_Adv : Adv ; -- [XXXCO] :: in heaps/piles; in large quantities/scale; briefly; summarily, without order; + acervatio_F_N : N ; -- [XXXEO] :: heaping/piling together; accumulation; amassing; + acervo_V2 : V2 ; -- [XXXCO] :: heap/pile up; make into heaps/piles; massed/categorized together; cover with; + acervus_M_N : N ; -- [XXXBO] :: mass/heap/pile/stack; treasure, stock; large quantity; cluster; funeral pile; + acescentia_F_N : N ; -- [FXXEE] :: acidity, sourness; + acesco_V : V ; -- [XXXCO] :: turn/become sour; + acesis_F_N : N ; -- [XAXNO] :: form of malachite; sort of borax used in medicine; + acetabulum_N_N : N ; -- [XXXCO] :: small cup (esp. for vinegar); (1/8 pint); cup-shaped part (plant); hip joint; + acetarium_N_N : N ; -- [GXXEK] :: salad (seasoned); + acetarum_N_N : N ; -- [XXXNO] :: salad prepared with vinegar; something that is prepared with vinegar; + acetasco_V2 : V2 ; -- [DXXFS] :: become sour/vinegary; + acetosus_A : A ; -- [FXXEK] :: vinegar; + acetum_N_N : N ; -- [XXXCO] :: vinegar, sour wine; tang of vinegar; sourness of disposition; sharpness of wit; + achaemenis_F_N : N ; -- [XAXNO] :: plant alleged to have magical properties; + achantum_N_N : N ; -- [DAXFS] :: kind of frankincense; + achanum_N_N : N ; -- [DAXFS] :: mute, stupid; disease of animals; + acharis_A : A ; -- [EXHEP] :: unpleasant, disagreeable; ungrateful; + acharistos_A : A ; -- [EXHEP] :: unpleasant, disagreeable; ungrateful; + acharistum_N_N : N ; -- [XBXEO] :: eye salve; + achariter_Adv : Adv ; -- [EXHEP] :: unpleasantly, disagreeably; + acharna_F_N : N ; -- [XAXEO] :: edible sea fish; + acharne_F_N : N ; -- [XAXEO] :: edible sea fish; achates_F_N : N ; -- [XXXEO] :: agate; - achates_M_N : N ; - acheta_M_N : N ; - achetas_M_N : N ; - achilleos_F_N : N ; - achlis_F_N : N ; - achor_M_N : N ; - achras_F_N : N ; - achynops_M_N : N ; - acia_F_N : N ; - acicula_F_N : N ; - acidatas_F_N : N ; - acide_Adv : Adv ; - aciditas_F_N : N ; - acidulus_A : A ; - acidum_N_N : N ; - acidus_A : A ; - acies_F_N : N ; - acina_F_N : N ; - acinaces_M_N : N ; - acinarius_A : A ; - acinaticius_A : A ; - acinos_F_N : N ; - acinosus_A : A ; - acinum_N_N : N ; - acinus_M_N : N ; - acipenser_M_N : N ; - acipensis_M_N : N ; - aciscularius_M_N : N ; - acistarium_N_N : N ; - acisulus_M_N : N ; - aclassis_F_N : N ; - aclouthia_F_N : N ; - aclys_F_N : N ; - acna_F_N : N ; - acnua_F_N : N ; - acoenonetus_A : A ; - acoenonoetus_A : A ; - acoetis_F_N : N ; - acolitus_M_N : N ; - acoluthus_M_N : N ; - acolythus_M_N : N ; - acolytus_M_N : N ; - acona_F_N : N ; - aconiti_Adv : Adv ; - aconiton_N_N : N ; - aconitum_N_N : N ; - acontias_M_N : N ; - acontizo_V : V ; - acopos_F_N : N ; - acopum_N_N : N ; - acor_M_N : N ; - acorion_N_N : N ; - acorna_F_N : N ; - acoron_N_N : N ; - acoros_F_N : N ; - acorum_N_N : N ; - acorus_F_N : N ; - acosmos_A : A ; - acquiesco_V : V ; - acquiro_V2 : V2 ; - acquisitio_F_N : N ; - acquisitrix_F_N : N ; - acquisitus_A : A ; - acra_F_N : N ; - acratophorum_N_N : N ; - acredo_F_N : N ; - acredula_F_N : N ; - acriculus_A : A ; - acridium_N_N : N ; - acrifolium_N_N : N ; - acrimonia_F_N : N ; - acritas_F_N : N ; - acriter_Adv : Adv ; - acritudo_F_N : N ; - acro_M_N : N ; - acroama_N_N : N ; - acroamatarius_A : A ; - acroamaticus_A : A ; - acroasis_F_N : N ; - acroaticus_A : A ; - acrobates_M_N : N ; - acrobaticus_A : A ; + achates_M_N : N ; -- [XXXEO] :: agate; + acheta_M_N : N ; -- [XAXNO] :: male cicada, the "chirper"; + achetas_M_N : N ; -- [XAXNO] :: male cicada, the "chirper"; + achilleos_F_N : N ; -- [XAXNS] :: medicinal plant (said to be discovered by Achilles); milfoil, yarrow; + achlis_F_N : N ; -- [XAXNO] :: elk; moose; wild beast of the North; + achor_M_N : N ; -- [DBXFS] :: scab/scald (on the head); + achras_F_N : N ; -- [XAXFO] :: wild pear tree (Pirus amygdaliformis); + achynops_M_N : N ; -- [XAXNO] :: plant (species of Plantago?); + acia_F_N : N ; -- [XXXEO] :: thread, yarn; + acicula_F_N : N ; -- [DXXFS] :: small pin (for a head-dress); + acidatas_F_N : N ; -- [DBXFS] :: sourness/acidity (of the stomach); + acide_Adv : Adv ; -- [XXXFO] :: unpleasantly; + aciditas_F_N : N ; -- [GXXEK] :: acidity; + acidulus_A : A ; -- [XXXEO] :: tart, slightly sour; + acidum_N_N : N ; -- [XXXFO] :: acid substances (pl.) as solvents; + acidus_A : A ; -- [XXXBO] :: acid/sour/bitter/tart; sour-smelling; soaked in vinegar; shrill; sharp-tongued; + acies_F_N : N ; -- [XXXAO] :: sharpness, sharp edge, point; battle line/array; sight, glance; pupil of eye; + acina_F_N : N ; -- [XAXFL] :: small berry; grape seed/pit; + acinaces_M_N : N ; -- [XWXEO] :: short sword (Persian); short saber; scimitar; (contrary to gender rule OLD); + acinarius_A : A ; -- [XXXFO] :: designed for holding grapes; + acinaticius_A : A ; -- [XAXFO] :: prepared from dried grapes/raisins; + acinos_F_N : N ; -- [XAXNO] :: kind of basil; + acinosus_A : A ; -- [XAXNO] :: like/resembling grapes, of the vine; + acinum_N_N : N ; -- [XAXCO] :: grape; ivyberry or other small berry; pip, (grape) pit/seed; + acinus_M_N : N ; -- [XAXCO] :: grape; ivyberry or other small berry; pip, (grape) pit/seed; + acipenser_M_N : N ; -- [XAXCO] :: fish (sturgeon?) (esteemed dainty dish); + acipensis_M_N : N ; -- [XAXES] :: fish (sturgeon?) (esteemed dainty dish); + aciscularius_M_N : N ; -- [XXXEO] :: worker with an adze; stone-cutter?; + acistarium_N_N : N ; -- [EEXEE] :: monastery; + acisulus_M_N : N ; -- [DXXFS] :: little adze; + aclassis_F_N : N ; -- [XXXFO] :: tunic (over the shoulders, unstitched); + aclouthia_F_N : N ; -- [FEXFE] :: Divine Office (in Eastern Rite Churches), liturgical rite; + aclys_F_N : N ; -- [XWXEL] :: small javelin with a strap; + acna_F_N : N ; -- [XAXFS] :: measure/piece of land (120 feet square); + acnua_F_N : N ; -- [XAXEO] :: square actus, a measure of land 120 yards square; + acoenonetus_A : A ; -- [XXXFS] :: lacking in common feelings; without common sense; + acoenonoetus_A : A ; -- [XXXFO] :: lacking in common feelings; without common sense; + acoetis_F_N : N ; -- [XXXFO] :: wife; bed-fellow (L+S); + acolitus_M_N : N ; -- [EEXFV] :: acolyte; cleric in minor orders; (ostiarius/exorcista/subdiaconus/diaconus); + acoluthus_M_N : N ; -- [EEXFV] :: acolyte; cleric in minor orders; (ostiarius/exorcista/subdiaconus/diaconus); + acolythus_M_N : N ; -- [EEXEE] :: acolyte; cleric in minor orders; (ostiarius/exorcista/subdiaconus/diaconus); + acolytus_M_N : N ; -- [EEXEV] :: acolyte; cleric in minor orders; (ostiarius/exorcista/subdiaconus/diaconus); + acona_F_N : N ; -- [XXXFS] :: pointed stones (pl.); + aconiti_Adv : Adv ; -- [XXXFS] :: without labor, effortlessly; without dust (literally); + aconiton_N_N : N ; -- [XAXCO] :: wolfbane, aconite (gnus Aconitum) (poisonous plant); aconite as a poison; + aconitum_N_N : N ; -- [XAXCO] :: wolfbane, aconite (gnus Aconitum) (poisonous plant); aconite as a poison; + acontias_M_N : N ; -- [XXXNO] :: meteor resembling a dart in flight; quick-darting snake (L+S); + acontizo_V : V ; -- [DWXFS] :: shoot a dart; spout/gush forth (blood); + acopos_F_N : N ; -- [XBXNO] :: stone used to treat fatigue; + acopum_N_N : N ; -- [XBXEO] :: salve used to treat fatigue or pain; + acor_M_N : N ; -- [XXXCO] :: bitter or tart flavor; sourness; tart/sour substance; + acorion_N_N : N ; -- [XAXDO] :: sweet/yellow flag/iris or its root; butchers's broom/reed/rush or its root; + acorna_F_N : N ; -- [XAXNO] :: kind of thistle; + acoron_N_N : N ; -- [XAXDO] :: sweet/yellow flag/iris or its root; butchers's broom/reed/rush or its root; + acoros_F_N : N ; -- [XAXFS] :: sweet/yellow flag/iris or its root; butchers's broom/reed/rush or its root; + acorum_N_N : N ; -- [XAXDO] :: sweet/yellow flag/iris or its root; butchers's broom/reed/rush or its root; + acorus_F_N : N ; -- [XAXFS] :: sweet/yellow flag/iris or its root; butchers's broom/reed/rush or its root; + acosmos_A : A ; -- [XXXFO] :: unadorned, careless; + acquiesco_V : V ; -- [XXXBO] :: lie with (w/cum), rest/relax; repose (death); acquiesce/assent/submit; subside; + acquiro_V2 : V2 ; -- [XXXBO] :: acquire (goods/money/adherents), obtain, gain, get; add to stock; accrue; + acquisitio_F_N : N ; -- [XXXDO] :: acquisition; additional source of supply; + acquisitrix_F_N : N ; -- [XXXIO] :: acquirer (female); + acquisitus_A : A ; -- [XXXFO] :: strained, recherche; + acra_F_N : N ; -- [XXXFS] :: promontory/headland; + acratophorum_N_N : N ; -- [XXXEO] :: vessel for scented/unmixed wine; + acredo_F_N : N ; -- [DXXFS] :: sharp/pungent taste; + acredula_F_N : N ; -- [XAXFO] :: unknown bird/beast/animal; (thrush or owl? L+S); + acriculus_A : A ; -- [XXXFO] :: shrewd, acute; irritable, sharp, testy; + acridium_N_N : N ; -- [DAQFS] :: scammony (Convolvulus Scammonia); purgative resin from its tuber root; + acrifolium_N_N : N ; -- [DAXFS] :: unknown tree of ill omen; + acrimonia_F_N : N ; -- [XXXCO] :: acrimony; briskness; caustic/corrosive/pungent quality; indigestion; vigor; + acritas_F_N : N ; -- [XXXFO] :: sharpness, keenness; vehemence, force; severity; + acriter_Adv : Adv ; -- [XXXBO] :: sharply, vigilantly, fiercely; severely, steadfastly; keenly, accurately; + acritudo_F_N : N ; -- [XXXDO] :: pungency, bitterness; keenness, energy, vigor; harshness, cruelty, fierceness; + acro_M_N : N ; -- [DXXFS] :: extremity; member of the body; stem of a plant; + acroama_N_N : N ; -- [XXXDL] :: entertainment at table/reading/music, act; reader, actor, singer, clown; + acroamatarius_A : A ; -- [DDXFS] :: of/belonging/pertaining to a musical/reading entertainment; + acroamaticus_A : A ; -- [DDXFS] :: of/belonging/pertaining to a musical/reading entertainment; + acroasis_F_N : N ; -- [XXXDO] :: public lecture; + acroaticus_A : A ; -- [XXXEO] :: of/for lectures only; esoteric; + acrobates_M_N : N ; -- [XXXFO] :: acrobat; + acrobaticus_A : A ; -- [GXXEK] :: acrobatic; acrochordon_1_N : N ; -- [XBXFO] :: type of wart; - acrochordon_2_N : N ; - acrochordon_F_N : N ; - acrocolefium_N_N : N ; - acrocorium_N_N : N ; - acrolithos_A : A ; - acrolithus_A : A ; - acron_M_N : N ; - acropodium_N_N : N ; - acror_M_N : N ; - acroterium_N_N : N ; - acrozymus_A : A ; - acrufolius_A : A ; - acrum_N_N : N ; - acsi_Conj : Conj ; - acta_F_N : N ; - actaea_F_N : N ; - actarius_M_N : N ; - acte_F_N : N ; - actinophoros_M_N : N ; - actinosus_A : A ; - actio_F_N : N ; - actionarius_M_N : N ; - actito_V2 : V2 ; - actiuncula_F_N : N ; - active_Adv : Adv ; - activitas_F_N : N ; - activus_A : A ; - actor_M_N : N ; - actorius_A : A ; - actrix_F_N : N ; - actu_Adv : Adv ; - actualis_A : A ; - actualitas_F_N : N ; - actualiter_Adv : Adv ; - actuaria_F_N : N ; - actuariola_F_N : N ; - actuariolum_N_N : N ; - actuarium_N_N : N ; - actuarius_A : A ; - actuarius_M_N : N ; - actum_Adv : Adv ; - actum_N_N : N ; - actuo_V2 : V2 ; - actuose_Adv : Adv ; - actuositas_F_N : N ; - actuosus_A : A ; - actus_M_N : N ; - actutum_Adv : Adv ; - acuarius_M_N : N ; - acueo_V : V ; - acuitas_F_N : N ; - acula_F_N : N ; - aculeatus_A : A ; - aculeolus_M_N : N ; - aculeus_M_N : N ; - aculos_F_N : N ; - acumen_N_N : N ; - acuminarius_A : A ; - acuminatus_A : A ; - acumino_V2 : V2 ; - acuna_F_N : N ; - acuo_V2 : V2 ; - acupedius_A : A ; - acupenser_M_N : N ; - acupensis_M_N : N ; - acupictura_F_N : N ; - acupunctura_F_N : N ; - acus_F_N : N ; - acus_N_N : N ; - acusticus_A : A ; - acutale_Adv : Adv ; - acutalis_A : A ; - acutarus_A : A ; - acutatus_A : A ; - acute_Adv : Adv ; - acutor_M_N : N ; - acutule_Adv : Adv ; - acutulus_A : A ; - acutus_A : A ; - acylos_F_N : N ; - acyrologia_F_N : N ; - acysterium_N_N : N ; - ad_Acc_Prep : Prep ; - ad_Adv : Adv ; - adactio_F_N : N ; - adactus_M_N : N ; - adadunephros_M_N : N ; - adaequate_Adv : Adv ; - adaequatio_F_N : N ; - adaequatus_A : A ; - adaeque_Adv : Adv ; - adaequo_V : V ; - adaeratio_F_N : N ; - adaero_V : V ; - adaestuo_V : V ; - adaggero_V2 : V2 ; - adagio_F_N : N ; - adagium_N_N : N ; - adagnitio_F_N : N ; - adalgidus_A : A ; - adalligo_V2 : V2 ; - adamanteus_A : A ; - adamantinus_A : A ; + acrochordon_2_N : N ; -- [XBXFO] :: type of wart; + acrochordon_F_N : N ; -- [XBXFS] :: type of wart; + acrocolefium_N_N : N ; -- [DAXFS] :: upper part of the foot of a swine; + acrocorium_N_N : N ; -- [XASNS] :: kind of onion; + acrolithos_A : A ; -- [XXXEO] :: having extremities of marble (statues - the rest in wood L+S); + acrolithus_A : A ; -- [XXXEO] :: having extremities of marble (statues - the rest in wood L+S); + acron_M_N : N ; -- [DXXFS] :: extremity; member of the body; stem of a plant; + acropodium_N_N : N ; -- [XXXFO] :: base/pedestal of a statue; + acror_M_N : N ; -- [DXXES] :: pungency, bitterness; keenness, energy, vigor; harshness, cruelty, fierceness; + acroterium_N_N : N ; -- [XXXEO] :: projection; ornament at angle of a pediment; projection acting as breakwater; + acrozymus_A : A ; -- [DXXFS] :: slightly leavened; + acrufolius_A : A ; -- [XAXFO] :: having prickly leaves; made of holly/holly-wood; + acrum_N_N : N ; -- [XXXFS] :: promontory/headland (pl.); + acsi_Conj : Conj ; -- [XXXCW] :: as if; (ac si); + acta_F_N : N ; -- [XXXCO] :: sea-shore (as resort); beach; holiday (pl.), life of ease; party at seaside; + actaea_F_N : N ; -- [XAXNO] :: baneberry (Actaea spicata) (poisonous) (also called Herb Christopher); + actarius_M_N : N ; -- [DLXCS] :: short-hand writer, clerk, account/book-keeper, secretary; + acte_F_N : N ; -- [XAXNO] :: dwarf-elder (Sambucus ebulus); + actinophoros_M_N : N ; -- [XAXNO] :: ray-bearing kind of shellfish; + actinosus_A : A ; -- [DEXFS] :: glorious; (full of rays); + actio_F_N : N ; -- [XXXAO] :: act, action, activity, deed; incident;, plot (play); legal process, suit; plea; + actionarius_M_N : N ; -- [GXXEK] :: shareholder; + actito_V2 : V2 ; -- [XDXCO] :: act/plead frequently/repeatedly; take parts in play as actor, be actor in; + actiuncula_F_N : N ; -- [XLXFS] :: short judicial harangue; unimportant speech; + active_Adv : Adv ; -- [DGXFS] :: actively; (gram. like active verb); + activitas_F_N : N ; -- [FXXEE] :: activity, movement, action; + activus_A : A ; -- [XXXEO] :: active; practical; active (gram. mood); + actor_M_N : N ; -- [XAXCO] :: |drover, herdsman; wielder; [actor habenae => slinger]; + actorius_A : A ; -- [DXXFS] :: active; practical; active (mood) (gram.); + actrix_F_N : N ; -- [XXXFO] :: stewardess; agent (female); plaintiff (female) (L+S); + actu_Adv : Adv ; -- [FXXFE] :: actually; + actualis_A : A ; -- [DXXFS] :: active, practical; actual; + actualitas_F_N : N ; -- [FXXFM] :: actuality; reality (Ecc); existence; + actualiter_Adv : Adv ; -- [DXXFS] :: actively; + actuaria_F_N : N ; -- [XXXEO] :: fast passenger vessel with sails and oars; + actuariola_F_N : N ; -- [XXXEO] :: small fast vessel (with sails and oars); row boat; barge; + actuariolum_N_N : N ; -- [DXXES] :: small fast vessel (impelled by oars); row boat; barge; + actuarium_N_N : N ; -- [XAXES] :: hunting; [~ limes=> 12 foot wide road between fields; ~ canes=> hounds]; + actuarius_A : A ; -- [XXXCO] :: swift, nimble, light; of/serving to mark a cattle path/road between fields; + actuarius_M_N : N ; -- [XLXCO] :: short-hand writer, clerk, account/book-keeper, secretary; + actum_Adv : Adv ; -- [XXXFS] :: sharply, pointedly; acutely; + actum_N_N : N ; -- [XLXBO] :: act, deed, transaction; acts (pl.), exploits; chronicles, (official) record; + actuo_V2 : V2 ; -- [FXXEE] :: implement; actuate; + actuose_Adv : Adv ; -- [XXXFO] :: actively, busily, energetically; passionately, eagerly; + actuositas_F_N : N ; -- [FXXFE] :: activity, movement, action; + actuosus_A : A ; -- [XXXCO] :: active, busy, energetic, full of life; acting with extravagant gesture; + actus_M_N : N ; -- [XAXBO] :: |right of way/road for cattle; path, cart-track; land measure (120 ft.); + actutum_Adv : Adv ; -- [XXXCO] :: immediately, instantly; forthwith, without delay; + acuarius_M_N : N ; -- [XXXIO] :: maker/seller of needles/pins; + acueo_V : V ; -- [FXXEK] :: accentuate; + acuitas_F_N : N ; -- [FXXDE] :: insight; sharpness, perception; + acula_F_N : N ; -- [XXXEO] :: small amount of water; small stream; little needle (L+S); + aculeatus_A : A ; -- [XXXCO] :: prickly; stinging/sharp/barbed; subtle; inflicted by/having sting/spine/points; + aculeolus_M_N : N ; -- [XXXFS] :: little needle/pin; + aculeus_M_N : N ; -- [XXXBO] :: sting, spine, thorn, prickle, point, spike; barb; pang, prick; sarcasm; + aculos_F_N : N ; -- [XAXNO] :: acorn/fruit of the ilex (holm oak or evergreen oak) (poss. holly); + acumen_N_N : N ; -- [XXXBO] :: sharpened point, spur; sting; peak, promontory; sharpness/cunning/acumen; fraud; + acuminarius_A : A ; -- [XXXFS] :: good for sharpening; [mola ~ => stone for sharpening weapons]; + acuminatus_A : A ; -- [XXXNO] :: sharp, pointed, tapering; + acumino_V2 : V2 ; -- [XXXFS] :: sharpen, make pointed, cut to a point; + acuna_F_N : N ; -- [XAXFS] :: measure/piece of land (120 feet square), square actus; + acuo_V2 : V2 ; -- [XXXAO] :: whet, sharpen, cut to a point; spur on, provoke, incite; come to a head (PASS); + acupedius_A : A ; -- [XXXFS] :: swift of foot; + acupenser_M_N : N ; -- [XXXCO] :: fish (sturgeon?) (esteemed dainty dish); + acupensis_M_N : N ; -- [XAXEO] :: fish (sturgeon?) (esteemed dainty dish); + acupictura_F_N : N ; -- [FXXEE] :: embroidery; + acupunctura_F_N : N ; -- [GBXEK] :: acupuncture; + acus_F_N : N ; -- [XXXBO] :: needle, pin; hair-pin; pipefish, needlefish; detail; husks/chaff (pl.); + acus_N_N : N ; -- [XAXCO] :: husks of grain/beans, chaff; + acusticus_A : A ; -- [GDXEK] :: acoustic; + acutale_Adv : Adv ; -- [FXXFE] :: somewhat sharply; pointedly; + acutalis_A : A ; -- [XXXFS] :: pointed; + acutarus_A : A ; -- [DXXFS] :: that sharpens instruments; + acutatus_A : A ; -- [DXXFS] :: sharpened; + acute_Adv : Adv ; -- [XXXCO] :: acutely, with intellectual penetration; shrilly; clearly (seeing), distinctly; + acutor_M_N : N ; -- [XXXFS] :: whetter, sharpener, one that sharpens; + acutule_Adv : Adv ; -- [DXXFS] :: somewhat sharply; + acutulus_A : A ; -- [XXXEO] :: smart, clever; somewhat pointed; somewhat subtle (Cas); + acutus_A : A ; -- [XSXCO] :: of small radius; acute (angle); + acylos_F_N : N ; -- [XAXNS] :: acorn of the holm-oak; + acyrologia_F_N : N ; -- [DGXFS] :: impropriety of speech; + acysterium_N_N : N ; -- [FEXFE] :: monastery; + ad_Acc_Prep : Prep ; -- [XXXAO] :: to, up to, towards; near, at; until, on, by; almost; according to; about w/NUM; + ad_Adv : Adv ; -- [XXXCO] :: about (with numerals); + adactio_F_N : N ; -- [XXXFO] :: action/process of administering an oath; forcing/bringing to (L+S); + adactus_M_N : N ; -- [XXXFO] :: thrust; forcing/bringing together (L+S); bite, biting; + adadunephros_M_N : N ; -- [XXXNS] :: precious stone; (Adad's - supreme god of Assyrians - kidney); + adaequate_Adv : Adv ; -- [FXXEE] :: equally, to same extent; likewise; adequately; + adaequatio_F_N : N ; -- [DXXFS] :: adjusting, adapting, making equal; + adaequatus_A : A ; -- [FXXEE] :: equal; adequate; + adaeque_Adv : Adv ; -- [XXXCO] :: equally, to same extent; so much; also, likewise, in a like manner; + adaequo_V : V ; -- [XXXBO] :: equalize, make equal in height, come up to level; compare (to); be equal; raze; + adaeratio_F_N : N ; -- [XAXFO] :: calculation of the area of a piece of land; valuing, appraising (L+S); + adaero_V : V ; -- [XAXFO] :: calculate the area of a piece of land, appraise, value (in money), estimate; + adaestuo_V : V ; -- [XXXFS] :: rush, roar, boil up; + adaggero_V2 : V2 ; -- [XXXDO] :: heap (earth, etc.) up around/over; seethe, foam up; + adagio_F_N : N ; -- [XXXFO] :: proverb; adage; + adagium_N_N : N ; -- [XXXEO] :: proverb; adage; + adagnitio_F_N : N ; -- [DXXFS] :: knowledge; + adalgidus_A : A ; -- [XXXES] :: chilly, very cold (climate); + adalligo_V2 : V2 ; -- [XXXFS] :: bind/fasten to, attach; + adamanteus_A : A ; -- [XTXEO] :: steel; of adamant, adamantine; + adamantinus_A : A ; -- [XXXCO] :: incorruptible, impregnable; inflexible; hard as adamant/diamond/steel; adamantis_1_N : N ; -- [XAXNO] :: plant (unidentified); - adamantis_2_N : N ; - adamas_M_N : N ; - adamator_M_N : N ; - adambulo_V : V ; - adamo_V2 : V2 ; - adamplio_V2 : V2 ; - adamussim_Adv : Adv ; - adapatio_F_N : N ; - adaperio_V2 : V2 ; - adapertilis_A : A ; - adapertio_F_N : N ; - adapertivus_A : A ; - adaptertus_A : A ; - adapto_V2 : V2 ; - adaquo_V : V ; - adaquor_V : V ; - adar_N : N ; - adarca_F_N : N ; - adarce_F_N : N ; - adaresco_V2 : V2 ; - adariarius_A : A ; - adaro_V2 : V2 ; - adaucto_V2 : V2 ; - adauctor_M_N : N ; - adauctus_M_N : N ; - adaugeo_V2 : V2 ; - adaugesco_V : V ; - adaugmen_N_N : N ; - adbello_V2 : V2 ; - adbibo_V2 : V2 ; - adbito_V : V ; - adblatero_V2 : V2 ; - adbreviatio_F_N : N ; - adbreviator_M_N : N ; - adbreviatus_A : A ; - adbrevio_V2 : V2 ; - adcedenter_Adv : Adv ; - adcedentia_F_N : N ; - adcedo_V2 : V2 ; - adceleratio_F_N : N ; - adcelero_V : V ; - adcessibilis_A : A ; - adcessibilitas_F_N : N ; - adcessio_F_N : N ; - adcessitio_F_N : N ; - adcessitor_M_N : N ; - adcessitus_M_N : N ; - adcessus_M_N : N ; - adclamatio_F_N : N ; - adclamo_V : V ; - adclaro_V2 : V2 ; - adclinis_A : A ; - adclino_V2 : V2 ; - adclive_N_N : N ; - adclivis_A : A ; - adclivitas_F_N : N ; - adclivus_A : A ; - adcludo_V2 : V2 ; - adcognosco_V2 : V2 ; - adcola_C_N : N ; - adcolens_M_N : N ; - adcolo_V2 : V2 ; - adcommodate_Adv : Adv ; - adcommodatio_F_N : N ; - adcommodatus_A : A ; - adcommodo_V2 : V2 ; - adcommodus_A : A ; - adcredo_V2 : V2 ; - adcresco_V : V ; - adcretio_F_N : N ; - adcretus_A : A ; - adcubitio_F_N : N ; - adcubitorius_A : A ; - adcubitus_M_N : N ; - adcubo_Adv : Adv ; - adcudo_V2 : V2 ; - adcumbo_V2 : V2 ; - adcumulate_Adv : Adv ; - adcumulatio_F_N : N ; - adcumulator_M_N : N ; - adcumulo_V2 : V2 ; - adcurate_Adv : Adv ; - adcuratio_F_N : N ; - adcuratus_A : A ; - adcuro_V2 : V2 ; - adcurro_V2 : V2 ; - adcursus_M_N : N ; - addax_M_N : N ; - addecet_V0 : V ; - addecimo_V : V ; - addendus_A : A ; - addenseo_V2 : V2 ; - addenso_V2 : V2 ; - addico_V2 : V2 ; - addicta_F_N : N ; - addictio_F_N : N ; - addictus_A : A ; - addictus_M_N : N ; - addisco_V2 : V2 ; - additamentum_N_N : N ; - additicius_A : A ; - additio_F_N : N ; - addititius_A : A ; - additivus_A : A ; - addivino_V2 : V2 ; - addo_V2 : V2 ; - addoceo_V2 : V2 ; - addormio_V : V ; - addormisco_V : V ; - addubito_V : V ; - adduco_V2 : V2 ; - adducte_Adv : Adv ; - adductor_M_N : N ; - adductus_A : A ; - adedo_V2 : V2 ; - adelphis_F_N : N ; - ademptio_F_N : N ; - ademptor_M_N : N ; - adeo_Adv : Adv ; - adeo_1_V2 : V2 ; - adeo_2_V2 : V2 ; + adamantis_2_N : N ; -- [XAXNO] :: plant (unidentified); + adamas_M_N : N ; -- [XTXCO] :: steel, hardest iron (early); anything hard, adamant; white sapphire; diamond; + adamator_M_N : N ; -- [DXXFS] :: lover; + adambulo_V : V ; -- [XXXEO] :: walk beside/near; + adamo_V2 : V2 ; -- [XXXBO] :: fall in love/lust with; love passionately/adulterously; admire greatly; covet; + adamplio_V2 : V2 ; -- [XXXIO] :: enlarge, increase, widen; embellish; + adamussim_Adv : Adv ; -- [XXXES] :: exactly/precisely; accurately, with precision; according to a ruler/level (L+S); + adapatio_F_N : N ; -- [FXXFE] :: adaption; adjustment; + adaperio_V2 : V2 ; -- [EXXFW] :: throw open, open wide; unroll (scroll), open (book); uncover, reveal; open up; + adapertilis_A : A ; -- [XXXFO] :: that may/can be opened; + adapertio_F_N : N ; -- [DXXFS] :: uncovering, revealing, disclosure; opening (of eyes/mouth) (Souter); + adapertivus_A : A ; -- [EXXFP] :: opening; + adaptertus_A : A ; -- [XXXDO] :: open (doors, flowers), expanded; not sealed off (honey cells); + adapto_V2 : V2 ; -- [XXXEO] :: adjust, modify; fit (to) (w/DAT); + adaquo_V : V ; -- [XXXEO] :: water, supply with water, bring water to; obtain water; give to drink; + adaquor_V : V ; -- [XXXFS] :: bring/procure water (for one's self); fetch water; + adar_N : N ; -- [EXQEW] :: Adar, Jewish month; (twelfth in ecclesiastic year); + adarca_F_N : N ; -- [XAXNO] :: salty deposit/effolescence on reeds; froth on sedge forming spongy growth; + adarce_F_N : N ; -- [DAXFS] :: salty deposit/effolescence on reeds; froth on sedge forming spongy growth; + adaresco_V2 : V2 ; -- [XXXFO] :: become dry; dry up; + adariarius_A : A ; -- [DEXFS] :: serving at the alter; + adaro_V2 : V2 ; -- [XAXNS] :: plow carefully; + adaucto_V2 : V2 ; -- [XXXFO] :: increase, add to the resources of; + adauctor_M_N : N ; -- [DXXFS] :: augmenter; + adauctus_M_N : N ; -- [XXXFO] :: increase, growth; + adaugeo_V2 : V2 ; -- [XXXBO] :: increase, augment, intensify; supplement, make more; exaggerate, magnify; + adaugesco_V : V ; -- [XXXEO] :: become greater/more numerous, increase; + adaugmen_N_N : N ; -- [XXXFO] :: increase, additional quantity; augmentation; + adbello_V2 : V2 ; -- [DWXFS] :: make war upon; + adbibo_V2 : V2 ; -- [XXXDO] :: drink (in addition), take in by drinking; drink in, absorb, listen eagerly to; + adbito_V : V ; -- [XXXFO] :: approach, come/draw near; + adblatero_V2 : V2 ; -- [XXXFS] :: prattle, chatter; + adbreviatio_F_N : N ; -- [EXXFS] :: abbreviation; diminution; epitome (Souter); shortening; + adbreviator_M_N : N ; -- [EEXEE] :: summarizer; one who makes abstracts/epitomes from papal bulls; + adbreviatus_A : A ; -- [EXXCW] :: abridged, shortened, cut off; straitened, contracted, narrowed; abbreviated; + adbrevio_V2 : V2 ; -- [EXXCE] :: shorten, cut off; abbreviate, abstract; epitomize (Souter); break off; weaken; + adcedenter_Adv : Adv ; -- [DXXFS] :: nearly; + adcedentia_F_N : N ; -- [XXXNO] :: additional quality; + adcedo_V2 : V2 ; -- [XXXAO] :: come near, approach; agree with; be added to (w/ad or in + ACC); constitute; + adceleratio_F_N : N ; -- [XXXFO] :: speeding up, quickening, acceleration, hastening; + adcelero_V : V ; -- [XXXBO] :: speed up, quicken, hurry; make haste, act quickly, hasten; accelerate; + adcessibilis_A : A ; -- [DXXES] :: accessible; + adcessibilitas_F_N : N ; -- [DXXES] :: accessibility; + adcessio_F_N : N ; -- [XXXAO] :: approach; increase, bonus; accessory; attack, onset (fever, rage); fit; + adcessitio_F_N : N ; -- [DXXFS] :: summons, sending for; [dies ~ => day of death]; + adcessitor_M_N : N ; -- [XLXEO] :: one who comes to summon/call/fetch another; accuser; + adcessitus_M_N : N ; -- [XXXEO] :: summons, sending for; + adcessus_M_N : N ; -- [XXXBO] :: approach, arrival; entry, admittance, audience; hostile approach/attack; onset; + adclamatio_F_N : N ; -- [XXXCO] :: acclamation, shout (of comment/approval/disapproval); crying against; brawling; + adclamo_V : V ; -- [XXXCO] :: shout (at), cry out against, protest; shout approval, applaud; + adclaro_V2 : V2 ; -- [XXXFO] :: make clear, reveal, make manifest; + adclinis_A : A ; -- [XXXCO] :: leaning/resting (on/against); sloping, inclined; disposed/inclined (to); + adclino_V2 : V2 ; -- [XXXCO] :: lay down, rest (on) (w/DAT), lean against/towards, incline (to); + adclive_N_N : N ; -- [XXXEO] :: upward slope; + adclivis_A : A ; -- [XXXCO] :: rising, sloping upward; + adclivitas_F_N : N ; -- [XXXEO] :: slope, ascent, upward inclination, steepness; + adclivus_A : A ; -- [XXXCO] :: rising, sloping upward; + adcludo_V2 : V2 ; -- [EXXEP] :: close up, shut the door; + adcognosco_V2 : V2 ; -- [XXXEO] :: recognize (visually or by some other means); + adcola_C_N : N ; -- [XXXCO] :: neighbor; one who lives nearby/beside; inhabitant; + adcolens_M_N : N ; -- [XXXCO] :: neighbors, people of the neighborhood; + adcolo_V2 : V2 ; -- [XXXCO] :: dwell/live near; be a neighbor to; + adcommodate_Adv : Adv ; -- [XXXCO] :: fittingly, in a suitable manner; + adcommodatio_F_N : N ; -- [XXXEO] :: adjustment, willingness to oblige, complaisance; fitting, adapting, adaptation; + adcommodatus_A : A ; -- [XXXCO] :: fit/suitable/appropriate; suiting the interests (of); favorably disposed (to); + adcommodo_V2 : V2 ; -- [XXXBO] :: adapt, adjust to, fit, suit; apply to, fasten on; apply/devote oneself to; + adcommodus_A : A ; -- [XXXEO] :: fitting, convenient, suitable to, adapted to; + adcredo_V2 : V2 ; -- [XXXCO] :: give credence to, believe; put faith in, trust; + adcresco_V : V ; -- [XXXBO] :: increase/swell, grow larger/up/progressively; be added/annexed to; arise; + adcretio_F_N : N ; -- [XXXFO] :: increase, an increasing, increment; + adcretus_A : A ; -- [XXXNO] :: overgrown with; encased in; + adcubitio_F_N : N ; -- [XXXEO] :: reclining (at meals), lying; + adcubitorius_A : A ; -- [DXXFS] :: pertaining to reclining (at table); + adcubitus_M_N : N ; -- [XXXEO] :: reclining (at meals), lying; + adcubo_Adv : Adv ; -- [XXXFO] :: in a prone/recumbent position; + adcudo_V2 : V2 ; -- [XXXFO] :: coin in addition; strike/stamp/mint (coin) (L+S); make more money, add wealth; + adcumbo_V2 : V2 ; -- [XXXBO] :: take a place/recline at the table; lie on (bed), lie at/prone, lie beside; + adcumulate_Adv : Adv ; -- [XXXEO] :: copiously, abundantly; superabundantly; + adcumulatio_F_N : N ; -- [XXXNO] :: accumulation, heaping/piling up; + adcumulator_M_N : N ; -- [XXXFO] :: heaper up; one who accumulates/amasses; + adcumulo_V2 : V2 ; -- [XXXCO] :: accumulate, heap/pile up/soil; add by exaggeration; add, increase, enhance; + adcurate_Adv : Adv ; -- [XXXCO] :: carefully, accurately, precisely, exactly; nicely; painstakingly, meticulous; + adcuratio_F_N : N ; -- [XXXEO] :: accuracy, preciseness, care; carefulness, painstakingness; treatment (medical); + adcuratus_A : A ; -- [XXXCO] :: accurate, exact, with care, meticulous; carefully performed/prepared; finished; + adcuro_V2 : V2 ; -- [XXXCO] :: take care of, attend to (duties/guests), give attention to; perform with care; + adcurro_V2 : V2 ; -- [XXXBO] :: run/hasten to (help); come/rush up (inanim subj.); charge, rush to attack; + adcursus_M_N : N ; -- [XXXCO] :: rushing up (to see or give help); attack; onset; + addax_M_N : N ; -- [XAANO] :: addax; (African antelope with twisted horns); + addecet_V0 : V ; -- [XXXCO] :: it is fitting/proper, it behooves; + addecimo_V : V ; -- [DEXES] :: take the tenth part/a tenth; tithe; + addendus_A : A ; -- [FXXEE] :: to be added/joined; + addenseo_V2 : V2 ; -- [XXXFO] :: make more dense, close up (the ranks); + addenso_V2 : V2 ; -- [XXXFO] :: thicken, make more dense; + addico_V2 : V2 ; -- [XLXAO] :: be propitious; adjudge, sentence, doom; confiscate; award, assign; enslave; + addicta_F_N : N ; -- [XLXEO] :: person (female) enslaved for debt or theft; + addictio_F_N : N ; -- [XLXEO] :: adjudication (disputed property), assignment (of debtor to custody/creditor); + addictus_A : A ; -- [XLXCO] :: devoted/addicted (to); (debt) slave (of); bound (to do something); bent upon; + addictus_M_N : N ; -- [XLXDO] :: person enslaved for debt or theft; + addisco_V2 : V2 ; -- [XXXCO] :: learn in addition/further/besides; learn; + additamentum_N_N : N ; -- [XXXDO] :: addition; additional factor/amount/element; something added; + additicius_A : A ; -- [XXXFO] :: additional, extra; + additio_F_N : N ; -- [XXXFO] :: act of adding, addition; + addititius_A : A ; -- [FXXFE] :: additional, extra; + additivus_A : A ; -- [DXXFS] :: added, annexed; + addivino_V2 : V2 ; -- [XXXFS] :: prognosticate, divine; + addo_V2 : V2 ; -- [XXXAO] :: add, insert, bring/attach to, say in addition; increase; impart; associate; + addoceo_V2 : V2 ; -- [XXXFO] :: teach new/additional accomplishments; + addormio_V : V ; -- [DXXFS] :: fall asleep, go to sleep; begin to sleep; + addormisco_V : V ; -- [XXXFO] :: fall asleep; + addubito_V : V ; -- [XXXCO] :: doubt, be doubtful/uncertain; hesitate (to), hesitate over a situation; + adduco_V2 : V2 ; -- [XXXAO] :: lead up/to/away; bring up/to; persuade, induce; lead, bring; contract, tighten; + adducte_Adv : Adv ; -- [XXXFO] :: strictly, tightly; with close control; + adductor_M_N : N ; -- [XXXFS] :: procurer; + adductus_A : A ; -- [XXXCO] :: contracted, drawn together; frowning, grave; compressed, terse; strict, severe; + adedo_V2 : V2 ; -- [XXXCO] :: eat up, eat into/away at, nibble, squander; wear down, exhaust; erode; + adelphis_F_N : N ; -- [XAXNO] :: kind of date (hanging two together like brothers - Adelphi-The Brothers, play) + ademptio_F_N : N ; -- [XXXDO] :: taking away, removal, deprivation; revocation (of legacy); withholding (right); + ademptor_M_N : N ; -- [DXXFS] :: one who takes away; + adeo_1_V : V ; -- [XXXAO] :: approach; attack; visit, address; undertake; take possession (inheritance); + adeo_2_V : V ; -- [XXXAO] :: approach; attack; visit, address; undertake; take possession (inheritance); + adeo_Adv : Adv ; -- [XXXAO] :: to such a degree/pass/point; precisely, exactly; thus far; indeed, truly, even; 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 ; - adequito_V : V ; - aderator_M_N : N ; - aderro_V : V ; - adesco_V2 : V2 ; - adessurio_V : V ; - adesurio_V : V ; - adesus_A : A ; - adfaber_A : A ; - adfabilis_A : A ; - adfabilitas_F_N : N ; - adfabiliter_Adv : Adv ; - adfabre_Adv : Adv ; - adfabricatus_A : A ; - adfamen_N_N : N ; - adfania_F_N : N ; - adfatim_Adv : Adv ; - adfatus_M_N : N ; - adfectatio_F_N : N ; - adfectato_Adv : Adv ; - adfectator_M_N : N ; - adfectatus_A : A ; - adfecte_Adv : Adv ; - adfectio_F_N : N ; - adfectiose_Adv : Adv ; - adfectiosus_A : A ; - adfecto_V2 : V2 ; - adfector_V : V ; - adfectrix_F_N : N ; - adfectualis_A : A ; - adfectuose_Adv : Adv ; - adfectuosus_A : A ; - adfectus_A : A ; - adfectus_M_N : N ; - adfero_V2 : V2 ; - adficio_V2 : V2 ; - adficticius_A : A ; - adfigo_V2 : V2 ; - adfiguro_V2 : V2 ; - adfingo_V2 : V2 ; - adfinis_A : A ; + adeps_M_N : N ; -- [XXXCO] :: fat, lard, grease; fatty tissue; bombast; corpulence, obesity (pl.); sapwood; + adeptio_F_N : N ; -- [XXXEO] :: act of obtaining, attainment, achievement; + adeptus_M_N : N ; -- [DXXFS] :: attainment, an obtaining; + adequito_V : V ; -- [XXXCO] :: ride up to/towards/near, gallop up; + aderator_M_N : N ; -- [DEXES] :: worshiper, one who adores; + aderro_V : V ; -- [XXXFO] :: stray towards/near; wander to/by; + adesco_V2 : V2 ; -- [DAXFS] :: feed; fatten; + adessurio_V : V ; -- [XXXFO] :: be very hungry/starving; + adesurio_V : V ; -- [XXXFO] :: be very hungry/starving; + adesus_A : A ; -- [XXXES] :: eaten, gnawed; worn away by water, eroded; [adesi lapides => smooth/polished]; + adfaber_A : A ; -- [XXXFS] :: made/prepared ingeniously/skillfully/with art; ingenious, skilled in art; + adfabilis_A : A ; -- [XXXCO] :: easy of access/to talk to, affable, friendly, courteous; sympathetic (words); + adfabilitas_F_N : N ; -- [XXXEO] :: affability, friendliness, courtesy; + adfabiliter_Adv : Adv ; -- [XXXEO] :: conversationally, in informal/friendly discourse; + adfabre_Adv : Adv ; -- [XXXEO] :: skillfully, ingeniously, artistically; + adfabricatus_A : A ; -- [XXXFS] :: fitted/added to by art; + adfamen_N_N : N ; -- [XXXEO] :: greeting, salutation, address; + adfania_F_N : N ; -- [XXXES] :: trifling talk (pl.), chatter; idle jests; + adfatim_Adv : Adv ; -- [XXXCO] :: sufficiently, amply, with complete satisfaction; + adfatus_M_N : N ; -- [XXXCO] :: address, speech, converse with; pronouncement, utterance (of); + adfectatio_F_N : N ; -- [XXXCO] :: seeking/striving for, aspiration to; affectation, straining for; claiming; + adfectato_Adv : Adv ; -- [DXXES] :: studiously, zealously; + adfectator_M_N : N ; -- [XXXDO] :: aspirant, zealous seeker (of), one who strives to obtain/produce; + adfectatus_A : A ; -- [XXXEO] :: studied, artificial, affected; + adfecte_Adv : Adv ; -- [DXXES] :: deeply, with (strong) affection; + adfectio_F_N : N ; -- [XXXAO] :: mental condition, mood, feeling, disposition; affection, love; purpose; + adfectiose_Adv : Adv ; -- [EXXFP] :: feelingly; with (kindly) feeling; + adfectiosus_A : A ; -- [DXXES] :: full of affection/attachment; + adfecto_V2 : V2 ; -- [XXXBO] :: aim at, desire, aspire, try, lay claim to; try to control; feign, pretend; + adfector_V : V ; -- [XXXCO] :: aim at, desire, aspire, try, lay claim to; try to control; feign, pretend; + adfectrix_F_N : N ; -- [DXXFS] :: aspirant (female); she who seeks/strives for (thing); + adfectualis_A : A ; -- [EXXEP] :: depending on a temporary condition; + adfectuose_Adv : Adv ; -- [EXXFP] :: feelingly; with (kindly) feeling; + adfectuosus_A : A ; -- [DXXES] :: affectionate, kind, full of inclination/affection/love; + adfectus_A : A ; -- [XXXBO] :: endowed with, possessed of; minded; affected; impaired, weakened; emotional; + adfectus_M_N : N ; -- [XXXAO] :: |disposition; condition, state (of body/mind); feeling, mood, emotion; + adfero_V2 : V2 ; -- [XXXAO] :: bring to, carry, convey; report, bring word, allege, announce; produce, cause; + adficio_V2 : V2 ; -- [XXXAO] :: affect, make impression; move, influence; cause (hurt/death), afflict, weaken; + adficticius_A : A ; -- [XXXFO] :: attached (to); + adfigo_V2 : V2 ; -- [XXXAO] :: fasten/fix/pin/attach to (w/DAT), annex; impress upon; pierce; chain, confine; + adfiguro_V2 : V2 ; -- [XGXEO] :: form (word) by analogy; + adfingo_V2 : V2 ; -- [XXXBO] :: add to, attach; aggravate; embellish, counterfeit, forge; claim wrongly; + adfinis_A : A ; -- [XXXBO] :: neighboring, adjacent, next, bordering; related (marriage), akin, connected; adfinis_F_N : N ; -- [XXXCO] :: relation (by marriage); neighbor; accomplice; - adfinis_M_N : N ; - adfinitas_F_N : N ; - adfirmanter_Adv : Adv ; - adfirmate_Adv : Adv ; - adfirmatio_F_N : N ; - adfirmativus_A : A ; - adfirmator_M_N : N ; - adfirmo_V : V ; - adfixio_F_N : N ; - adfixum_N_N : N ; - adfixus_A : A ; - adflagrans_A : A ; - adflator_M_N : N ; - adflatus_M_N : N ; - adflecto_V2 : V2 ; - adfleo_V : V ; - adflictatio_F_N : N ; - adflictator_M_N : N ; - adflictio_F_N : N ; - adflicto_V2 : V2 ; - adflictor_M_N : N ; - adflictrix_A : A ; - adflictrix_F_N : N ; - adflictus_A : A ; - adflictus_M_N : N ; - adfligo_V2 : V2 ; - adflo_V : V ; - adfluens_A : A ; - adfluente_Adv : Adv ; - adfluenter_Adv : Adv ; - adfluentia_F_N : N ; - adfluo_V : V ; - adfodio_V2 : V2 ; - adfor_V : V ; - adformido_V : V ; - adfrango_V2 : V2 ; - adfremo_V : V ; - adfricatio_F_N : N ; - adfrico_V2 : V2 ; - adfrictus_M_N : N ; - adfringo_V2 : V2 ; - adfrio_V2 : V2 ; - adfulgeo_V2 : V2 ; - adfundo_V2 : V2 ; - adfundor_V : V ; - adfuo_V : V ; - adgaudeo_V : V ; - adgemo_V : V ; - adgenero_V2 : V2 ; - adgeniculor_V : V ; - adger_M_N : N ; - adgeratim_Adv : Adv ; - adgeratio_F_N : N ; - adgero_V2 : V2 ; - adgestim_Adv : Adv ; - adgestio_F_N : N ; - adgestum_N_N : N ; - adgestus_M_N : N ; - adglomero_V2 : V2 ; - adglutino_V2 : V2 ; - adgnascor_V : V ; - adgnata_F_N : N ; - adgnaticius_A : A ; - adgnatio_F_N : N ; - adgnatum_N_N : N ; - adgnatus_A : A ; - adgnatus_M_N : N ; - adgnitio_F_N : N ; - adgnitor_M_N : N ; - adgnitus_M_N : N ; - adgnomen_N_N : N ; - adgnomentum_N_N : N ; - adgnosco_V2 : V2 ; - adgratulor_V : V ; - adgravesco_V : V ; - adgravo_V2 : V2 ; - adgredio_V : V ; - adgredior_V : V ; - adgrego_V2 : V2 ; - adgressio_F_N : N ; - adgressor_M_N : N ; - adgressura_F_N : N ; - adgressus_M_N : N ; - adguberno_V : V ; - adhaereo_V : V ; - adhaeresco_V : V ; - adhaese_Adv : Adv ; - adhaesio_F_N : N ; - adhaesiona_F_N : N ; - adhaesivus_A : A ; - adhaesus_M_N : N ; - adhalo_V2 : V2 ; - adhamo_V2 : V2 ; - adhereo_V : V ; - adheresco_V : V ; - adhibeo_V2 : V2 ; - adhibitio_F_N : N ; - adhinnio_V2 : V2 ; - adhoc_Adv : Adv ; - adhorreo_V : V ; - adhortamen_N_N : N ; - adhortatio_F_N : N ; - adhortativus_A : A ; - adhortator_M_N : N ; - adhortatus_M_N : N ; - adhortor_V : V ; - adhospito_V2 : V2 ; - adhuc_Adv : Adv ; - adhucine_Adv : Adv ; - adiantum_N_N : N ; - adiaphoros_A : A ; - adibilis_A : A ; - adicio_V2 : V2 ; - adigo_V2 : V2 ; - adimo_V2 : V2 ; - adimplementum_N_N : N ; - adimpleo_V2 : V2 ; - adimpletio_F_N : N ; - adimpletor_M_N : N ; - adincresco_V : V ; - adindo_V2 : V2 ; - adinflo_V2 : V2 ; - adingero_V2 : V2 ; - adinquiro_V2 : V2 ; - adinspecto_V2 : V2 ; - adinstar_A : A ; - adinvenio_V2 : V2 ; - adinventio_F_N : N ; - adinventor_M_N : N ; - adinventum_N_N : N ; - adinvicem_Adv : Adv ; - adipatum_N_N : N ; - adipatus_A : A ; - adipeus_A : A ; - adipiscor_V : V ; + adfinis_M_N : N ; -- [XXXCO] :: relation (by marriage); neighbor; accomplice; + adfinitas_F_N : N ; -- [XXXBO] :: relation(ship) by marriage; relationship (man+wife), bond/union; neighborhood; + adfirmanter_Adv : Adv ; -- [XXXES] :: certainly, assuredly, with assurance; + adfirmate_Adv : Adv ; -- [XXXEO] :: with definite affirmation/solemn assertion, positively, certainly, assuredly; + adfirmatio_F_N : N ; -- [XXXCO] :: affirmation, strengthening of belief; assertion, dogmatic/positive statement; + adfirmativus_A : A ; -- [DXXFS] :: affirming, affirmative; + adfirmator_M_N : N ; -- [XXXEO] :: one who makes a definite assertion/affirmation; + adfirmo_V : V ; -- [XXXBO] :: affirm/assert (dogmatically/positively); confirm, ratify, restore; emphasize; + adfixio_F_N : N ; -- [DXXES] :: joining/fastening to; an addition to; + adfixum_N_N : N ; -- [XXXFO] :: fixtures (pl.) pertaining thereto;, permanent fittings/appendages/appurtenances; + adfixus_A : A ; -- [XXXES] :: fastened/joined to (person/thing); impressed on, fixed to; situated close to; + adflagrans_A : A ; -- [DXXFS] :: flaming/blazing up; turbulent, unquiet; + adflator_M_N : N ; -- [DXXES] :: one who blows on/breathes into; + adflatus_M_N : N ; -- [XXXBO] :: breath, snorting; breeze, wind, draught, (hot) blast; stench; inspiration; + adflecto_V2 : V2 ; -- [XXXFO] :: affect, move, influence (to a course of action); + adfleo_V : V ; -- [XXXFO] :: weep/cry at; weep as an accompaniment; + adflictatio_F_N : N ; -- [XXXEO] :: grievous suffering, torment, affliction; + adflictator_M_N : N ; -- [DXXES] :: one who causes pain/suffering/torment/torture; tormenter; + adflictio_F_N : N ; -- [XXXFS] :: pain, suffering, torment; + adflicto_V2 : V2 ; -- [XXXAO] :: shatter, damage, strike repeatedly, buffet, wreck; oppress, afflict; vex; + adflictor_M_N : N ; -- [XXXFO] :: one who strikes against/down/overthrows; + adflictrix_A : A ; -- [XXXFO] :: that strikes against/down/overthrows or collides with; + adflictrix_F_N : N ; -- [XXXFO] :: one (female) who strikes against/down/overthrows; + adflictus_A : A ; -- [XXXEO] :: in a state of ruin (persons/countries/affairs), shattered; + adflictus_M_N : N ; -- [XXXFO] :: collision, blow; a striking against/dashing together; + adfligo_V2 : V2 ; -- [XXXAO] :: overthrow/throw down; afflict, damage, crush, break, ruin; humble, weaken, vex; + adflo_V : V ; -- [XXXAO] :: blow/breathe (on/towards); inspire, infuse; waft; graze; breathe poison on; + adfluens_A : A ; -- [XXXCO] :: flowing/overflowing/abounding with; abundant, plentiful, sumptuous, copious; + adfluente_Adv : Adv ; -- [XXXES] :: richly, copiously, abundantly, extravagantly, opulently; + adfluenter_Adv : Adv ; -- [XXXEO] :: abundantly, copiously; luxuriously, extravagantly; + adfluentia_F_N : N ; -- [XXXCO] :: flow (of a liquid); abundance, profusion, extravagance, opulence, riotousness; + adfluo_V : V ; -- [XXXBO] :: flow on/to/towards/by; glide/drift quietly; flock together, throng; abound; + adfodio_V2 : V2 ; -- [XXXNO] :: add by digging; + adfor_V : V ; -- [XXXCO] :: speak to, address; be spoked to/addressed (PASS), be decreed by fate; + adformido_V : V ; -- [XXXFO] :: be afraid, fear; + adfrango_V2 : V2 ; -- [XXXEO] :: cause to be broken against, crush/strike/break against; break in pieces; + adfremo_V : V ; -- [XXXEO] :: roar/rage/growl (at); assent noisily to (w/DAT); + adfricatio_F_N : N ; -- [DXXES] :: rubbing on/against (thing); friction; abrasion; + adfrico_V2 : V2 ; -- [XXXFO] :: rub (one thing against another); apply/communicate/impart by rubbing, smear on; + adfrictus_M_N : N ; -- [XXXEO] :: friction; rubbing on; + adfringo_V2 : V2 ; -- [XXXFS] :: cause to be broken against, crush/strike/break against; break in pieces; + adfrio_V2 : V2 ; -- [XXXFO] :: sprinkle (powder); crumble, grate; + adfulgeo_V2 : V2 ; -- [XXXCO] :: shine forth, appear, dawn; shine/smile upon (w/favor), appear favorable; + adfundo_V2 : V2 ; -- [XXXBO] :: pour on/upon/into, heap up; shed/spill (blood); wash; + adfundor_V : V ; -- [XXXCO] :: prostrate oneself; cause to be spread on/over; flow alongside/past (streams); + adfuo_V : V ; -- [XXXEO] :: flow/stream/issue (from), flow away; abound in (w/ABL), be abundant, abound; + adgaudeo_V : V ; -- [DXXES] :: delight in; be delighted with; + adgemo_V : V ; -- [XXXEO] :: groan in conjunction/sympathy (with); + adgenero_V2 : V2 ; -- [DXXES] :: beget in addition; + adgeniculor_V : V ; -- [DXXES] :: kneel before, bend the knee before; + adger_M_N : N ; -- [XXXAO] :: rampart (or material for); causeway, pier; heap/pile/mound; dam/dike; mud wall; + adgeratim_Adv : Adv ; -- [XXXFO] :: in heaps/piles; + adgeratio_F_N : N ; -- [XXXFO] :: heaped/piled up material; + adgero_V2 : V2 ; -- [XXXBO] :: heap/cover up over, pile/build up, erect; accumulate; intensify, exaggerate; + adgestim_Adv : Adv ; -- [DXXFS] :: in heaps, abundantly; + adgestio_F_N : N ; -- [DXXES] :: heap, heaping up; mass (of mud), heap (of sand); + adgestum_N_N : N ; -- [DXXES] :: mound, dike, elevation formed like a dike/mound; + adgestus_M_N : N ; -- [XXXDO] :: piling up; act of bringing; earthen bank, terrace; sprinkling earth over body; + adglomero_V2 : V2 ; -- [XXXCO] :: gather into a body, mass together, join forces; pile up in masses; agglomerate; + adglutino_V2 : V2 ; -- [XXXCO] :: glue/stick/adhere/fasten to/together; fit/grip on closely; bring in contact; + adgnascor_V : V ; -- [XXXBO] :: be born in addition/after father's will made; develop; grow later/on, arise; + adgnata_F_N : N ; -- [XXXFO] :: female blood relation on father's side; + adgnaticius_A : A ; -- [DLXFS] :: pertaining to agnati (born after will); [~ jus => right of agnati to inherit]; + adgnatio_F_N : N ; -- [XXXCO] :: birth after father's will; blood relationship through father/male ancestor; + adgnatum_N_N : N ; -- [XAXNO] :: offshoot, side-shoot; + adgnatus_A : A ; -- [XXXFO] :: related, cognate; + adgnatus_M_N : N ; -- [XXXCO] :: male blood relation (father's side); one born after father made his will; + adgnitio_F_N : N ; -- [XXXCO] :: recognition, knowledge; perception of nature/identity; avowal, acknowledgement; + adgnitor_M_N : N ; -- [XLXFO] :: one who acknowledges or vouches for (seal); + adgnitus_M_N : N ; -- [XDXFO] :: "recognition" (drama); + adgnomen_N_N : N ; -- [XXXCO] :: nickname, an additional name denoting an achievement/characteristic; + adgnomentum_N_N : N ; -- [XXXFS] :: nickname, an additional name denoting an achievement/characteristic; + adgnosco_V2 : V2 ; -- [XXXAO] :: recognize, realize, discern; acknowledge, claim, admit to/responsibility; + adgratulor_V : V ; -- [FXXFZ] :: give thanks (to)(JFW); + adgravesco_V : V ; -- [XXXDS] :: become heavy; become severe/dangerous (illness), grow worse; be aggravated; + adgravo_V2 : V2 ; -- [XXXCO] :: aggravate, exaggerate; weigh down, oppress; make heavier; embarrass further; + adgredio_V : V ; -- [XXXDS] :: approach, advance; attack, assail; undertake, seize (opportunity), attempt; + adgredior_V : V ; -- [XXXAS] :: approach, advance; attack, assail; undertake, seize (opportunity), attempt; + adgrego_V2 : V2 ; -- [XXXBO] :: collect, include, group, implicate; (cause to) flock/join together, attach; + adgressio_F_N : N ; -- [XXXDO] :: attack; action of setting about/undertaking (task); + adgressor_M_N : N ; -- [XXXEO] :: attacker, assailant; + adgressura_F_N : N ; -- [XXXEO] :: attack, assault; + adgressus_M_N : N ; -- [XXXFO] :: attack, assault; + adguberno_V : V ; -- [XXXEO] :: steer (one's course); + adhaereo_V : V ; -- [XXXAO] :: adhere, stick, cling/cleave to; hang on; be attached/concerned/involved; + adhaeresco_V : V ; -- [XXXBO] :: cling to, adhere, stick (in trouble); become lodged in (weapons); run aground; + adhaese_Adv : Adv ; -- [XXXFO] :: stammeringly; in a tongued-tied manner; + adhaesio_F_N : N ; -- [XXXEO] :: adhesion; linkage; + adhaesiona_F_N : N ; -- [FXXFZ] :: adhesion; linkage; + adhaesivus_A : A ; -- [GXXEK] :: adhesive; + adhaesus_M_N : N ; -- [XXXDO] :: adhesion; act/fact of adhering/combining; + adhalo_V2 : V2 ; -- [XXXNO] :: breathe upon; + adhamo_V2 : V2 ; -- [XXXFS] :: catch, secure; + adhereo_V : V ; -- [DXXAW] :: adhere, stick, cling/cleave to; hang on; be attached/concerned/involved; + adheresco_V : V ; -- [EXXDW] :: adhere tightly, stick fast; + adhibeo_V2 : V2 ; -- [XXXAO] :: summon, invite, bring in; consult; put, add; use, employ, apply; hold out to; + adhibitio_F_N : N ; -- [DXXES] :: application, employing; admission (e.g., to a banquet); + adhinnio_V2 : V2 ; -- [XAXCO] :: whinny to/at; express delight; strive after/long for with voluptuous desire; + adhoc_Adv : Adv ; -- [XXXAO] :: thus far, till now, to this point; hitherto; yet, as yet; still; besides; + adhorreo_V : V ; -- [XXXFO] :: shudder (in addition); + adhortamen_N_N : N ; -- [XXXFO] :: encouragement, exhortation; incentive; + adhortatio_F_N : N ; -- [XXXCO] :: exhortation, (words of) encouragement; persuasive speech/discourse/appeal; + adhortativus_A : A ; -- [DXXFS] :: of/belonging to encouragement/exhortation; [~ modus => encouraging mood]; + adhortator_M_N : N ; -- [XXXDO] :: encourager, one who encourages/exhorts; + adhortatus_M_N : N ; -- [XXXEO] :: act of urging; encouragement, exhortation, persuasion; + adhortor_V : V ; -- [XXXBO] :: encourage, urge on; rally; exhort; + adhospito_V2 : V2 ; -- [DXXES] :: entertain as guest; propitiate; + adhuc_Adv : Adv ; -- [XXXAO] :: thus far, till now, to this point; hitherto; yet, as yet; still; besides; + adhucine_Adv : Adv ; -- [XXXFS] :: still? yet? (interog.) (adhuc ne); + adiantum_N_N : N ; -- [XAXNO] :: maidenhair (Capillus Veneris), type of fern; (also called callitrichos/on L+S); + adiaphoros_A : A ; -- [XXHFS] :: indifferent; (-os, -os, -on, Greek); + adibilis_A : A ; -- [DXXES] :: accessible; + adicio_V2 : V2 ; -- [XXXAO] :: add, increase, raise; add to (DAT/ad+ACC); suggest; hurl (weapon); throw to/at; + adigo_V2 : V2 ; -- [XXXAO] :: drive in/to (cattle), force, impel; cast, hurl; consign (curse); bind (oath); + adimo_V2 : V2 ; -- [XXXAO] :: withdraw, take away, carry off; castrate; deprive, steal, seize; annul; rescue; + adimplementum_N_N : N ; -- [FXXEE] :: completion, completing, fulfillment, fulfilling; realization; + adimpleo_V2 : V2 ; -- [XXXEO] :: fill up (with); fulfill, carry out (promise/obligation); + adimpletio_F_N : N ; -- [DXXES] :: completion, completing, fulfillment, fulfilling; realization; + adimpletor_M_N : N ; -- [DEXFS] :: inspirer, he who fills (by inspiration); + adincresco_V : V ; -- [DEXES] :: increase; + adindo_V2 : V2 ; -- [XXXFO] :: insert, put in/to; put in besides; + adinflo_V2 : V2 ; -- [DXXES] :: swell up; + adingero_V2 : V2 ; -- [DXXFS] :: bring to/heap on in addition; + adinquiro_V2 : V2 ; -- [XXXFS] :: investigate/inquire/look into further; + adinspecto_V2 : V2 ; -- [XXXFO] :: watch; guard (person); + adinstar_A : A ; -- [XXXES] :: like, after the fashion of; according to the likeness of; about; (ad instar); + adinvenio_V2 : V2 ; -- [XXXFO] :: devise/invent/find out (in addition/intensive); + adinventio_F_N : N ; -- [DXXES] :: invention; + adinventor_M_N : N ; -- [DXXES] :: inventor; + adinventum_N_N : N ; -- [DXXES] :: invention; + adinvicem_Adv : Adv ; -- [DXXES] :: in turn, by turns, on after the other, alternately; mutually, reciprocally; + adipatum_N_N : N ; -- [XXXFO] :: rich dish; pastry prepared with fat (L+S); + adipatus_A : A ; -- [XXXEO] :: rich; containing fat, fatty, greasy; coarse, gross (L+S); + adipeus_A : A ; -- [DXXES] :: of fat; + adipiscor_V : V ; -- [XXXBO] :: gain, secure, win, obtain; arrive at, come up to/into; inherit; overtake; 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 ; - adipson_N_N : N ; - adipsos_F_N : N ; - aditialis_A : A ; - aditio_F_N : N ; - adito_V : V ; - aditus_M_N : N ; - adiumentum_N_N : N ; - adjacens_A : A ; - adjacens_N_N : N ; - adjaceo_V2 : V2 ; - adjaculatus_A : A ; - adjectamentum_N_N : N ; - adjecticius_A : A ; - adjectio_F_N : N ; - adjectius_A : A ; - adjectivus_A : A ; - adjectus_M_N : N ; - adjicio_V2 : V2 ; - adjudicatio_F_N : N ; - adjudico_V2 : V2 ; - adjugo_V2 : V2 ; - adjunctio_F_N : N ; - adjunctivus_A : A ; - adjunctor_M_N : N ; - adjunctum_N_N : N ; - adjunctus_A : A ; - adjungo_V2 : V2 ; - adjuramentum_N_N : N ; - adjuratio_F_N : N ; - adjurator_M_N : N ; - adjuratorius_A : A ; - adjuro_V2 : V2 ; - adjutabilis_A : A ; - adjuto_V : V ; - adjutor_M_N : N ; - adjutor_V : V ; - adjutorium_N_N : N ; - adjutrix_F_N : N ; - adjutus_M_N : N ; - adjuvans_A : A ; - adjuvatorium_N_N : N ; - adjuvo_V2 : V2 ; - adlabor_V : V ; - adlaboro_V : V ; - adlacrimo_V : V ; - adlambo_V2 : V2 ; - adlapsus_M_N : N ; - adlatro_V2 : V2 ; - adlaudabilis_A : A ; - adlaudo_V2 : V2 ; - adlavo_V2 : V2 ; - adlectatio_F_N : N ; - adlectator_M_N : N ; - adlecto_V2 : V2 ; - adlector_M_N : N ; - adlectura_F_N : N ; - adlectus_M_N : N ; - adlegatio_F_N : N ; - adlegatus_M_N : N ; - adlego_V2 : V2 ; - adlenimentum_N_N : N ; - adlevamentum_N_N : N ; - adlevatio_F_N : N ; - adlevator_M_N : N ; - adlevio_V2 : V2 ; - adlevo_V2 : V2 ; - adlibentia_F_N : N ; - adlibesco_V : V ; - adlicefacio_V2 : V2 ; - adlicefio_V : V ; - adlicio_V2 : V2 ; - adlido_V2 : V2 ; - adligamentum_N_N : N ; - adligatio_F_N : N ; - adligator_M_N : N ; - adligatura_F_N : N ; - adligo_V2 : V2 ; - adlino_V2 : V2 ; - adlisio_F_N : N ; - adlocutio_F_N : N ; - adloquium_N_N : N ; - adloquor_V : V ; - adlubentia_F_N : N ; - adlubesco_V : V ; - adluceo_V : V ; - adluctor_V : V ; - adludio_V : V ; - adludo_V2 : V2 ; - adluo_V2 : V2 ; - adluvies_F_N : N ; - adluvio_F_N : N ; - adluvius_A : A ; - admaturo_V2 : V2 ; - admensuratio_F_N : N ; - admeo_V : V ; - admetior_V : V ; - admigro_V : V ; - adminiculabundus_A : A ; - adminiculator_M_N : N ; - adminiculatus_A : A ; - adminiculo_V2 : V2 ; - adminiculor_V : V ; - adminiculum_N_N : N ; - administer_M_N : N ; - administra_F_N : N ; - administratio_F_N : N ; - administrativus_A : A ; - administrator_M_N : N ; - administratorius_A : A ; - administro_V : V ; - admirabilis_A : A ; - admirabilitas_F_N : N ; - admirabiliter_Adv : Adv ; - admiralis_M_N : N ; - admiralius_M_N : N ; - admirandus_A : A ; - admiranter_Adv : Adv ; - admiratio_F_N : N ; - admirator_M_N : N ; - admiror_V : V ; - admisceo_V2 : V2 ; - admissarius_A : A ; - admissarius_M_N : N ; - admissio_F_N : N ; - admissionalis_M_N : N ; - admissivus_A : A ; - admissor_M_N : N ; - admissum_N_N : N ; - admissura_F_N : N ; - admissus_M_N : N ; - admistio_F_N : N ; - admistus_M_N : N ; - admitto_V2 : V2 ; - admixtio_F_N : N ; - admixtus_A : A ; - admixtus_M_N : N ; - admoderate_Adv : Adv ; - admoderor_V : V ; - admodulor_V : V ; - admodum_Adv : Adv ; - admoenio_V2 : V2 ; - admolior_V : V ; - admonefacio_V2 : V2 ; - admonefio_V : V ; - admoneo_V2 : V2 ; - admonitio_F_N : N ; - admonitor_M_N : N ; - admonitorium_N_N : N ; - admonitrix_F_N : N ; - admonitum_N_N : N ; - admonitus_M_N : N ; - admordeo_V2 : V2 ; - admorsus_A : A ; - admorsus_M_N : N ; - admotio_F_N : N ; - admoveo_V2 : V2 ; - admugio_V : V ; - admulco_V2 : V2 ; - admurmuratio_F_N : N ; - admurmuro_V : V ; - admurmuror_V : V ; - admutilo_V2 : V2 ; - adnarro_V2 : V2 ; - adnato_V : V ; - adnavigo_V : V ; - adnecto_V2 : V2 ; - adnego_V2 : V2 ; - adnepos_M_N : N ; - adneptis_F_N : N ; - adnexio_F_N : N ; - adnexus_A : A ; - adnexus_M_N : N ; - adnicto_V : V ; - adnihilo_V2 : V2 ; - adnililo_V2 : V2 ; - adnitor_V : V ; - adnius_M_N : N ; - adnixus_A : A ; - adno_V : V ; - adnodo_V2 : V2 ; - adnomentum_N_N : N ; - adnominatio_F_N : N ; - adnotamentum_N_N : N ; - adnotatio_F_N : N ; - adnotatiuncula_F_N : N ; - adnotator_M_N : N ; - adnotatus_M_N : N ; - adnoto_V2 : V2 ; - adnubilo_V : V ; - adnullo_V2 : V2 ; - adnumeratio_F_N : N ; - adnumero_V2 : V2 ; - adnuntialis_A : A ; - adnuntiatio_F_N : N ; - adnuntiator_M_N : N ; - adnuntiatrix_F_N : N ; - adnuntio_V2 : V2 ; - adnuntius_A : A ; - adnuo_V2 : V2 ; - adnuto_V : V ; - adnutrio_V2 : V2 ; - adobruo_V2 : V2 ; - adolefactus_A : A ; - adoleo_V : V ; - adoleo_V2 : V2 ; - adolescens_A : A ; + adips_M_N : N ; -- [XXXCO] :: fat, lard, grease; fatty tissue; bombast; corpulence, obesity (pl.); + adipsatheon_N_N : N ; -- [XAXNO] :: thorny shrub which produces fragrant oil; + adipsatheos_M_N : N ; -- [XAXNO] :: thorny shrub which produces fragrant oil; + adipson_N_N : N ; -- [XAXNO] :: licorice; + adipsos_F_N : N ; -- [XAXNO] :: kind of Egyptian date; licorice (?); + aditialis_A : A ; -- [XLXEO] :: inaugural; (of a banquet) given by a magistrate upon entering office; + aditio_F_N : N ; -- [XLXCO] :: act/right of approaching (person); taking possession of an inheritance; + adito_V : V ; -- [XXXFO] :: approach often/frequently/habitually; + aditus_M_N : N ; -- [XXXAO] :: approach, access; attack; entrance; chance, opportunity, means, way; beginning; + adiumentum_N_N : N ; -- [XXXCO] :: help, assistance, support, means of aid; + adjacens_A : A ; -- [XXXCO] :: adjacent, neighboring; + adjacens_N_N : N ; -- [XXXDO] :: adjacent/neighboring areas/regions/parts (pl.); adjoining country; + adjaceo_V2 : V2 ; -- [XXXCO] :: lie near to, lie beside; be adjacent/contiguous to, neighbor on; live near; + adjaculatus_A : A ; -- [XXXFS] :: thrown/cast at; + adjectamentum_N_N : N ; -- [XXXFO] :: appendage, appurtenance, attachment; addition, increase; + adjecticius_A : A ; -- [DXXES] :: added besides; + adjectio_F_N : N ; -- [XXXBO] :: addition; act of adding, infliction in addition; repetition; price increase; + adjectius_A : A ; -- [DXXES] :: added besides; + adjectivus_A : A ; -- [DGXES] :: that is added (to the noun - gram.); adjective; + adjectus_M_N : N ; -- [XXXEO] :: insertion/putting in/adding/applying to, addition; impact, contact; + adjicio_V2 : V2 ; -- [XXXAS] :: add, increase, raise; add to (DAT/ad+ACC); suggest; hurl (weapon); throw to/at; + adjudicatio_F_N : N ; -- [XXXEO] :: act of assignment (by judge); vesting order; judicial judging of a matter; + adjudico_V2 : V2 ; -- [XLXCO] :: adjudge, impute, attribute, ascribe (to); award (as a judge), assign (to); + adjugo_V2 : V2 ; -- [XXXEO] :: join, attach (to); + adjunctio_F_N : N ; -- [XXXCO] :: union, association; admixture, combination; (limiting) addition, qualification; + adjunctivus_A : A ; -- [XGXFO] :: adjectival; joined/added; conjunctions that govern subjunctive mood (L+S); + adjunctor_M_N : N ; -- [XXXFO] :: one who adds/joins/unites; proposer (that ... be added to ...); + adjunctum_N_N : N ; -- [XXXCO] :: quality, characteristic, essential feature/attribute; collateral circumstance; + adjunctus_A : A ; -- [XXXBO] :: bound/belonging to; composite, joined in compound (word); adjacent; relevant; + adjungo_V2 : V2 ; -- [XXXAO] :: add, attach, join to, add to, support; apply to; harness, yoke; direct; confer; + adjuramentum_N_N : N ; -- [DXXES] :: conjuring, entreaty; + adjuratio_F_N : N ; -- [XLXFO] :: act of appealing to/by adjuration; swearing to/by (something); + adjurator_M_N : N ; -- [DXXES] :: one who conjures, conjurer; + adjuratorius_A : A ; -- [DLXES] :: pertaining to swearing; + adjuro_V2 : V2 ; -- [XXXCO] :: swear by/solemnly; affirm with oath; charge/entreat/urge (as under oath/curse); + adjutabilis_A : A ; -- [XXXFO] :: helpful; + adjuto_V : V ; -- [XXXCO] :: help (w/burden/activity); help realize a program/purpose; + adjutor_M_N : N ; -- [XXXBO] :: assistant, deputy; accomplice; supporter; secretary; assistant schoolmaster; + adjutor_V : V ; -- [XXXDO] :: help (w/burden/activity); help realize a program/purpose; + adjutorium_N_N : N ; -- [XXXCO] :: help, assistance, support; argumentation; + adjutrix_F_N : N ; -- [XXXCO] :: female assistant/helper/accomplice; feminine nouns; as title of a legion; + adjutus_M_N : N ; -- [DXXES] :: help, aid; + adjuvans_A : A ; -- [XXXEO] :: contributory (cause); + adjuvatorium_N_N : N ; -- [XXXFO] :: assistance, cooperation; + adjuvo_V2 : V2 ; -- [XXXAO] :: help, aid, abet, encourage, favor; cherish, sustain; be of use, be profitable; + adlabor_V : V ; -- [XXXCO] :: glide/move/flow towards (w/DAT/ACC); creep up; steal into; fly (missiles); + adlaboro_V : V ; -- [XXXEO] :: make a special effort; take trouble to; + adlacrimo_V : V ; -- [XXXEL] :: shed tears, cry, weep (at or as an accompaniment to something); + adlambo_V2 : V2 ; -- [XXXFO] :: lick (of flames); + adlapsus_M_N : N ; -- [XXXEO] :: gliding up; gliding/stealthy approach; flowing towards or near; + adlatro_V2 : V2 ; -- [XXXCO] :: bark at; rail at; rage, roar (sea); + adlaudabilis_A : A ; -- [XXXEO] :: praiseworthy, commendable; + adlaudo_V2 : V2 ; -- [XXXFO] :: praise, commend; + adlavo_V2 : V2 ; -- [XXXFO] :: flow up to (water), wash; + adlectatio_F_N : N ; -- [XXXFO] :: coaxing, enticing, encouragement, invitation; + adlectator_M_N : N ; -- [XXXFO] :: one who coaxes/entices/attracts/invites/encourages; + adlecto_V2 : V2 ; -- [XXXDO] :: entice, allure, encourage, invite; + adlector_M_N : N ; -- [XXXIO] :: official of a collegium (concerned with dues or admission); + adlectura_F_N : N ; -- [XXXIO] :: office of collector of revenues (colligium allector); + adlectus_M_N : N ; -- [FXXEE] :: canon-elect, one elected into collegium; + adlegatio_F_N : N ; -- [XXXEO] :: allegation, charge; intercession; representation made on behalf of another; + adlegatus_M_N : N ; -- [XXXEO] :: instigation, prompting; + adlego_V2 : V2 ; -- [XXXCO] :: choose, admit, elect, recruit, select, appoint; + adlenimentum_N_N : N ; -- [DBXFS] :: soothing remedy/relief; + adlevamentum_N_N : N ; -- [XXXEL] :: mitigation; relief, alleviation; + adlevatio_F_N : N ; -- [XXXEO] :: alleviation, easing; relief; lifting up, raising; + adlevator_M_N : N ; -- [DXXFS] :: one who lifts/raises up; + adlevio_V2 : V2 ; -- [DXXES] :: lighten, make light; deal lightly/leniently with; raise up, relieve; + adlevo_V2 : V2 ; -- [XXXDO] :: |smooth, smooth off, make smooth; polish; depilate; + adlibentia_F_N : N ; -- [XXXFO] :: inclination (for); + adlibesco_V : V ; -- [XXXDO] :: be pleasing, gratify; be roused with desire (for); + adlicefacio_V2 : V2 ; -- [XXXEO] :: entice, allure; attract, lure, seduce; + adlicefio_V : V ; -- [XXXEO] :: be/become enticed/allured/lured; (allicefacio PASS); + adlicio_V2 : V2 ; -- [XXXBO] :: draw gently to, entice, lure, induce (sleep), attract, win over, encourage; + adlido_V2 : V2 ; -- [XXXCO] :: dash/crush against, bruise; ruin, damage; shipwreck; (PASS) suffer damage; + adligamentum_N_N : N ; -- [XXXES] :: band, binding, tie; + adligatio_F_N : N ; -- [XXXEO] :: tying or binding to supports; a bond; band; + adligator_M_N : N ; -- [XXXFO] :: one who ties or binds to a support; + adligatura_F_N : N ; -- [XXXFO] :: band, binding; + adligo_V2 : V2 ; -- [XXXAO] :: bind/fetter (to); bandage; hinder, impede, detain; accuse; implicate/involve in; + adlino_V2 : V2 ; -- [XXXCO] :: smear/spread/dash over (W/DAT); spread out on; adhere to; + adlisio_F_N : N ; -- [DXXFS] :: dashing against; striking upon; + adlocutio_F_N : N ; -- [XXXCO] :: address (spoken/written), manner of address; consolation; harangue, exhortation; + adloquium_N_N : N ; -- [XXXCO] :: address, addressing, talk; talking to, encouragement, friendly/reassuring words; + adloquor_V : V ; -- [XXXCO] :: speak to (friendly); address, harangue, make a speech (to); call on; console; + adlubentia_F_N : N ; -- [XXXFO] :: inclination (for); + adlubesco_V : V ; -- [XXXEO] :: be pleasing, gratify; be roused with desire (for); + adluceo_V : V ; -- [XXXDO] :: shine upon; light (torch); show/give (opportunity/chance); give/supply light; + adluctor_V : V ; -- [XXXEO] :: wrestle; wrestle with (w/DAT); + adludio_V : V ; -- [XXXEO] :: play/frolic (with); + adludo_V2 : V2 ; -- [XXXCO] :: frolic/play/sport around/with, play against; jest, make mocking allusion to; + adluo_V2 : V2 ; -- [XXXCO] :: wash/flow past/near/against, lap; beset; bathe (person) (tears); deposit silt; + adluvies_F_N : N ; -- [XXXCL] :: |inundation, flood; overflow; superabundance; river deposited silt; floodland; + adluvio_F_N : N ; -- [XXXCL] :: inundation, flood; overflow; land addition by silt deposition; superabundance; + adluvius_A : A ; -- [XXXFS] :: alluvial, from river overflow/deposit; + admaturo_V2 : V2 ; -- [XXXFO] :: hasten (an occurrence); bring to maturity, mature, ripen; + admensuratio_F_N : N ; -- [FLXFJ] :: admensuration; assignment of a measure; + admeo_V : V ; -- [DXXFS] :: go to, approach; + admetior_V : V ; -- [XXXCO] :: measure out (to); + admigro_V : V ; -- [XXXFO] :: go and live with; go to a place; come to; be added to; + adminiculabundus_A : A ; -- [XXXES] :: self-supporting, supporting one's self; + adminiculator_M_N : N ; -- [XXXFO] :: assistant, supporter; one who supports; + adminiculatus_A : A ; -- [XXXFO] :: well stocked; supported; well furnished/provided; + adminiculo_V2 : V2 ; -- [XAXCO] :: prop (up), support (with props); support with authority; applied to adverb; + adminiculor_V : V ; -- [XAXFS] :: prop (up), support (with props) (vines); + adminiculum_N_N : N ; -- [XAXBO] :: prop (vines), pole, stake; support, stay, bulwark; means, aid, tool; auxiliary; + administer_M_N : N ; -- [XXXCO] :: assistant, helper, supporter; one at hand to help, attendant; priest, minister; + administra_F_N : N ; -- [XXXEO] :: assistant (female), helper, supporter, servant; handmaiden, attendant; + administratio_F_N : N ; -- [XXXBO] :: administration; assistance; execution, operation, management, care of affairs; + administrativus_A : A ; -- [XXXFO] :: practical; suitable for the administration of; administrative; + administrator_M_N : N ; -- [XXXEO] :: director, administrator, manager; one in charge of operation; + administratorius_A : A ; -- [DXXES] :: performing the duties of an assistant/helper; serving, ministering; + administro_V : V ; -- [XXXBO] :: administer, manage, direct; assist; operate, conduct; maneuver (ship); bestow; + admirabilis_A : A ; -- [XXXCO] :: admirable, wonderful; strange, astonishing, remarkable; paradoxical, contrary; + admirabilitas_F_N : N ; -- [XXXEO] :: wonderful character, remarkableness; admiration, wonder; + admirabiliter_Adv : Adv ; -- [XXXEO] :: admirably, astonishingly, in a wonderful/wondrous manner; paradoxically; + admiralis_M_N : N ; -- [GWXEK] :: admiral; + admiralius_M_N : N ; -- [GXXEK] :: emir; + admirandus_A : A ; -- [XXXCO] :: wonderful, admirable; astonishing, remarkable, extraordinary; + admiranter_Adv : Adv ; -- [EXXCV] :: admiringly, with admiration; + admiratio_F_N : N ; -- [XXXBO] :: wonder, surprise, astonishment; admiration, veneration, regard; marvel; + admirator_M_N : N ; -- [XXXCO] :: admirer; one who venerates; + admiror_V : V ; -- [XXXBO] :: admire, respect; regard with wonder, wonder at; be surprised at, be astonished; + admisceo_V2 : V2 ; -- [XXXBO] :: mix, mix together; involve; add an ingredient to; contaminate; confuse, mix up; + admissarius_A : A ; -- [XAXEO] :: kept for breeding (male animals), on stud; + admissarius_M_N : N ; -- [XAXDO] :: stallion/he-ass, stud; sodomite; + admissio_F_N : N ; -- [XXXCO] :: admission/entrance/audience/interview; application (medical); mating (animals); + admissionalis_M_N : N ; -- [DXXES] :: one who introduces/announces at audience; privy chamber usher; seneschal; + admissivus_A : A ; -- [XEXFS] :: permitting/favorable (birds of omen approving of action in question); + admissor_M_N : N ; -- [DXXES] :: perpetrator; one who allows himself to do a thing; + admissum_N_N : N ; -- [XXXDO] :: crime, offense; + admissura_F_N : N ; -- [XAXDO] :: breeding, generation; copulation/mating of domestic animals, service; + admissus_M_N : N ; -- [DXXES] :: admission, letting in; + admistio_F_N : N ; -- [DXXES] :: mixture, admixture, mingling; + admistus_M_N : N ; -- [DXXES] :: mixture, admixture, mingling; + admitto_V2 : V2 ; -- [XXXAO] :: urge on, put to a gallop; let in, admit, receive; grant, permit, let go; + admixtio_F_N : N ; -- [XXXEO] :: mixture, admixture, mingling; + admixtus_A : A ; -- [XXXES] :: mixed; contaminated; not simple; confused; + admixtus_M_N : N ; -- [DXXES] :: mixture, admixture, mingling; + admoderate_Adv : Adv ; -- [XXXFO] :: comfortably; suitably; + admoderor_V : V ; -- [XXXFO] :: control (w/DAT); keep within limits; moderate; + admodulor_V : V ; -- [DXXFS] :: harmonize/accord with; + admodum_Adv : Adv ; -- [XXXBO] :: very, exceedingly, greatly, quite; excessively; just so; certainly, completely; + admoenio_V2 : V2 ; -- [XXXEO] :: bring (siege engine) into operation, draw near the walls; besiege, invest; + admolior_V : V ; -- [XXXDO] :: struggle, exert oneself (to); put one's hand on object/task; lay violent hands; + admonefacio_V2 : V2 ; -- [DXXFS] :: admonish; warn; urge; call to duty; + admonefio_V : V ; -- [DXXFS] :: be admonished/warned/urged; be called to duty; (admonefacio PASS); + admoneo_V2 : V2 ; -- [XXXAO] :: admonish, remind, prompt; suggest, advise, raise; persuade, urge; warn, caution; + admonitio_F_N : N ; -- [XXXBO] :: act of reminding; reminder, recurring symptom; warning, advice; rebuke; + admonitor_M_N : N ; -- [XXXEO] :: admonisher; exhorter; one who reminds; + admonitorium_N_N : N ; -- [XXXFS] :: admonition; + admonitrix_F_N : N ; -- [XXXFS] :: monitor (female); she that admonishers/reminds; + admonitum_N_N : N ; -- [XXXES] :: warning; reminder; reminding; advice; admonition; + admonitus_M_N : N ; -- [XXXCO] :: advice, recommendation; admonition, warning; command (animal); reminder; reproof + admordeo_V2 : V2 ; -- [XXXDO] :: bite at/into, gnaw; extract money from; fleece; get possession of their property + admorsus_A : A ; -- [XXXEL] :: bitten, gnawed; + admorsus_M_N : N ; -- [XXXEO] :: bite, biting, gnawing; + admotio_F_N : N ; -- [XXXFO] :: act of moving towards/on to; application; + admoveo_V2 : V2 ; -- [XXXAO] :: move up, bring up/near; lean on, conduct; draw near, approach; apply, add; + admugio_V : V ; -- [XAXFO] :: low (to); bellow (to); (like a bull); + admulco_V2 : V2 ; -- [DXXFS] :: stroke; + admurmuratio_F_N : N ; -- [XXXEO] :: murmur of comment; murmuring; + admurmuro_V : V ; -- [XXXDO] :: murmur in protest or approval; murmur at; + admurmuror_V : V ; -- [XXXFS] :: murmur in protest or approval; murmur at; + admutilo_V2 : V2 ; -- [XXXEO] :: cut/clip close; shave; fleece, cheat, defraud; + adnarro_V2 : V2 ; -- [XXXFO] :: tell/relate (to); + adnato_V : V ; -- [XXXCO] :: swim to/up to; swim beside/alongside; + adnavigo_V : V ; -- [XXXNO] :: sail to/up to/towards; sail beside/alongside; + adnecto_V2 : V2 ; -- [XXXBO] :: tie on/to, tie up (ship); bind to; fasten on; attach, connect, join, annex; + adnego_V2 : V2 ; -- [XXXFO] :: refuse; withhold; + adnepos_M_N : N ; -- [XXXEO] :: great-great-great grandson; + adneptis_F_N : N ; -- [XXXFO] :: great-great-great granddaughter; + adnexio_F_N : N ; -- [DXXFS] :: tying/binding to, connecting; annexation; + adnexus_A : A ; -- [XXXFO] :: attached, linked, joined; contiguous (to); related by blood; concerned; + adnexus_M_N : N ; -- [XXXEO] :: tying/binding/fastening/attaching (to), connecting; connection; annexation; + adnicto_V : V ; -- [XXXFO] :: wink to/at; blink at; + adnihilo_V2 : V2 ; -- [EXXCN] :: annihilate, destroy, demolish, ruin, bring to nothing; + adnililo_V2 : V2 ; -- [DXXCS] :: annihilate, bring to nothing; + adnitor_V : V ; -- [XXXCO] :: lean/rest upon, support oneself, (w/genibus) kneel; strive, work, exert, try; + adnius_M_N : N ; -- [DXXFS] :: striving; exertion; + adnixus_A : A ; -- [XXXFO] :: vehement, strenuous; + adno_V : V ; -- [XXXCO] :: swim to/towards, approach by swimming; sail to/towards; brought by sea (goods); + adnodo_V2 : V2 ; -- [XAXFO] :: cut (shoot) right back, cut flush; cut off knots, cut away suckers; + adnomentum_N_N : N ; -- [XXXFS] :: nickname, an additional name denoting an achievement/characteristic; + adnominatio_F_N : N ; -- [XGXFO] :: punning/pun; linking two words of different meaning but like sound, paronomasia; + adnotamentum_N_N : N ; -- [XXXEO] :: note, comment, remark, annotation; + adnotatio_F_N : N ; -- [XXXCO] :: note or comment; writing/making notes; notice; rescript of emperor by his hand; + adnotatiuncula_F_N : N ; -- [XXXEO] :: short note/comment; brief annotation; + adnotator_M_N : N ; -- [XXXFO] :: one who makes notes, note taker; observer; L:controller of the annual income; + adnotatus_M_N : N ; -- [XXXFO] :: notice, noting, remark, mention; + adnoto_V2 : V2 ; -- [XXXBO] :: note/jot down, notice, become aware; mark, annotate; record, state; designate; + adnubilo_V : V ; -- [XXXFO] :: bring up clouds (against); + adnullo_V2 : V2 ; -- [DXXCS] :: annihilate, obliterate, destroy; annul (eccl.); + adnumeratio_F_N : N ; -- [XXXES] :: numbering, counting, enumeration; + adnumero_V2 : V2 ; -- [XXXBO] :: count (in/out), pay; reckon (time); enumerate, run through; classify as; add; + adnuntialis_A : A ; -- [EXXEP] :: proclamatory; + adnuntiatio_F_N : N ; -- [DEXES] :: annunciation/announcement, declaration; message; prediction/prophecy; preaching; + adnuntiator_M_N : N ; -- [DEXES] :: announcer, herald, one who announces; prophet (Souter); preacher; + adnuntiatrix_F_N : N ; -- [EEXEP] :: announcer, preacher, one who announces; prophetess (Souter); + adnuntio_V2 : V2 ; -- [XXXCO] :: announce, say, make known; report, bring news; prophesy/announce before; preach; + adnuntius_A : A ; -- [XXXFO] :: announcer, that brings news/announces/makes known; + adnuo_V2 : V2 ; -- [XXXBO] :: designate by a nod; indicate, declare; nod assent; smile on; agree to, grant; + adnuto_V : V ; -- [XXXDO] :: nod (to); order/assent to by a nod; bow to; + adnutrio_V2 : V2 ; -- [XXXFO] :: train (on); + adobruo_V2 : V2 ; -- [XXXEO] :: cover over with earth, bury; + adolefactus_A : A ; -- [DXXFS] :: set on fire, kindled; + adoleo_V : V ; -- [XXXFS] :: emit/give out a smell/odor; + adoleo_V2 : V2 ; -- [XEXBO] :: worship, make/burn sacrifice/offerings; cremate; destroy/treat by fire/heat; + adolescens_A : A ; -- [XXXCO] :: young, youthful; "minor" (in reference to the younger of two having same name); adolescens_F_N : N ; -- [XXXCO] :: young man, youth; youthful person; young woman/girl; - adolescens_M_N : N ; - adolescentia_F_N : N ; - adolescentior_V : V ; - adolescentula_F_N : N ; - adolescentulus_A : A ; - adolescentulus_M_N : N ; - adolescenturio_V : V ; - adolesco_V : V ; - adolor_V : V ; - adominatio_F_N : N ; - adonium_N_N : N ; - adoperio_V2 : V2 ; - adoperte_Adv : Adv ; - adopertum_N_N : N ; - adopertus_A : A ; - adopinor_V : V ; - adoptata_F_N : N ; - adoptaticia_F_N : N ; - adoptaticius_A : A ; - adoptaticius_M_N : N ; - adoptatio_F_N : N ; - adoptator_M_N : N ; - adoptatus_M_N : N ; - adoptio_F_N : N ; - adoptionismus_M_N : N ; - adoptivus_A : A ; - adopto_V2 : V2 ; - ador_N_N : N ; - adorabilis_A : A ; - adorandus_A : A ; - adoratio_F_N : N ; - adorator_M_N : N ; - adordino_V2 : V2 ; - adorea_F_N : N ; - adoreum_N_N : N ; - adoreus_A : A ; - adoria_F_N : N ; - adorio_V2 : V2 ; - adorior_V : V ; - adoriosus_A : A ; - adorium_N_N : N ; - adornate_Adv : Adv ; - adorno_V2 : V2 ; - adoro_V2 : V2 ; - adosculor_V : V ; - adpagineculus_M_N : N ; - adpalis_A : A ; - adpango_V2 : V2 ; - adparamentum_N_N : N ; - adparate_Adv : Adv ; - adparatio_F_N : N ; - adparator_M_N : N ; - adparatorium_N_N : N ; - adparatrix_F_N : N ; - adparatus_A : A ; - adparatus_M_N : N ; - adparens_A : A ; - adparentia_F_N : N ; - adpareo_V : V ; - adparesco_V : V ; - adparet_V0 : V ; - adpario_V2 : V2 ; - adparitio_F_N : N ; - adparitor_M_N : N ; - adparitorius_A : A ; - adparitura_F_N : N ; - adparo_V2 : V2 ; - adpectoro_V2 : V2 ; - adpellatio_F_N : N ; - adpellativus_A : A ; - adpellator_M_N : N ; - adpellatorius_A : A ; - adpellito_V : V ; - adpello_V2 : V2 ; - adpendeo_V : V ; - adpendicula_F_N : N ; - adpendicum_N_N : N ; - adpendix_F_N : N ; - adpendo_V2 : V2 ; - adpensor_M_N : N ; - adpertineo_V : V ; - adpetens_A : A ; - adpetenter_Adv : Adv ; - adpetentia_F_N : N ; - adpetibilis_A : A ; - adpetisso_V2 : V2 ; - adpetitio_F_N : N ; - adpetitor_M_N : N ; - adpetitus_M_N : N ; - adpeto_M_N : N ; - adpeto_V2 : V2 ; - adpiciscor_V : V ; - adpingo_V2 : V2 ; - 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_V2 : V2 ; - adploro_V : V ; - adpluda_F_N : N ; - adplumbator_M_N : N ; - adplumbo_V2 : V2 ; - adpono_V2 : V2 ; - adporrectus_A : A ; - adportatio_F_N : N ; - adporto_V2 : V2 ; - adposco_V2 : V2 ; - adposite_Adv : Adv ; - adpositio_F_N : N ; - adpositum_N_N : N ; - adpositus_A : A ; - adpositus_M_N : N ; - adpostulo_V2 : V2 ; - adpotus_A : A ; - adprecor_V : V ; - adprehendo_V2 : V2 ; - adprehensibil_A : A ; - adprehensio_F_N : N ; - adprendo_V2 : V2 ; - adprenso_V2 : V2 ; - adpretio_V2 : V2 ; - adprime_Adv : Adv ; - adprimo_V2 : V2 ; - adprimus_A : A ; - adprobatio_F_N : N ; - adprobator_M_N : N ; - adprobe_Adv : Adv ; - adprobo_V2 : V2 ; - adprobus_A : A ; - adpromissor_M_N : N ; - adpromitto_V2 : V2 ; - adprono_V2 : V2 ; - adpropero_V : V ; - adpropinquatio_F_N : N ; - adpropinquo_V : V ; - adpropio_V : V ; - adpropriatio_F_N : N ; - adproprio_V : V ; - adproximo_V2 : V2 ; - adpugno_V2 : V2 ; - adpulsus_M_N : N ; - adque_Conj : Conj ; - adqui_Conj : Conj ; - adquiesco_V : V ; - adquietantia_F_N : N ; - adquieto_V : V ; - adquin_Conj : Conj ; - adquiro_V2 : V2 ; - adquisitio_F_N : N ; - adquisitrix_F_N : N ; - adquisitus_A : A ; - adquo_Adv : Adv ; - adrachne_F_N : N ; - adrado_V2 : V2 ; - adralis_A : A ; - adrectarium_N_N : N ; - adrectarius_A : A ; - adrectus_A : A ; - adremigo_V : V ; - adrenalinum_N_N : N ; - adrepo_V : V ; - adrepticius_A : A ; - adreptitius_A : A ; - adreptius_A : A ; - adreptivus_A : A ; - adrideo_V : V ; - adrigo_V2 : V2 ; - adripio_V2 : V2 ; - adrisio_F_N : N ; - adrisor_M_N : N ; - adrodo_V2 : V2 ; - adrogans_A : A ; - adroganter_Adv : Adv ; - adrogantia_F_N : N ; - adrogatio_F_N : N ; - adrogator_M_N : N ; - adrogo_V2 : V2 ; - adroro_V : V ; - adrosor_M_N : N ; - adrotans_A : A ; - adruo_V2 : V2 ; - adscendens_A : A ; - adscendibilis_A : A ; - adscendo_V2 : V2 ; - adscensio_F_N : N ; - adscensor_M_N : N ; - adscensus_M_N : N ; - adscessio_F_N : N ; - adscio_V2 : V2 ; - adscisco_V2 : V2 ; - adscitus_A : A ; - adscitus_M_N : N ; - adscribo_V2 : V2 ; - adscripticius_A : A ; - adscriptio_F_N : N ; - adscriptivus_A : A ; - adscriptor_M_N : N ; - adsecla_M_N : N ; - adsectatio_F_N : N ; - adsectator_M_N : N ; - adsector_V : V ; - adsecue_Adv : Adv ; - adsecula_M_N : N ; - adsecutor_M_N : N ; - adsedo_M_N : N ; - adsellor_V : V ; - adsenesco_V : V ; - adsensio_F_N : N ; - adsensor_M_N : N ; - adsensus_M_N : N ; - adsentatio_F_N : N ; - adsentatiuncula_F_N : N ; - adsentator_M_N : N ; - adsentatorie_Adv : Adv ; - adsentatrix_F_N : N ; - adsentio_V : V ; - adsentior_V : V ; - adsentor_V : V ; - adsequela_F_N : N ; - adsequor_V : V ; - adser_M_N : N ; - adsero_V2 : V2 ; - adsertio_F_N : N ; - adsertor_M_N : N ; - adsertorius_A : A ; - adsertum_N_N : N ; - adservio_V2 : V2 ; - adservo_V2 : V2 ; - adsessio_F_N : N ; - adsessor_M_N : N ; - adsessorium_N_N : N ; - adsessorius_A : A ; - adsessura_F_N : N ; - adsessus_M_N : N ; - adsestrix_F_N : N ; - adseveranter_Adv : Adv ; - adseverate_Adv : Adv ; - adseveratio_F_N : N ; - adsevero_V2 : V2 ; - adsibilo_V2 : V2 ; - adsiccesco_V : V ; - adsicco_V2 : V2 ; - adsideo_V : V ; - adsido_V : V ; - adsidue_Adv : Adv ; - adsiduitas_F_N : N ; - adsiduo_Adv : Adv ; - adsiduo_V2 : V2 ; - adsiduus_A : A ; - adsiduus_M_N : N ; - adsifornus_A : A ; - adsignatio_F_N : N ; - adsignator_M_N : N ; - adsignifico_V2 : V2 ; - adsigno_V2 : V2 ; - adsilio_V2 : V2 ; - adsimilanter_Adv : Adv ; - adsimilatio_F_N : N ; - adsimilatus_A : A ; - adsimilis_A : A ; - adsimiliter_Adv : Adv ; - adsimilo_V2 : V2 ; - adsimulanter_Adv : Adv ; - adsimulaticius_A : A ; - adsimulatio_F_N : N ; - adsimulatus_A : A ; - adsimuliter_Adv : Adv ; - adsimulo_V2 : V2 ; - adsisto_V2 : V2 ; - adsistrix_F_N : N ; - adsitus_A : A ; - adsociatio_F_N : N ; - adsocio_V : V ; - adsocius_A : A ; - adsoleo_V : V ; - adsolet_V0 : V ; - adsolo_V2 : V2 ; - adsono_V : V ; - adspargo_F_N : N ; - adspargo_V2 : V2 ; - adspectabilis_A : A ; - adspectamen_N_N : N ; - adspecto_V2 : V2 ; - adspectus_M_N : N ; - adspergo_F_N : N ; - adspergo_V2 : V2 ; - adspersorium_N_N : N ; - adspicio_V2 : V2 ; - adspiramen_N_N : N ; - adspiratio_F_N : N ; - adspirator_M_N : N ; - adspiro_V : V ; - adspuo_V2 : V2 ; - adstator_M_N : N ; - adstatus_A : A ; - adstatus_M_N : N ; - adsterno_V2 : V2 ; - adstipulatio_F_N : N ; - adstipulator_M_N : N ; - adstipulatus_M_N : N ; - adstipulo_V : V ; - adstipulor_V : V ; - adstituo_V2 : V2 ; - adsto_V : V ; - adstrangulo_V2 : V2 ; - adstrepo_V2 : V2 ; - adstricte_Adv : Adv ; - adstrictio_F_N : N ; - adstrictorius_A : A ; - adstrictus_A : A ; - adstrideo_V : V ; - adstrido_V : V ; - adstringo_V2 : V2 ; - adstructio_F_N : N ; - adstructor_M_N : N ; - adstruo_V2 : V2 ; - adstupeo_V : V ; - adsubrigo_V2 : V2 ; - adsudesco_V : V ; - adsuefacio_V2 : V2 ; - adsuefio_V : V ; - adsuesco_V2 : V2 ; - adsuetudo_F_N : N ; - adsuetus_A : A ; - adsugo_V2 : V2 ; - adsultim_Adv : Adv ; - adsulto_V : V ; - adsultus_M_N : N ; - adsum_V : V ; - adsumentum_N_N : N ; - adsumo_V2 : V2 ; - adsumptio_F_N : N ; - adsumptivus_A : A ; - adsuo_V : V ; - adsurgo_V : V ; - adsuscipo_V2 : V2 ; - adsuspiro_V : V ; - adtactus_M_N : N ; - adtagen_M_N : N ; - adtagena_F_N : N ; - adtempero_V2 : V2 ; - adtempto_V2 : V2 ; - adtendo_V2 : V2 ; - adtentatio_F_N : N ; - adtente_Adv : Adv ; - adtentio_F_N : N ; - adtento_V2 : V2 ; - adtentus_A : A ; - adtenuate_Adv : Adv ; - adtenuatio_F_N : N ; - adtenuatus_A : A ; - adtenuo_V2 : V2 ; - adtermino_V2 : V2 ; - adtero_V2 : V2 ; - adterraneus_A : A ; - adtertiarius_A : A ; - adtertiatus_A : A ; - adtestatio_F_N : N ; - adtestatus_A : A ; - adtestor_V : V ; - adtexo_V2 : V2 ; - adtigo_V2 : V2 ; - adtiguus_A : A ; - adtillo_V2 : V2 ; - adtina_F_N : N ; - adtineo_V : V ; - adtingo_V2 : V2 ; - adtinguo_V2 : V2 ; - adtitulo_V2 : V2 ; - adtolero_V2 : V2 ; - adtollo_V2 : V2 ; - adtondeo_V2 : V2 ; - adtonite_Adv : Adv ; - adtonitus_A : A ; - adtono_V2 : V2 ; - adtorqueo_V2 : V2 ; - adtractio_F_N : N ; - adtracto_V2 : V2 ; - adtractorius_A : A ; - adtractus_A : A ; - adtractus_M_N : N ; - adtraho_V2 : V2 ; - adtrectatio_F_N : N ; - adtrectatus_M_N : N ; - adtrecto_V2 : V2 ; - adtremo_V : V ; - adtrepido_V : V ; - adtribulo_V2 : V2 ; - adtribuo_V2 : V2 ; - adtributio_F_N : N ; - adtributum_N_N : N ; - adtributus_A : A ; - adtritio_F_N : N ; - adtritus_A : A ; - adtritus_M_N : N ; - adtubernalis_M_N : N ; - adtulo_V2 : V2 ; - adtumulo_V2 : V2 ; - adtuor_V : V ; - adubi_Adv : Adv ; - adulans_A : A ; - adulater_Adv : Adv ; - adulatio_F_N : N ; - adulator_M_N : N ; - adulatorie_Adv : Adv ; - adulatorius_A : A ; - adulatrix_F_N : N ; - adulescens_A : A ; + adolescens_M_N : N ; -- [XXXCO] :: young man, youth; youthful person; young woman/girl; + adolescentia_F_N : N ; -- [XXXBO] :: youth, young manhood; characteristic of being young, youthfulness; the young; + adolescentior_V : V ; -- [XXXFO] :: behave in a youthful manner; + adolescentula_F_N : N ; -- [XXXCO] :: young woman; very young woman; "my child"; + adolescentulus_A : A ; -- [XXXCO] :: very youthful, quite young; + adolescentulus_M_N : N ; -- [XXXCO] :: young man; mere youth; + adolescenturio_V : V ; -- [XXXFO] :: want to behave in a youthful manner; + adolesco_V : V ; -- [XXXDO] :: grow up, mature, reach manhood/peak; become established/strong; grow, increase; + adolor_V : V ; -- [XXXBO] :: fawn upon (as dog); flatter (in servile manner), court; make obeisance (to); + adominatio_F_N : N ; -- [DEXFS] :: good/favorable omen; + adonium_N_N : N ; -- [XAXNS] :: species of southernwood (flower of golden color or blood-red); + adoperio_V2 : V2 ; -- [XXXEO] :: cover, cover over; + adoperte_Adv : Adv ; -- [XXXES] :: covertly, in a dark/mysterious manner; + adopertum_N_N : N ; -- [XEXFO] :: religious secrets (pl.), mysteries; + adopertus_A : A ; -- [XXXCO] :: covered, overspread; clothed; veiled, disguised, hiding; shut, closed; + adopinor_V : V ; -- [XXXFO] :: conjecture/surmise/opine/think/suppose (further); + adoptata_F_N : N ; -- [XXXEO] :: adopted daughter; + adoptaticia_F_N : N ; -- [XXXEO] :: adopted daughter; + adoptaticius_A : A ; -- [XXXEO] :: adopted (into a family); (as a son/daughter); + adoptaticius_M_N : N ; -- [XXXEO] :: adopted son; + adoptatio_F_N : N ; -- [XXXDO] :: adoption of a child; adoption into family (Roman custom); + adoptator_M_N : N ; -- [XXXEO] :: one who adopts child; + adoptatus_M_N : N ; -- [XXXEO] :: adopted son; + adoptio_F_N : N ; -- [XXXCO] :: adoption of child; adoption into family; grafting (plant); + adoptionismus_M_N : N ; -- [EEXFE] :: heresy of adoptionism (that Christ is Son of God by adoption only); + adoptivus_A : A ; -- [XXXCO] :: adoptive, obtained by adoption; formed by grafting; + adopto_V2 : V2 ; -- [XXXBO] :: adopt, select, secure, pick out; wish/name for oneself; adopt legally; + ador_N_N : N ; -- [XXXEO] :: coarse grain; emmer wheat; spelt; + adorabilis_A : A ; -- [XXXFO] :: adorable, worthy of adoration/veneration; + adorandus_A : A ; -- [FXXFE] :: adorable, worthy of adoration/veneration; + adoratio_F_N : N ; -- [XEXEO] :: act of worship or prayer; + adorator_M_N : N ; -- [EEXDP] :: worshipper, adorer, one who worships/prays/reverences; + adordino_V2 : V2 ; -- [XXXES] :: set in order, arrange; + adorea_F_N : N ; -- [XXXDL] :: prize of value; (anciently, gift of grain); + adoreum_N_N : N ; -- [XAXEO] :: emmer wheat, spelt; + adoreus_A : A ; -- [XAXDO] :: pertaining to/consisting of emmer wheat/spelt; + adoria_F_N : N ; -- [XXXDO] :: glory, distinction; + adorio_V2 : V2 ; -- [XWXBO] :: |improperly influence; undertake/try/attempt/come to grips; begin/set to work; + adorior_V : V ; -- [XWXBO] :: |improperly influence; undertake/try/attempt/come to grips; begin/set to work; + adoriosus_A : A ; -- [DXXFS] :: celebrated, that has often obtained the adorea - prize; + adorium_N_N : N ; -- [XAXEO] :: emmer wheat, spelt; + adornate_Adv : Adv ; -- [XXXFO] :: elegantly, in a polished manner; + adorno_V2 : V2 ; -- [XXXBO] :: equip, get ready, prepare; set off; adorn, array, embellish; honor, endow; + adoro_V2 : V2 ; -- [XXXBO] :: honor, adore, worship, pay homage, reverence; beg, plead with, appeal to; + adosculor_V : V ; -- [XXXFS] :: give a kiss to; + adpagineculus_M_N : N ; -- [XTXFO] :: kind of decorative attachment (archit.); + adpalis_A : A ; -- [XXXFS] :: greasy, fatty; of/with fat/grease; + adpango_V2 : V2 ; -- [DXXFS] :: fasten to; + adparamentum_N_N : N ; -- [DXXFS] :: preparation, preparing; that which is prepared; + adparate_Adv : Adv ; -- [XXXCO] :: sumptuously; + adparatio_F_N : N ; -- [XXXCO] :: careful preparation; task/act of providing; provisions; designing, construction; + adparator_M_N : N ; -- [XEXFO] :: official who sacrifices to the Magna Mater; + adparatorium_N_N : N ; -- [XEXFO] :: place/room where preparations were made for sacrifice; + adparatrix_F_N : N ; -- [DXXFS] :: she who prepares (sacrifices); + adparatus_A : A ; -- [XXXCO] :: prepared, equipped, ready; splendid, elaborate, well-appointed; labored; + adparatus_M_N : N ; -- [XXXAO] :: preparation; instruments, equipment, supplies, stock; splendor, pomp, trappings; + adparens_A : A ; -- [XXXCO] :: exposed to the air; exposed to view, visible; perceptible, audible; apparent; + adparentia_F_N : N ; -- [DXXES] :: becoming visible, appearing, appearance; external appearance; + adpareo_V : V ; -- [XXXAO] :: appear; be evident/visible/noticed/found; show up, occur; serve (w/DAT); + adparesco_V : V ; -- [DXXES] :: begin to appear; + adparet_V0 : V ; -- [XXXBO] :: it is apparent/evident/clear/certain/visible/noticeable/found; it appears; + adpario_V2 : V2 ; -- [XXXFO] :: acquire, gain in addition; + adparitio_F_N : N ; -- [XXXCO] :: service, attendance; servants, attendants; provision, supplying, preparation; + adparitor_M_N : N ; -- [XLXCO] :: civil servant; lictor, clerk; attendant on a magistrate; + adparitorius_A : A ; -- [XLXFO] :: of/for an apparitor (civil servant; lictor, clerk; attendant on a magistrate); + adparitura_F_N : N ; -- [XLXFO] :: attendance on a magistrate, (civil) service; + adparo_V2 : V2 ; -- [XXXBO] :: prepare, fit out, make ready, equip, provide; attempt; organize (project); + adpectoro_V2 : V2 ; -- [DXXFS] :: press/clasp to the breast; + adpellatio_F_N : N ; -- [XXXBO] :: appeal (to higher authority); name, term; noun; title, rank; pronunciation; + adpellativus_A : A ; -- [XGXFO] :: of the nature of a noun, nominal; appellative, belonging to a species (L+S); + adpellator_M_N : N ; -- [XXXCO] :: appellant, one who appeals; + adpellatorius_A : A ; -- [XXXEO] :: of/used in appeals; + adpellito_V : V ; -- [XXXCO] :: call or name (frequently or habitually); + adpello_V2 : V2 ; -- [XXXBO] :: drive to, move up, bring along, force towards; put ashore at, land (ship); + adpendeo_V : V ; -- [XLXFO] :: to be pending; + adpendicula_F_N : N ; -- [XXXFO] :: small addition/appendix/annex; appendage; + adpendicum_N_N : N ; -- [DXXFS] :: appendage; + adpendix_F_N : N ; -- [XXXCO] :: appendix, supplement, annex; appendage, adjunct; hanger on; barberry bush/fruit; + adpendo_V2 : V2 ; -- [XXXCO] :: weigh out; pay/give out; hang, cause to be suspended; + adpensor_M_N : N ; -- [DXXFS] :: weigher, he who weighs out; + adpertineo_V : V ; -- [XXXFS] :: belong to, appertain to; (w/DAT or ad); + adpetens_A : A ; -- [XXXCO] :: eager/greedy/having appetite for (w/GEN), desirous; avaricious/greedy/covetous; + adpetenter_Adv : Adv ; -- [XXXEO] :: greedily, avidly; + adpetentia_F_N : N ; -- [XXXCO] :: desire, longing after, appetite for; + adpetibilis_A : A ; -- [XXXFO] :: be sought after, desirable; + adpetisso_V2 : V2 ; -- [XXXFO] :: seek eagerly after; + adpetitio_F_N : N ; -- [XXXCO] :: desire, appetite; action of trying to reach/grasp, stretching out for; grasping; + adpetitor_M_N : N ; -- [XXXFO] :: one who has a desire/liking for (something); + adpetitus_M_N : N ; -- [XXXCO] :: appetite, desire; esp. natural/instinctive desire; + adpeto_M_N : N ; -- [XXXFO] :: one who is covetous; + adpeto_V2 : V2 ; -- [XXXAO] :: seek/grasp after, desire; assail; strive eagerly/long for; approach, near; + adpiciscor_V : V ; -- [XXXFO] :: bargain?; + adpingo_V2 : V2 ; -- [DXXFS] :: |fasten/join to; + adplaudo_V2 : V2 ; -- [XXXCO] :: strike together; clap, applaud; strike, slap; dash to the ground (w/terrae); + adplausor_M_N : N ; -- [XGXFS] :: one expressing agreement/approval/pleasure/satisfaction by clapping hands; + adplausus_M_N : N ; -- [XXXFO] :: flapping/beating of wings; + adplex_A : A ; -- [DXXFS] :: closely joined/attached to; + adplicatio_F_N : N ; -- [XXXCO] :: application, inclination; joining, attaching; attachment of client to patron; + adplicatus_A : A ; -- [XXXCO] :: situated close (to town w/DAT); clinging to (side of hill); devoted (to); + adplico_V2 : V2 ; -- [DXXAX] :: connect, place near, bring into contact; land (ship); adapt; apply/devote to; + adplodo_V2 : V2 ; -- [XXXEO] :: strike together; clap, applaud; strike, slap; dash to the ground (w/terrae); + adploro_V : V ; -- [XXXFS] :: lament, weep at/on account of; deplore (thing); + adpluda_F_N : N ; -- [XAXEO] :: chaff; + adplumbator_M_N : N ; -- [XXXFO] :: solderer; + adplumbo_V2 : V2 ; -- [XXXFO] :: solder, solder on, affix by soldering, close/seal by soldering/with solder; + adpono_V2 : V2 ; -- [XXXAO] :: place near, set before/on table, serve up; put/apply/add to; appoint/assign; + adporrectus_A : A ; -- [XXXFO] :: stretched out near/beside; + adportatio_F_N : N ; -- [XXXFO] :: conveyance to, carrying to; + adporto_V2 : V2 ; -- [XXXBO] :: carry/convey/bring (to); import; present (play); bring (news); make one's way; + adposco_V2 : V2 ; -- [XXXFO] :: demand in addition; + adposite_Adv : Adv ; -- [XXXFO] :: in a manner suited (to); suitably, appositely; + adpositio_F_N : N ; -- [XXXFO] :: comparison, action of comparing; + adpositum_N_N : N ; -- [XGXFO] :: adjective, epithet; + adpositus_A : A ; -- [XXXBO] :: adjacent, near, accessible, akin; opposite; fit, appropriate, apt; based upon; + adpositus_M_N : N ; -- [XBXNO] :: application (of medicine); + adpostulo_V2 : V2 ; -- [DXXFS] :: beg/entreaty/solicit importunately/persistently/troublesomely/pressingly; + adpotus_A : A ; -- [XXXEO] :: drunk, intoxicated; + adprecor_V : V ; -- [XEXEO] :: address prayer to, pray to , invoke, beseech; + adprehendo_V2 : V2 ; -- [XXXAO] :: seize (upon), grasp, cling to, lay hold of; apprehend; embrace; overtake; + adprehensibil_A : A ; -- [DXXES] :: intelligible, understandable, that can be understood; + adprehensio_F_N : N ; -- [DXXES] :: seizing upon, laying hold of; apprehension, understanding; + adprendo_V2 : V2 ; -- [XXXAO] :: seize (upon), grasp, cling to, lay hold of; apprehend; embrace; overtake; + adprenso_V2 : V2 ; -- [XXXFO] :: snatch at; + adpretio_V2 : V2 ; -- [DEXCS] :: value, set/estimate a price, appraise; purchase, buy; appropriate to one's self; + adprime_Adv : Adv ; -- [XXXCO] :: to the highest degree, to a high degree, extremely, especially, very; + adprimo_V2 : V2 ; -- [XXXEO] :: press on/to; clench (the teeth); + adprimus_A : A ; -- [XXXEO] :: very first, most excellent; + adprobatio_F_N : N ; -- [XXXBO] :: approbation, giving approval; proof, confirmation; decision; + adprobator_M_N : N ; -- [XXXEO] :: one who approves; + adprobe_Adv : Adv ; -- [XXXEO] :: excellently; + adprobo_V2 : V2 ; -- [XXXAO] :: approve, commend, endorse; prove; confirm; justify; allow; make good; + adprobus_A : A ; -- [XXXEO] :: excellent, worthy; + adpromissor_M_N : N ; -- [XXXEO] :: one who promises/gives security on behalf of another; + adpromitto_V2 : V2 ; -- [XXXEO] :: promise in addition (to another), promise also; + adprono_V2 : V2 ; -- [XXXEO] :: lean forwards; + adpropero_V : V ; -- [XXXCO] :: hasten, hurry, come hastily, make haste; accelerate, speed up; + adpropinquatio_F_N : N ; -- [XXXEO] :: approach, drawing near; + adpropinquo_V : V ; -- [XXXCO] :: approach (w/DAT or ad+ACC); come near to, draw near/nigh (space/time); be close; + adpropio_V : V ; -- [DXXCB] :: approach (w/DAT or ad+ACC); come near to, draw near/nigh (space/time); be close; + adpropriatio_F_N : N ; -- [DXXES] :: appropriation, making one's own; [~ ciborum => making flesh/blood of food]; + adproprio_V : V ; -- [DXXFS] :: appropriate, make one's own; + adproximo_V2 : V2 ; -- [DXXFS] :: be/draw/come close/near to, approach; + adpugno_V2 : V2 ; -- [XXXCO] :: attack, assault; + adpulsus_M_N : N ; -- [XXXCO] :: bringing/driving to (cattle) (/right to); landing; approach; influence, impact; + adque_Conj : Conj ; -- [XXXCO] :: and, as well as, as soon as; together with; and even; and too/also/now; yet; + adqui_Conj : Conj ; -- [XXXES] :: but, yet, notwithstanding, however, rather, well/but now; and yet, still; + adquiesco_V : V ; -- [XXXBO] :: lie with (w/cum), rest, relax; repose (in death); acquiesce, assent; subside; + adquietantia_F_N : N ; -- [FLBFY] :: safety; exemption; surrender; + adquieto_V : V ; -- [FLXFJ] :: discharge (a debt); + adquin_Conj : Conj ; -- [XXXEO] :: but, yet, notwithstanding, however, rather, well/but now; and yet, still; + adquiro_V2 : V2 ; -- [XXXBO] :: acquire besides/in addition, obtain, gain, win, get; add to stock; accrue; + adquisitio_F_N : N ; -- [XXXDO] :: acquisition; additional source of supply; + adquisitrix_F_N : N ; -- [XXXIO] :: acquirer (female); + adquisitus_A : A ; -- [XXXFO] :: strained, recherche; + adquo_Adv : Adv ; -- [XXXES] :: how far, as far as, as much as; + adrachne_F_N : N ; -- [XAXNS] :: wild strawberry tree; + adrado_V2 : V2 ; -- [XXXEO] :: shave/scrape/pare close; trim; fleece; [~ cacumen => lop off]; + adralis_A : A ; -- [DLXFS] :: of a pledge/security; + adrectarium_N_N : N ; -- [XTXFO] :: vertical post, upright; + adrectarius_A : A ; -- [DTXES] :: erect, in an erect position, perpendicular; + adrectus_A : A ; -- [XXXEL] :: erect, perpendicular, upright, standing; steep, precipitous; excited, eager; + adremigo_V : V ; -- [XXXEO] :: row up to/towards; + adrenalinum_N_N : N ; -- [GBXEK] :: adrenaline; + adrepo_V : V ; -- [XXXCO] :: creep/move stealthily towards, steal up; feel one's way, worm one's way (trust); + adrepticius_A : A ; -- [DXXES] :: seized/possessed (in mind), inspired; raving, delirious; + adreptitius_A : A ; -- [DXXES] :: seized/possessed (in mind), inspired; raving, delirious; + adreptius_A : A ; -- [DXXFS] :: seized/possessed (in mind), inspired; raving, delirious; + adreptivus_A : A ; -- [DXXFZ] :: seized/possessed (in mind), inspired; raving, delirious; (Bianchi); + adrideo_V : V ; -- [XXXCO] :: smile at/upon; please, be pleasing/satisfactory (to); be/seem familiar (to); + adrigo_V2 : V2 ; -- [XXXBO] :: set upright, tilt upwards, stand on end, raise; become sexually excited/aroused; + adripio_V2 : V2 ; -- [XXXAO] :: take hold of; seize (hand/tooth/claw), snatch; arrest; assail; pick up, absorb; + adrisio_F_N : N ; -- [XXXFL] :: smile of approval; action of smiling (at/on); + adrisor_M_N : N ; -- [XXXFO] :: one who smiles (at a person), smiler; flatterer, fawner (L+S); + adrodo_V2 : V2 ; -- [XXXCO] :: gnaw/nibble (away part); erode, eat away(disease/chemicals). wash away (water); + adrogans_A : A ; -- [XXXBO] :: arrogant, insolent, overbearing; conceited; presumptuous, assuming; + adroganter_Adv : Adv ; -- [XXXCO] :: insolently, arrogantly, haughtily; presumptuously; in a conceited manner; + adrogantia_F_N : N ; -- [XXXCO] :: insolence, arrogance, conceit, haughtiness; presumption; + adrogatio_F_N : N ; -- [XLXEO] :: act of adopting a adult as son homo sui juris (vs. in potestate parentis); + adrogator_M_N : N ; -- [XLXEO] :: one who adopts a adult as son by arrogatio (homo sui juris); + adrogo_V2 : V2 ; -- [XXXCO] :: |adopt (an adult) as one's son (esp. at his instance); + adroro_V : V ; -- [DXXFS] :: moisten, bedew; + adrosor_M_N : N ; -- [XXXFO] :: one who nibbles/gnaws at; + adrotans_A : A ; -- [DXXFS] :: in a winding/circular motion, turning; wavering; + adruo_V2 : V2 ; -- [XXXFO] :: heap up (earth); cover (with earth), bury; + adscendens_A : A ; -- [XXXFS] :: of/for climbing (machine); enabling one to climb; + adscendibilis_A : A ; -- [XXXFO] :: climbable, that can be climbed; + adscendo_V2 : V2 ; -- [XXXAO] :: climb; go/climb up; mount, scale; mount up, embark; rise, ascend, move upward; + adscensio_F_N : N ; -- [XXXEO] :: ascent; progress, advancement; rising series/flight of stairs; soaring; + adscensor_M_N : N ; -- [DXXES] :: one who ascends/rises; one who mounts a horse/chariot, rider, charioteer; + adscensus_M_N : N ; -- [XXXBO] :: ascent; act of scaling (walls); approach; a stage/step in advancement; height; + adscessio_F_N : N ; -- [XXXEO] :: removal; loss, separation, going away; diminution; + adscio_V2 : V2 ; -- [XXXDO] :: take to/up; associate, admit; adopt as one's own; take upon (General's) staff; + adscisco_V2 : V2 ; -- [XXXAO] :: adopt, assume; receive, admit, approve of, associate; take over, claim; + adscitus_A : A ; -- [XXXES] :: derived, assumed; foreign; + adscitus_M_N : N ; -- [XXXFS] :: acceptance, reception; + adscribo_V2 : V2 ; -- [XXXAO] :: add/state in writing, insert; appoint; enroll, enfranchise; reckon, number; + adscripticius_A : A ; -- [XWXEO] :: enrolled in addition (as citizen/soldier); + adscriptio_F_N : N ; -- [XXXEO] :: addendum, addition in writing; + adscriptivus_A : A ; -- [XWXEO] :: enrolled in addition (as a soldier), supernumerary; + adscriptor_M_N : N ; -- [XXXEO] :: seconder, supporter, countersigner, one adding name to document as approving; + adsecla_M_N : N ; -- [XXXCO] :: follower; attendant, servant; hanger-on, sycophant, creature; + adsectatio_F_N : N ; -- [XXXEO] :: waiting on, (respectful) attendance; support (in canvassing); study, research; + adsectator_M_N : N ; -- [XXXCO] :: follower, companion, attendant; disciple; researcher, student, one who seeks; + adsector_V : V ; -- [XXXCO] :: accompany, attend, escort; support, be an adherent, follow; court (fame); + adsecue_Adv : Adv ; -- [XXXFO] :: attentively, closely; + adsecula_M_N : N ; -- [XXXCO] :: follower; attendant, servant; hanger-on, sycophant, creature; + adsecutor_M_N : N ; -- [DXXFS] :: attendant; + adsedo_M_N : N ; -- [XLXES] :: assessor, counselor, one who sits by to give advice; + adsellor_V : V ; -- [DBXFS] :: defecate, void; + adsenesco_V : V ; -- [DXXFS] :: become old (to any thing); + adsensio_F_N : N ; -- [XXXCO] :: assent, agreement, belief; approval, approbation, applause; + adsensor_M_N : N ; -- [XXXDO] :: one who agrees or approves; + adsensus_M_N : N ; -- [XXXCO] :: assent, agreement, belief; approval, approbation, applause; + adsentatio_F_N : N ; -- [XXXCO] :: assent, agreement; flattery, toadyism, flattering agreement/compliance; + adsentatiuncula_F_N : N ; -- [XXXEO] :: piece of flattery; petty/trivial flattery; (L+S); + adsentator_M_N : N ; -- [XXXCO] :: yes-man, flatterer, toady; + adsentatorie_Adv : Adv ; -- [XXXFO] :: like a flatterer; fawningly, in a flattering manner; + adsentatrix_F_N : N ; -- [XXXFO] :: woman who flatters; + adsentio_V : V ; -- [XXXCO] :: assent, approve, agree in opinion; admit the truth of (w/DAT), agree (with); + adsentior_V : V ; -- [XXXBO] :: assent to, agree, approve, comply with; admit the truth of (w/PREP); + adsentor_V : V ; -- [XXXCO] :: flatter, humor; agree, assent, confirm; agree to everything; + adsequela_F_N : N ; -- [DXXFS] :: succession, succeeding; + adsequor_V : V ; -- [XXXAO] :: follow on, pursue, go after; overtake; gain, achieve; equal, rival; understand; + adser_M_N : N ; -- [XXXCO] :: pole (wooden), post, stake, beam; joist, rafter; pole of a litter; + adsero_V2 : V2 ; -- [XXXDO] :: plant/set at/near; + adsertio_F_N : N ; -- [XXXDO] :: act of claiming free or slave (for status); defense/vindication (of character); + adsertor_M_N : N ; -- [XXXCO] :: one asserting status of another; restorer of liberty, protector, champion; + adsertorius_A : A ; -- [DLXFS] :: of/pertaining to a restoration of freedom; + adsertum_N_N : N ; -- [DGXES] :: assertion; + adservio_V2 : V2 ; -- [XXXFO] :: devote/apply oneself to (w/DAT); aid, help, assist; + adservo_V2 : V2 ; -- [XXXBO] :: keep, guard, preserve; watch, observe; keep in custody; save life of, rescue; + adsessio_F_N : N ; -- [XXXFO] :: sitting beside one (to console/give advice); + adsessor_M_N : N ; -- [XLXDO] :: assessor, counselor, one who sits by to give advice; + adsessorium_N_N : N ; -- [XLXFO] :: title of a legal textbook (sg/pl.); + adsessorius_A : A ; -- [DLXFS] :: of/pertaining to an assessor; + adsessura_F_N : N ; -- [XLXFO] :: assistance as a legal advisor; + adsessus_M_N : N ; -- [XLXFO] :: sitting beside one (in court); + adsestrix_F_N : N ; -- [XLXFO] :: assessor (female), counselor, one who sits by to give advice; + adseveranter_Adv : Adv ; -- [XXXEO] :: earnestly, emphatically; + adseverate_Adv : Adv ; -- [XXXEO] :: earnestly, emphatically; + adseveratio_F_N : N ; -- [XXXCO] :: affirmation, (confident/earnest) assertion; seriousness/earnestness, gravity; + adsevero_V2 : V2 ; -- [XXXCO] :: act earnestly; assert strongly/emphatically, declare; profess; be serious; + adsibilo_V2 : V2 ; -- [XXXFO] :: hiss out (breath) upon (w/DAT); + adsiccesco_V : V ; -- [XXXFO] :: dry out, become dry; + adsicco_V2 : V2 ; -- [XXXDO] :: dry, dry out, dry up, make dry; + adsideo_V : V ; -- [XXXBO] :: sit by/in council/as assessor; watch over; camp near, besiege; resemble (w/DAT); + adsido_V : V ; -- [XXXCO] :: sit down, take a seat; perch, alight, settle; sit by/near (to) (w/DAT); + adsidue_Adv : Adv ; -- [XXXCO] :: continually, constantly, regularly; + adsiduitas_F_N : N ; -- [XXXCO] :: attendance, constant presence/attention/practice, care; recurrence, repetition; + adsiduo_Adv : Adv ; -- [XXXDO] :: continually, constantly, regularly; + adsiduo_V2 : V2 ; -- [XXXFS] :: apply constantly; make constant use of (Souter); use regularly/incessantly; + adsiduus_A : A ; -- [XXXAO] :: constant, regular; unremitting, incessant; ordinary; landowning, first-class; + adsiduus_M_N : N ; -- [XXXES] :: tribute/tax payer, rich person; first-rate person/writer?; + adsifornus_A : A ; -- [XDXIO] :: touring gladiatorial show; + adsignatio_F_N : N ; -- [XLXCO] :: distribution/allotment of land; the plot of land granted; allocation (other); + adsignator_M_N : N ; -- [XLXFO] :: allocator, one who assigns; + adsignifico_V2 : V2 ; -- [XXXDO] :: show (w/ACC + INF), make evident; mean/denote (words); + adsigno_V2 : V2 ; -- [XXXAO] :: assign, distribute, allot; award, bestow (rank/honors); impute; affix seal; + adsilio_V2 : V2 ; -- [XXXBO] :: jump/leap (up/on/towards), rush/dash (at/against), assault; mount (male-female); + adsimilanter_Adv : Adv ; -- [XXXEO] :: similarly, analogically; + adsimilatio_F_N : N ; -- [XXXDS] :: likeness, similarity in form; comparison; deceit, pretense, feigning, pretending + adsimilatus_A : A ; -- [XXXES] :: similar, like, made similar; imitated, feigned, pretended. dissembled; + adsimilis_A : A ; -- [XXXCO] :: similar, like; close; closely resembling, very like; + adsimiliter_Adv : Adv ; -- [XXXFO] :: similarly, in much the same manner/fashion; + adsimilo_V2 : V2 ; -- [XXXAO] :: make like; compare; counterfeit, simulate, imitate, pretend, feign, act a part; + adsimulanter_Adv : Adv ; -- [XXXEO] :: similarly, analogically; + adsimulaticius_A : A ; -- [DLXES] :: imitated, counterfeit, not real; nominal, titular; + adsimulatio_F_N : N ; -- [XXXDO] :: likeness, similarity in form; comparison; deceit, pretense; + adsimulatus_A : A ; -- [XXXES] :: similar, like, made similar; imitated, feigned, pretended. dissembled; + adsimuliter_Adv : Adv ; -- [XXXFS] :: similarly, in much the same manner/fashion; + adsimulo_V2 : V2 ; -- [XXXAO] :: make like; compare; counterfeit, simulate, imitate, pretend, feign, act a part; + adsisto_V2 : V2 ; -- [XXXBO] :: take a position/stand (near/by), attend; appear before; set/place near; + adsistrix_F_N : N ; -- [XLXFS] :: assessor (female), counselor, one who sits by to give advice; + adsitus_A : A ; -- [XXXEO] :: planted/set at/near; + adsociatio_F_N : N ; -- [FXXEE] :: association; accompaniment; escort; + adsocio_V : V ; -- [XXXFO] :: join (to), associate (with); + adsocius_A : A ; -- [DXXFS] :: associated with; + adsoleo_V : V ; -- [XXXCO] :: be accustomed/in the habit of; be customary accompaniment, go with; be usual; + adsolet_V0 : V ; -- [XXXCO] :: it is usual/wont; it is the custom/practice; it is the habit; + adsolo_V2 : V2 ; -- [DWXES] :: level to the ground, destroy; + adsono_V : V ; -- [XXXDO] :: respond, reply; sound in accompaniment; sing as an accompaniment; + adspargo_F_N : N ; -- [XXXBO] :: spray, sprinkling/scattering; moisture in form of drops; water damage; staining; + adspargo_V2 : V2 ; -- [XXXAO] :: sprinkle/strew on, splatter, splash; defile, stain; cast (slur); inflict (harm); + adspectabilis_A : A ; -- [XXXEO] :: visible, able to be seen; worthy to be seen, pleasing to look at; + adspectamen_N_N : N ; -- [DXXFS] :: look, sight; + adspecto_V2 : V2 ; -- [XXXCO] :: look/gaze at/upon; observe, watch; pay heed; face/look towards (place/person); + adspectus_M_N : N ; -- [XXXAO] :: appearance, aspect, mien; act of looking; sight, vision; glance, view; horizon; + adspergo_F_N : N ; -- [XXXBO] :: spray, sprinkling; + adspergo_V2 : V2 ; -- [XXXAO] :: sprinkle/strew on, splatter, splash; defile, stain; cast (slur); inflict (harm); + adspersorium_N_N : N ; -- [EEXEE] :: aspergillum, holy water sprinkler/brush; + adspicio_V2 : V2 ; -- [XXXAO] :: look/gaze on/at, see, observe, behold, regard; face; consider, contemplate; + adspiramen_N_N : N ; -- [XXXFO] :: breathing on, immission; insertion, introduction; + adspiratio_F_N : N ; -- [XXXCO] :: exhalation; blowing on; aspiration; sounding "h"; + adspirator_M_N : N ; -- [EXXEN] :: inciter; inspirer; + adspiro_V : V ; -- [XXXAO] :: breathe/blow (upon); aspirate; instill, infuse; be fragrant; influence; aspire; + adspuo_V2 : V2 ; -- [XXXNO] :: spit (at/on); + adstator_M_N : N ; -- [XXXIO] :: aide, helper, assister; + adstatus_A : A ; -- [XWXDO] :: armed with a spear/spears; + adstatus_M_N : N ; -- [XWXCO] :: spearman; soldier in unit in front of Roman battle-formation; its centurion; + adsterno_V2 : V2 ; -- [XXXEO] :: prostrate oneself, lie prone (on); + adstipulatio_F_N : N ; -- [XXXEO] :: confirmation, confirmatory statement; + adstipulator_M_N : N ; -- [XLXDO] :: associate in a stipulation; one who supports an opinion, adherent; + adstipulatus_M_N : N ; -- [XXXNO] :: assent, agreement in a command; + adstipulo_V : V ; -- [XLXFS] :: join in stipulation/covenant; join in demanding; support (in an argument); + adstipulor_V : V ; -- [XLXDO] :: join in stipulation/covenant; join in demanding; support (in an argument); + adstituo_V2 : V2 ; -- [XXXDO] :: place near/before; make to stand before; + adsto_V : V ; -- [XXXBO] :: stand at/on/by/near; assist; stand up/upright/waiting/still/on one's feet; + adstrangulo_V2 : V2 ; -- [XXXFS] :: strangle; + adstrepo_V2 : V2 ; -- [XXXCO] :: make a noise at, shout in support, take up a cry; assail with noise; murmur; + adstricte_Adv : Adv ; -- [XXXCO] :: tightly (bound), firmly; strictly, by strict rules; concisely, tersely, pithily; + adstrictio_F_N : N ; -- [XBXNO] :: astringency, an astringent action; + adstrictorius_A : A ; -- [XBXNO] :: astringent, binding, constrictive, styptic; (effect on organic tissue); + adstrictus_A : A ; -- [XXXBO] :: |busy/preoccupied (with), intent (on); parsimonious, tight; astringent (taste); + adstrideo_V : V ; -- [XXXFO] :: hiss (at); + adstrido_V : V ; -- [XXXFO] :: hiss (at); + adstringo_V2 : V2 ; -- [XXXAO] :: |oblige, commit; compress, narrow, restrict; knit (brows); freeze, solidify; + adstructio_F_N : N ; -- [DGXES] :: accumulation of proof, putting together, composition; + adstructor_M_N : N ; -- [DGXFS] :: one who adduces/brings forward/cites/alleges proof; + adstruo_V2 : V2 ; -- [XXXBO] :: build on/additional structure; heap/pile (on); add to/on, contribute, provide; + adstupeo_V : V ; -- [XXXDO] :: be stunned/astounded/astonished/amazed (at); be enthralled (by) (w/DAT); + adsubrigo_V2 : V2 ; -- [XXXNO] :: stretch up, raise; + adsudesco_V : V ; -- [XXXEO] :: sweat, break out in a sweat; + adsuefacio_V2 : V2 ; -- [XXXCO] :: accustom (to), habituate, inure; make accustomed/used (to), train; + adsuefio_V : V ; -- [XXXCO] :: be/become accustomed (to), be habituated; be trained; (adsuefacio PASS); + adsuesco_V2 : V2 ; -- [XXXBO] :: accustom, become/grow accustomed to/used to/intimate with; make familiar; + adsuetudo_F_N : N ; -- [XXXCO] :: custom, habit; repeated practice/experience/association; intimacy, intercourse; + adsuetus_A : A ; -- [XXXBO] :: accustomed, customary, usual, to which one is accustomed/used; + adsugo_V2 : V2 ; -- [XXXFO] :: suck towards; + adsultim_Adv : Adv ; -- [XXXNO] :: by leaps, by hops; by leaps and bounds; + adsulto_V : V ; -- [XWXCO] :: jump/leap at/towards/upon; dash against; attack, assault, make an attack (on); + adsultus_M_N : N ; -- [XWXEO] :: attack, assault, charge; + adsum_V : V ; -- [BXXCS] :: be near, be present, be in attendance, arrive, appear; aid (w/DAT); + adsumentum_N_N : N ; -- [DXXFS] :: that which is to be sewed upon, that which is to be patched; + adsumo_V2 : V2 ; -- [XXXAO] :: take (to/up/on/from), adopt/raise, use; assume/receive; insert/add; usurp/claim; + adsumptio_F_N : N ; -- [XXXCO] :: adoption; acquisition, assumption, claim; minor premise; introduction (point); + adsumptivus_A : A ; -- [XGXEO] :: based on extraneous arguments (rhet., of the treatment of a case); + adsuo_V : V ; -- [XXXEO] :: sew or patch on; + adsurgo_V : V ; -- [XXXAO] :: rise/stand up, rise to one's feet/from bed; climb, lift oneself; grow; soar; + adsuscipo_V2 : V2 ; -- [XXXIO] :: undertake (vows); + adsuspiro_V : V ; -- [XXXFO] :: sigh in response (to) (w/DAT); + adtactus_M_N : N ; -- [XXXDO] :: touch , contact, action of touching; + adtagen_M_N : N ; -- [XAXDO] :: bird resembling partridge, francolin?; + adtagena_F_N : N ; -- [XAXDO] :: bird resembling partridge, francolin?; + adtempero_V2 : V2 ; -- [XXXEO] :: fit, adjust; + adtempto_V2 : V2 ; -- [XXXCO] :: attack, assail; call into question; try to seduce/use; make an attempt on, try; + adtendo_V2 : V2 ; -- [XXXAO] :: turn/stretch towards; apply; attend/pay (close) attention to, listen carefully; + adtentatio_F_N : N ; -- [DXXFS] :: attempting, attempt, trying, try; + adtente_Adv : Adv ; -- [XXXCO] :: diligently, carefully, with concentration, with close attention; + adtentio_F_N : N ; -- [XXXEO] :: attention, application, attentiveness; + adtento_V2 : V2 ; -- [XXXCO] :: attack, assail; call into question; try to seduce/use; make an attempt on, try; + adtentus_A : A ; -- [XXXCO] :: attentive, heedful; careful, conscientious, intent; frugal, economical; + adtenuate_Adv : Adv ; -- [XXXFO] :: plainly, barely; + adtenuatio_F_N : N ; -- [XXXEO] :: diminution, act of lessening, attenuation; plainness (of style); + adtenuatus_A : A ; -- [XXXEO] :: plain (style), bare, subdued; thin, impoverished; lessened, diminished; + adtenuo_V2 : V2 ; -- [XXXBO] :: thin (out); weaken, lessen, diminish, shrink, reduce in size; make plain; + adtermino_V2 : V2 ; -- [XXXFS] :: set bounds to, measure, limit; + adtero_V2 : V2 ; -- [XXXBO] :: rub, rub against; grind; chafe; wear out/down/away; diminish, impair; waste; + adterraneus_A : A ; -- [XXXFO] :: coming to the earth; earth-borne; + adtertiarius_A : A ; -- [DXXFS] :: whole and a third; + adtertiatus_A : A ; -- [XXXFS] :: reduced/boiled down to a third; + adtestatio_F_N : N ; -- [XXXEO] :: testimony, attestation; + adtestatus_A : A ; -- [XXXEO] :: confirmatory, corroboratory; + adtestor_V : V ; -- [XXXEO] :: confirm, attest, bear witness to; + adtexo_V2 : V2 ; -- [XXXCO] :: add, join on, link to; weave/plait on, attach by weaving; + adtigo_V2 : V2 ; -- [BXXAO] :: touch, touch/border on; reach, arrive at, achieve; mention briefly; belong to; + adtiguus_A : A ; -- [XXXDO] :: contiguous, adjoining, adjacent, neighboring; + adtillo_V2 : V2 ; -- [DXXFS] :: tickle, please; + adtina_F_N : N ; -- [XAXFO] :: heap of stones as a boundary marker; (pl.) (L+S); + adtineo_V : V ; -- [XXXAO] :: hold on/to/near/back/together/fast; restrain, keep (in custody), retain; delay; + adtingo_V2 : V2 ; -- [XXXFO] :: wipe/smear on?; + adtinguo_V2 : V2 ; -- [DXXFS] :: moisten, bedew, sprinkle with a liquid; + adtitulo_V2 : V2 ; -- [DLXFS] :: name, entitle; + adtolero_V2 : V2 ; -- [XXXFO] :: support, sustain, bear; + adtollo_V2 : V2 ; -- [XXXAO] :: raise/lift up/towards/to a higher position; erect, build; exalt; extol, exalt; + adtondeo_V2 : V2 ; -- [XXXCO] :: clip (hair close), shear; strip of money, fleece; thrash; prune, trim, crop; + adtonite_Adv : Adv ; -- [XXXFS] :: frantically; bewilderedly, confoundedly; + adtonitus_A : A ; -- [XXXBO] :: astonished, fascinated; lightning/thunder-struck, stupefied, dazed; inspired; + adtono_V2 : V2 ; -- [XXXEO] :: strike with lightning, blast; drive crazy, distract; + adtorqueo_V2 : V2 ; -- [XXXEO] :: whirl at; hurl upwards; + adtractio_F_N : N ; -- [XXXFS] :: contraction, drawing together; + adtracto_V2 : V2 ; -- [XXXCO] :: touch; lay hands on; handle (roughly), assault (sexually), violate; deal with; + adtractorius_A : A ; -- [DXXFS] :: attractive, having the power of attraction; + adtractus_A : A ; -- [XXXEO] :: drawn together (brows), knit; + adtractus_M_N : N ; -- [XXXFS] :: attraction, drawing to; + adtraho_V2 : V2 ; -- [XXXBO] :: attract, draw/drag together/in/before/along; inhale; gather saliva; bend (bow); + adtrectatio_F_N : N ; -- [XGXEO] :: touching, handling; grammatical term for words denoting many things together; + adtrectatus_M_N : N ; -- [XXXFO] :: touching, handling, feeling; + adtrecto_V2 : V2 ; -- [XXXCO] :: touch; lay hands on; handle (roughly), assault (sexually), violate; deal with; + adtremo_V : V ; -- [XXXFO] :: tremble (at) (w/DAT); + adtrepido_V : V ; -- [XXXFO] :: bestir oneself; + adtribulo_V2 : V2 ; -- [XXXFS] :: thresh, press hard; + adtribuo_V2 : V2 ; -- [XXXAO] :: assign/allot/attribute/impute to; grant, pay; appoint, put under jurisdiction; + adtributio_F_N : N ; -- [XXXCO] :: assignment of debt; one's destined lot; grant; attribution; predicate attribute; + adtributum_N_N : N ; -- [XLXFO] :: grant of public money; + adtributus_A : A ; -- [XXXES] :: ascribed, attributed; assigned, allotted; + adtritio_F_N : N ; -- [DXXES] :: rubbing/grinding against/on (something); friction, abrasion; + adtritus_A : A ; -- [XXXCS] :: |rubbed (off/away), wasted; bruised; shameless, impudent, brazen; + adtritus_M_N : N ; -- [XXXCO] :: action/process of rubbing/grinding; friction; chafing, abrasion, bruising; + adtubernalis_M_N : N ; -- [DAXFS] :: one who lives in an adjoining hut; + adtulo_V2 : V2 ; -- [AXXFS] :: bring/carry/bear to; + adtumulo_V2 : V2 ; -- [XXXNO] :: heap up against; bank up (with something); + adtuor_V : V ; -- [XXXFO] :: observe, look at; + adubi_Adv : Adv ; -- [EXXEP] :: and when, but when, when; + adulans_A : A ; -- [XXXFO] :: flattering, adulatory; + adulater_Adv : Adv ; -- [DXXES] :: flatteringly, fawningly, ingratiatingly; + adulatio_F_N : N ; -- [XXXCO] :: flattery, adulation; prostrating oneself; fawning (dogs), (pigeon) courtship; + adulator_M_N : N ; -- [XXXCO] :: servile flatterer, sycophant; + adulatorie_Adv : Adv ; -- [XXXES] :: falteringly, fawningly, ingratiatingly; + adulatorius_A : A ; -- [XXXFO] :: flattering, adulatory; of/connected with flattery/adulation; + adulatrix_F_N : N ; -- [DXXES] :: flatterer (female); + adulescens_A : A ; -- [XXXCO] :: young, youthful; "minor" (in reference to the younger of two having same name); adulescens_F_N : N ; -- [XXXCO] :: young man, youth; youthful person; young woman/girl; - adulescens_M_N : N ; - adulescentia_F_N : N ; - adulescentior_V : V ; - adulescentula_F_N : N ; - adulescentulus_A : A ; - adulescentulus_M_N : N ; - adulescenturio_V : V ; - adulo_V2 : V2 ; - adulor_V : V ; - adulter_A : A ; - adulter_M_N : N ; - adultera_F_N : N ; - adulteratio_F_N : N ; - adulterator_M_N : N ; - adulteratus_A : A ; - adulterinus_A : A ; - adulteritas_F_N : N ; - adulterium_N_N : N ; - adultero_V : V ; - adulterus_A : A ; - adultrix_F_N : N ; - adultus_A : A ; - adultus_M_N : N ; - adumbratim_Adv : Adv ; - adumbratio_F_N : N ; - adumbratus_A : A ; - adumbro_V2 : V2 ; - adunatio_F_N : N ; - aduncitas_F_N : N ; - aduncus_A : A ; - aduno_V2 : V2 ; - adurgeo_V2 : V2 ; - aduro_V2 : V2 ; - adusque_Acc_Prep : Prep ; - adusque_Adv : Adv ; - adustio_F_N : N ; - adustum_N_N : N ; - adustus_A : A ; - advecticius_A : A ; - advectio_F_N : N ; - advectius_A : A ; - advecto_V2 : V2 ; - advector_M_N : N ; - advectus_A : A ; - advectus_M_N : N ; - adveho_V2 : V2 ; - advelitatio_F_N : N ; - advelo_V2 : V2 ; - advena_C_N : N ; - adveneror_V : V ; - advenientia_F_N : N ; - advenio_V : V ; - advententia_F_N : N ; - adventicius_A : A ; - adventitius_A : A ; - advento_V : V ; - adventor_M_N : N ; - adventoria_F_N : N ; - adventorius_A : A ; - adventus_M_N : N ; - advenus_A : A ; - adverbero_V2 : V2 ; - adverbialis_A : A ; - adverbialiter_Adv : Adv ; - adverbium_N_N : N ; - adverro_V2 : V2 ; - adversa_F_N : N ; - adversabilis_A : A ; - adversaria_F_N : N ; - adversarium_N_N : N ; - adversarius_A : A ; - adversarius_C_N : N ; - adversatio_F_N : N ; - adversativus_A : A ; - adversator_M_N : N ; - adversatrix_F_N : N ; - adverse_Adv : Adv ; - adversio_F_N : N ; - adversipes_F_N : N ; - adversitas_F_N : N ; - adversitor_M_N : N ; - adverso_V2 : V2 ; - adversor_V : V ; - adversum_Acc_Prep : Prep ; - adversum_Adv : Adv ; - adversum_N_N : N ; - adversus_A : A ; - adversus_Acc_Prep : Prep ; - adversus_Adv : Adv ; - adversus_M_N : N ; - advertentia_F_N : N ; - adverto_V2 : V2 ; - advesperasct_V0 : V ; - advigilo_V : V ; - advincula_F_N : N ; - advivo_V : V ; - advocamentum_N_N : N ; - advocata_F_N : N ; - advocatio_F_N : N ; - advocator_M_N : N ; - advocatus_M_N : N ; - advoco_V2 : V2 ; - advolatus_M_N : N ; - advolitans_A : A ; - advolo_V : V ; - advolvo_V2 : V2 ; - advorsa_F_N : N ; - advorsabilis_A : A ; - advorsaria_F_N : N ; - advorsarium_N_N : N ; - advorsarius_A : A ; - advorsarius_C_N : N ; - advorsator_M_N : N ; - advorsatrix_F_N : N ; - advorse_Adv : Adv ; - advorsitas_F_N : N ; - advorsitor_M_N : N ; - advorso_V2 : V2 ; - advorsor_V : V ; - advorsum_Acc_Prep : Prep ; - advorsum_Adv : Adv ; - advorsus_A : A ; - advorsus_Acc_Prep : Prep ; - advorsus_Adv : Adv ; - advorsus_M_N : N ; - advorto_V2 : V2 ; - adynamos_A : A ; - adytum_N_N : N ; - adzelor_V : V ; - aecclesia_F_N : N ; - aeclesia_F_N : N ; - aeclesiasticus_A : A ; - aecor_N_N : N ; - aecoreus_A : A ; - aecum_N_N : N ; - aecus_A : A ; - aedes_F_N : N ; - aedicula_F_N : N ; - aedifacio_V2 : V2 ; - aedifex_M_N : N ; - aedificans_M_N : N ; - aedificatio_F_N : N ; - aedificatiuncula_F_N : N ; - aedificator_M_N : N ; - aedificatoria_F_N : N ; - aedificatorius_A : A ; - aedificatus_A : A ; - aedificialis_A : A ; - aedificiolum_N_N : N ; - aedificium_N_N : N ; - aedifico_V : V ; - aedifio_V : V ; - aedilicius_A : A ; - aedilicius_M_N : N ; - aedilis_M_N : N ; - aedilitas_F_N : N ; - aedis_F_N : N ; - aeditimor_V : V ; - aeditimus_M_N : N ; - aeditua_F_N : N ; - aeditualis_A : A ; - aedituens_M_N : N ; - aeditumor_V : V ; - aeditumus_M_N : N ; - aedituo_V : V ; - aedituus_M_N : N ; - aedo_F_N : N ; - aedon_F_N : N ; - aedonius_A : A ; - aedus_M_N : N ; + adulescens_M_N : N ; -- [XXXCO] :: young man, youth; youthful person; young woman/girl; + adulescentia_F_N : N ; -- [XXXBO] :: youth, young manhood; characteristic of being young, youthfulness; the young; + adulescentior_V : V ; -- [XXXFO] :: behave in a youthful manner; + adulescentula_F_N : N ; -- [XXXCO] :: young woman; very young woman; "my child"; + adulescentulus_A : A ; -- [XXXCO] :: very youthful, quite young; + adulescentulus_M_N : N ; -- [XXXCO] :: young man; mere youth; + adulescenturio_V : V ; -- [XXXFO] :: want to behave in a youthful manner; + adulo_V2 : V2 ; -- [XXXDS] :: fawn upon (as a dog); flatter (in a servile manner), court; make obeisance (to); + adulor_V : V ; -- [XXXCO] :: fawn upon (as a dog); flatter (in a servile manner), court; make obeisance (to); + adulter_A : A ; -- [XXXCO] :: |forged/counterfeit; debased (coinage); [~ clavis => skeleton/false key]; + adulter_M_N : N ; -- [XXXCO] :: adulterer; illicit lover, paramour; offspring of unlawful love, bastard (eccl.); + adultera_F_N : N ; -- [XXXCO] :: adulteress; mistress; unchaste woman; + adulteratio_F_N : N ; -- [XXXNO] :: adulteration; corruption/debasement by spurious admixture/crossbreeding; + adulterator_M_N : N ; -- [XXXFO] :: one who counterfeits or debases (the coinage); + adulteratus_A : A ; -- [XXXEO] :: mixed, adulterated; produced by crossbreeding; of mixed decent/origin; + adulterinus_A : A ; -- [XXXCO] :: counterfeit, forged, false; impure, mixed, crossbred; adulterous, illicit; + adulteritas_F_N : N ; -- [XXXES] :: adultery; blending/mixing of different strains/ingredients; contamination; + adulterium_N_N : N ; -- [XXXBO] :: adultery; blending/mixing of different strains/ingredients; contamination; + adultero_V : V ; -- [XXXBO] :: commit adultery, defile (w/adultery); falsify, counterfeit, debase, corrupt; + adulterus_A : A ; -- [EXXEE] :: adulterous, unchaste; + adultrix_F_N : N ; -- [XXXES] :: adulteress; mistress; unchaste woman; + adultus_A : A ; -- [XXXBO] :: grown (up/fully), mature, ripe; adult; at peak/height/full strength; + adultus_M_N : N ; -- [FXXDE] :: adult; one who has reached legal maturity (e.g., age 18 or 21); + adumbratim_Adv : Adv ; -- [XXXCO] :: in shadowy form; + adumbratio_F_N : N ; -- [XXXEO] :: sketch, outline; sketching in light and shade; false show, pretense; + adumbratus_A : A ; -- [XXXCO] :: sketchy, shadowy, unsubstantial, obscure; outline; pretended, feigned, spurious; + adumbro_V2 : V2 ; -- [XXXCO] :: sketch out, silhouette, outline, represent; shade, screen, obscure; feign; + adunatio_F_N : N ; -- [DXXES] :: union, uniting, making into one; + aduncitas_F_N : N ; -- [XXXEO] :: hookedness, hooked shape; inward curvature; + aduncus_A : A ; -- [XXXCO] :: bent, curved, hooked, crooked; + aduno_V2 : V2 ; -- [DXXCS] :: unite, make one; + adurgeo_V2 : V2 ; -- [XXXEO] :: pursue; press hard, pursue closely; + aduro_V2 : V2 ; -- [XXXBO] :: scorch, singe; burn; consume in fire; + adusque_Acc_Prep : Prep ; -- [XXXCO] :: all the way/right up to, as far as, to the point of (space/time/number/degree); + adusque_Adv : Adv ; -- [XXXCO] :: wholly, completely; + adustio_F_N : N ; -- [XXXNO] :: kindling/burning; rubbing/galling (vines); inflammation; burn; sun/heatstroke; + adustum_N_N : N ; -- [XXXDO] :: burn; frostbite (w/nivibus); deserts/parched areas (pl.) (w/sole); + adustus_A : A ; -- [XXXCO] :: burned by the sun; torrid; browned/scorched/charred/burned; dusky/swarthy/dark; + advecticius_A : A ; -- [XXXFO] :: imported, foreign (merchandise/goods); + advectio_F_N : N ; -- [XXXNO] :: transportation (of merchandise/goods), carriage; + advectius_A : A ; -- [DXXES] :: imported, foreign (merchandise/goods); + advecto_V2 : V2 ; -- [XXXEO] :: import, bring (merchandise/goods) from abroad; + advector_M_N : N ; -- [XXXES] :: carrier, one who conveys/carries a thing to a place; importer; + advectus_A : A ; -- [XXXEO] :: imported, foreign, introduced from abroad; + advectus_M_N : N ; -- [XXXEO] :: transportation, conveyance (to a place); + adveho_V2 : V2 ; -- [XXXBO] :: carry, bring, convey (to); [advehor => arrive by travel, ride to]; + advelitatio_F_N : N ; -- [XXXFS] :: skirmish of words (?); + advelo_V2 : V2 ; -- [XXXFO] :: cover, veil; + advena_C_N : N ; -- [XXXBO] :: foreigner, immigrant, visitor from abroad; newcomer, interloper; migrant (bird); + adveneror_V : V ; -- [XXXEO] :: worship, adore; give honor to; + advenientia_F_N : N ; -- [XXXFO] :: arrival, approach; + advenio_V : V ; -- [XXXAO] :: come to, arrive; arrive at, reach, be brought; develop, set in, arise; + advententia_F_N : N ; -- [FXXFE] :: knowledge; warning; + adventicius_A : A ; -- [XXXBO] :: foreign, coming from abroad/without, external; unusual; accidental, casual; + adventitius_A : A ; -- [FXXES] :: foreign; arrived from afar; (=adventicius); + advento_V : V ; -- [XXXBO] :: approach, come to, draw near; arrive, "turn up"; come in (tide); approximate; + adventor_M_N : N ; -- [XXXCO] :: visitor, newcomer, stranger; customer, incoming tenant; + adventoria_F_N : N ; -- [XXXES] :: banquet given on one's arrival; + adventorius_A : A ; -- [XXXFS] :: pertaining to an arrival/guest; + adventus_M_N : N ; -- [XXXAO] :: arrival, approach; visit, appearance, advent; ripening; invasion, incursion; + advenus_A : A ; -- [XXXCS] :: foreign, alien; migrant; recently arrived; unskilled, inexperienced, ignorant; + adverbero_V2 : V2 ; -- [XXXFO] :: beat upon; strike against; + adverbialis_A : A ; -- [DGXES] :: adverbial, pertaining to an adverb; derived from adverb(s); + adverbialiter_Adv : Adv ; -- [DGXES] :: adverbially, in the manner of an adverb; + adverbium_N_N : N ; -- [XGXDO] :: adverb; + adverro_V2 : V2 ; -- [XXXFO] :: cause to sweep over; + adversa_F_N : N ; -- [XXXFO] :: enemy/adversary/opponent (female); + adversabilis_A : A ; -- [XXXFO] :: truculent, prone to opposition; + adversaria_F_N : N ; -- [XXXEO] :: female enemy, adversary, opponent, antagonist; + adversarium_N_N : N ; -- [XXXEO] :: temporary memorandum/account/day book (pl.); opponent's arguments/assertions; + adversarius_A : A ; -- [XXXCO] :: opposed (to), hostile, inimical, adverse; harmful, injurious, prejudicial; + adversarius_C_N : N ; -- [XXXBO] :: enemy, adversary, antagonist, opponent, rival, foe; of an opposing party; + adversatio_F_N : N ; -- [DXXES] :: opposition, opposing; + adversativus_A : A ; -- [DGXES] :: adversative; (conjunctions like although, even if, yet, nevertheless); + adversator_M_N : N ; -- [XXXFO] :: antagonist, opponent; + adversatrix_F_N : N ; -- [XXXEO] :: female antagonist/opponent/enemy; + adverse_Adv : Adv ; -- [XXXFO] :: in a self contradictory manner, inconsistently; + adversio_F_N : N ; -- [DXXES] :: turning/directing (one thing towards another); + adversipes_F_N : N ; -- [DXXFS] :: antipodes (pl.); + adversitas_F_N : N ; -- [FXXEZ] :: adversity; power of counteracting, efficacy as an antidote (Pliny); + adversitor_M_N : N ; -- [XXXFS] :: one who goes to meet another; slave who went to meet/accompany master home; + adverso_V2 : V2 ; -- [XXXFO] :: apply (the mind), direct (the attention); + adversor_V : V ; -- [XXXBO] :: be against (w/DAT), oppose, withstand; + adversum_Acc_Prep : Prep ; -- [XXXAO] :: facing, opposite, against, towards; contrary to; face to face, in presence of; + adversum_Adv : Adv ; -- [XXXCO] :: opposite, against, in opposite direction; in opposition; (w/ire go to meet); + adversum_N_N : N ; -- [XXXBO] :: direction/point opposite/facing; uphill slope/direction; obstacle, trouble; + adversus_A : A ; -- [XXXAO] :: opposite, directly facing, ranged against; adverse, evil, hostile; unfavorable; + adversus_Acc_Prep : Prep ; -- [XXXAO] :: facing, opposite, against, towards; contrary to; face to face, in presence of; + adversus_Adv : Adv ; -- [XXXCO] :: opposite, against, in opposite direction; in opposition; (w/ire go to meet); + adversus_M_N : N ; -- [XXXCO] :: person/foe opposite/directly facing (w/hostile intent); political opponent; + advertentia_F_N : N ; -- [FXXFE] :: knowledge; awareness, attending, noticing; + adverto_V2 : V2 ; -- [XXXAO] :: turn/face to/towards; direct/draw one's attention to; steer/pilot (ship); + advesperasct_V0 : V ; -- [XXXCO] :: evening is coming on, it draws toward evening; it is growing dark; + advigilo_V : V ; -- [XXXCO] :: watch by/over; take care; be on watch, be vigilant; + advincula_F_N : N ; -- [FEXFM] :: chain (of St. Peter); + advivo_V : V ; -- [XXXDO] :: live with (w/cum); survive, be alive; + advocamentum_N_N : N ; -- [XXXFS] :: legal support/advisors; delay, adjournment, postponement; pleading in courts; + advocata_F_N : N ; -- [XXXEO] :: helper (female), supporter, counselor; + advocatio_F_N : N ; -- [XXXCO] :: legal support/advisors; delay, adjournment, postponement; pleading in courts; + advocator_M_N : N ; -- [DEXES] :: advocate; + advocatus_M_N : N ; -- [XXXBO] :: counselor, advocate, professional pleader; witness, supporter, mediator; + advoco_V2 : V2 ; -- [XXXAO] :: call, summon, invite, convoke, call for; call in as counsel; invoke the Gods; + advolatus_M_N : N ; -- [XXXFO] :: flying towards/against; + advolitans_A : A ; -- [XXXES] :: flying often to; fluttering about; + advolo_V : V ; -- [XXXBO] :: fly to, dash to (w/DAT or ad + ACC), hasten towards; + advolvo_V2 : V2 ; -- [XXXCO] :: roll to/towards; fall on knees (genibus advolvor), grovel, prostrate oneself; + advorsa_F_N : N ; -- [BXXFO] :: enemy/adversary/opponent (female); + advorsabilis_A : A ; -- [BXXFO] :: truculent, prone to opposition; + advorsaria_F_N : N ; -- [BXXEX] :: female enemy, adversary, opponent; + advorsarium_N_N : N ; -- [BXXEX] :: temporary memorandum book (pl.), the opponent's arguments; + advorsarius_A : A ; -- [BXXDX] :: opposed (to), hostile, inimical, adverse; harmful, injurious, prejudicial; + advorsarius_C_N : N ; -- [BXXBX] :: enemy, adversary, antagonist, opponent, rival, foe; of an opposing party; + advorsator_M_N : N ; -- [BXXFX] :: antagonist, opponent; + advorsatrix_F_N : N ; -- [BXXEX] :: female antagonist/opponent/enemy; + advorse_Adv : Adv ; -- [BXXFO] :: in a self contradictory manner, inconsistently; + advorsitas_F_N : N ; -- [BXXNO] :: power of counteracting, efficacy as an antidote; + advorsitor_M_N : N ; -- [BXXFS] :: one who goes to meet another; slave who went to meet/accompany master home; + advorso_V2 : V2 ; -- [BXXEO] :: apply (the mind), direct (the attention); + advorsor_V : V ; -- [BXXBX] :: be against (w/DAT), oppose, withstand; + advorsum_Acc_Prep : Prep ; -- [BXXAX] :: facing, opposite, against, towards; contrary to; face to face, in presence of; + advorsum_Adv : Adv ; -- [BXXDX] :: opposite, against, in opposite direction; in opposition; (w/ire go to meet); + advorsus_A : A ; -- [BXXAX] :: opposite, directly facing, ranged against; adverse, evil, hostile; unfavorable; + advorsus_Acc_Prep : Prep ; -- [BXXAX] :: facing, opposite, against, towards; contrary to; face to face, in presence of; + advorsus_Adv : Adv ; -- [BXXDX] :: opposite, against, in opposite direction; in opposition; (w/ire go to meet); + advorsus_M_N : N ; -- [BXXCO] :: person/foe opposite/directly facing (w/hostile intent); political opponent; + advorto_V2 : V2 ; -- [BXXDX] :: turn/face to/towards; direct/draw one's attention to; steer/pilot (ship); + adynamos_A : A ; -- [XXXNO] :: weakened, diluted (like wine); + adytum_N_N : N ; -- [XXXCO] :: innermost part of a temple, sanctuary, shrine; innermost recesses/chamber; + adzelor_V : V ; -- [DEXFS] :: be zealous against one; be angry with; + aecclesia_F_N : N ; -- [FEXEZ] :: church; assembly, meeting of the assembly (Greek); the (Universal) Church (Dif); + aeclesia_F_N : N ; -- [FEXEX] :: church; assembly, meeting of the assembly (Greek); the (Universal) Church (Dif); + aeclesiasticus_A : A ; -- [FEXFM] :: ecclesiastical; spiritual; (=ecclesiasticus); + aecor_N_N : N ; -- [XXXBO] :: level/smooth surface, plain; surface of the sea; sea, ocean; + aecoreus_A : A ; -- [XXXCO] :: of/connected with the sea, situated near/bordering on/surrounded by the sea; + aecum_N_N : N ; -- [XXXBO] :: level ground; equal footing/terms; what is right/fair/equitable, equity; + aecus_A : A ; -- [XXXAO] :: level, even, equal, like; just, kind, impartial, fair; patient, contented; + aedes_F_N : N ; -- [XXXBO] :: temple, shrine; tomb; apartment, room; house (pl.), abode, dwelling; household; + aedicula_F_N : N ; -- [XXXCO] :: small room/house/building/shrine; chapel, tomb, sepulcher; niche, closet; + aedifacio_V2 : V2 ; -- [DXXES] :: build, erect, construct, make; create; establish; + aedifex_M_N : N ; -- [DTXFS] :: builder, contractor, one who has buildings erected; architect, maker, creator; + aedificans_M_N : N ; -- [FXXEE] :: builder; + aedificatio_F_N : N ; -- [FGXCB] :: |edification, explanation; building up (argument); + aedificatiuncula_F_N : N ; -- [XTXFO] :: little building; construction; + aedificator_M_N : N ; -- [XTXCO] :: builder, contractor, one who has buildings erected; architect, maker, creator; + aedificatoria_F_N : N ; -- [DTXES] :: architecture; + aedificatorius_A : A ; -- [DTXES] :: pertaining to building/construction; + aedificatus_A : A ; -- [XXXDE] :: built, erected, constructed, made; created; established; improved; + aedificialis_A : A ; -- [DTXES] :: pertaining to a building; + aedificiolum_N_N : N ; -- [XTXIO] :: building; structure; + aedificium_N_N : N ; -- [XXXCO] :: building; edifice, structure; + aedifico_V : V ; -- [XXXBO] :: build, erect, construct, make; create; establish; improve; edify; + aedifio_V : V ; -- [DXXES] :: be build/erected/constructed/made/created/established; (aedifacio PASS); + aedilicius_A : A ; -- [XLXCO] :: of an aedile (magistrate - police, fire, market); of aedile rank/ex-aedile; + aedilicius_M_N : N ; -- [XLXCO] :: ex-aedile (magistrate - police, fire, market); one who has been an aedile; + aedilis_M_N : N ; -- [XLXBO] :: aedile - commissioner (magistrate) of police/fire/markets/games; sacristan; + aedilitas_F_N : N ; -- [XLXCO] :: aedileship, the office of an aedile; the tenure of the aedileship; + aedis_F_N : N ; -- [XEXBO] :: temple, shrine; tomb; apartment, room; house (pl.), abode/dwelling; household; + aeditimor_V : V ; -- [BEXFO] :: act as sacristan, be in charge/take care of temple; + aeditimus_M_N : N ; -- [BEXCO] :: sacristan, one who has charge of a temple; custodian of a temple; + aeditua_F_N : N ; -- [XEXIO] :: female sacristan, one who has charge of a temple; custodian of a temple; + aeditualis_A : A ; -- [DEXFS] :: pertaining to a temple-keeper/sacristan; + aedituens_M_N : N ; -- [DEXFS] :: temple-keeper/sacristan; + aeditumor_V : V ; -- [XEXFO] :: act as sacristan, be in charge/take care of temple; + aeditumus_M_N : N ; -- [BEXDX] :: sacristan, one who has charge of a temple; custodian of a temple; + aedituo_V : V ; -- [XEXIO] :: act as sacristan, be in charge/take care of temple; + aedituus_M_N : N ; -- [XEXCO] :: sacristan, one who has charge of a temple; custodian of a temple; priest; + aedo_F_N : N ; -- [XAXEO] :: nightingale; + aedon_F_N : N ; -- [XAXEO] :: nightingale; + aedonius_A : A ; -- [XAXFO] :: of the nightingale; + aedus_M_N : N ; -- [XAXFO] :: kid, young goat; two stars in constellation Auriga (Charioteer), "The Kid"; 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 ; - aegilopa_F_N : N ; - aegilopium_N_N : N ; - aegilops_F_N : N ; - aegis_F_N : N ; - aegisonus_A : A ; - aegithus_M_N : N ; - aegocephalus_M_N : N ; + aeer_M_N : N ; -- [XXXEZ] :: air(one of 4 elements); atmosphere, sky; cloud, mist, weather; breeze; odor; + aeger_A : A ; -- [XXXAO] :: sick/ill, infirm; unsound, injured; painful, grievous; corrupt; sad/sorrowful; + aeger_M_N : N ; -- [XXXCO] :: sick person, invalid, patient; + aegilopa_F_N : N ; -- [XXXFS] :: name of some plants (turkey oak, grass); ulcer of the eye, lachrymal fistula; + aegilopium_N_N : N ; -- [XXXNO] :: ulcer of the eye, lachrymal fistula; + aegilops_F_N : N ; -- [XXXDO] :: name of some plants (turkey oak, grass); ulcer of the eye, lachrymal fistula; + aegis_F_N : N ; -- [XXXCO] :: aegis (Minerva's shield); shield, defense; wood nearest pith, heartwood; + aegisonus_A : A ; -- [XXXFO] :: sounding with the aegis; + aegithus_M_N : N ; -- [XAXNO] :: small bird, blue tit; species of hawk; + aegocephalus_M_N : N ; -- [XAXNO] :: species of bird (horned owl?); 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 ; - aegonychos_F_N : N ; - aegophthalmos_M_N : N ; - aegre_Adv : Adv ; - aegreo_V : V ; - aegresco_V : V ; - aegrimonia_F_N : N ; - aegritiudo_F_N : N ; - aegritudo_F_N : N ; - aegror_M_N : N ; - aegrotas_F_N : N ; - aegrotaticius_A : A ; - aegrotatio_F_N : N ; - aegrotitas_F_N : N ; - aegroto_V : V ; - aegrotus_A : A ; - aegrotus_M_N : N ; - aegrum_N_N : N ; - aegyptilla_F_N : N ; - aelinon_Interj : Interj ; - aelinos_M_N : N ; - aelurus_M_N : N ; - aemula_F_N : N ; - aemulanter_Adv : Adv ; - aemulatio_F_N : N ; - aemulator_M_N : N ; - aemulatrix_F_N : N ; - aemulatus_M_N : N ; - aemulo_V2 : V2 ; - aemulor_V : V ; - aemulus_A : A ; - aemulus_M_N : N ; - aena_F_N : N ; - aenator_M_N : N ; - aeneator_M_N : N ; - aeneolus_A : A ; - aeneum_N_N : N ; - aeneus_A : A ; - aeniator_M_N : N ; - aenigma_N_N : N ; - aenigmaticus_A : A ; - aenigmatista_M_N : N ; - aeniolus_A : A ; - aenipes_A : A ; - aenitologium_N_N : N ; - aenulum_N_N : N ; - aenum_N_N : N ; - aenus_A : A ; - aeolipila_F_N : N ; - aeon_M_N : N ; - aequabilis_A : A ; - aequabilitas_F_N : N ; - aequabiliter_Adv : Adv ; - aequaevus_A : A ; - aequalis_A : A ; + aegoceras_2_N : N ; -- [XAXNS] :: fenugreek, Greek hay; (flour from seeds, herb medicine, pickled as a dainty); + aegoceros_M_N : N ; -- [XPXES] :: wild goat (poet. for sign of zodiac - Capricorn); + aegolethron_N_N : N ; -- [XAXNO] :: plant supposed to be injurious to goats (Azalea pontica?); goat's bane; + aegolios_M_N : N ; -- [XAXNO] :: species of owl; + aegonychos_F_N : N ; -- [XAXNS] :: plant, lithospermon; (goat's hoof); + aegophthalmos_M_N : N ; -- [XXXNO] :: precious stone; + aegre_Adv : Adv ; -- [XXXBO] :: scarcely, with difficulty, painfully, hardly; reluctantly, uncomfortably; + aegreo_V : V ; -- [XBXEO] :: be sick/ill; + aegresco_V : V ; -- [XBXCO] :: become sick, grow worse; suffer mental/emotional distress, grieve; + aegrimonia_F_N : N ; -- [XXXDO] :: sorrow, anxiety, melancholy, grief, mental distress/anguish; + aegritiudo_F_N : N ; -- [FBXDE] :: illness, sickness; + aegritudo_F_N : N ; -- [XXXCO] :: sickness, disease, grief, sorrow; affliction, anxiety; melancholy; + aegror_M_N : N ; -- [XXXFO] :: sickness, disease; + aegrotas_F_N : N ; -- [EBXEP] :: illness, sickness; + aegrotaticius_A : A ; -- [DBXFS] :: that is often ill; sickly; + aegrotatio_F_N : N ; -- [XBXCO] :: sickness, disease; morbid desire/passion, unhealthy moral condition; + aegrotitas_F_N : N ; -- [EBXFP] :: illness, sickness; + aegroto_V : V ; -- [XXXCO] :: be sick; be distressed/mentally/morally ill, be afflicted, languish, grieve; + aegrotus_A : A ; -- [XXXCO] :: sick, diseased; love-sick, pining; + aegrotus_M_N : N ; -- [XXXDO] :: sick/diseased person, invalid, patient; + aegrum_N_N : N ; -- [XXXDO] :: diseased part of the body; diseased state; grief, feeling of distress; pain; + aegyptilla_F_N : N ; -- [XXENO] :: precious stone found in Egypt; (saronyx and nicolo); + aelinon_Interj : Interj ; -- [XXXFO] :: exclamation of sorrow; "alas for Linus"; + aelinos_M_N : N ; -- [XXXFS] :: dirge, song of lament; + aelurus_M_N : N ; -- [XAXEO] :: cat; + aemula_F_N : N ; -- [XXXCO] :: rival (female); woman who strives to equal/exceed; rival in love; rival city; + aemulanter_Adv : Adv ; -- [DXXFS] :: emulously; enviously, jealously; + aemulatio_F_N : N ; -- [XXXBO] :: rivalry, ambition; unfriendly rivalry; (envious) emulation, imitation; + aemulator_M_N : N ; -- [XXXCO] :: imitator, rival; + aemulatrix_F_N : N ; -- [DXXES] :: rival (female); woman who strives to equal/exceed; emulator (female); + aemulatus_M_N : N ; -- [XXXFO] :: emulation, envy, rivalry; + aemulo_V2 : V2 ; -- [XXXCS] :: ape, imitate, emulate; be envious, jealous of, vie with a rival; copy (book); + aemulor_V : V ; -- [XXXBO] :: ape, imitate, emulate; be envious, jealous of, vie with a rival; copy (book); + aemulus_A : A ; -- [XXXBO] :: envious, jealous, grudging, (things) comparable/equal (with/to); + aemulus_M_N : N ; -- [XXXCO] :: rival, competitor, love rival; diligent imitator/follower; equal/peer; + aena_F_N : N ; -- [XXXNO] :: card/comb used in treating of cloth/fibers; + aenator_M_N : N ; -- [XXXDO] :: trumpeter; + aeneator_M_N : N ; -- [XXXDO] :: trumpeter; + aeneolus_A : A ; -- [XXXEO] :: bronze, made of bronze; + aeneum_N_N : N ; -- [XXXCO] :: vessel made of copper/bronze; brazen vessel; kettle, pot, cauldron; + aeneus_A : A ; -- [XXXCO] :: copper, of copper (alloy); bronze, made of bronze, bronze-colored; brazen; + aeniator_M_N : N ; -- [XXXDO] :: trumpeter; + aenigma_N_N : N ; -- [XXXCO] :: puzzle, enigma, riddle, obscure expression/saying; + aenigmaticus_A : A ; -- [DXXES] :: enigmatic, like an enigma; obscure; puzzling; + aenigmatista_M_N : N ; -- [DXXFS] :: enigmatist; one that proposes/speaks in riddles; + aeniolus_A : A ; -- [EXXEW] :: bronze, made of bronze; + aenipes_A : A ; -- [XXXFS] :: bronze-footed, that has feet of bronze; + aenitologium_N_N : N ; -- [DPXFS] :: dactylic verse with an iambic penthemimeris; + aenulum_N_N : N ; -- [XXXES] :: small bronze vessel; + aenum_N_N : N ; -- [XXXCO] :: vessel made of copper/bronze; brazen vessel; kettle, pot, cauldron; + aenus_A : A ; -- [XXXCO] :: copper, of copper (alloy); bronze, made of bronze, bronze-colored; brazen; + aeolipila_F_N : N ; -- [XSXFS] :: instruments/vessels (pl.) for investigating the nature of the wind; + aeon_M_N : N ; -- [DXXFS] :: age; eternity; the Thirty Aeons (gods); + aequabilis_A : A ; -- [XXXBO] :: equal, alike, uniform, steady; unruffled; equal proportion, fair, just; + aequabilitas_F_N : N ; -- [XXXCO] :: equality, fairness; evenness, uniformity; analogy (gram.), correspondence; + aequabiliter_Adv : Adv ; -- [XXXCO] :: uniformly, equally; in equal proportions/a regular manner; smoothly; justly; + aequaevus_A : A ; -- [XXXCO] :: of the same age; contemporary; + aequalis_A : A ; -- [XXXAO] :: equal, similar; uniform, level, flat; of the same age/generation/duration; 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 ; - aequaliter_Adv : Adv ; - aequamen_N_N : N ; - aequamentum_N_N : N ; - aequanimis_A : A ; - aequanimitas_F_N : N ; - aequanimiter_Adv : Adv ; - aequanimus_A : A ; - aequatio_F_N : N ; - aequationum_N_N : N ; - aequator_M_N : N ; - aeque_Adv : Adv ; - aequicrurius_A : A ; - aequidiale_N_N : N ; - aequidianus_A : A ; - aequidicus_M_N : N ; - aequidistans_A : A ; - aequidistanter_Adv : Adv ; - aequidistantia_F_N : N ; - aequidisto_V : V ; - aequiformis_A : A ; - aequilanx_A : A ; - aequilatatio_F_N : N ; - aequilateralis_A : A ; - aequilaterus_A : A ; - aequilatus_A : A ; - aequilavium_N_N : N ; - aequilibratus_A : A ; - aequilibris_A : A ; - aequilibritas_F_N : N ; - aequilibrium_N_N : N ; - aequilibro_V2 : V2 ; - aequiliter_Adv : Adv ; - aequimanus_A : A ; - aequinoctiale_N_N : N ; - aequinoctialis_A : A ; - aequinoctium_N_N : N ; - aequipar_A : A ; - aequiparabilis_A : A ; - aequiparantia_F_N : N ; - aequiparatio_F_N : N ; - aequiparo_V2 : V2 ; - aequipedus_A : A ; - aequiperabilis_A : A ; - aequiperantia_F_N : N ; - aequiperatio_F_N : N ; - aequipero_V2 : V2 ; - aequipes_A : A ; - aequipollens_A : A ; - aequipondium_N_N : N ; - aequisonantius_A : A ; - aequitas_F_N : N ; - aequiter_Adv : Adv ; - aequiternus_A : A ; - aequivalens_M_N : N ; - aequivaleo_V2 : V2 ; - aequivocus_A : A ; - aequo_V2 : V2 ; - aequor_N_N : N ; - aequoreus_A : A ; - aequum_N_N : N ; - aequus_A : A ; + aequalis_M_N : N ; -- [XXXCO] :: comrade; person of one's age/rank/ability, contemporary; equivalent; + aequalitarismus_M_N : N ; -- [GXXEK] :: egalitarianism; + aequalitas_F_N : N ; -- [XXXBO] :: evenness; equality (of age/status/merit/distribution), uniformity, symmetry; + aequaliter_Adv : Adv ; -- [XXXBO] :: evenly, alike, uniformly; equally, to an equal measure/extent; symmetrically; + aequamen_N_N : N ; -- [XXXFO] :: instrument for leveling; + aequamentum_N_N : N ; -- [DXXFS] :: equaling, requiting; + aequanimis_A : A ; -- [XXXFS] :: kind, mild, calm; + aequanimitas_F_N : N ; -- [XXXDO] :: calmness of mind, patience, tranquility, equanimity; goodwill, favor; + aequanimiter_Adv : Adv ; -- [DXXFS] :: calmly; with equanimity; + aequanimus_A : A ; -- [XXXIO] :: mentally calm, composed, tranquil; + aequatio_F_N : N ; -- [XXXEO] :: equal division/distribution; equalizing, equality; + aequationum_N_N : N ; -- [GSXEZ] :: equation, (mathematical relation); equality; + aequator_M_N : N ; -- [XXXIO] :: one who equalizes; [aequator monetae => assayer]; + aeque_Adv : Adv ; -- [XXXAO] :: equally, justly, fairly; in same/like manner/degree, just as; likewise, also; + aequicrurius_A : A ; -- [DSXFS] :: of equal legs; isosceles (triangle); + aequidiale_N_N : N ; -- [BSXFS] :: equinox; + aequidianus_A : A ; -- [XXXFO] :: equinoctial, at the time of the equinox; + aequidicus_M_N : N ; -- [DPXES] :: verses (pl.) containing corresponding words or expressions; + aequidistans_A : A ; -- [XXXFO] :: equidistant; parallel; + aequidistanter_Adv : Adv ; -- [GXXEK] :: equidistantly; in the same way; + aequidistantia_F_N : N ; -- [GXXEK] :: parallelism; + aequidisto_V : V ; -- [GXXEK] :: be at equal distance; + aequiformis_A : A ; -- [DPXFS] :: uniform (connected words); + aequilanx_A : A ; -- [DXXFS] :: with equal scale; of equal weight; + aequilatatio_F_N : N ; -- [XXXFO] :: area of uniform width, space between parallel lines; + aequilateralis_A : A ; -- [DSXFS] :: equilateral, equal sides; + aequilaterus_A : A ; -- [DSXFS] :: equilateral, equal sides; + aequilatus_A : A ; -- [ESXEP] :: equilateral, with equal sides; + aequilavium_N_N : N ; -- [XXXFS] :: half, a half of a whole; (wool when half the weight remains after washing); + aequilibratus_A : A ; -- [DXXFS] :: level, on a level; horizontal; in perfect equilibrium (L+S); + aequilibris_A : A ; -- [XXXFO] :: level, on a level; horizontal; in perfect equilibrium (L+S); + aequilibritas_F_N : N ; -- [XXXFO] :: equal proportion, equilibrium; + aequilibrium_N_N : N ; -- [XXXEO] :: state of equilibrium; reciprocity, equivalence; level/horizontal position (L+S); + aequilibro_V2 : V2 ; -- [XXXFO] :: keep in a state of equilibrium/balance; + aequiliter_Adv : Adv ; -- [FXXEE] :: equally, evenly, uniformly; + aequimanus_A : A ; -- [DXXES] :: ambidextrous, can use both hands equally; equal in two pursuits/departments; + aequinoctiale_N_N : N ; -- [XSXFS] :: equinox; + aequinoctialis_A : A ; -- [XSXCO] :: equinoctial, of/connected with the equinox; [~ circulus => celestial equator]; + aequinoctium_N_N : N ; -- [XSXCO] :: equinox; + aequipar_A : A ; -- [XXXFO] :: equal; exactly/perfectly alike; + aequiparabilis_A : A ; -- [XXXEO] :: comparable, that may be compared/equated; + aequiparantia_F_N : N ; -- [DXXFS] :: comparison; + aequiparatio_F_N : N ; -- [XXXFS] :: comparable qualities/quantities; equality of status/strength; comparison; + aequiparo_V2 : V2 ; -- [XXXCO] :: become/put on a equal/level with/to, rival, equal; equalize; compare, liken; + aequipedus_A : A ; -- [DSXES] :: isosceles (triangle); having equal feet; + aequiperabilis_A : A ; -- [XXXEO] :: comparable, that may be compared/equated; + aequiperantia_F_N : N ; -- [DXXES] :: comparison; + aequiperatio_F_N : N ; -- [XXXFO] :: comparable qualities/quantities; equality of status/strength; comparison; + aequipero_V2 : V2 ; -- [XXXCO] :: become/put on a equal/level with/to, rival, equal; equalize; compare, liken; + aequipes_A : A ; -- [DSXES] :: isosceles (triangle); having equal feet; + aequipollens_A : A ; -- [XGXES] :: equivalent, of equal value/significance; + aequipondium_N_N : N ; -- [XXXFO] :: equal/counterbalancing weight; + aequisonantius_A : A ; -- [FDXEZ] :: equal-sounding; + aequitas_F_N : N ; -- [XXXBO] :: justice, equity, fairness, impartiality; symmetry, conformity; evenness; + aequiter_Adv : Adv ; -- [XXXEO] :: in equal proportions, evenly, fairly; + aequiternus_A : A ; -- [DEXES] :: equally eternal, coeternal; + aequivalens_M_N : N ; -- [FXXEE] :: equivalent, of equal value or significance; + aequivaleo_V2 : V2 ; -- [XXXFS] :: have equal power, be equivalent; + aequivocus_A : A ; -- [XXXES] :: equivocal, ambiguous; of like significations; + aequo_V2 : V2 ; -- [XXXAO] :: level, make even/straight; equal; compare; reach as high or deep as; + aequor_N_N : N ; -- [XXXBO] :: level/smooth surface, plain; surface of the sea; sea, ocean; + aequoreus_A : A ; -- [XXXCO] :: of/connected with the sea, situated near/bordering on/surrounded by the sea; + aequum_N_N : N ; -- [XXXBO] :: level ground; equal footing/terms; what is right/fair/equitable, equity; + aequus_A : A ; -- [XXXAO] :: level, even, equal, like; just, kind, impartial, fair; patient, contented; 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 ; - aeramen_N_N : N ; - aeramentum_N_N : N ; - aeraria_F_N : N ; - aerarium_N_N : N ; - aerarius_A : A ; - aerarius_M_N : N ; - aeratus_A : A ; - aercus_A : A ; - aereus_A : A ; - aereus_M_N : N ; - aericrepitans_A : A ; - aerifer_A : A ; - aerifice_Adv : Adv ; - aerinavigatio_F_N : N ; - aerinavis_F_N : N ; - aerinus_A : A ; - aeripes_A : A ; - aeriportus_M_N : N ; - aerisonus_A : A ; - aerius_A : A ; - aerizusa_F_N : N ; - aero_M_N : N ; - aerodromus_M_N : N ; - aerodynamicus_A : A ; - aeroides_A : A ; - aeroides_M_N : N ; - aerolithus_M_N : N ; - aeromantia_F_N : N ; - aeronauticus_A : A ; - aeronauticus_M_N : N ; + aer_M_N : N ; -- [XXXCO] :: air (one of 4 elements); atmosphere, sky; cloud, mist, weather; breeze; odor; + aera_F_N : N ; -- [DXXES] :: |parameter from which a calculation is made; item of account; era/epoch; + aeracius_A : A ; -- [XXXFO] :: of copper/bronze; + aeramen_N_N : N ; -- [DXXES] :: copper, bronze (late form for aes); + aeramentum_N_N : N ; -- [XXXDO] :: prepared copper/bronze; a strip of copper/bronze; copper/bronze vessels (pl.); + aeraria_F_N : N ; -- [XXXEO] :: copper mine; copper refinery/works; + aerarium_N_N : N ; -- [XXXBO] :: treasury, its funds; part of Temple of Saturn in Rome holding public treasury; + aerarius_A : A ; -- [XXXCO] :: of/concerned with copper/bronze/brass; of coinage/money/treasury; penny-ante; + aerarius_M_N : N ; -- [XXXCO] :: lowest class citizen, pays poll tax but cannot vote/hold office; coppersmith; + aeratus_A : A ; -- [XXXCO] :: covered/decorated with/made of brass/bronze; with bronze fittings (ship); + aercus_A : A ; -- [FXXEE] :: copper-; of copper/bronze/brass; + aereus_A : A ; -- [XXXDO] :: |of/produced in/existing in/flying in air, airborne/aerial; towering/airy; blue; + aereus_M_N : N ; -- [XXXFO] :: copper coin; + aericrepitans_A : A ; -- [XXXFO] :: clanging/sounding with bronze/brass; + aerifer_A : A ; -- [XXXFO] :: carrying/bearing bronze (i.e., cymbals of the attendants of Bacchus); + aerifice_Adv : Adv ; -- [XXXFO] :: with art/skill of the bronze worker; + aerinavigatio_F_N : N ; -- [HXXEK] :: aviation; + aerinavis_F_N : N ; -- [HXXEK] :: dirigible; + aerinus_A : A ; -- [XXXNO] :: connected with/of darnel (weed found with wheat); of air, aerial; + aeripes_A : A ; -- [XXXDO] :: brazen-footed; having/with feet of bronze; + aeriportus_M_N : N ; -- [HXXEK] :: airport; + aerisonus_A : A ; -- [XXXDO] :: sounding with bronze/brass (instruments); + aerius_A : A ; -- [XXXBO] :: of/produced in/existing in/flying in air, airborne/aerial; towering, airy; blue; + aerizusa_F_N : N ; -- [XXXNO] :: kind of jasper; + aero_M_N : N ; -- [XXXEO] :: kind of basket made with plaited reeds; hamper; + aerodromus_M_N : N ; -- [HXXEK] :: airfield; + aerodynamicus_A : A ; -- [HXXEK] :: aerodynamic; + aeroides_A : A ; -- [XXXNO] :: cloudy; sky-blue (L+S); [beryllus aeroides => sapphire]; + aeroides_M_N : N ; -- [XXXNS] :: sky-blue; the color of air; (may only be ADJ); + aerolithus_M_N : N ; -- [HXXEK] :: aerolithe; + aeromantia_F_N : N ; -- [DEXFS] :: aeromancy, divination from the state of the air; + aeronauticus_A : A ; -- [HXXEK] :: aeronautic; + aeronauticus_M_N : N ; -- [HXXEK] :: aircrew; aeronavigans_F_N : N ; -- [HXXFE] :: airline personnel; - aeronavigans_M_N : N ; - aerophobus_M_N : N ; - aeroplaniga_M_N : N ; - aeroplanigera_F_N : N ; - aeroplanum_N_N : N ; - aerosolum_N_N : N ; - aerostatum_N_N : N ; - aerosus_A : A ; - aeruca_F_N : N ; - aerugineus_A : A ; - aerugino_V : V ; - aeruginosus_A : A ; - aerugo_F_N : N ; - aerumna_F_N : N ; - aerumnabilis_A : A ; - aerumnosus_A : A ; - aerumnula_F_N : N ; - aeruscator_M_N : N ; - aerusco_V : V ; - aes_N_N : N ; - aesalon_M_N : N ; - aeschrologia_F_N : N ; - aeschynomene_F_N : N ; - aesculanus_A : A ; - aesculetum_N_N : N ; - aesculeus_A : A ; - aesculinus_A : A ; - aesculnius_A : A ; - aesculus_F_N : N ; - aesnescia_F_N : N ; - aessomus_A : A ; - aestas_F_N : N ; - aesthetica_F_N : N ; - aestifer_A : A ; - aestimabilis_A : A ; - aestimatio_F_N : N ; - aestimator_M_N : N ; - aestimatorius_A : A ; - aestimatus_A : A ; - aestimatus_M_N : N ; - aestimia_F_N : N ; - aestimium_N_N : N ; - aestimo_V2 : V2 ; - aestivalis_A : A ; - aestive_Adv : Adv ; - aestivo_V : V ; - aestivum_N_N : N ; - aestivus_A : A ; - aestuabundus_A : A ; - aestuarium_N_N : N ; - aestuarius_A : A ; - aestumatio_F_N : N ; - aestumo_V2 : V2 ; - aestuo_V : V ; - aestuose_Adv : Adv ; - aestuosus_A : A ; - aestus_M_N : N ; - aesum_N_N : N ; - aetas_F_N : N ; - aetatula_F_N : N ; - aeternabilis_A : A ; - aeternalis_A : A ; - aeternaliter_Adv : Adv ; - aeternitas_F_N : N ; - aeterno_Adv : Adv ; - aeterno_V2 : V2 ; - aeternum_Adv : Adv ; - aeternus_A : A ; - aethalus_M_N : N ; - aethanolum_N_N : N ; - aether_M_N : N ; - aethereus_A : A ; - aetherius_A : A ; - aethiopis_F_N : N ; - aethon_A : A ; - aethra_F_N : N ; - aethylicus_A : A ; - aetiologia_F_N : N ; - aetites_F_N : N ; - aetitis_F_N : N ; - aetoma_F_N : N ; - aetoma_N_N : N ; - aevitas_F_N : N ; - aeviternus_A : A ; - aevum_N_N : N ; - aevus_M_N : N ; - aex_F_N : N ; - afa_F_N : N ; - afanna_F_N : N ; - affaber_A : A ; - affabilis_A : A ; - affabilitas_F_N : N ; - affabiliter_Adv : Adv ; - affabre_Adv : Adv ; - affabricatus_A : A ; - affamen_N_N : N ; - affania_F_N : N ; - affatim_Adv : Adv ; - affatus_M_N : N ; - affectatio_F_N : N ; - affectato_Adv : Adv ; - affectator_M_N : N ; - affectatus_A : A ; - affecte_Adv : Adv ; - affectio_F_N : N ; - affectiose_Adv : Adv ; - affectiosus_A : A ; - affectivus_A : A ; - affecto_V2 : V2 ; - affector_V : V ; - affectrix_F_N : N ; - affectualis_A : A ; - affectuose_Adv : Adv ; - affectuosus_A : A ; - affectus_A : A ; - affectus_M_N : N ; - affero_V2 : V2 ; - afficio_V2 : V2 ; - afficticius_A : A ; - affigo_V2 : V2 ; - affiguro_V2 : V2 ; - affingo_V2 : V2 ; - affinis_A : A ; + aeronavigans_M_N : N ; -- [HXXFE] :: airline personnel; + aerophobus_M_N : N ; -- [DBXFS] :: one who fears the air; + aeroplaniga_M_N : N ; -- [HXXEK] :: aviator, pilot of plane; + aeroplanigera_F_N : N ; -- [HXXEK] :: aircraft carrier; + aeroplanum_N_N : N ; -- [HXXEK] :: plane; + aerosolum_N_N : N ; -- [GXXEK] :: spray; + aerostatum_N_N : N ; -- [GXXEK] :: airship; hot-air balloon; + aerosus_A : A ; -- [XXXDO] :: containing copper; full of copper; + aeruca_F_N : N ; -- [XXXFO] :: verdigris, rust of copper; patina on copper/bronze; + aerugineus_A : A ; -- [GXXEK] :: verdigris-colored; bluish-green/greenish-blue; + aerugino_V : V ; -- [DEXES] :: rust, become rusty; become cankered; + aeruginosus_A : A ; -- [XXXEO] :: covered with verdigis; rusty; + aerugo_F_N : N ; -- [XXXCO] :: rust of copper, verdigris; canker of the mind, envy, ill-will, avarice; + aerumna_F_N : N ; -- [XXXCO] :: toil, task, labor; hardship, trouble, affliction, distress, calamity; + aerumnabilis_A : A ; -- [XXXEO] :: causing misery/trouble/hardship; distressing; + aerumnosus_A : A ; -- [XXXCO] :: full of/afflicted with trouble/suffering, wretched; causing distress; + aerumnula_F_N : N ; -- [XXXFS] :: traveler's stick for carrying a bundle/bindle; + aeruscator_M_N : N ; -- [XXXFO] :: beggar; itinerant juggler/entertainer (L+S); + aerusco_V : V ; -- [XXXEO] :: beg; go begging; get money traveling and practicing juggling/legerdemain (L+S); + aes_N_N : N ; -- [XXXAO] :: money, pay, fee, fare; copper/bronze/brass, base metal; (w/alienum) debt; gong; + aesalon_M_N : N ; -- [XAXNS] :: species of hawk/falcon; + aeschrologia_F_N : N ; -- [DGXFS] :: expression improper because of its ambiguity; + aeschynomene_F_N : N ; -- [XAXNS] :: plant which shrinks when touched (Mimosa pudica); sensitive plant; + aesculanus_A : A ; -- [FLXEE] :: pertaining to copper or money; + aesculetum_N_N : N ; -- [XXXDO] :: forest of durmast or Hungarian or Italian oak; district of Rome; + aesculeus_A : A ; -- [XXXFO] :: of a variety of oak tree/wood, perhaps durmast or Hungarian or Italian oak; + aesculinus_A : A ; -- [XXXFO] :: of a variety of oak tree/wood, perhaps durmast or Hungarian or Italian oak; + aesculnius_A : A ; -- [XXXFO] :: of a variety of oak tree/wood, perhaps durmast or Hungarian or Italian oak; + aesculus_F_N : N ; -- [XXXCO] :: variety of oak tree, perhaps durmast or Hungarian oak, or Italian oak; + aesnescia_F_N : N ; -- [FLXFJ] :: seniority; + aessomus_A : A ; -- [XXXFO] :: sleeveless; + aestas_F_N : N ; -- [XXXBO] :: summer; summer heat/weather; a year; + aesthetica_F_N : N ; -- [FSXEE] :: esthetics; + aestifer_A : A ; -- [XXXCO] :: producing/causing/bringing heat; hot, sultry; + aestimabilis_A : A ; -- [XXXFO] :: having worth or value; + aestimatio_F_N : N ; -- [XLXAO] :: valuation, estimation of money value; value, price; assessment of damages; + aestimator_M_N : N ; -- [XXXCO] :: appraiser, valuer; judge; + aestimatorius_A : A ; -- [XXXEO] :: of/concerning the valuation of property; + aestimatus_A : A ; -- [XXXEO] :: valuated (price/worth), assessed/estimated (the cost/situation); esteemed; + aestimatus_M_N : N ; -- [XXXFO] :: valuation (of property), estimation of money value; value, price; + aestimia_F_N : N ; -- [DXXFS] :: assessment; valuation, estimate; + aestimium_N_N : N ; -- [DXXES] :: assessment; valuation, estimate; + aestimo_V2 : V2 ; -- [XXXAO] :: value, assess; estimate; reckon; consider, judge (situation); esteem; + aestivalis_A : A ; -- [XXXIO] :: of summer, designed for summer use; + aestive_Adv : Adv ; -- [XXXFO] :: in summer fashion; lightly (dress); + aestivo_V : V ; -- [XXXDO] :: spend/pass the summer; + aestivum_N_N : N ; -- [XWXCO] :: summer camp/quarters/pastures/apartments (pl.); campaigning season, campaigns; + aestivus_A : A ; -- [XXXBO] :: summer-like, summer; pertaining to/occurring in/used for/appearing in summer; + aestuabundus_A : A ; -- [DXXFS] :: foaming, fermenting; + aestuarium_N_N : N ; -- [XXXCO] :: tidal marsh/inlet/opening, marsh; (river) estuary; air shaft, vent; + aestuarius_A : A ; -- [GXXEK] :: agitated; + aestumatio_F_N : N ; -- [XLXAS] :: valuation, estimation of money value; value, price; assessment of damages; + aestumo_V2 : V2 ; -- [XXXAO] :: value, assess; estimate; reckon; consider, judge (situation); esteem; + aestuo_V : V ; -- [XXXBO] :: boil, seethe, foam; billow roll in waves; be agitated/hot; burn; waver; + aestuose_Adv : Adv ; -- [XXXFO] :: with fierce heat; fiery; + aestuosus_A : A ; -- [XXXCO] :: burning hot, glowing, sweltering, sultry; fevered; seething (water), raging; + aestus_M_N : N ; -- [XXXAO] :: agitation, passion, seething; raging, boiling; heat/fire; sea tide/spray/swell; + aesum_N_N : N ; -- [XAXNO] :: live-forever, houseleek (Sempervivum tectorum); + aetas_F_N : N ; -- [XXXAO] :: lifetime, age, generation; period; stage, period of life, time, era; + aetatula_F_N : N ; -- [XXXCO] :: tender age of childhood; early time of life; youth; person of tender age; + aeternabilis_A : A ; -- [XXXFO] :: eternal, everlasting; + aeternalis_A : A ; -- [XXXIO] :: eternal, everlasting; + aeternaliter_Adv : Adv ; -- [DXXES] :: forever; + aeternitas_F_N : N ; -- [XXXBO] :: eternity, infinite time; immortality; permanence, durability; + aeterno_Adv : Adv ; -- [XXXEO] :: for ever, always; perpetually; also; constantly; + aeterno_V2 : V2 ; -- [XXXEO] :: immortalize; confer undying fame on; + aeternum_Adv : Adv ; -- [XXXCO] :: eternally, for ever, always; perpetually; also; constantly; + aeternus_A : A ; -- [XXXAO] :: eternal/everlasting/imperishable; perpetual, w/out start/end; [in ~=>forever]; + aethalus_M_N : N ; -- [XAENS] :: sort of grape in Egypt, soot grape; + aethanolum_N_N : N ; -- [GXXEK] :: ethanol (drinkable alcohol); + aether_M_N : N ; -- [XXXBO] :: upper air; ether; heaven, sky; sky (as a god); space surrounding a deity; + aethereus_A : A ; -- [XXXBO] :: ethereal, heavenly, divine, celestial; of the upper atmosphere; aloft; lofty; + aetherius_A : A ; -- [XXXBO] :: ethereal, heavenly, divine, celestial; of the upper atmosphere; aloft; lofty; + aethiopis_F_N : N ; -- [XAXEO] :: species of sage (Salvia Aethiopis?); another plant; + aethon_A : A ; -- [XXXFO] :: red-brown; tawny; + aethra_F_N : N ; -- [XXXCO] :: brightness, splendor (of heavenly bodies); clear/bright sky; heavens; pure air; + aethylicus_A : A ; -- [GXXEK] :: ethyl; + aetiologia_F_N : N ; -- [DGXFS] :: bringing of proofs, allegation of reasons; inquiry into/explanation of causes; + aetites_F_N : N ; -- [XXXNO] :: aetites, eagle-stone (w/lapis) (stone, hollow with another substance within); + aetitis_F_N : N ; -- [XXXNO] :: precious stone; aetites, eagle-stone (hollow with another substance within); + aetoma_F_N : N ; -- [XXXIO] :: gable; + aetoma_N_N : N ; -- [XXXIO] :: gable; + aevitas_F_N : N ; -- [XXXAS] :: |time of existence; unending/endless time, forever; immortality; days of yore; + aeviternus_A : A ; -- [XXXAO] :: eternal, everlasting, imperishable; perpetual; having no beginning/end; + aevum_N_N : N ; -- [XXXAO] :: time, time of life, age, old age, generation; passage/lapse of time; all time; + aevus_M_N : N ; -- [XXXAO] :: time, time of life, age, old age, generation; passage/lapse of time; all time; + aex_F_N : N ; -- [XXXEO] :: craggy rocks (pl.); rock (sg.) situated between islands of Tenedos and Chios; + afa_F_N : N ; -- [DXXEZ] :: dust; + afanna_F_N : N ; -- [XXXEO] :: shifty excuses (pl.), evasive talk; + affaber_A : A ; -- [XXXFS] :: made/prepared ingeniously/skillfully/with art; ingenious, skilled in art; + affabilis_A : A ; -- [XXXCO] :: easy of access/to talk to, affable, friendly, courteous; sympathetic (words); + affabilitas_F_N : N ; -- [XXXEO] :: affability, friendliness, courtesy; + affabiliter_Adv : Adv ; -- [XXXEO] :: conversationally, in informal/friendly discourse; + affabre_Adv : Adv ; -- [XXXEO] :: skillfully, ingeniously, artistically; + affabricatus_A : A ; -- [XXXFS] :: fitted/added to by art; + affamen_N_N : N ; -- [XXXEO] :: greeting, salutation, address; accosting; + affania_F_N : N ; -- [XXXES] :: trifling talk (pl.), chatter; idle jests; + affatim_Adv : Adv ; -- [XXXCO] :: sufficiently, amply, with complete satisfaction; + affatus_M_N : N ; -- [XXXCO] :: address, speech, converse with; pronouncement, utterance (of); + affectatio_F_N : N ; -- [XXXCO] :: seeking/striving for, aspiration to; affectation, straining for; claiming; + affectato_Adv : Adv ; -- [DXXES] :: studiously, zealously; + affectator_M_N : N ; -- [XXXDO] :: aspirant, zealous seeker (of), one who strives to obtain/produce; + affectatus_A : A ; -- [XXXEO] :: studied, artificial, affected; + affecte_Adv : Adv ; -- [DXXES] :: deeply, with (strong) affection; + affectio_F_N : N ; -- [XXXAO] :: mental condition, mood, feeling, disposition; affection, love; purpose; + affectiose_Adv : Adv ; -- [EXXFP] :: feelingly; with (kindly) feeling; + affectiosus_A : A ; -- [DXXES] :: full of affection/attachment; + affectivus_A : A ; -- [EXXEP] :: affective; of willing/desiring; + affecto_V2 : V2 ; -- [XXXBO] :: aim at, desire, aspire, try, lay claim to; try to control; feign, pretend; + affector_V : V ; -- [XXXCO] :: aim at, desire, aspire, try, lay claim to; try to control; feign, pretend; + affectrix_F_N : N ; -- [DXXFS] :: aspirant (female); she who seeks/strives for (thing); + affectualis_A : A ; -- [EXXEP] :: depending on a temporary condition; + affectuose_Adv : Adv ; -- [EXXFP] :: feelingly; with (kindly) feeling; + affectuosus_A : A ; -- [DXXES] :: affectionate, kind, full of inclination/affection/love; + affectus_A : A ; -- [XXXBO] :: endowed with, possessed of; minded; affected; impaired, weakened; emotional; + affectus_M_N : N ; -- [XXXAO] :: |disposition; condition, state (of body/mind); feeling, mood, emotion; + affero_V2 : V2 ; -- [XXXAO] :: bring to (word/food), carry, convey; report, allege, announce; produce, cause; + afficio_V2 : V2 ; -- [XXXAO] :: affect, make impression; move, influence; cause (hurt/death), afflict, weaken; + afficticius_A : A ; -- [XXXFO] :: attached (to); + affigo_V2 : V2 ; -- [XXXAO] :: fasten/fix/pin/attach to (w/DAT), annex; impress upon; pierce; chain, confine; + affiguro_V2 : V2 ; -- [XGXEO] :: form (word) by analogy; + affingo_V2 : V2 ; -- [XXXBO] :: add to, attach; aggravate; embellish, counterfeit, forge; claim wrongly; + affinis_A : A ; -- [XXXBO] :: neighboring, adjacent, next, bordering; related (marriage), akin, connected; affinis_F_N : N ; -- [XXXCO] :: relation (by marriage); neighbor; accomplice; - affinis_M_N : N ; - affinitas_F_N : N ; - affirmanter_Adv : Adv ; - affirmate_Adv : Adv ; - affirmatio_F_N : N ; - affirmativus_A : A ; - affirmator_M_N : N ; - affirmo_V : V ; - affixio_F_N : N ; - affixum_N_N : N ; - affixus_A : A ; - afflagrans_F_N : N ; - afflator_M_N : N ; - afflatus_M_N : N ; - afflecto_V2 : V2 ; - affleo_V : V ; - afflexus_A : A ; - afflictatio_F_N : N ; - afflictator_M_N : N ; - afflictio_F_N : N ; - afflicto_V2 : V2 ; - afflictor_M_N : N ; - afflictrix_A : A ; - afflictrix_F_N : N ; - afflictus_A : A ; - afflictus_M_N : N ; - affligo_V2 : V2 ; - afflo_V : V ; - affluens_A : A ; - affluente_Adv : Adv ; - affluenter_Adv : Adv ; - affluentia_F_N : N ; - affluo_V : V ; - affodio_V2 : V2 ; - affor_V : V ; - afforciamentum_N_N : N ; - afformido_V : V ; - affrango_V2 : V2 ; - affremo_V : V ; - affricatio_F_N : N ; - affrico_V2 : V2 ; - affrictus_M_N : N ; - affringo_V2 : V2 ; - affrio_V2 : V2 ; - affulgeo_V2 : V2 ; - affundo_V2 : V2 ; - affundor_V : V ; - affuo_V : V ; - afluens_A : A ; - afluo_V : V ; - africanus_M_N : N ; - agaga_M_N : N ; - agalma_F_N : N ; - agalmate_N_N : N ; - agamus_A : A ; - agape_F_N : N ; - agaricum_N_N : N ; - agaso_M_N : N ; - agathodaemon_M_N : N ; - agathum_N_N : N ; - age_Interj : Interj ; - agea_F_N : N ; - agedum_Interj : Interj ; - agellulus_M_N : N ; - agellus_M_N : N ; - agema_N_N : N ; - agenda_F_N : N ; - agens_A : A ; - agens_M_N : N ; - ager_M_N : N ; - ageraton_N_N : N ; - agerius_M_N : N ; - agero_V2 : V2 ; - ageto_V : V ; - aggaudeo_V : V ; - aggemo_V : V ; - aggenero_V2 : V2 ; - aggeniculor_V : V ; - agger_M_N : N ; - aggeratim_Adv : Adv ; - aggeratio_F_N : N ; - aggero_V2 : V2 ; - aggestim_Adv : Adv ; - aggestio_F_N : N ; - aggestum_N_N : N ; - aggestus_M_N : N ; - agglomero_V2 : V2 ; - agglutino_V2 : V2 ; - aggratulor_V : V ; - aggravesco_V : V ; - aggravo_V2 : V2 ; - aggredio_V : V ; - aggredior_V : V ; - aggregatio_F_N : N ; - aggregatus_M_N : N ; - aggrego_V2 : V2 ; - aggressio_F_N : N ; - aggressivitas_F_N : N ; - aggressor_M_N : N ; - aggressura_F_N : N ; - aggressus_M_N : N ; - agguberno_V : V ; - agiaspis_M_N : N ; - agilis_A : A ; - agilitas_F_N : N ; - agiliter_Adv : Adv ; - agina_F_N : N ; - aginator_M_N : N ; - agino_V : V ; - agios_A : A ; - agipes_M_N : N ; - agitabilis_A : A ; - agitatio_F_N : N ; - agitator_M_N : N ; - agitatrix_F_N : N ; - agitatus_A : A ; - agitatus_M_N : N ; - agite_Interj : Interj ; - agito_V : V ; - aglaophotis_F_N : N ; - aglaspis_M_N : N ; - agma_N_N : N ; - agmen_N_N : N ; - agminalis_A : A ; - agminatim_Adv : Adv ; - agna_F_N : N ; - agnascor_V : V ; - agnata_F_N : N ; - agnaticius_A : A ; - agnatio_F_N : N ; - agnatum_N_N : N ; - agnatus_A : A ; - agnatus_M_N : N ; - agnellus_M_N : N ; - agnicellulus_M_N : N ; - agnicellus_M_N : N ; - agniculus_M_N : N ; - agnina_F_N : N ; - agninus_A : A ; - agnitio_F_N : N ; - agnitionalis_A : A ; - agnitor_M_N : N ; - agnitus_M_N : N ; - agnomen_N_N : N ; - agnomentum_N_N : N ; - agnominatio_F_N : N ; - agnomino_V2 : V2 ; - agnos_F_N : N ; - agnoscibilis_A : A ; - agnosco_V2 : V2 ; - agnosticismus_M_N : N ; - agnua_F_N : N ; - agnus_M_N : N ; - ago_V2 : V2 ; - agoga_F_N : N ; - agoge_F_N : N ; - agolum_N_N : N ; + affinis_M_N : N ; -- [XXXCO] :: relation (by marriage); neighbor; accomplice; + affinitas_F_N : N ; -- [XXXBO] :: relation(ship) by marriage; relationship (man+wife), bond/union; neighborhood; + affirmanter_Adv : Adv ; -- [XXXES] :: certainly, assuredly, with assurance; + affirmate_Adv : Adv ; -- [XXXEO] :: with definite affirmation/solemn assertion, positively, certainly, assuredly; + affirmatio_F_N : N ; -- [XXXCO] :: affirmation, strengthening of belief; assertion, dogmatic/positive statement; + affirmativus_A : A ; -- [DXXFS] :: affirming, affirmative; + affirmator_M_N : N ; -- [XXXEO] :: one who makes a definite assertion/affirmation; + affirmo_V : V ; -- [XXXBO] :: affirm/assert (dogmatically/positively); confirm, ratify, restore; emphasize; + affixio_F_N : N ; -- [DXXES] :: joining/fastening to; an addition to; + affixum_N_N : N ; -- [XXXFO] :: fixtures (pl.) pertaining thereto;, permanent fittings/appendages/appurtenances; + affixus_A : A ; -- [XXXES] :: fastened/joined to (person/thing); impressed on, fixed to; situated close to; + afflagrans_F_N : N ; -- [DXXFS] :: flaming/blazing up; turbulent, unquiet; + afflator_M_N : N ; -- [DXXES] :: one who blows on/breathes into; + afflatus_M_N : N ; -- [XXXBO] :: breath, snorting; breeze, wind, draught, (hot) blast; stench; inspiration, flash + afflecto_V2 : V2 ; -- [XXXFO] :: affect, move, influence (to a course of action); + affleo_V : V ; -- [XXXFO] :: weep/cry at; weep as an accompaniment; + afflexus_A : A ; -- [XXXEO] :: bent/turned (towards); + afflictatio_F_N : N ; -- [XXXEO] :: grievous suffering, torment, affliction; pain, torture; + afflictator_M_N : N ; -- [DXXES] :: one who causes pain/suffering/torment/torture; tormenter; + afflictio_F_N : N ; -- [XXXFS] :: pain, suffering, torment; + afflicto_V2 : V2 ; -- [XXXAO] :: shatter, damage, strike repeatedly, buffet, wreck; oppress, afflict; vex; + afflictor_M_N : N ; -- [XXXFO] :: one who strikes against/down/overthrows; + afflictrix_A : A ; -- [XXXFO] :: that strikes against/down/overthrows or collides with (female); + afflictrix_F_N : N ; -- [XXXFO] :: one (female) who strikes against/down/overthrows; + afflictus_A : A ; -- [XXXEO] :: in a state of ruin (persons/countries/affairs), shattered; + afflictus_M_N : N ; -- [XXXFO] :: collision, blow; a striking against/dashing together; + affligo_V2 : V2 ; -- [XXXAO] :: overthrow/throw down; afflict, damage, crush, break, ruin; humble, weaken, vex; + afflo_V : V ; -- [XXXAO] :: blow/breathe (on/towards); inspire, infuse; waft; graze; breathe poison on; + affluens_A : A ; -- [XXXCO] :: flowing/overflowing/abounding with; abundant, plentiful, sumptuous, copious; + affluente_Adv : Adv ; -- [XXXES] :: richly, copiously, abundantly, extravagantly, opulently; + affluenter_Adv : Adv ; -- [XXXEO] :: abundantly, copiously; luxuriously, extravagantly; + affluentia_F_N : N ; -- [XXXCO] :: flow (of a liquid); abundance, profusion, extravagance, opulence, riotousness; + affluo_V : V ; -- [XXXBO] :: flow on/to/towards/by; glide/drift quietly; flock together, throng; abound; + affodio_V2 : V2 ; -- [XXXNO] :: add by digging; + affor_V : V ; -- [XXXCO] :: speak to, address; be spoked to/addressed (PASS), be decreed by fate; + afforciamentum_N_N : N ; -- [FXXFM] :: strengthening; W:fortification; + afformido_V : V ; -- [XXXFO] :: be afraid, fear; + affrango_V2 : V2 ; -- [XXXEO] :: cause to be broken against, crush/strike/break against; break in pieces; + affremo_V : V ; -- [XXXEO] :: roar/rage/growl (at); assent noisily to (w/DAT); + affricatio_F_N : N ; -- [DXXES] :: rubbing on/against (thing); friction; abrasion; + affrico_V2 : V2 ; -- [XXXCO] :: rub (one thing against another); apply/communicate/impart by rubbing, smear on; + affrictus_M_N : N ; -- [XXXEO] :: friction; rubbing on; + affringo_V2 : V2 ; -- [XXXFS] :: cause to be broken against, crush/strike/break against; break in pieces; + affrio_V2 : V2 ; -- [XXXFO] :: sprinkle (powder); crumble, grate; + affulgeo_V2 : V2 ; -- [XXXCO] :: shine forth, appear, dawn; shine/smile upon (w/favor), appear favorable; + affundo_V2 : V2 ; -- [XXXBO] :: pour on/upon/into, heap up; shed/spill (blood); wash; + affundor_V : V ; -- [XXXCO] :: prostrate oneself; cause to be spread on/over; flow alongside/past (streams); + affuo_V : V ; -- [XXXEO] :: flow/stream/issue (from), flow away; abound in (w/ABL), be abundant, abound; + afluens_A : A ; -- [XXXFO] :: abundant, plentiful, copious; + afluo_V : V ; -- [XXXEO] :: flow/stream/issue (from), flow away; abound in (w/ABL), be abundant, abound; + africanus_M_N : N ; -- [XXXEO] :: panthers (pl.); (African cats); (other wild beasts); + agaga_M_N : N ; -- [XXXFO] :: catamite (rude), a boy kept for unnatural purposes, pathic; + agalma_F_N : N ; -- [FXXEM] :: statue; image; + agalmate_N_N : N ; -- [FXXEN] :: effigy; depiction of ruler on seal; + agamus_A : A ; -- [DXXES] :: unmarried; + agape_F_N : N ; -- [DEXES] :: Christian love/charity; love feast of early Christians; + agaricum_N_N : N ; -- [XAXEO] :: agaric, species of corky tree (larch) fungus used as styptic/tinder/in dyeing; + agaso_M_N : N ; -- [XXXCO] :: driver, groom, stableboy; lackey, serving-man; + agathodaemon_M_N : N ; -- [XAEFS] :: Egyptian serpent to which healing power was ascribed; + agathum_N_N : N ; -- [FXXFV] :: notable/distinguished/characteristic thing; precious thing, one of great value; + age_Interj : Interj ; -- [XXXCS] :: come!, go to!, well!, all right!; let come; + agea_F_N : N ; -- [XWXFO] :: gangway between the rowers in a ship; + agedum_Interj : Interj ; -- [XXXCO] :: come!, go to!, well!, all right!; + agellulus_M_N : N ; -- [XAXEO] :: very small plot of land, very small field; + agellus_M_N : N ; -- [XAXCO] :: little field, small plot of land, farm, small estate; + agema_N_N : N ; -- [XWHEO] :: special division of the Macedonian army, royal bodyguard; + agenda_F_N : N ; -- [FXXDE] :: ritual; what must be done; agenda; + agens_A : A ; -- [XXXES] :: efficient, effective, powerful; + agens_M_N : N ; -- [XLXEO] :: advocate, pleader; secret police (pl.) (frumentarii/curiosi); land surveyors; + ager_M_N : N ; -- [XXXAO] :: field, ground; farm, land, estate, park; territory, country; terrain; soil; + ageraton_N_N : N ; -- [XAXNS] :: plant that does not easily wither (Achillea ageraton?); + agerius_M_N : N ; -- [ELXEX] :: Agerius; fictional name in Law; + agero_V2 : V2 ; -- [XXXEO] :: take away, remove; + ageto_V : V ; -- [BXXES] :: stir/drive/shake/move about; revolve; live; control, ride; consider, pursue; + aggaudeo_V : V ; -- [DXXES] :: delight in; be delighted with; + aggemo_V : V ; -- [XXXEO] :: groan in conjunction/sympathy (with); + aggenero_V2 : V2 ; -- [DXXES] :: beget in addition; + aggeniculor_V : V ; -- [DXXES] :: kneel before, bend the knee before; + agger_M_N : N ; -- [XXXAO] :: rampart (or material for); causeway, pier; heap/pile/mound; dam/dike; mud wall; + aggeratim_Adv : Adv ; -- [XXXFO] :: in heaps/piles; + aggeratio_F_N : N ; -- [XXXFO] :: heaped/piled up material; + aggero_V2 : V2 ; -- [XXXBO] :: heap/cover up over, pile/build up, erect; accumulate; intensify, exaggerate; + aggestim_Adv : Adv ; -- [DXXFS] :: in heaps, abundantly; + aggestio_F_N : N ; -- [DXXES] :: heap, heaping up; mass (of mud), heap (of sand); + aggestum_N_N : N ; -- [DXXES] :: mound, dike, elevation formed like a dike/mound; + aggestus_M_N : N ; -- [XXXDO] :: piling up; act of bringing; earthen bank, terrace; sprinkling earth over body; + agglomero_V2 : V2 ; -- [XXXCO] :: gather into a body, mass together, join forces; pile up in masses; agglomerate; + agglutino_V2 : V2 ; -- [XXXCO] :: glue/stick/adhere/fasten to/together; fit/grip on closely; bring in contact; + aggratulor_V : V ; -- [FXXFZ] :: give thanks (to); (JFW); + aggravesco_V : V ; -- [XXXDS] :: become heavy; become severe/dangerous (illness), grow worse; be aggravated; + aggravo_V2 : V2 ; -- [XXXCO] :: aggravate, exaggerate; weigh down, oppress; make heavier; embarrass further; + aggredio_V : V ; -- [XXXDS] :: approach, advance; attack, assail; undertake, seize (opportunity), attempt; + aggredior_V : V ; -- [XXXAO] :: approach, advance; attack, assail; undertake, seize (opportunity), attempt; + aggregatio_F_N : N ; -- [FXXEE] :: aggregation; gathering together; + aggregatus_M_N : N ; -- [GXXEK] :: aggregate; + aggrego_V2 : V2 ; -- [XXXBO] :: collect, include, group, implicate; (cause to) flock/join together, attach; + aggressio_F_N : N ; -- [XXXDO] :: attack; action of setting about/undertaking (task); + aggressivitas_F_N : N ; -- [GXXEK] :: aggressiveness; + aggressor_M_N : N ; -- [XXXEO] :: attacker, assailant; + aggressura_F_N : N ; -- [XXXEO] :: attack, assault; + aggressus_M_N : N ; -- [XXXFO] :: attack, assault; + agguberno_V : V ; -- [XXXEO] :: steer (one's course); + agiaspis_M_N : N ; -- [XWXFS] :: soldiers with glittering/bright (brazen?) shields; + agilis_A : A ; -- [XXXBO] :: agile, nimble, quick, swift; alert (mind), active; energetic, busy; rousing; + agilitas_F_N : N ; -- [XXXCO] :: activity, quickness (mind/body), nimbleness, ease of movement; + agiliter_Adv : Adv ; -- [XXXEO] :: nimbly, swiftly, with agility; + agina_F_N : N ; -- [XXXFS] :: opening in upper part of a balance in which the tongue moves; + aginator_M_N : N ; -- [DXXFS] :: one stirred by small gain; + agino_V : V ; -- [XXXFO] :: move heaven and earth, do one's best by hook or crook; + agios_A : A ; -- [FXHFE] :: holy (Greek); + agipes_M_N : N ; -- [CLXFS] :: senator who silently passes over to him; senator for/with he intends to vote; + agitabilis_A : A ; -- [XXXFO] :: easily moved, mobile; + agitatio_F_N : N ; -- [XXXCO] :: brandishing/waving/shaking/moving violently; movement; exercise; working (land); + agitator_M_N : N ; -- [XXXCO] :: driver, charioteer; one who drives (animals); + agitatrix_F_N : N ; -- [XXXFO] :: that causes movement (of soul); + agitatus_A : A ; -- [XXXDO] :: agile, animated, brisk; + agitatus_M_N : N ; -- [XXXEO] :: movement, activity, state of motion; + agite_Interj : Interj ; -- [XXXCQ] :: come!, go to!, well!, all right!; + agito_V : V ; -- [XXXAO] :: stir/drive/shake/move about; revolve; live; control, ride; consider, pursue; + aglaophotis_F_N : N ; -- [XAXNS] :: magic herb of brilliant color; peony (Paeonia officinalis); + aglaspis_M_N : N ; -- [XWXFS] :: soldiers with bright/brazen shields; + agma_N_N : N ; -- [XGXFO] :: nasalized G; + agmen_N_N : N ; -- [XXXAO] :: stream; herd, flock, troop, crowd; marching army, column, line; procession; + agminalis_A : A ; -- [XXXES] :: pertaining to a march/train; pack (horses); + agminatim_Adv : Adv ; -- [XXXEO] :: in hosts/hordes/crowds; in troops/trains; + agna_F_N : N ; -- [XAXCO] :: ewe lamb; + agnascor_V : V ; -- [XLXBO] :: be born in addition/after father's will made; develop; grow later/on, arise; + agnata_F_N : N ; -- [XXXFO] :: female blood relation on father's side; + agnaticius_A : A ; -- [DLXFS] :: pertaining to agnati (born after will); [~ jus => right of agnati to inherit]; + agnatio_F_N : N ; -- [XLXCO] :: birth after father's will/death; consanguinity through father/male ancestor; + agnatum_N_N : N ; -- [XAXNO] :: offshoot, side-shoot; + agnatus_A : A ; -- [XXXFO] :: related, cognate; + agnatus_M_N : N ; -- [XLXCO] :: male blood relation (father's side); one born after father made his will; + agnellus_M_N : N ; -- [XXXFO] :: little lamb, lambkin; + agnicellulus_M_N : N ; -- [XAXES] :: little lamb, lambkin; + agnicellus_M_N : N ; -- [XAXES] :: little lamb, lambkin; + agniculus_M_N : N ; -- [XAXFS] :: little lamb, lambkin; + agnina_F_N : N ; -- [XXXEO] :: meat/flesh of lamb, "lamb"; + agninus_A : A ; -- [XXXCO] :: of/connected with a lamb, lamb's; + agnitio_F_N : N ; -- [XXXCO] :: recognition, knowledge; perception of nature/identity; avowal, acknowledgement; + agnitionalis_A : A ; -- [DGXES] :: that can be recognized/known, cognizable; + agnitor_M_N : N ; -- [XLXFO] :: one who acknowledges or vouches for (seal); + agnitus_M_N : N ; -- [XDXFO] :: "recognition" (drama); + agnomen_N_N : N ; -- [XXXDO] :: nickname, an additional name denoting an achievement/characteristic; + agnomentum_N_N : N ; -- [XXXFS] :: nickname, an additional name denoting an achievement/characteristic; + agnominatio_F_N : N ; -- [XGXES] :: linking two words different in meaning but similar in sound, paronomasia; + agnomino_V2 : V2 ; -- [DXXEV] :: give/honor with a nickname/additional name denoting achievement/characteristic; + agnos_F_N : N ; -- [XXXEO] :: chaste-tree (vitex agnus castus), tall plant resembling the willow; + agnoscibilis_A : A ; -- [DGXFS] :: that can be recognized/known, cognizable; + agnosco_V2 : V2 ; -- [XXXAO] :: recognize, realize, discern; acknowledge, claim, admit to/responsibility; + agnosticismus_M_N : N ; -- [FEXEE] :: agnosticism; + agnua_F_N : N ; -- [XAXEO] :: square actus, a measure of land 120 yards square; + agnus_M_N : N ; -- [XAXCO] :: lamb; + ago_V2 : V2 ; -- [XXXAO] :: drive/urge/conduct/act; spend (time w/cum); thank (w/gratias); deliver (speech); + agoga_F_N : N ; -- [XTXNS] :: channel for drawing off water (mining); + agoge_F_N : N ; -- [XTXNO] :: channel for drawing off water (mining); + agolum_N_N : N ; -- [XAXFS] :: shepherd's staff/crook; 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 ; - agonio_V2 : V2 ; - agonista_M_N : N ; - agonistarcha_M_N : N ; - agonistarchicus_A : A ; - agonium_N_N : N ; - agonizo_V2 : V2 ; - agonosticus_A : A ; - agonotheta_M_N : N ; - agonothetes_M_N : N ; - agonotheticus_A : A ; - agoranomus_M_N : N ; - agralis_A : A ; - agraphum_N_N : N ; - agrarius_A : A ; - agrarius_M_N : N ; - agraticum_N_N : N ; - agravitas_F_N : N ; - agrestis_A : A ; - agrestis_M_N : N ; - agricola_M_N : N ; - agricolaris_A : A ; - agricolatio_F_N : N ; - agricolor_V : V ; - agricultio_F_N : N ; - agricultor_M_N : N ; - agricultura_F_N : N ; - agrimensor_M_N : N ; - agriophyllon_N_N : N ; - agripeta_M_N : N ; - agrius_A : A ; - agronomia_F_N : N ; - agrosius_A : A ; - agrostis_F_N : N ; - agrosus_A : A ; - agrypnia_F_N : N ; - aguna_F_N : N ; - ah_Interj : Interj ; - aha_Interj : Interj ; - aheneus_A : A ; - ahenipes_A : A ; - ahenum_N_N : N ; - ahenus_A : A ; - ai_Interj : Interj ; - aiens_A : A ; - aientia_F_N : N ; - aigilps_A : A ; - ain_N : N ; - aio_V : V ; - aisne_Interj : Interj ; - ait_V0 : V ; + agon_2_N : N ; -- [XXXCO] :: struggle, contest; public exhibition of games; + agonal_N_N : N ; -- [XEIEC] :: festival of Janus (pl.); + agonalium_N_N : N ; -- [XEIEC] :: festival of Janus (pl.); + agonia_F_N : N ; -- [XEXFS] :: victim; beast for sacrifice; (at Agonalia/festival of Janus); + agonio_V2 : V2 ; -- [EXXEW] :: struggle/fight (against); strive unto death (Vulgate Sirach 4:33); + agonista_M_N : N ; -- [DXXFS] :: combatant for a prize; + agonistarcha_M_N : N ; -- [XLXFS] :: superintendent of public games; + agonistarchicus_A : A ; -- [XLXFS] :: of/connected with a superintendent of public games; + agonium_N_N : N ; -- [XEXCO] :: victim; beast for sacrifice; festival honoring Janus (pl.); Liberalia festival; + agonizo_V2 : V2 ; -- [FXXEV] :: dispute; struggle/fight (against); + agonosticus_A : A ; -- [EEXEE] :: pertaining to a contest or struggle; + agonotheta_M_N : N ; -- [XLXIO] :: superintendent of public games; + agonothetes_M_N : N ; -- [XLXFS] :: superintendent of public games; + agonotheticus_A : A ; -- [XLXFO] :: of/connected with a superintendent of public games; + agoranomus_M_N : N ; -- [XLHFS] :: market inspector, Grecian magistrate who inspected provisions/regulated market; + agralis_A : A ; -- [DAXFS] :: agrarian, of redistribution of public land; of/connected with land/estate; + agraphum_N_N : N ; -- [FEXEE] :: things (pl.) unwritten; + agrarius_A : A ; -- [XAXCO] :: agrarian; of redistribution of public land; of/connected with land/estate; + agrarius_M_N : N ; -- [XLXES] :: those who advocated agrarian reform laws/sought possession of public lands; + agraticum_N_N : N ; -- [DAXFS] :: land-tax; revenue from land; + agravitas_F_N : N ; -- [GXXEK] :: zero gravity; + agrestis_A : A ; -- [XAXAO] :: rustic, inhabiting countryside; rude, wild, savage; of/passing through fields; + agrestis_M_N : N ; -- [XAXCO] :: countryman, peasant; rube, rustic, bumpkin; + agricola_M_N : N ; -- [XAXBO] :: farmer, cultivator, gardener, agriculturist; plowman, countryman, peasant; + agricolaris_A : A ; -- [XAXES] :: farmer-; relating to farmers; + agricolatio_F_N : N ; -- [XAXFO] :: agriculture, husbandry; + agricolor_V : V ; -- [DAXFS] :: farm, cultivate land, pursue agriculture; + agricultio_F_N : N ; -- [XAXES] :: husbandry; + agricultor_M_N : N ; -- [XAXFS] :: farmer, husbandman; + agricultura_F_N : N ; -- [XAXCO] :: agriculture, husbandry; + agrimensor_M_N : N ; -- [XAXIO] :: land surveyor; + agriophyllon_N_N : N ; -- [XAXFS] :: herb (peucedanum), hog's foot, sulphurwort; + agripeta_M_N : N ; -- [XAXEO] :: settler, one who searches for land; land-grabber, squatter, one who seizes it; + agrius_A : A ; -- [XAXEO] :: wild (of plants/other natural products); [staphis ~ => stavesacre]; + agronomia_F_N : N ; -- [GXXEK] :: agronomy; + agrosius_A : A ; -- [XAXFO] :: possessing land (?); + agrostis_F_N : N ; -- [XAXFS] :: couch-grass, quitch grass; + agrosus_A : A ; -- [XAXFS] :: rich in land; + agrypnia_F_N : N ; -- [DXXFS] :: sleeplessness; + aguna_F_N : N ; -- [XAXEO] :: square actus (120 feet square) (measure of land); + ah_Interj : Interj ; -- [XXXCO] :: exclamation expressing surprise/irony; + aha_Interj : Interj ; -- [XXXEO] :: exclamation expressing surprise/irony; + aheneus_A : A ; -- [XXXCO] :: copper, of copper; bronze, made of bronze; + ahenipes_A : A ; -- [XXXFS] :: bronze-footed, that has feet of bronze; + ahenum_N_N : N ; -- [XXXCO] :: vessel made of copper/bronze; brazen vessel; kettle, pot, cauldron; + ahenus_A : A ; -- [XXXCO] :: copper, of copper (alloy); bronze, made of bronze, bronze-colored; brazen; + ai_Interj : Interj ; -- [XXXFS] :: alas; exclamation expressing grief; + aiens_A : A ; -- [XXXFO] :: affirmative; affirming, saying aye; + aientia_F_N : N ; -- [DXXFS] :: affirmation; + aigilps_A : A ; -- [XXXFO] :: steep, sheer; + ain_N : N ; -- [DEQEW] :: ayin; (16th letter of Hebrew alphabet); (silent); + aio_V : V ; -- [XXXAO] :: say (defective), assert; say yes/so, affirm, assent; prescribe/lay down (law); + aisne_Interj : Interj ; -- [XXXES] :: indeed? really? is it possible? do you really mean it? (surprise/wonder); + ait_V0 : V ; -- [XXXAO] :: he says (ait), it is said; they say (aiunt); aithales_1_N : N ; -- [DAXFS] :: plant (aizoon), houseleek; - aithales_2_N : N ; - aizon_N_N : N ; - aizoon_N_N : N ; - ajuga_F_N : N ; - ala_F_N : N ; - alabaster_M_N : N ; - alabastrites_M_N : N ; - alabastritis_F_N : N ; - alabastrum_N_N : N ; - alabeta_M_N : N ; - alabetes_M_N : N ; - alacer_A : A ; - alacris_A : A ; - alacritas_F_N : N ; - alacriter_Adv : Adv ; - alapa_F_N : N ; - alaris_A : A ; - alaris_M_N : N ; - alarius_A : A ; - alarius_M_N : N ; - alaternus_F_N : N ; - alatus_A : A ; - alauda_F_N : N ; - alausa_F_N : N ; - alazon_M_N : N ; - alba_F_N : N ; - albamentum_N_N : N ; - albaris_A : A ; - albarium_N_N : N ; - albarius_A : A ; - albatus_A : A ; - albatus_M_N : N ; - albedo_F_N : N ; - albens_A : A ; - albeo_V : V ; - albesco_V : V ; - albicantius_Adv : Adv ; - albicapillus_A : A ; - albicasco_V : V ; - albiceratus_A : A ; - albiceris_A : A ; - albicerus_A : A ; - albico_V : V ; - albicolor_A : A ; - albicomus_A : A ; - albicor_V : V ; - albidus_A : A ; - albineus_A : A ; - albinus_M_N : N ; - albitudo_F_N : N ; - albo_V2 : V2 ; - albogalerus_M_N : N ; - albogilvus_A : A ; - albor_M_N : N ; - albucum_N_N : N ; - albucus_M_N : N ; - albuelis_F_N : N ; - albugo_F_N : N ; - albulus_A : A ; - album_N_N : N ; - albumen_N_N : N ; - albumentum_N_N : N ; - alburnum_N_N : N ; - alburnus_M_N : N ; - albus_A : A ; - alcalinus_A : A ; - alce_F_N : N ; - alcea_F_N : N ; - alcedo_F_N : N ; - alcedonium_N_N : N ; - alces_F_N : N ; - alchemia_F_N : N ; - alchimia_F_N : N ; - alchimista_M_N : N ; - alcibium_N_N : N ; - alcima_F_N : N ; - alcinus_A : A ; - alcmanius_A : A ; - alcohol_N_N : N ; - alcoholicus_A : A ; - alcoholismus_M_N : N ; - alcoranus_M_N : N ; - alcyon_F_N : N ; - alcyone_F_N : N ; - alcyoneum_N_N : N ; - alcyoneus_A : A ; - alcyonidus_A : A ; - alcyonis_A : A ; - alea_F_N : N ; - alearis_A : A ; - alearius_A : A ; - aleator_M_N : N ; - aleatorium_N_N : N ; - aleatorius_A : A ; - alebre_N_N : N ; - alebris_A : A ; - alec_N_N : N ; - alectoria_F_N : N ; - alectorios_A : A ; - alectorius_A : A ; - alecula_F_N : N ; - alembicum_N_N : N ; - aleo_M_N : N ; - aleph_N : N ; - alerius_A : A ; - ales_A : A ; + aithales_2_N : N ; -- [DAXFS] :: plant (aizoon), houseleek; + aizon_N_N : N ; -- [XAXNO] :: live-forever, houseleek (Sempervivum tectorum); + aizoon_N_N : N ; -- [XAXNS] :: live-forever, houseleek (Sempervivum tectorum); stone-crop (Sedum album); + ajuga_F_N : N ; -- [XBXFS] :: plant which has the power of producing abortion (also called abiga); + ala_F_N : N ; -- [XXXAO] :: wing; upper arm/foreleg/fin; armpit; squadron (cavalry), flank, army's wing; + alabaster_M_N : N ; -- [XXXDO] :: conical box for perfume (made of alabaster); antimony; + alabastrites_M_N : N ; -- [XXXEO] :: stalagmite (variegated alabaster, calcium carbonate); (for unguents); onyx; + alabastritis_F_N : N ; -- [XXXEO] :: precious stone; + alabastrum_N_N : N ; -- [XXXDO] :: conical box for perfume (made of alabaster); antimony; + alabeta_M_N : N ; -- [XAEFS] :: fish common in the Nile; + alabetes_M_N : N ; -- [XAENO] :: fish common in the Nile; + alacer_A : A ; -- [XXXBO] :: eager/keen/spirited; quick/brisk; active/lively; courageous/ready; cheerful; + alacris_A : A ; -- [XXXEO] :: eager/keen/spirited; quick/brisk; active/lively; courageous/ready; cheerful; + alacritas_F_N : N ; -- [XXXCO] :: eagerness, enthusiasm, ardor, alacrity; cheerfulness, liveliness; + alacriter_Adv : Adv ; -- [XXXEO] :: eagerly, briskly; + alapa_F_N : N ; -- [XXXDO] :: blow (with the flat of the hand), slap, smack; box on the ear; + alaris_A : A ; -- [XWXDO] :: of/consisting of auxiliary cavalry or other troops; + alaris_M_N : N ; -- [XWXCO] :: auxiliary cavalry (pl.) or other troops; + alarius_A : A ; -- [XWXDO] :: of the wing (of an army); pertaining to the auxiliary cavalry; + alarius_M_N : N ; -- [XWXDO] :: auxiliary troops (pl.), posted on the wings of the army; + alaternus_F_N : N ; -- [XAXEO] :: evergreen shrub, Buckthorn (used for pigments (e.g., sap-green)/cathartic); + alatus_A : A ; -- [XXXEO] :: winged, having/furnished with wings; + alauda_F_N : N ; -- [XXXDO] :: crested lark; legion raised by Caesar in Gaul; soldiers (pl.) of this legion; + alausa_F_N : N ; -- [DAFFS] :: small fish in the Moselle, shad (Culpea alusa); + alazon_M_N : N ; -- [XXXFS] :: braggart, boaster; + alba_F_N : N ; -- [DXXFS] :: |white precious stone; pearl; + albamentum_N_N : N ; -- [XXXES] :: white (of an egg); + albaris_A : A ; -- [DTXFS] :: of stucco, stucco; pertaining to the whitening of walls (L+S); + albarium_N_N : N ; -- [XTXEO] :: stucco, stucco-work; the whitening of walls; + albarius_A : A ; -- [XTXEO] :: of stucco, stucco; pertaining to the whitening of walls (L+S); + albatus_A : A ; -- [XXXDO] :: clothed in white; + albatus_M_N : N ; -- [XXXNO] :: White team/faction in chariot racing; + albedo_F_N : N ; -- [DEXES] :: white color, whiteness; + albens_A : A ; -- [XXXCO] :: white, light, bleached; made/covered in white; pale, pallid; bright, clear; + albeo_V : V ; -- [XXXCO] :: be/appear white/pale/light-colored/white with age; + albesco_V : V ; -- [XXXCO] :: become white/pale/light-colored/white with age; become bright, gleam, glow; + albicantius_Adv : Adv ; -- [DXXFS] :: somewhat in the way of white; + albicapillus_A : A ; -- [XXXFO] :: gray-haired; + albicasco_V : V ; -- [XXXFO] :: grow bright; + albiceratus_A : A ; -- [XXXNO] :: pale yellow, wax-white; [albicerata ficus => a variety of fig]; + albiceris_A : A ; -- [XXXEO] :: pale yellow, wax-white; [olea albiceris => a variety of olive]; + albicerus_A : A ; -- [XXXNO] :: pale yellow, wax-white; + albico_V : V ; -- [XXXCO] :: be white; have a whitish tinge, verge on white; + albicolor_A : A ; -- [DXXFS] :: of a white color, white colored; + albicomus_A : A ; -- [XXXFS] :: white-haired; having white fibers (flowers/plants); + albicor_V : V ; -- [XXXDO] :: be white; have a whitish tinge, verge on white; + albidus_A : A ; -- [XXXCO] :: white, whitish, pale; + albineus_A : A ; -- [DXXFS] :: white; + albinus_M_N : N ; -- [DTXFS] :: plasterer, one who covers walls with stucco/plaster; + albitudo_F_N : N ; -- [XXXFO] :: whiteness; + albo_V2 : V2 ; -- [DXXFS] :: make white; + albogalerus_M_N : N ; -- [CEXFO] :: white cap of the priest/flamen Dialis; + albogilvus_A : A ; -- [DXXFS] :: whitish yellow; + albor_M_N : N ; -- [DXXES] :: egg white; whiteness, white color (eccl.); + albucum_N_N : N ; -- [XAXNO] :: variety of asphodel/its stalk/reeds; (immortal lily, covered Elysian fields); + albucus_M_N : N ; -- [XAXES] :: bulb of the asphodel; the plant itself; + albuelis_F_N : N ; -- [XAXNO] :: variety of vine; + albugo_F_N : N ; -- [XBXEO] :: white opaque spot on the eye; disorder of the scalp; + albulus_A : A ; -- [XXXDO] :: white, pale, whitish; + album_N_N : N ; -- [GXXEK] :: |projection-screen; + albumen_N_N : N ; -- [XXXNS] :: egg white, albumen; + albumentum_N_N : N ; -- [DXXES] :: egg white; + alburnum_N_N : N ; -- [XAXNO] :: sapwood, soft white wood next to the bark of trees; + alburnus_M_N : N ; -- [DAXFS] :: white fish; (bleak or blay?); + albus_A : A ; -- [XXXAO] :: white, pale, fair, hoary, gray; bright, clear; favorable, auspicious, fortunate; + alcalinus_A : A ; -- [GSXEK] :: alkali; + alce_F_N : N ; -- [XAXEO] :: elk; + alcea_F_N : N ; -- [XAXNO] :: species of mallow (mucilaginous flowering plant having hairy stems and leaves); + alcedo_F_N : N ; -- [XAXEO] :: halcyon; kingfisher; sea birds (pl.); + alcedonium_N_N : N ; -- [XXXES] :: halcyon (breeding) days (pl.), winter calm; deep/profound calm/tranquility; + alces_F_N : N ; -- [XXXEO] :: moose, elk; + alchemia_F_N : N ; -- [GSXEK] :: alchemy; + alchimia_F_N : N ; -- [GSXEK] :: alchemy; + alchimista_M_N : N ; -- [GSXEK] :: alchemist; + alcibium_N_N : N ; -- [XAXNO] :: plant use as antidote for snake-bite; + alcima_F_N : N ; -- [XAXNO] :: water plantain; + alcinus_A : A ; -- [XAXIO] :: of an elk; + alcmanius_A : A ; -- [XPXES] :: Alcmanian (type of verse); (like Greek poet Alcman); + alcohol_N_N : N ; -- [GSXEK] :: alcohol; + alcoholicus_A : A ; -- [GXXEK] :: alcoholic; + alcoholismus_M_N : N ; -- [GXXEK] :: alcoholism; + alcoranus_M_N : N ; -- [GXXEK] :: Koran; + alcyon_F_N : N ; -- [XAXCO] :: halcyon; kingfisher; sea birds (pl.); + alcyone_F_N : N ; -- [XAXEO] :: halcyon; kingfisher; sea birds (pl.); + alcyoneum_N_N : N ; -- [XAXEO] :: kind of floating sponge, believed to be nest of halcyon; medicine from it; + alcyoneus_A : A ; -- [XXXFO] :: halcyon (days w/dies), time around the winter solstice when the halcyon breed; + alcyonidus_A : A ; -- [XXXFO] :: halcyon (days w/dies), time around the winter solstice when halcyon breed; + alcyonis_A : A ; -- [XXXNS] :: halcyon (breeding) (days) (pl.), winter calm; + alea_F_N : N ; -- [XXXBO] :: game of dice; die; dice-play; gambling, risking; chance, venture, risk, stake; + alearis_A : A ; -- [DXXFS] :: of/pertaining to a game of chance; + alearius_A : A ; -- [DXXES] :: of/pertaining to a game of chance; (friendships) formed at the gaming table; + aleator_M_N : N ; -- [XXXCO] :: dice-player, gambler; + aleatorium_N_N : N ; -- [DXXES] :: gaming house, place where games of chance are played; + aleatorius_A : A ; -- [XXXEO] :: of dice/gambling; of gambler/gamester; [aleatoria damna => losses at gambling]; + alebre_N_N : N ; -- [DXXFS] :: nourishing food (pl.); + alebris_A : A ; -- [XXXFO] :: nutritious; + alec_N_N : N ; -- [XXXFS] :: herrings; a fish sauce; pickle; + alectoria_F_N : N ; -- [XXXNO] :: precious stone, said to be found in gizzards of cocks; + alectorios_A : A ; -- [XXXNO] :: of/pertaining to a cock; [alectoros lophos => cock's comb., yellow rattle]; + alectorius_A : A ; -- [XXXNS] :: of/pertaining to a cock; [alectoros lophos => cock's comb., yellow rattle]; + alecula_F_N : N ; -- [XXXES] :: fish sauce; + alembicum_N_N : N ; -- [GXXEK] :: still; + aleo_M_N : N ; -- [XXXEO] :: gambler; + aleph_N : N ; -- [DEQEW] :: aleph; (1st letter of Hebrew alphabet); (silent, use as an A only in order); + alerius_A : A ; -- [XXXEQ] :: concerned with gambling; + ales_A : A ; -- [XXXCO] :: winged, having wings; swift/quick; [ales deus => Mercury; ales puer => Cupid]; 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 ; - alex_N_N : N ; - alexipharmacon_N_N : N ; - alga_F_N : N ; - algebra_F_N : N ; - algens_A : A ; - algensis_A : A ; - algeo_V : V ; - algesco_V : V ; - algidus_A : A ; - algificus_A : A ; - algor_M_N : N ; - algorithmus_M_N : N ; - algosus_A : A ; - algu_N_N : N ; - algus_M_N : N ; - alia_Adv : Adv ; - alias_Adv : Adv ; - aliatum_N_N : N ; - alibi_Adv : Adv ; - alibilis_A : A ; - alica_F_N : N ; - alicacius_A : A ; - alicaria_F_N : N ; - alicarius_A : A ; - alicarius_M_N : N ; - alicastrum_N_N : N ; - alicubi_Adv : Adv ; - alicula_F_N : N ; - alicunde_Adv : Adv ; - alienatio_F_N : N ; - alienigena_M_N : N ; - alienigenus_A : A ; - alieniloquium_N_N : N ; - alienitas_F_N : N ; - alieno_V2 : V2 ; - alienor_V : V ; - alienum_N_N : N ; - alienus_A : A ; - alienus_M_N : N ; - alietum_N_N : N ; - alifer_A : A ; - aliger_A : A ; - alii_Conj : Conj ; - alimentarius_A : A ; - alimentarius_M_N : N ; - alimentum_N_N : N ; - alimonia_F_N : N ; - alimonium_N_N : N ; - alio_Adv : Adv ; - alioqui_Adv : Adv ; - alioquin_Adv : Adv ; - aliorsum_Adv : Adv ; - aliorsus_Adv : Adv ; - aliovorsum_Adv : Adv ; - aliovorsus_Adv : Adv ; - alipes_A : A ; - alipes_M_N : N ; - alipilus_M_N : N ; - alipta_M_N : N ; - aliptes_M_N : N ; - aliqua_Adv : Adv ; - aliquam_Adv : Adv ; - aliquamdiu_Adv : Adv ; - aliquandiu_Adv : Adv ; - aliquando_Adv : Adv ; - aliquantillum_N_N : N ; - aliquantisper_Adv : Adv ; - aliquanto_Adv : Adv ; - aliquantorsum_Adv : Adv ; - aliquantulo_Adv : Adv ; - aliquantulum_Adv : Adv ; - aliquantulum_N_N : N ; - aliquantulus_A : A ; - aliquantum_Adv : Adv ; - aliquantum_N_N : N ; - aliquantus_A : A ; - aliquatenus_Adv : Adv ; - aliqui_Adv : Adv ; - aliquid_Adv : Adv ; - aliquit_Adv : Adv ; - aliquo_Adv : Adv ; - aliquod_A : A ; - aliquod_N : N ; - aliquodfariam_Adv : Adv ; - aliquomodo_Adv : Adv ; - aliquot_A : A ; - aliquot_N : N ; - aliquotfariam_Adv : Adv ; - aliquotiens_Adv : Adv ; - aliquoties_Adv : Adv ; - aliquovorsum_Adv : Adv ; - alisalius_A : A ; - alisma_N_N : N ; - aliter_Adv : Adv ; - alitudo_F_N : N ; - alitura_F_N : N ; - aliturgicus_A : A ; - alitus_M_N : N ; - aliubei_Adv : Adv ; - aliubi_Adv : Adv ; - alium_N_N : N ; - aliunde_Adv : Adv ; - alius_A : A ; - alius_Conj : Conj ; - aliusmodi_Adv : Adv ; - aliuta_Adv : Adv ; - allabor_V : V ; - allaboro_V : V ; - allacrimo_V : V ; - allambo_V2 : V2 ; - allapsus_M_N : N ; - allatro_V2 : V2 ; - allaudabilis_A : A ; - allaudo_V2 : V2 ; - allavo_V2 : V2 ; - allec_N_N : N ; - allectatio_F_N : N ; - allectator_M_N : N ; - allecto_V2 : V2 ; - allector_M_N : N ; - allectura_F_N : N ; - allegatio_F_N : N ; - allegatum_N_N : N ; - allegatus_M_N : N ; - allego_V2 : V2 ; - allegoria_F_N : N ; - allegorice_Adv : Adv ; - allegoricus_A : A ; - allegorizo_V : V ; - alleluiaticus_A : A ; - allenimentum_N_N : N ; - allergia_F_N : N ; - allergicus_A : A ; - allevamentum_N_N : N ; - allevatio_F_N : N ; - allevator_M_N : N ; - alleviatio_F_N : N ; - allevio_V2 : V2 ; - allevo_V2 : V2 ; - allex_N_N : N ; - alliatum_N_N : N ; - allibentia_F_N : N ; - allibesco_V : V ; - allicefacio_V2 : V2 ; - allicefio_V : V ; - allicio_V2 : V2 ; - allido_V2 : V2 ; - alligamentum_N_N : N ; - alligatio_F_N : N ; - alligator_M_N : N ; - alligatura_F_N : N ; - alligatus_M_N : N ; - alligo_V2 : V2 ; - allino_V2 : V2 ; - allisio_F_N : N ; - allium_N_N : N ; - alloco_V : V ; - allocutio_F_N : N ; - allodium_N_N : N ; - allophylus_A : A ; - alloquium_N_N : N ; - alloquor_V : V ; - allubentia_F_N : N ; - allubesco_V : V ; - alluceo_V : V ; - allucinator_M_N : N ; - alluctor_V : V ; - alludio_V : V ; - alludo_V2 : V2 ; - alluo_V2 : V2 ; - allus_M_N : N ; - allusio_F_N : N ; - alluvies_F_N : N ; - alluvio_F_N : N ; - alluvius_A : A ; - almarium_N_N : N ; - almitas_F_N : N ; - almities_F_N : N ; - almonium_N_N : N ; - almucia_F_N : N ; - almus_A : A ; - almutium_N_N : N ; - alneus_A : A ; - alnus_A : A ; - alnus_F_N : N ; - alo_V2 : V2 ; - aloe_F_N : N ; - alogia_F_N : N ; - alogus_A : A ; - alopecia_F_N : N ; - alopecis_F_N : N ; - alopecuros_F_N : N ; - alopex_F_N : N ; - alpha_N : N ; - alphabeticus_A : A ; - alphabetum_N_N : N ; - alphos_M_N : N ; - alphus_M_N : N ; - alsidena_F_N : N ; - alsine_F_N : N ; - alsiosus_A : A ; - alsiosus_M_N : N ; - alsius_A : A ; - alsulegia_F_N : N ; - alsus_A : A ; - altanus_M_N : N ; - altar_N_N : N ; - altaragium_N_N : N ; - altare_N_N : N ; - altarista_M_N : N ; - altarium_N_N : N ; - alte_Adv : Adv ; - alter_A : A ; - alter_Conj : Conj ; - alteramentum_N_N : N ; - alteras_Adv : Adv ; - alteratio_F_N : N ; - altercabilis_A : A ; - altercatio_F_N : N ; - altercator_M_N : N ; - alterco_V : V ; - altercor_V : V ; - alterculum_N_N : N ; - altercum_N_N : N ; - alterinsecus_Adv : Adv ; - alterius_Adv : Adv ; - alternatim_Adv : Adv ; - alternatio_F_N : N ; - alternatus_A : A ; - alterne_Adv : Adv ; - alternis_Adv : Adv ; - alterno_V : V ; - alternus_A : A ; - alterorsus_Adv : Adv ; - alterplex_A : A ; - alteruter_A : A ; - alterutraque_Adv : Adv ; - alterutrique_Adv : Adv ; - alterutrum_Adv : Adv ; - althaea_F_N : N ; - alticinctus_A : A ; - alticomus_A : A ; - altifrons_A : A ; - altijugus_A : A ; - altilaneus_A : A ; - altiliarius_M_N : N ; - altilis_A : A ; - altilis_F_N : N ; - altilium_N_N : N ; - altipendulus_A : A ; - altipotens_A : A ; - altisonus_A : A ; - altispex_M_N : N ; - altistria_F_N : N ; - altithronus_M_N : N ; - altitonans_A : A ; - altitonus_A : A ; - altitudo_F_N : N ; - altiuscule_Adv : Adv ; - altiusculus_A : A ; - altivolans_A : A ; - altivolus_A : A ; - alto_V2 : V2 ; - altor_M_N : N ; - altrimsecus_Adv : Adv ; - altrinsecus_Adv : Adv ; - altrix_F_N : N ; - altrovorsum_Adv : Adv ; - altruista_M_N : N ; - altum_Adv : Adv ; - altum_N_N : N ; - altus_A : A ; - altus_M_N : N ; - alucinatio_F_N : N ; - alucinator_M_N : N ; - alucinogenus_A : A ; - alucinor_V : V ; - alucita_F_N : N ; - alum_N_N : N ; - alumen_N_N : N ; - alumentarius_A : A ; - alumentarius_M_N : N ; - alumentum_N_N : N ; - aluminatius_M_N : N ; - aluminatus_A : A ; - aluminium_N_N : N ; - aluminosum_N_N : N ; - aluminosus_A : A ; - alumna_F_N : N ; - alumnaticum_N_N : N ; - alumno_V2 : V2 ; - alumnor_V : V ; - alumnula_F_N : N ; - alumnulus_M_N : N ; - alumnus_A : A ; - alumnus_M_N : N ; - alumonia_F_N : N ; - alumonium_N_N : N ; - alus_F_N : N ; - aluta_F_N : N ; - alutacius_A : A ; - alutarius_A : A ; - alvarium_N_N : N ; - alveare_N_N : N ; - alvearium_N_N : N ; - alveatus_A : A ; - alveolatus_A : A ; - alveolus_M_N : N ; - alveum_N_N : N ; - alveus_M_N : N ; - alvus_C_N : N ; - alypon_N_N : N ; - alysson_N_N : N ; - alytharcha_M_N : N ; - alytharches_M_N : N ; - alytharchia_M_N : N ; - ama_F_N : N ; - amabilis_A : A ; - amabilitas_F_N : N ; - amabiliter_Adv : Adv ; - amandatio_F_N : N ; - amando_V2 : V2 ; - amans_A : A ; + ales_M_N : N ; -- [XXXCO] :: bird; (esp. large); winged god/monster; omen/augury; [regia ales => eagle]; + alesco_V : V ; -- [XXXEO] :: be nourished; grow up; increase (late Latin); + aletudo_F_N : N ; -- [XXXFO] :: corpulence, fatness; + alex_N_N : N ; -- [XXXFS] :: herrings; a fish sauce; pickle; + alexipharmacon_N_N : N ; -- [XXXNO] :: antidote for poison; + alga_F_N : N ; -- [XXXCO] :: sea-weed; rubbish, uncountable stuff; water plants; + algebra_F_N : N ; -- [GSXEK] :: algebra; + algens_A : A ; -- [XXXCO] :: cold (weather), chilly (insufficient clothing); cold (of things normally hot); + algensis_A : A ; -- [XAXNO] :: living on seaweed (spec. of a variety of purple fish); + algeo_V : V ; -- [XXXCO] :: be/feel/become cold/chilly/cool; endure cold; be neglected/left in the cold; + algesco_V : V ; -- [DXXCS] :: catch cold; become cold (things); + algidus_A : A ; -- [XXXEO] :: cold; + algificus_A : A ; -- [XXXFO] :: chilling; + algor_M_N : N ; -- [XXXCO] :: cold, coldness; chilliness; a fit of shivering; cold weather (pl.); + algorithmus_M_N : N ; -- [GSXEK] :: algorithm; + algosus_A : A ; -- [XAXEO] :: abounding in/covered with seaweed; + algu_N_N : N ; -- [DXXES] :: feeling of cold; coldness; + algus_M_N : N ; -- [DXXES] :: feeling of cold; coldness; + alia_Adv : Adv ; -- [XXXCO] :: by another/different way/route; + alias_Adv : Adv ; -- [XXXAO] :: at/in another time/place; previously, subsequently; elsewhere; otherwise; + aliatum_N_N : N ; -- [XXXFO] :: food made with garlic; + alibi_Adv : Adv ; -- [XXXBO] :: elsewhere, in another place; in other respects , otherwise; in another matter; + alibilis_A : A ; -- [XAXEO] :: nourishing (food), nutritious; able to be fattened (animals); + alica_F_N : N ; -- [XAXCO] :: emmer (wheat) (Triticum dicoccum) groats/grits; porridge/gruel made with these; + alicacius_A : A ; -- [XAXNO] :: made of emmer (wheat) (Triticum dicoccum) groats/grits; spelt grits (L+S); + alicaria_F_N : N ; -- [XXXEO] :: prostitute (who often were found near the mill grinding alica), "mill girl"; + alicarius_A : A ; -- [XAXEO] :: connected with emmer (wheat) production; + alicarius_M_N : N ; -- [XAXES] :: miller who grinds emmer (wheat); (or spelt L+S); + alicastrum_N_N : N ; -- [XAXFO] :: early-ripening variety of emmer (wheat); summer-spelt (L+S); + alicubi_Adv : Adv ; -- [XXXCO] :: somewhere, anywhere; elsewhere; occasionally; + alicula_F_N : N ; -- [XXXEO] :: light coat/cloak/hunting dress; child's coat; + alicunde_Adv : Adv ; -- [XXXCO] :: from some place/somewhere, from some source or other; + alienatio_F_N : N ; -- [XXXCO] :: transference of ownership, the right to; aversion, dislike; numbness, stupor; + alienigena_M_N : N ; -- [XXXCO] :: stranger, foreigner, alien; something imported/exotic; foreign-born; + alienigenus_A : A ; -- [XXXCO] :: different, foreign, alien; of/born in another country; imported, exotic; mixed; + alieniloquium_N_N : N ; -- [DXXES] :: talk of crazy persons; crazy talk; + alienitas_F_N : N ; -- [DBXES] :: external causes of disease; + alieno_V2 : V2 ; -- [XXXAO] :: alienate, give up, lose possession, transfer by sale, estrange; become numb; + alienor_V : V ; -- [XXXCO] :: avoid (with antipathy); cause to feel disgust; be insane/mad; be different; + alienum_N_N : N ; -- [XXXCO] :: another's property/land/possessions; foreign soil; other's affairs/views (pl.); + alienus_A : A ; -- [XXXAO] :: foreign; unconnected; another's; contrary; unworthy; averse, hostile; mad; + alienus_M_N : N ; -- [XXXCO] :: foreigner; outsider; stranger to the family; person/slave of another house; + alietum_N_N : N ; -- [EAXFW] :: osprey; + alifer_A : A ; -- [XXXFO] :: winged; + aliger_A : A ; -- [XXXCO] :: winged, having wings; moving with the speed of flight; + alii_Conj : Conj ; -- [XXXCC] :: some ... others (alii ... alii); + alimentarius_A : A ; -- [XLXEO] :: of maintenance by (public) charity, welfare; charity supported; + alimentarius_M_N : N ; -- [XLXEO] :: person whose maintenance is provided by (public/private) charity/alms/by a will; + alimentum_N_N : N ; -- [XXXBO] :: food/nourishment, provisions; sustenance, maintenance, livelihood; alms; fuel; + alimonia_F_N : N ; -- [XXXCO] :: food, nourishment; feeding, nurture, upbringing; cost of maintenance; + alimonium_N_N : N ; -- [XXXCO] :: food, nourishment; feeding, nurture, upbringing; cost of maintenance; + alio_Adv : Adv ; -- [XXXBO] :: elsewhere, another direction; to another place/subject/purpose/course of action; + alioqui_Adv : Adv ; -- [XXXAO] :: otherwise, in other/some respects; besides, else; in any case; in general; + alioquin_Adv : Adv ; -- [XXXAO] :: otherwise, in other/some respects; besides, else; in any case; in general; + aliorsum_Adv : Adv ; -- [XXXCO] :: to another place/direction/person, elsewhere; different context/manner/sense; + aliorsus_Adv : Adv ; -- [XXXES] :: to another place/direction/person, elsewhere; different context/manner/sense; + aliovorsum_Adv : Adv ; -- [XXXDO] :: to another place/direction/person, elsewhere; different context/manner/sense; + aliovorsus_Adv : Adv ; -- [XXXES] :: to another place/direction/person, elsewhere; different context/manner/sense; + alipes_A : A ; -- [XXXFO] :: |without grease/fat, greaseless, fatless; + alipes_M_N : N ; -- [XXXCO] :: Mercury, the wing-footed god; + alipilus_M_N : N ; -- [XXXES] :: slave who plucked the hair from armpits of bathers; + alipta_M_N : N ; -- [XXXES] :: one who anoints; manager of school of wrestlers; master of wrestlers/the ring; + aliptes_M_N : N ; -- [XXXES] :: one who anoints; manager of school of wrestlers; master of wrestlers/the ring; + aliqua_Adv : Adv ; -- [XXXCO] :: somehow, in some way or another, by some means or other; to some extent; + aliquam_Adv : Adv ; -- [XXXDO] :: largely, to a large extent, a lot of; [~ multi/multum => fair number/amount]; + aliquamdiu_Adv : Adv ; -- [XXXCO] :: for some time, for a considerable time/distance (travel), for a while; + aliquandiu_Adv : Adv ; -- [XXXCO] :: for some time, for a considerable time/distance (travel), for a while; + aliquando_Adv : Adv ; -- [XXXAO] :: sometime (or other), at any time, ever; finally; before too late; at length; + aliquantillum_N_N : N ; -- [XXXFO] :: very small amount; very little indeed; a little bit; + aliquantisper_Adv : Adv ; -- [XXXCO] :: for some time, for a while; + aliquanto_Adv : Adv ; -- [XXXCO] :: somewhat, to/by some (considerable) extent/amount; considerably; + aliquantorsum_Adv : Adv ; -- [DXXES] :: somewhat toward (place); + aliquantulo_Adv : Adv ; -- [XXXFS] :: to a little/small amount/bit/extent; slightly, somewhat; + aliquantulum_Adv : Adv ; -- [XXXED] :: to a little/small amount/bit/extent; slightly, somewhat; + aliquantulum_N_N : N ; -- [XXXEO] :: little/small amount; a fair amount/good deal of; something; bit; + aliquantulus_A : A ; -- [XXXCS] :: little, small; a little/small amount/quantity/number/part/bit of; + aliquantum_Adv : Adv ; -- [XXXCO] :: to some extent, in some degree, somewhat, slightly, a little; + aliquantum_N_N : N ; -- [XXXCO] :: certain/fair amount/number/degree; a considerable quantity; a part/bit; + aliquantus_A : A ; -- [XXXCO] :: certain quantity/amount/number/size of; quite a quantity of; moderate; + aliquatenus_Adv : Adv ; -- [XXXCO] :: for a certain/restricted distance/time/degree/extent; while, up to a point; + aliqui_Adv : Adv ; -- [XXXEO] :: in some way/extent; + aliquid_Adv : Adv ; -- [XXXCO] :: to some degree/extent; somewhat; + aliquit_Adv : Adv ; -- [XXXCO] :: to some degree/extent; somewhat; + aliquo_Adv : Adv ; -- [XXXCO] :: to some place/person (or other); in some/any direction/quarter; some/anywhere; + aliquod_A : A ; -- [XXXCO] :: some, several; a few; not many; a number (of); more than one; + aliquod_N : N ; -- [XXXDO] :: some/several/a few people; more than one; a number; + aliquodfariam_Adv : Adv ; -- [XXXFO] :: in several places; + aliquomodo_Adv : Adv ; -- [FXXEE] :: in some manner, somehow; + aliquot_A : A ; -- [XXXCO] :: some, several; a few; not many; a number (of); more than one; + aliquot_N : N ; -- [XXXDO] :: some/several/a few people; more than one; a number; + aliquotfariam_Adv : Adv ; -- [XXXEO] :: in several places; + aliquotiens_Adv : Adv ; -- [XXXCO] :: number of times, several times; + aliquoties_Adv : Adv ; -- [XXXCO] :: number of times, several times; + aliquovorsum_Adv : Adv ; -- [XXXFO] :: in some direction/quarter; + alisalius_A : A ; -- [EXXEW] :: one another; [alisalios/in alisalio => against one another - Vulgate 4 Ezra]; + alisma_N_N : N ; -- [XAXNS] :: aquatic plant, water plantain (Alisma plantago); + aliter_Adv : Adv ; -- [XXXAO] :: otherwise, differently; in any other way [aliter ac => otherwise than]; + alitudo_F_N : N ; -- [XXXFS] :: nourishment; + alitura_F_N : N ; -- [XXXFO] :: feeding, nourishing; nature, rearing; + aliturgicus_A : A ; -- [EEXEE] :: without liturgy; + alitus_M_N : N ; -- [DXXES] :: nourishment, sustenance; support; + aliubei_Adv : Adv ; -- [XXXCO] :: in (an)other place/places; in one place..in another; in some cases, sometimes; + aliubi_Adv : Adv ; -- [EXXEZ] :: elsewhere, in another place; in other respects , otherwise; in another matter; + alium_N_N : N ; -- [XAXCO] :: garlic, garlic plant; + aliunde_Adv : Adv ; -- [XXXBO] :: from another person/place, from elsewhere/a different source/cause/material; + alius_A : A ; -- [XXXAQ] :: other, another; different, changed; [alii...alii => some...others]; (A+G); + alius_Conj : Conj ; -- [XXXCO] :: the_one ... the_other (alius ... alius); + aliusmodi_Adv : Adv ; -- [XXXCN] :: of another kind; in another way/different fashion; somehow else; + aliuta_Adv : Adv ; -- [XXXEO] :: in another way/manner, otherwise; + allabor_V : V ; -- [XXXCO] :: glide/move/flow/fall towards (w/DAT/ACC); creep up; steal into; fly (missiles); + allaboro_V : V ; -- [XXXEO] :: make a special effort; take trouble to; + allacrimo_V : V ; -- [XXXEL] :: shed tears, cry, weep (at or as an accompaniment to something); + allambo_V2 : V2 ; -- [XXXFO] :: lick (of flames); touch; + allapsus_M_N : N ; -- [XXXEO] :: gliding up; gliding/stealthy approach; flowing towards or near; + allatro_V2 : V2 ; -- [XXXCO] :: bark at; rail at; rage, roar (sea); + allaudabilis_A : A ; -- [XXXEO] :: praiseworthy, commendable; + allaudo_V2 : V2 ; -- [XXXFO] :: praise, commend; + allavo_V2 : V2 ; -- [XXXFO] :: flow up to (water), wash; + allec_N_N : N ; -- [XXXCO] :: herrings; a fish sauce; pickle; + allectatio_F_N : N ; -- [XXXFO] :: coaxing, enticing, encouragement, invitation; + allectator_M_N : N ; -- [XXXFO] :: one who coaxes/entices/attracts/invites/encourages; + allecto_V2 : V2 ; -- [XXXDO] :: entice, allure, encourage, invite; + allector_M_N : N ; -- [XXXIO] :: official of a collegium (concerned with dues or admission); + allectura_F_N : N ; -- [XXXIO] :: office of collector of revenues (colligium allector); + allegatio_F_N : N ; -- [XXXEO] :: allegation, charge; intercession; representation made on behalf of another; + allegatum_N_N : N ; -- [FXXEE] :: account; something pledged + allegatus_M_N : N ; -- [XXXEO] :: instigation, prompting; + allego_V2 : V2 ; -- [XXXCO] :: choose, admit, elect, recruit, select, appoint; + allegoria_F_N : N ; -- [XGXEO] :: allegory; + allegorice_Adv : Adv ; -- [DGXFS] :: allegorically; + allegoricus_A : A ; -- [DGXFS] :: allegorical; + allegorizo_V : V ; -- [DGXES] :: allegorize, speak in allegories; + alleluiaticus_A : A ; -- [FEXFE] :: pertaining to the alleluia; (w/versus) verses containing "alleluia"; + allenimentum_N_N : N ; -- [DBXFS] :: soothing remedy/relief; + allergia_F_N : N ; -- [GBXEK] :: allergy; + allergicus_A : A ; -- [GBXEK] :: allergic; + allevamentum_N_N : N ; -- [XXXEL] :: mitigation; relief, alleviation; + allevatio_F_N : N ; -- [XXXEO] :: alleviation, easing; relief; lifting up, raising; elevation; + allevator_M_N : N ; -- [DXXFS] :: one who lifts/raises up; + alleviatio_F_N : N ; -- [FXXEE] :: alleviation, easing; relief; lifting up, raising; elevation; + allevio_V2 : V2 ; -- [DXXES] :: lighten, make light; deal lightly/leniently with; raise up, relieve; + allevo_V2 : V2 ; -- [XXXDO] :: |smooth, smooth off, make smooth; polish; depilate; + allex_N_N : N ; -- [XXXCO] :: herrings; a fish sauce; pickle; + alliatum_N_N : N ; -- [XXXFS] :: food composed of/seasoned with garlic; + allibentia_F_N : N ; -- [XXXFO] :: inclination (for); + allibesco_V : V ; -- [XXXDO] :: be pleasing, gratify; be roused with desire (for); + allicefacio_V2 : V2 ; -- [XXXEO] :: entice, allure; attract, lure, seduce; + allicefio_V : V ; -- [XXXEO] :: be/become enticed/allured/lured; (allicefacio PASS); + allicio_V2 : V2 ; -- [XXXBO] :: draw gently to, entice, lure, induce (sleep), attract, win over, encourage; + allido_V2 : V2 ; -- [XXXCO] :: dash/crush against, bruise; ruin, damage; shipwreck; (PASS) suffer damage; + alligamentum_N_N : N ; -- [XXXES] :: band, binding, tie; + alligatio_F_N : N ; -- [XXXEO] :: tying or binding to supports; a bond; band; + alligator_M_N : N ; -- [XXXFO] :: one who ties or binds (to a support); + alligatura_F_N : N ; -- [XXXEO] :: band, binding; fastening; + alligatus_M_N : N ; -- [DXXES] :: slaves (pl.) who are fettered; + alligo_V2 : V2 ; -- [XXXAO] :: bind/fetter (to); bandage; hinder, impede, detain; accuse; implicate/involve in; + allino_V2 : V2 ; -- [XXXCO] :: smear/spread/dash over (W/DAT); spread out on; adhere to; + allisio_F_N : N ; -- [DXXFS] :: dashing against; striking upon; + allium_N_N : N ; -- [FAXEK] :: garlic; + alloco_V : V ; -- [FXXEM] :: stow; hire; let; + allocutio_F_N : N ; -- [EXXER] :: satisfaction; comfort; (Vulgate); + allodium_N_N : N ; -- [FLXEM] :: freehold; heritable estate; allod/alod/alloidium/aloidium;; + allophylus_A : A ; -- [DXXFS] :: foreign; of another race/stock; + alloquium_N_N : N ; -- [XXXCO] :: address, addressing, talk; talking to, encouragement, friendly/reassuring words; + alloquor_V : V ; -- [XXXCO] :: speak to (friendly); address, harangue, make a speech (to); call on; console; + allubentia_F_N : N ; -- [XXXFO] :: inclination (for); + allubesco_V : V ; -- [XXXEO] :: be pleasing, gratify; be roused with desire (for); + alluceo_V : V ; -- [XXXDO] :: shine upon; light (torch); show/give (opportunity/chance); give/supply light; + allucinator_M_N : N ; -- [DXXFS] :: idle dreamer, silly fellow; one who is wandering in mind; + alluctor_V : V ; -- [XXXEO] :: wrestle; wrestle with (w/DAT); + alludio_V : V ; -- [XXXEO] :: play/frolic (with); + alludo_V2 : V2 ; -- [XXXCO] :: frolic/play/sport around/with, play against; jest, make mocking allusion to; + alluo_V2 : V2 ; -- [XXXCO] :: wash/flow past/near/against, lap; beset; bathe (pers.) (tears); deposit silt; + allus_M_N : N ; -- [XBXFO] :: big toe; + allusio_F_N : N ; -- [DXXFS] :: playing/frolicking/sporting with; + alluvies_F_N : N ; -- [XXXCL] :: |inundation, flood; overflow; superabundance; + alluvio_F_N : N ; -- [XXXCO] :: flood, overflow; addition made to land by deposition of slit; superabundance; + alluvius_A : A ; -- [XXXFS] :: alluvial, from river overflow/deposit; + almarium_N_N : N ; -- [FEXEE] :: sacristy; + almitas_F_N : N ; -- [EEXCN] :: nurture, kindness; bounty; title/epithet for a bishop; + almities_F_N : N ; -- [DXXFS] :: kind behavior; + almonium_N_N : N ; -- [FXXEE] :: nourishment, food; + almucia_F_N : N ; -- [FEXFE] :: amice; (oblong white shawl draped over shoulders of priest, worn w/alb); + almus_A : A ; -- [XXXCO] :: nourishing, kind, propitious; of a nurse/breast, providing nurture, fostering; + almutium_N_N : N ; -- [FEXFE] :: mozzetta; (short vestment with hood worn by Pope and others he designates); + alneus_A : A ; -- [XXXFO] :: of alder-wood, alder; + alnus_A : A ; -- [XXXEO] :: of alder-wood, alder-; + alnus_F_N : N ; -- [XXXCO] :: alder; (something usually made of alder wood) plank, bridge, boat, ship; + alo_V2 : V2 ; -- [XXXAO] :: feed, nourish, rear, nurse, suckle; cherish; support, maintain, develop; + aloe_F_N : N ; -- [XXXEO] :: aloe plant (Aloe vera); thickened aloe juice (as purgative); bitterness; + alogia_F_N : N ; -- [XXXEO] :: folly, nonsense; irrational conduct/action; dumbness, muteness (L+S); + alogus_A : A ; -- [DXXFS] :: irrational, nonsensical; that does not correspond (math); irregular (verse); + alopecia_F_N : N ; -- [XBXEO] :: bald patch on head (from mange); fox mange (usu. pl.) (L+S); + alopecis_F_N : N ; -- [XAXNO] :: variety of vine; + alopecuros_F_N : N ; -- [XAXNO] :: beard-grass, similar grass; fox-tail (L+S); + alopex_F_N : N ; -- [XAXNO] :: thresher shark (alopias vulpes); sea-fox (L+S); + alpha_N : N ; -- [XXHEO] :: alpha, 1st letter of Greek alphabet; A; first/foremost (group/class); beginning; + alphabeticus_A : A ; -- [GGXEK] :: alphabetic; + alphabetum_N_N : N ; -- [DXGES] :: alphabet; + alphos_M_N : N ; -- [XBXFO] :: skin disease (psoriasis gutlata?); white spot on the skin (L+S); + alphus_M_N : N ; -- [XBXFS] :: skin disease (psoriasis gutlata?); white spot on the skin (L+S); + alsidena_F_N : N ; -- [XAXNS] :: kind of onion; + alsine_F_N : N ; -- [XAXNO] :: plant of the genus Partietaris, pellitory (used in medicine); + alsiosus_A : A ; -- [XXXEO] :: liable to be injured by the cold; + alsiosus_M_N : N ; -- [XBXFO] :: people (pl.) liable to catch cold; + alsius_A : A ; -- [XXXFO] :: liable to injury from cold; chilly/cool/cold (L+S); + alsulegia_F_N : N ; -- [GDXEK] :: hockey; + alsus_A : A ; -- [XXXEO] :: cool, chilly (of a place); + altanus_M_N : N ; -- [XXXEO] :: south-south-west wind; land breeze; + altar_N_N : N ; -- [DXXES] :: altar, fittings for burnt offerings; burnt offerings; high altar; + altaragium_N_N : N ; -- [FEXEE] :: altarage, stole fees, perquisites for baptism/marriage/etc.; + altare_N_N : N ; -- [XXXCO] :: altar (usu. pl.), fitting for burnt offerings; burnt offering; high altar; + altarista_M_N : N ; -- [FEXEE] :: assistant priest; + altarium_N_N : N ; -- [EEXDW] :: altar; high altar; + alte_Adv : Adv ; -- [XXXAO] :: high, on high, from above, loftily; deep, deeply; far, remotely; profoundly; + alter_A : A ; -- [XXXAO] :: |second/further/next/other/latter/some person/thing (PRONominal ADJ); either; + alter_Conj : Conj ; -- [XXXCO] :: the_one ... the_other (alter ... alter); otherwise; + alteramentum_N_N : N ; -- [DXXFS] :: alteration, change; + alteras_Adv : Adv ; -- [XXXEO] :: at another time; at one time ... at another; + alteratio_F_N : N ; -- [FXXDE] :: alteration, change; + altercabilis_A : A ; -- [DXXFS] :: quarrelsome, contentious; + altercatio_F_N : N ; -- [XLXCO] :: contention, dispute, wrangle, altercation; debate, argument (law), repartee; + altercator_M_N : N ; -- [XLXEO] :: disputant, one who conducts exchanges with opponent in law-court; + alterco_V : V ; -- [XLXCO] :: argue/bicker/dispute/wrangle/quarrel; dispute in court; exchange conversation; + altercor_V : V ; -- [XLXCO] :: argue/bicker/dispute/wrangle/quarrel; dispute in court; exchange conversation; + alterculum_N_N : N ; -- [DAXFS] :: henbane, plant of genus Hyoscyamus; + altercum_N_N : N ; -- [XAXFO] :: henbane, plant of genus Hyoscyamus; + alterinsecus_Adv : Adv ; -- [XXXFO] :: on the other side; + alterius_Adv : Adv ; -- [FXXEE] :: of one another; + alternatim_Adv : Adv ; -- [XXXFO] :: by turns, alternately; + alternatio_F_N : N ; -- [XXXCO] :: alternation, alternate movement; alternative; ambivalence; + alternatus_A : A ; -- [XXXDO] :: alternate, succeeding each in turn; alternative; + alterne_Adv : Adv ; -- [XXXFS] :: by turns, alternately; + alternis_Adv : Adv ; -- [XXXCO] :: alternately; one after the other in turn, by turns; every other day/year; + alterno_V : V ; -- [XXXBO] :: do by turns, vary; alternate, waver, ebb and flow; bear/crop in alternate years; + alternus_A : A ; -- [XXXAO] :: alternate, one after the/every other, by turns, successive; mutual; reciprocal; + alterorsus_Adv : Adv ; -- [XXXFO] :: in the other direction; on the other side; + alterplex_A : A ; -- [DXXFS] :: twofold, double; divided; + alteruter_A : A ; -- [XXXCO] :: one (of two), one or the other; either; both; (PRONominal ADJ) + alterutraque_Adv : Adv ; -- [XXXFS] :: on both sides, in both cases; + alterutrique_Adv : Adv ; -- [XXXFS] :: on both sides, in both cases; + alterutrum_Adv : Adv ; -- [FXXEE] :: one to another; + althaea_F_N : N ; -- [XAXNO] :: marshmallow (Athaea officinalis); + alticinctus_A : A ; -- [XXXFL] :: high-girded; active, busy; + alticomus_A : A ; -- [DAXFS] :: having foliage high up/at the top (trees); + altifrons_A : A ; -- [XXXIO] :: having lofty forehead; + altijugus_A : A ; -- [DXXFS] :: that has a lofty summit (mountain); + altilaneus_A : A ; -- [XAXIO] :: having long/thick wool; + altiliarius_M_N : N ; -- [XAXIO] :: keeper of fowls, poultry farmer/fattener; + altilis_A : A ; -- [XAXCO] :: fattened, fat, raised/fed up for eating; rich (dowry); well-fed, pampered; + altilis_F_N : N ; -- [XAXCO] :: table bird, fattened bird/fowl; + altilium_N_N : N ; -- [FEXFE] :: fatlings (pl.); + altipendulus_A : A ; -- [XXXFO] :: high-hanging, hanging high; + altipotens_A : A ; -- [DXXES] :: very mighty, of high/great power; + altisonus_A : A ; -- [XXXDO] :: of lofty sound, that sounds high up/in the heavens; sublime; high-sounding; + altispex_M_N : N ; -- [DXXES] :: looking down from on high; + altistria_F_N : N ; -- [GDXEK] :: alto; + altithronus_M_N : N ; -- [FEXEN] :: one enthroned on high; seated in heaven; + altitonans_A : A ; -- [XXXEO] :: thundering from on high; that which thunders high in the sky; + altitonus_A : A ; -- [XXXFS] :: of the fiery zone; + altitudo_F_N : N ; -- [XXXAO] :: height, altitude; depth; loftiness, profundity, noblemindedness, secrecy; + altiuscule_Adv : Adv ; -- [XXXEO] :: at fairly high level, rather high; + altiusculus_A : A ; -- [XXXFO] :: rather higher than normal; + altivolans_A : A ; -- [XXXEO] :: high flying; soaring; flying high; + altivolus_A : A ; -- [XXXNO] :: high flying; soaring; flying high; + alto_V2 : V2 ; -- [DXXFS] :: raise, make high, elevate; + altor_M_N : N ; -- [XXXCO] :: nourisher, sustainer; foster father, one who raises another's child; + altrimsecus_Adv : Adv ; -- [XXXDO] :: on the other side; + altrinsecus_Adv : Adv ; -- [XXXDO] :: on the other side; + altrix_F_N : N ; -- [XXXCO] :: nourisher, sustainer; wet nurse, nurse; foster mother; motherland, homeland; + altrovorsum_Adv : Adv ; -- [XXXFO] :: on the other hand; + altruista_M_N : N ; -- [GXXEK] :: altruist; + altum_Adv : Adv ; -- [XXXCS] :: deeply, deep; high, on high, from above; + altum_N_N : N ; -- [XXXBO] :: the_deep, the_sea; deep water; a height/depth; remote/obscure period/source; + altus_A : A ; -- [XXXAO] :: high; deep/profound; shrill; lofty/noble; deep rooted; far-fetched; grown great; + altus_M_N : N ; -- [DXXFS] :: nourishing, support; + alucinatio_F_N : N ; -- [XXXEO] :: wandering in mind, idle dream, delusion; idle/aimless behavior (w/mentis); + alucinator_M_N : N ; -- [DXXFS] :: idle dreamer, silly fellow; one who is wandering in mind; + alucinogenus_A : A ; -- [GBXEK] :: hallucinogenic; + alucinor_V : V ; -- [XXXCO] :: wander in mind, talk idly/unreasonably, ramble, dream; wander; + alucita_F_N : N ; -- [XAXFO] :: gnat; + alum_N_N : N ; -- [XAXEO] :: species of comfrey plant; garlic; + alumen_N_N : N ; -- [XXXCO] :: alum; astringent substance (sulfates of aluminum), potash alum; + alumentarius_A : A ; -- [XXXEO] :: of maintenance by (public) charity, welfare; charity supported; + alumentarius_M_N : N ; -- [XXXEO] :: person whose maintenance is provided by (public/private) charity/alms; + alumentum_N_N : N ; -- [XXXCO] :: food, fuel; nourishment, provisions; sustenance, maintenance, livelihood, alms; + aluminatius_M_N : N ; -- [XXXIO] :: dealer in alum; + aluminatus_A : A ; -- [XXXNO] :: containing alum; + aluminium_N_N : N ; -- [GSXEK] :: aluminum; + aluminosum_N_N : N ; -- [XXXFO] :: aluminous strata (pl.) (containing alum); + aluminosus_A : A ; -- [XXXEO] :: containing alum; + alumna_F_N : N ; -- [XXXCO] :: nursling, young animal/plant; foster-child, ward; native son; disciple, pupil; + alumnaticum_N_N : N ; -- [FEXFE] :: annual tax for maintenance of a seminary; + alumno_V2 : V2 ; -- [DXXES] :: nurture, nourish; rear (children), educate; train (animals); + alumnor_V : V ; -- [XXXDO] :: nurture, nourish; rear (children), educate; train (animals); + alumnula_F_N : N ; -- [XXXIO] :: little foster-daughter; + alumnulus_M_N : N ; -- [XXXFO] :: little foster-son; + alumnus_A : A ; -- [XXXCO] :: nourished, brought up; reared/fostered by; native, brought up locally; + alumnus_M_N : N ; -- [XXXBO] :: nursling, young animal/plant; ward, protegee; native daughter; nurse, mother; + alumonia_F_N : N ; -- [XXXEW] :: food, nourishment; feeding, nurture, upbringing; + alumonium_N_N : N ; -- [XXXEW] :: food, nourishment; feeding, nurture, upbringing; cost of maintenance; + alus_F_N : N ; -- [XAXNO] :: species of comfrey plant; garlic; + aluta_F_N : N ; -- [XXXCO] :: piece/kind of soft leather (prepared with alum); purse/pouch; shoe; beauty patch + alutacius_A : A ; -- [DXXES] :: pertaining to soft leather; + alutarius_A : A ; -- [DXXFS] :: made of soft leather; + alvarium_N_N : N ; -- [XAXDO] :: beehive; apiary, bee-house; + alveare_N_N : N ; -- [XAXEO] :: beehive; + alvearium_N_N : N ; -- [XAXFO] :: beehive; apiary; + alveatus_A : A ; -- [XXXFO] :: hollowed-out like a trough, trough-shaped; + alveolatus_A : A ; -- [XXXFO] :: hollowed-out like a trough, trough-shaped; + alveolus_M_N : N ; -- [XXXCO] :: basin, (serving) bowl, trough; tray (dim.); bath-tub; gameboard; channel, bed; + alveum_N_N : N ; -- [XXXIO] :: bath, bath-tub; + alveus_M_N : N ; -- [XWXBO] :: |hold (ship), ship, boat; channel, bed (river), trench; + alvus_C_N : N ; -- [XBXAO] :: belly/paunch/stomach; womb; bowel; bowel movement; hull (ship); beehive; cavity; + alypon_N_N : N ; -- [XAXNO] :: turpeth (globularia alypum); (extract acts as active, gentle purgative); + alysson_N_N : N ; -- [XAXNO] :: kind of madder; (plant used for red dye, also medicine); + alytharcha_M_N : N ; -- [XEXFS] :: magistrate who superintended religious exhibitions; + alytharches_M_N : N ; -- [XEXFS] :: magistrate who superintended religious exhibitions; + alytharchia_M_N : N ; -- [XEXFS] :: office of magistrate who superintended religious exhibitions; + ama_F_N : N ; -- [XXXDO] :: bucket; water bucket; (esp. fireman's bucket); + amabilis_A : A ; -- [XXXCO] :: worthy to be loved, lovable; amiable, pleasant; lovely, attractive, delightful; + amabilitas_F_N : N ; -- [XXXEO] :: attractiveness, lovableness; + amabiliter_Adv : Adv ; -- [XXXCO] :: lovingly; pleasantly; in a loving/friendly manner; + amandatio_F_N : N ; -- [XXXFO] :: dismissal, banishment, sending away; regulation; + amando_V2 : V2 ; -- [XXXCO] :: send away, dismiss, banish; regulate; + amans_A : A ; -- [XXXCO] :: loving/fond/affectionate; beloved/dear to; friendly/kind; having love/affection; amans_F_N : N ; -- [XXXCO] :: lover, sweetheart; mistress; one who is fond/affectionate; - amans_M_N : N ; - amanter_Adv : Adv ; + amans_M_N : N ; -- [XXXCO] :: lover, sweetheart; mistress; one who is fond/affectionate; + amanter_Adv : Adv ; -- [XXXDO] :: lovingly, affectionately; with love/affection; amanuensis_F_N : N ; -- [XXXEO] :: secretary, clerk; - amanuensis_M_N : N ; - amaracinum_N_N : N ; - amaracinus_A : A ; - amaracum_N_N : N ; - amaracus_C_N : N ; - amarantus_M_N : N ; - amare_Adv : Adv ; - amaresco_V : V ; - amarico_V2 : V2 ; - amaricor_V : V ; - amaritas_F_N : N ; - amariter_Adv : Adv ; - amarities_F_N : N ; - amaritudo_F_N : N ; - amaror_M_N : N ; - amarulentia_F_N : N ; - amarulentus_A : A ; - amarum_Adv : Adv ; - amarum_N_N : N ; - amarus_A : A ; - amasco_V : V ; - amasia_F_N : N ; - amasio_M_N : N ; - amasiuncula_F_N : N ; - amasiunculus_M_N : N ; - amasius_M_N : N ; - amata_F_N : N ; - amatio_F_N : N ; - amator_M_N : N ; - amatorculus_M_N : N ; - amatorie_Adv : Adv ; - amatorium_N_N : N ; - amatorius_A : A ; - amatrix_A : A ; - amatrix_F_N : N ; - amaturio_V2 : V2 ; - amatus_A : A ; - amaxites_M_N : N ; - ambactus_M_N : N ; - ambadedo_V2 : V2 ; - ambages_F_N : N ; - ambagiosus_A : A ; - ambago_F_N : N ; - ambarvalis_A : A ; - ambecisus_M_N : N ; - ambedo_V2 : V2 ; - ambestrix_F_N : N ; - ambidens_M_N : N ; - ambienter_Adv : Adv ; - ambifariam_Adv : Adv ; - ambifarie_Adv : Adv ; - ambifarius_A : A ; - ambiga_F_N : N ; - ambigo_V : V ; - ambigue_Adv : Adv ; - ambiguitas_F_N : N ; - ambiguum_N_N : N ; - ambiguus_A : A ; - ambio_V2 : V2 ; - ambitio_F_N : N ; - ambitiose_Adv : Adv ; - ambitiosus_A : A ; - ambitor_M_N : N ; - ambitudo_F_N : N ; - ambitus_M_N : N ; - ambivalentia_F_N : N ; - ambivium_N_N : N ; - ambligonius_A : A ; - amblygonius_A : A ; - ambolagium_N_N : N ; - ambon_M_N : N ; - ambro_M_N : N ; - ambroscus_A : A ; - ambrosia_F_N : N ; - ambrosiacus_A : A ; - ambrosialis_A : A ; - ambrosius_A : A ; - ambubaia_F_N : N ; - ambubeia_F_N : N ; - ambufariam_Adv : Adv ; - ambulacrum_N_N : N ; - ambulatilis_A : A ; - ambulatio_F_N : N ; - ambulatiuncula_F_N : N ; - ambulativum_N_N : N ; - ambulator_M_N : N ; - ambulatorius_A : A ; - ambulatrix_A : A ; - ambulatura_F_N : N ; - ambulo_V : V ; - ambultus_M_N : N ; - amburbale_N_N : N ; - amburbium_N_N : N ; - amburo_V2 : V2 ; - ambustio_F_N : N ; - ambustulatus_A : A ; - ambustum_N_N : N ; - amellus_M_N : N ; - amen_Adv : Adv ; - amendator_M_N : N ; - amens_A : A ; - amentia_F_N : N ; - amentius_Adv : Adv ; - amento_V2 : V2 ; - amentum_N_N : N ; - amercio_V : V ; - amerimnon_N_N : N ; - ames_M_N : N ; - amethystinatus_A : A ; - amethystinus_A : A ; - amethystizon_A : A ; - amethystus_A : A ; - amethystus_F_N : N ; - ametor_A : A ; - amfitapa_F_N : N ; - amflexus_A : A ; - amfractus_M_N : N ; - ami_N : N ; - amia_F_N : N ; - amiantus_M_N : N ; - amias_M_N : N ; - amica_F_N : N ; - amicabilis_A : A ; - amicabiliter_Adv : Adv ; - amicalis_A : A ; - amicarius_M_N : N ; - amice_Adv : Adv ; - amicicia_F_N : N ; - amicimen_N_N : N ; - amicinum_N_N : N ; - amicio_V2 : V2 ; - amiciter_Adv : Adv ; - amicitia_F_N : N ; - amicities_F_N : N ; - amico_V2 : V2 ; - amicosus_A : A ; - amictorium_N_N : N ; - amictorius_A : A ; - amictus_M_N : N ; - amicula_F_N : N ; - amiculum_N_N : N ; - amiculus_M_N : N ; - amicus_A : A ; - amicus_M_N : N ; - amigro_V : V ; - amilum_N_N : N ; - amissibilis_A : A ; - amissio_F_N : N ; - amissus_M_N : N ; - amita_F_N : N ; - amitina_F_N : N ; - amitinus_A : A ; - amitinus_M_N : N ; - amitto_V2 : V2 ; - amium_N_N : N ; - ammaturo_V2 : V2 ; - ammento_V2 : V2 ; - ammentum_N_N : N ; - ammeo_V : V ; - ammetior_V : V ; - ammi_N : N ; - ammigro_V : V ; - amminiculabundus_A : A ; - amminiculator_M_N : N ; - amminiculatus_A : A ; - amminiculo_V2 : V2 ; - amminiculor_V : V ; - amminiculum_N_N : N ; - amminister_M_N : N ; - amministra_F_N : N ; - amministratio_F_N : N ; - amministrativus_A : A ; - amministrator_M_N : N ; - amministratorius_A : A ; - amministro_V : V ; - ammirabilis_A : A ; - ammirabilitas_F_N : N ; - ammirabiliter_Adv : Adv ; - ammirandus_A : A ; - ammiranter_Adv : Adv ; - ammiratio_F_N : N ; - ammirator_M_N : N ; - ammiror_V : V ; - ammisceo_V2 : V2 ; - ammissarius_A : A ; - ammissarius_M_N : N ; - ammissio_F_N : N ; - ammissionalis_M_N : N ; - ammissivus_A : A ; - ammissor_M_N : N ; - ammissum_N_N : N ; - ammissura_F_N : N ; - ammissus_M_N : N ; - ammistio_F_N : N ; - ammistus_M_N : N ; - ammitto_V2 : V2 ; - ammium_N_N : N ; - ammixtio_F_N : N ; - ammixtus_A : A ; - ammixtus_M_N : N ; - ammochrysus_M_N : N ; - ammoderate_Adv : Adv ; - ammoderor_V : V ; - ammodo_Adv : Adv ; - ammodulor_V : V ; - ammodum_Adv : Adv ; - ammodytes_M_N : N ; - ammoenio_V2 : V2 ; - ammolior_V : V ; - ammonefacio_V2 : V2 ; - ammonefio_V : V ; - ammoneo_V2 : V2 ; - ammoniacum_N_N : N ; - ammoniacus_A : A ; - ammonitio_F_N : N ; - ammonitor_M_N : N ; - ammonitorium_N_N : N ; - ammonitrix_F_N : N ; - ammonitrum_N_N : N ; - ammonitum_N_N : N ; - ammonitus_M_N : N ; - ammordeo_V2 : V2 ; - ammorsus_A : A ; - ammorsus_M_N : N ; - ammotio_F_N : N ; - ammoveo_V2 : V2 ; - ammugio_V : V ; - ammulco_V2 : V2 ; - ammurmuratio_F_N : N ; - ammurmuro_V : V ; - ammurmuror_V : V ; - ammutilo_V2 : V2 ; - amnacum_N_N : N ; - amnensis_F_N : N ; - amnesis_F_N : N ; - amnestia_F_N : N ; - amnicolus_A : A ; - amniculus_M_N : N ; - amnicus_A : A ; - amnigenus_A : A ; - amnis_M_N : N ; - amo_V : V ; - amodo_Adv : Adv ; - amoebaeus_A : A ; - amoene_Adv : Adv ; - amoenitas_F_N : N ; - amoeniter_Adv : Adv ; - amoeno_V2 : V2 ; - amoenum_N_N : N ; - amoenus_A : A ; - amoletum_N_N : N ; - amolior_V : V ; - amolitio_F_N : N ; - amomis_F_N : N ; - amomon_N_N : N ; - amomum_N_N : N ; - amor_M_N : N ; - amorabundus_A : A ; - amorifer_A : A ; - amorificus_A : A ; - amortizatio_F_N : N ; - amos_M_N : N ; - amothystinatus_A : A ; - amotibilis_A : A ; - amotio_F_N : N ; - amoveo_V2 : V2 ; - amovibilis_A : A ; - amovibilitas_F_N : N ; - ampelinus_A : A ; - ampelitis_F_N : N ; - ampelodesmos_M_N : N ; - ampeloeuce_F_N : N ; - ampeloprason_N_N : N ; - ampelos_F_N : N ; - ampendix_M_N : N ; - amperium_N_N : N ; - amphemerinos_A : A ; - amphibalus_M_N : N ; - amphibius_A : A ; - amphibolia_F_N : N ; - amphibologia_F_N : N ; - amphibolus_A : A ; - amphibrachus_M_N : N ; - amphibrachysos_M_N : N ; - amphibrevis_M_N : N ; - amphicomos_M_N : N ; - amphidane_F_N : N ; - amphimacros_M_N : N ; - amphimacrus_M_N : N ; - amphimallium_N_N : N ; - amphimallum_N_N : N ; - amphiprostylos_F_N : N ; - amphisbaena_F_N : N ; - amphisporum_N_N : N ; - amphistomus_A : A ; - amphitane_F_N : N ; - amphitapos_M_N : N ; - amphithalamos_M_N : N ; - amphitheatralis_A : A ; - amphitheatricus_A : A ; - amphitheatriticus_A : A ; - amphitheatrum_N_N : N ; - amphora_F_N : N ; - amphoralis_A : A ; - amphorarius_A : A ; - ampla_F_N : N ; - ample_Adv : Adv ; - amplector_V : V ; - amplexo_V2 : V2 ; - amplexor_V : V ; - amplexus_M_N : N ; - ampliatio_F_N : N ; - ampliator_M_N : N ; - amplificatio_F_N : N ; - amplificator_M_N : N ; - amplificatrum_N_N : N ; - amplifice_Adv : Adv ; - amplifico_V2 : V2 ; - amplificus_A : A ; - amplio_V2 : V2 ; - ampliter_Adv : Adv ; - amplitudo_F_N : N ; - amplius_A : A ; - amplius_Adv : Adv ; - amplius_N : N ; - ampliuscule_Adv : Adv ; - ampliusculus_A : A ; - amplo_V2 : V2 ; - amploctor_V : V ; - amplus_A : A ; - ampola_F_N : N ; - ampollata_F_N : N ; - amptruo_V : V ; - ampulla_F_N : N ; - ampullaceus_A : A ; - ampullarius_M_N : N ; - ampullor_V : V ; - amputatio_F_N : N ; - amputo_V2 : V2 ; - amtruo_V : V ; - amula_F_N : N ; - amuletum_N_N : N ; - amulum_N_N : N ; - amurca_F_N : N ; - amurcarius_A : A ; - amurga_F_N : N ; - amusia_F_N : N ; - amusium_N_N : N ; - amusos_A : A ; - amussis_F_N : N ; - amussito_V2 : V2 ; - amussium_N_N : N ; - amycticus_A : A ; - amydalinus_A : A ; - amygdala_F_N : N ; - amygdalaceus_A : A ; - amygdale_F_N : N ; - amygdaleus_A : A ; - amygdalinus_A : A ; - amygdalites_M_N : N ; - amygdalum_N_N : N ; - amygdalus_F_N : N ; - amylo_V2 : V2 ; - amylum_N_N : N ; - amystis_F_N : N ; - an_Conj : Conj ; - anabaptismus_M_N : N ; - anabaptista_F_N : N ; - anabasis_F_N : N ; - anabathrum_N_N : N ; - anaboladium_N_N : N ; - anabolagium_N_N : N ; - anabolarium_N_N : N ; - anabolium_N_N : N ; - anacampserox_F_N : N ; - anachites_F_N : N ; - anachoresis_F_N : N ; - anachoreta_M_N : N ; - anachoreticus_A : A ; - anachorita_M_N : N ; - anachronismus_M_N : N ; - anaclinterium_N_N : N ; - anactorium_N_N : N ; - anadema_N_N : N ; + amanuensis_M_N : N ; -- [XXXEO] :: secretary, clerk; + amaracinum_N_N : N ; -- [XXXEO] :: perfume/ointment of marjoram; + amaracinus_A : A ; -- [XAXNO] :: made with/of marjoram; + amaracum_N_N : N ; -- [XAXCO] :: marjoram; feverfew (pyrethrum parthenium); + amaracus_C_N : N ; -- [XAXCO] :: marjoram; feverfew (pyrethrum parthenium); + amarantus_M_N : N ; -- [XAXDO] :: amaranth (imaginary flower said never to fade)/(ornamental w/colored leaves); + amare_Adv : Adv ; -- [XXXDO] :: with bitterness, acidly, spitefully, bitterly; + amaresco_V : V ; -- [DXXFS] :: become bitter; + amarico_V2 : V2 ; -- [DEXES] :: make bitter; excite, irritate; + amaricor_V : V ; -- [FXXEE] :: grow bitter; + amaritas_F_N : N ; -- [XXXFO] :: bitterness (of taste), harshness; + amariter_Adv : Adv ; -- [XXXFS] :: with bitterness, acidly, spitefully, bitterly; + amarities_F_N : N ; -- [XXXFO] :: bitterness (of experience), harshness; + amaritudo_F_N : N ; -- [XXXCO] :: bitterness (taste/feelings/mind); sharpness, tang, pungency; harshness (sound); + amaror_M_N : N ; -- [XXXEO] :: bitter taste; bitterness; + amarulentia_F_N : N ; -- [GXXET] :: bitterness; (Erasmus); + amarulentus_A : A ; -- [XXXFO] :: having sour disposition; acrimonious; very bitter, full of bitterness (L+S); + amarum_Adv : Adv ; -- [XXXFS] :: with bitterness, acidly, spitefully, bitterly; + amarum_N_N : N ; -- [XXXEC] :: bitterness; unpleasantness; (often pl.); + amarus_A : A ; -- [XXXBO] :: bitter, brackish, pungent; harsh, shrill; sad, calamitous; ill-natured, caustic; + amasco_V : V ; -- [XXXFO] :: begin to love; + amasia_F_N : N ; -- [FEXFZ] :: female lover; (JFW guess from amasius = lover); + amasio_M_N : N ; -- [XXXEO] :: lover; + amasiuncula_F_N : N ; -- [XXXFO] :: loved one, darling, sweetheart; fond lover; + amasiunculus_M_N : N ; -- [XXXFS] :: lover, paramour; fond lover; + amasius_M_N : N ; -- [XXXEO] :: lover; + amata_F_N : N ; -- [XXXFO] :: loved one, beloved (woman); + amatio_F_N : N ; -- [XXXES] :: love, caressing, fondling; (romantic) intrigue; + amator_M_N : N ; -- [GXXEK] :: |amateur, dilettante; + amatorculus_M_N : N ; -- [XXXFO] :: little lover; sorry lover (L+S); + amatorie_Adv : Adv ; -- [XXXEO] :: in a loving manner; + amatorium_N_N : N ; -- [XXXEO] :: love potion/charm/philter; anything which stimulates sexual passion; + amatorius_A : A ; -- [XXXCO] :: of love or lovers, amatory; inducing love (potions); amorous, procuring love; + amatrix_A : A ; -- [XXXDO] :: amorous; (applied to things); + amatrix_F_N : N ; -- [XXXCO] :: sweetheart, mistress; hussy; woman who loves (in sexual sense); + amaturio_V2 : V2 ; -- [DXXFS] :: wish to love; + amatus_A : A ; -- [XXXEO] :: loved, beloved; + amaxites_M_N : N ; -- [XXXFO] :: waggoner, carter, teamster; + ambactus_M_N : N ; -- [XXXEO] :: vassal, dependent; retainer, servant; + ambadedo_V2 : V2 ; -- [XXXES] :: eat/gnaw around; eat up entirely; + ambages_F_N : N ; -- [XXXBO] :: circuit; roundabout way; long story, details; riddle; ambiguity; lie; mystery; + ambagiosus_A : A ; -- [XXXFO] :: circuitous, indirect, roundabout; + ambago_F_N : N ; -- [XXXFO] :: confusion, uncertainty, obscurity; + ambarvalis_A : A ; -- [XXXFO] :: concerned with circumambulation of fields (e.g., ceremony of Ambarvallia); + ambecisus_M_N : N ; -- [XXXFO] :: incision on both sides; + ambedo_V2 : V2 ; -- [XXXCO] :: eat/gnaw around the edge; erode (water); waste; eat, consume, devour; char; + ambestrix_F_N : N ; -- [XXXFO] :: gluttonous woman; female consumer/waster (L+S); + ambidens_M_N : N ; -- [DAXFS] :: sheep which has both upper and lower teeth; + ambienter_Adv : Adv ; -- [DXXFS] :: eagerly, with zeal; + ambifariam_Adv : Adv ; -- [XGXEO] :: in a way placing opponent in dilemma/proving his arguments self-contradictory; + ambifarie_Adv : Adv ; -- [DGXFS] :: ambiguously; on two sides; in two ways; + ambifarius_A : A ; -- [DGXES] :: ambiguous, of double meaning, that has two meanings; that has two sides; + ambiga_F_N : N ; -- [DXXES] :: cap of a still; + ambigo_V : V ; -- [XXXBO] :: hesitate, be in doubt; argue, dispute, contend; call in question; be at issue; + ambigue_Adv : Adv ; -- [XXXCO] :: ambiguously, equivocally; with uncertain meaning/outcome; unreliably; + ambiguitas_F_N : N ; -- [XXXCO] :: ambiguity of meaning; an equivocal expression, ambiguity; + ambiguum_N_N : N ; -- [XXXCO] :: varying/doubtful/uncertain state/condition/expression; ambiguity; + ambiguus_A : A ; -- [XXXAO] :: changeable, doubtful, ambiguous, wavering, fickle; treacherous, unethical; + ambio_V2 : V2 ; -- [XXXAO] :: go round, visit in rotation, inspect; solicit, canvass; circle, embrace; + ambitio_F_N : N ; -- [XXXAO] :: ambition; desire for/currying favor/popularity, flattery; vote canvassing; pomp; + ambitiose_Adv : Adv ; -- [XXXCO] :: ingratiatingly, earnestly; ambitiously, presumptuously; ostentatiously; + ambitiosus_A : A ; -- [XXXBO] :: ambitious, eager to please/for advancement/favor; showy; winding, twisting; + ambitor_M_N : N ; -- [DLXES] :: candidate; + ambitudo_F_N : N ; -- [DLXES] :: period of revolution; + ambitus_M_N : N ; -- [XXXAO] :: circuit, edge, extent; orbit, cycle; canvass, bribery; circumlocution; show; + ambivalentia_F_N : N ; -- [GXXEK] :: ambivalence; + ambivium_N_N : N ; -- [XXXFO] :: road junction, meeting of two roads; + ambligonius_A : A ; -- [XSXFO] :: obtuse-angled; + amblygonius_A : A ; -- [XSXFO] :: obtuse-angled; + ambolagium_N_N : N ; -- [FEXFE] :: amice; (oblong white shawl draped over shoulders of priest, worn w/alb); + ambon_M_N : N ; -- [FEXEE] :: pulpit; + ambro_M_N : N ; -- [FXXFY] :: glutton; spendthrift; + ambroscus_A : A ; -- [XYXCO] :: immortal, divine, of things belonging to the gods; ambrosial; + ambrosia_F_N : N ; -- [XYXCO] :: food of the gods, ambrosia; fabulous healing plant/juice; antidote (to poison); + ambrosiacus_A : A ; -- [XYXFS] :: ambrosial; + ambrosialis_A : A ; -- [XYXIO] :: ambrosial (?); connected with Ambrussum in Gallia Narbonensis (?); + ambrosius_A : A ; -- [XYXCO] :: immortal, divine, of things belonging to the gods; ambrosial; + ambubaia_F_N : N ; -- [XAXEO] :: wild endive; chicory; + ambubeia_F_N : N ; -- [XAXEO] :: wild endive; chicory; + ambufariam_Adv : Adv ; -- [XGXFO] :: in a way placing opponent in dilemma/proving his arguments self-contradictory; + ambulacrum_N_N : N ; -- [XXXEO] :: promenade, walk; place for walking; lounge; + ambulatilis_A : A ; -- [XXXFO] :: moving, walking about; movable; + ambulatio_F_N : N ; -- [XXXCO] :: walking about, stroll; place for promenading, covered/uncovered walk, portico; + ambulatiuncula_F_N : N ; -- [XXXEO] :: short/little walk/stroll; small place for walking, little portico; + ambulativum_N_N : N ; -- [XXXIO] :: procession (pl.); + ambulator_M_N : N ; -- [XXXEO] :: one who walks about (idly/for pleasure); itinerant trader, peddler; + ambulatorius_A : A ; -- [XXXCO] :: movable, which can be moved; transferable; liable to change; for/while walking; + ambulatrix_A : A ; -- [XXXFO] :: movable, which can be moved; transferable; liable to change; + ambulatura_F_N : N ; -- [DAXES] :: walking, pace, step, amble (of horses); + ambulo_V : V ; -- [XXXBO] :: walk, take a walk, go on foot; travel, march; go about, gad; parade, strut; + ambultus_M_N : N ; -- [DXXFS] :: walking (act of); + amburbale_N_N : N ; -- [XXIFS] :: annual expiatory procession around Rome (with sacrificial victims - hostiae); + amburbium_N_N : N ; -- [XXIFO] :: annual expiatory procession around Rome (with sacrificial victims - hostiae); + amburo_V2 : V2 ; -- [XXXBO] :: burn around, scorch, char, scald; fire harden; burn up, cremate; frost-bite/nip; + ambustio_F_N : N ; -- [XBXES] :: burn; fire, conflagration; + ambustulatus_A : A ; -- [XXXFO] :: scorched around, burned around the edges; half roasted; + ambustum_N_N : N ; -- [XBXES] :: burn; + amellus_M_N : N ; -- [XAXEO] :: kind of aster; (purple) Italian starwort (Aster amellus); + amen_Adv : Adv ; -- [DEXBS] :: amen; (from Hebrew); truly/verily/so be it; true/faithful; truth/faithfulness; + amendator_M_N : N ; -- [XLXFO] :: one who suborns accusers; + amens_A : A ; -- [XXXCO] :: insane, demented, out of one's mind; very excited, frantic, distracted; foolish; + amentia_F_N : N ; -- [XXXCO] :: madness; extreme folly, infatuation, stupidity; frenzy, violent excitement; + amentius_Adv : Adv ; -- [XXXFO] :: more madly/wildly; + amento_V2 : V2 ; -- [XXXDO] :: fit with a throwing strap; give impetus with a throwing strap; speed on; + amentum_N_N : N ; -- [XXXCO] :: throwing-strap, thong/loop attached to spear for throwing; (shoe) thong/strap; + amercio_V : V ; -- [FLXEM] :: fine, penalize; + amerimnon_N_N : N ; -- [XAXNO] :: houseleek; + ames_M_N : N ; -- [XXXEO] :: pole/fork for supporting/spreading birdnets; fence rail, cross bar; + amethystinatus_A : A ; -- [XXXFO] :: wearing a dress the color of amethyst (violet-blue)/adorned with amethysts; + amethystinus_A : A ; -- [XXXDO] :: of the color of amethyst (violet-blue); set/adorned with amethysts; + amethystizon_A : A ; -- [XXXNO] :: resembling the color of the amethyst (violet-blue); + amethystus_A : A ; -- [XXXEO] :: amethyst (color = violet-blue); ornamented/set with amethysts (gems); + amethystus_F_N : N ; -- [XXXCO] :: amethyst, violet-blue precious stone; vine yielding non-intoxicating wine?; + ametor_A : A ; -- [DXXFS] :: motherless; + amfitapa_F_N : N ; -- [XXXEO] :: rug with pile on both sides; + amflexus_A : A ; -- [XXXFS] :: curved around, bent double; + amfractus_M_N : N ; -- [XXXBO] :: bend, curvature; circuit, (annual) round, orbit; spiral, coil; circumlocution; + ami_N : N ; -- [XAXEO] :: ammi, Bishop-weed; umbelliferous (flowers radiating from point) plant; + amia_F_N : N ; -- [XAXEO] :: small tunny, bonito; + amiantus_M_N : N ; -- [XXXNO] :: mineral having properties similar to asbestos, chysolite?; + amias_M_N : N ; -- [XAXFO] :: small tunny, bonito; + amica_F_N : N ; -- [XXXCO] :: female friend; girl friend, sweetheart; patron; mistress, concubine; courtesan; + amicabilis_A : A ; -- [DXXFS] :: friendly, amicable; + amicabiliter_Adv : Adv ; -- [DXXFS] :: in a friendly/amicable manner; + amicalis_A : A ; -- [XXXEO] :: friendly; cult-title of Jupiter (of friendship); + amicarius_M_N : N ; -- [DXXFS] :: procurer; one that procures a mistress/woman; + amice_Adv : Adv ; -- [XXXCO] :: in a friendly manner/spirit; with goodwill; + amicicia_F_N : N ; -- [FXXEO] :: friendship, bond between friends; alliance, association; friendly relations; + amicimen_N_N : N ; -- [XXXFO] :: clothing, garment; + amicinum_N_N : N ; -- [DXXFS] :: neck of a winesack; + amicio_V2 : V2 ; -- [XXXBO] :: clothe, cover, dress; wrap about; surround; veil; clothe with words; + amiciter_Adv : Adv ; -- [BXXEO] :: in a friendly manner; kindly, amicably; + amicitia_F_N : N ; -- [XXXBO] :: friendship, bond between friends; alliance, association; friendly relations; + amicities_F_N : N ; -- [XXXFO] :: friendship; + amico_V2 : V2 ; -- [XXXFO] :: propitiate, make friendly to oneself; + amicosus_A : A ; -- [DXXFS] :: rich/abounding in friends; + amictorium_N_N : N ; -- [XXXEO] :: scarf, wrap; + amictorius_A : A ; -- [XXXES] :: suitable for throwing about one (wrap, scarf); + amictus_M_N : N ; -- [XXXBO] :: cloak, mantle; outer garment; clothing, garb; fashion; manner of dress; drapery; + amicula_F_N : N ; -- [XXXDO] :: mistress, lady friend, girl friend; + amiculum_N_N : N ; -- [XXXCO] :: cloak; mantle, outer garment; coat; clothing (pl.), dress; + amiculus_M_N : N ; -- [XXXEO] :: little friend (familiar or depreciatory), dear friend, humble friend; + amicus_A : A ; -- [XXXAO] :: friendly, dear, fond of; supporting (political), loyal, devoted; loving; + amicus_M_N : N ; -- [XXXBO] :: friend, ally, disciple; loved one; patron; counselor/courtier (to a prince); + amigro_V : V ; -- [XXXFO] :: go away, remove; + amilum_N_N : N ; -- [XXXDO] :: fine meal, starch, gruel; + amissibilis_A : A ; -- [DEXES] :: that may be lost (eccl.); + amissio_F_N : N ; -- [XXXCO] :: loss (possessions/faculty/quality/persons/town/military force), deprivation; + amissus_M_N : N ; -- [XXXFO] :: loss; fact of losing; + amita_F_N : N ; -- [XXXCO] :: paternal aunt, father's sister; [~ magna/maior/maxima=>great/g-g/g-g-g-aunt]; + amitina_F_N : N ; -- [XXXEO] :: female first cousin, daughter of father's sister or mother's brother; + amitinus_A : A ; -- [XXXES] :: descended from a father's sister (or mother's brother?); + amitinus_M_N : N ; -- [XXXEO] :: male first cousin, son of father's sister or mother's brother; + amitto_V2 : V2 ; -- [XXXAO] :: lose; lose by death; send away, dismiss; part with; let go/slip/fall, drop; + amium_N_N : N ; -- [XAXES] :: ammi, Bishop-weed; umbelliferous (flowers radiating from point) plant; + ammaturo_V2 : V2 ; -- [XXXFO] :: hasten (an occurrence); bring to maturity, mature, ripen; + ammento_V2 : V2 ; -- [XXXDO] :: fit with a throwing strap; give impetus with a throwing strap; speed on; + ammentum_N_N : N ; -- [XXXCO] :: throwing-strap, thong/loop attached to spear for throwing; (shoe) thong/strap; + ammeo_V : V ; -- [DXXFS] :: go to, approach; + ammetior_V : V ; -- [XXXCO] :: measure out (to); + ammi_N : N ; -- [XAXEO] :: ammi, Bishop-weed; umbelliferous (flowers radiating from point) plant; + ammigro_V : V ; -- [XXXFO] :: go and live with; go to a place; come to; be added to; + amminiculabundus_A : A ; -- [XXXES] :: self-supporting, supporting one's self; + amminiculator_M_N : N ; -- [XXXFO] :: assistant, supporter; one who supports; + amminiculatus_A : A ; -- [XXXFO] :: well stocked; supported; well furnished/provided; + amminiculo_V2 : V2 ; -- [XAXCO] :: prop (up), support (with props); support with authority; applied to adverb; + amminiculor_V : V ; -- [XAXFS] :: prop (up), support (with props) (vines); + amminiculum_N_N : N ; -- [XAXBO] :: prop (vines), pole, stake; support, stay, bulwark; means, aid, tool; auxiliary; + amminister_M_N : N ; -- [XXXCO] :: assistant, helper, supporter; one at hand to help, attendant; priest, minister; + amministra_F_N : N ; -- [XXXEO] :: assistant (female), helper, supporter, servant; handmaiden, attendant; + amministratio_F_N : N ; -- [XXXBO] :: administration; assistance; execution, operation, management, care of affairs; + amministrativus_A : A ; -- [XXXFO] :: practical; suitable for the administration of; + amministrator_M_N : N ; -- [XXXEO] :: director, manager; one who is in charge of an operation; + amministratorius_A : A ; -- [DXXES] :: performing the duties of an assistant/helper; serving, ministering; + amministro_V : V ; -- [XXXBO] :: administer, manage, direct; assist; operate, conduct; maneuver (ship); bestow; + ammirabilis_A : A ; -- [XXXCO] :: admirable, wonderful; strange, astonishing, remarkable; paradoxical, contrary; + ammirabilitas_F_N : N ; -- [XXXEO] :: wonderful character, remarkableness; admiration, wonder; + ammirabiliter_Adv : Adv ; -- [XXXEO] :: admirably, astonishingly, in a wonderful/wondrous manner; paradoxically; + ammirandus_A : A ; -- [XXXCO] :: wonderful, admirable; astonishing, remarkable, extraordinary; + ammiranter_Adv : Adv ; -- [EXXCV] :: admiringly, with admiration; + ammiratio_F_N : N ; -- [XXXBO] :: wonder, surprise, astonishment; admiration, veneration, regard; marvel; + ammirator_M_N : N ; -- [XXXCO] :: admirer; one who venerates; + ammiror_V : V ; -- [XXXBO] :: admire, respect; regard with wonder, wonder at; be surprised at, be astonished; + ammisceo_V2 : V2 ; -- [XXXBO] :: mix, mix together; involve; add an ingredient to; contaminate; confuse, mix up; + ammissarius_A : A ; -- [XAXEO] :: kept for breeding (male animals), on stud; + ammissarius_M_N : N ; -- [XAXDO] :: stallion/he-ass, stud; sodomite; + ammissio_F_N : N ; -- [XXXCO] :: getting in, audience, interview; application (medical); mating (animals); + ammissionalis_M_N : N ; -- [DXXES] :: one who introduces/announces at audience; privy chamber usher; seneschal; + ammissivus_A : A ; -- [XEXFS] :: permitting/favorable (birds of omen approving of action in question); + ammissor_M_N : N ; -- [DXXES] :: perpetrator; one who allows himself to do a thing; + ammissum_N_N : N ; -- [XXXDO] :: crime, offense; + ammissura_F_N : N ; -- [XAXDO] :: breeding, generation; copulation/mating of domestic animals, service; + ammissus_M_N : N ; -- [DXXES] :: admission, letting in; + ammistio_F_N : N ; -- [DXXES] :: mixture, admixture, mingling; + ammistus_M_N : N ; -- [DXXES] :: mixture, admixture, mingling; + ammitto_V2 : V2 ; -- [XXXAO] :: urge on, put to a gallop; let in, admit, receive; grant, permit, let go; + ammium_N_N : N ; -- [XAXES] :: ammi, Bishop-weed; umbelliferous (flowers radiating from point) plant; + ammixtio_F_N : N ; -- [XXXEO] :: mixture, admixture, mingling; + ammixtus_A : A ; -- [XXXES] :: mixed; contaminated; not simple; confused; + ammixtus_M_N : N ; -- [DXXES] :: mixture, admixture, mingling; + ammochrysus_M_N : N ; -- [XXXNS] :: precious stone (golden mica?); + ammoderate_Adv : Adv ; -- [XXXFO] :: comfortably; suitably; + ammoderor_V : V ; -- [XXXFO] :: control (w/DAT); keep within limits; moderate; + ammodo_Adv : Adv ; -- [EXXEB] :: henceforth, from this time forward; from now (on); in the future; + ammodulor_V : V ; -- [DXXFS] :: harmonize/accord with; + ammodum_Adv : Adv ; -- [XXXBO] :: very, exceedingly, greatly, quite; excessively; just so; certainly, completely; + ammodytes_M_N : N ; -- [XAAES] :: kind of serpent in Africa; + ammoenio_V2 : V2 ; -- [XXXEO] :: bring (siege engine) into operation, draw near the walls; besiege, invest; + ammolior_V : V ; -- [XXXDO] :: struggle, exert oneself (to); put one's hand on object/task; lay violent hands; + ammonefacio_V2 : V2 ; -- [DXXFS] :: admonish; warn; urge; call to duty; + ammonefio_V : V ; -- [DXXFS] :: be admonished/warned/urged; be called to duty; (admonefacio PASS); + ammoneo_V2 : V2 ; -- [XXXAO] :: admonish, remind, prompt; suggest, advise, raise; persuade, urge; warn, caution; + ammoniacum_N_N : N ; -- [GSXEK] :: ammonia-water; + ammoniacus_A : A ; -- [XXXFZ] :: of Ammon (Egyptian god) (Collins); + ammonitio_F_N : N ; -- [XXXBO] :: act of reminding; reminder, recurring symptom; warning, advice; rebuke; + ammonitor_M_N : N ; -- [XXXEO] :: admonisher; exhorter; one who reminds; + ammonitorium_N_N : N ; -- [XXXFS] :: admonition; + ammonitrix_F_N : N ; -- [XXXFS] :: monitor (female); she that admonishers/reminds; + ammonitrum_N_N : N ; -- [XXENS] :: natron (sesquicarbonate of soda) mingled with sand; + ammonitum_N_N : N ; -- [XXXEL] :: warning; reminder; reminding; advice; admonition (L+S); + ammonitus_M_N : N ; -- [XXXCO] :: advice, recommendation; admonition/warning; command (animal); reminder; reproof; + ammordeo_V2 : V2 ; -- [XXXDO] :: bite at/into, gnaw; extract money from; fleece; get possession of his property; + ammorsus_A : A ; -- [XXXEL] :: bitten, gnawed; + ammorsus_M_N : N ; -- [XXXEO] :: bite, biting, gnawing; + ammotio_F_N : N ; -- [XXXFO] :: act of moving towards/on to; application; + ammoveo_V2 : V2 ; -- [XXXAO] :: move up, bring up/near; lean on, conduct; draw near, approach; apply, add; + ammugio_V : V ; -- [XAXFO] :: low (to); bellow (to); (like a bull); + ammulco_V2 : V2 ; -- [DXXFS] :: stroke; + ammurmuratio_F_N : N ; -- [XXXEO] :: murmur of comment; murmuring; + ammurmuro_V : V ; -- [XXXDO] :: murmur in protest or approval; murmur at; + ammurmuror_V : V ; -- [XXXFS] :: murmur in protest or approval; murmur at; + ammutilo_V2 : V2 ; -- [XXXEO] :: cut/clip close; shave; fleece, cheat, defraud; + amnacum_N_N : N ; -- [XAXNS] :: herbaceous plant, pellitory; + amnensis_F_N : N ; -- [DXXFS] :: river town; towns (pl.) situated near a river; + amnesis_F_N : N ; -- [DXXFS] :: river town; towns (pl.) situated near a river; + amnestia_F_N : N ; -- [XXXFO] :: amnesty, general pardon; + amnicolus_A : A ; -- [XXXFO] :: growing beside a river (-a, -ae for M/F); dwelling beside a river (L+S); + amniculus_M_N : N ; -- [XXXFO] :: small brook, rivulet; + amnicus_A : A ; -- [XXXEO] :: of/connected with a river, situated in a river; + amnigenus_A : A ; -- [XXXFO] :: that is the son/descendent of a river (-a, -ae for M/F); + amnis_M_N : N ; -- [XXXBO] :: river (real/personified), stream; current; (running) water; the river Ocean; + amo_V : V ; -- [XXXAO] :: love, like; fall in love with; be fond of; have a tendency to; + amodo_Adv : Adv ; -- [DXXES] :: henceforth, from this time forward; from now (on); in the future; + amoebaeus_A : A ; -- [DXXES] :: alternate; [amoebaeum carmen => responsive song]; + amoene_Adv : Adv ; -- [XXXDO] :: in a pleasant/attractive manner, agreeably; + amoenitas_F_N : N ; -- [XXXCO] :: pleasantness, attractiveness, attraction, charm; delight, comfort, luxury; + amoeniter_Adv : Adv ; -- [XXXFO] :: delightfully, in an agreeable manner; + amoeno_V2 : V2 ; -- [DXXES] :: make pleasant (places); please, delight; + amoenum_N_N : N ; -- [DXXFS] :: pleasant places (pl.); + amoenus_A : A ; -- [XXXCO] :: beautiful, attractive, pleasant, agreeable, enjoyable, charming, lovely; + amoletum_N_N : N ; -- [XXXNO] :: amulet/charm (to avert evil); act which averts evil; power to avert evil; + amolior_V : V ; -- [XXXBO] :: remove, clear away; get rid of, dispose of, remove, obliterate; avert, refute; + amolitio_F_N : N ; -- [XXXEO] :: removal (physical); removal (by death); + amomis_F_N : N ; -- [XAXNO] :: plant resembling amomum (eastern spice plant) but inferior in fragrance; + amomon_N_N : N ; -- [XAQCO] :: amonum, eastern spice-plant; spice from the plant; unguent/balm with this spice; + amomum_N_N : N ; -- [XAQCO] :: amonum, eastern spice-plant; spice from the plant; unguent/balm with this spice; + amor_M_N : N ; -- [XXXAO] :: love; affection; the beloved; Cupid; affair; sexual/illicit/homosexual passion; + amorabundus_A : A ; -- [XXXFO] :: loving, amorous; + amorifer_A : A ; -- [DXXFS] :: producing/causing/awakening love; + amorificus_A : A ; -- [DXXFS] :: producing/causing/awakening love; + amortizatio_F_N : N ; -- [HLXFE] :: amortization; liquidation of a debt; + amos_M_N : N ; -- [BPXDS] :: love, affection; the beloved; Cupid; affair; sexual/illicit/homosexual passion; + amothystinatus_A : A ; -- [XXXFS] :: that wears a dress the color of amethyst; + amotibilis_A : A ; -- [FXXFM] :: removable; + amotio_F_N : N ; -- [XXXEO] :: removal; deprivation; process of removing; + amoveo_V2 : V2 ; -- [XXXAO] :: move/take/put away, remove, steal; banish, cause to go away; withdraw, retire; + amovibilis_A : A ; -- [GXXFE] :: removable; movable; + amovibilitas_F_N : N ; -- [GXXFE] :: removability; + ampelinus_A : A ; -- [XAXFO] :: vine-colored/covered; made of vines; + ampelitis_F_N : N ; -- [XAXEO] :: vineyard, vineland; pitch/asphalt (used to preserve vines from insects); + ampelodesmos_M_N : N ; -- [XAXNO] :: plant used to tie up vines, esparto/Spanish grass; + ampeloeuce_F_N : N ; -- [XAXNS] :: bryony (white vine) (Bryonia alba); + ampeloprason_N_N : N ; -- [XAXNO] :: species of wild leek, vine-leek? field-garlic?; + ampelos_F_N : N ; -- [XAXNO] :: vine; + ampendix_M_N : N ; -- [BXXFS] :: appendix, supplement, annex; appendage, adjunct; hanger on; barberry bush/fruit; + amperium_N_N : N ; -- [GSXEK] :: ampere; + amphemerinos_A : A ; -- [XXXNO] :: recurring every day, daily, quotidian, pertaining to everyday; + amphibalus_M_N : N ; -- [FEXEE] :: chasuble; (sleeveless mantle worn over alb and stole by priest at Mass); + amphibius_A : A ; -- [XXXFO] :: amphibious; + amphibolia_F_N : N ; -- [XXXEO] :: ambiguity; double meaning; + amphibologia_F_N : N ; -- [DXXFS] :: ambiguity; double meaning; + amphibolus_A : A ; -- [DXXFS] :: amphibious; + amphibrachus_M_N : N ; -- [DPXFS] :: poetical foot short-long-short, amphibrach; + amphibrachysos_M_N : N ; -- [XPXFS] :: poetical foot short-long-short, amphibrach; + amphibrevis_M_N : N ; -- [DPXFS] :: poetical foot short-long-short, amphibrach; + amphicomos_M_N : N ; -- [XXXNO] :: precious stone; + amphidane_F_N : N ; -- [XXXNO] :: precious stone also called chrysocolla (magnetic pyrite? L+S); + amphimacros_M_N : N ; -- [XPXEO] :: metrical foot, a short syllable between two long ones, amphimacer, cretic; + amphimacrus_M_N : N ; -- [XPXES] :: metrical foot, a short syllable between two long ones, amphimacer, cretic; + amphimallium_N_N : N ; -- [XXXEO] :: cloak that is woolly inside and out; + amphimallum_N_N : N ; -- [XXXEO] :: cloak that is woolly inside and out; + amphiprostylos_F_N : N ; -- [XTXFO] :: temple having portico/pillars front and rear but not sides, amphiprostyle; + amphisbaena_F_N : N ; -- [XXAEO] :: species of Libyan serpent supposed to have a head at both ends, amphisbaena; + amphisporum_N_N : N ; -- [XAXIO] :: boundary land the right to sow which is in dispute between two peoples; + amphistomus_A : A ; -- [XXXFO] :: having double mouth/entrance; + amphitane_F_N : N ; -- [XXXNS] :: precious stone also called chrysocolla (magnetic pyrite? L+S); + amphitapos_M_N : N ; -- [XXXEO] :: rug with pile on both sides; + amphithalamos_M_N : N ; -- [XXHFO] :: bedroom on north of Greek house opposite the thalamus (inner/marriage chamber); + amphitheatralis_A : A ; -- [XXXEO] :: of/in the amphitheater; worthy of the amphitheater; + amphitheatricus_A : A ; -- [XXXEO] :: made near the amphitheater; cheap, of little value (L+S); + amphitheatriticus_A : A ; -- [XXXNO] :: made near the amphitheater; cheap, of little value (L+S); + amphitheatrum_N_N : N ; -- [XXXCO] :: amphitheater, double (oval/circular) theater having stage/arena in center; + amphora_F_N : N ; -- [XXXCO] :: amphora, pitcher, two handled earthenware jar; a capacity of ~30 liters; + amphoralis_A : A ; -- [XXXNO] :: that has a capacity of one amphora, six-gallon; + amphorarius_A : A ; -- [XXXFO] :: contained/stored in amphora/jars; + ampla_F_N : N ; -- [XXXFO] :: opportunity; + ample_Adv : Adv ; -- [XXXCO] :: in liberal manner/complimentary terms/dignified style, handsomely, impressively; + amplector_V : V ; -- [XXXAO] :: surround, encircle, embrace, clasp; esteem; cherish; surround, include, grasp; + amplexo_V2 : V2 ; -- [XXXBO] :: take and hold in arms, embrace, clasp; welcome, accept gladly; cling/attach to; + amplexor_V : V ; -- [XXXBO] :: take and hold in arms, embrace, clasp; welcome, accept gladly; cling/attach to; + amplexus_M_N : N ; -- [XXXCO] :: clasp, embrace, surrounding; sexual embrace; coil (snake); circumference; + ampliatio_F_N : N ; -- [XXXEO] :: enlargement, augmentation; deferral/reserve of judgment, trial postponement; + ampliator_M_N : N ; -- [XXXFO] :: one who increases the number (of something), augmenter; + amplificatio_F_N : N ; -- [XXXCO] :: enlargement, amplification, augmentation, increasing, making greater; + amplificator_M_N : N ; -- [XXXEO] :: enlarger, amplifier, augmenter, increaser, extender, developer; + amplificatrum_N_N : N ; -- [GXXEK] :: amplifier; + amplifice_Adv : Adv ; -- [XXXFO] :: magnificently, splendidly; + amplifico_V2 : V2 ; -- [XXXBO] :: enlarge, extend, increase; develop; magnify, amplify; praise loudly, exalt; + amplificus_A : A ; -- [XXXFO] :: magnificent, splendid; + amplio_V2 : V2 ; -- [XXXBO] :: enlarge, augment, intensify, widen; ennoble, glorify; postpone, adjourn; + ampliter_Adv : Adv ; -- [XXXCO] :: in liberal manner, generously, handsomely; amply, fully, very; deeply, far; + amplitudo_F_N : N ; -- [XXXBO] :: greatness; extent, breadth, width, bulk; importance; fullness (of expression); + amplius_A : A ; -- [XXXCL] :: greater (w/indef. subject, eg., number than), further/more, longer; + amplius_Adv : Adv ; -- [XXXAO] :: greater number (than); further, more, beyond, besides; more than (w/numerals); + amplius_N : N ; -- [XXXCO] :: greater amount/number/distance, more, any more/further; "judgment reserved"; + ampliuscule_Adv : Adv ; -- [XXXFO] :: rather more (freely/deeply); + ampliusculus_A : A ; -- [XXXFO] :: fairly large, considerable; + amplo_V2 : V2 ; -- [BXXFS] :: enlarge, extend, increase; develop; magnify, amplify; praise, exalt, glorify; + amploctor_V : V ; -- [BXXAS] :: surround, encircle, embrace, clasp; esteem; cherish; surround, include, grasp; + amplus_A : A ; -- [XXXAO] :: great, large, spacious, wide, ample; distinguished, important, honorable; + ampola_F_N : N ; -- [FEXEE] :: cruet; + ampollata_F_N : N ; -- [FEXEE] :: cruet; + amptruo_V : V ; -- [XEXEO] :: execute a figure/movement (by leader of ceremonial dance); + ampulla_F_N : N ; -- [XXXCO] :: bottle, jar, flask for holding liquids; inflated expressions, bombast; + ampullaceus_A : A ; -- [XXXEO] :: of/used for an ampulla/jar/bottle; shaped like an ampulla, big-bellied; + ampullarius_M_N : N ; -- [XXXEO] :: dealer/maker of flasks/bottles/jars/ampulla; + ampullor_V : V ; -- [XGXFO] :: use bombast, make use of a bombastic form of discourse; + amputatio_F_N : N ; -- [XAXCO] :: pruning, lopping off; amputation; twigs removed by pruning, cuttings; + amputo_V2 : V2 ; -- [XXXBO] :: lop/cut off, prune, shorten; amputate; eradicate, exclude, take away; castrate; + amtruo_V : V ; -- [XEXFS] :: dance around (at Salian religious festivals); + amula_F_N : N ; -- [EXXDW] :: basin; small/shallow bucket/vessel; + amuletum_N_N : N ; -- [XXXNO] :: amulet/charm (to avert evil); act which averts evil; power to avert evil; + amulum_N_N : N ; -- [BXXDS] :: fine meal, starch, gruel; + amurca_F_N : N ; -- [XAXCO] :: watery fluid contained in the olive in addition to oil (vs. solid residue); + amurcarius_A : A ; -- [XAXFO] :: designed for holding amurca (watery fluid from olive); + amurga_F_N : N ; -- [XAXCO] :: watery fluid contained in the olive in addition to oil (vs. solid residue); + amusia_F_N : N ; -- [XDXFO] :: boorishness, lack of refinement; ignorance of music (L+S); + amusium_N_N : N ; -- [XTXEO] :: leveled slab for testing flat surface; horizontal wheel to show wind direction; + amusos_A : A ; -- [XDXFO] :: ignorant of music; + amussis_F_N : N ; -- [XTXDO] :: ruler/straight edge (mason's/carpenter's); precision [ad ~ => with precision]; + amussito_V2 : V2 ; -- [XXXFS] :: make according to ruler/accurately/exactly/nicely; + amussium_N_N : N ; -- [XTXEO] :: leveled slab for testing flat surface; horizontal wheel to show wind direction; + amycticus_A : A ; -- [DBXFS] :: scratching; sharp/biting (of medical remedies); + amydalinus_A : A ; -- [EXXEE] :: almond-, of almonds; + amygdala_F_N : N ; -- [XAXDO] :: almond tree; almond; [~ amarum => bitter almond; ~ dulce => sweet almond]; + amygdalaceus_A : A ; -- [XAXNS] :: similar to the almond tree/almond; + amygdale_F_N : N ; -- [XAXDO] :: almond tree; almond; [~ amarum => bitter almond; ~ dulce => sweet almond]; + amygdaleus_A : A ; -- [XAXNS] :: of/pertaining to an almond tree; + amygdalinus_A : A ; -- [XAXNO] :: of/made of almonds; grafted on an almond tree; + amygdalites_M_N : N ; -- [XAXNO] :: kind of euphorbia, broad-leaved spurge; tree like the almond tree (L+S); + amygdalum_N_N : N ; -- [XAXDO] :: almond (nut); [~ amarum => bitter almond; ~ dulce => sweet almond]; + amygdalus_F_N : N ; -- [XAXFS] :: almond tree; almond; [~ amarum => bitter almond; ~ dulce => sweet almond]; + amylo_V2 : V2 ; -- [DXXES] :: mix with starch; + amylum_N_N : N ; -- [XXXDO] :: fine meal; starch; gruel; + amystis_F_N : N ; -- [XXXFO] :: drink taken in one draught; + an_Conj : Conj ; -- [XXXAO] :: |whether; (utrum ... an = whether ... or); or; either; + anabaptismus_M_N : N ; -- [DEXFS] :: second baptism; + anabaptista_F_N : N ; -- [GEXEE] :: Anabaptists (pl.); (Protestant sect); + anabasis_F_N : N ; -- [XAXNO] :: plant name applied by Pliny to any equisetum (e.g., horsetail, mare's tail); + anabathrum_N_N : N ; -- [XXXFO] :: raised/elevated seat (in a theater); elevator; + anaboladium_N_N : N ; -- [XXXFO] :: kind of cloak; shawl; scarf; + anabolagium_N_N : N ; -- [FEXFE] :: veil, head covering; amice (oblong white shawl on shoulders of priest); + anabolarium_N_N : N ; -- [FEXFE] :: veil, head covering; amice (oblong white shawl on shoulders of priest); + anabolium_N_N : N ; -- [DBXFS] :: surgical instrument; + anacampserox_F_N : N ; -- [XAXNS] :: plant (unidentified); (said to bring back lost love by its touch); + anachites_F_N : N ; -- [XXXNS] :: precious stone (unknown, diamond?) (as remedy for sadness); + anachoresis_F_N : N ; -- [DEXFS] :: retirement, life of a ermite/hermit; + anachoreta_M_N : N ; -- [FEXEE] :: hermit, anchorite; + anachoreticus_A : A ; -- [FEXFE] :: eremitical, anchoritic, of a hermit + anachorita_M_N : N ; -- [FEXEE] :: hermit, anchorite; + anachronismus_M_N : N ; -- [GXXEK] :: anachronism; + anaclinterium_N_N : N ; -- [DXXFS] :: cushion for leaning on; + anactorium_N_N : N ; -- [DAXFS] :: sword grass; + anadema_N_N : N ; -- [XXXEO] :: band for the hair, head-band; ornament for the head/hair, fillet; anadiplosis_1_N : N ; -- [DGXFS] :: repetition of the same word; - anadiplosis_2_N : N ; - anadiplosis_F_N : N ; - anaesthesia_F_N : N ; - anagallis_F_N : N ; - anaglyphum_N_N : N ; - anaglyphus_A : A ; - anaglyptarius_A : A ; - anaglypticus_A : A ; - anaglyptum_N_N : N ; - anaglyptus_A : A ; + anadiplosis_2_N : N ; -- [DGXFS] :: repetition of the same word; + anadiplosis_F_N : N ; -- [DGXFS] :: repetition of the same word; + anaesthesia_F_N : N ; -- [GBXEK] :: anaesthesia; + anagallis_F_N : N ; -- [XAXNO] :: pimpernel (Anagallis aruensis) (small flowering annual) ("scarlet pimpernel"); + anaglyphum_N_N : N ; -- [XXXEE] :: sculpture in relief; + anaglyphus_A : A ; -- [DTXFS] :: carved in low/bas relief; + anaglyptarius_A : A ; -- [XTXIO] :: that works/carves in relief; + anaglypticus_A : A ; -- [DTXFS] :: carved/embossed in low/bas relief; + anaglyptum_N_N : N ; -- [XTXFO] :: vessels (pl.) carved in low relief; + anaglyptus_A : A ; -- [XTXEO] :: carved in low/bas relief; 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 ; + anagnosis_2_N : N ; -- [FEXFE] :: lectionary; (book of lessons for divine service; list of appointed passages); + anagnostes_M_N : N ; -- [XXXEO] :: reader, one who reads aloud, slave trained to read aloud; + anagolaium_N_N : N ; -- [FEXFE] :: amice; (oblong white shawl draped over shoulders of priest, worn w/alb); + anagyros_F_N : N ; -- [XAXNO] :: stinking bean-trefoil (Anagyris foetida); + analecta_M_N : N ; -- [XXXEO] :: slave who collected crumbs/scraps/gleanings after a meal; + analectris_F_N : N ; -- [XAXEL] :: pad worn under the shoulder blades; shoulder pad (to improve the figure); 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 ; - analogicus_A : A ; - analogium_N_N : N ; - analogus_A : A ; - analphabetismus_M_N : N ; - analphabetus_A : A ; - analysis_F_N : N ; - analyzo_V : V ; - anamnesis_F_N : N ; - ananasa_F_N : N ; - anancaeum_N_N : N ; - anancites_M_N : N ; - anancitis_F_N : N ; - anapaesticum_N_N : N ; - anapaesticus_A : A ; - anapaestum_N_N : N ; - anapaestus_A : A ; - anapaestus_M_N : N ; - anapauomene_F_N : N ; - anapauomenos_M_N : N ; - anaphora_F_N : N ; - anaphoricus_A : A ; + analemma_2_N : N ; -- [XSXFO] :: diagram showing length of sundial pin with time of year; (fig. 8 on globe); + analemptris_F_N : N ; -- [XXXFO] :: shoulder pad (to improve the figure); suspensory bandage (L+S); + analeptris_F_N : N ; -- [XXXEO] :: shoulder pad (to improve the figure); suspensory bandage (L+S); + analogia_F_N : N ; -- [XGXCO] :: ratio, proportion; analogy/similarity (in inflections/derivations of words); + analogicus_A : A ; -- [XGXFO] :: analogous; of grammatical analogy/similarity (word inflections/derivations); + analogium_N_N : N ; -- [FEXEE] :: lectern; pulpit; reader's desk; + analogus_A : A ; -- [XGXFO] :: proportional; analogous; + analphabetismus_M_N : N ; -- [GXXFE] :: illiteracy; + analphabetus_A : A ; -- [GXXEK] :: illiterate; + analysis_F_N : N ; -- [GSXEE] :: analysis + analyzo_V : V ; -- [GXXEK] :: analyze; + anamnesis_F_N : N ; -- [GEXFE] :: commemoration; (Greek); + ananasa_F_N : N ; -- [GAXEK] :: pineapple; + anancaeum_N_N : N ; -- [XXXEO] :: large drinking vessel which had to be emptied in a single draught; + anancites_M_N : N ; -- [XXXNO] :: hardest of substances (adamas); steel; diamond (as remedy for sadness L+S); + anancitis_F_N : N ; -- [XXXNS] :: precious stone (diamond?) (used in hydromancy/divination from water signs); + anapaesticum_N_N : N ; -- [XPXEO] :: anapaestic verse (pl.), (using metrical foot, two shorts followed by long); + anapaesticus_A : A ; -- [XPXFO] :: anapaestic, referring to anapaest (metrical foot, two shorts followed by long); + anapaestum_N_N : N ; -- [XPXEO] :: anapaestic line/passage (metrical foot, two shorts followed by long); + anapaestus_A : A ; -- [XPXCO] :: anapaestic (consisting of two shorts followed by a long); + anapaestus_M_N : N ; -- [XPXEO] :: anapaest (metrical foot, two shorts followed by long); + anapauomene_F_N : N ; -- [XXXNO] :: woman resting (as title of painting); + anapauomenos_M_N : N ; -- [XXXFO] :: man resting (as title of painting); + anaphora_F_N : N ; -- [XGXFS] :: |repetition of word beginning successive clauses; improper preceding reference; + anaphoricus_A : A ; -- [XSXFO] :: adjusted according to the rising/ascension of the stars; anaphysema_1_N : N ; -- [XXXFO] :: upward blast; - anaphysema_2_N : N ; - anapleroticus_A : A ; - anarchia_F_N : N ; - anarchista_M_N : N ; - anarchos_A : A ; - anarrinon_N_N : N ; - anas_F_N : N ; - anasceue_F_N : N ; - anastasis_F_N : N ; - anastomoticus_A : A ; - anataria_F_N : N ; - anatarius_A : A ; - anathema_N_N : N ; - anathematismus_M_N : N ; - anathematizo_V2 : V2 ; - anathemo_V2 : V2 ; - anathymiasis_F_N : N ; - anaticula_F_N : N ; - anatina_F_N : N ; - anatinus_A : A ; - anatocismus_M_N : N ; - anatomia_F_N : N ; - anatomica_F_N : N ; - anatomicus_A : A ; - anatomicus_M_N : N ; - anatomie_F_N : N ; - anatonus_A : A ; - anatresis_F_N : N ; - anaudia_F_N : N ; - anca_C_N : N ; - ancaesum_N_N : N ; - ancala_F_N : N ; - ancale_F_N : N ; - ancele_N_N : N ; - anceps_A : A ; - anchora_F_N : N ; - anchusa_F_N : N ; - ancile_N_N : N ; - ancilla_F_N : N ; - ancillariolus_M_N : N ; - ancillaris_A : A ; - ancillatus_M_N : N ; - ancillor_V : V ; - ancillula_F_N : N ; - ancips_A : A ; - ancisus_A : A ; - anclabre_N_N : N ; - anclabris_A : A ; - anclabris_F_N : N ; - anclo_V2 : V2 ; - ancon_M_N : N ; - ancora_F_N : N ; - ancorago_M_N : N ; - ancorale_N_N : N ; - ancoralis_A : A ; - ancorarius_A : A ; - ancra_F_N : N ; + anaphysema_2_N : N ; -- [XXXFO] :: upward blast; + anapleroticus_A : A ; -- [DXXFS] :: suitable for filling up; + anarchia_F_N : N ; -- [FXXEM] :: anarchy; lawlessness; lack of a leader/commander; + anarchista_M_N : N ; -- [GXXEK] :: anarchist; + anarchos_A : A ; -- [FXXEN] :: without beginning; without a leader; + anarrinon_N_N : N ; -- [XAXNO] :: snapdragon, antirrhinum; + anas_F_N : N ; -- [XAXEO] :: duck; + anasceue_F_N : N ; -- [XGXFO] :: refutation of arguments; + anastasis_F_N : N ; -- [FEXEE] :: Resurrection; + anastomoticus_A : A ; -- [XBXFO] :: relaxing (medicine, to open/widen vessels for blood flow); aperient, laxative; + anataria_F_N : N ; -- [XAXNO] :: species of eagle; duck eagle? (Falco haliactus); + anatarius_A : A ; -- [XAXNS] :: pertaining to a duck; [~a aquila => duck eagle (Falco haliactus)]; + anathema_N_N : N ; -- [DEXDX] :: offering; sacrificial victim; curse; cursed thing; excommunication, anathema; + anathematismus_M_N : N ; -- [FEXDE] :: anathema; curse/ban/denunciation; evil thing; curse of excommunication; + anathematizo_V2 : V2 ; -- [DEXCS] :: anathemize, put under ban; curse; detest; + anathemo_V2 : V2 ; -- [DEXFS] :: anathematize, anathemize, put under ban; curse; detest; + anathymiasis_F_N : N ; -- [XBXFO] :: rising of "vapors" (to the head); + anaticula_F_N : N ; -- [XAXEO] :: duckling; term of endearment, duckie; + anatina_F_N : N ; -- [XAXFO] :: duck's flesh/meat, duck; + anatinus_A : A ; -- [XAXFO] :: of/from/concerning a duck, duck's; + anatocismus_M_N : N ; -- [XLXEO] :: compound interest; + anatomia_F_N : N ; -- [DBXFS] :: anatomy; + anatomica_F_N : N ; -- [DBXFS] :: anatomy; + anatomicus_A : A ; -- [GBXEK] :: anatomical; + anatomicus_M_N : N ; -- [DBXFS] :: anatomist; + anatomie_F_N : N ; -- [DBXFS] :: anatomy; + anatonus_A : A ; -- [XWXFO] :: longstrung (length of tight skein propelling catapult); extending upward (L+S); + anatresis_F_N : N ; -- [DXXFS] :: boring through; + anaudia_F_N : N ; -- [DBXES] :: loss of speech, dumbness; + anca_C_N : N ; -- [FAXDT] :: goose; + ancaesum_N_N : N ; -- [BTXFS] :: embossed/engraved work (usu pl.) (esp. in gold/silver); + ancala_F_N : N ; -- [DBXFS] :: knee; bend of the knee; + ancale_F_N : N ; -- [DBXFS] :: knee; bend of the knee; + ancele_N_N : N ; -- [CXXCS] :: ancele; (12 waisted shields fell from heaven, copies in Salii shrine of Mars); + anceps_A : A ; -- [XXXAO] :: |||doubtful/undecided/wavering; untrustworthy/unreliable/unpredictable; + anchora_F_N : N ; -- [XWXCO] :: anchor; grappling iron/hook; [in/ad ~is => at anchor]; + anchusa_F_N : N ; -- [XAXNO] :: Dyer's bugloss (Anchusa tinctoria) (alkanet) or similar plant (ox-tongue); + ancile_N_N : N ; -- [CXXCO] :: ancele; (12 waisted shields fell from heaven, copies in Salii shrine of Mars); + ancilla_F_N : N ; -- [XXXCO] :: slave girl; maid servant; handmaid; (opprobrious of man); nun (selfdescribed); + ancillariolus_M_N : N ; -- [XXXEO] :: pursuer of slave girls; lover of maid-servants (L+S); + ancillaris_A : A ; -- [XXXEO] :: of/having status of female slave; appropriate/characteristic to that position; + ancillatus_M_N : N ; -- [XXXFS] :: service of a (female) slave; + ancillor_V : V ; -- [XXXDO] :: act as handmaid, wait on, serve hand and foot; be subservient/at beck and call; + ancillula_F_N : N ; -- [XXXCO] :: little serving-maid, young female slave; slave girl; + ancips_A : A ; -- [BXXCS] :: two headed/fold/edged/meanings; faces two directions/fronts; doubtful; double; + ancisus_A : A ; -- [XXXFO] :: cut up, chopped up; cut around/away; + anclabre_N_N : N ; -- [XEXFS] :: vessels on a sacrificial table (called an anclabris); + anclabris_A : A ; -- [XEXEO] :: sacrificial; + anclabris_F_N : N ; -- [XEXFS] :: sacrificial table (vessels on it called anclabria); + anclo_V2 : V2 ; -- [XXXEO] :: serve (wine); bring as a servant; have the care of (L+S); + ancon_M_N : N ; -- [XXXCO] :: projecting arm/crosspiece; clamp; bracket; piston rod; drinking vessel; armrest; + ancora_F_N : N ; -- [XWXCO] :: anchor; grappling iron/hook; [in/ad ~is => at anchor]; + ancorago_M_N : N ; -- [DAGFS] :: fish in the Rhine (unknown); + ancorale_N_N : N ; -- [XXXEO] :: anchor cable; + ancoralis_A : A ; -- [XWXFO] :: of/used for anchor; + ancorarius_A : A ; -- [XWXFO] :: of/used for anchor; + ancra_F_N : N ; -- [XXXIO] :: valley (pl.), gorge; ancter_1_N : N ; -- [XBXFO] :: surgical clip; - ancter_2_N : N ; - ancula_F_N : N ; - anculo_V2 : V2 ; - anculus_M_N : N ; - ancus_M_N : N ; - ancyla_F_N : N ; - ancyloblepharos_A : A ; - andabata_M_N : N ; - andena_F_N : N ; - andrachle_F_N : N ; - andrachne_F_N : N ; - andremas_F_N : N ; + ancter_2_N : N ; -- [XBXFO] :: surgical clip; + ancula_F_N : N ; -- [XXXFO] :: maid servant; + anculo_V2 : V2 ; -- [XXXEO] :: serve (wine); bring as a servant; have the care of (L+S); + anculus_M_N : N ; -- [XXXFO] :: man servant; + ancus_M_N : N ; -- [FDXFE] :: group of musical notes; + ancyla_F_N : N ; -- [XBXFO] :: joint stiffened by an injury; + ancyloblepharos_A : A ; -- [XBXFO] :: having eyelid adhering to eye; + andabata_M_N : N ; -- [XXXEO] :: gladiator who fought blindfolded; + andena_F_N : N ; -- [GXXEK] :: firedog; + andrachle_F_N : N ; -- [XAXEO] :: tree resembling the arbutus (strawberry tree/shrub) (Arbustus enedo); + andrachne_F_N : N ; -- [XAXNS] :: |plant, purslane (Portulacca oleraca); + andremas_F_N : N ; -- [DAXNS] :: plant, purslane (Portulacca oleraca); 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 ; - androsaces_N_N : N ; - androsaemon_N_N : N ; - andruo_V : V ; - aneclogistus_A : A ; - anellus_M_N : N ; - anemometrum_N_N : N ; - anemone_F_N : N ; - anesum_N_N : N ; - anethum_N_N : N ; - aneticula_F_N : N ; - aneticus_A : A ; - anetina_F_N : N ; - anetinus_A : A ; - anetum_N_N : N ; - anfractum_N_N : N ; - anfractuosus_A : A ; - anfractus_A : A ; - anfractus_M_N : N ; - angaria_F_N : N ; - angarialis_A : A ; - angario_V2 : V2 ; - angarium_N_N : N ; - angarius_M_N : N ; - angarus_M_N : N ; - angelicus_A : A ; - angelificatus_A : A ; - angellus_M_N : N ; - angelus_M_N : N ; - angina_F_N : N ; - angiportum_N_N : N ; - angiportus_M_N : N ; - anglicismus_M_N : N ; - ango_V2 : V2 ; - angolarius_A : A ; - angor_M_N : N ; - angorio_V2 : V2 ; - angueus_A : A ; - anguicomus_A : A ; - anguiculus_M_N : N ; - anguifer_A : A ; - anguigena_M_N : N ; - anguilla_F_N : N ; - anguimanus_A : A ; + androdamas_2_N : N ; -- [XXXNS] :: variety of hematite (native sesquioxide of iron Fe2O3); silver marcasite; + androgynus_M_N : N ; -- [XXXCO] :: hermaphrodite, person of indeterminate sex; + andron_M_N : N ; -- [XXXEO] :: corridor, hallway, aisle, passage; men's apartment in a house; + andronitis_M_N : N ; -- [XXHEO] :: men's apartment in a house (Greek); + androsaces_N_N : N ; -- [XAXNO] :: marine plant (zoophyte?) (OLD says N, not F); + androsaemon_N_N : N ; -- [XAXNO] :: variety of St John's wort (Hypericum perforatum and perfoliatum); + andruo_V : V ; -- [XEXFS] :: run back; (dance around at Salian religious festivals); + aneclogistus_A : A ; -- [XXXFO] :: discretionary, not required to give an account of one's doings; + anellus_M_N : N ; -- [XXXDO] :: little ring, esp. finger ring; + anemometrum_N_N : N ; -- [GTXEK] :: wind gauge; + anemone_F_N : N ; -- [XAXEO] :: one or other of species of anemone/wind-flower; the plant othonna; + anesum_N_N : N ; -- [XAXDO] :: anise (Pimpinella anisum); + anethum_N_N : N ; -- [XAXCO] :: dill (Anethum graveolens); anise (L+S); + aneticula_F_N : N ; -- [XAXEO] :: duckling; term of endearment; + aneticus_A : A ; -- [DXXFS] :: remitting, abating; + anetina_F_N : N ; -- [XAXEO] :: duck's flesh/meat, duck; + anetinus_A : A ; -- [XAXEO] :: of/from/concerning a duck, duck's; + anetum_N_N : N ; -- [XAXCO] :: dill (Anethum graveolens); + anfractum_N_N : N ; -- [XXXEO] :: winding passage; curved/crooked part; bend; + anfractuosus_A : A ; -- [DGXES] :: roundabout, convoluted; prolix, protracted, wordy; + anfractus_A : A ; -- [XXXFO] :: curving, curved, bent; + anfractus_M_N : N ; -- [XXXBO] :: bend, curvature; circuit, (annual) round, orbit; spiral, coil; circumlocution; + angaria_F_N : N ; -- [DXXES] :: service of the public courier; service to a lord, villeinage; + angarialis_A : A ; -- [DXXFS] :: of/pertaining to service; + angario_V2 : V2 ; -- [XXXEO] :: press, requisition, commandeer; exact villeinage; compel, constrain (eccl.); + angarium_N_N : N ; -- [XXXFO] :: compulsory services (pl.) in connection with the imperial post; + angarius_M_N : N ; -- [DXXES] :: public courier, messenger; + angarus_M_N : N ; -- [XXXFO] :: public courier, messenger; + angelicus_A : A ; -- [EEXCE] :: dactylic measure (L+S); + angelificatus_A : A ; -- [DEXFS] :: changed into an angel; + angellus_M_N : N ; -- [XSXFO] :: small/barely perceptible angle; + angelus_M_N : N ; -- [EEXAE] :: angel; messenger; + angina_F_N : N ; -- [GBXEK] :: |angina; + angiportum_N_N : N ; -- [XXXDO] :: narrow street, alley; lane; + angiportus_M_N : N ; -- [XXXDO] :: narrow street, alley; lane; + anglicismus_M_N : N ; -- [GEXEK] :: Anglicism; + ango_V2 : V2 ; -- [XBXAO] :: choke, throttle, strangle; press tight; distress, cause pain, vex, trouble; + angolarius_A : A ; -- [XXXIO] :: occurring or placed at a corner; + angor_M_N : N ; -- [XBXCO] :: suffocation, choking, strangulation; mental distress, anxiety, anguish, vexation + angorio_V2 : V2 ; -- [FXXEE] :: compel; force; + angueus_A : A ; -- [DAXFS] :: of/pertaining to a serpent; + anguicomus_A : A ; -- [XXXEO] :: with snakes for hair; + anguiculus_M_N : N ; -- [XAXFO] :: little/small/young serpent/snake; + anguifer_A : A ; -- [XXXEO] :: snake-bearing, snaky; snake-haunted (place); + anguigena_M_N : N ; -- [XXXFO] :: offspring of a serpent/dragon; (pl. as epithet of Thebans); + anguilla_F_N : N ; -- [XXXCO] :: eel; hard skin of an eel used as a whip in school; slippery fellow; + anguimanus_A : A ; -- [XAXFS] :: with snaky hands/serpent-handed/tentacled; epithet of the elephant; 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 ; + anguimanus_M_N : N ; -- [XAXFO] :: one with snaky hands/serpent-handed/tentacled; elephant (L+S); + anguineus_A : A ; -- [XAXEO] :: of a snake, snaky, snake; consisting of snakes; + anguinum_N_N : N ; -- [XAXNS] :: snake's egg; + anguinus_A : A ; -- [XAXCO] :: of a snake/snakes, snaky, snake; consisting of snakes; resembling a snake; + anguipes_A : A ; -- [XYXEO] :: snake/serpent footed; epithet of giants; + anguipes_M_N : N ; -- [XYXFO] :: giants (pl.) (serpent footed); anguis_F_N : N ; -- [XAXAO] :: snake, serpent; dragon; (constellations) Draco, Serpens, Hydra; - anguis_M_N : N ; - anguitenens_A : A ; - anguitenens_M_N : N ; - angularis_A : A ; - angularis_M_N : N ; - angulariter_Adv : Adv ; - angularius_A : A ; - angulatim_Adv : Adv ; - angulatus_A : A ; - angulo_V2 : V2 ; - angulosus_A : A ; - angulus_M_N : N ; - angusta_F_N : N ; - angustas_F_N : N ; - anguste_Adv : Adv ; - angustia_F_N : N ; - angusticlavius_A : A ; - angustio_V2 : V2 ; - angustior_V : V ; - angustitas_F_N : N ; - angusto_V2 : V2 ; - angustum_N_N : N ; - angustus_A : A ; - anhelitio_F_N : N ; - anhelitor_M_N : N ; - anhelitus_M_N : N ; - anhelo_V : V ; - anhelus_A : A ; - anhydros_F_N : N ; - aniatrologetus_A : A ; - anicetum_N_N : N ; - anicetus_A : A ; - anicilla_F_N : N ; - anicla_F_N : N ; - anicula_F_N : N ; - anicularis_A : A ; - anilis_A : A ; - anilitas_F_N : N ; - aniliter_Adv : Adv ; - anilito_V2 : V2 ; - anilitor_V : V ; - anima_F_N : N ; - animabilis_A : A ; - animadversio_F_N : N ; - animadversor_M_N : N ; - animadverto_V2 : V2 ; - animaequitas_F_N : N ; - animaequus_A : A ; - animal_N_N : N ; - animalculum_N_N : N ; - animalis_A : A ; - animalis_F_N : N ; - animalitas_F_N : N ; - animaliter_Adv : Adv ; - animans_A : A ; + anguis_M_N : N ; -- [XAXAO] :: snake, serpent; dragon; (constellations) Draco, Serpens, Hydra; + anguitenens_A : A ; -- [XXXES] :: serpent-bearing; + anguitenens_M_N : N ; -- [XXXES] :: serpent-bearer (constellation Ophiuchus); + angularis_A : A ; -- [XXXDO] :: placed at corners, corner; having angles or corners, square; + angularis_M_N : N ; -- [XXXFS] :: angular vessel; + angulariter_Adv : Adv ; -- [FXXFM] :: at an angle; + angularius_A : A ; -- [XXXIO] :: occurring or placed at a corner; + angulatim_Adv : Adv ; -- [XXXEO] :: from corner to corner, in every nook and cranny; + angulatus_A : A ; -- [DXXES] :: made angular/cornered, with angles, angular; + angulo_V2 : V2 ; -- [DXXES] :: make angular/cornered; + angulosus_A : A ; -- [XXXDO] :: having an angle or angles, angular; + angulus_M_N : N ; -- [XXXAO] :: angle, apex; corner, nook, niche, recess, out-of-the-way spot; + angusta_F_N : N ; -- [FXXEE] :: small/confined/narrow space/place/passage, strait, channel; crisis, extremities + angustas_F_N : N ; -- [XXXEO] :: narrowness of space, confined position, closeness; + anguste_Adv : Adv ; -- [XXXBO] :: closely, in close quarters/narrow limits, cramped, crowded; sparingly, scantily; + angustia_F_N : N ; -- [XXXAO] :: narrow passage/place/space (pl.), defile; strait, pass; difficulties; meanness; + angusticlavius_A : A ; -- [XXXFO] :: having/wearing a narrow purple band (sign of equestrian rank); + angustio_V2 : V2 ; -- [DXXES] :: narrow, reduce width/size/amount, constrict, limit; choke, crowd together/hamper + angustior_V : V ; -- [FXXEB] :: be disturbed, be distressed; be crowded/pushed around; + angustitas_F_N : N ; -- [XXXEO] :: narrowness of space, confined position, closeness; + angusto_V2 : V2 ; -- [XXXCO] :: narrow, reduce width/size/amount, constrict, limit; choke, crowd together/hamper + angustum_N_N : N ; -- [XXXCO] :: small/confined/narrow space/place/passage, strait, channel; crisis, extremities; + angustus_A : A ; -- [XXXAO] :: narrow, steep, close, confined; scanty, poor; low, mean; narrowminded, petty; + anhelitio_F_N : N ; -- [XXXCO] :: panting, gasping; shortness of breath; iridescence, play of colors on gem; + anhelitor_M_N : N ; -- [XXXNO] :: one who suffers from shortness of breath; asthmatic; + anhelitus_M_N : N ; -- [XXXBO] :: panting, puffing, gasping, shortness of breath; breath, exhalation; bad breath; + anhelo_V : V ; -- [XXXBO] :: pant, gasp; breathe/gasp out, belch forth, exhale; utter breathlessly; + anhelus_A : A ; -- [XXXBO] :: panting, puffing, gasping; breath-taking; that emits hot blast/vapor, steaming; + anhydros_F_N : N ; -- [DAXFS] :: narcissus (plant thriving in dry regions); + aniatrologetus_A : A ; -- [XBXFO] :: untrained in medicine; ignorant of medicine; + anicetum_N_N : N ; -- [XBXIO] :: unsurpassable/sovereign remedy; (name for anise); + anicetus_A : A ; -- [XXXIO] :: unconquered, unconquerable; + anicilla_F_N : N ; -- [XXXCO] :: (little) old woman; + anicla_F_N : N ; -- [XXXES] :: (little) old woman; + anicula_F_N : N ; -- [XXXCO] :: (little) old woman; + anicularis_A : A ; -- [DXXFS] :: old-womanish; of an old woman; inflicted by an old woman; old wives tale; + anilis_A : A ; -- [XXXCO] :: old-womanish; of an old woman; inflicted by an old woman; old wives tale; + anilitas_F_N : N ; -- [XXXFO] :: old age (in women); the old age of a woman; + aniliter_Adv : Adv ; -- [XXXEO] :: in the manner of an old woman; with superstitious credulity; + anilito_V2 : V2 ; -- [XXXFO] :: to produce the feebleness of old age in (female); + anilitor_V : V ; -- [DXXFS] :: become an old woman; + anima_F_N : N ; -- [XXXAO] :: soul, spirit, vital principle; life; breathing; wind, breeze; air (element); + animabilis_A : A ; -- [XXXFS] :: made of air; animal, of living creatures, living, live, animate; vital; + animadversio_F_N : N ; -- [XXXBO] :: paying attention; observation, attention, notice; censure, reproach, punishment; + animadversor_M_N : N ; -- [XXXFO] :: observer, one who notices/pays attention/observes; + animadverto_V2 : V2 ; -- [XXXAO] :: pay attention to, attend to; notice, observe; judge, estimate; punish (in+ACC); + animaequitas_F_N : N ; -- [XXXIO] :: composure; + animaequus_A : A ; -- [DXXES] :: composed/patient/not easily moved; of good courage; of calm/confident mind; + animal_N_N : N ; -- [XXXBO] :: animal, living thing/offspring; creature, beast, brute; insect; + animalculum_N_N : N ; -- [GAXFM] :: lowly animal; + animalis_A : A ; -- [XXXCO] :: made of air; animal, of living creatures, living, live, animate; vital; + animalis_F_N : N ; -- [XXXEO] :: animal, living creature; + animalitas_F_N : N ; -- [FAXFM] :: animal nature; animal form; + animaliter_Adv : Adv ; -- [DXXFS] :: like an animal; + animans_A : A ; -- [XXXCO] :: living, having life; 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 ; - animatus_A : A ; - animatus_M_N : N ; - animax_A : A ; - animismus_M_N : N ; - animo_V2 : V2 ; - animose_Adv : Adv ; - animositas_F_N : N ; - animosus_A : A ; - animula_F_N : N ; - animulus_M_N : N ; - animus_M_N : N ; - anisatum_N_N : N ; - anisocyclum_N_N : N ; - anisum_N_N : N ; - ann_N : N ; - annale_N_N : N ; - annalis_M_N : N ; - annarius_A : A ; - annata_F_N : N ; - annato_V : V ; - annavigo_V : V ; - anne_Conj : Conj ; - annecto_V2 : V2 ; - annego_V2 : V2 ; - annexio_F_N : N ; - annexus_A : A ; - annexus_M_N : N ; - annicto_V : V ; - anniculus_A : A ; - annifer_A : A ; - annihilo_V2 : V2 ; - annitor_V : V ; - annius_M_N : N ; - anniversarie_Adv : Adv ; - anniversarium_N_N : N ; - anniversarius_A : A ; - annixus_A : A ; - anno_V : V ; - anno_V2 : V2 ; - annodo_V2 : V2 ; - annon_PConj : PConj ; - annona_F_N : N ; - annonarius_A : A ; - annonor_V : V ; - annositas_F_N : N ; - annosus_A : A ; - annotamentum_N_N : N ; - annotatio_F_N : N ; - annotatiuncula_F_N : N ; - annotator_M_N : N ; - annotatus_M_N : N ; - annotinus_A : A ; - annoto_V2 : V2 ; - annualis_A : A ; - annubilo_V : V ; - annuculus_A : A ; - annularis_A : A ; - annularius_A : A ; - annulatus_A : A ; - annullo_V2 : V2 ; - annulus_A : A ; - annulus_M_N : N ; - annumerabilis_A : A ; - annumeratio_F_N : N ; - annumero_V2 : V2 ; - annunciator_M_N : N ; - annuntialis_A : A ; - annuntiatio_F_N : N ; - annuntiator_M_N : N ; - annuntiatrix_F_N : N ; - annuntio_V2 : V2 ; - annuntius_A : A ; - annuo_V2 : V2 ; - annus_M_N : N ; - annuto_V : V ; - annutrio_V2 : V2 ; - annuum_N_N : N ; - annuus_A : A ; - anodynon_N_N : N ; - anodynos_A : A ; - anodynum_N_N : N ; - anodynus_A : A ; - anomalia_F_N : N ; - anomalus_A : A ; - anonis_F_N : N ; - anonomastos_A : A ; - anonymia_F_N : N ; - anonymos_F_N : N ; - anonymus_A : A ; - anquina_F_N : N ; - anquiro_V2 : V2 ; - anquisitio_F_N : N ; - ansa_F_N : N ; - ansarium_N_N : N ; - ansatus_A : A ; + animans_M_N : N ; -- [XXXCO] :: animate/living being/organism (not man), creature; animal/plant; (also N, OLD); + animatio_F_N : N ; -- [XXXFO] :: form of life; + animatrix_F_N : N ; -- [DXXFS] :: she who quickens/animates; + animatus_A : A ; -- [XXXCO] :: endowed with spirit, animated, spirited; inclined, minded; live, growing, fresh; + animatus_M_N : N ; -- [XBXNO] :: breathing; + animax_A : A ; -- [XXXFO] :: showing signs of life, alive; + animismus_M_N : N ; -- [GXXEK] :: animism; + animo_V2 : V2 ; -- [XXXBO] :: animate, give/bring life; revive, refresh; rouse, animate; inspire; blow; + animose_Adv : Adv ; -- [XXXCO] :: courageously, boldly, nobly, ardently, energetically; in high minded manner; + animositas_F_N : N ; -- [DXXES] :: boldness, courage, spirit; vehemence, impetuosity, ardor; wrath (eccl.); + animosus_A : A ; -- [XXXBO] :: courageous, bold, strong, ardent, energetic, noble; stormy (wind/sea), furious; + animula_F_N : N ; -- [XXXCO] :: little life; + animulus_M_N : N ; -- [XXXEO] :: heart, soul (only VOC as term of endearment); + animus_M_N : N ; -- [XXXAO] :: mind; intellect; soul; feelings; heart; spirit, courage, character, pride; air; + anisatum_N_N : N ; -- [GXXEK] :: aniseed liqueur; + anisocyclum_N_N : N ; -- [XTXFO] :: system of gears (pl.); screws/elastic springs (L+S); + anisum_N_N : N ; -- [XAXCO] :: anise (Pimpinella anisum); aniseed; + ann_N : N ; -- [XXXCG] :: year; abb. ann./a.; [regnavit ann(is). XLIIII => he reigned for 44 years]; + annale_N_N : N ; -- [XXXES] :: festival (pl.) held at the beginning of the year; + annalis_M_N : N ; -- [XXXCO] :: book of annuals/chronicles; annals (pl.), chronicle, history, yearbooks; + annarius_A : A ; -- [XXXFO] :: of age qualifications for public office [lex ~ => law defining age ...]; + annata_F_N : N ; -- [HEXFE] :: annates (w/media), a tax on benefices in the 1917 Code + annato_V : V ; -- [XXXCO] :: swim to/up to; swim beside/alongside; + annavigo_V : V ; -- [XXXNO] :: sail to/up to/towards; sail beside/alongside; + anne_Conj : Conj ; -- [XXXEO] :: |whether (or not) (an-ne); + annecto_V2 : V2 ; -- [XXXBO] :: tie on/to, tie up (ship); bind to; fasten on; attach, connect, join, annex; + annego_V2 : V2 ; -- [XXXFO] :: refuse; withhold; + annexio_F_N : N ; -- [DXXFS] :: tying/binding to, connecting; annexation; + annexus_A : A ; -- [XXXDO] :: attached, linked, joined; contiguous (to); related by blood; concerned; + annexus_M_N : N ; -- [XXXEO] :: fastening, attaching, connection; tying/binding to, connecting; annexation; + annicto_V : V ; -- [XXXEO] :: wink to/at; blink at; + anniculus_A : A ; -- [XXXCO] :: one year old, yearling; lasting only one year, limited to a year; + annifer_A : A ; -- [XAXEO] :: bearing fruit all year round; producing new shoots every year; + annihilo_V2 : V2 ; -- [DXXEC] :: annihilate, destroy, demolish, ruin, bring to nothing; + annitor_V : V ; -- [XXXCO] :: lean/rest upon, support oneself, (w/genibus) kneel; strive, work, exert, try; + annius_M_N : N ; -- [DXXFS] :: striving; exertion; + anniversarie_Adv : Adv ; -- [DXXFS] :: annually; + anniversarium_N_N : N ; -- [FXXEE] :: anniversary; birthday (Cal); + anniversarius_A : A ; -- [XXXCO] :: annual; employed/engaged/renewed/occurring/arising/growing annually/every year; + annixus_A : A ; -- [XXXFO] :: vehement, strenuous; + anno_V : V ; -- [XXXCO] :: swim to/towards, approach by swimming; sail to/towards; brought by sea (goods); + anno_V2 : V2 ; -- [DXXFS] :: pass/live through a year; + annodo_V2 : V2 ; -- [XAXEO] :: cut (shoot) right back, cut flush; cut off knots, cut away suckers; + annon_Conj : Conj ; -- [XXXCO] :: can it be that (introducing a question expecting a positive answer); + annona_F_N : N ; -- [XXXBO] :: year's produce; provisions; allotment/rations; wheat/food; price of grain/food; + annonarius_A : A ; -- [XXXEO] :: of/concerned with the grain supply; + annonor_V : V ; -- [DXXFS] :: collect provisions; + annositas_F_N : N ; -- [DXXES] :: fullness of years; old age; + annosus_A : A ; -- [XXXCO] :: aged, old, full of years; long-lived; immemorial; + annotamentum_N_N : N ; -- [XXXFO] :: note, comment, remark, annotation; + annotatio_F_N : N ; -- [XXXCO] :: note or comment; writing/making notes; notice; rescript of emperor by his hand; + annotatiuncula_F_N : N ; -- [XXXFO] :: short note/comment; brief annotation; + annotator_M_N : N ; -- [XXXFO] :: one who makes notes, note taker; observer; L:controller of the annual income; + annotatus_M_N : N ; -- [XXXFO] :: notice, noting, remark, mention; + annotinus_A : A ; -- [XXXDO] :: of last year, of the preceding/previous year; + annoto_V2 : V2 ; -- [XXXBO] :: note/jot down, notice, become aware; mark, annotate; record, state; designate; + annualis_A : A ; -- [DXXES] :: one year old; + annubilo_V : V ; -- [XXXFO] :: bring up clouds (against); + annuculus_A : A ; -- [XXXCO] :: one year old, yearling; lasting only one year, limited to a year; + annularis_A : A ; -- [FXXEE] :: relating to a ring; (anularius variant); + annularius_A : A ; -- [DXXES] :: one year old; + annulatus_A : A ; -- [DXXES] :: one year old; + annullo_V2 : V2 ; -- [DXXCS] :: annihilate, obliterate, destroy; annul (eccl.); + annulus_A : A ; -- [DXXES] :: one year old; + annulus_M_N : N ; -- [EXXEE] :: ring; (anulus variant); [~ Piscatoris => Pope's ring w/St. Peter casting net]; + annumerabilis_A : A ; -- [FXXFE] :: able to be added to; + annumeratio_F_N : N ; -- [XXXES] :: numbering, counting, enumeration; + annumero_V2 : V2 ; -- [XXXBO] :: count (in/out), pay; reckon (time); enumerate, run through; classify as; add; + annunciator_M_N : N ; -- [EXXEE] :: announcer, herald, one who announces; prophet (Souter); preacher; + annuntialis_A : A ; -- [EXXEP] :: proclamatory; + annuntiatio_F_N : N ; -- [DEXES] :: annunciation/announcement, declaration; message; prediction/prophecy; preaching; + annuntiator_M_N : N ; -- [DEXES] :: announcer, herald, one who announces; prophet (Souter); preacher; + annuntiatrix_F_N : N ; -- [EEXEP] :: announcer, preacher, one who announces; prophetess (Souter); + annuntio_V2 : V2 ; -- [XXXCO] :: announce, say, make known; report, bring news; prophesy/announce before; preach; + annuntius_A : A ; -- [XXXFO] :: announcer, that brings news/announces/makes known; + annuo_V2 : V2 ; -- [XXXBO] :: designate w/nod, nod assent; indicate, declare; favor/smile on; agree to, grant; + annus_M_N : N ; -- [XXXAO] :: year (astronomical/civil); age, time of life; year's produce; circuit, course; + annuto_V : V ; -- [XXXDO] :: nod (to); order/assent to by a nod; bow to; + annutrio_V2 : V2 ; -- [XXXNO] :: train (on); + annuum_N_N : N ; -- [XXXDO] :: yearly payment (usu. pl.); annual stipend, pension, annuity (L+S); + annuus_A : A ; -- [XXXBO] :: for a year, lasting/appointed for a year; paid/performed yearly, annual; + anodynon_N_N : N ; -- [DXXES] :: painkiller, anodyne, that which soothes; + anodynos_A : A ; -- [DXXES] :: that allays pain, anodyne; + anodynum_N_N : N ; -- [XXXEO] :: painkiller, anodyne, that which soothes; + anodynus_A : A ; -- [XXXEO] :: that allays pain, anodyne; + anomalia_F_N : N ; -- [XGXEO] :: irregularity, anomaly; (gram.); + anomalus_A : A ; -- [DGXFS] :: irregular, anomalous, deviating from the general rule; + anonis_F_N : N ; -- [XAXNO] :: rest-hollow plant (Ononis antiquorum); + anonomastos_A : A ; -- [DEXES] :: designation of one of the aeons (unnamed); + anonymia_F_N : N ; -- [GXXEK] :: anonymity; + anonymos_F_N : N ; -- [XARNO] :: Scythian plant; + anonymus_A : A ; -- [EXXEE] :: anonymous, name unknown; without a name; + anquina_F_N : N ; -- [XWXEO] :: halyard (rope/tackle used to raise/lower a sail/spar/flag); + anquiro_V2 : V2 ; -- [XLXCO] :: seek, search diligently after, inquire into, examine judicially; indict; + anquisitio_F_N : N ; -- [XLXFO] :: indictment; + ansa_F_N : N ; -- [XXXCO] :: handle (cup/jar/door), tiller; opening, opportunity; (rope) end, loop, hook; + ansarium_N_N : N ; -- [XLXIO] :: duty paid on food stuffs/comestibles brought to Rome for sale; + ansatus_A : A ; -- [XXXDO] :: having/provided with handle/handles; equipped with a thong for throwing; anser_F_N : N ; -- [XAXCO] :: goose; [anser masculus => gander]; - anser_M_N : N ; - anserculus_M_N : N ; - anserinus_A : A ; - anstruo_V2 : V2 ; - ansula_F_N : N ; - anta_F_N : N ; - antachates_M_N : N ; - antagonista_M_N : N ; - antamoebaeus_A : A ; - antapocha_F_N : N ; - antapodosis_F_N : N ; - antarcticus_A : A ; - antarius_A : A ; - ante_Acc_Prep : Prep ; - ante_Adv : Adv ; - antea_Adv : Adv ; - anteactus_A : A ; - anteago_V2 : V2 ; - anteambulo_M_N : N ; - antebasis_F_N : N ; - antecantamentum_N_N : N ; - antecantativus_A : A ; - antecapio_V2 : V2 ; - antecedens_A : A ; - antecedente_N_N : N ; - antecedo_V2 : V2 ; - antecello_V : V ; - antecenium_N_N : N ; - antecessio_F_N : N ; - antecessor_M_N : N ; - antecessus_M_N : N ; - antecurro_V2 : V2 ; - antecursor_M_N : N ; - anteeo_1_V2 : V2 ; - anteeo_2_V2 : V2 ; - antefero_V2 : V2 ; - antefixum_N_N : N ; - antefixus_A : A ; - antegenitalis_A : A ; - antegerio_Adv : Adv ; - antegredior_V : V ; - antehabeo_V2 : V2 ; - antehac_Adv : Adv ; - anteida_Adv : Adv ; - antelogium_N_N : N ; - anteloquium_N_N : N ; - antelucanum_N_N : N ; - antelucanus_A : A ; - antelucio_Adv : Adv ; - anteluclo_Adv : Adv ; - anteludium_N_N : N ; - antemeridialis_A : A ; - antemeridianus_A : A ; + anser_M_N : N ; -- [XAXCO] :: goose; [anser masculus => gander]; + anserculus_M_N : N ; -- [XAXFO] :: gosling, young goose; + anserinus_A : A ; -- [XAXDO] :: of/obtained from a goose, goose-; + anstruo_V2 : V2 ; -- [FXXEE] :: support; + ansula_F_N : N ; -- [XXXEO] :: handle of a cup; tie loop of sandal; hook, staple, small ring; little handle; + anta_F_N : N ; -- [XTXFO] :: square pilasters/columns/pillars (pl.); + antachates_M_N : N ; -- [XXXNO] :: variety of agate; + antagonista_M_N : N ; -- [DXXFS] :: adversary, opponent, antagonist; + antamoebaeus_A : A ; -- [DPXES] :: composed of two short two long one short syllable; + antapocha_F_N : N ; -- [DLXFS] :: document by which a debtor shows he paid; + antapodosis_F_N : N ; -- [XSXFO] :: parallelism in comparisons, application of similitude; + antarcticus_A : A ; -- [XSXEO] :: southern, antarctic; + antarius_A : A ; -- [XWXEO] :: supporting in front (ropes), fore-; (rope) for raising (scaffold, mast); + ante_Acc_Prep : Prep ; -- [XXXAO] :: in front/presence of, in view; before (space/time/degree); over against, facing; + ante_Adv : Adv ; -- [XXXBO] :: before, previously, first, before this, earlier; in front/advance of; forwards; + antea_Adv : Adv ; -- [XXXBO] :: before, before this; formerly, previously, in the past; + anteactus_A : A ; -- [XXXDO] :: past, that passed or was spent previously; + anteago_V2 : V2 ; -- [FXXEE] :: do before; + anteambulo_M_N : N ; -- [XXXDO] :: forerunner; one who proceeds another to clear the way; + antebasis_F_N : N ; -- [XWXFS] :: rear prop of a ballista, hindmost small pillar at pedestal of ballista; + antecantamentum_N_N : N ; -- [XXXFO] :: prelude, overture; preliminary; + antecantativus_A : A ; -- [DXXES] :: pertaining to a prelude/overture; + antecapio_V2 : V2 ; -- [XXXCO] :: take/seize beforehand, pre-occupy, forestall; anticipate; + antecedens_A : A ; -- [XXXCO] :: foregoing, preceding; former; prior; previously existent, pre-existing; + antecedente_N_N : N ; -- [XXXCO] :: what precedes; premises for reasoning; antecedent matters (pl.); + antecedo_V2 : V2 ; -- [XXXAO] :: precede, go before/ahead/in front of, attain before; excel, surpass, outstrip; + antecello_V : V ; -- [XXXCO] :: surpass, excel; be stronger than; prevail over; + antecenium_N_N : N ; -- [XXXFO] :: meal taken earlier in the day than the main meal; + antecessio_F_N : N ; -- [XXXEO] :: going forward/before, preceding; what leads to action/state; antecedents; + antecessor_M_N : N ; -- [XXXES] :: he that goes before, predecessor; scout/vanguard (army); law professors; + antecessus_M_N : N ; -- [XLXDO] :: payments in advance; + antecurro_V2 : V2 ; -- [XXXFO] :: run in front of/before; + antecursor_M_N : N ; -- [XWXCO] :: scout, forerunner; vanguard (pl.), leading troops; predecessor in office; + anteeo_1_V : V ; -- [XXXAO] :: go/walk before/ahead, precede, antedate; surpass; anticipate; prevent; + anteeo_2_V : V ; -- [XXXAO] :: go/walk before/ahead, precede, antedate; surpass; anticipate; prevent; + antefero_V2 : V2 ; -- [XXXBO] :: carry before; place before/in front of; bring in advance, anticipate; prefer; + antefixum_N_N : N ; -- [XTXDO] :: object/part fixed in front of something; ornamental tiles/figures at roof edge; + antefixus_A : A ; -- [XTXFO] :: fixed/fastened in front of; + antegenitalis_A : A ; -- [XXXNO] :: that existed before birth; + antegerio_Adv : Adv ; -- [XXXEO] :: greatly, very; + antegredior_V : V ; -- [XXXDO] :: move in front of; go before, precede; occur before; be an antecedent to; + antehabeo_V2 : V2 ; -- [XXXEO] :: have previously; prefer; + antehac_Adv : Adv ; -- [XXXCO] :: before this time, up til now; before now/then; previously, earlier; in the past; + anteida_Adv : Adv ; -- [BXXBS] :: before, before this; formerly, previously, in the past; + antelogium_N_N : N ; -- [XGXFO] :: introduction; preamble, prologue, preface; + anteloquium_N_N : N ; -- [DGXES] :: right to speak before another; preface; + antelucanum_N_N : N ; -- [XXXEO] :: hours before dawn/daybreak; last hours of the night (also pl.); + antelucanus_A : A ; -- [XXXCO] :: before daybreak, that precedes the dawn; of the hours before daybreak; + antelucio_Adv : Adv ; -- [XXXFO] :: before the dawn/daybreak; + anteluclo_Adv : Adv ; -- [XXXFO] :: before the dawn/daybreak; + anteludium_N_N : N ; -- [XDXFO] :: advance tableau or show; prelude; + antemeridialis_A : A ; -- [DXXFS] :: before noon, morning; occurring/done before noon; + antemeridianus_A : A ; -- [XXXDO] :: before noon, morning; occurring/done before noon; antemeridies_F_N : N ; -- [XXXFO] :: morning, forenoon; (OLD gives N); - antemeridies_M_N : N ; - antemitto_V2 : V2 ; - antemna_F_N : N ; - antemoenio_V2 : V2 ; - antemurale_N_N : N ; - antemuranus_A : A ; - antenatus_M_N : N ; - antenna_F_N : N ; - antenuptialis_A : A ; - anteo_1_V2 : V2 ; - anteo_2_V2 : V2 ; - anteoccupatio_F_N : N ; - anteoccupo_F_N : N ; - antepaenultimus_A : A ; - antepagmentum_N_N : N ; - antepartum_N_N : N ; - antepassio_F_N : N ; - antependium_N_N : N ; - antependulus_A : A ; - antepertum_N_N : N ; - antepes_M_N : N ; - antepilanus_M_N : N ; - antepolleo_V : V ; - antepono_V2 : V2 ; - anteportanus_A : A ; - antepotens_A : A ; - antepreparatorius_A : A ; - antequam_Conj : Conj ; - anteridion_N_N : N ; - anterior_A : A ; - anterioritas_F_N : N ; - anteris_F_N : N ; - antescholanus_M_N : N ; - antescholarius_M_N : N ; - antescolanus_M_N : N ; - antesignanus_M_N : N ; + antemeridies_M_N : N ; -- [XXXFO] :: morning, forenoon; (OLD gives N); + antemitto_V2 : V2 ; -- [XXXDO] :: send ahead. send in advance; place in front; + antemna_F_N : N ; -- [XXXCO] :: yard of a ship; yardarm; sail (poet.); antenna (Cal); + antemoenio_V2 : V2 ; -- [XWXFS] :: provide with a front/protecting wall, provide with a rampart; + antemurale_N_N : N ; -- [DEXES] :: protecting wall as outwork, breastwork; + antemuranus_A : A ; -- [DXXFS] :: that is before the wall; + antenatus_M_N : N ; -- [FLXFJ] :: younger son; + antenna_F_N : N ; -- [XXXCO] :: yard of a ship; yardarm; sail (poet.); antenna (Cal); + antenuptialis_A : A ; -- [DXXES] :: before marriage; + anteo_1_V : V ; -- [XXXAO] :: go before, go ahead, precede; surpass; anticipate; prevent; (anteeo drop e); + anteo_2_V : V ; -- [XXXAO] :: go before, go ahead, precede; surpass; anticipate; prevent; (anteeo drop e); + anteoccupatio_F_N : N ; -- [XGXFO] :: anticipation of an opponents arguments; + anteoccupo_F_N : N ; -- [DGXFS] :: anticipation of an opponents arguments; + antepaenultimus_A : A ; -- [DGXFS] :: pertaining to the third syllable from the end, antepenultimate; + antepagmentum_N_N : N ; -- [XTXEO] :: facing of door/window frame; mantel; thing used to garnish house exterior (L+S); + antepartum_N_N : N ; -- [XLXEO] :: property acquired in the past; + antepassio_F_N : N ; -- [DXXES] :: presentiment/expectation/anticipation of pain/suffering; + antependium_N_N : N ; -- [FEXFE] :: frontal, a hanging in front of the altar; + antependulus_A : A ; -- [XXXFO] :: hanging down in front (of the head); + antepertum_N_N : N ; -- [XLXEO] :: property acquired in the past; + antepes_M_N : N ; -- [XAXFO] :: forefoot, forepaw; + antepilanus_M_N : N ; -- [XXXEO] :: men (pl.) who fought in the first or second line in a Roman battle formation; + antepolleo_V : V ; -- [XXXEO] :: be stronger/more powerful than; surpass physically, excel; + antepono_V2 : V2 ; -- [XXXBO] :: set before (w/DAT), place/station before, serve (food); prefer, value above; + anteportanus_A : A ; -- [XYXIO] :: epithet of Hercules; + antepotens_A : A ; -- [XXXFO] :: superior in power/fortune, strongest; exceeding; + antepreparatorius_A : A ; -- [HXXFE] :: pre-preparatory, antepreparatory; + antequam_Conj : Conj ; -- [XXXAO] :: before, sooner than; until; + anteridion_N_N : N ; -- [XTXFS] :: little prop/support; + anterior_A : A ; -- [XXXEO] :: earlier, previous, former; that is before, foremost; + anterioritas_F_N : N ; -- [GXXEK] :: antecedence; + anteris_F_N : N ; -- [XTXFO] :: prop, support, pillar; counterprops (pl.) supporting a wall, buttress; + antescholanus_M_N : N ; -- [XGXFO] :: assistant master/teacher; + antescholarius_M_N : N ; -- [XXXIO] :: attendant; + antescolanus_M_N : N ; -- [DXXIS] :: assistant master/teacher; + antesignanus_M_N : N ; -- [XWXCO] :: skirmisher; leader; troops (pl.) in front rank of legion/before the standard; 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_V2 : V2 ; - anteventulus_A : A ; - anteversio_F_N : N ; - anteverto_V2 : V2 ; - antevio_V : V ; - antevolo_V2 : V2 ; - anthalium_N_N : N ; - anthedon_A : A ; - anthedon_F_N : N ; - anthemis_F_N : N ; - anthemum_N_N : N ; - anthera_F_N : N ; - anthericos_M_N : N ; - anthericus_M_N : N ; - anthias_M_N : N ; - anthinus_A : A ; - anthologicon_N_N : N ; - anthophoros_A : A ; - anthracias_F_N : N ; - anthracinum_N_N : N ; - anthracinus_A : A ; - anthracites_F_N : N ; - anthracitis_F_N : N ; - anthrax_M_N : N ; - anthriscum_N_N : N ; - anthriscus_F_N : N ; - anthropocentricus_A : A ; - anthropocentrismus_M_N : N ; - anthropographos_M_N : N ; - anthropolatra_M_N : N ; - anthropologia_F_N : N ; - anthropologicus_A : A ; - anthropologus_M_N : N ; - anthropomorphismus_M_N : N ; - anthropomorphita_M_N : N ; - anthropomorphitus_A : A ; - anthropomorphus_A : A ; - anthropophagia_F_N : N ; - anthropophagos_M_N : N ; - anthropophagus_M_N : N ; - anthus_M_N : N ; - anthyllion_N_N : N ; - anthyllis_F_N : N ; - anthyllium_N_N : N ; - anthyllum_N_N : N ; - anthypophora_F_N : N ; - antia_F_N : N ; - antiaerius_A : A ; - antias_F_N : N ; - antibacchus_M_N : N ; - antibasis_F_N : N ; - antibioticum_N_N : N ; - antiboreum_N_N : N ; - antiboreus_A : A ; - antibrachium_N_N : N ; - anticategoria_F_N : N ; - anticessus_M_N : N ; - antichthonis_M_N : N ; - anticipale_N_N : N ; - anticipalis_A : A ; - anticipatio_F_N : N ; - anticipo_V : V ; - anticoagulans_N_N : N ; - anticonceptio_F_N : N ; - anticonceptivus_A : A ; - anticonvulsivum_N_N : N ; - anticorpus_N_N : N ; - anticthonis_M_N : N ; - antictonis_M_N : N ; - anticus_A : A ; - anticus_M_N : N ; - anticuus_A : A ; - antidactylus_A : A ; - antidea_Adv : Adv ; - antideo_1_V2 : V2 ; - antideo_2_V2 : V2 ; - antidepressivum_N_N : N ; - antidhac_Adv : Adv ; - antidoron_N_N : N ; - antidotos_F_N : N ; - antidotum_N_N : N ; - antidotus_F_N : N ; - antigelidum_N_N : N ; - antigerio_Adv : Adv ; - antigradus_M_N : N ; - antihistaminicum_N_N : N ; - antihypertensivum_N_N : N ; - antiinfectiosus_A : A ; - antilope_F_N : N ; - antilucanus_A : A ; - antimensium_N_N : N ; - antimetabole_F_N : N ; - antineuralgicum_N_N : N ; - antinomia_F_N : N ; - antioxydativus_A : A ; - antipagmentum_N_N : N ; - antipascha_N_N : N ; - antipastus_M_N : N ; - antipathes_F_N : N ; - antipathes_N_N : N ; - antipathia_F_N : N ; - antipendium_N_N : N ; - antiphernum_N_N : N ; - antiphona_F_N : N ; - antiphonalis_A : A ; - antiphonarium_N_N : N ; - antiphonarius_A : A ; - antiphonatim_Adv : Adv ; - antiphone_Adv : Adv ; - antiphonum_N_N : N ; - antiphonus_A : A ; - antiphrasis_F_N : N ; - antipodis_M_N : N ; - antiptosis_F_N : N ; - antiquarius_A : A ; - antiquarius_M_N : N ; - antiquatio_F_N : N ; - antiquatus_A : A ; - antique_Adv : Adv ; - antiquitas_F_N : N ; - antiquitus_A : A ; - antiquitus_Adv : Adv ; - antiquo_V2 : V2 ; - antiquum_N_N : N ; - antiquus_A : A ; - antiquus_M_N : N ; - antirabicus_A : A ; - antirrhinon_N_N : N ; - antirrinum_N_N : N ; - antis_M_N : N ; - antisagoge_F_N : N ; - antiscius_M_N : N ; - antisemitismus_M_N : N ; - antisepticum_N_N : N ; - antisepticus_A : A ; - antisophista_M_N : N ; - antisophistes_M_N : N ; - antispasmodicum_N_N : N ; - antispodon_N_N : N ; - antista_F_N : N ; - antistatus_M_N : N ; + antestes_M_N : N ; -- [XEXBO] :: (high) priest/priestess; mouthpiece of god; master/authority (w/GEN); protector; + antesto_V : V ; -- [XXXCW] :: surpass, excel, be superior to; stand before; + antestor_V : V ; -- [XXXCO] :: call as a witness (before the opening of the cause); + antetestatus_M_N : N ; -- [XLXES] :: witness; + anteurbanum_N_N : N ; -- [DXXFS] :: suburbs (pl.); + anteurbanus_A : A ; -- [XXXFO] :: suburban; situated near the city; + antevenio_V2 : V2 ; -- [XXXCO] :: come/go/arrive/act before, get in front of; anticipate, forestall; surpass; + anteventulus_A : A ; -- [XXXFO] :: lying forward (of hair), projecting in front; + anteversio_F_N : N ; -- [DXXFS] :: anticipating, preventing; + anteverto_V2 : V2 ; -- [XXXCO] :: act first, get ahead; anticipate; forestall; give priority; take precedence; + antevio_V : V ; -- [DXXES] :: go before, precede; + antevolo_V2 : V2 ; -- [XXXDO] :: fly in front of/before; + anthalium_N_N : N ; -- [XAXNO] :: earth-almond (Cyperus esculentus), chufa (plant with small tubers, pig food); + anthedon_A : A ; -- [XAXNO] :: thorn-tree; [(mespilus) anthedon => oriental thorn (Crataegus orientalis)]; + anthedon_F_N : N ; -- [XAHNS] :: species of medlar-tree, Greek medlar (Mespilus tanacet); + anthemis_F_N : N ; -- [XAXNO] :: plant (chamomile?); + anthemum_N_N : N ; -- [XAXNS] :: herb good for calculi (bladder/kidney stones); + anthera_F_N : N ; -- [XBXEO] :: salve/medicament made with flower petals; + anthericos_M_N : N ; -- [XAXNS] :: flowering stem of the asphodel; + anthericus_M_N : N ; -- [XAXNO] :: flowering stem of the asphodel; + anthias_M_N : N ; -- [XAXNO] :: sea fish (difficult to catch L+S); + anthinus_A : A ; -- [XAXNO] :: made from flowers, flower-; + anthologicon_N_N : N ; -- [XGXNO] :: writings (pl.) on flowers; anthology; collected thoughts/proverbs/poems (L+S); + anthophoros_A : A ; -- [XAXNO] :: flowering; + anthracias_F_N : N ; -- [DXXFS] :: kind of carbuncle, the coal-carbuncle; (garnet?); + anthracinum_N_N : N ; -- [XXXFO] :: coal-black garments (pl.); + anthracinus_A : A ; -- [XXXFS] :: coal-black; + anthracites_F_N : N ; -- [XXXNO] :: precious stone (unknown); kind of bloodstone (L+S); + anthracitis_F_N : N ; -- [XXXNS] :: kind of carbuncle, the coal-carbuncle; (garnet?); + anthrax_M_N : N ; -- [XXXFS] :: natural cinnabar (HgS); a virulent ulcer; + anthriscum_N_N : N ; -- [XAXNS] :: southern chervil (Scandix australis); + anthriscus_F_N : N ; -- [XAXNS] :: southern chervil (Scandix australis); + anthropocentricus_A : A ; -- [GXXEK] :: anthropocentric; + anthropocentrismus_M_N : N ; -- [GXXEK] :: anthropocentrism; + anthropographos_M_N : N ; -- [XXXNO] :: portrait painter; + anthropolatra_M_N : N ; -- [DLXFS] :: man-worshiper; + anthropologia_F_N : N ; -- [GXXEK] :: anthropology; + anthropologicus_A : A ; -- [HXXFE] :: anthropological; + anthropologus_M_N : N ; -- [GXXEK] :: anthropologist; + anthropomorphismus_M_N : N ; -- [GXXEK] :: anthropomorphism; + anthropomorphita_M_N : N ; -- [DEXFS] :: heretics (pl.) who attributed to God a human form; + anthropomorphitus_A : A ; -- [DEXFS] :: professing the heresy of attributing to God a human form; + anthropomorphus_A : A ; -- [GXXEK] :: anthropoid; + anthropophagia_F_N : N ; -- [GXXEK] :: cannibalism; + anthropophagos_M_N : N ; -- [XXXEO] :: cannibals (pl.), man-eaters; + anthropophagus_M_N : N ; -- [XXXES] :: cannibals (pl.), man-eaters; + anthus_M_N : N ; -- [XAXNO] :: bird (heron?); small bird (yellow wagtail? Motacilla flava) (L+S); + anthyllion_N_N : N ; -- [XAXNO] :: two plants (species of Afuga?; Cressa cretica?); + anthyllis_F_N : N ; -- [XAXNO] :: two plants (species of Afuga?; Cressa cretica?); musk ivy (Teucrium iva) + anthyllium_N_N : N ; -- [XAXNO] :: two plants (species of Afuga?; Cressa cretica?); + anthyllum_N_N : N ; -- [XAXNO] :: two plants (species of Afuga?; Cressa cretica?); + anthypophora_F_N : N ; -- [XGXFO] :: reply to a supposed objection; anticipating and refuting opponents arguments; + antia_F_N : N ; -- [XXXFO] :: locks (pl.) of hair that hang down in front, forelock; + antiaerius_A : A ; -- [HWXEK] :: anti-aircraft; + antias_F_N : N ; -- [XBXFO] :: tonsil covered with a pellicle as a result of tonsillitis; + antibacchus_M_N : N ; -- [XPXFO] :: metrical foot short-long-long; verse composed of this meter; + antibasis_F_N : N ; -- [XWXFO] :: rear prop of a ballista, hindmost small pillar at pedestal of ballista; + antibioticum_N_N : N ; -- [HBXEK] :: antibiotic; + antiboreum_N_N : N ; -- [XSXFO] :: type of sundial (turned toward the north); + antiboreus_A : A ; -- [XSXFS] :: turned toward the north (sundial); + antibrachium_N_N : N ; -- [FBXFE] :: forearm; + anticategoria_F_N : N ; -- [XLXFO] :: counter-plea; recrimination (L+S); + anticessus_M_N : N ; -- [XLXCO] :: payments in advance; + antichthonis_M_N : N ; -- [XXXEO] :: people (pl.) of the southern hemisphere; antipodes (L+S); + anticipale_N_N : N ; -- [XXXFO] :: preliminaries (pl.); anticipatory actions; (preconceptions?); + anticipalis_A : A ; -- [XXXEO] :: preliminary, anticipatory; + anticipatio_F_N : N ; -- [XXXEO] :: preconception, previous notion; anticipation; idea before receiving instruction; + anticipo_V : V ; -- [XXXCO] :: occupy beforehand; anticipate, get the lead, get ahead of; have preconception; + anticoagulans_N_N : N ; -- [HBXEK] :: anticoagulant; + anticonceptio_F_N : N ; -- [HBXEK] :: contraception; + anticonceptivus_A : A ; -- [HBXEK] :: contraceptive; + anticonvulsivum_N_N : N ; -- [HBXEK] :: antispasmodic; + anticorpus_N_N : N ; -- [HSXEK] :: antibody; + anticthonis_M_N : N ; -- [XXXEO] :: people (pl.) of the southern hemisphere; antipodes (L+S); + antictonis_M_N : N ; -- [XXXEO] :: people (pl.) of the southern hemisphere; antipodes (L+S); + anticus_A : A ; -- [XXXES] :: foremost, that is in front; + anticus_M_N : N ; -- [XXXCO] :: men (pl.) of old, ancients, early authorities/writers; ancestors; + anticuus_A : A ; -- [XXXAO] :: old, ancient; aged; time-honored; primeval; simple, classic, venerable; senior; + antidactylus_A : A ; -- [DPXFS] :: reversed dactyl (short-short-long) (w/pes); + antidea_Adv : Adv ; -- [BXXBX] :: before, before this; formerly, previously, in the past; + antideo_1_V : V ; -- [XXXCO] :: go before, go ahead, precede; surpass; anticipate; prevent; (anteeo drop e); + antideo_2_V : V ; -- [XXXCO] :: go before, go ahead, precede; surpass; anticipate; prevent; (anteeo drop e); + antidepressivum_N_N : N ; -- [HBXEK] :: antidepressant; + antidhac_Adv : Adv ; -- [BXXDX] :: before this time, up til now; before now/then; previously, earlier; in the past; + antidoron_N_N : N ; -- [FEHFE] :: blessed bread distributed after the liturgy in the Greek rite + antidotos_F_N : N ; -- [XBXCO] :: antidote, remedy; + antidotum_N_N : N ; -- [XBXCO] :: antidote, remedy; + antidotus_F_N : N ; -- [XBXCO] :: antidote, remedy; + antigelidum_N_N : N ; -- [HXXEK] :: antifreeze; + antigerio_Adv : Adv ; -- [XXXEO] :: greatly, very; vigorously, strongly, energetically; + antigradus_M_N : N ; -- [XXXIO] :: front steps; + antihistaminicum_N_N : N ; -- [HBXEK] :: anti-histamine; + antihypertensivum_N_N : N ; -- [HBXEK] :: anti-hypertensive; + antiinfectiosus_A : A ; -- [GBXEK] :: anti-infectious; + antilope_F_N : N ; -- [GXXEK] :: antelope; + antilucanus_A : A ; -- [XXXCO] :: before daybreak, that precedes the dawn; of the hours before daybreak; + antimensium_N_N : N ; -- [FEXFE] :: consecrated cloth used for an altar; + antimetabole_F_N : N ; -- [XGXFS] :: reciprocal interchange; + antineuralgicum_N_N : N ; -- [GBXEK] :: neuralgic; + antinomia_F_N : N ; -- [XLXFO] :: contradiction between two laws; + antioxydativus_A : A ; -- [GSXEK] :: anti-oxidant; + antipagmentum_N_N : N ; -- [XTXFS] :: facing of a door/window frame; anything used to garnish house exterior (L+S); + antipascha_N_N : N ; -- [FEHFE] :: Low Sunday in the Greek rite; + antipastus_M_N : N ; -- [DPXFS] :: antipast, foot in verse short-long-long-short; verse consisting of antipasts; + antipathes_F_N : N ; -- [XXXFO] :: precious stone supposed to act as a charm against witchcraft (black coral L+S); + antipathes_N_N : N ; -- [XXXFS] :: charm (for arousing mutual love?) (against pain L+S); + antipathia_F_N : N ; -- [XXXNO] :: antipathy, aversion; counteraction; + antipendium_N_N : N ; -- [FEXFE] :: frontal, a hanging in front of the altar; + antiphernum_N_N : N ; -- [DLXFS] :: return-present (pl.) which the bridegroom brought to the bride (Cod. Just.); + antiphona_F_N : N ; -- [FDHFB] :: antiphon, response; (verse/sentence sung by one choir in response to another); + antiphonalis_A : A ; -- [FEXFE] :: antiphonal; (of verse sung in response by choir); + antiphonarium_N_N : N ; -- [FEXFE] :: book of antiphons; the Gradual; + antiphonarius_A : A ; -- [FXXFE] :: antiphonal; (of verse sung in response by choir); + antiphonatim_Adv : Adv ; -- [FEXFE] :: antiphonally; (of verse sung in response by choir); + antiphone_Adv : Adv ; -- [FDXEE] :: antiphonally; (of verse sung in response by choir); + antiphonum_N_N : N ; -- [FDHFB] :: antiphon, response (pl.); (verse/sentence by one choir in response to another); + antiphonus_A : A ; -- [FXXFE] :: antiphonal; (of verse sung in response by choir); + antiphrasis_F_N : N ; -- [DGXFS] :: use of a word in a sense opposite to its proper meaning; + antipodis_M_N : N ; -- [XXXDO] :: people (pl.) who live on the opposite side of the earth; (keeping late hours); + antiptosis_F_N : N ; -- [DGXFS] :: putting of one case for another; (grammar); + antiquarius_A : A ; -- [DXXES] :: reading/copying ancient manuscripts (w/ars); + antiquarius_M_N : N ; -- [GXXEK] :: antiquarian; + antiquatio_F_N : N ; -- [DLXFS] :: abrogating, annulling; + antiquatus_A : A ; -- [FXXEE] :: old/ancient/aged; time-honored; simple/classic; venerable; archaic/outdated; + antique_Adv : Adv ; -- [XXXDO] :: in the old way, in an old fashioned manner; + antiquitas_F_N : N ; -- [XXXBO] :: antiquity, the good old days; the ancients; virtues of olden times; being old; + antiquitus_A : A ; -- [FXXEE] :: old/ancient/aged; time-honored; simple/classic; venerable; archaic/outdated; + antiquitus_Adv : Adv ; -- [XXXCO] :: formerly, in former/ancient/olden times, from antiquity; long ago/before; + antiquo_V2 : V2 ; -- [XXXCO] :: reject (bill); vote for the rejection; + antiquum_N_N : N ; -- [DXXES] :: antiquity; things of olden times; old custom/habit; + antiquus_A : A ; -- [XXXAO] :: old/ancient/aged; time-honored; simple/classic; venerable; archaic/outdated; + antiquus_M_N : N ; -- [XXXCO] :: men (pl.) of old, ancients, early authorities/writers; ancestors; + antirabicus_A : A ; -- [HBXEK] :: anti-rabies; + antirrhinon_N_N : N ; -- [XAXNO] :: snapdragon, antirrhinum; + antirrinum_N_N : N ; -- [XAXNO] :: snapdragon, antirrhinum; + antis_M_N : N ; -- [XXXDS] :: rows (pl.) (vines/plants); ranks (soldiers); files (cavalry); + antisagoge_F_N : N ; -- [DGXFS] :: figure of speech one thing adduced is opposed to another, counter-assertion; + antiscius_M_N : N ; -- [DSXFS] :: people (pl.) on other side of equator with shadows in the opposite direction; + antisemitismus_M_N : N ; -- [HXXEE] :: anti-Semitism; + antisepticum_N_N : N ; -- [GXXEK] :: disinfectant; + antisepticus_A : A ; -- [HBXEK] :: antiseptic; + antisophista_M_N : N ; -- [XGXFS] :: one who seeks to refute another, opponent in argument; counter-sophist; + antisophistes_M_N : N ; -- [XGXEO] :: one who seeks to refute another, opponent in argument; counter-sophist; + antispasmodicum_N_N : N ; -- [HBXEK] :: antispasmodic; + antispodon_N_N : N ; -- [XAXNO] :: vegetable/wood ash (as substitute for mineral ash); + antista_F_N : N ; -- [FEXEE] :: mother superior, head of convent; superioress; + antistatus_M_N : N ; -- [DXXFS] :: superiority in rank, rank; 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 ; - antistitium_N_N : N ; - antistitor_M_N : N ; - antisto_V : V ; - antisto_V2 : V2 ; - antistoechum_N_N : N ; - antistrophe_F_N : N ; - antithesis_F_N : N ; - antitheton_N_N : N ; - antitheus_M_N : N ; - antizeugmenon_N_N : N ; - antlia_F_N : N ; - antoecumene_F_N : N ; - antomasivus_A : A ; - antonomasia_F_N : N ; - antoo_V2 : V2 ; - antrum_N_N : N ; - antruo_V : V ; - anucella_F_N : N ; - anulare_N_N : N ; - anularis_A : A ; - anularium_N_N : N ; - anularius_A : A ; - anularius_M_N : N ; - anulatus_A : A ; - anulus_M_N : N ; - anus_A : A ; - anus_F_N : N ; - anus_M_N : N ; - anxie_Adv : Adv ; - anxietas_F_N : N ; - anxietudo_F_N : N ; - anxifer_A : A ; - anxio_V2 : V2 ; - anxior_V : V ; - anxiosus_A : A ; - anxitudo_F_N : N ; - anxius_A : A ; - apage_Interj : Interj ; - apalocrocodes_N_N : N ; - apalus_A : A ; - aparctias_M_N : N ; - aparine_F_N : N ; - apathia_F_N : N ; - apathicus_A : A ; - apeliotes_F_N : N ; - apello_V2 : V2 ; - aper_C_N : N ; - aperantologia_F_N : N ; - aperculum_N_N : N ; - aperibilis_A : A ; - aperio_V2 : V2 ; - aperitio_F_N : N ; - aperito_F_N : N ; - apernor_V : V ; - aperte_Adv : Adv ; - apertibilis_A : A ; - apertio_F_N : N ; - aperto_V2 : V2 ; - apertor_M_N : N ; - apertum_N_N : N ; - apertura_F_N : N ; - apertus_A : A ; - apes_F_N : N ; - apex_M_N : N ; - apexabo_M_N : N ; - aphaca_F_N : N ; - aphaerema_N_N : N ; - aphaeresis_F_N : N ; - apharce_F_N : N ; - apheliotes_F_N : N ; - aphorisma_F_N : N ; - aphorismus_M_N : N ; - aphractum_N_N : N ; - aphractus_F_N : N ; - aphrodes_A : A ; - aphrodisas_F_N : N ; - aphrodisiaca_F_N : N ; - aphrodisiace_F_N : N ; - aphronitrum_N_N : N ; - aphtha_F_N : N ; - aphya_F_N : N ; - aphye_F_N : N ; - apiacius_A : A ; - apiacus_A : A ; - apiana_F_N : N ; - apianus_A : A ; - apiarium_N_N : N ; - apiarius_A : A ; - apiarius_M_N : N ; - apiastellum_N_N : N ; - apiastra_F_N : N ; - apiastrum_N_N : N ; - apiatus_A : A ; - apica_F_N : N ; - apicatus_A : A ; - apicius_A : A ; - apicula_F_N : N ; - apina_F_N : N ; - apio_V2 : V2 ; - apios_F_N : N ; - apirocalus_M_N : N ; - apis_F_N : N ; - apiscor_V : V ; - apium_N_N : N ; - aplanes_A : A ; - aplestia_F_N : N ; - apluda_F_N : N ; - aplustre_N_N : N ; - aplustrum_N_N : N ; - aplysia_F_N : N ; - apo_V2 : V2 ; + antistes_M_N : N ; -- [EEXCB] :: bishop, abbot, prelate; master; occasionally applied to those of inferior rank; + antistigma_N_N : N ; -- [DGXFS] :: character proposed for "ps"; critical mark before a verse to be transposed; + antistita_F_N : N ; -- [XEXCO] :: (high) priestess (of a temple/deity, w/GEN); + antistitium_N_N : N ; -- [DEXFS] :: office of antistes (high priest); + antistitor_M_N : N ; -- [XXXFO] :: supervisor; + antisto_V : V ; -- [XXXCO] :: stand before; surpass, excel, be superior to; + antisto_V2 : V2 ; -- [XXXCQ] :: surpass, excel, be superior to; stand before; + antistoechum_N_N : N ; -- [XGXFO] :: substitution of one letter for another; + antistrophe_F_N : N ; -- [XGXFS] :: |rhetorical figure when several parts of a period end with the same word; + antithesis_F_N : N ; -- [DGXFS] :: substitution of one letter for another; + antitheton_N_N : N ; -- [XGXEO] :: antithesis, opposition; + antitheus_M_N : N ; -- [DEXFS] :: one who pretends to be God; the devil; + antizeugmenon_N_N : N ; -- [DGXFS] :: grammatical figure by which several clauses are referred to the same verb; + antlia_F_N : N ; -- [XTXEO] :: pump, mechanism for raising water, foot pump; (prison activity) treadmill; + antoecumene_F_N : N ; -- [XSXFO] :: opposite quarter of the earth, southern half of hemisphere; + antomasivus_A : A ; -- [DGXFS] :: pertaining to forming an antonomasia/epithet; + antonomasia_F_N : N ; -- [XGXEO] :: use of an epithet/appellative as substitute for proper name, antonomasia; + antoo_V2 : V2 ; -- [DXXFS] :: requite; + antrum_N_N : N ; -- [XXXBO] :: cave; cavern; hollow place with overarching foliage; cavity, hollow; tomb; + antruo_V : V ; -- [XEXFS] :: dance around (at Salian religious festivals); + anucella_F_N : N ; -- [XXXFO] :: (little) old woman; + anulare_N_N : N ; -- [XXXNO] :: kind of white paint (prepared with chalk mixed with glass beads L+S); + anularis_A : A ; -- [XXXNS] :: relating to (signet) ring; + anularium_N_N : N ; -- [XWXIO] :: payment to veterans on discharge; + anularius_A : A ; -- [XXXEO] :: connected with (signet) ring-makers; used in making rings; of rings; + anularius_M_N : N ; -- [XXXDO] :: ring-maker; + anulatus_A : A ; -- [XXXEO] :: provided with a ring, ringed; fitted with a fetter, fettered; + anulus_M_N : N ; -- [XXXFS] :: |posterior, fundament; anus; + anus_A : A ; -- [XXXBO] :: old (of female persons and things), aged; + anus_F_N : N ; -- [XXXBO] :: old woman; hag; matron; old maid; sibyl, sorceress; foolish/cringing person; + anus_M_N : N ; -- [XXXEO] :: |year (astronomical/civil); age, time of life; year's produce; + anxie_Adv : Adv ; -- [XXXCO] :: anxiously, meticulously, over-carefully; with distress/chagrin; troublesomely; + anxietas_F_N : N ; -- [XXXCO] :: anxiety, worry, solicitude; carefulness, extreme care; + anxietudo_F_N : N ; -- [DXXES] :: worry, anxiety, anguish, trouble; mental distress; + anxifer_A : A ; -- [XXXEO] :: bringing/causing mental anguish/anxiety, harassing, worrying; + anxio_V2 : V2 ; -- [DXXES] :: make uneasy/anxious/nervous; worry; + anxior_V : V ; -- [FXXEE] :: be in anguish; be troubled; worry; + anxiosus_A : A ; -- [DXXFS] :: anxious, full of anxiety, uneasy; causing anxiety/pain/uneasiness; + anxitudo_F_N : N ; -- [XXXEO] :: worry, anxiety, anguish, trouble; mental distress; + anxius_A : A ; -- [XXXBO] :: anxious, uneasy, disturbed; concerned; careful; prepared with care; troublesome; + apage_Interj : Interj ; -- [XXXCO] :: be off!; nonsense!, get away with you!; + apalocrocodes_N_N : N ; -- [XBXIO] :: kind of eye salve; + apalus_A : A ; -- [XXXEO] :: soft-boiled (egg). soft, tender; + aparctias_M_N : N ; -- [XXXEO] :: north wind; + aparine_F_N : N ; -- [XAXNO] :: plant, cleavers (Galium aparine); + apathia_F_N : N ; -- [XSXFO] :: apathy; freedom from emotion/passion (as a Stoic value); + apathicus_A : A ; -- [GXXEK] :: apathetic; + apeliotes_F_N : N ; -- [XXXDO] :: east wind; + apello_V2 : V2 ; -- [EXXEW] :: draw/push/drive aside/away (from); + aper_C_N : N ; -- [XAXCO] :: boar, wild boar (as animal, food, or used as a Legion standard/symbol); a fish; + aperantologia_F_N : N ; -- [XXXFO] :: interminable discussion; + aperculum_N_N : N ; -- [GXXEK] :: can-opener; + aperibilis_A : A ; -- [DXXES] :: opening; + aperio_V2 : V2 ; -- [XXXAO] :: uncover, open, disclose; explain, recount; reveal; found; excavate; spread out; + aperitio_F_N : N ; -- [FXXEE] :: opening; aperture; + aperito_F_N : N ; -- [EXXEE] :: opening; revelation/disclosure; + apernor_V : V ; -- [FXXEE] :: scorn; + aperte_Adv : Adv ; -- [XXXBO] :: openly, publicly; manifestly; w/o disguise/reserve; plainly, clearly, frankly; + apertibilis_A : A ; -- [DXXES] :: opening; + apertio_F_N : N ; -- [XXXEO] :: opening; act of making (building, etc.) accessible; grand/solemn opening; + aperto_V2 : V2 ; -- [XXXFO] :: bare, expose, lay bare; + apertor_M_N : N ; -- [DXXES] :: he who opens/begins, opener; + apertum_N_N : N ; -- [XXXBO] :: area free from obstacles, open/exposed space, the open (air); known facts (pl.); + apertura_F_N : N ; -- [XXXDS] :: act of opening; opening (will); an opening, aperture, hole; + apertus_A : A ; -- [XXXAO] :: open/public/free; uncovered/exposed/opened; frank/clear/manifest; cloudless; + apes_F_N : N ; -- [DAXCS] :: bee; swarm regarded as a portent; + apex_M_N : N ; -- [XGXES] :: |long mark over vowel; outlines of letters, letter; least particle, speck; + apexabo_M_N : N ; -- [XXXFO] :: kind of sausage; + aphaca_F_N : N ; -- [XAXNO] :: kind of vetch/tare; pulse, field/chick peas (Lathyrus alphca) (L+S); dandelion; + aphaerema_N_N : N ; -- [XAXNO] :: spelt bran, grits, sharps; + aphaeresis_F_N : N ; -- [DGXFS] :: dropping a letter or syllable at the beginning of a word; + apharce_F_N : N ; -- [XAXNO] :: evergreen tree (Arbutus hybrida); + apheliotes_F_N : N ; -- [XXXDO] :: east wind; + aphorisma_F_N : N ; -- [FXXFM] :: aphorism; pithy sentence; + aphorismus_M_N : N ; -- [FGXFM] :: aphorism; + aphractum_N_N : N ; -- [XXXEO] :: undecked boat; open ship; + aphractus_F_N : N ; -- [XXXEO] :: undecked boat; open ship; + aphrodes_A : A ; -- [XXXNS] :: foaming, like foam; [~ mecon => wild poppy]; + aphrodisas_F_N : N ; -- [DAXFS] :: sweet flag/iris?; calamus?; + aphrodisiaca_F_N : N ; -- [XXXNO] :: unknown precious stone (reddish-white L+S); + aphrodisiace_F_N : N ; -- [XXXNS] :: unknown precious stone (reddish-white L+S); + aphronitrum_N_N : N ; -- [XXXDO] :: sodium carbonate, washing soda; spuma nitri; efflorescence of saltpeter (L+S); + aphtha_F_N : N ; -- [XBXFO] :: parasitic stomatitis, thrush, aphthous ulcers (pl.) (fungal disease); + aphya_F_N : N ; -- [XAXNS] :: small fish (regarded by Pliny as a separate species); anchovy? (L+S); + aphye_F_N : N ; -- [XAXNO] :: small fish (regarded by Pliny as a separate species); anchovy? (L+S); + apiacius_A : A ; -- [XAXFO] :: of parsley or celery; + apiacus_A : A ; -- [XAXFO] :: of parsley; similar to parsley (L+S); + apiana_F_N : N ; -- [DAXES] :: chamomile; + apianus_A : A ; -- [XAXNO] :: of/belonging to bees; muscatel (grape loved by the bees); + apiarium_N_N : N ; -- [XAXEO] :: apiary, bee-house, beehive; + apiarius_A : A ; -- [XAXFS] :: relating to bees; + apiarius_M_N : N ; -- [XAXNO] :: beekeeper; + apiastellum_N_N : N ; -- [DAXES] :: plant, batrachior or herba scelerata; bryonia; + apiastra_F_N : N ; -- [DAXFS] :: bee-eater, bird that lies in wait for bees, (Merops apiaster); + apiastrum_N_N : N ; -- [XAXDO] :: one or more varieties of balm (plant of which bees like); wild parsley (L+S); + apiatus_A : A ; -- [XAXNO] :: resembling parsley (of tables with a certain grain pattern); boiled w/parsley; + apica_F_N : N ; -- [XAXEO] :: sheep with no wool on its belly; + apicatus_A : A ; -- [XEXFO] :: wearing he ceremonial pointed cap of a priest; + apicius_A : A ; -- [XAXFO] :: name of a variety of grape and wine; ("sought/liked by bees"); + apicula_F_N : N ; -- [XAXEO] :: little bee; + apina_F_N : N ; -- [XXXFO] :: trifles (pl.), nonsense; + apio_V2 : V2 ; -- [XXXEO] :: fasten, attach, join, connect, bind; + apios_F_N : N ; -- [XAXNO] :: kind of spurge; + apirocalus_M_N : N ; -- [XXXFO] :: one lacking in taste; + apis_F_N : N ; -- [XAXCO] :: bee; swarm regarded as a portent; Apis, sacred bull worshiped in Egypt; + apiscor_V : V ; -- [XXXCO] :: reach, obtain, win (lawsuit); grasp; catch (person); attack (infection); pursue; + apium_N_N : N ; -- [GXXEK] :: celery; + aplanes_A : A ; -- [DXXFS] :: standing firm, not moving about; + aplestia_F_N : N ; -- [EXXEP] :: surfeit, excess; excessive amount/supply/indulgence/consumption/gluttony; + apluda_F_N : N ; -- [XAXDO] :: chaff; bran (L+S); kind of drink?; + aplustre_N_N : N ; -- [XWXCO] :: ornamented stern-post of a ship; (also plural for a single) ship (pl.); + aplustrum_N_N : N ; -- [XWXCO] :: ornamented stern-post of a ship; (also plural for a single) ship (pl.); + aplysia_F_N : N ; -- [XAXNO] :: sponge of inferior quality; + apo_V2 : V2 ; -- [XXXES] :: fasten, attach, join, connect, bind; apocalypsis_1_N : N ; -- [EEXEW] :: revelation, disclosing; (Book of Revelations, Apocalypse of St John); - apocalypsis_2_N : N ; - apocalypsis_F_N : N ; - apocalypticus_A : A ; - apocarteresis_F_N : N ; - apocatastasis_F_N : N ; - apocatastaticus_A : A ; - apocatus_A : A ; - apocha_F_N : N ; - apochatus_A : A ; - apocolocyntosis_F_N : N ; - apocope_F_N : N ; - apocrisiarius_M_N : N ; - apocryphum_N_N : N ; - apocryphus_A : A ; - apoculo_V2 : V2 ; - apocynon_N_N : N ; - apodicticus_A : A ; + apocalypsis_2_N : N ; -- [EEXEW] :: revelation, disclosing; (Book of Revelations, Apocalypse of St John); + apocalypsis_F_N : N ; -- [DEXES] :: revelation, disclosing; (Book of Revelations, Apocalypse of St John); + apocalypticus_A : A ; -- [EXXEE] :: pertaining to the Apocalypse/Book of Revelations; + apocarteresis_F_N : N ; -- [XXXFS] :: voluntary starvation; hunger strike; + apocatastasis_F_N : N ; -- [DXXES] :: restoration, re-establishment, return to former position; (stars to last year); + apocatastaticus_A : A ; -- [DSXFS] :: restoring, returning; (stars/planets to position of previous year); + apocatus_A : A ; -- [XLXIO] :: in respect of which a receipt for payment has been given; + apocha_F_N : N ; -- [XLXEO] :: receipt for payment; + apochatus_A : A ; -- [XLXIO] :: in respect of which a receipt for payment has been given; + apocolocyntosis_F_N : N ; -- [XXXFO] :: transformation into a gourd or pumpkin; "Metamorphosis of a Pumpkin" by Seneca; + apocope_F_N : N ; -- [XGXCS] :: dropping of a letter/syllable at the end of a word; + apocrisiarius_M_N : N ; -- [DEXES] :: delegate/deputy who performs a duty in place of another, envoy, nuncio; + apocryphum_N_N : N ; -- [DEXCE] :: apocryphal/non canonical writings (pl.) (not included in the Bible); + apocryphus_A : A ; -- [DEXCS] :: spurious, not genuine/canonical, apocryphal; + apoculo_V2 : V2 ; -- [XXXFO] :: go away, remove oneself, leave; + apocynon_N_N : N ; -- [XAXNO] :: dog's bane, a plant poisonous to dogs; magic bone in left side of venomous frog; + apodicticus_A : A ; -- [XGXFO] :: demonstrative, convincing; proving clearly (L+S); 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 ; - apographon_N_N : N ; - apographum_N_N : N ; - apolactizo_V2 : V2 ; - apolectus_A : A ; - apoliticus_A : A ; - apollinaria_F_N : N ; - apollinaris_F_N : N ; - apologatio_F_N : N ; - apologeticus_A : A ; - apologia_F_N : N ; - apologo_V2 : V2 ; - apologus_M_N : N ; - apopempeus_M_N : N ; - apophasis_F_N : N ; - apophegmatismos_M_N : N ; - apophoretum_N_N : N ; - apophoretus_A : A ; + apodixis_2_N : N ; -- [XLXEO] :: proof, demonstration; conclusive proof (L+S); + apodosis_F_N : N ; -- [DGXFS] :: subsequent proposition; clause referring to one preceding; + apodyterium_N_N : N ; -- [XXXDO] :: undressing-room in a bathing-house; + apogeus_A : A ; -- [XXXNO] :: blowing/coming from the land, land (breeze); + apographon_N_N : N ; -- [XXXNO] :: copy; transcript (L+S); + apographum_N_N : N ; -- [FXXEE] :: copy; transcript (L+S); + apolactizo_V2 : V2 ; -- [XXXFO] :: kick away, spurn; + apolectus_A : A ; -- [XAXNS] :: |kind of tunny fish not a year old; pieces for salting cut from that tunny; + apoliticus_A : A ; -- [GXXEK] :: apolitical; + apollinaria_F_N : N ; -- [DAXFS] :: plant (commonly called strychnos); + apollinaris_F_N : N ; -- [XAXNS] :: herb (commonly called hyoscyamus); species of solanum; + apologatio_F_N : N ; -- [XXXFO] :: fable or apologue; narration in the manner of Aesop; + apologeticus_A : A ; -- [FXXEE] :: apologetic; + apologia_F_N : N ; -- [DXXES] :: apology; defense; + apologo_V2 : V2 ; -- [XXXFO] :: spurn, reject; + apologus_M_N : N ; -- [XXXDO] :: narrative, story; fable, tale; + apopempeus_M_N : N ; -- [FEXFM] :: averter of evil; aversion/carrying away (of evil); + apophasis_F_N : N ; -- [DGXFS] :: denial, rhetorical device where one answers himself; + apophegmatismos_M_N : N ; -- [DBXFS] :: remedy for expelling phlegm, expectorant; + apophoretum_N_N : N ; -- [XXXDO] :: presents (pl.) for guests to take with them; + apophoretus_A : A ; -- [XXXFO] :: designed (for guests) to take with them (of presents); 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 ; - apopompaeus_M_N : N ; - apopompeus_M_N : N ; - apoproegmenon_N_N : N ; - apoproegmenum_N_N : N ; - apopsis_F_N : N ; - aporia_F_N : N ; - aporiatio_F_N : N ; - aporio_V : V ; - aporior_V : V ; - aposcopeuon_M_N : N ; - aposiopesis_F_N : N ; - aposphragisma_N_N : N ; - aposplenos_F_N : N ; - apostasia_F_N : N ; - apostata_M_N : N ; - apostaticus_A : A ; - apostato_V : V ; - apostatrix_F_N : N ; - apostema_N_N : N ; - apostola_F_N : N ; - apostolatus_M_N : N ; - apostolicitas_F_N : N ; - apostolicus_A : A ; - apostolicus_M_N : N ; - apostolus_M_N : N ; - apostrapha_F_N : N ; - apostropha_F_N : N ; - apostrophe_F_N : N ; - apostrophos_F_N : N ; - apostrophus_F_N : N ; - apotelesma_N_N : N ; - apotheca_F_N : N ; - apothecarius_M_N : N ; - apotheco_V2 : V2 ; - apotheosis_F_N : N ; + apophysis_2_N : N ; -- [XTXFO] :: curving outward (archit.), curve of column at top/bottom, apophyge; + apoplecticus_A : A ; -- [DBXES] :: apoplectic, stroke; + apoplexia_F_N : N ; -- [DBXES] :: apoplexy, stroke; + apoplexis_F_N : N ; -- [DBXES] :: apoplexy, stroke; + apopompaeus_M_N : N ; -- [FEXFM] :: averter of evil; aversion/carrying away (of evil); + apopompeus_M_N : N ; -- [FEXFM] :: averter of evil; aversion/carrying away (of evil); + apoproegmenon_N_N : N ; -- [XGXFS] :: things (pl.) that have been rejected; + apoproegmenum_N_N : N ; -- [XGXFO] :: things (pl.) that have been rejected; + apopsis_F_N : N ; -- [XTXFO] :: belvedere? (summer house/gazebo, raised turret/lantern atop house with view); + aporia_F_N : N ; -- [DXXES] :: doubt, perplexity; embarrassment, disorder; + aporiatio_F_N : N ; -- [DXXES] :: vacillation of mind, uncertainty, doubt; + aporio_V : V ; -- [EXXFW] :: be uncertain/in doubt, vacillate, waver, doubt, be perplexed/distressed/in need; + aporior_V : V ; -- [DXXCS] :: be uncertain/in doubt, vacillate, waver, doubt, be perplexed/distressed/in need; + aposcopeuon_M_N : N ; -- [XXXNO] :: looking into the distance; + aposiopesis_F_N : N ; -- [XGXFO] :: breaking off in the middle of speech, aposiosesis; + aposphragisma_N_N : N ; -- [XXXFO] :: device on a signet ring; + aposplenos_F_N : N ; -- [DAXFS] :: rosemary; + apostasia_F_N : N ; -- [DEXES] :: apostasy, departure from one's religion, repudiation of one's faith; + apostata_M_N : N ; -- [DEXCS] :: apostate; bad/wicked man; + apostaticus_A : A ; -- [DEXEE] :: apostate, rebel; + apostato_V : V ; -- [DEXFE] :: fall away (from), apostatize, forsake one's religion; + apostatrix_F_N : N ; -- [DEXFE] :: apostate (female); + apostema_N_N : N ; -- [XBXEO] :: abscess; ulcer; + apostola_F_N : N ; -- [DEXFE] :: apostle (female); + apostolatus_M_N : N ; -- [DEXFS] :: apostlate, office/position of an apostle, apostleship; + apostolicitas_F_N : N ; -- [FEXFE] :: apostlate, office/position of an apostle, apostleship; + apostolicus_A : A ; -- [DEXCS] :: apostolic; of/concerning/belonging to an Apostle; title applied to Pope; + apostolicus_M_N : N ; -- [DEXDS] :: saying of an Apostle; book of Epistles; pupils/friends of the Apostles (pl.); + apostolus_M_N : N ; -- [DLXCS] :: notice/statement of the case sent to a higher tribunal on an appeal (Roman law); + apostrapha_F_N : N ; -- [FDXFE] :: apostrophe; small mark or note (especially in music); + apostropha_F_N : N ; -- [EDXEE] :: small mark/note (esp. in music); apostrophe; + apostrophe_F_N : N ; -- [XGXDS] :: rhetorical figure when speaker turns away to address others; apostrophy; + apostrophos_F_N : N ; -- [DGXES] :: mark of elision, apostrophe; + apostrophus_F_N : N ; -- [DGXES] :: mark of elision, apostrophe; + apotelesma_N_N : N ; -- [DXXFS] :: influence of the stars on human destiny; + apotheca_F_N : N ; -- [XXXCO] :: store-house, store-room, repository; wine-cellar; + apothecarius_M_N : N ; -- [DXXES] :: warehouseman, shopkeeper; clerk, druggist; + apotheco_V2 : V2 ; -- [DXXES] :: store, lay up in a storehouse; + apotheosis_F_N : N ; -- [DEXES] :: deification, transformation into a god; (by extension) canonization (saint); apothesis_1_N : N ; -- [XTXFS] :: curving outward (archit.), curve of column at top/bottom, apophyge; - apothesis_2_N : N ; + apothesis_2_N : N ; -- [XTXFS] :: curving outward (archit.), curve of column at top/bottom, apophyge; 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 ; - apozymo_V2 : V2 ; - appagineculus_M_N : N ; - appalis_A : A ; - appango_V2 : V2 ; - apparamentum_N_N : N ; - apparate_Adv : Adv ; - apparatio_F_N : N ; - apparator_M_N : N ; - apparatorium_N_N : N ; - apparatrix_F_N : N ; - apparatus_A : A ; - apparatus_M_N : N ; - apparens_A : A ; - apparentia_F_N : N ; - appareo_V : V ; - apparesco_V : V ; - apparet_V0 : V ; - appario_V2 : V2 ; - apparitio_F_N : N ; - apparitor_M_N : N ; - apparitorius_A : A ; - apparitura_F_N : N ; - apparo_V2 : V2 ; - appectoro_V2 : V2 ; - appellans_M_N : N ; - appellatio_F_N : N ; - appellativus_A : A ; - appellator_M_N : N ; - appellatorius_A : A ; - appellatus_M_N : N ; - appellito_V : V ; - appello_V2 : V2 ; - appellum_N_N : N ; - appendeo_V : V ; - appendicula_F_N : N ; - appendicum_N_N : N ; - appenditium_N_N : N ; - appendix_F_N : N ; - appendo_V2 : V2 ; - appensor_M_N : N ; - appensorius_A : A ; - appertineo_V : V ; - appetens_A : A ; - appetenter_Adv : Adv ; - appetentia_F_N : N ; - appetibilis_A : A ; - appetisso_V2 : V2 ; - appetitio_F_N : N ; - appetitor_M_N : N ; - appetitus_M_N : N ; - appetivitus_A : A ; - appeto_M_N : N ; - appeto_V2 : V2 ; - appiciscor_V : V ; - appingo_V2 : V2 ; - applar_N_N : N ; - applaudo_V2 : V2 ; - applausor_M_N : N ; - applausus_M_N : N ; - applex_A : A ; - applicabilis_A : A ; - applicatio_F_N : N ; - applicatus_A : A ; - applico_V : V ; - applico_V2 : V2 ; - applodo_V2 : V2 ; - apploro_V : V ; - appluda_F_N : N ; - applumbator_M_N : N ; - applumbo_V2 : V2 ; - appono_V2 : V2 ; - apporrectus_A : A ; - apportatio_F_N : N ; - apporto_V2 : V2 ; - apposco_V2 : V2 ; - apposite_Adv : Adv ; - appositio_F_N : N ; - appositum_N_N : N ; - appositus_A : A ; - appositus_M_N : N ; - appostulo_V2 : V2 ; - appotus_A : A ; - appreciatamentum_N_N : N ; - appreciatio_F_N : N ; - appreciatum_N_N : N ; - apprecio_V2 : V2 ; - apprecor_V : V ; - apprehendo_V2 : V2 ; - apprehensibil_A : A ; - apprehensio_F_N : N ; - apprendo_V2 : V2 ; - apprenso_V2 : V2 ; - appretiatamentum_N_N : N ; - appretiatio_F_N : N ; - appretiatum_N_N : N ; - appretio_V2 : V2 ; - apprime_Adv : Adv ; - apprimo_V2 : V2 ; - apprimus_A : A ; - approbatio_F_N : N ; - approbator_M_N : N ; - approbe_Adv : Adv ; - approbo_V2 : V2 ; - approbus_A : A ; - appromissor_M_N : N ; - appromitto_V2 : V2 ; - approno_V2 : V2 ; - appropero_V : V ; - appropinquatio_F_N : N ; - appropinquo_V : V ; - appropio_V : V ; - appropriatio_F_N : N ; - approprio_V : V ; - approximo_V2 : V2 ; - appugno_V2 : V2 ; - appulsus_M_N : N ; - apra_F_N : N ; - aprarius_A : A ; - apricatio_F_N : N ; - apricitas_F_N : N ; - aprico_V : V ; - aprico_V2 : V2 ; - apricor_V : V ; - apricula_F_N : N ; - apriculus_M_N : N ; - apricum_N_N : N ; - apricus_A : A ; - aprineus_A : A ; - aprinus_A : A ; - apronia_F_N : N ; - aproxis_F_N : N ; - apruco_F_N : N ; - aprugineus_A : A ; - aprugna_F_N : N ; - aprugnus_A : A ; - apruna_F_N : N ; - aprunus_A : A ; - apscedo_V : V ; - apscessio_F_N : N ; - apscessus_M_N : N ; - apscido_V2 : V2 ; - apscindo_V2 : V2 ; - apscise_Adv : Adv ; - apscisio_F_N : N ; - apscissio_F_N : N ; - apscisus_A : A ; - apscondite_Adv : Adv ; - apsconditum_N_N : N ; - apsconditus_A : A ; - apscondo_V2 : V2 ; - apsconse_Adv : Adv ; - apsconsio_F_N : N ; - apsconsus_A : A ; - apsegmen_N_N : N ; - apsens_A : A ; - apsenthium_N_N : N ; - apsentia_F_N : N ; - apsentio_F_N : N ; - apsentivus_A : A ; - apsento_V2 : V2 ; - apsida_F_N : N ; - apsidata_F_N : N ; - apsilio_V : V ; - apsimilis_A : A ; - apsinthites_M_N : N ; - apsinthium_N_N : N ; - apsinthius_A : A ; - apsinthius_M_N : N ; - apsis_F_N : N ; - apsisto_V : V ; - apsistus_A : A ; - apsit_Interj : Interj ; - apsocer_M_N : N ; - apsolute_Adv : Adv ; - apsolutio_F_N : N ; - apsolutorium_N_N : N ; - apsolutorius_A : A ; - apsolutus_A : A ; - apsolvo_V2 : V2 ; - apsone_Adv : Adv ; - apsono_V : V ; - apsonus_A : A ; - apsorbeo_V2 : V2 ; - apsorptio_F_N : N ; - apsque_Abl_Prep : Prep ; - apstantia_F_N : N ; - apstemia_F_N : N ; - apstemius_A : A ; - apstergeo_V2 : V2 ; - apstergo_V2 : V2 ; - apsterreo_V2 : V2 ; - apstinax_A : A ; - apstinens_A : A ; - apstinenter_Adv : Adv ; - apstinentia_F_N : N ; - apstineo_V : V ; - apsto_V : V ; - apstractio_F_N : N ; - apstraho_V2 : V2 ; - apstrudo_V2 : V2 ; - apstruse_Adv : Adv ; - apstrusio_F_N : N ; - apstrusus_A : A ; - apstulo_V2 : V2 ; - apsum_V : V ; - apsumedo_F_N : N ; - apsumo_V2 : V2 ; - apsumptio_F_N : N ; - apsurde_Adv : Adv ; - apsurdus_A : A ; - apsyctos_F_N : N ; - aptatio_F_N : N ; - apte_Adv : Adv ; - apterus_A : A ; - aptha_F_N : N ; - aptitudo_F_N : N ; - apto_V2 : V2 ; - aptotum_N_N : N ; - aptrum_N_N : N ; - aptus_A : A ; - apua_F_N : N ; - apud_Acc_Prep : Prep ; - apulsus_M_N : N ; - apus_F_N : N ; - aput_Acc_Prep : Prep ; - apyrenum_N_N : N ; - apyrenus_A : A ; - apyretus_A : A ; - apyrinum_N_N : N ; - apyrinus_A : A ; - apyros_A : A ; - aqua_F_N : N ; - aquaductus_M_N : N ; - aquaeductus_M_N : N ; - aquaelicium_N_N : N ; - aquagium_N_N : N ; - aqualiculus_M_N : N ; - aqualis_A : A ; - aqualis_M_N : N ; - aquamanile_N_N : N ; - aquamanus_M_N : N ; - aquariolus_M_N : N ; - aquarium_N_N : N ; - aquarius_A : A ; - aquarius_M_N : N ; - aquate_Adv : Adv ; - aquaticum_N_N : N ; - aquaticus_A : A ; - aquatile_N_N : N ; - aquatilis_A : A ; - aquatio_F_N : N ; - aquator_M_N : N ; - aquatum_N_N : N ; - aquatus_A : A ; - aqueus_A : A ; - aquicelus_M_N : N ; - aquiducus_A : A ; - aquifolia_F_N : N ; - aquifolium_N_N : N ; - aquifolius_A : A ; - aquifuga_C_N : N ; - aquigenus_A : A ; - aquila_C_N : N ; - aquila_F_N : N ; - aquilegus_A : A ; - aquilentus_A : A ; - aquilex_M_N : N ; - aquilicium_N_N : N ; - aquilifer_M_N : N ; - aquilifera_M_N : N ; - aquilinus_A : A ; - aquilo_M_N : N ; - aquilonalis_A : A ; - aquilonaris_A : A ; - aquilonium_N_N : N ; - aquilonius_A : A ; - aquilus_A : A ; - aquiminale_N_N : N ; - aquiminalis_A : A ; - aquiminarium_N_N : N ; - aquimolina_F_N : N ; - aquivergium_N_N : N ; - aquola_F_N : N ; - aquor_V : V ; - aquosus_A : A ; - aquula_F_N : N ; - ara_F_N : N ; - arabarches_M_N : N ; - arabarchia_F_N : N ; - arabica_F_N : N ; - arabice_Adv : Adv ; - arabilis_A : A ; - arachidna_F_N : N ; - arachidne_F_N : N ; - arachis_F_N : N ; - arachnoides_A : A ; - aracia_F_N : N ; - aracos_M_N : N ; - aracostylos_A : A ; - arale_N_N : N ; - aranciata_F_N : N ; - arancium_N_N : N ; - aranea_F_N : N ; - araneans_A : A ; - araneola_F_N : N ; - araneolus_M_N : N ; - araneosus_A : A ; - araneum_N_N : N ; - araneus_A : A ; - araneus_M_N : N ; - arangia_F_N : N ; - arantia_F_N : N ; - arantium_N_N : N ; - arantius_A : A ; - arater_M_N : N ; - aratio_F_N : N ; - aratiuncula_F_N : N ; - aratius_A : A ; - arator_A : A ; - arator_M_N : N ; - aratorius_A : A ; - aratro_V : V ; - aratrum_N_N : N ; - aratum_N_N : N ; - arbilla_F_N : N ; - arbiter_M_N : N ; - arbiterium_N_N : N ; - arbitra_F_N : N ; - arbitralis_A : A ; - arbitrario_Adv : Adv ; - arbitrarius_A : A ; - arbitratio_F_N : N ; - arbitrator_M_N : N ; - arbitratrix_F_N : N ; - arbitratus_M_N : N ; - arbitrium_N_N : N ; - arbitrix_F_N : N ; - arbitro_V : V ; - arbitror_V : V ; - arbitum_N_N : N ; - arbor_F_N : N ; - arborarius_A : A ; - arborator_M_N : N ; - arboresco_V : V ; - arboretum_N_N : N ; - arboreus_A : A ; - arboria_F_N : N ; - arborius_A : A ; - arbos_F_N : N ; - arbuscula_F_N : N ; - arbustivus_A : A ; - arbusto_V2 : V2 ; - arbustulum_N_N : N ; - arbustum_N_N : N ; - arbustus_A : A ; - arbuteus_A : A ; - arbutum_N_N : N ; - arbutus_F_N : N ; - arca_F_N : N ; - arcano_Adv : Adv ; - arcanum_N_N : N ; - arcanus_A : A ; - arcanus_M_N : N ; - arcarius_A : A ; - arcarius_M_N : N ; - arcatura_F_N : N ; - arcebion_N_N : N ; - arcelacus_A : A ; - arcella_F_N : N ; - arcellacus_A : A ; - arcellula_F_N : N ; - arceo_V2 : V2 ; - arcera_F_N : N ; - arceracus_A : A ; - arcersio_V2 : V2 ; - arcerso_V2 : V2 ; - arcessio_V2 : V2 ; - arcessitio_F_N : N ; - arcessitor_M_N : N ; - arcessitus_A : A ; - arcessitus_M_N : N ; - arcesso_V2 : V2 ; - arceuthinus_A : A ; - archaeologia_F_N : N ; - archaeologicus_A : A ; - archaeologus_M_N : N ; - archaicus_A : A ; - archangelus_M_N : N ; - arche_F_N : N ; - archebion_N_N : N ; - archeota_M_N : N ; - archetypon_N_N : N ; - archetypum_N_N : N ; - archetypus_A : A ; - archezostis_F_N : N ; - archiater_M_N : N ; - archiatia_F_N : N ; - archiatrus_M_N : N ; - archibasilica_F_N : N ; - archibucolus_M_N : N ; - archibuculus_M_N : N ; - archibugius_M_N : N ; - archicantor_M_N : N ; - archicapellanus_M_N : N ; - archidendrophorus_M_N : N ; - archidiaconatus_M_N : N ; - archidiaconus_M_N : N ; - archidictus_A : A ; - archidiocesis_F_N : N ; - archielectus_M_N : N ; - archiepiscopalis_A : A ; - archiepiscopatus_M_N : N ; - archiepiscopus_M_N : N ; - archiereus_M_N : N ; - archierosyna_F_N : N ; - archigallus_M_N : N ; - archigeron_M_N : N ; - archigubernus_M_N : N ; - archimagirus_M_N : N ; - archimandrita_M_N : N ; - archimima_F_N : N ; - archimimus_M_N : N ; - archiparaphonista_F_N : N ; - archipater_M_N : N ; - archipirata_M_N : N ; - archipresbyter_M_N : N ; - archipresbyteratus_M_N : N ; - archipresul_M_N : N ; - archisacerdos_M_N : N ; - archisodalitas_F_N : N ; - archisodalitium_N_N : N ; - archisterium_N_N : N ; - archisynagogus_M_N : N ; - architecta_F_N : N ; - architecto_V2 : V2 ; - architecton_M_N : N ; - architectonice_F_N : N ; - architectonicus_A : A ; - architector_V : V ; - architectura_F_N : N ; - architectus_M_N : N ; - architriclinus_M_N : N ; - archium_N_N : N ; - archivium_N_N : N ; - archivum_N_N : N ; - archon_M_N : N ; - archontium_N_N : N ; - arcifinalis_A : A ; - arcifinius_A : A ; - arcion_N_N : N ; - arcipotens_A : A ; - arcirma_F_N : N ; - arcisellium_N_N : N ; - arcitectus_M_N : N ; - arcitenens_A : A ; - arco_V2 : V2 ; - arcosolium_N_N : N ; - arcs_F_N : N ; - arcte_Adv : Adv ; - arcticos_A : A ; - arcticus_A : A ; - arction_N_N : N ; - arcto_V2 : V2 ; - arctophyllum_N_N : N ; - arctous_A : A ; - arctus_A : A ; - arcuarius_A : A ; - arcuarius_M_N : N ; - arcuatilis_A : A ; - arcuatim_Adv : Adv ; - arcuatio_F_N : N ; - arcuatura_F_N : N ; - arcuatus_A : A ; - arcuatus_M_N : N ; - arcubalista_F_N : N ; - arcubalistus_M_N : N ; - arcuballista_F_N : N ; - arcuballistus_M_N : N ; - arcula_F_N : N ; - arcularius_M_N : N ; - arculatum_N_N : N ; - arculum_N_N : N ; - arcuma_F_N : N ; - arcuo_V2 : V2 ; - arcus_M_N : N ; - ardalio_M_N : N ; - ardea_F_N : N ; - ardelio_M_N : N ; - ardens_A : A ; - ardenter_Adv : Adv ; - ardeo_V : V ; - ardeola_F_N : N ; - ardesco_V : V ; - ardesiacus_A : A ; - ardifetus_A : A ; - ardiola_F_N : N ; - ardor_M_N : N ; - arduitas_F_N : N ; - ardus_A : A ; - arduum_N_N : N ; - arduus_A : A ; - arduvo_V2 : V2 ; - area_F_N : N ; - arealis_A : A ; - arefacio_V2 : V2 ; - arena_F_N : N ; - arenaceus_A : A ; - arenaria_F_N : N ; - arenarium_N_N : N ; - arenarius_A : A ; - arenarius_M_N : N ; - arenatio_F_N : N ; - arenatum_N_N : N ; - arenatus_A : A ; - arenga_F_N : N ; - arenifodina_F_N : N ; - arenivagus_A : A ; - arenosum_N_N : N ; - arenosus_A : A ; - arens_A : A ; - arenula_F_N : N ; - areo_V : V ; - areola_F_N : N ; - arepennis_M_N : N ; - aresco_V : V ; - aretalogus_M_N : N ; - arfacio_V : V ; - arferia_F_N : N ; - argema_N_N : N ; - argemon_N_N : N ; - argemone_F_N : N ; - argemonia_F_N : N ; - argemonion_N_N : N ; - argennon_N_N : N ; - argentaria_F_N : N ; - argentarium_N_N : N ; - argentarius_A : A ; - argentarius_M_N : N ; - argentatus_A : A ; - argenteolus_A : A ; - argenteus_A : A ; - argenteus_M_N : N ; - argentifodina_F_N : N ; - argentiolus_A : A ; - argentofodina_F_N : N ; - argentosus_A : A ; - argentum_N_N : N ; - argilla_F_N : N ; - argillaceus_A : A ; - argillosus_A : A ; - argimonia_F_N : N ; - argitis_A : A ; - argitis_F_N : N ; - argumentabilis_A : A ; - argumentalis_A : A ; - argumentaliter_Adv : Adv ; - argumentatio_F_N : N ; - argumentativus_A : A ; - argumentator_M_N : N ; - argumentatrix_F_N : N ; - argumentor_V : V ; - argumentosus_A : A ; - argumentum_N_N : N ; - arguo_V2 : V2 ; - argutatio_F_N : N ; - argutator_M_N : N ; - argutatrix_A : A ; - argutatrix_F_N : N ; - argute_Adv : Adv ; - argutia_F_N : N ; - argutiola_F_N : N ; - arguto_V : V ; - argutor_V : V ; - argutulus_A : A ; - argutus_A : A ; - argyranche_F_N : N ; - argyraspis_A : A ; - argyraspis_M_N : N ; - argyritis_F_N : N ; - argyrocorinthus_A : A ; - argyrodamas_M_N : N ; - argyros_F_N : N ; - arhythmatus_A : A ; - arhythmus_A : A ; - aria_F_N : N ; - arianis_F_N : N ; - aricolor_V : V ; - arida_F_N : N ; - aride_Adv : Adv ; - ariditas_F_N : N ; - aridulus_A : A ; - aridum_N_N : N ; - aridus_A : A ; - ariel_N : N ; - ariera_F_N : N ; - aries_M_N : N ; - arietarius_A : A ; - arietatio_F_N : N ; - arietillus_A : A ; - arietinus_A : A ; - arieto_V : V ; - arificus_A : A ; - arilator_M_N : N ; - arillator_M_N : N ; - arinca_F_N : N ; - ariola_F_N : N ; - ariolo_V : V ; - ariolus_M_N : N ; - aris_F_N : N ; - arista_F_N : N ; - aristatus_A : A ; - ariste_F_N : N ; - aristereon_F_N : N ; - aristifer_A : A ; - aristiger_A : A ; - aristis_F_N : N ; - aristolochia_F_N : N ; - aristolocia_F_N : N ; - aristosus_A : A ; - arithmetica_F_N : N ; - arithmetice_F_N : N ; - arithmeticum_N_N : N ; - arithmeticus_A : A ; - aritudo_F_N : N ; - armamaxa_F_N : N ; - armamentarium_N_N : N ; - armamentarius_A : A ; - armamentum_N_N : N ; - armariolum_N_N : N ; - armarium_N_N : N ; - armatura_F_N : N ; - armatus_A : A ; - armatus_M_N : N ; - armellinum_N_N : N ; - armeniacum_N_N : N ; - armeniacus_A : A ; - armenta_F_N : N ; - armentalis_A : A ; - armentarius_A : A ; - armentarius_M_N : N ; - armenticius_A : A ; - armentivus_A : A ; - armentosus_A : A ; - armentum_N_N : N ; - armiclausa_F_N : N ; - armicustos_M_N : N ; - armidoctor_M_N : N ; - armifer_A : A ; - armiger_A : A ; - armiger_M_N : N ; - armigera_F_N : N ; - armilausa_F_N : N ; - armilla_F_N : N ; - armillatus_A : A ; - armillum_N_N : N ; - armipotens_A : A ; - armipotentia_F_N : N ; - armisonus_A : A ; - armita_F_N : N ; - armo_V2 : V2 ; - armonia_F_N : N ; - armoniacus_A : A ; - armonica_F_N : N ; - armonice_F_N : N ; - armonicus_A : A ; - armoracea_F_N : N ; - armoracia_F_N : N ; - armoracium_N_N : N ; - armum_N_N : N ; - armus_M_N : N ; - arna_F_N : N ; - arnacis_F_N : N ; - arnoglossa_F_N : N ; - arnus_M_N : N ; - aro_V2 : V2 ; - aroma_N_N : N ; - aromatarius_M_N : N ; - aromaticum_N_N : N ; - aromaticus_A : A ; - aromatites_M_N : N ; - aromatitis_F_N : N ; - aromatizans_A : A ; - aromatizo_V : V ; - aromatopola_M_N : N ; - aromatopolium_N_N : N ; - aron_N_N : N ; - aros_F_N : N ; - arpaston_N_N : N ; - arquatura_F_N : N ; - arquatus_A : A ; - arquatus_M_N : N ; - arquipotens_A : A ; - arquitenens_A : A ; - arquitis_M_N : N ; - arquus_M_N : N ; - arra_F_N : N ; - arrabo_F_N : N ; - arralis_A : A ; - arramio_V : V ; - arrectarium_N_N : N ; - arrectarius_A : A ; - arrectus_A : A ; - arremigo_V : V ; - arrenicum_N_N : N ; - arrepo_V : V ; - arrepticius_A : A ; - arreptitius_A : A ; - arreptius_A : A ; - arreptivus_A : A ; - arresto_V : V ; - arrha_F_N : N ; - arrhabo_F_N : N ; - arrhalis_A : A ; - arrhenicum_N_N : N ; - arrhenogonos_A : A ; - arrhetos_M_N : N ; - arrideo_V : V ; - arrigo_V2 : V2 ; - arripio_V2 : V2 ; - arrisio_F_N : N ; - arrisor_M_N : N ; - arrodo_V2 : V2 ; - arrogans_A : A ; - arroganter_Adv : Adv ; - arrogantia_F_N : N ; - arrogatio_F_N : N ; - arrogator_M_N : N ; - arrogo_V2 : V2 ; - arroro_V : V ; - arrosor_M_N : N ; - arrotans_A : A ; - arrugia_F_N : N ; - arruo_V2 : V2 ; - ars_F_N : N ; - arsella_F_N : N ; + apothysis_2_N : N ; -- [XTXFS] :: curving outward (archit.), curve of column at top/bottom, apophyge; + apoxyomenos_M_N : N ; -- [XXXFO] :: statue by Lysippus of an athlete using a strigil to clean himself in the bath; + apozema_N_N : N ; -- [XSXFS] :: decoction, boiling away, concentration/extraction by boiling away liquid; + apozima_F_N : N ; -- [FBXFM] :: decoction; (alt. form of apozema, atis); + apozymo_V2 : V2 ; -- [DAXFS] :: make ferment; + appagineculus_M_N : N ; -- [XTXFO] :: kind of decorative attachment (archit.); + appalis_A : A ; -- [XXXFS] :: greasy, fatty; of/with fat/grease; + appango_V2 : V2 ; -- [DXXFS] :: fasten to; + apparamentum_N_N : N ; -- [DXXFS] :: preparation, preparing; that which is prepared; + apparate_Adv : Adv ; -- [XXXCO] :: sumptuously; + apparatio_F_N : N ; -- [XXXCO] :: careful preparation; task/act of providing; provisions; designing, construction; + apparator_M_N : N ; -- [XEXFO] :: one who prepares; official who sacrifices to the Magna Mater; + apparatorium_N_N : N ; -- [XEXFO] :: place/room where preparations were made for sacrifice; + apparatrix_F_N : N ; -- [DXXFS] :: she who prepares (sacrifices); + apparatus_A : A ; -- [XXXCO] :: prepared, equipped, ready; splendid, elaborate, well-appointed; labored; + apparatus_M_N : N ; -- [XXXAO] :: preparation; instruments, equipment, supplies, stock; splendor, pomp, trappings; + apparens_A : A ; -- [XXXCO] :: exposed to the air; exposed to view, visible; perceptible, audible; apparent; + apparentia_F_N : N ; -- [DXXES] :: becoming visible, appearing, appearance; external appearance; + appareo_V : V ; -- [XXXAO] :: appear; be evident/visible/noticed/found; show up, occur; serve (w/DAT); + apparesco_V : V ; -- [DXXES] :: begin to appear; + apparet_V0 : V ; -- [XXXBO] :: it is apparent/evident/clear/certain/visible/noticeable/found; it appears; + appario_V2 : V2 ; -- [XXXFO] :: acquire, gain in addition; + apparitio_F_N : N ; -- [XXXCO] :: service, attendance; servants, attendants; provision, supplying, preparation; + apparitor_M_N : N ; -- [XLXCO] :: civil servant; lictor, clerk; attendant on a magistrate; + apparitorius_A : A ; -- [XLXFO] :: of/for an apparitor (civil servant; lictor, clerk; attendant on a magistrate); + apparitura_F_N : N ; -- [XLXFO] :: attendance on a magistrate, (civil) service; + apparo_V2 : V2 ; -- [XXXBO] :: prepare, fit out, make ready, equip, provide; attempt; organize (project); + appectoro_V2 : V2 ; -- [DXXFS] :: press/clasp to the breast; + appellans_M_N : N ; -- [FLXFJ] :: appellant; appellor; one who appeals; + appellatio_F_N : N ; -- [XXXBO] :: appeal (to higher authority); name, term; noun; title, rank; pronunciation; + appellativus_A : A ; -- [XGXFO] :: of the nature of a noun, nominal; appellative, belonging to a species (L+S); + appellator_M_N : N ; -- [XXXCO] :: appellant, one who appeals; + appellatorius_A : A ; -- [XXXEO] :: of/used in appeals; + appellatus_M_N : N ; -- [FLXFJ] :: appellee; one appealed against; + appellito_V : V ; -- [XXXCO] :: call or name (frequently or habitually); + appello_V2 : V2 ; -- [XXXBO] :: drive to, move up, bring along, force towards; put ashore at, land (ship); + appellum_N_N : N ; -- [FLXFJ] :: appeal; + appendeo_V : V ; -- [XLXFO] :: to be pending; + appendicula_F_N : N ; -- [XXXFO] :: small addition/appendix/annex; appendage; + appendicum_N_N : N ; -- [DXXFS] :: appendage; + appenditium_N_N : N ; -- [FLXEM] :: appurtenance; accessory; hanging cloth(eg curtain); pent-house; + appendix_F_N : N ; -- [XXXCO] :: appendix, supplement, annex; appendage, adjunct; hanger on; barberry bush/fruit; + appendo_V2 : V2 ; -- [XXXCO] :: weigh out; pay/give out; hang, cause to be suspended; + appensor_M_N : N ; -- [DXXFS] :: weigher, he who weighs out; + appensorius_A : A ; -- [EXXEE] :: with a handle; + appertineo_V : V ; -- [XXXFS] :: belong to, appertain to; (w/DAT or ad); + appetens_A : A ; -- [XXXCO] :: eager/greedy/having appetite for (w/GEN), desirous; avaricious/greedy/covetous; + appetenter_Adv : Adv ; -- [XXXEO] :: greedily, avidly; + appetentia_F_N : N ; -- [XXXCO] :: desire, longing after, appetite for; + appetibilis_A : A ; -- [XXXFO] :: be sought after, desirable; + appetisso_V2 : V2 ; -- [XXXFO] :: seek eagerly after; + appetitio_F_N : N ; -- [XXXCO] :: desire, appetite; action of trying to reach/grasp, stretching out for; grasping; + appetitor_M_N : N ; -- [XXXFO] :: one who has a desire/liking for (something); + appetitus_M_N : N ; -- [XXXCO] :: appetite, desire; esp. natural/instinctive desire; + appetivitus_A : A ; -- [XXXEE] :: having appetite/desire/liking for (something); + appeto_M_N : N ; -- [XXXFO] :: one who is covetous; + appeto_V2 : V2 ; -- [XXXAO] :: seek/grasp after, desire; assail; strive eagerly/long for; approach, near; + appiciscor_V : V ; -- [XXXFO] :: bargain?; + appingo_V2 : V2 ; -- [DXXFS] :: |fasten/join to; + applar_N_N : N ; -- [XXXFO] :: dish or spoon?; + applaudo_V2 : V2 ; -- [XXXCO] :: strike together; clap, applaud; strike, slap; dash to the ground (w/terrae); + applausor_M_N : N ; -- [XGXFS] :: one expressing agreement/approval/pleasure/satisfaction by clapping hands; + applausus_M_N : N ; -- [XXXFO] :: flapping/beating of wings; + applex_A : A ; -- [DXXFS] :: closely joined/attached to; + applicabilis_A : A ; -- [EXXFE] :: applicable; + applicatio_F_N : N ; -- [XXXCO] :: application, inclination; joining, attaching; attachment of client to patron; + applicatus_A : A ; -- [XXXCO] :: situated close (to town w/DAT); clinging to (side of hill); devoted (to); + applico_V : V ; -- [GXXEK] :: apply, put in practice; + applico_V2 : V2 ; -- [DXXAX] :: connect, place near, bring into contact; land (ship); adapt; apply/devote to; + applodo_V2 : V2 ; -- [XXXEO] :: strike together; clap, applaud; strike, slap; dash to the ground (w/terrae); + apploro_V : V ; -- [XXXFS] :: lament, weep at/on account of; deplore (thing); + appluda_F_N : N ; -- [XAXEO] :: chaff; + applumbator_M_N : N ; -- [XXXFO] :: solderer; + applumbo_V2 : V2 ; -- [XXXFO] :: solder, solder on, affix by soldering, close/seal by soldering/with solder; + appono_V2 : V2 ; -- [XXXAO] :: place near, set before/on table, serve up; put/apply/add to; appoint/assign; + apporrectus_A : A ; -- [XXXFO] :: stretched out near/beside; + apportatio_F_N : N ; -- [XXXFO] :: conveyance to, carrying to; + apporto_V2 : V2 ; -- [XXXBO] :: carry/convey/bring (to); import; present (play); bring (news); make one's way; + apposco_V2 : V2 ; -- [XXXFO] :: demand in addition; + apposite_Adv : Adv ; -- [XXXFO] :: in a manner suited (to); suitably, appositely; + appositio_F_N : N ; -- [XXXFO] :: comparison, action of comparing; + appositum_N_N : N ; -- [XGXFO] :: adjective, epithet; + appositus_A : A ; -- [XXXBO] :: adjacent, near, accessible, akin; opposite; fit, appropriate, apt; based upon; + appositus_M_N : N ; -- [XBXNO] :: application (of medicine); + appostulo_V2 : V2 ; -- [DXXFS] :: beg/entreaty/solicit importunately/persistently/troublesomely/pressingly; + appotus_A : A ; -- [XXXEO] :: drunk, intoxicated; + appreciatamentum_N_N : N ; -- [FXXFM] :: appraisal, valuing; + appreciatio_F_N : N ; -- [FXXEM] :: appraisal, valuing; + appreciatum_N_N : N ; -- [EXXEZ] :: appraisal, valuing; + apprecio_V2 : V2 ; -- [EEXCE] :: value/prize, set/estimate price, appraise; purchase/buy; appropriate to self; + apprecor_V : V ; -- [XEXEO] :: address prayer to, pray to , invoke, beseech; + apprehendo_V2 : V2 ; -- [XXXAO] :: seize (upon), grasp, cling to, lay hold of; apprehend; embrace; overtake; + apprehensibil_A : A ; -- [DXXES] :: intelligible, understandable, that can be understood; + apprehensio_F_N : N ; -- [DXXES] :: seizing upon, laying hold of; (philosophical) apprehension, understanding; + apprendo_V2 : V2 ; -- [XXXAO] :: seize (upon), grasp, cling to, lay hold of; apprehend; embrace; overtake; + apprenso_V2 : V2 ; -- [XXXFO] :: snatch at; + appretiatamentum_N_N : N ; -- [FXXFM] :: appraisal, valuing; + appretiatio_F_N : N ; -- [FXXEM] :: appraisal, valuing; + appretiatum_N_N : N ; -- [EXXEZ] :: appraisal, valuing; + appretio_V2 : V2 ; -- [DEXCS] :: value/prize, set/estimate price, appraise; purchase/buy; appropriate to self; + apprime_Adv : Adv ; -- [XXXCO] :: to the highest degree, to a high degree, extremely, especially, very; + apprimo_V2 : V2 ; -- [XXXEO] :: press on/to; clench (the teeth); + apprimus_A : A ; -- [XXXEO] :: very first, most excellent; + approbatio_F_N : N ; -- [XXXBO] :: approbation, giving approval; proof, confirmation; decision; + approbator_M_N : N ; -- [XXXEO] :: one who approves; + approbe_Adv : Adv ; -- [XXXEO] :: excellently; + approbo_V2 : V2 ; -- [XXXAO] :: approve, commend, endorse; prove; confirm; justify; allow; make good; + approbus_A : A ; -- [XXXEO] :: excellent, worthy; + appromissor_M_N : N ; -- [XXXEO] :: one who promises/gives security on behalf of another; + appromitto_V2 : V2 ; -- [XXXEO] :: promise in addition (to another), promise also; + approno_V2 : V2 ; -- [XXXEO] :: lean forwards; + appropero_V : V ; -- [XXXCO] :: hasten, hurry, come hastily, make haste; accelerate, speed up; + appropinquatio_F_N : N ; -- [XXXEO] :: approach, drawing near; + appropinquo_V : V ; -- [XXXBO] :: approach (w/DAT or ad+ACC); come near to, draw near/nigh (space/time); be close; + appropio_V : V ; -- [DXXCB] :: approach (w/DAT or ad+ACC); come near to, draw near/nigh (space/time); be close; + appropriatio_F_N : N ; -- [DXXES] :: appropriation, making one's own; [~ ciborum => making flesh/blood of food]; + approprio_V : V ; -- [DXXFS] :: appropriate, make one's own; + approximo_V2 : V2 ; -- [DXXFS] :: be/draw/come close/near to, approach; + appugno_V2 : V2 ; -- [XXXCO] :: attack, assault; + appulsus_M_N : N ; -- [XXXCO] :: landing; approach; influence, impact; bringing/driving to (cattle) (/right to); + apra_F_N : N ; -- [BAXNO] :: wild sow (old feminine of aper - wild boar); + aprarius_A : A ; -- [XXXFO] :: for hunting boar, boar-; + apricatio_F_N : N ; -- [XXXEO] :: basking, sitting in the sun, sunning oneself; + apricitas_F_N : N ; -- [XXXEO] :: sunniness, property of having much sunshine; warmth of the sun, sunshine; + aprico_V : V ; -- [FXXEK] :: tan; + aprico_V2 : V2 ; -- [DXXES] :: warm in the sun; + apricor_V : V ; -- [XXXDO] :: bask in the sun, sun oneself; + apricula_F_N : N ; -- [XXXEO] :: unidentified fish; + apriculus_M_N : N ; -- [XAXEO] :: unidentified fish; + apricum_N_N : N ; -- [XXXEO] :: sunny place/region; sunlight, light of day; + apricus_A : A ; -- [XXXCO] :: sunny, having lots of sunshine; warmed by/exposed to/open to the sun, basking; + aprineus_A : A ; -- [XAXFO] :: of a wild boar, boar-; + aprinus_A : A ; -- [XAXEO] :: of a wild boar, boar-; + apronia_F_N : N ; -- [XAXNO] :: black byrony (plant Tamus communis); + aproxis_F_N : N ; -- [XAXNS] :: plant whose root takes fire at a distance (ignites easily?); + apruco_F_N : N ; -- [DAXFS] :: plant (commonly called saxifrage - dwarf herbs usually rooting in rocks); + aprugineus_A : A ; -- [DAXFS] :: of wild boar, boar's; + aprugna_F_N : N ; -- [DAXES] :: flesh/meat of the wild boar; + aprugnus_A : A ; -- [XAXEO] :: of wild boar, boar's; + apruna_F_N : N ; -- [DAXFS] :: flesh/meat of the wild boar; + aprunus_A : A ; -- [XAXEO] :: of wild boar, boar's; + apscedo_V : V ; -- [XXXAO] :: withdraw, depart, retire; go/pass off/away; desist; recede (coasts); slough; + apscessio_F_N : N ; -- [XXXEO] :: removal; loss, separation, going away; diminution; + apscessus_M_N : N ; -- [XXXCO] :: going away, departure, withdrawal, absence; remoteness; abscess; + apscido_V2 : V2 ; -- [XXXBO] :: |take away violently; expel/banish; destroy (hope); amputate; prune; cut short; + apscindo_V2 : V2 ; -- [XXXBO] :: tear (away/off) (clothing); cut off/away/short; part, break, divide, separate; + apscise_Adv : Adv ; -- [XXXEO] :: abruptly, brusquely, curtly; shortly, concisely, distinctly; + apscisio_F_N : N ; -- [XGXEO] :: loss of voice; aposiopesis (rhetoric, breaking off emotionally), interruption; + apscissio_F_N : N ; -- [XGXFS] :: loss of voice; aposiopesis (rhetoric, breaking off emotionally), interruption; + apscisus_A : A ; -- [XXXCO] :: steep, sheer, precipitous; abrupt, curt, brusque; restricted; cut off, severed; + apscondite_Adv : Adv ; -- [XXXEO] :: abstrusely; profoundly; secretly; + apsconditum_N_N : N ; -- [XXXCE] :: hidden/secret/concealed place/thing; secret; + apsconditus_A : A ; -- [XXXAO] :: hidden, secret, concealed; covert, disguised; abstruse, recondite; + apscondo_V2 : V2 ; -- [XXXBO] :: hide, conceal, secrete, "shelter"; leave behind; bury, engulf, swallow up; keep; + apsconse_Adv : Adv ; -- [XXXEO] :: secretly; + apsconsio_F_N : N ; -- [EXXCE] :: shelter; + apsconsus_A : A ; -- [EXXCE] :: hidden, secret, concealed, unknown; + apsegmen_N_N : N ; -- [XXXFO] :: piece/slice/hunk of meat, collop; morsel, portion, lump, mouthful, gobbet; + apsens_A : A ; -- [XXXBO] :: absent, missing, away, gone; physically elsewhere (things), non-existent; + apsenthium_N_N : N ; -- [XXXEO] :: wormwood; infusion/tincture of wormwood; + apsentia_F_N : N ; -- [XXXCO] :: absence; absence form Rome/duty; non-appearance in court; lack; + apsentio_F_N : N ; -- [DXXFS] :: holding back, restraining; + apsentivus_A : A ; -- [XXXFS] :: long absent; + apsento_V2 : V2 ; -- [XXXES] :: send away, cause one to be absent; be absent; + apsida_F_N : N ; -- [XSXCS] :: arc described by a planet; arc, segment of a circle; kind of round vessel/bowl; + apsidata_F_N : N ; -- [XXXFO] :: alcove, niche; + apsilio_V : V ; -- [XXXDO] :: rush/fly away (from); burst/fly apart; + apsimilis_A : A ; -- [XXXCO] :: unlike, dissimilar; + apsinthites_M_N : N ; -- [XAXEO] :: wine flavored with wormwood; + apsinthium_N_N : N ; -- [XXXEO] :: wormwood; infusion/tincture of wormwood; + apsinthius_A : A ; -- [XAXFS] :: containing wormwood (e.g., wine); (often mixed with honey to mask taste); + apsinthius_M_N : N ; -- [XAXFO] :: wormwood; infusion/tincture of wormwood (often mixed with honey to mask taste); + apsis_F_N : N ; -- [XSXCO] :: arc described by a planet; arc, segment of a circle; kind of round vessel/bowl; + apsisto_V : V ; -- [XXXCO] :: withdraw from; desist, cease; leave off; depart, go away from; stand back; + apsistus_A : A ; -- [DXXFS] :: distant, lying away; + apsit_Interj : Interj ; -- [EEXCE] :: "god forbid", "let it be far from the hearts of the faithful"; + apsocer_M_N : N ; -- [DXXFS] :: great-great grandfather of the husband or wife (in-law); + apsolute_Adv : Adv ; -- [XXXCO] :: completely, absolutely; perfectly; without qualification, simply, unreservedly; + apsolutio_F_N : N ; -- [XXXCO] :: finishing, completion; acquittal, release (obligat.); perfection; completeness; + apsolutorium_N_N : N ; -- [XXXFS] :: means of deliverance from; + apsolutorius_A : A ; -- [XXXCO] :: favoring/securing acquittal; effecting a cure; + apsolutus_A : A ; -- [XXXBO] :: fluent; fully developed, complete, finished; perfect, pure; unconditional; + apsolvo_V2 : V2 ; -- [XLXAO] :: free (bonds), release; acquit; vote for/secure acquittal; pay off; sum up; + apsone_Adv : Adv ; -- [XXXEO] :: harshly, discordantly; + apsono_V : V ; -- [XXXEO] :: have harsh/discordant/unpleasant sound; + apsonus_A : A ; -- [XXXCO] :: harsh/discordant/inharmonious; jarring; inconsistent; unsuitable, in bad taste; + apsorbeo_V2 : V2 ; -- [XXXDX] :: devour; swallow up; engulf, submerge; engross; absorb, suck in; import; dry up; + apsorptio_F_N : N ; -- [XXXFS] :: drink, beverage; + apsque_Abl_Prep : Prep ; -- [XXXCO] :: without, apart from, away from; but for; except for; were it not for; (early); + apstantia_F_N : N ; -- [XXXEO] :: distance; + apstemia_F_N : N ; -- [XXXEO] :: distance; + apstemius_A : A ; -- [XXXCO] :: abstemious, abstaining from drink; sober, temperate; moderate; fasting; saving; + apstergeo_V2 : V2 ; -- [XXXCO] :: wipe off/clean/away, clean away, cleanse, strip off; banish, expel, dispel; + apstergo_V2 : V2 ; -- [XXXCO] :: wipe off/clean/away, clean away, cleanse, strip off; banish, expel, dispel; + apsterreo_V2 : V2 ; -- [XXXCO] :: frighten off/away; drive away; deter, discourage; keep away/withhold from, den; + apstinax_A : A ; -- [XXXEO] :: abstemious, staying away from liquor; temperate/sparing in drink/food; + apstinens_A : A ; -- [XXXCO] :: abstinent, temperate; showing restraint, self restrained; not covetous; chaste; + apstinenter_Adv : Adv ; -- [XXXCO] :: abstinently, with self restraint (esp. financial dealings); scrupulously; + apstinentia_F_N : N ; -- [XXXBO] :: abstinence; fasting; moderation, self control, restraint; integrity; parsimony; + apstineo_V : V ; -- [XXXAO] :: withhold, keep away/clear; abstain, fast; refrain (from); avoid; keep hands of; + apsto_V : V ; -- [XXXEO] :: stand at a distance, stand off; keep at a distance; + apstractio_F_N : N ; -- [DXXFS] :: separation; + apstraho_V2 : V2 ; -- [XXXAO] :: drag away from, remove forcibly, abort; carry off to execution; split; + apstrudo_V2 : V2 ; -- [XXXCO] :: thrust away, conceal, hide; suppress/prevent (emotion) becoming apparent; + apstruse_Adv : Adv ; -- [XXXFS] :: secretly; remotely; abstrusely; + apstrusio_F_N : N ; -- [DXXFS] :: removing, concealing; + apstrusus_A : A ; -- [XXXBO] :: secret, reserved; concealed, hidden; remote, secluded; abstruse, recondite; + apstulo_V2 : V2 ; -- [XXXFO] :: to take away, withdraw; + apsum_V : V ; -- [XXXAO] :: be away/absent/distant/missing; be free/removed from; be lacking; be distinct; + apsumedo_F_N : N ; -- [XXXEO] :: act of squandering/wasting/using up; + apsumo_V2 : V2 ; -- [XXXAO] :: spend, waste, squander, use up; take up (time); consume; exhaust, wear out; + apsumptio_F_N : N ; -- [XXXEO] :: act of spending/using up; + apsurde_Adv : Adv ; -- [XXXCO] :: as to be out of tune, discordantly; preposterously, absurdly, inappropriately; + apsurdus_A : A ; -- [XXXBO] :: out of tune, discordant; absurd, nonsensical, out of place; awkward, uncouth; + apsyctos_F_N : N ; -- [XXXNO] :: precious stone; + aptatio_F_N : N ; -- [FXXFE] :: adaption; accommodation, adjustment; + apte_Adv : Adv ; -- [XXXBO] :: closely, snugly, so to fit tightly/exactly; neatly, aptly; suitably; fittingly; + apterus_A : A ; -- [GXXEK] :: aptly; + aptha_F_N : N ; -- [XBXFO] :: parasitic stomatitis, thrush, aphthous ulcers (fungal disease); + aptitudo_F_N : N ; -- [FXXEE] :: aptitude; + apto_V2 : V2 ; -- [XXXAO] :: adapt, fit, apply, adjust, accommodate; put on, fasten; prepare, furnish; + aptotum_N_N : N ; -- [DGXFS] :: substantives (pl.) that are not declined, aptotes; + aptrum_N_N : N ; -- [XXXFO] :: vine leaves (pl.)?; + aptus_A : A ; -- [XXXAO] :: suitable, adapted; ready; apt, proper; tied, attached to; dependent on (w/ex); + apua_F_N : N ; -- [XAXEO] :: small/young fish; whitebait; + apud_Acc_Prep : Prep ; -- [XXXAO] :: at, by, near, among; at the house of; before, in the presence/writings/view of; + apulsus_M_N : N ; -- [EXXFW] :: one drawn/pushed/driven aside/away (from); + apus_F_N : N ; -- [XAXNO] :: bird (the swift?); kind of swallow (said to have no feet), black martin (L+S); + aput_Acc_Prep : Prep ; -- [XXXAO] :: at, by, near, among; at the house of; before, in presence/writings/view/eyes of; + apyrenum_N_N : N ; -- [XAXDO] :: pomegranate (kind with soft kernels); + apyrenus_A : A ; -- [XAXDO] :: lacking a hard kernel (of fruit); with soft kernel/seeds; + apyretus_A : A ; -- [DBXES] :: without fever; + apyrinum_N_N : N ; -- [XAXEO] :: pomegranate (kind with soft kernels); + apyrinus_A : A ; -- [XAXEO] :: lacking a hard kernel (of fruit); with soft kernel/seeds; + apyros_A : A ; -- [XTXEO] :: that has not been treated with fire; unsmelted (gold); native (sulfur); + aqua_F_N : N ; -- [XXXAO] :: water; sea, lake; river, stream; rain, rainfall (pl.), rainwater; spa; urine; + aquaductus_M_N : N ; -- [FXXCE] :: aqueduct; watercourse; conduit; + aquaeductus_M_N : N ; -- [XXXCO] :: aqueduct; + aquaelicium_N_N : N ; -- [XXXFO] :: rain-making; means/sacrifice to produce rain; + aquagium_N_N : N ; -- [XXXDO] :: channel, artificial watercourse; aqueduct, conveyer of water; + aqualiculus_M_N : N ; -- [XXXFO] :: paunch, pot-belly; small pot/vessel for water (L+S); + aqualis_A : A ; -- [XXXEO] :: watery, rainy; for water (of vessels); + aqualis_M_N : N ; -- [XXXEO] :: water/wash basin; ewer; + aquamanile_N_N : N ; -- [FEXFE] :: basin (for use at Lavabo/ceremonial hand washing in liturgy); + aquamanus_M_N : N ; -- [FEXFE] :: dish/basin for hand washing; + aquariolus_M_N : N ; -- [XXXEO] :: servant who supplied washing water for prostitutes; + aquarium_N_N : N ; -- [XXXFO] :: watering place. water hole (for cattle); source of water; + aquarius_A : A ; -- [XXXCO] :: of/for water; requiring water (tools/instruments); [res ~ => water supply]; + aquarius_M_N : N ; -- [XXXCO] :: water-bearer; (Constellation); overseer/workman at the public water supply; + aquate_Adv : Adv ; -- [XXXES] :: with water, by use of water; + aquaticum_N_N : N ; -- [XAXNO] :: well-watered/marshy places/ground; + aquaticus_A : A ; -- [XXXEO] :: aquatic, of/belonging to the water, growing/living in/by water; rainy; watery; + aquatile_N_N : N ; -- [XAXNO] :: aquatic animals/plants (pl.); disease of cattle, watery vesicles (L+S); + aquatilis_A : A ; -- [XXXCO] :: of/resembling water, watery; aquatic (animals/plants); + aquatio_F_N : N ; -- [XXXCO] :: fetching/drawing water; place from which water is drawn, watering place; rains; + aquator_M_N : N ; -- [XXXEO] :: water-carrier/bearer, one who fetches water; + aquatum_N_N : N ; -- [XSXFO] :: aqueous solution, mixture with water; + aquatus_A : A ; -- [XXXDO] :: diluted/mixed with water, watered down. watery; having a watery constitution; + aqueus_A : A ; -- [FXXFM] :: aqueous; watery; + aquicelus_M_N : N ; -- [XAXNS] :: pine kernels boiled in honey; + aquiducus_A : A ; -- [DXXFS] :: drawing of water; + aquifolia_F_N : N ; -- [XAXNO] :: tree with prickly/pointy leaves; holly; + aquifolium_N_N : N ; -- [XAXNO] :: tree with prickly/pointy leaves; holly; + aquifolius_A : A ; -- [XAXNO] :: having prickly/pointy leaves; made of holly-wood; + aquifuga_C_N : N ; -- [DXXFS] :: one fearful of water; + aquigenus_A : A ; -- [DXXFS] :: born in the water; + aquila_C_N : N ; -- [XXXCO] :: eagle; gable/pediment; kind of fish (eagle-ray?); + aquila_F_N : N ; -- [XWXCO] :: silver eagle on pole, standard of a legion; legion; post of standard-bearer; + aquilegus_A : A ; -- [DXXES] :: water-drawing; + aquilentus_A : A ; -- [XXXFO] :: watery, full of water; wet, humid; + aquilex_M_N : N ; -- [XXXFO] :: water-diviner, man used to find water sources; conduit/water master/inspector; + aquilicium_N_N : N ; -- [XXXFS] :: rain-making; means/sacrifice to produce rain; + aquilifer_M_N : N ; -- [XWXDO] :: standard bearer of a legion, officer who carried the eagle standard; + aquilifera_M_N : N ; -- [FWXFV] :: standard bearer of a legion, officer who carried the eagle standard; + aquilinus_A : A ; -- [XAXEO] :: eagle's, like that of an eagle; + aquilo_M_N : N ; -- [XXXCO] :: north wind; NNE/NE wind (for Rome); north; Boreas (personified); + aquilonalis_A : A ; -- [XXXFO] :: northerly, northern; + aquilonaris_A : A ; -- [XXXFS] :: northerly, northern; + aquilonium_N_N : N ; -- [XSXNO] :: northerly regions (pl.); the north; regions facing/exposed to the north; + aquilonius_A : A ; -- [XXXCO] :: northern, northerly; facing north; subject to north winds; of Boreas; + aquilus_A : A ; -- [XXXDO] :: dark colored/hued, swarthy; + aquiminale_N_N : N ; -- [XXXFO] :: wash-basin/bowl, vessel for washing the hands; + aquiminalis_A : A ; -- [XXXES] :: of/pertaining to water for washing the hands; + aquiminarium_N_N : N ; -- [XXXEO] :: wash-basin/bowl, vessel for washing the hands; + aquimolina_F_N : N ; -- [GXXEK] :: watermill; + aquivergium_N_N : N ; -- [DXXFS] :: place in which water is collected, catchment, basin; cistern; + aquola_F_N : N ; -- [XXXDO] :: small amount of water; small stream; + aquor_V : V ; -- [XXXCO] :: get/fetch/bring water; be watered; + aquosus_A : A ; -- [XXXCO] :: abounding in water, well watered, wet; humid, rainy; clear as water, watery; + aquula_F_N : N ; -- [XXXFO] :: small amount of water; small stream; + ara_F_N : N ; -- [XEXAO] :: altar, structure for sacrifice, pyre; sanctuary; home; refuge, shelter; + arabarches_M_N : N ; -- [XLEEO] :: Egyptian tax/customs collector; contemptuously of Pompey for raising taxes; + arabarchia_F_N : N ; -- [DLEFS] :: kind of Egyptian customs duty/tax; + arabica_F_N : N ; -- [XXXNO] :: some precious stone; + arabice_Adv : Adv ; -- [XXQEO] :: in Arabic fashion; + arabilis_A : A ; -- [XAXNO] :: that can be plowed, fit for tillage, arable; [bos ~ => plow ox]; + arachidna_F_N : N ; -- [XAXNS] :: leguminous plant (kind), (ground peas, Lathyrus amphicarpus?); checking vetch; + arachidne_F_N : N ; -- [XAXNO] :: leguminous plant (kind), (ground peas, Lathyrus amphicarpus?); checking vetch; + arachis_F_N : N ; -- [GAXEK] :: peanut; + arachnoides_A : A ; -- [XBXFO] :: web-like; [tunica arachnoides => retina of the eye]; + aracia_F_N : N ; -- [XAXNS] :: kind of white fig tree; island in the Persian Gulf now called Karek; + aracos_M_N : N ; -- [XAXNO] :: kind of leguminous plant; + aracostylos_A : A ; -- [XTXFO] :: with columns widely spaced (archit.); + arale_N_N : N ; -- [XEXIO] :: structure/base/foundation on which an altar could be set up; + aranciata_F_N : N ; -- [GXXEK] :: orange drink; + arancium_N_N : N ; -- [GAXEK] :: orange (fruit); + aranea_F_N : N ; -- [XAXCO] :: spider's web, cobweb; mass of threads resembling a spider web; spider; + araneans_A : A ; -- [XAXFO] :: full of/covered with spider webs, cobwebby; + araneola_F_N : N ; -- [XAXFO] :: (small) spider; + araneolus_M_N : N ; -- [XAXFO] :: (small) spider; + araneosus_A : A ; -- [XAXDO] :: full of/covered with spider webs, cobwebby; + araneum_N_N : N ; -- [XAXDO] :: spider web, cobweb; mass of threads resembling a spider web; + araneus_A : A ; -- [XAXEO] :: spider's, of spiders; [mus araneus => shrew-mouse]; + araneus_M_N : N ; -- [XAXCO] :: spider; venomous fish, the weever; + arangia_F_N : N ; -- [FAXEQ] :: orange (fruit); (Du Cange); + arantia_F_N : N ; -- [GAXEM] :: orange (fruit); + arantium_N_N : N ; -- [GAXFM] :: orange (fruit); + arantius_A : A ; -- [GAXFM] :: orange (color); orange-colored; tawny; + arater_M_N : N ; -- [XAXES] :: plow; + aratio_F_N : N ; -- [XAXCO] :: plowing; tilled ground; an estate of arable land (esp. one farmed on shares); + aratiuncula_F_N : N ; -- [XAXFO] :: small estate of arable land; + aratius_A : A ; -- [XAXNO] :: variety of fig; + arator_A : A ; -- [XAXEO] :: plowing, plow-; (of oxen); + arator_M_N : N ; -- [XAXCO] :: plowman; farmer (esp. farming on shares); cultivators of public land on tenths; + aratorius_A : A ; -- [XAXIO] :: of/for plowing, plow-; + aratro_V : V ; -- [XAXNS] :: plow in (young grain to improve the yield), plow (after sowing); + aratrum_N_N : N ; -- [XAXCO] :: plow; + aratum_N_N : N ; -- [XAXEO] :: plowed field; + arbilla_F_N : N ; -- [XXXFO] :: fat; + arbiter_M_N : N ; -- [XLXBO] :: eye-witness, on-looker; umpire, judge, arbiter; overseer, lord; executor; + arbiterium_N_N : N ; -- [XLXAO] :: arbitration; choice, judgment, decision; sentence; will, mastery, authority; + arbitra_F_N : N ; -- [XLXDO] :: witness (female); judge, umpire; mistress; + arbitralis_A : A ; -- [DLXCS] :: of/pertaining to a judge/umpire; + arbitrario_Adv : Adv ; -- [XXXFO] :: thoughtfully; + arbitrarius_A : A ; -- [XLXCO] :: at discretion of arbiter; done by arbitration; arbitrary; voluntary/optional; + arbitratio_F_N : N ; -- [BLXEX] :: arbitration; choice; judgment, capacity for decisions; jurisdiction, power; + arbitrator_M_N : N ; -- [DLXES] :: master, ruler, lord (Pentapylon Jovis arbitratoris - place in Rome 10th); + arbitratrix_F_N : N ; -- [DLXFS] :: ruler (female); mistress; + arbitratus_M_N : N ; -- [CLXDX] :: arbitration; choice; judgment, capacity for decisions; jurisdiction, power; + arbitrium_N_N : N ; -- [XLXAO] :: arbitration; choice, judgment, decision; sentence; will, mastery, authority; + arbitrix_F_N : N ; -- [XLXIO] :: female arbitrator; + arbitro_V : V ; -- [XLXCO] :: think, judge; consider; be settled/decided on (PASS); + arbitror_V : V ; -- [XLXBO] :: observe, witness; testify; decide, judge, sentence; believe, think, imagine; + arbitum_N_N : N ; -- [XAXDS] :: abrutus (evergreen strawberry) tree/fruit; its leaves/branches (animal feed); + arbor_F_N : N ; -- [XAXBO] :: tree; tree trunk; mast; oar; ship; gallows; spearshaft; beam; squid?; + arborarius_A : A ; -- [XAXEO] :: tree-, of/concerned w/trees; [falx ~ => pruning hook; picus ~ => woodpecker]; + arborator_M_N : N ; -- [XAXEO] :: tree pruner; + arboresco_V : V ; -- [XAXNO] :: grow into a tree, become a tree; + arboretum_N_N : N ; -- [XAXEO] :: plantation of trees, place growing with trees; + arboreus_A : A ; -- [XAXCO] :: tree-, of tree(s); resembling a tree, branching; wooden; + arboria_F_N : N ; -- [DAXES] :: black ivy (as growing on trees); + arborius_A : A ; -- [XAXCO] :: of a tree(s), tree-; resembling a tree, branching; wooden; + arbos_F_N : N ; -- [BAXDO] :: tree; tree trunk; mast; oar; ship; gallows; spearshaft; beam; squid?; + arbuscula_F_N : N ; -- [XAXCO] :: small/young tree, sapling, bush, shrub; thing like a small tree; axe bearing; + arbustivus_A : A ; -- [XAXEO] :: of/with trees/orchards; of vines trained on trees/wines produced from them; + arbusto_V2 : V2 ; -- [XAXNO] :: plant (with trees), forest, reforest; + arbustulum_N_N : N ; -- [EAXCQ] :: small orchard/grove of trees; small shrub; + arbustum_N_N : N ; -- [XAXCO] :: orchard, copse, plantation, grove of trees; shrub; trees/bushes/shrubs (pl.); + arbustus_A : A ; -- [XAXDO] :: |of the arbutus (evergreen strawberry); of arbutus wood; + arbuteus_A : A ; -- [XAXCO] :: of the evergreen strawberry tree (arbutus); of arbustus wood; + arbutum_N_N : N ; -- [XAXDO] :: abrutus (evergreen strawberry) tree/fruit; its leaves/branches (animal feed); + arbutus_F_N : N ; -- [XAXCO] :: arbutus, strawberry tree (Arbutus unedo); + arca_F_N : N ; -- [DTXFO] :: ||quadrangular landmark for surveyors; + arcano_Adv : Adv ; -- [XXXEO] :: secretly, in confidence; in one's inner thoughts, privately; + arcanum_N_N : N ; -- [XXXCO] :: secret, mystery; secret/hidden place; + arcanus_A : A ; -- [XXXBO] :: secret, private, hidden; intimate, personal; confidential; mysterious, esoteric; + arcanus_M_N : N ; -- [XXXDO] :: confidant, trustworthy friend, keeper of secrets; + arcarius_A : A ; -- [XXXFO] :: of/concerned with ready money, cash; + arcarius_M_N : N ; -- [XXXDO] :: treasurer; controller of the public monies; + arcatura_F_N : N ; -- [DTXFS] :: square landmark for surveyors; + arcebion_N_N : N ; -- [XAXNS] :: plant (commonly called onochiles or amchusa); kind of ox-tongue; + arcelacus_A : A ; -- [XAXFO] :: variety of vine (arcelacae vites); + arcella_F_N : N ; -- [DTXFO] :: square landmark for surveyors; + arcellacus_A : A ; -- [XAXFS] :: variety of vine (arcelacae vites); + arcellula_F_N : N ; -- [XXXFS] :: little/small box; + arceo_V2 : V2 ; -- [XXXAO] :: ward/keep off/away; keep close, confine; prevent, hinder; protect; separate; + arcera_F_N : N ; -- [GXXEK] :: |ambulance; + arceracus_A : A ; -- [XAXNO] :: variety of vine (arceracae vites); + arcersio_V2 : V2 ; -- [XXXCS] :: send for, summon; indict/accuse; fetch, import; invite; invoke; bring on oneself + arcerso_V2 : V2 ; -- [XXXDO] :: send for, summon; indict/accuse; fetch, import; invite; invoke; bring on oneself + arcessio_V2 : V2 ; -- [XXXCS] :: send for, summon; indict/accuse; fetch, import; invite; invoke; bring on oneself + arcessitio_F_N : N ; -- [DXXFS] :: summons, sending for; [dies propriae ~ => day of death]; + arcessitor_M_N : N ; -- [XLXEO] :: one who comes to summon/call/fetch another; accuser; + arcessitus_A : A ; -- [XXXCO] :: brought from elsewhere, foreign; extraneous; self-inflicted (death); sent for; + arcessitus_M_N : N ; -- [XXXEO] :: summons, sending for; + arcesso_V2 : V2 ; -- [XXXAO] :: send for, summon, indict; fetch, import; invite; invoke; bring on oneself; + arceuthinus_A : A ; -- [DEXFS] :: of the juniper tree; + archaeologia_F_N : N ; -- [HSXFE] :: archaeology; study of antiquities; + archaeologicus_A : A ; -- [HSXFE] :: archaeological; pertaining to archaeology/study of antiquities; + archaeologus_M_N : N ; -- [GXXEK] :: archaeologist; + archaicus_A : A ; -- [GXXEK] :: archaic; + archangelus_M_N : N ; -- [EEXDX] :: archangel; + arche_F_N : N ; -- [DXXFS] :: one of Aeons; one of the four muses; + archebion_N_N : N ; -- [XAXNO] :: plant (Echium creticum?); + archeota_M_N : N ; -- [XXXFS] :: keeper of the archives; a recorder; + archetypon_N_N : N ; -- [XXXEO] :: original, pattern, model; + archetypum_N_N : N ; -- [XXXEO] :: original, pattern, model; + archetypus_A : A ; -- [XXXDO] :: first made; genuine; original; in the author's hand/autograph; taken from life; + archezostis_F_N : N ; -- [XAXNO] :: kind of bryony plant (Bryonia alba L+S); + archiater_M_N : N ; -- [XBXIO] :: official/court physician; + archiatia_F_N : N ; -- [DBXFS] :: rank of chief physician; + archiatrus_M_N : N ; -- [XBXFS] :: official/court physician; chief physician and personal doctor of the emperor; + archibasilica_F_N : N ; -- [FEXFE] :: archbasilica, cathedral church; + archibucolus_M_N : N ; -- [XEXFS] :: chief priest of Bacchus; + archibuculus_M_N : N ; -- [XEXFS] :: chief priest of Bacchus; + archibugius_M_N : N ; -- [FEXFZ] :: ARCHIBUGI; arch-head (of Bugella community?); + archicantor_M_N : N ; -- [FEXFE] :: archicantor, leader of choir of cantors; + archicapellanus_M_N : N ; -- [FEXFE] :: almoner; chief chaplain; + archidendrophorus_M_N : N ; -- [EEXIO] :: chief of the college of dendrophori (tree-bearers associated with Cybele); + archidiaconatus_M_N : N ; -- [FEXFE] :: deanery; office of archdeacon; + archidiaconus_M_N : N ; -- [DEXES] :: archdeacon; + archidictus_A : A ; -- [EXXEN] :: extremely eloquent; + archidiocesis_F_N : N ; -- [FEXEE] :: archdiocese; + archielectus_M_N : N ; -- [EEXEX] :: archbishop elect (but not confirmed); + archiepiscopalis_A : A ; -- [EEXCE] :: archepiscopal, archbishopal; pertaining to an archbishop; + archiepiscopatus_M_N : N ; -- [EEXCE] :: archbishopric; + archiepiscopus_M_N : N ; -- [EEXBX] :: archbishop; + archiereus_M_N : N ; -- [XEXIO] :: chief priest; + archierosyna_F_N : N ; -- [DEXES] :: office of chief priest; + archigallus_M_N : N ; -- [XEXEO] :: chief of the Galli (priests of Cybele); + archigeron_M_N : N ; -- [DLXFS] :: chief of the old men (title under the emperors); + archigubernus_M_N : N ; -- [XWXEO] :: chief pilot/navigator/helmsman; + archimagirus_M_N : N ; -- [XXXEO] :: chief cook; + archimandrita_M_N : N ; -- [DEXES] :: chief/principal monk; abbot (Russian or Oriental monastery); + archimima_F_N : N ; -- [XDXIO] :: chief mimic actress; + archimimus_M_N : N ; -- [XDXEO] :: chief mimic actor, chief of troop of mimics/actors; leading actor/player, lead; + archiparaphonista_F_N : N ; -- [FEXFE] :: fourth in rank in scholar cantorum; + archipater_M_N : N ; -- [FEXEM] :: chief priest; X:great ancestor; + archipirata_M_N : N ; -- [XXXDO] :: pirate chief; + archipresbyter_M_N : N ; -- [DEXES] :: arch-priest, chief of presbytari; + archipresbyteratus_M_N : N ; -- [GEXFE] :: archpresbyterate; domain of archpresbyter; + archipresul_M_N : N ; -- [EEXEV] :: archbishop; + archisacerdos_M_N : N ; -- [DEXFS] :: chief priest; + archisodalitas_F_N : N ; -- [FEXFE] :: archconfraternity/archisodality; (confraternity empowered to aggregate others); + archisodalitium_N_N : N ; -- [FEXFE] :: archconfraternity/archisodality; (confraternity empowered to aggregate others); + archisterium_N_N : N ; -- [EEXEE] :: monastery; + archisynagogus_M_N : N ; -- [XEXIO] :: head/ruler of synagogue; archisynagogue; + architecta_F_N : N ; -- [XTXES] :: architect (female), master-builder; inventor, designer, maker, author, deviser; + architecto_V2 : V2 ; -- [XTXEO] :: design (building), practice architecture; + architecton_M_N : N ; -- [XTXEO] :: architect, master-builder; master in cunning, crafty man; + architectonice_F_N : N ; -- [XTXFO] :: architecture, art of building; + architectonicus_A : A ; -- [XTXFO] :: architectural, relating to architecture; + architector_V : V ; -- [XTXDO] :: design/construct (building); design, plan; + architectura_F_N : N ; -- [XTXEO] :: architecture, art of building; + architectus_M_N : N ; -- [XTXCO] :: architect, master-builder; inventor, designer, maker, author, deviser; + architriclinus_M_N : N ; -- [DXXFS] :: one who presides at table; master of a feast; + archium_N_N : N ; -- [XLXEO] :: public records office; archives; + archivium_N_N : N ; -- [FLXEE] :: public records office; archives; + archivum_N_N : N ; -- [XLXEO] :: public records office; archives; + archon_M_N : N ; -- [XLHEO] :: archon, one of the highest magistrates in Athens; + archontium_N_N : N ; -- [XLHIO] :: office of archon (high Athenian magistrate); + arcifinalis_A : A ; -- [XLXEO] :: of conquered land not yet surveyed/assigned but built on (irregular boundaries); + arcifinius_A : A ; -- [XLXEO] :: of conquered land not yet surveyed/assigned but built on (irregular boundaries); + arcion_N_N : N ; -- [XAXNO] :: plant (burdock?) (persolata/brown mullen L+S); + arcipotens_A : A ; -- [XEXFO] :: mighty with the bow (Apollo); + arcirma_F_N : N ; -- [XXXFO] :: kind of covered carriage; + arcisellium_N_N : N ; -- [XXXFO] :: chair with rounded back; + arcitectus_M_N : N ; -- [XTXCO] :: architect, master-builder; inventor, designer; + arcitenens_A : A ; -- [XEXCO] :: carries/holding a bow (epithet of Apollo/Artimis), (constellation) the Archer; + arco_V2 : V2 ; -- [XXXCW] :: keep away, protect; + arcosolium_N_N : N ; -- [DEXEE] :: arcosolium, arched recess/niche/cell as burial place in Roman Catacombs; + arcs_F_N : N ; -- [XXXCO] :: citadel, stronghold; height; the Capitoline hill Rome; defense, refuge; + arcte_Adv : Adv ; -- [XXXBO] :: closely/tightly (bound/filled/holding); briefly, in a confined space, compactly; + arcticos_A : A ; -- [XXXFO] :: initial, that constitutes the beginning (of a syllable, etc.); + arcticus_A : A ; -- [XXXFO] :: initial, that constitutes the beginning (of a syllable, etc.); + arction_N_N : N ; -- [XAXNS] :: plant; (also called arcturus); + arcto_V2 : V2 ; -- [XXXBO] :: wedge in, fit/close firmly; tighten/compress/abridge/contract; pack/limit/cramp; + arctophyllum_N_N : N ; -- [XAXFS] :: chervil; + arctous_A : A ; -- [XPXFS] :: pertaining to the Big/Little Dipper/Bear; northern; + arctus_A : A ; -- [XXXBO] :: close, thick, narrow; short; strict; scanty, brief; bow, rainbow (Ecc); + arcuarius_A : A ; -- [XXXES] :: of/pertaining to the bow; + arcuarius_M_N : N ; -- [XXXFO] :: maker of bows; + arcuatilis_A : A ; -- [DXXFS] :: bow-formed, bow shaped, bowed; + arcuatim_Adv : Adv ; -- [XTXEO] :: in the form of a bow/arch; + arcuatio_F_N : N ; -- [XTXFO] :: arch; structure consisting of arches (pl.), arcade; + arcuatura_F_N : N ; -- [XTXEO] :: arch; structure consisting of arches (pl.), arcade; + arcuatus_A : A ; -- [XBXEO] :: |rainbow colored, jaundiced; [morbus ~ => jaundice/rainbow colored disease]; + arcuatus_M_N : N ; -- [XBXEO] :: one having jaundice/the rainbow colored disease; + arcubalista_F_N : N ; -- [DWXFS] :: ballista furnished with a bow, spear-throwing war machine with bow mechanism; + arcubalistus_M_N : N ; -- [DWXFS] :: operator of an arcuballista - spear-throwing war machine with bow mechanism; + arcuballista_F_N : N ; -- [DWXFS] :: ballista furnished with a bow, spear-throwing war machine with bow mechanism; + arcuballistus_M_N : N ; -- [DWXFS] :: operator of an arcuballista - spear-throwing war machine with bow mechanism; + arcula_F_N : N ; -- [XXXFO] :: small box/chest/casket; small jewel/perfume/money box; wind-box of an organ; + arcularius_M_N : N ; -- [XTXFO] :: maker of small chests/boxes/jewel caskets; + arculatum_N_N : N ; -- [DEXES] :: sacrificial cakes (pl.) made of flour; + arculum_N_N : N ; -- [DEXFS] :: roll/hoop placed on the head for carrying vessels at public sacrifice; + arcuma_F_N : N ; -- [DXXFS] :: kind of covered carriage; + arcuo_V2 : V2 ; -- [XXXNO] :: bend into the shape of a bow/arch; + arcus_M_N : N ; -- [XXXAO] :: bow, arc, coil, arch; rainbow; anything arched or curved; + ardalio_M_N : N ; -- [XXXFO] :: busybody, fusser; + ardea_F_N : N ; -- [XAXEO] :: heron; + ardelio_M_N : N ; -- [XXXEC] :: busybody; + ardens_A : A ; -- [XXXBO] :: burning, flaming, glowing, fiery; shining, brilliant; eager, ardent, passionate; + ardenter_Adv : Adv ; -- [XXXCO] :: with burning/parching effect; passionately, ardently, eagerly, zealously; + ardeo_V : V ; -- [XXXAO] :: be on fire; burn, blaze; flash; glow, sparkle; rage; be in a turmoil/love; + ardeola_F_N : N ; -- [XAXNS] :: heron (small?); + ardesco_V : V ; -- [XXXCO] :: catch/take fire, kindle; become ignited/inflamed/hot/eager; erupt (volcano); + ardesiacus_A : A ; -- [GXXEK] :: slate-colored; + ardifetus_A : A ; -- [XXXFO] :: pregnant with fire/flame (lamp/torch); + ardiola_F_N : N ; -- [XAXNO] :: heron (small?); + ardor_M_N : N ; -- [XXXAO] :: fire, flame, heat; brightness, flash, gleam or color; ardor, love, intensity; + arduitas_F_N : N ; -- [XXXFO] :: steepness; + ardus_A : A ; -- [XXXAO] :: dry, arid, parched; water/rain-less; used dry, dried; thirsty; poor; shriveled; + arduum_N_N : N ; -- [XXXBO] :: steep/high place, heights, elevation; arduous/difficult/hard task; challenge; + arduus_A : A ; -- [XXXAO] :: steep, high, lofty, towering, tall; erect, rearing; uphill; arduous, difficult; + arduvo_V2 : V2 ; -- [AXXFO] :: add, insert, bring/attach to, say in addition; increase; impart; associate; + area_F_N : N ; -- [XXXBO] :: open space; park, playground; plot; threshing floor; courtyard; site; bald spot; + arealis_A : A ; -- [DAXFS] :: of/pertaining to (area) open space/threshing floor/courtyard; areal; + arefacio_V2 : V2 ; -- [XXXDO] :: dry up, wither up, break down; make dry, dry; + arena_F_N : N ; -- [XXXBO] :: sand, grains of sand; sandy land or desert; seashore; arena, place of contest; + arenaceus_A : A ; -- [XXXNS] :: sandy; + arenaria_F_N : N ; -- [XXXEO] :: sand-pit; + arenarium_N_N : N ; -- [XXXES] :: sand-pit; + arenarius_A : A ; -- [DXXES] :: of/pertaining to sand; or to the arena/amphitheater; [~ lapis => sandstone]; + arenarius_M_N : N ; -- [DXXES] :: combatant in the arena, gladiator; teacher of mathematics (figures in sand); + arenatio_F_N : N ; -- [XTXES] :: sanding, plastering with sand; plastering, cementing; + arenatum_N_N : N ; -- [XTXFS] :: sand mortar; + arenatus_A : A ; -- [XTXFS] :: sanded, covered/mixed with sand; + arenga_F_N : N ; -- [FXXFY] :: meeting; assembly; + arenifodina_F_N : N ; -- [DXXES] :: sand-pit; + arenivagus_A : A ; -- [XXXFS] :: wandering over sands; + arenosum_N_N : N ; -- [XXXNS] :: sandy place (as opposed to muddy); + arenosus_A : A ; -- [XXXCO] :: sandy, containing sand (ground); full of sand; + arens_A : A ; -- [XXXCO] :: dry parched, waterless; dried (herbs); parching (thirst); + arenula_F_N : N ; -- [XXXNS] :: fine sand; a grain of sand; + areo_V : V ; -- [XXXCO] :: be dry/parched; be thirsty; be withered (plants/animals, from lack of water); + areola_F_N : N ; -- [XXXEO] :: open courtyard; garden plot, seed bed; + arepennis_M_N : N ; -- [XAFEO] :: arpent/land measure (Gallic; half jugerum (=5/16 acre); (5/6 to 1 1/4 acre OED); + aresco_V : V ; -- [XAXCS] :: become dry; dry up; wither (plants); run dry (stream/tears); languish (L+S); + aretalogus_M_N : N ; -- [XDXEO] :: reciter/teller of fairy-tales/stories of the gods; prattler on virtue; boaster; + arfacio_V : V ; -- [XXXDS] :: be/become dried up/withered/dry; (arefacio PASS); + arferia_F_N : N ; -- [DEXFS] :: water which was poured in offering to the dead?; + argema_N_N : N ; -- [XBXNS] :: small ulcer in the eye; + argemon_N_N : N ; -- [XAXNO] :: plant (Lappa canaria); small white spots (pl.) on the cornea of the eye; + argemone_F_N : N ; -- [XAXNO] :: wind-rose plant (Papaver argemone); (inguinalis L+S); + argemonia_F_N : N ; -- [XAXFO] :: wind-rose plant (Papaver argemone); (inguinalis L+S); + argemonion_N_N : N ; -- [XAXNO] :: plant (prob. Aster amellus); + argennon_N_N : N ; -- [DAXFS] :: brilliant white silver; + argentaria_F_N : N ; -- [XXXCO] :: bank; banking-house, banking business; silver-mine; + argentarium_N_N : N ; -- [XXXFO] :: silver-chest; store/box/vault for silver; + argentarius_A : A ; -- [XXXCO] :: pertaining to silver or money, silver-; monetary, financial; banker's, banking-; + argentarius_M_N : N ; -- [FXXEK] :: banker; + argentatus_A : A ; -- [XXXDO] :: silvered, adorned with silver; concerned with money; + argenteolus_A : A ; -- [XXXEO] :: of silver, silver-; + argenteus_A : A ; -- [XXXCO] :: silver, silvery, of silver; made/ornamented with silver; of money; with money; + argenteus_M_N : N ; -- [XLXEO] :: silver coin; + argentifodina_F_N : N ; -- [XXXDO] :: silver mine (pl.), silver workings; + argentiolus_A : A ; -- [XXXEO] :: of silver, silver-; + argentofodina_F_N : N ; -- [XXXDO] :: silver mine (pl.), silver workings; + argentosus_A : A ; -- [XXXNO] :: containing silver; abounding in silver, full of silver (L+S); + argentum_N_N : N ; -- [XXXBO] :: silver; money, cash; silver-plate; [argentum vivum => quicksilver/mercury]; + argilla_F_N : N ; -- [XXXCO] :: white clay, potter's earth/clay; clay; + argillaceus_A : A ; -- [XXXNO] :: containing clay, argillaceous; + argillosus_A : A ; -- [XXXEO] :: full of/abounding in clay, clayey; + argimonia_F_N : N ; -- [XAXNO] :: wind-rose plant (Papaver argemone); + argitis_A : A ; -- [XAXEO] :: kind of white grapes; + argitis_F_N : N ; -- [XAXES] :: kind of vine with clusters of white grapes; + argumentabilis_A : A ; -- [DSXES] :: that may be proved; + argumentalis_A : A ; -- [DSXES] :: containing proof; + argumentaliter_Adv : Adv ; -- [XGXFO] :: as proof; by way of proof; + argumentatio_F_N : N ; -- [XGXCO] :: arguing, presentation of arguments; line of argument, particular proof; + argumentativus_A : A ; -- [ESXDX] :: argumentative; worthy of argument/discussion, sets out to prove something; + argumentator_M_N : N ; -- [DSXFS] :: he who brings forward/cites arguments/reasons/proofs, arguer, disputant; + argumentatrix_F_N : N ; -- [DSXFS] :: she who brings forward/cites arguments/reasons/proofs, arguer, disputant; + argumentor_V : V ; -- [XXXBO] :: support/prove by argument, reason, discuss; draw a conclusion; proven (PASS); + argumentosus_A : A ; -- [XXXFO] :: abounding in subject matter/material; rich in proof; + argumentum_N_N : N ; -- [DGXEZ] :: |trick; token (Vulgate); riddle; dark speech; + arguo_V2 : V2 ; -- [XXXAO] :: prove, argue, allege; disclose; accuse, complain of, charge, blame, convict; + argutatio_F_N : N ; -- [XXXFO] :: creaking, creak; rustling; + argutator_M_N : N ; -- [XXXFO] :: one who uses over-smart arguments, wiseguy; sophist; + argutatrix_A : A ; -- [XXXFO] :: garrulous, talkative (feminine adjective); + argutatrix_F_N : N ; -- [XXXFS] :: garrulous/talkative woman; + argute_Adv : Adv ; -- [XXXCO] :: shrewdly, cleverly, artfully; + argutia_F_N : N ; -- [XXXBO] :: clever use of words (pl.), verbal trickery, sophistry; wit, jesting; refinement; + argutiola_F_N : N ; -- [XXXEO] :: sophistry, verbal quibble; + arguto_V : V ; -- [XXXEO] :: babble, say childishly/foolishly; + argutor_V : V ; -- [XXXDO] :: chatter; prattle, babble; stamp (with feet) (L+S); + argutulus_A : A ; -- [XXXEO] :: clever/shrewd/acute, (somewhat) subtle; little noisy/talkative/loquacious (L+S); + argutus_A : A ; -- [XXXBO] :: melodious, clear (sounds), ringing; eloquent; wise, witty, cunning; talkative; + argyranche_F_N : N ; -- [XXXEO] :: inability to speak due to bribery; "silver quinsy" (L+S); + argyraspis_A : A ; -- [BWHFS] :: having silver shields (corps in army of Alexander/successors, Silver Shields); + argyraspis_M_N : N ; -- [BWHEO] :: corps (pl.) in army of Alexander and successors, Silver Shields; + argyritis_F_N : N ; -- [XXXNO] :: kind of litharge; (lead oxide/PbO, formed when air hits melted lead refining); + argyrocorinthus_A : A ; -- [XTXIO] :: of the silver colored, Corinthian bronze; + argyrodamas_M_N : N ; -- [XXXNO] :: silver-colored stone (similar to diamond L+S); + argyros_F_N : N ; -- [DAXFS] :: plant (mercurialis); + arhythmatus_A : A ; -- [DXXFS] :: of unequal measure; inharmonious; + arhythmus_A : A ; -- [DXXFS] :: of unequal measure; inharmonious; + aria_F_N : N ; -- [XXXIO] :: open space; park, playground; plot; threshing floor; courtyard; site; bald spot; + arianis_F_N : N ; -- [XAPNS] :: plant growing wild in Ariana (western Persia); + aricolor_V : V ; -- [XEXCO] :: speak by divine inspiration/with second sight, prophesy, divine; (facetious?); + arida_F_N : N ; -- [EXXEE] :: dry land; dry place; dry surface; dryness; + aride_Adv : Adv ; -- [XXXFO] :: dryly, austerely, without embellishment; + ariditas_F_N : N ; -- [XXXEO] :: dryness; drought; scanty food; anything (pl.) dry/withered/parched; + aridulus_A : A ; -- [XXXEO] :: dry, parched (somewhat); + aridum_N_N : N ; -- [XXXDO] :: dry land; dry place; dry surface; dryness; + aridus_A : A ; -- [XXXAO] :: dry, arid, parched; water/rain-less; used dry, dried; thirsty; poor; shriveled; + ariel_N : N ; -- [EEQEW] :: altar, fire-altar, fire-hearth of God; (Ezekiel 43:15); name = lion of God; + ariera_F_N : N ; -- [XAJNO] :: banana; fruit of the Indian tree; + aries_M_N : N ; -- [XXXBO] :: ram (sheep); battering ram; the Ram (zodiac); large unidentified marine animal; + arietarius_A : A ; -- [XXXFO] :: of/for a battering ram; + arietatio_F_N : N ; -- [XXXFO] :: collision; butting like a ram; + arietillus_A : A ; -- [XAXFO] :: like a ram, shameless; a variety of chick-pea; + arietinus_A : A ; -- [XAXDO] :: of/from a ram, ram's; a variety of chick-pea; + arieto_V : V ; -- [XXXCO] :: butt like a ram, batter/buffet, harass; strike violently; collide; stumble/trip; + arificus_A : A ; -- [DXXFS] :: drying, making dry; + arilator_M_N : N ; -- [XXXES] :: broker, dealer; huckster, haggler, bargainer; + arillator_M_N : N ; -- [XXXEO] :: broker, dealer; huckster, haggler, bargainer; + arinca_F_N : N ; -- [XAXNO] :: kind of grain (olyra - which resembles spelt L+S); + ariola_F_N : N ; -- [XXXIO] :: open courtyard; garden plot, seed bed; + ariolo_V : V ; -- [EXXCW] :: divine; foretell, prophesy; use divination; + ariolus_M_N : N ; -- [EXXCW] :: diviner; seer; + aris_F_N : N ; -- [XAXNO] :: plant resembling arum; dragon-root, green dragon (L+S); + arista_F_N : N ; -- [XAXCO] :: awn, beard of an ear of grain; ear of grain; grain crop; harvest; + aristatus_A : A ; -- [XAXFO] :: having awn or beard (of ear of grain); + ariste_F_N : N ; -- [XXXNS] :: precious stone (encardia/unknown stone with figure of a heart); + aristereon_F_N : N ; -- [XAXNO] :: variety of vervain; + aristifer_A : A ; -- [DAXES] :: bearing ears of grain, ear-bearing; epithet of Ceres as goddess of grain; + aristiger_A : A ; -- [DAXES] :: bearing ears of grain, ear-bearing; epithet of Ceres as goddess of grain; + aristis_F_N : N ; -- [XAXNO] :: vegetable; green vegetable; vegetables (usu. pl.), pot-herbs; + aristolochia_F_N : N ; -- [XAXDO] :: genus of medicinal plant useful in childbirth; aristolchia, birthwort; + aristolocia_F_N : N ; -- [XAXDO] :: genus of medicinal plant useful in childbirth; aristolchia, birthwort; + aristosus_A : A ; -- [XAXFS] :: covered with beards/awns; + arithmetica_F_N : N ; -- [XSXEO] :: arithmetic, the science of arithmetic; + arithmetice_F_N : N ; -- [XSXEO] :: arithmetic, the science of arithmetic; + arithmeticum_N_N : N ; -- [XSXEO] :: arithmetic/the science of arithmetic (pl.); + arithmeticus_A : A ; -- [XSXEO] :: arithmetical; + aritudo_F_N : N ; -- [XXXDO] :: drought; dryness; + armamaxa_F_N : N ; -- [XXPFO] :: kind of covered wagon used by the Persians; + armamentarium_N_N : N ; -- [XWXCO] :: arsenal, armory; dockyard; storehouse for military equipment; + armamentarius_A : A ; -- [XWXIO] :: of/concerned with armaments or military equipment; + armamentum_N_N : N ; -- [XWXBO] :: equipment (pl.), rigging/sailing gear (of a ship); implements, utensils; + armariolum_N_N : N ; -- [XXXES] :: little chest/casket, small cabinet; bookcase; + armarium_N_N : N ; -- [FXXEK] :: cupboard; + armatura_F_N : N ; -- [XWXCO] :: equipment, armor; troop (of gladiators); [levis ~ pedites => light infantry]; + armatus_A : A ; -- [XWXBO] :: armed, equipped; defensively armed, armor clad; fortified; of the use of arms; + armatus_M_N : N ; -- [XWXDO] :: type of arms/equipment, armor; [gravis armatus => heavy-armed troops]; + armellinum_N_N : N ; -- [FAXEE] :: ermine; + armeniacum_N_N : N ; -- [FAXEK] :: apricot; + armeniacus_A : A ; -- [GXXEK] :: apricot-colored; + armenta_F_N : N ; -- [XAXEO] :: herd (of cattle); a head of cattle, individual bull/horse; cattle/horses (pl.); + armentalis_A : A ; -- [XAXEO] :: of cattle, connected with herd/herds; rustic, bucolic; + armentarius_A : A ; -- [XAXFO] :: that has charge of a herd; + armentarius_M_N : N ; -- [XAXDO] :: herdsman, cowboy; + armenticius_A : A ; -- [XAXEO] :: consisting of cattle, bovine; + armentivus_A : A ; -- [XAXNO] :: kept in herds; pertaining to a herd; + armentosus_A : A ; -- [XAXFO] :: abounding in cattle; + armentum_N_N : N ; -- [XAXBO] :: herd (of cattle); a head of cattle, individual bull/horse; cattle/horses (pl.); + armiclausa_F_N : N ; -- [DWXES] :: military upper garment; + armicustos_M_N : N ; -- [XWXIO] :: armorer, keeper of arms; + armidoctor_M_N : N ; -- [XWXFO] :: teacher of the use of arms; + armifer_A : A ; -- [XWXBO] :: bearing arms, armed; warlike, martial, of war/fighting; producing armed men; + armiger_A : A ; -- [XWXCO] :: bearing arms, armed; warlike, martial, of war/fighting; producing armed men; + armiger_M_N : N ; -- [XWXCO] :: armor bearer; squire; [Iovis armiger => Jupiter's armor-bearer = the eagle]; + armigera_F_N : N ; -- [XWXDO] :: armor bearer (F); squire; [Iovis armigera => Jove's armor-bearer = the eagle]; + armilausa_F_N : N ; -- [DWXES] :: military upper garment; + armilla_F_N : N ; -- [XXXCO] :: bracelet, armlet, arm-band; metal hoop, ring, washer, socket; + armillatus_A : A ; -- [XXXDO] :: wearing bracelets; wearing collars (dogs); + armillum_N_N : N ; -- [XXXDO] :: wine jar; [ad ~ redire => fall back into bad habits, get up to old tricks]; + armipotens_A : A ; -- [XWXCO] :: powerful/strong in arms/war, valiant, warlike; + armipotentia_F_N : N ; -- [DWXFS] :: power in arms/war; + armisonus_A : A ; -- [XWXCO] :: resounding with the clash of arms, with ringing/rattling armor; + armita_F_N : N ; -- [DEXFS] :: virgin sacrificing w/ the lappet/flap of her toga thrown back over her shoulder; + armo_V2 : V2 ; -- [XWXAO] :: equip, fit with armor; arm; strengthen; rouse, stir; incite war; rig (ship); + armonia_F_N : N ; -- [FXXCO] :: harmony/concord; (between parts of body); melody, order of notes; coupling; + armoniacus_A : A ; -- [FSXEM] :: ammoniac; (sal ammoniac is ammonium chloride); + armonica_F_N : N ; -- [FDXEO] :: theory of music/harmony; + armonice_F_N : N ; -- [FDXEO] :: theory of music/harmony; + armonicus_A : A ; -- [XDXEO] :: relating/according to harmony/natural proportion; in unison (Souter); + armoracea_F_N : N ; -- [XAXEO] :: wild radish; + armoracia_F_N : N ; -- [XAXEO] :: wild radish; + armoracium_N_N : N ; -- [XAXEO] :: wild radish; + armum_N_N : N ; -- [XWXAO] :: arms (pl.), weapons, armor, shield; close fighting weapons; equipment; force; + armus_M_N : N ; -- [XAXCO] :: forequarter (of an animal), shoulder; upper arm; side, flank; shoulder cut meat; + arna_F_N : N ; -- [DAXFS] :: lamb; + arnacis_F_N : N ; -- [XXXES] :: garment for maidens; coat of sheepskin; + arnoglossa_F_N : N ; -- [DAXES] :: plant, sheep's-tongue/plantain (Plantago major); + arnus_M_N : N ; -- [XAXFO] :: lamb; + aro_V2 : V2 ; -- [XAXBO] :: plow, till, cultivate; produce by plowing, grow; furrow, wrinkle; + aroma_N_N : N ; -- [XXXEO] :: spice, aromatic substance; sweet odors (Bee); + aromatarius_M_N : N ; -- [DXXFS] :: dealer in spices; + aromaticum_N_N : N ; -- [XXXIO] :: aromatic ointment; + aromaticus_A : A ; -- [DXXFS] :: composed of spice(s); aromatic, fragrant; + aromatites_M_N : N ; -- [XXXNO] :: spiced/aromatic wine; aromatic stone/amber (smell + color of myrrh) (L+S); + aromatitis_F_N : N ; -- [XXXNO] :: aromatic stone, amber; + aromatizans_A : A ; -- [EXXEE] :: fragrant, aromatic; sweet smelling, smelling of spice; + aromatizo_V : V ; -- [DXXFS] :: smell of spice; make aromatic/fragrant/sweet smelling (Ecc); + aromatopola_M_N : N ; -- [GXXEK] :: hardware; + aromatopolium_N_N : N ; -- [GXXEK] :: hardware store; + aron_N_N : N ; -- [XAXNO] :: plants of genus arum; + aros_F_N : N ; -- [XAXNO] :: plants of genus arum; + arpaston_N_N : N ; -- [XBXIO] :: kind of eye-salve; + arquatura_F_N : N ; -- [XTXEO] :: structure consisting of arches (pl.), arcade; + arquatus_A : A ; -- [XBXCO] :: |rainbow colored, jaundiced; [morbus ~ => jaundice/rainbow colored disease]; + arquatus_M_N : N ; -- [XBXCO] :: one having jaundice/the rainbow colored disease; + arquipotens_A : A ; -- [XEXFO] :: mighty with the bow (Apollo); + arquitenens_A : A ; -- [XEXCO] :: carries/holding a bow (epithet of Apollo/Artimis), (constellation) the Archer; + arquitis_M_N : N ; -- [XWXFS] :: bowmen (pl.), archers; + arquus_M_N : N ; -- [XXXAO] :: bow, arc, coil, arch; rainbow; anything arched or curved; + arra_F_N : N ; -- [XLXDO] :: token payment on account, earnest money, deposit, pledge; (also of love); + arrabo_F_N : N ; -- [XLXCO] :: token payment on account, earnest money, deposit, pledge; (also of love); + arralis_A : A ; -- [DLXFS] :: of a pledge/security; + arramio_V : V ; -- [FLXFJ] :: arraign; indict, accuse; + arrectarium_N_N : N ; -- [XTXFO] :: vertical post, upright; + arrectarius_A : A ; -- [DTXES] :: erect, in an erect position, perpendicular; + arrectus_A : A ; -- [XXXEL] :: erect, perpendicular, upright, standing; steep, precipitous; excited, eager; + arremigo_V : V ; -- [XXXEO] :: row up to/towards; + arrenicum_N_N : N ; -- [XXXNO] :: yellow arsenic, orpiment (arsenic trisulphide); + arrepo_V : V ; -- [XXXCO] :: creep/move stealthily towards, steal up; feel one's way, worm one's way (trust); + arrepticius_A : A ; -- [DXXES] :: seized/possessed (in mind), inspired; raving, delirious; raving mad; + arreptitius_A : A ; -- [EXXEE] :: seized/possessed (in mind), inspired; raving, delirious; raving mad; + arreptius_A : A ; -- [DXXFS] :: seized/possessed (in mind), inspired; raving, delirious; + arreptivus_A : A ; -- [DXXFZ] :: seized/possessed (in mind), inspired; raving, delirious; (Bianchi); + arresto_V : V ; -- [FLXEM] :: arrest; seize; + arrha_F_N : N ; -- [XLXES] :: deposit, down payment, earnest money; pledge; (of love); wedding gift (Ecc); + arrhabo_F_N : N ; -- [XLXES] :: deposit, down payment, earnest money; pledge; (of love); wedding gift (Ecc); + arrhalis_A : A ; -- [DLXFS] :: of a pledge/security; + arrhenicum_N_N : N ; -- [XXXNO] :: yellow arsenic, orpiment (arsenic trisulphide); + arrhenogonos_A : A ; -- [XBXNO] :: of species of plant (crataegis) that when taken promotes male children; + arrhetos_M_N : N ; -- [DSXFS] :: one of Aeons of Valentinus; + arrideo_V : V ; -- [XXXCO] :: smile at/upon; please, be pleasing/satisfactory (to); be/seem familiar (to); + arrigo_V2 : V2 ; -- [XXXBO] :: set upright, tilt upwards, stand on end, raise; become sexually excited/aroused; + arripio_V2 : V2 ; -- [XXXAO] :: take hold of; seize (hand/tooth/claw), snatch; arrest; assail; pick up, absorb; + arrisio_F_N : N ; -- [XXXFL] :: smile of approval; action of smiling (at/on); + arrisor_M_N : N ; -- [XXXFO] :: one who smiles (at a person), smiler; flatterer, fawner (L+S); + arrodo_V2 : V2 ; -- [XXXCO] :: gnaw/nibble (away part); erode, eat away(disease/chemicals). wash away (water); + arrogans_A : A ; -- [XXXBO] :: arrogant, insolent, overbearing; conceited; presumptuous, assuming; + arroganter_Adv : Adv ; -- [XXXCO] :: insolently, arrogantly, haughtily; presumptuously; in a conceited manner; + arrogantia_F_N : N ; -- [XXXCO] :: insolence, arrogance, conceit, haughtiness; presumption; + arrogatio_F_N : N ; -- [XLXEO] :: act of adopting a adult as son homo sui juris (vs. in potestate parentis); + arrogator_M_N : N ; -- [XLXEO] :: one who adopts a adult as son by arrogatio (homo sui juris); + arrogo_V2 : V2 ; -- [XXXCO] :: |adopt (an adult) as one's son (esp. at his instance); + arroro_V : V ; -- [DXXFS] :: moisten, bedew; + arrosor_M_N : N ; -- [XXXFO] :: one who nibbles/gnaws at; + arrotans_A : A ; -- [DXXFS] :: in a winding/circular motion, turning; wavering; + arrugia_F_N : N ; -- [XXXNO] :: kind of galleried mine; + arruo_V2 : V2 ; -- [XXXFO] :: heap up (earth); cover (with earth), bury; + ars_F_N : N ; -- [XXXAO] :: skill/craft/art; trick, wile; science, knowledge; method, way; character (pl.); + arsella_F_N : N ; -- [DAXFS] :: plant; (also called argemonia); arsen_1_N : N ; -- [XAXNO] :: male (plant); - arsen_2_N : N ; - arsenicon_N_N : N ; - arsenicum_N_N : N ; - arsenogonon_N_N : N ; - arsineum_N_N : N ; - arsis_F_N : N ; - artaba_F_N : N ; - artaena_F_N : N ; - artatus_A : A ; - arte_Adv : Adv ; - artemisia_F_N : N ; - artemon_M_N : N ; - arteria_F_N : N ; - arteriace_F_N : N ; - arteriacos_A : A ; - arteriacus_A : A ; - arteriotomia_F_N : N ; - arteriotonia_F_N : N ; - arterium_N_N : N ; - arthriticus_A : A ; - arthritis_F_N : N ; - arthrosis_F_N : N ; - articlus_M_N : N ; - articulamentum_N_N : N ; - articularis_A : A ; - articularius_A : A ; - articulate_Adv : Adv ; - articulatim_Adv : Adv ; - articulatio_F_N : N ; - articulatus_A : A ; - articulo_V2 : V2 ; - articulosus_A : A ; - articulus_M_N : N ; - artifex_A : A ; + arsen_2_N : N ; -- [XAXNO] :: male (plant); + arsenicon_N_N : N ; -- [XXXFO] :: yellow arsenic, orpiment (arsenic trisulphide); + arsenicum_N_N : N ; -- [XXXFO] :: yellow arsenic, orpiment (arsenic trisulphide); + arsenogonon_N_N : N ; -- [XAXNO] :: plant (genus Mercurialis?); + arsineum_N_N : N ; -- [XEXFO] :: kind of head-dress; (woman's L+S); + arsis_F_N : N ; -- [XPXFO] :: metrical term indicating the raising of voice on an emphatic syllable; + artaba_F_N : N ; -- [DXEFS] :: Egyptian dry measure (= 3.5 Roman modii); + artaena_F_N : N ; -- [XXXEO] :: ladle; vessel for taking up liquids (L+S); + artatus_A : A ; -- [XXXES] :: contracted into a small space; narrow, close; short (time); + arte_Adv : Adv ; -- [XXXBO] :: closely/tightly (bound/filled/holding); briefly, in a confined space, compactly; + artemisia_F_N : N ; -- [XAXEO] :: species of Artemisia, wormwood, mugwort; similar plants, ambrosia, botrys; + artemon_M_N : N ; -- [XWXEO] :: main block of a tackle; jib/foresail; top-sail (L+S); + arteria_F_N : N ; -- [XBXCO] :: windpipe, trachea, breathing tubes/passages; artery; ureter/other ducts; + arteriace_F_N : N ; -- [XBXDO] :: medicine for the air passages/windpipe/trachea/bronchi; + arteriacos_A : A ; -- [XBXDO] :: of/affecting the air passages/windpipe; + arteriacus_A : A ; -- [XBXEO] :: of/affecting the air passages/windpipe/trachea/bronchi; + arteriotomia_F_N : N ; -- [DBXFS] :: opening/incision in an artery/windpipe; tracheotomy (Whitaker); + arteriotonia_F_N : N ; -- [GBXEK] :: arterial tension; + arterium_N_N : N ; -- [XBXCO] :: windpipe, trachea, breathing tubes/passages; artery; ureter/other ducts; + arthriticus_A : A ; -- [XBXEO] :: gouty; arthritic; affected with rheumatism; + arthritis_F_N : N ; -- [XBXES] :: arthritis; gout; lameness in the joints; + arthrosis_F_N : N ; -- [GBXEK] :: osteoarthritis; + articlus_M_N : N ; -- [XXXAO] :: joint; portion of limb/finger between joints; part; (critical) moment; crisis; + articulamentum_N_N : N ; -- [XBXEO] :: joint of the body; + articularis_A : A ; -- [XBXEO] :: of/affecting the joints; arthritis, rheumatism; + articularius_A : A ; -- [XBXFO] :: of/affecting the joints; arthritis, rheumatism; + articulate_Adv : Adv ; -- [XXXFO] :: distinctly; + articulatim_Adv : Adv ; -- [XXXCO] :: limb-by-limb, limb-from-limb; syllable-by-syllable; point-by-point, in detail; + articulatio_F_N : N ; -- [XAXNO] :: jointed structure, division into joints; disease of the joints of vines; + articulatus_A : A ; -- [DXXES] :: distinct; (furnished with joints); + articulo_V2 : V2 ; -- [XXXEO] :: divide into distinct parts, articulate; + articulosus_A : A ; -- [XXXEO] :: full of joints, jointed; subdivided; + articulus_M_N : N ; -- [EXXER] :: |point of time; (Vulgate); + artifex_A : A ; -- [XXXBO] :: skilled, artistic; expert, practiced; cunning, artful; creative, productive; 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 ; - artificialiter_Adv : Adv ; - artificiatus_A : A ; - artificiose_Adv : Adv ; - artificiositas_F_N : N ; - artificiosus_A : A ; - artificium_N_N : N ; - artilleria_F_N : N ; - artio_V2 : V2 ; - artius_A : A ; - arto_V2 : V2 ; - artocopus_M_N : N ; + artifex_M_N : N ; -- [XXXAO] :: artist, actor; craftsman; master of an art; author, maker; mastermind, schemer; + artificiale_N_N : N ; -- [XTXEO] :: technicalities (pl.); things conformable to the rules of the art; + artificialis_A : A ; -- [XXXEO] :: artificial; furnished/contrived by art; devised by speaker (based on deduction); + artificialiter_Adv : Adv ; -- [XTXFO] :: with trained skill, scientifically; + artificiatus_A : A ; -- [FXXEZ] :: crafted; artificial; + artificiose_Adv : Adv ; -- [XTXCO] :: skillfully; artistically; systematically, technically, by rules; artificially; + artificiositas_F_N : N ; -- [GXXEK] :: art, manner of that made with art; + artificiosus_A : A ; -- [XTXBO] :: skillfully; technical, by the rules, prescribed by art; artificial, unnatural; + artificium_N_N : N ; -- [XTXBO] :: art/craft/trade; skill/talent/craftsmanship; art work; method/trick; technology; + artilleria_F_N : N ; -- [GWXEK] :: artillery; + artio_V2 : V2 ; -- [XTXEO] :: insert tightly, wedge; be a tight fit, crowd; + artius_A : A ; -- [XXXFO] :: sound in mind and body; complete, perfect; skilled in arts; artful, cunning; + arto_V2 : V2 ; -- [XXXAO] :: wedge in, fit/close firmly, tighten; compress, abridge; pack, limit, cramp; + artocopus_M_N : N ; -- [DXXES] :: baker; artocreas_1_N : N ; -- [XXXES] :: bread and meat distributed free; meat pie (L+S); - artocreas_2_N : N ; + artocreas_2_N : N ; -- [XXXES] :: bread and meat distributed free; meat pie (L+S); 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 ; - artopta_M_N : N ; - artopticius_A : A ; - artro_V : V ; - artuatim_Adv : Adv ; - artuatus_A : A ; + artocrias_2_N : N ; -- [XXXIO] :: bread and meat distributed free; + artolaganus_M_N : N ; -- [XXXEO] :: kind of fatty cake; (made of meal, wine, milk, oil, lard, pepper L+S); + artophorion_N_N : N ; -- [EEXFE] :: vessel for Blessed Sacrament in Greek churches; + artopta_F_N : N ; -- [XXXEO] :: bread pan; cake mold; + artopta_M_N : N ; -- [DXXFS] :: baker; + artopticius_A : A ; -- [XXXNO] :: baked in a pan/tin (bread); + artro_V : V ; -- [XAXNO] :: plow in young grain to improve the yield; + artuatim_Adv : Adv ; -- [DXXFS] :: limb-by-limb; limb-from-limb; + artuatus_A : A ; -- [DXXFS] :: torn in/to pieces; 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 ; - artus_M_N : N ; - artutus_A : A ; - arula_F_N : N ; - arum_N_N : N ; - aruncus_M_N : N ; - arundinetum_N_N : N ; - arundineus_A : A ; - arundo_F_N : N ; - arura_F_N : N ; - aruspex_M_N : N ; - arutaena_F_N : N ; - arva_F_N : N ; - arvalis_A : A ; - arveho_V2 : V2 ; - arviga_F_N : N ; - arvina_F_N : N ; - arvix_F_N : N ; - arvum_N_N : N ; - arvus_A : A ; - arx_F_N : N ; - arytaena_F_N : N ; - as_M_N : N ; - asa_F_N : N ; - asarotos_A : A ; - asarotum_N_N : N ; - asarotus_A : A ; - asarum_N_N : N ; - asbestinon_N_N : N ; - asbestos_M_N : N ; - ascalabotes_M_N : N ; - ascalia_F_N : N ; - ascalpo_V2 : V2 ; - ascaules_M_N : N ; - ascea_F_N : N ; - ascella_F_N : N ; - ascendens_A : A ; - ascendibilis_A : A ; - ascendo_V2 : V2 ; - ascensio_F_N : N ; - ascensor_M_N : N ; - ascensus_M_N : N ; + artufex_M_N : N ; -- [XXXAO] :: artist, actor; craftsman; master of an art; author, maker; mastermind, schemer; + artum_N_N : N ; -- [XXXBO] :: narrow/limited space/limits/scope/sphere; dangerous situation, short supply; + artus_A : A ; -- [XXXAO] :: close, firm, tight; thrifty; dense, narrow; strict; scarce, critical; brief; + artus_M_N : N ; -- [XBXBO] :: arm/leg/limb, joint, part of the body; frame (pl.), body; sexual members/organs; + artutus_A : A ; -- [XBXFO] :: hefty, large-limbed (?); + arula_F_N : N ; -- [DEXDS] :: small altar; base of an altar; turf laid like an altar round base of a tree; + arum_N_N : N ; -- [XAXEO] :: plants of genus arum; + aruncus_M_N : N ; -- [XAXNO] :: goat's beard; + arundinetum_N_N : N ; -- [FAXCE] :: reed-bed; thicket/jungle/growth of reeds/rushes (L+S); stubble (Vulgate); + arundineus_A : A ; -- [XAXCO] :: of reeds; reedy; made of a reed; consisting of reeds; + arundo_F_N : N ; -- [XXXCO] :: reed; fishing rod; arrowshaft; arrow; pen; shepherd's pipe; + arura_F_N : N ; -- [DAXFS] :: field, grain-field; + aruspex_M_N : N ; -- [XXXCO] :: soothsayer, diviner, inspector of entrails of victims; prophet; + arutaena_F_N : N ; -- [XXXEO] :: ladle; vessel for taking up liquids (L+S); + arva_F_N : N ; -- [BAXFO] :: arable land, plowed field; soil, region; countryside; dry land; lowlands, plain; + arvalis_A : A ; -- [XAXDO] :: of cultivated land; [frater ~ => priest who made offering to Lares for harvest]; + arveho_V2 : V2 ; -- [XXXEO] :: carry, bring, convey (to); [advehor => arrive by travel, ride to]; + arviga_F_N : N ; -- [XEXFS] :: ram for offering/sacrifice; + arvina_F_N : N ; -- [XXXDO] :: fat, lard, suet, grease; small fat/suet; (on kidneys of sacrificial victim); + arvix_F_N : N ; -- [XEXFS] :: ram for offering/sacrifice; + arvum_N_N : N ; -- [XBXFD] :: |female external genitalia (rude); + arvus_A : A ; -- [XAXEO] :: arable (land); cultivated, plowed; + arx_F_N : N ; -- [XWXAO] :: citadel, stronghold, city; height, hilltop; Capitoline hill; defense, refuge; + arytaena_F_N : N ; -- [XXXEO] :: ladle; vessel for taking up liquids (L+S); + as_M_N : N ; -- [XLXAO] :: penny, copper coin; a pound; one, whole, unit; circular flap/valve; round slice; + asa_F_N : N ; -- [XXXEO] :: altar, structure for sacrifice, pyre; sanctuary; home; refuge, shelter; + asarotos_A : A ; -- [XXXEO] :: unswept; paved in mosaic to imitate refuse from the table (of a room); + asarotum_N_N : N ; -- [XXXFS] :: floor laid/paved in mosaic; (imitating refuse from the table OLD); + asarotus_A : A ; -- [XXXFS] :: of/pertaining to mosaic; + asarum_N_N : N ; -- [XAXEO] :: asarabacca or hazelwort (Asarum europeaum); wild-spikenard (L+S); + asbestinon_N_N : N ; -- [XXXFO] :: noncombustible material/cloth; (asbestos?); + asbestos_M_N : N ; -- [XXXNO] :: mineral or gem; iron-gray stoner from Arcadia (not common asbestos) (L+S); + ascalabotes_M_N : N ; -- [XAXNS] :: lizard (stellio in pure Latin) (Lacerta gecko); + ascalia_F_N : N ; -- [XAXNO] :: edible base of the artichoke; + ascalpo_V2 : V2 ; -- [XXXFO] :: scratch; scratch at; + ascaules_M_N : N ; -- [XDXFO] :: bagpiper (utricularius in pure Latin L+S); + ascea_F_N : N ; -- [XTXCO] :: carpenter's axe; mason's trowel;[sub ~ => under the trowel/construction]; + ascella_F_N : N ; -- [EXXEW] :: wing; pinion; armpit; upper arm/foreleg/fin; + ascendens_A : A ; -- [XXXFO] :: of/for climbing (machine); enabling one to climb; + ascendibilis_A : A ; -- [XXXFO] :: climbable, that can be climbed; + ascendo_V2 : V2 ; -- [XXXAO] :: climb; go/climb up; mount, scale; mount up, embark; rise, ascend, move upward; + ascensio_F_N : N ; -- [XXXEO] :: ascent; progress, advancement; rising series/flight of stairs; soaring; + ascensor_M_N : N ; -- [DXXES] :: one who ascends/rises; one who mounts a horse/chariot, rider, charioteer; + ascensus_M_N : N ; -- [XXXBO] :: ascent; act of scaling (walls); approach; a stage/step in advancement; height; ascesis_1_N : N ; -- [EXXFE] :: discipline; training; - ascesis_2_N : N ; - ascesis_F_N : N ; - asceta_M_N : N ; - asceterium_N_N : N ; - asceticus_A : A ; - ascetria_F_N : N ; - ascia_F_N : N ; - ascio_V2 : V2 ; - ascisco_V2 : V2 ; - ascites_M_N : N ; - ascitus_A : A ; - ascitus_M_N : N ; - ascius_A : A ; - asclepias_F_N : N ; - asclepion_N_N : N ; - ascopa_F_N : N ; - ascopera_F_N : N ; - ascribo_V2 : V2 ; - ascripticius_A : A ; - ascriptio_F_N : N ; - ascriptivus_A : A ; - ascriptor_M_N : N ; - ascyroides_N_N : N ; - ascyron_N_N : N ; - asella_F_N : N ; - asellulus_F_N : N ; - asellus_M_N : N ; - asepticus_A : A ; - asexualis_A : A ; - asilus_M_N : N ; - asina_F_N : N ; - asinalis_A : A ; - asinarius_A : A ; - asinarius_M_N : N ; - asinastrus_A : A ; - asininus_A : A ; - asinus_A : A ; - asinus_M_N : N ; - asinusca_F_N : N ; - asio_M_N : N ; - asomatus_A : A ; - asotia_F_N : N ; - asotus_A : A ; - asotus_M_N : N ; - aspalathos_M_N : N ; - aspalathus_M_N : N ; - aspalatus_M_N : N ; - aspalax_M_N : N ; - aspaltus_M_N : N ; - asparagus_M_N : N ; - aspargo_F_N : N ; - aspargo_V2 : V2 ; - aspectabilis_A : A ; - aspectamen_N_N : N ; - aspectio_F_N : N ; - aspecto_V2 : V2 ; - aspectus_M_N : N ; - aspello_V2 : V2 ; - aspendios_M_N : N ; - asper_A : A ; - aspere_Adv : Adv ; - aspergillum_N_N : N ; - aspergo_F_N : N ; - aspergo_V2 : V2 ; - asperitas_F_N : N ; - asperiter_Adv : Adv ; - aspernabilis_A : A ; - aspernamentum_N_N : N ; - aspernanter_Adv : Adv ; - aspernatio_F_N : N ; - aspernator_M_N : N ; - aspernor_V : V ; - aspero_V2 : V2 ; - aspersio_F_N : N ; - aspersus_M_N : N ; - asperugo_F_N : N ; - asperum_N_N : N ; - asphaltion_N_N : N ; - aspharagus_M_N : N ; - asphodelum_N_N : N ; - asphodelus_M_N : N ; - aspicio_V2 : V2 ; - aspilates_M_N : N ; - aspiramen_N_N : N ; - aspiratio_F_N : N ; - aspirator_M_N : N ; - aspiratrum_N_N : N ; - aspirinum_N_N : N ; - aspiro_V : V ; + ascesis_2_N : N ; -- [EXXFE] :: discipline; training; + ascesis_F_N : N ; -- [EXXEE] :: discipline; training; + asceta_M_N : N ; -- [EEXEE] :: ascetic, hermit; penitent; one who has taken vows; + asceterium_N_N : N ; -- [DEXES] :: place for the abode of ascetics (pl.); hermitage; monastery (Ecc); + asceticus_A : A ; -- [EEXFE] :: ascetical; of spiritual exercises to attain virtue/perfection; + ascetria_F_N : N ; -- [DEXEE] :: nun; ascetic (female); women (pl.) who have taken vows (L+S); + ascia_F_N : N ; -- [XTXCO] :: carpenter's axe; mason's trowel; [sub ~ => under the trowel/construction]; + ascio_V2 : V2 ; -- [XXXDO] :: take to/up; associate, admit; adopt as one's own; take upon (General's) staff; + ascisco_V2 : V2 ; -- [XXXAO] :: adopt, assume; receive, admit, approve of, associate; take over, claim; + ascites_M_N : N ; -- [XBXFS] :: kind of dropsy; + ascitus_A : A ; -- [XXXES] :: derived, assumed; foreign; + ascitus_M_N : N ; -- [XXXFS] :: acceptance, reception; + ascius_A : A ; -- [XSXNO] :: shadowless; (said of countries near the equator L+S); + asclepias_F_N : N ; -- [XAXNO] :: swallow-wort?; (Vincetoxicum officinale); + asclepion_N_N : N ; -- [XAXNS] :: medicinal herb (named after Aesculapius); + ascopa_F_N : N ; -- [XXXFO] :: leather bag, wallet; + ascopera_F_N : N ; -- [XXXFS] :: leather bag/sack; + ascribo_V2 : V2 ; -- [XXXAO] :: add/state in writing, insert; appoint; enroll, enfranchise; reckon, number; + ascripticius_A : A ; -- [XWXEO] :: enrolled in addition (as citizen/soldier); + ascriptio_F_N : N ; -- [XXXEO] :: addendum, addition in writing; + ascriptivus_A : A ; -- [XWXEO] :: enrolled in addition (as a soldier), supernumerary; + ascriptor_M_N : N ; -- [XXXEO] :: seconder, supporter, countersigner, one adding name to document as approving; + ascyroides_N_N : N ; -- [XAXNS] :: variety of St John's wort; (declension uncertain, even in the Greek); + ascyron_N_N : N ; -- [XAXNO] :: St John's wort (Hypericum perforatum); + asella_F_N : N ; -- [XAXES] :: small/little she-ass; + asellulus_F_N : N ; -- [DAXFS] :: small/little young ass; + asellus_M_N : N ; -- [XAXCO] :: (small/young) ass, donkey; fish of the cod family, hake?; Asses/stars in Cancer; + asepticus_A : A ; -- [GBXEK] :: aseptic; + asexualis_A : A ; -- [GXXEK] :: sexless; + asilus_M_N : N ; -- [XXXDO] :: gadfly; horse-fly; + asina_F_N : N ; -- [XAXDO] :: she-ass; + asinalis_A : A ; -- [XAXFO] :: of/pertaining to an ass; such as an ass is capable of; asinine, doltish, stupid; + asinarius_A : A ; -- [XAXCO] :: of/connected w/asses; millstone (ass-driven); [via ~ => road SE of Rome]; + asinarius_M_N : N ; -- [XAXDO] :: ass-driver, donkey-man/boy; keeper of asses; + asinastrus_A : A ; -- [XAXFO] :: variety of fig (feminine adjective); + asininus_A : A ; -- [XAXDO] :: ass's, of/produced by/foaled of an ass; ass-like; stupid; asinine; + asinus_A : A ; -- [XAXCO] :: of/connected with an ass/donkey, ass's; stupid, asinine; + asinus_M_N : N ; -- [XAXCO] :: ass, donkey; blockhead, fool, dolt; + asinusca_F_N : N ; -- [XAXNO] :: inferior type of grape; + asio_M_N : N ; -- [XAXNS] :: little horned owl; + asomatus_A : A ; -- [DXXFS] :: incorporeal; + asotia_F_N : N ; -- [XXXFO] :: dissipation, profligacy. dissolution; sensuality; + asotus_A : A ; -- [XXXDO] :: debauched, dissipated, profligate; + asotus_M_N : N ; -- [XXXEO] :: debaucher, dissolute man; + aspalathos_M_N : N ; -- [XAXEO] :: thorny shrub from which fragrant oil was obtained; camel thorn (Vulgate); + aspalathus_M_N : N ; -- [XAXEO] :: thorny shrub from which fragrant oil was obtained; camel thorn (Vulgate); + aspalatus_M_N : N ; -- [EAXFW] :: thorny shrub from which fragrant oil was obtained; camel thorn (Vulgate); + aspalax_M_N : N ; -- [XAXNS] :: herb (unknown); + aspaltus_M_N : N ; -- [EAXFW] :: thorny shrub from which fragrant oil was obtained; camel thorn (Vulgate); + asparagus_M_N : N ; -- [XXXCO] :: asparagus; shoot/sprout like asparagus; [~ Gallicus => samphire/garden fennel]; + aspargo_F_N : N ; -- [XXXBO] :: spray, sprinkling/scattering; moisture in form of drops; water damage; staining; + aspargo_V2 : V2 ; -- [XXXAO] :: sprinkle/strew on, splatter, splash; defile, stain; cast (slur); inflict (harm); + aspectabilis_A : A ; -- [XXXEO] :: visible, able to be seen; worthy to be seen, pleasing to look at; + aspectamen_N_N : N ; -- [DXXFS] :: look, sight; + aspectio_F_N : N ; -- [XEXFO] :: right of watching for/observing auguries; + aspecto_V2 : V2 ; -- [XXXCO] :: look/gaze at/upon; observe, watch; pay heed; face/look towards (place/person); + aspectus_M_N : N ; -- [XXXAO] :: appearance, aspect, mien; act of looking; sight, vision; glance, view; horizon; + aspello_V2 : V2 ; -- [XXXCO] :: drive away; banish; + aspendios_M_N : N ; -- [XAXNS] :: kind of vine; + asper_A : A ; -- [XXXEO] :: rough/uneven, coarse/harsh; sharp/pointed; rude; savage; pungent; keen; bitter; + aspere_Adv : Adv ; -- [XXXBS] :: roughly, harshly, severely, vehemently; with rough materials; coarsely; + aspergillum_N_N : N ; -- [EEXEE] :: aspergillum, holy water sprinkler/brush; + aspergo_F_N : N ; -- [XXXBO] :: spray, sprinkling/scattering; moisture in form of drops; water damage; staining; + aspergo_V2 : V2 ; -- [XXXAO] :: sprinkle/strew on, splatter, splash; defile, stain; cast (slur); inflict (harm); + asperitas_F_N : N ; -- [XXXAO] :: roughness; severity; difficulty; harshness; shrillness, sharpness; fierceness; + asperiter_Adv : Adv ; -- [XXXFO] :: by rough materials/harsh sound; coarsely/roughly; harshly/severely; drastically; + aspernabilis_A : A ; -- [XXXEO] :: contemptible, negligible; worthy to be disdained, such as might be disdained; + aspernamentum_N_N : N ; -- [DXXFS] :: despising, loathing, hatred; + aspernanter_Adv : Adv ; -- [DXXES] :: with contempt, contemptuously; + aspernatio_F_N : N ; -- [XXXEO] :: contempt; spurning; rejection of; aversion to; + aspernator_M_N : N ; -- [DXXFS] :: despiser, hater; scorner; + aspernor_V : V ; -- [XXXAO] :: despise, scorn, disdain; spurn, push away, repel, reject; refuse, decline; + aspero_V2 : V2 ; -- [XXXBO] :: roughen; sharpen, point, tip; enrage, make fierce/violent; grate on; aggravate; + aspersio_F_N : N ; -- [XXXEO] :: sprinkling on/upon; sprinkle; + aspersus_M_N : N ; -- [XXXNO] :: sprinkling on/upon; sprinkle; + asperugo_F_N : N ; -- [XAXNO] :: plant (with prickly leaves); kind of bur; + asperum_N_N : N ; -- [XXXCS] :: uneven/rough/harsh place/land; adversity, difficulties (esp. pl.); + asphaltion_N_N : N ; -- [XAXNO] :: treacle clover (Psoralea bituminosa); + aspharagus_M_N : N ; -- [DXXCS] :: asparagus; shoot/sprout like asparagus; [~ Gallicus => samphire/garden fennel]; + asphodelum_N_N : N ; -- [XAXEO] :: asphodel (Asphodelus ramosus); + asphodelus_M_N : N ; -- [XAXEO] :: asphodel (Asphodelus ramosus); + aspicio_V2 : V2 ; -- [XXXAO] :: look/gaze on/at, see, observe, behold, regard; face; consider, contemplate; + aspilates_M_N : N ; -- [XXQNS] :: precious stone of Arabia; + aspiramen_N_N : N ; -- [XXXFO] :: breathing on, immission; insertion, introduction; + aspiratio_F_N : N ; -- [XXXCO] :: exhalation; blowing on; aspiration; sounding "h"; + aspirator_M_N : N ; -- [EXXEN] :: inciter; inspirer; + aspiratrum_N_N : N ; -- [GXXEK] :: vacuum cleaner; + aspirinum_N_N : N ; -- [HBXEK] :: aspirin; + aspiro_V : V ; -- [XXXAO] :: breathe/blow (upon); aspirate; instill, infuse; be fragrant; influence; aspire; aspis_1_N : N ; -- [XXACO] :: asp, venomous snake of North Africa; - aspis_2_N : N ; - aspis_F_N : N ; - aspisatis_F_N : N ; - asplenon_N_N : N ; - asplenos_F_N : N ; - asplenum_N_N : N ; - asportatio_F_N : N ; - asporto_V2 : V2 ; - aspratilis_A : A ; - aspredo_F_N : N ; - aspretum_N_N : N ; - aspriter_Adv : Adv ; - aspritudo_F_N : N ; - aspuo_V2 : V2 ; - assa_F_N : N ; - assarius_A : A ; - assarius_M_N : N ; - assatura_F_N : N ; - assecla_M_N : N ; - assectatio_F_N : N ; - assectator_M_N : N ; - assector_V : V ; - assecue_Adv : Adv ; - assecula_M_N : N ; - assecuratio_F_N : N ; - assecutio_F_N : N ; - assecutor_M_N : N ; - assedo_M_N : N ; - assefolium_N_N : N ; - assellor_V : V ; - assenesco_V : V ; - assensio_F_N : N ; - assensor_M_N : N ; - assensus_M_N : N ; - assentatio_F_N : N ; - assentatiuncula_F_N : N ; - assentator_M_N : N ; - assentatorie_Adv : Adv ; - assentatrix_F_N : N ; - assentio_V : V ; - assentior_V : V ; - assentor_V : V ; - assequela_F_N : N ; - assequor_V : V ; - asser_M_N : N ; - asserculum_N_N : N ; - asserculus_M_N : N ; - assero_V2 : V2 ; - assertio_F_N : N ; - assertor_M_N : N ; - assertorius_A : A ; - assertum_N_N : N ; - asservatio_F_N : N ; - asservio_V2 : V2 ; - asservo_V2 : V2 ; - assesio_F_N : N ; - assessio_F_N : N ; - assessor_M_N : N ; - assessorium_N_N : N ; - assessorius_A : A ; - assessura_F_N : N ; - assessus_M_N : N ; - assestrix_F_N : N ; - asseveranter_Adv : Adv ; - asseverate_Adv : Adv ; - asseveratio_F_N : N ; - assevero_V2 : V2 ; - assibilo_V2 : V2 ; - assiccesco_V : V ; - assicco_V2 : V2 ; - assiculus_M_N : N ; - assideo_V : V ; - assido_V : V ; - assidue_Adv : Adv ; - assiduitas_F_N : N ; - assiduo_Adv : Adv ; - assiduo_V2 : V2 ; - assiduus_A : A ; - assiduus_M_N : N ; - assifornus_A : A ; - assignatio_F_N : N ; - assignator_M_N : N ; - assignifico_V2 : V2 ; - assigno_V2 : V2 ; - assilio_V2 : V2 ; - assimilanter_Adv : Adv ; - assimilatio_F_N : N ; - assimilatus_A : A ; - assimilis_A : A ; - assimiliter_Adv : Adv ; - assimilo_V2 : V2 ; - assimilor_V : V ; - assimulanter_Adv : Adv ; - assimulaticius_A : A ; - assimulatio_F_N : N ; - assimulatus_A : A ; - assimuliter_Adv : Adv ; - assimulo_V2 : V2 ; - assipondium_N_N : N ; - assiratum_N_N : N ; - assis_M_N : N ; - assisa_F_N : N ; - assistentia_F_N : N ; - assisto_V2 : V2 ; - assistrix_F_N : N ; - assitus_A : A ; - asso_V2 : V2 ; - associatio_F_N : N ; - associo_V : V ; - associus_A : A ; - assoleo_V : V ; - assolet_V0 : V ; - assolo_V2 : V2 ; - assono_V : V ; - asspersorium_N_N : N ; - assubrigo_V2 : V2 ; - assudesco_V : V ; - assuefacio_V2 : V2 ; - assuefio_V : V ; - assuesco_V2 : V2 ; - assuetudo_F_N : N ; - assuetus_A : A ; - assugo_V2 : V2 ; - assula_F_N : N ; - assulatim_Adv : Adv ; - assulose_Adv : Adv ; - assultim_Adv : Adv ; - assulto_V : V ; - assultus_M_N : N ; - assum_N_N : N ; - assum_V : V ; - assumentum_N_N : N ; - assumptio_F_N : N ; - assumptivus_A : A ; - assuo_V : V ; - assurgo_V : V ; - assus_A : A ; - assuscipio_V2 : V2 ; - assuspiro_V : V ; - ast_Conj : Conj ; - asta_F_N : N ; - astacus_M_N : N ; - astaphis_F_N : N ; - astator_M_N : N ; - astatus_A : A ; - astatus_M_N : N ; - asteismos_M_N : N ; - aster_M_N : N ; - astercum_N_N : N ; - asteria_F_N : N ; - asteriace_F_N : N ; - asterias_M_N : N ; - astericum_N_N : N ; - asterion_N_N : N ; - asteriscus_M_N : N ; - asterites_M_N : N ; - asterno_V2 : V2 ; - asthenia_F_N : N ; - asthma_N_N : N ; - asthmaticus_A : A ; - asticus_A : A ; - astipulatio_F_N : N ; - astipulator_M_N : N ; - astipulatus_M_N : N ; - astipulo_V : V ; - astipulor_V : V ; - astituo_V2 : V2 ; - asto_V : V ; - astolos_F_N : N ; - astragalus_M_N : N ; - astralis_A : A ; - astrangulo_V2 : V2 ; - astrapaea_F_N : N ; - astrapias_M_N : N ; - astrapoplectus_A : A ; - astreans_A : A ; - astrepo_V2 : V2 ; - astricte_Adv : Adv ; - astrictio_F_N : N ; - astrictorius_A : A ; - astrictus_A : A ; - astricus_A : A ; - astrideo_V : V ; - astrido_V : V ; - astrifer_A : A ; - astrifico_V2 : V2 ; - astrificus_A : A ; - astriger_A : A ; - astriloquus_A : A ; - astrilucus_A : A ; - astringo_V2 : V2 ; - astrion_N_N : N ; - astriotes_F_N : N ; - astrobolos_F_N : N ; - astrolabium_N_N : N ; - astrologia_F_N : N ; - astrologus_M_N : N ; - astronauta_M_N : N ; - astronauticus_A : A ; - astronomia_F_N : N ; - astronomicus_A : A ; - astronomus_M_N : N ; - astrophysica_F_N : N ; - astrosus_A : A ; - astructio_F_N : N ; - astructor_M_N : N ; - astrum_N_N : N ; - astruo_V2 : V2 ; - astu_N : N ; - astula_F_N : N ; - astupeo_V : V ; - astur_M_N : N ; - asturco_M_N : N ; - astus_M_N : N ; - astute_Adv : Adv ; - astutia_F_N : N ; - astutulus_A : A ; - astutus_A : A ; - asty_N : N ; - astytis_F_N : N ; - asureus_A : A ; - asyla_F_N : N ; - asylum_N_N : N ; - asymbolus_A : A ; - asymptota_F_N : N ; - asyndeton_N_N : N ; - asyndetus_A : A ; - at_Conj : Conj ; - atamussim_Adv : Adv ; - atat_Interj : Interj ; - atatae_Interj : Interj ; - atatatae_Interj : Interj ; - atate_Interj : Interj ; - atattae_Interj : Interj ; - atavia_F_N : N ; - atavus_M_N : N ; - atechnos_A : A ; - ategro_V2 : V2 ; - atenim_Conj : Conj ; - ater_A : A ; - atermum_N_N : N ; - atheismus_M_N : N ; - atheista_M_N : N ; - athenaeum_N_N : N ; - atheos_M_N : N ; - athera_F_N : N ; - atheroma_F_N : N ; - atheus_M_N : N ; - athla_F_N : N ; - athleta_M_N : N ; - athletica_F_N : N ; - athletice_Adv : Adv ; - athleticus_A : A ; - athletismus_M_N : N ; - athlon_N_N : N ; - athlum_N_N : N ; - atizoe_F_N : N ; - atlas_M_N : N ; - atmosphaera_F_N : N ; - atmosphaericus_A : A ; - atnatus_M_N : N ; - atocium_N_N : N ; - atomicus_A : A ; - atomismus_M_N : N ; - atomos_F_N : N ; - atomus_A : A ; - atomus_F_N : N ; - atopto_V2 : V2 ; - atque_Conj : Conj ; - atqui_Conj : Conj ; - atquin_Conj : Conj ; - atractylis_F_N : N ; - atramentarium_N_N : N ; - atramentum_N_N : N ; - atratus_A : A ; - atriarius_M_N : N ; - atricapilla_F_N : N ; - atricapillus_A : A ; - atricolor_A : A ; - atriensis_M_N : N ; - atriolum_N_N : N ; - atriplex_F_N : N ; - atriplex_N_N : N ; - atriplexum_N_N : N ; - atritas_F_N : N ; - atritus_A : A ; - atrium_N_N : N ; - atrocitas_F_N : N ; - atrociter_Adv : Adv ; - atrophia_F_N : N ; - atrophus_A : A ; - atropinum_N_N : N ; - atrotus_A : A ; - atrox_A : A ; - atrusca_F_N : N ; - atta_M_N : N ; - attachiamentum_N_N : N ; - attachio_V2 : V2 ; - attactus_M_N : N ; - attacus_M_N : N ; - attagen_M_N : N ; - attagena_F_N : N ; - attagus_M_N : N ; - attamen_Adv : Adv ; - attamino_V2 : V2 ; - attat_Interj : Interj ; - attatae_Interj : Interj ; - attate_Interj : Interj ; - attattatae_Interj : Interj ; - attegia_F_N : N ; - attegro_V2 : V2 ; - attelebus_M_N : N ; - attemperate_Adv : Adv ; - attemperatio_F_N : N ; - attempero_V2 : V2 ; - attempto_V2 : V2 ; - attendo_V2 : V2 ; - attentatio_F_N : N ; - attentatum_N_N : N ; - attente_Adv : Adv ; - attentio_F_N : N ; - attento_V2 : V2 ; - attentus_A : A ; - attenuate_Adv : Adv ; - attenuatio_F_N : N ; - attenuatus_A : A ; - attenuo_V2 : V2 ; - attermino_V2 : V2 ; - attero_V2 : V2 ; - atterraneus_A : A ; - attertiarius_A : A ; - attertiatus_A : A ; - attestatio_F_N : N ; - attestatus_A : A ; - attestor_V : V ; - attexo_V2 : V2 ; - atticisso_V : V ; - attigo_V2 : V2 ; - attiguus_A : A ; - attillo_V2 : V2 ; - attilus_M_N : N ; - attina_F_N : N ; - attineo_V : V ; - attingo_V2 : V2 ; - attinguo_V2 : V2 ; - attitulo_V2 : V2 ; - attolero_V2 : V2 ; - attollo_V2 : V2 ; - attondeo_V2 : V2 ; - attonite_Adv : Adv ; - attonitus_A : A ; - attono_V2 : V2 ; - attornatus_M_N : N ; - attorno_V : V ; - attorqueo_V2 : V2 ; - attorreo_V2 : V2 ; - attractio_F_N : N ; - attractivus_A : A ; - attracto_V2 : V2 ; - attractorius_A : A ; - attractus_A : A ; - attractus_M_N : N ; - attraho_V2 : V2 ; - attrectatio_F_N : N ; - attrectatus_M_N : N ; - attrecto_V2 : V2 ; - attremo_V : V ; - attrepido_V : V ; - attribulo_V2 : V2 ; - attribuo_V2 : V2 ; - attributio_F_N : N ; - attributum_N_N : N ; - attributus_A : A ; - attritio_F_N : N ; - attritus_A : A ; - attritus_M_N : N ; - attubernalis_M_N : N ; - attulo_V2 : V2 ; - attumulo_V2 : V2 ; - attuor_V : V ; - atvero_Adv : Adv ; - atypus_A : A ; - atypus_M_N : N ; - au_Interj : Interj ; - aucella_F_N : N ; - auceo_V2 : V2 ; - auceps_M_N : N ; - aucilla_F_N : N ; - auctarium_N_N : N ; - aucthorizatio_F_N : N ; - auctifer_A : A ; - auctifico_V2 : V2 ; - auctificus_A : A ; - auctio_F_N : N ; - auctionale_N_N : N ; - auctionalis_A : A ; - auctionarius_A : A ; - auctiono_V2 : V2 ; - auctionor_V : V ; - auctito_V2 : V2 ; - aucto_V2 : V2 ; + aspis_2_N : N ; -- [XXACO] :: asp, venomous snake of North Africa; + aspis_F_N : N ; -- [EXAEW] :: asp, venomous snake of North Africa; + aspisatis_F_N : N ; -- [XXXNO] :: unknown precious stone; + asplenon_N_N : N ; -- [XAXNO] :: fern (Ceterach officinarum?); miltwort, spleenwort (L+S); + asplenos_F_N : N ; -- [XAXNO] :: fern (Ceterach officinarum?); miltwort, spleenwort (L+S); + asplenum_N_N : N ; -- [XAXNS] :: fern (Ceterach officinarum?); miltwort, spleenwort (L+S); + asportatio_F_N : N ; -- [XXXFO] :: removal, carrying away; + asporto_V2 : V2 ; -- [XXXCO] :: carry/take away, remove; + aspratilis_A : A ; -- [XXXNS] :: rough (of a stone), with rough scales; + aspredo_F_N : N ; -- [XXXFS] :: roughness; + aspretum_N_N : N ; -- [XXXEO] :: rough/broken/uneven ground; + aspriter_Adv : Adv ; -- [XXXFO] :: by rough materials/harsh sound; coarsely/roughly; harshly/severely; drastically; + aspritudo_F_N : N ; -- [XXXCO] :: roughness to touch, grittiness; unevenness (ground); (w/ocularum) trachoma; + aspuo_V2 : V2 ; -- [XXXNO] :: spit (at/on); + assa_F_N : N ; -- [XXXFO] :: dry-nurse, nurse, nanny; + assarius_A : A ; -- [XXXFO] :: roasted, browned (?); having the value/weight of an as (?); + assarius_M_N : N ; -- [XLXFO] :: as (penny, copper) as a monetary unit; + assatura_F_N : N ; -- [DXXES] :: roasted meat; + assecla_M_N : N ; -- [XXXCO] :: follower; attendant, servant; hanger-on, sycophant, creature; + assectatio_F_N : N ; -- [XXXEO] :: waiting on, (respectful) attendance; support (in canvassing); study, research; + assectator_M_N : N ; -- [XXXCO] :: follower, companion, attendant; disciple; researcher, student, one who seeks; + assector_V : V ; -- [XXXCO] :: accompany, attend, escort; support, be an adherent, follow; court (fame); + assecue_Adv : Adv ; -- [XXXFO] :: attentively, closely; + assecula_M_N : N ; -- [XXXCO] :: follower; attendant, servant; hanger-on, sycophant, creature; + assecuratio_F_N : N ; -- [FXXFE] :: insurance; + assecutio_F_N : N ; -- [FXXEE] :: perception, comprehension, understanding; knowledge; + assecutor_M_N : N ; -- [DXXFS] :: attendant; + assedo_M_N : N ; -- [XLXES] :: assessor, counselor, one who sits by to give advice; + assefolium_N_N : N ; -- [DAXFS] :: plant; (also called agrostis); + assellor_V : V ; -- [DBXFS] :: defecate, void; + assenesco_V : V ; -- [DXXFS] :: become old (to any thing); + assensio_F_N : N ; -- [XXXCO] :: assent, agreement, belief; approval, approbation, applause; + assensor_M_N : N ; -- [XXXDO] :: one who agrees or approves; + assensus_M_N : N ; -- [XXXCO] :: assent, agreement, belief; approval, approbation, applause; + assentatio_F_N : N ; -- [XXXCO] :: assent, agreement; flattery, toadyism, flattering agreement/compliance; + assentatiuncula_F_N : N ; -- [XXXEO] :: piece of flattery; petty/trivial flattery; (L+S); + assentator_M_N : N ; -- [XXXCO] :: yes-man, flatterer, toady; + assentatorie_Adv : Adv ; -- [XXXFO] :: like a flatterer; fawningly, in a flattering manner; + assentatrix_F_N : N ; -- [XXXFO] :: woman who flatters; + assentio_V : V ; -- [XXXCO] :: assent, approve, agree in opinion; admit the truth of (w/DAT), agree (with); + assentior_V : V ; -- [XXXBO] :: assent to, agree, approve, comply with; admit the truth of (w/PREP); + assentor_V : V ; -- [XXXCO] :: flatter, humor; agree, assent, confirm; agree to everything; + assequela_F_N : N ; -- [DXXFS] :: succession, succeeding; + assequor_V : V ; -- [XXXAO] :: follow on, pursue, go after; overtake; gain, achieve; equal, rival; understand; + asser_M_N : N ; -- [XXXCO] :: pole (wooden), post, stake, beam; joist, rafter; pole of a litter; + asserculum_N_N : N ; -- [XXXEO] :: small beam/pole/post; + asserculus_M_N : N ; -- [XXXEO] :: small beam/pole/post; + assero_V2 : V2 ; -- [XXXDO] :: plant/set at/near; + assertio_F_N : N ; -- [FGXDB] :: |assertion; statement; + assertor_M_N : N ; -- [XXXCO] :: one asserting status of another; restorer of liberty, protector, champion; + assertorius_A : A ; -- [DLXFS] :: of/pertaining to a restoration of freedom; + assertum_N_N : N ; -- [DGXES] :: assertion; + asservatio_F_N : N ; -- [FXXFE] :: keeping, preservation; reservation; + asservio_V2 : V2 ; -- [XXXFO] :: devote/apply oneself to (w/DAT); aid, help, assist; + asservo_V2 : V2 ; -- [XXXBO] :: keep/guard/preserve; watch/observe; keep in custody; rescue/save life; reserve; + assesio_F_N : N ; -- [FXXFE] :: siting as assessor; act of assessing; sitting beside one (console/give advice); + assessio_F_N : N ; -- [XXXFO] :: sitting beside one (to console/give advice); + assessor_M_N : N ; -- [XLXDO] :: assessor, counselor, one who sits by to give advice; + assessorium_N_N : N ; -- [XLXFO] :: title of a legal textbook (sg/pl.); + assessorius_A : A ; -- [DLXFS] :: of/pertaining to an assessor; + assessura_F_N : N ; -- [XLXFO] :: assistance as a legal advisor; office of assessor, assessorship (L+S); + assessus_M_N : N ; -- [XLXFO] :: sitting beside one (in court); + assestrix_F_N : N ; -- [XLXFO] :: assessor (female), counselor, one who sits by to give advice; + asseveranter_Adv : Adv ; -- [XXXEO] :: earnestly, emphatically; + asseverate_Adv : Adv ; -- [XXXEO] :: earnestly, emphatically; + asseveratio_F_N : N ; -- [XXXCO] :: affirmation, (confident/earnest) assertion; seriousness/earnestness, gravity; + assevero_V2 : V2 ; -- [XXXCO] :: act earnestly; assert strongly/emphatically, declare; profess; be serious; + assibilo_V2 : V2 ; -- [XXXFO] :: hiss out (breath) upon (w/DAT); murmur/whisper to/at (L+S); + assiccesco_V : V ; -- [XXXFO] :: dry out/up, become dry; + assicco_V2 : V2 ; -- [XXXDO] :: dry, dry out, dry up, make dry; + assiculus_M_N : N ; -- [XXXFS] :: small axle; small plank, slat; small beam/pole, pin (L+S); + assideo_V : V ; -- [XXXBO] :: sit by/in council/as assessor; watch over; camp near, besiege; resemble (w/DAT); + assido_V : V ; -- [XXXCO] :: sit down, take a seat; perch, alight, settle; sit by/near (to) (w/DAT); + assidue_Adv : Adv ; -- [XXXCO] :: continually, constantly, regularly; + assiduitas_F_N : N ; -- [XXXCO] :: attendance, constant presence/attention/practice, care; recurrence, repetition; + assiduo_Adv : Adv ; -- [XXXDO] :: continually, constantly, regularly; + assiduo_V2 : V2 ; -- [XXXFS] :: apply constantly; make constant use of (Souter); use regularly/incessantly; + assiduus_A : A ; -- [XXXAO] :: constant, regular; unremitting, incessant; ordinary; landowning, first-class; + assiduus_M_N : N ; -- [XXXES] :: tribute/tax payer, rich person; first-rate person/writer?; + assifornus_A : A ; -- [XDXIO] :: touring gladiatorial show; + assignatio_F_N : N ; -- [XLXCO] :: distribution/allotment of land; the plot of land granted; allocation (other); + assignator_M_N : N ; -- [XLXFO] :: allocator, one who assigns; + assignifico_V2 : V2 ; -- [XXXDO] :: show (w/ACC + INF), make evident; mean/denote (words); + assigno_V2 : V2 ; -- [XXXAO] :: assign, distribute, allot; award, bestow (rank/honors); impute; affix seal; + assilio_V2 : V2 ; -- [XXXBO] :: jump/leap (up/on/towards), rush/dash (at/against), assault; mount (male-female); + assimilanter_Adv : Adv ; -- [XXXEO] :: similarly, analogically; + assimilatio_F_N : N ; -- [XXXDS] :: likeness, similarity in form; comparison; deceit, pretense, feigning, pretending + assimilatus_A : A ; -- [XXXES] :: similar, like, made similar; imitated, feigned, pretended. dissembled; + assimilis_A : A ; -- [XXXCO] :: similar, like; close; closely resembling, very like; + assimiliter_Adv : Adv ; -- [XXXFO] :: similarly, in much the same manner/fashion; + assimilo_V2 : V2 ; -- [XXXAO] :: make like; compare; counterfeit, simulate, imitate, pretend, feign, act a part; + assimilor_V : V ; -- [FXXDE] :: become like; be compared to; + assimulanter_Adv : Adv ; -- [XXXEO] :: similarly, analogically; + assimulaticius_A : A ; -- [DLXES] :: imitated, counterfeit, not real; nominal, titular; + assimulatio_F_N : N ; -- [XXXDO] :: likeness, similarity in form; comparison; deceit, pretense, feigning, pretending + assimulatus_A : A ; -- [XXXES] :: similar, like, made similar; imitated, feigned, pretended. dissembled; + assimuliter_Adv : Adv ; -- [XXXFS] :: similarly, in much the same manner/fashion; + assimulo_V2 : V2 ; -- [XXXAO] :: make like; compare; counterfeit, simulate, imitate, pretend, feign, act a part; + assipondium_N_N : N ; -- [XLXEO] :: sum or weight of one as (penny), a pound (as was originally a pound of copper); + assiratum_N_N : N ; -- [XXXFS] :: drink composed of wine and blood; + assis_M_N : N ; -- [XXXEO] :: plank, board; + assisa_F_N : N ; -- [FLXFJ] :: Assise; county court room; + assistentia_F_N : N ; -- [FXXEE] :: help, assistance; attendance; + assisto_V2 : V2 ; -- [XXXBO] :: take position/stand (near/by), attend; appear before; set/place near; defend; + assistrix_F_N : N ; -- [XLXFS] :: assessor (female), counselor, who sits by to give advice; attendant/assistant; + assitus_A : A ; -- [XXXEO] :: planted/set/situated at/near; + asso_V2 : V2 ; -- [XXXFO] :: roast, bake, broil; dry; + associatio_F_N : N ; -- [FXXEE] :: association; accompaniment; escort; + associo_V : V ; -- [XXXFO] :: join/attach (to), associate/work (with); unite with; attend upon; escort (Ecc); + associus_A : A ; -- [DXXFS] :: associated with; + assoleo_V : V ; -- [XXXCO] :: be accustomed/in the habit of; be customary accompaniment, go with; be usual; + assolet_V0 : V ; -- [XXXCO] :: it is usual/wont; it is the custom/practice; it is the habit; + assolo_V2 : V2 ; -- [DWXES] :: level to the ground, destroy; + assono_V : V ; -- [XXXDO] :: respond, reply; sound in accompaniment; sing as an accompaniment; + asspersorium_N_N : N ; -- [EEXEE] :: aspergillum, holy water sprinkler/brush; + assubrigo_V2 : V2 ; -- [XXXNO] :: stretch up, raise; + assudesco_V : V ; -- [XXXEO] :: sweat, break out in a sweat; + assuefacio_V2 : V2 ; -- [XXXCO] :: accustom (to), habituate, inure; make accustomed/used (to), train; + assuefio_V : V ; -- [XXXCO] :: be/become accustomed (to), be habituated; be trained; (assuefacio PASS); + assuesco_V2 : V2 ; -- [XXXBO] :: accustom, become/grow accustomed to/used to/intimate with; make familiar; + assuetudo_F_N : N ; -- [XXXCO] :: custom, habit; repeated practice/experience/association; intimacy, intercourse; + assuetus_A : A ; -- [XXXBO] :: accustomed, customary, usual, to which one is accustomed/used; + assugo_V2 : V2 ; -- [XXXFO] :: suck towards; + assula_F_N : N ; -- [XXXDO] :: splinter, chip of wood/stone; + assulatim_Adv : Adv ; -- [XXXEO] :: into splinters; + assulose_Adv : Adv ; -- [XXXNO] :: into splinters, splinter-wise; + assultim_Adv : Adv ; -- [XXXNO] :: by leaps, by hops; by leaps and bounds; + assulto_V : V ; -- [XWXCO] :: jump/leap at/towards/upon; dash against; attack, assault, make an attack (on); + assultus_M_N : N ; -- [XWXEO] :: attack, assault, charge; leap/leaping to/at/against; + assum_N_N : N ; -- [XXXEO] :: sudatorium (pl.), sweating-bath, sauna; + assum_V : V ; -- [XXXAO] :: be near, be present, be in attendance, arrive, appear; aid (w/DAT); + assumentum_N_N : N ; -- [DXXFS] :: that which is to be sewed upon, that which is to be patched; patch (Ecc); + assumptio_F_N : N ; -- [XXXCO] :: adoption; acquisition, assumption, claim; minor premise; introduction (point); + assumptivus_A : A ; -- [XGXEO] :: based on extraneous arguments (rhet., of the treatment of a case); + assuo_V : V ; -- [XXXEO] :: sew or patch on; + assurgo_V : V ; -- [XXXAO] :: rise/stand up, rise to one's feet/from bed; climb, lift oneself; grow; soar; + assus_A : A ; -- [XXXCO] :: roasted, baked; dry (from sunbathing); dry (w/o mortar); w/unaccompanied voice; + assuscipio_V2 : V2 ; -- [XXXIO] :: undertake (vows); + assuspiro_V : V ; -- [XXXFO] :: sigh in response (to) (w/DAT); + ast_Conj : Conj ; -- [XXXBO] :: but, on the other hand/contrary; but yet; at least; in that event; if further; + asta_F_N : N ; -- [XWXBO] :: spear, javelin; spear stuck in ground for public auction/centumviral court; + astacus_M_N : N ; -- [XAXNO] :: lobster/crayfish; kind of crab (L+S); + astaphis_F_N : N ; -- [XAXNO] :: stavesacre (Delphinium staphisagria); + astator_M_N : N ; -- [XXXIO] :: aide, helper, assister; + astatus_A : A ; -- [XWXDO] :: armed with a spear/spears; + astatus_M_N : N ; -- [XWXCO] :: spearman; soldier in unit in front of Roman battle-formation; its centurion; + asteismos_M_N : N ; -- [DGXES] :: more refined style of speaking, urbanity; + aster_M_N : N ; -- [XAXNO] :: plant (Aster amellus?); kind of Samian clay; star (= astrum), destiny (?); + astercum_N_N : N ; -- [XAXNO] :: plant pellitory-of-the-wall; (in pure Latin urceolaris L+S); + asteria_F_N : N ; -- [XXXNO] :: precious stone, either asteriated (star) sapphire or cymophane (cats-eye)?; + asteriace_F_N : N ; -- [XBXES] :: simple medicine; + asterias_M_N : N ; -- [XAXNO] :: bird like heron; kind of heron (L+S); + astericum_N_N : N ; -- [XAXNS] :: plant pellitory-of-the-wall; (in pure Latin urceolaris L+S); + asterion_N_N : N ; -- [XAXNO] :: venomous spider; + asteriscus_M_N : N ; -- [DGXES] :: small star; asterisk (as a typographical mark); + asterites_M_N : N ; -- [DYXFS] :: kind of basilisk/cockatrice; + asterno_V2 : V2 ; -- [XXXEO] :: prostrate oneself, lie prone (on); + asthenia_F_N : N ; -- [GXXEK] :: anesthesia/anaesthesia; + asthma_N_N : N ; -- [XBXNO] :: asthma, attack of asthma; shortness of breath; + asthmaticus_A : A ; -- [XBXNO] :: suffering from shortness of breath, asthmatic; + asticus_A : A ; -- [XXXEO] :: of/located in a city, city, urban; + astipulatio_F_N : N ; -- [XXXEO] :: confirmation, confirmatory statement; + astipulator_M_N : N ; -- [XLXDO] :: associate in a stipulation; one who supports an opinion, adherent; + astipulatus_M_N : N ; -- [XXXNO] :: assent, agreement in a command; + astipulo_V : V ; -- [XLXFS] :: join in stipulation/covenant; join in demanding; support (in an argument); + astipulor_V : V ; -- [XLXDO] :: join in stipulation/covenant; join in demanding; support (in an argument); + astituo_V2 : V2 ; -- [XXXDO] :: place near/before; make to stand before; + asto_V : V ; -- [XXXBO] :: stand at/on/by; assist; stand up/upright/waiting/still, stand on one's feet; + astolos_F_N : N ; -- [XXXNO] :: precious stone; + astragalus_M_N : N ; -- [XTXEO] :: convex molding (usu. round top/bottom of a column), astragal; + astralis_A : A ; -- [DSXFS] :: relating to the stars; revealed by the stars; + astrangulo_V2 : V2 ; -- [XXXFS] :: strangle; + astrapaea_F_N : N ; -- [XXXNO] :: precious stone; + astrapias_M_N : N ; -- [XXXNS] :: precious stone (black in color with gleams of light crossing the middle); + astrapoplectus_A : A ; -- [XXXES] :: struck by lightening; + astreans_A : A ; -- [DXXFS] :: gleaming like a star; + astrepo_V2 : V2 ; -- [XXXCO] :: make a noise at, shout in support, take up a cry; assail with noise; murmur; + astricte_Adv : Adv ; -- [XXXCO] :: tightly (bound), firmly; strictly, by strict rules; concisely, tersely, pithily; + astrictio_F_N : N ; -- [XBXNO] :: astringency, an astringent action; + astrictorius_A : A ; -- [XBXNO] :: astringent, binding, constrictive, styptic; (effect on organic tissue); + astrictus_A : A ; -- [XXXBO] :: |busy/preoccupied (with), intent (on); parsimonious, tight; astringent (taste); + astricus_A : A ; -- [XSXFO] :: starry, of the stars; + astrideo_V : V ; -- [XXXFO] :: hiss (at); + astrido_V : V ; -- [XXXFO] :: hiss (at); + astrifer_A : A ; -- [XSXDO] :: starry, star-laden; + astrifico_V2 : V2 ; -- [DSXFS] :: make/produce stars; + astrificus_A : A ; -- [DSXFS] :: star producing/making; + astriger_A : A ; -- [XSXEO] :: star-bearing; starry; + astriloquus_A : A ; -- [DSXFS] :: talking of the stars; + astrilucus_A : A ; -- [DSXFS] :: shining/gleaming like stars; + astringo_V2 : V2 ; -- [XXXAO] :: |oblige, commit; compress, narrow, restrict; knit (brows); freeze, solidify; + astrion_N_N : N ; -- [XXJNO] :: precious stone; (crystalline, found in India, sapphire? L+S); + astriotes_F_N : N ; -- [XXXNS] :: precious stone (w/magical properties); (OLD says neuter); + astrobolos_F_N : N ; -- [XXXNS] :: precious stone (onyx?, chalcedon?); + astrolabium_N_N : N ; -- [HSXEK] :: astrolabe; + astrologia_F_N : N ; -- [XSXCO] :: astronomy, astrology, science/study of the heavenly bodies; book on astronomy; + astrologus_M_N : N ; -- [XSXCO] :: astronomer, one who studies the heavens/predicts from the stars; astrologer; + astronauta_M_N : N ; -- [HXXEK] :: astronaut; + astronauticus_A : A ; -- [HSXEK] :: astronautic; + astronomia_F_N : N ; -- [XSXEO] :: astronomy, science of heavenly bodies; + astronomicus_A : A ; -- [DSXCS] :: astronomical; + astronomus_M_N : N ; -- [DSXCS] :: astronomer; astrologer (Bee); + astrophysica_F_N : N ; -- [HSXEK] :: astrophysics; + astrosus_A : A ; -- [XXXIO] :: born under evil star, ill-starred; + astructio_F_N : N ; -- [DGXES] :: accumulation of proof, putting together, composition; + astructor_M_N : N ; -- [DGXFS] :: one who adduces/brings forward/cites/alleges proof; + astrum_N_N : N ; -- [XSXAO] :: star, heavenly body, planet/sun/moon; the stars, constellation; sky, heaven; + astruo_V2 : V2 ; -- [XXXBO] :: build on/additional structure; heap/pile (on); add to/on, contribute, provide; + astu_N : N ; -- [XXHDO] :: city (esp. Athens), town (as opp. to rest of Attica/city-state); + astula_F_N : N ; -- [XXXEO] :: splinter/chip; shavings; [astula regia => the plant asphodel]; + astupeo_V : V ; -- [XXXDO] :: be stunned/astounded/astonished/amazed (at); be enthralled (by) (w/DAT); + astur_M_N : N ; -- [DAXES] :: species of hawk; inhabitant of Asturia in Hispania Tarraconensis; + asturco_M_N : N ; -- [XAXFW] :: Nero's favorite horse; a horse from Asturia in Hispania Tarraconensis; + astus_M_N : N ; -- [XXXCO] :: craft, cunning, guile; cunning procedure/method, trick, stratagem; + astute_Adv : Adv ; -- [XXXCO] :: cunningly, craftily, cleverly, astutely; + astutia_F_N : N ; -- [XXXCO] :: cunning, cleverness, astuteness; cunning procedure/method, trick, stratagem; + astutulus_A : A ; -- [XXXEO] :: cunning (person/action), crafty, clever, astute; + astutus_A : A ; -- [XXXCO] :: clever, astute, sly, cunning; expert; + asty_N : N ; -- [XXHDO] :: city (esp. Athens), town (as opp. to rest of Attica/city-state); + astytis_F_N : N ; -- [XAXNS] :: kind of lettuce; + asureus_A : A ; -- [FXXDM] :: azure; blue; of lapis lazuli; + asyla_F_N : N ; -- [XAXNO] :: unidentified plant; + asylum_N_N : N ; -- [XXXCO] :: place of refuge, asylum, sanctuary; place for relaxation/recuperation, retreat; + asymbolus_A : A ; -- [XXXEO] :: without paying a contribution, contributing nothing to entertainment, scot-free; + asymptota_F_N : N ; -- [GXXEK] :: asymptote (math.); + asyndeton_N_N : N ; -- [DGXFS] :: rhetorical omission of connecting particle; (pure Latin dissolutio); + asyndetus_A : A ; -- [DSXES] :: standing without any connection with/reference to constellations (stars); + at_Conj : Conj ; -- [XXXAO] :: but, but on the other hand; on the contrary; while, whereas; but yet; at least; + atamussim_Adv : Adv ; -- [XXXES] :: according to a ruler/level, exactly, accurately; + atat_Interj : Interj ; -- [XXXFO] :: ah! oh! alas! (expression of sudden enlightenment/surprise/fear/warning); + atatae_Interj : Interj ; -- [XXXFO] :: ah! oh! alas! (expression of sudden enlightenment/surprise/fear/warning); + atatatae_Interj : Interj ; -- [XXXFO] :: ah! oh! alas! (expression of sudden enlightenment/surprise/fear/warning); + atate_Interj : Interj ; -- [XXXFS] :: ah! oh! alas! (expression of sudden enlightenment/surprise/fear/warning); + atattae_Interj : Interj ; -- [XXXFO] :: ah! oh! alas! (expression of sudden enlightenment/surprise/fear/warning); + atavia_F_N : N ; -- [XXXEO] :: great-great-great grandmother; (mother of abavus/abavia); female ancestor; + atavus_M_N : N ; -- [XXXCO] :: great-great-great grandfather; (father of abavus/abavia); ancestor, forefather; + atechnos_A : A ; -- [XXXFO] :: inartistic; + ategro_V2 : V2 ; -- [DEXES] :: pour out wine in sacrifices; + atenim_Conj : Conj ; -- [XXXEO] :: but/yet in spite of what has been said; but/yet nevertheless/all the same; + ater_A : A ; -- [XXXAO] :: |deadly, terrible, grisly (esp. connected with underworld); poisonous; spiteful; + atermum_N_N : N ; -- [XAXNO] :: plant (tough, stubborn pest?); + atheismus_M_N : N ; -- [FEXEE] :: atheism; + atheista_M_N : N ; -- [GEXEK] :: atheistic; + athenaeum_N_N : N ; -- [FGXEE] :: school, atheneum; place of study; (athenaeum maius => university); + atheos_M_N : N ; -- [XEXES] :: atheist, one who does not believe in God; (as nickname); + athera_F_N : N ; -- [XBXNO] :: variety of gruel used in medicine; prepared from arinca/spelt (L+S); + atheroma_F_N : N ; -- [XBXFO] :: tumor occurring on the head containing gruel-like matter; + atheus_M_N : N ; -- [XEXES] :: atheist, one who does not believe in God; (as nickname); + athla_F_N : N ; -- [XXXFS] :: labor/task/struggle, pains; athletic contest; the 12 points of celestial circle; + athleta_M_N : N ; -- [XXXCO] :: wrestler, boxer, athlete, one who is in public games; expert, old-hand; contest; + athletica_F_N : N ; -- [XXXNO] :: athletics; sport; + athletice_Adv : Adv ; -- [XXXEO] :: athletically, like an athlete; + athleticus_A : A ; -- [XXXEO] :: athletic, sporty; of/proper for an athlete; [ars athletica => athletics]; + athletismus_M_N : N ; -- [GDXEK] :: athletics; + athlon_N_N : N ; -- [XXXDS] :: labor/task/struggle, pains; athletic contest; the 12 points of celestial circle; + athlum_N_N : N ; -- [XXXDS] :: labor/task/struggle, pains; athletic contest; the 12 points of celestial circle; + atizoe_F_N : N ; -- [XXXNO] :: precious stone; (of silver luster L+S); + atlas_M_N : N ; -- [GXXEK] :: atlas (of geography); + atmosphaera_F_N : N ; -- [GXXEK] :: atmosphere; + atmosphaericus_A : A ; -- [GXXEK] :: atmospheric; + atnatus_M_N : N ; -- [XXXCO] :: male blood relation (father's side); one born after father made his will; + atocium_N_N : N ; -- [FXXEK] :: contraceptive; + atomicus_A : A ; -- [HSXEK] :: atomic; + atomismus_M_N : N ; -- [HXXEK] :: atomism; + atomos_F_N : N ; -- [XXXCO] :: atom, ultimate component of matter, particle incapable of being divided; + atomus_A : A ; -- [XSXNO] :: indivisible, atomic, that cannot be cut; + atomus_F_N : N ; -- [XXXCO] :: atom, ultimate component of matter, particle incapable of being divided; + atopto_V2 : V2 ; -- [XXXBO] :: adopt, select, secure, pick out; wish/name for oneself; adopt legally; + atque_Conj : Conj ; -- [XXXAO] :: and, as well/soon as; together with; and moreover/even; and too/also/now; yet; + atqui_Conj : Conj ; -- [XXXBO] :: but, yet, notwithstanding, however, rather, well/but now; and yet, still; + atquin_Conj : Conj ; -- [XXXBO] :: but, yet, notwithstanding, however, rather, well/but now; and yet, still; + atractylis_F_N : N ; -- [XAXNO] :: plant of the genus Carthamus, spindle-thistle (used as antidote to poisons); + atramentarium_N_N : N ; -- [DXXES] :: inkstand; inkpot, inkwell; + atramentum_N_N : N ; -- [XXXCO] :: writing-ink; blacking, black pigment/ink; [~ sepiae => cuttle-fish ink]; + atratus_A : A ; -- [XXXCO] :: darkened, blackened, dingy; clothed in black, in/wearing mourning; + atriarius_M_N : N ; -- [XXXFO] :: house-servant, house-slave; porter, door-keeper (L+S); + atricapilla_F_N : N ; -- [XXXFO] :: bird of black plumage (black-cap?); + atricapillus_A : A ; -- [XXXFS] :: black-haired; + atricolor_A : A ; -- [XXXFO] :: black, dark colored; letters written in (black) ink (L+S); + atriensis_M_N : N ; -- [XXXCO] :: steward; servant in charge of household administration, major-domo; house-slave; + atriolum_N_N : N ; -- [XXXEO] :: small hall/ante-room; + atriplex_F_N : N ; -- [XAXFS] :: orach-vegetable; + atriplex_N_N : N ; -- [XAXNO] :: kitchen herb, orach; + atriplexum_N_N : N ; -- [XAXFO] :: kitchen herb, orach; + atritas_F_N : N ; -- [BAXFO] :: blackness; + atritus_A : A ; -- [XXXFO] :: blackened; + atrium_N_N : N ; -- [XXXBO] :: atrium, reception hall in a Roman house; auction room; palace (pl.), house; + atrocitas_F_N : N ; -- [XXXBO] :: fury; barbarity, cruelty; wickedness; severity, harshness; horror, dreadfulness; + atrociter_Adv : Adv ; -- [XXXCO] :: violently; bitterly, acrimoniously; cruelly, savagely; severely, harshly; + atrophia_F_N : N ; -- [DBXES] :: atrophy; wasting consumption; (pure Latin tabes); + atrophus_A : A ; -- [XBXNO] :: affected by lack of nutrition; state of atrophy; consumptive; + atropinum_N_N : N ; -- [GBXEK] :: atropine; + atrotus_A : A ; -- [XXXFO] :: invulnerable; + atrox_A : A ; -- [XXXAO] :: fierce, savage, bloody; heinous, cruel; severe; terrible, frightening, dreadful; + atrusca_F_N : N ; -- [DAXFS] :: kind of grape; + atta_M_N : N ; -- [XXXFO] :: father (term of respect used when addressing old men); + attachiamentum_N_N : N ; -- [FLXFJ] :: attachment; + attachio_V2 : V2 ; -- [FXXFM] :: attach; fasten; + attactus_M_N : N ; -- [XXXDO] :: touch , contact, action of touching; + attacus_M_N : N ; -- [DAXFS] :: kind of locust; + attagen_M_N : N ; -- [XAXDO] :: bird resembling partridge, francolin? hazel-hen/heath-cock (L+S); + attagena_F_N : N ; -- [XAXDO] :: bird resembling partridge, francolin?; + attagus_M_N : N ; -- [DAXFS] :: he-goat; + attamen_Adv : Adv ; -- [XXXCO] :: but yet, but however, nevertheless; + attamino_V2 : V2 ; -- [DXXFS] :: touch, attack, rob; dishonor, defile, contaminate; + attat_Interj : Interj ; -- [XXXCO] :: ah! oh! alas! (expression of sudden enlightenment/surprise/fear/warning); + attatae_Interj : Interj ; -- [XXXEO] :: ah! oh! alas! (expression of sudden enlightenment/surprise/fear/warning); + attate_Interj : Interj ; -- [XXXCS] :: ah! oh! alas! (expression of sudden enlightenment/surprise/fear/warning); + attattatae_Interj : Interj ; -- [XXXEO] :: ah! oh! alas! (expression of sudden enlightenment/surprise/fear/warning); + attegia_F_N : N ; -- [XXXEO] :: hut (Gallic?) (Arab? L+S); + attegro_V2 : V2 ; -- [DEXFS] :: pour out wine in sacrifices; + attelebus_M_N : N ; -- [XAXNO] :: kind of wingless locust; + attemperate_Adv : Adv ; -- [XXXFO] :: opportunely, at a convenient moment; + attemperatio_F_N : N ; -- [EXXFE] :: accommodation; adjusting, adjustment, fitting; + attempero_V2 : V2 ; -- [XXXEO] :: fit, adjust, accommodate; + attempto_V2 : V2 ; -- [XXXCO] :: attack, assail; call into question; try to seduce/use; make an attempt on, try; + attendo_V2 : V2 ; -- [XXXAO] :: turn/stretch towards; apply; attend/pay (close) attention to, listen carefully; + attentatio_F_N : N ; -- [DXXFS] :: attempting, attempt, trying, try, effort; + attentatum_N_N : N ; -- [FXXFE] :: prohibited innovation during process; attempt, try; + attente_Adv : Adv ; -- [XXXCO] :: diligently, carefully, with concentration, with close attention; + attentio_F_N : N ; -- [XXXEO] :: attention, application, attentiveness; + attento_V2 : V2 ; -- [XXXCO] :: attack, assail; call into question; try to seduce/use; make an attempt on, try; + attentus_A : A ; -- [XXXCO] :: attentive, heedful; careful, conscientious, intent; frugal, economical; + attenuate_Adv : Adv ; -- [XXXFO] :: plainly, barely, simply; + attenuatio_F_N : N ; -- [XXXEO] :: diminution, act of lessening, attenuation; plainness (of style); + attenuatus_A : A ; -- [XXXEO] :: plain (style), bare, subdued; thin, impoverished; lessened, diminished; + attenuo_V2 : V2 ; -- [XXXBO] :: thin (out); weaken, lessen, diminish, shrink, reduce in size; make plain; + attermino_V2 : V2 ; -- [XXXFS] :: set bounds to, measure, limit; + attero_V2 : V2 ; -- [XXXBO] :: rub, rub against; grind; chafe; wear out/down/away; diminish, impair; waste; + atterraneus_A : A ; -- [XXXFO] :: coming to/from the earth; earth-borne; + attertiarius_A : A ; -- [DXXFS] :: whole and a third; + attertiatus_A : A ; -- [XXXFS] :: reduced/boiled down to a third; + attestatio_F_N : N ; -- [XLXFO] :: testimony, attestation; + attestatus_A : A ; -- [XXXEO] :: confirmatory, corroboratory; + attestor_V : V ; -- [XXXEO] :: confirm, attest, bear witness to; + attexo_V2 : V2 ; -- [XXXCO] :: add, join on, link to; weave/plait on, attach by weaving; + atticisso_V : V ; -- [XXXES] :: imitate the Attic/Athenian (elegant) manner of speaking; + attigo_V2 : V2 ; -- [BXXAO] :: touch, touch/border on; reach, arrive at, achieve; mention briefly; belong to; + attiguus_A : A ; -- [XXXDO] :: contiguous, adjoining, adjacent, neighboring; + attillo_V2 : V2 ; -- [DXXFS] :: tickle, please; + attilus_M_N : N ; -- [XAXNO] :: large fish, great sturgeon/beluga; + attina_F_N : N ; -- [XAXFO] :: heap of stones as a boundary marker; (pl.) (L+S); + attineo_V : V ; -- [XXXAO] :: hold on/to/near/back/together/fast; restrain, keep (in custody), retain; delay; + attingo_V2 : V2 ; -- [XXXFO] :: wipe/smear on?; + attinguo_V2 : V2 ; -- [DXXFS] :: moisten, bedew, sprinkle with a liquid; + attitulo_V2 : V2 ; -- [DLXFS] :: name, entitle; + attolero_V2 : V2 ; -- [XXXFO] :: support, sustain, bear; + attollo_V2 : V2 ; -- [XXXAO] :: raise/lift up/towards/to a higher position; erect, build; exalt; extol, exalt; + attondeo_V2 : V2 ; -- [XAXCO] :: clip (hair close), shear; strip of money, fleece; thrash; prune, trim, crop; + attonite_Adv : Adv ; -- [XXXFS] :: frantically; bewilderedly, confoundedly; + attonitus_A : A ; -- [XXXBO] :: astonished, fascinated; lightning/thunder-struck, stupefied, dazed; inspired; + attono_V2 : V2 ; -- [XXXEO] :: strike with lightning, blast; drive crazy, distract; + attornatus_M_N : N ; -- [FLXFJ] :: attorney; one appointed to act in law/business; + attorno_V : V ; -- [FLXFJ] :: attorn; attribute; ordain, decree; turn to; + attorqueo_V2 : V2 ; -- [XXXFO] :: whirl at; hurl upwards; + attorreo_V2 : V2 ; -- [XXXFS] :: bake, roast; + attractio_F_N : N ; -- [XXXFS] :: contraction, drawing together; + attractivus_A : A ; -- [FXXEK] :: interesting; + attracto_V2 : V2 ; -- [XXXCO] :: touch; lay hands on; handle (roughly), assault (sexually), violate; deal with; + attractorius_A : A ; -- [DXXFS] :: attractive, having the power of attraction; + attractus_A : A ; -- [XXXEO] :: drawn together (brows), knit; + attractus_M_N : N ; -- [XXXFS] :: attraction, drawing to; + attraho_V2 : V2 ; -- [XXXBO] :: attract, draw/drag together/in/before/along; inhale; gather saliva; bend (bow); + attrectatio_F_N : N ; -- [XGXEO] :: touching, handling; grammatical term for words denoting many things together; + attrectatus_M_N : N ; -- [XXXFO] :: touching, handling, feeling; + attrecto_V2 : V2 ; -- [XXXCO] :: touch; lay hands on; handle (roughly), assault (sexually), violate; deal with; + attremo_V : V ; -- [XXXFO] :: tremble (at) (w/DAT); + attrepido_V : V ; -- [XXXFO] :: bestir oneself; hobble along; + attribulo_V2 : V2 ; -- [XXXFS] :: thresh, press hard; + attribuo_V2 : V2 ; -- [XXXAO] :: assign/allot/attribute/impute to; grant, pay; appoint, put under jurisdiction; + attributio_F_N : N ; -- [XXXCO] :: assignment of debt; one's destined lot; grant; attribution; predicate attribute; + attributum_N_N : N ; -- [XLXFO] :: grant of public money; predicate, attribute (gram.) (L+S); + attributus_A : A ; -- [XXXES] :: ascribed, attributed; assigned, allotted; + attritio_F_N : N ; -- [DXXES] :: rubbing/grinding against/on (something); friction, abrasion; + attritus_A : A ; -- [XXXCS] :: |rubbed (off/away), wasted; bruised; shameless, impudent, brazen; + attritus_M_N : N ; -- [XXXCO] :: action/process of rubbing/grinding; friction; chafing, abrasion, bruising; + attubernalis_M_N : N ; -- [DAXFS] :: one who lives in an adjoining hut; + attulo_V2 : V2 ; -- [AXXFS] :: bring/carry/bear to; + attumulo_V2 : V2 ; -- [XXXNO] :: heap up against; bank up (with something); + attuor_V : V ; -- [XXXFO] :: observe, look at; + atvero_Adv : Adv ; -- [FXXFE] :: however; + atypus_A : A ; -- [XXXFO] :: that does not form the letters properly in speaking; + atypus_M_N : N ; -- [XXXFO] :: one who does not form the letters properly in speaking; who stammers, stammering + au_Interj : Interj ; -- [XXXFS] :: oh! ow! oh dear! goodness gracious! (used by women to express consternation); + aucella_F_N : N ; -- [XAXES] :: little bird; + auceo_V2 : V2 ; -- [DXXFS] :: observe attentively; + auceps_M_N : N ; -- [XXXCO] :: bird-catcher, fowler; bird seller, poulterer; spy, eavesdropper; + aucilla_F_N : N ; -- [XAXES] :: little bird; + auctarium_N_N : N ; -- [XXXEO] :: something in addition to the proper measure, lagniappe; addition, augmentation; + aucthorizatio_F_N : N ; -- [FXXEM] :: authorization; + auctifer_A : A ; -- [XAXFO] :: productive, fruitful, fertile; fruit-bearing (L+S); + auctifico_V2 : V2 ; -- [DXXES] :: enlarge, increase; honor by offerings/sacrifices; + auctificus_A : A ; -- [XXXFO] :: giving/causing increase/growth; increasing, enlarging; + auctio_F_N : N ; -- [XXXBO] :: auction; public sale; property put up for sale at auction/the catalog/proceeds; + auctionale_N_N : N ; -- [XXXFO] :: catalogs/lists (pl.) of auction sales; + auctionalis_A : A ; -- [XXXFS] :: of/pertaining to an auction, auction-; + auctionarius_A : A ; -- [XXXCO] :: of/pertaining to an auction, auction-; + auctiono_V2 : V2 ; -- [XXXES] :: buy goods at an auction/public sale; buy at auction; + auctionor_V : V ; -- [XXXEO] :: put up goods to auction/public sale; hold an auction; + auctito_V2 : V2 ; -- [XXXFO] :: keep increasing/augmenting; honor by offerings (L+S); + aucto_V2 : V2 ; -- [XXXEO] :: increase/enlarge (much), grow; prosper/bless (with) (w/ABL); auctor_F_N : N ; -- [XXXAO] :: seller, vendor; originator; historian; authority; proposer, supporter; founder; - auctor_M_N : N ; - auctorabilis_A : A ; - auctoralis_A : A ; - auctoramentum_N_N : N ; - auctoratus_M_N : N ; - auctorita_F_N : N ; - auctoritas_F_N : N ; - auctoritativus_A : A ; - auctorizabilis_A : A ; - auctorizatio_F_N : N ; - auctorizo_V2 : V2 ; - auctoro_V2 : V2 ; - auctoror_V : V ; - auctrix_F_N : N ; - auctumnalis_A : A ; - auctumnasct_V0 : V ; - auctumnesct_V0 : V ; - auctumnitas_F_N : N ; - auctumno_V : V ; - auctumnum_N_N : N ; - auctumnus_A : A ; - auctumnus_M_N : N ; - auctus_A : A ; - auctus_M_N : N ; - aucupabundus_A : A ; - aucupalis_A : A ; - aucupatio_F_N : N ; - aucupatorius_A : A ; - aucupatus_M_N : N ; - aucupium_N_N : N ; - aucupo_V2 : V2 ; - aucupor_V : V ; - audacia_F_N : N ; - audaciter_Adv : Adv ; - audacter_Adv : Adv ; - audaculus_A : A ; - audax_A : A ; - audem_Conj : Conj ; - audens_A : A ; - audenter_Adv : Adv ; - audentia_F_N : N ; - audeo_V : V ; - audiens_M_N : N ; - audientia_F_N : N ; - audio_V2 : V2 ; - auditio_F_N : N ; - auditiuncula_F_N : N ; - audito_V2 : V2 ; - auditor_M_N : N ; - auditorialis_A : A ; - auditorium_N_N : N ; - auditorius_A : A ; - auditus_M_N : N ; - audivisificus_A : A ; - audo_V : V ; - aufero_V2 : V2 ; - aufugio_V2 : V2 ; - augeo_V2 : V2 ; + auctor_M_N : N ; -- [XXXAO] :: seller, vendor; originator; historian; authority; proposer, supporter; founder; + auctorabilis_A : A ; -- [FXXEM] :: authoritative; + auctoralis_A : A ; -- [FXXEM] :: authoritative; + auctoramentum_N_N : N ; -- [XXXCO] :: wages, pay, fee; reward; terms of employment (esp. gladiators), contract; + auctoratus_M_N : N ; -- [XXXFO] :: hired gladiator; + auctorita_F_N : N ; -- [EXXEN] :: authority, power; one in charge; + auctoritas_F_N : N ; -- [XXXAO] :: |authority, influence; responsibility; prestige, reputation; opinion, judgment; + auctoritativus_A : A ; -- [FXXEM] :: authoritative; + auctorizabilis_A : A ; -- [FXXEM] :: authoritative; + auctorizatio_F_N : N ; -- [FXXEM] :: authorization; + auctorizo_V2 : V2 ; -- [EXXCN] :: authorize, authenticate; approve, confirm; bind one's self; + auctoro_V2 : V2 ; -- [XXXCO] :: bind/pledge/oblige/engage oneself, hire oneself out; purchase (w/sibi), secure; + auctoror_V : V ; -- [XXXDO] :: hire out, sell; give authorization (guardian on behalf of ward); authorize; + auctrix_F_N : N ; -- [DXXDX] :: seller, vendor; originator; historian; authority; proposer, supporter; founder; + auctumnalis_A : A ; -- [XXXES] :: autumnal. of autumn, for use in autumn; + auctumnasct_V0 : V ; -- [DXXFS] :: autumn is approaching, autumn is coming on; + auctumnesct_V0 : V ; -- [DXXFS] :: autumn is approaching, autumn is coming on; + auctumnitas_F_N : N ; -- [XXXDO] :: autumn, the autumn season; autumn fruits (poet.); + auctumno_V : V ; -- [XXXNS] :: bring autumnal conditions; + auctumnum_N_N : N ; -- [XXXCO] :: autumn; autumn fruits, harvest; + auctumnus_A : A ; -- [XXXDS] :: of autumn, autumnal; + auctumnus_M_N : N ; -- [XXXCO] :: autumn; autumn fruits, harvest; + auctus_A : A ; -- [XXXCO] :: enlarged, large, abundant, ample; richer/increased in power/wealth/importance; + auctus_M_N : N ; -- [XXXBO] :: growth, increase, enlargement, act of increasing; accession; prosperity; bulk; + aucupabundus_A : A ; -- [DXXFS] :: watching, lurking for; + aucupalis_A : A ; -- [DAXFS] :: of/pertaining to bird-watching/fowling; + aucupatio_F_N : N ; -- [XAXEO] :: hunting after, searching for; bird catching, fowling; + aucupatorius_A : A ; -- [XAXEO] :: suitable for bird catching/fowling/hunting; + aucupatus_M_N : N ; -- [DAXFS] :: bird-catching, fowling; + aucupium_N_N : N ; -- [XAXCO] :: bird-catching, fowling; taking (bee swarm); game/wild fowl; sly angling for; + aucupo_V2 : V2 ; -- [XAXBO] :: catch, take (swarm of bees); hunt after, seek, be on the lookout for; + aucupor_V : V ; -- [XAXBO] :: go fowling; lie in wait/lay a trap for, keep a watch on; seek to deal with; + audacia_F_N : N ; -- [XXXBO] :: boldness, daring, courage, confidence; recklessness, effrontery, audacity; + audaciter_Adv : Adv ; -- [XXXBO] :: boldly, audaciously, confidently, proudly, fearlessly; impudently, rashly; + audacter_Adv : Adv ; -- [XXXBO] :: boldly, audaciously, confidently, proudly, fearlessly; impudently, rashly; + audaculus_A : A ; -- [XXXEO] :: bold (little/bit), courageous; audacious, impudent, impertinent; + audax_A : A ; -- [XXXAO] :: bold, daring; courageous; reckless, rash; audacious, presumptuous; desperate; + audem_Conj : Conj ; -- [XXXEO] :: but (postpositive), on the other hand/contrary; while, however; moreover, also; + audens_A : A ; -- [XXXCO] :: daring, bold, courageous; characterized by boldness/license of expression; + audenter_Adv : Adv ; -- [XXXCO] :: boldly, fearlessly; audaciously, presumptuously, rashly; + audentia_F_N : N ; -- [XXXDO] :: boldness, courage, enterprise; boldness/license of expression; + audeo_V : V ; -- [XXXAO] :: intend, be prepared; dare/have courage (to go/do), act boldly, venture, risk; + audiens_M_N : N ; -- [DEXES] :: catechumen (eccl.), convert under instruction before baptism; new initiate; + audientia_F_N : N ; -- [XXXCO] :: hearing, act of listening, attention; audience, body of listeners; + audio_V2 : V2 ; -- [XXXAO] :: hear, listen, accept, agree with; obey; harken, pay attention; be able to hear; + auditio_F_N : N ; -- [XXXCO] :: hearing, act/sense of hearing; report, hearsay, rumor; lecture, recital; + auditiuncula_F_N : N ; -- [XXXFO] :: scrap of hearsay information; brief discourse (L+S); + audito_V2 : V2 ; -- [XXXFO] :: hear frequently; + auditor_M_N : N ; -- [XXXBO] :: listener, hearer; disciple (w/GEN), pupil, student; + auditorialis_A : A ; -- [DXXES] :: of/pertaining to a school; + auditorium_N_N : N ; -- [GXXEK] :: auditorium; + auditorius_A : A ; -- [DXXES] :: relating to a hearer or hearing; + auditus_M_N : N ; -- [XXXCO] :: hearing; listening; act/sense of hearing; hearsay; + audivisificus_A : A ; -- [HXXEK] :: audiovisual; + audo_V : V ; -- [XXXAO] :: intend, be prepared; dare/have courage (to go/do), act boldly, venture, risk; + aufero_V2 : V2 ; -- [XXXAO] :: bear/carry/take/fetch/sweep/snatch away/off, remove, withdraw; steal, obtain; + aufugio_V2 : V2 ; -- [XXXCO] :: flee, flee from, shun; run/fly away, escape; disappear (things), vanish; + augeo_V2 : V2 ; -- [XXXAO] :: increase, enlarge, augment; spread; honor, promote, raise; exalt; make a lot of; 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 ; - auginos_F_N : N ; - augitis_F_N : N ; - augmen_N_N : N ; - augmentatio_F_N : N ; - augmento_V2 : V2 ; - augmentum_N_N : N ; + auger_M_N : N ; -- [BEXCS] :: augur, one who interprets behavior of birds; diviner, seer, prophet, soothsayer; + augesco_V : V ; -- [XXXBO] :: grow, increase in size/amount/number; develop; prosper; rise/be swollen (river); + augifico_V2 : V2 ; -- [XXXFO] :: increase, enlarge, make larger; + auginos_F_N : N ; -- [DAXFS] :: plant; (also called hyoscyamos); + augitis_F_N : N ; -- [XXXNO] :: precious stone; + augmen_N_N : N ; -- [XXXEO] :: addition, increase, increment; bulk, total mass, the result of increase; + augmentatio_F_N : N ; -- [EXXEE] :: increase, waxing (moon); increment; sustenance; advancement (Ecc); + augmento_V2 : V2 ; -- [DXXFS] :: increase; + augmentum_N_N : N ; -- [XXXCO] :: increase, waxing (moon); increment; sustenance; advancement (Ecc); 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 ; - auguralis_A : A ; - auguratio_F_N : N ; - augurato_Adv : Adv ; - auguratorium_N_N : N ; - auguratrix_F_N : N ; - auguratus_A : A ; - auguratus_M_N : N ; - augurialis_A : A ; - augurium_N_N : N ; - augurius_A : A ; - auguro_V : V ; - auguror_V : V ; - augustalis_A : A ; - augustatus_A : A ; - auguste_Adv : Adv ; - augusto_V2 : V2 ; - augustus_A : A ; - aula_F_N : N ; - aulaea_F_N : N ; - aulaeum_N_N : N ; - aulax_F_N : N ; - auleticos_A : A ; - auleticus_A : A ; - aulicocius_A : A ; - aulicoctus_A : A ; - aulicoquius_A : A ; - aulicus_A : A ; - aulicus_M_N : N ; - aulix_F_N : N ; - auloedus_M_N : N ; - aulon_M_N : N ; - aulopoios_M_N : N ; - aulos_M_N : N ; - aulula_F_N : N ; - aumatium_N_N : N ; - aunculus_M_N : N ; - aura_F_N : N ; - auraculum_N_N : N ; - aurantiacus_A : A ; - aurantium_N_N : N ; - aurantius_A : A ; - auraria_F_N : N ; - aurarius_A : A ; - aurarius_M_N : N ; - aurata_F_N : N ; - auratilis_A : A ; - aurator_M_N : N ; - auratura_F_N : N ; - auratus_A : A ; - aurea_F_N : N ; - aureatus_A : A ; - aureax_M_N : N ; - aureficina_F_N : N ; - aureola_F_N : N ; - aureolus_A : A ; - aureolus_M_N : N ; - auresco_V : V ; - aureus_A : A ; - aureus_M_N : N ; - auricalcinus_A : A ; - auricalcum_N_N : N ; - aurichalcinus_A : A ; - aurichalcum_N_N : N ; - auricoctor_M_N : N ; - auricolor_A : A ; - auricomans_A : A ; - auricomus_A : A ; - auricula_F_N : N ; - auricularis_A : A ; - auricularius_A : A ; - auricularius_M_N : N ; - aurifer_A : A ; - aurifex_M_N : N ; - aurificina_F_N : N ; - aurifluus_A : A ; - aurifodina_F_N : N ; - aurifrisiatus_A : A ; - aurifrisius_A : A ; - auriga_M_N : N ; - aurigalis_A : A ; - aurigans_A : A ; - aurigarius_M_N : N ; - aurigatio_F_N : N ; - aurigator_M_N : N ; - aurigena_M_N : N ; - aurigenus_A : A ; - auriger_A : A ; - aurigineus_A : A ; - auriginosus_A : A ; - aurigo_V : V ; - aurigor_V : V ; - aurilegulus_M_N : N ; - auriolus_A : A ; - auriphrygiatus_A : A ; - auriphrygius_A : A ; - auripigmentum_N_N : N ; - auris_F_N : N ; - auriscalpium_N_N : N ; - auritulus_M_N : N ; - auritus_A : A ; - auro_V2 : V2 ; - aurochalcinus_A : A ; - aurora_F_N : N ; - auroro_V : V ; - aurosus_A : A ; - aurufex_M_N : N ; - aurugineus_A : A ; - aurugino_V : V ; - auruginosus_A : A ; - aurugo_F_N : N ; - aurula_F_N : N ; - aurulentus_A : A ; - aurum_N_N : N ; - ausculatio_F_N : N ; - ausculator_M_N : N ; - ausculor_V : V ; - auscultabulum_N_N : N ; - auscultatio_F_N : N ; - auscultator_M_N : N ; - auscultatus_M_N : N ; - ausculto_V : V ; - ausculum_N_N : N ; + augur_M_N : N ; -- [XEXCO] :: augur, one who interprets behavior of birds; diviner, seer, prophet, soothsayer; + auguraculum_N_N : N ; -- [XEXEO] :: place where auguries are observed, hence the citadel of Rome; + augurale_N_N : N ; -- [XEXEO] :: general's HQ/tent in Roman camp where he took auguries; augur's staff/wand; + auguralis_A : A ; -- [XEXCO] :: of/pertaining to augurs, augural; relating to soothsaying; + auguratio_F_N : N ; -- [XEXDO] :: prediction by means of augury; + augurato_Adv : Adv ; -- [XEXEO] :: after due taking of the auguries; + auguratorium_N_N : N ; -- [XEXIO] :: place/building where auguries were observed; + auguratrix_F_N : N ; -- [DEXES] :: soothsayer/diviner (female); + auguratus_A : A ; -- [XEXEO] :: instituted after due observance of auguries; + auguratus_M_N : N ; -- [XEXCO] :: office of augur; augury; + augurialis_A : A ; -- [DEXES] :: of/pertaining to augurs, augural; relating to soothsaying; + augurium_N_N : N ; -- [XEXBO] :: augury (act/profession); divination, prediction; omen, portent/sign; foreboding; + augurius_A : A ; -- [XEXEO] :: of the augurs/augury, augural; + auguro_V : V ; -- [XXXBO] :: prophesy, predict, foretell; practice augury; make known intention to (w/INF); + auguror_V : V ; -- [XXXCO] :: conjecture, surmise, judge; + augustalis_A : A ; -- [XXXES] :: Augustan; + augustatus_A : A ; -- [DEXES] :: made venerable; consecrated; + auguste_Adv : Adv ; -- [XEXDO] :: reverently, solemnly; with dignity; majestically; sacredly; + augusto_V2 : V2 ; -- [DEXES] :: glorify; render venerable; + augustus_A : A ; -- [XEXCO] :: sacred, venerable; majestic, august, solemn; dignified; worthy of honor (Ecc); + aula_F_N : N ; -- [XXXBO] :: hall; church/temple; palace/castle; inner/royal court; courtiers; royal power; + aulaea_F_N : N ; -- [FDXFV] :: canopy/covering; theater curtain; hangings/folds (pl.), tapestries/drapery; + aulaeum_N_N : N ; -- [XDXCO] :: canopy/covering; theater curtain; hangings/folds (pl.), tapestries/drapery; + aulax_F_N : N ; -- [DAXES] :: furrow; + auleticos_A : A ; -- [XAXNO] :: used for making reed pipes/flutes; + auleticus_A : A ; -- [XAXNS] :: used for making reed pipes/flutes; + aulicocius_A : A ; -- [XXXEO] :: boiled, cooked in a pot; + aulicoctus_A : A ; -- [XXXEO] :: boiled, cooked in a pot; + aulicoquius_A : A ; -- [XXXEO] :: boiled, cooked in a pot; + aulicus_A : A ; -- [DDXFS] :: of/pertaining to the pipe/flute; + aulicus_M_N : N ; -- [XLXEO] :: courtier (of the imperial/a prince's household); + aulix_F_N : N ; -- [DAXES] :: furrow; + auloedus_M_N : N ; -- [XDXFO] :: person who sings to a reed pipe; + aulon_M_N : N ; -- [XXXNO] :: waterspout; + aulopoios_M_N : N ; -- [XXXFO] :: maker of reed pipes; + aulos_M_N : N ; -- [XAXNO] :: kind of bivalve; razorshell clam; flute-shaped scallop (L+S); + aulula_F_N : N ; -- [DXXES] :: small pipkin/pot; + aumatium_N_N : N ; -- [XDXFO] :: latrine in a theater/circus; private place in the theater (L+S); + aunculus_M_N : N ; -- [XXXCO] :: maternal uncle, mother's brother, mother's sister's husband; great uncle; + aura_F_N : N ; -- [XXXBO] :: breeze, breath (of air), wind; gleam; odor, stench; vapor; air (pl.), heaven; + auraculum_N_N : N ; -- [XXXBO] :: oracle (place/agency/mouthpiece); prophecy; oracular saying/precept/maxim; + aurantiacus_A : A ; -- [GXXEK] :: orange-colored; + aurantium_N_N : N ; -- [GAXEM] :: orange tree; + aurantius_A : A ; -- [GXXFM] :: orange-colored; tawny; + auraria_F_N : N ; -- [XXXFO] :: gold mine; worker/dearer (female) in gold (L+S); + aurarius_A : A ; -- [XXXEO] :: concerned with/used for gold; golden, gold; + aurarius_M_N : N ; -- [DTXES] :: worker in gold, goldsmith; patron (L+S); + aurata_F_N : N ; -- [XAXDO] :: kind of fish, gilthead, dorado; + auratilis_A : A ; -- [DXXFS] :: gold-colored; + aurator_M_N : N ; -- [DTXFS] :: gilder, one who gilds (covers with gold leaf) metal/wood/plaster; + auratura_F_N : N ; -- [XXXFO] :: gilding, gilt, thin coating of gold; + auratus_A : A ; -- [XXXBO] :: gilded, overlaid/adorned with gold, golden, gold mounted/embroidered/bearing; + aurea_F_N : N ; -- [XAXDO] :: bridle of a horse; + aureatus_A : A ; -- [DXXFS] :: adorned/decorated with gold; + aureax_M_N : N ; -- [XXXCO] :: charioteer, driver; groom, ostler; helmsman; the Waggoner (constellation); + aureficina_F_N : N ; -- [XTXIO] :: goldsmith's workshop; + aureola_F_N : N ; -- [EEXEE] :: halo; nimbus, aura; aureole; + aureolus_A : A ; -- [XXXCO] :: golden, made of gold, gold colored; beautiful, brilliant, excellent, splendid; + aureolus_M_N : N ; -- [XXXEO] :: gold coin, gold piece; + auresco_V : V ; -- [XXXEO] :: become golden in color; + aureus_A : A ; -- [XXXBO] :: of gold, golden; gilded; gold bearing; gleaming like gold; beautiful, splendid; + aureus_M_N : N ; -- [XLXCO] :: gold coin (equivalent to 25 silver denarii at Rome) (120 grains/0.25 oz.); + auricalcinus_A : A ; -- [EXXFW] :: made of brass, brass-; of a gold-colored metal; + auricalcum_N_N : N ; -- [EXXFW] :: brass, golden metal; yellow copper ore, "mountain copper"; brass objects (pl.); + aurichalcinus_A : A ; -- [XXXIO] :: made of brass, brass-; of a gold-colored metal; + aurichalcum_N_N : N ; -- [XXXCO] :: brass, golden metal; yellow copper ore, "mountain copper"; brass objects (pl.); + auricoctor_M_N : N ; -- [XTXFS] :: smelter/melter/refiner of gold; + auricolor_A : A ; -- [DXXFS] :: golden, of the color of gold; + auricomans_A : A ; -- [DXXES] :: golden-haired, with golden hair; flaxen-haired; with golden foliage/leaves; + auricomus_A : A ; -- [XXXEO] :: golden-haired, with golden hair; flaxen-haired; with golden foliage/leaves; + auricula_F_N : N ; -- [XBXCO] :: ear (part of body/organ of hearing); sense of hearing; + auricularis_A : A ; -- [EBXEE] :: of/for/pertaining to the ear/ears; auricular; + auricularius_A : A ; -- [XBXEO] :: of/for the ear/ears; [medicus auricularius => ear specialist]; + auricularius_M_N : N ; -- [DBXES] :: ear doctor/specialist, aurist; counselor; listener, secret advisor (Ecc); + aurifer_A : A ; -- [XXXCO] :: gold-bearing, producing/yielding gold (mine/country); bearing golden fruit; + aurifex_M_N : N ; -- [XXXCO] :: goldsmith; + aurificina_F_N : N ; -- [XTXIO] :: goldsmith's workshop; + aurifluus_A : A ; -- [XXXFS] :: flowing with gold; + aurifodina_F_N : N ; -- [XTXEO] :: gold mine; + aurifrisiatus_A : A ; -- [EXXFE] :: gold-embroidered, embroidered with gold; + aurifrisius_A : A ; -- [EXXFE] :: gold-embroidered, embroidered with gold; + auriga_M_N : N ; -- [XXXCO] :: charioteer, driver; groom, ostler; helmsman; the Waggoner (constellation); + aurigalis_A : A ; -- [DXXFS] :: of/pertaining to a charioteer/driver; + aurigans_A : A ; -- [DXXES] :: glittering with gold; + aurigarius_M_N : N ; -- [XXXFO] :: owner of a racing chariot; charioteer in the races in the circus (L+S); + aurigatio_F_N : N ; -- [XXXEO] :: chariot driving; + aurigator_M_N : N ; -- [XXXES] :: chariot racer/race driver; + aurigena_M_N : N ; -- [XYXFO] :: one born of gold, the gold-begotten (i.e., Perseus); + aurigenus_A : A ; -- [XYXFO] :: born of gold, gold-begotten (i.e., Perseus); + auriger_A : A ; -- [XXXEO] :: bearing gold (e.g., with gilded horns; bearing the Golden Fleece); + aurigineus_A : A ; -- [DBXFS] :: golden/yellow (of color); jaundiced; + auriginosus_A : A ; -- [DBXFS] :: golden/yellow (of color); jaundiced; + aurigo_V : V ; -- [XXXDO] :: drive/race a chariot; + aurigor_V : V ; -- [XXXDO] :: drive/race a chariot; + aurilegulus_M_N : N ; -- [DXXES] :: gold picker, gold collector; + auriolus_A : A ; -- [XXXCO] :: golden, made of gold, gold colored; beautiful, brilliant, excellent, splendid; + auriphrygiatus_A : A ; -- [EXXFE] :: gold-embroidered, embroidered with gold; + auriphrygius_A : A ; -- [EXXFE] :: gold-embroidered, embroidered with gold; + auripigmentum_N_N : N ; -- [XXXDO] :: yellow/trisulphide of arsenic, bright yellow dye mineral, yellow orpiment; + auris_F_N : N ; -- [XXXAO] :: ear; hearing; a discriminating sense of hearing, "ear" (for); pin on plow; + auriscalpium_N_N : N ; -- [XBXEO] :: ear-pick (medical instrument), probe; + auritulus_M_N : N ; -- [XXXFO] :: long-eared animal, ass; + auritus_A : A ; -- [XXXCO] :: with/having ears; longeared, w/large ears; hearing well, listening, attentive; + auro_V2 : V2 ; -- [XXXEO] :: gild, overlay with gold; + aurochalcinus_A : A ; -- [XXXIO] :: made of brass, brass-; of a gold-colored metal; + aurora_F_N : N ; -- [XXXBO] :: dawn, daybreak, sunrise; goddess of the dawn; Orient/East, peoples of the East; + auroro_V : V ; -- [XXXFO] :: shine like the sunrise; + aurosus_A : A ; -- [XXXNO] :: containing gold, gold-bearing; of the color of gold, like gold (L+S); + aurufex_M_N : N ; -- [XXXCO] :: goldsmith; + aurugineus_A : A ; -- [DBXFS] :: golden/yellow (of color); jaundiced; + aurugino_V : V ; -- [DBXFS] :: have jaundice, be affected with jaundice; + auruginosus_A : A ; -- [DBXFS] :: golden/yellow (of color); jaundiced; + aurugo_F_N : N ; -- [XBXEO] :: jaundice; pale/sickly look; mildew (plants) (L+S); + aurula_F_N : N ; -- [DXXES] :: gentle breeze; whiff (of); + aurulentus_A : A ; -- [DXXFS] :: of the color of gold, golden; + aurum_N_N : N ; -- [XXXAO] :: gold (metal/color), gold money, riches; + ausculatio_F_N : N ; -- [BXXEO] :: kissing; action of kissing; + ausculator_M_N : N ; -- [FXXEE] :: listener; + ausculor_V : V ; -- [BXXDX] :: kiss; exchange kisses; + auscultabulum_N_N : N ; -- [GTXEK] :: earphone, telephone receiver; + auscultatio_F_N : N ; -- [XXXEO] :: eavesdropping, secret listening; paying heed, obeying; + auscultator_M_N : N ; -- [XXXEO] :: listener; one who heeds/obeys; + auscultatus_M_N : N ; -- [XXXFO] :: act of listening/hearing; + ausculto_V : V ; -- [XXXCO] :: listen (to); overhear, listen secretly; heed, obey; + ausculum_N_N : N ; -- [BXXDX] :: kiss; mouth; lips; orifice; mouthpiece (of a pipe); auspex_F_N : N ; -- [XEXCO] :: diviner by birds, augur; soothsayer; patron, supporter; wedding functionary; - auspex_M_N : N ; - auspicabilis_A : A ; - auspicalis_A : A ; - auspicaliter_Adv : Adv ; - auspicato_Adv : Adv ; - auspicatus_A : A ; - auspicatus_M_N : N ; - auspicium_N_N : N ; - auspico_V : V ; - auspicor_V : V ; - austellus_M_N : N ; - auster_A : A ; - auster_M_N : N ; - austeralis_F_N : N ; - austere_Adv : Adv ; - austeritas_F_N : N ; - austerulus_A : A ; - austerus_A : A ; - austium_N_N : N ; - australis_A : A ; - austrifer_A : A ; - austrinalis_A : A ; - austrinum_N_N : N ; - austrinus_A : A ; - austrum_N_N : N ; - ausum_N_N : N ; - ausum_V : V ; - ausus_M_N : N ; - aut_Conj : Conj ; - autem_Conj : Conj ; - autenta_M_N : N ; - autenticus_A : A ; - autentus_M_N : N ; - authemerum_N_N : N ; - authemerus_A : A ; - authenta_M_N : N ; - authentice_Adv : Adv ; - authenticitas_F_N : N ; - authentico_V2 : V2 ; - authenticum_N_N : N ; - authenticus_A : A ; - authentus_M_N : N ; - authepsa_F_N : N ; + auspex_M_N : N ; -- [XEXCO] :: diviner by birds, augur; soothsayer; patron, supporter; wedding functionary; + auspicabilis_A : A ; -- [DXXES] :: auspicious, of favorable omen; + auspicalis_A : A ; -- [XEXNO] :: giving omens; pertaining to/suitable for divination/auguries; + auspicaliter_Adv : Adv ; -- [XEXFO] :: after taking the auspices; with the appropriate taking of auguries; + auspicato_Adv : Adv ; -- [XEXCO] :: after taking the auspices/auguries; with good omens; auspiciously; + auspicatus_A : A ; -- [XXXCO] :: consecrated/approved by auguries, hollowed; auspicious/fortunate/lucky/happy; + auspicatus_M_N : N ; -- [XEXES] :: augury, taking of auspices; + auspicium_N_N : N ; -- [XXXBO] :: divination (by birds); omen; beginning; auspices (pl.); right of doing auspices; + auspico_V : V ; -- [XXXEO] :: take auspices; seek omens; begin with auspices, make ceremonial start; portend; + auspicor_V : V ; -- [XXXCO] :: take auspices; seek omens; begin with auspices, make ceremonial start; portend; + austellus_M_N : N ; -- [XXXFO] :: south (diminutive/contemptuous); southern parts (pl.); gentle south wind (L+S); + auster_A : A ; -- [XXXDS] :: austere, plain; bitter, sour; dry (wine); sharp, pungent; dark, somber, morose; + auster_M_N : N ; -- [XXXBO] :: south; south wind; southern parts (pl.); + austeralis_F_N : N ; -- [DAXFS] :: plant (usually called sisymbrium); + austere_Adv : Adv ; -- [XXXFS] :: rigidly, austerely, severely; + austeritas_F_N : N ; -- [XXXCO] :: harshness, sourness, bitterness; gloominess, somberness; severity, rigor; + austerulus_A : A ; -- [XXXFO] :: somewhat dry/astringent/harsh; + austerus_A : A ; -- [XXXBO] :: austere, plain; bitter, sour; dry (wine); sharp, pungent; dark, somber, morose; + austium_N_N : N ; -- [XXXCO] :: door (w/frame); front door; starting gate; entrance to underworld; river mouth; + australis_A : A ; -- [XXXCO] :: southern; of/brought by the south wind; of southern hemisphere (constellation); + austrifer_A : A ; -- [XXXFO] :: bringing the south wind; + austrinalis_A : A ; -- [XXXFO] :: southern; antarctic; + austrinum_N_N : N ; -- [XSXNO] :: southern regions (pl.); + austrinus_A : A ; -- [XXXDO] :: southern; of/brought by the south wind; of southern hemisphere (constellation); + austrum_N_N : N ; -- [XXXCO] :: purple dye; purple color; material dyed purple (garment, coverlet); + ausum_N_N : N ; -- [XXXCO] :: daring/bold deed, exploit, venture; attempt; presumptuous act, outrage; crime; + ausum_V : V ; -- [XXXAO] :: intend, be prepared; dare (to go/do), act boldly, risk; (SUB for audeo-kludge); + ausus_M_N : N ; -- [XXXCO] :: daring, initiative; ventures (pl.); + aut_Conj : Conj ; -- [XXXAO] :: or, or rather/else; either...or (aut...aut) (emphasizing one); + autem_Conj : Conj ; -- [XXXAO] :: but (postpositive), on the other hand/contrary; while, however; moreover, also; + autenta_M_N : N ; -- [FLXES] :: chief prince, head; + autenticus_A : A ; -- [FDXEO] :: original (document), genuine, authentic; that comes from the author; + autentus_M_N : N ; -- [FLXES] :: chief prince, head; + authemerum_N_N : N ; -- [XBXEO] :: kind of eye salve (presumably giving same day relief); + authemerus_A : A ; -- [XXXEO] :: acting/operating on the same day; providing/with same day service; + authenta_M_N : N ; -- [DLXFS] :: chief prince, head; + authentice_Adv : Adv ; -- [FXXFE] :: authentically; + authenticitas_F_N : N ; -- [EXXFE] :: genuineness, authenticity; + authentico_V2 : V2 ; -- [EXXFE] :: verify, authenticate; + authenticum_N_N : N ; -- [XXXFO] :: original/authentic document, the original; document certifying relic genuine; + authenticus_A : A ; -- [XXXEO] :: original (document), genuine, authentic; that comes from the author; + authentus_M_N : N ; -- [FLXES] :: chief prince, head; + authepsa_F_N : N ; -- [XXXFO] :: cooker with its own heating compartment; 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 ; - authorita_F_N : N ; - authoritas_F_N : N ; - authorizo_V2 : V2 ; - authoro_V2 : V2 ; - authoror_V : V ; - authrix_F_N : N ; - autobiographia_F_N : N ; - autobirota_F_N : N ; - autobirotarius_M_N : N ; - autocarrum_N_N : N ; - autochthon_M_N : N ; - autochthonus_A : A ; - autocineticus_A : A ; - autocinetista_M_N : N ; - autocinetum_N_N : N ; - autocratus_A : A ; - autocthon_M_N : N ; - autocthonus_A : A ; - autographum_N_N : N ; - autographus_A : A ; - automatarium_N_N : N ; - automatarius_A : A ; - automatarius_M_N : N ; - automaticus_A : A ; - automatio_F_N : N ; - automatismus_M_N : N ; - automatizatio_F_N : N ; - automatizo_V : V ; - automaton_N_N : N ; - automatopoetus_A : A ; - automatum_N_N : N ; - automatus_A : A ; - autonomatia_F_N : N ; - autonomia_F_N : N ; - autonomus_A : A ; - autopsia_F_N : N ; - autopyros_A : A ; - autopyros_M_N : N ; - autopyrus_A : A ; - autopyrus_M_N : N ; - autoraeda_F_N : N ; - autoraedarius_M_N : N ; - autumnal_A : A ; - autumnalis_A : A ; - autumnasct_V0 : V ; - autumnesct_V0 : V ; - autumnitas_F_N : N ; - autumno_V : V ; - autumnus_A : A ; - autumnus_M_N : N ; - autumo_V2 : V2 ; - auturgus_M_N : N ; - autus_M_N : N ; - auxiliabundus_A : A ; - auxiliaris_A : A ; - auxiliaris_M_N : N ; - auxiliarius_M_N : N ; - auxiliarus_A : A ; - auxiliatio_F_N : N ; - auxiliator_M_N : N ; - auxiliatrix_F_N : N ; - auxiliatus_M_N : N ; - auxilio_V2 : V2 ; - auxilior_V : V ; - auxilium_N_N : N ; - auxilla_F_N : N ; - ava_F_N : N ; - avarca_F_N : N ; - avare_Adv : Adv ; - avariter_Adv : Adv ; - avaritia_F_N : N ; - avarities_F_N : N ; - avarus_A : A ; - avarus_M_N : N ; - ave_Interj : Interj ; - aveho_V2 : V2 ; - avellanus_A : A ; - avello_V2 : V2 ; - avena_F_N : N ; - avenaceus_A : A ; - avenarius_A : A ; - avens_A : A ; - aventer_Adv : Adv ; - aveo_V : V ; - averium_N_N : N ; - avernus_M_N : N ; - averro_V2 : V2 ; - averrunco_V2 : V2 ; - aversabilis_A : A ; - aversatio_F_N : N ; - aversator_M_N : N ; - aversatrix_F_N : N ; - aversim_Adv : Adv ; - aversio_F_N : N ; - aversor_M_N : N ; - aversor_V : V ; - aversum_N_N : N ; - aversus_A : A ; - averta_F_N : N ; - avertarius_M_N : N ; - averto_V2 : V2 ; - avia_F_N : N ; - aviarium_N_N : N ; - aviarius_A : A ; - aviarius_M_N : N ; - avicella_F_N : N ; - avicula_F_N : N ; - avicularius_M_N : N ; - avide_Adv : Adv ; - aviditas_F_N : N ; - aviditer_Adv : Adv ; - avidus_A : A ; - avipes_A : A ; - avis_F_N : N ; - avite_Adv : Adv ; - avitium_N_N : N ; - avitus_A : A ; - avium_N_N : N ; - avius_A : A ; - avocamentum_N_N : N ; - avocatio_F_N : N ; - avocator_M_N : N ; - avocatrix_F_N : N ; - avoco_V2 : V2 ; - avolo_V : V ; - avolsio_F_N : N ; - avolsor_M_N : N ; - avonculus_M_N : N ; - avorro_V2 : V2 ; - avorsor_V : V ; - avorsus_A : A ; - avorto_V2 : V2 ; - avos_M_N : N ; - avulsio_F_N : N ; - avulsor_M_N : N ; - avunculus_M_N : N ; - avus_M_N : N ; - axamentum_N_N : N ; - axedo_M_N : N ; - axicia_F_N : N ; - axiculus_M_N : N ; - axilla_F_N : N ; - axinomantia_F_N : N ; - axio_F_N : N ; - axioma_N_N : N ; - axis_M_N : N ; - axitia_F_N : N ; - axitiosus_A : A ; + author_M_N : N ; -- [DXXCS] :: seller, vendor; originator; historian; authority; proposer, supporter; founder; + authoramentum_N_N : N ; -- [DXXES] :: wages, pay, fee; reward; terms of employment (esp. gladiators), contract; + authoratus_M_N : N ; -- [DXXFS] :: hired gladiator; + authorita_F_N : N ; -- [EXXFS] :: authority, power; one in charge; + authoritas_F_N : N ; -- [DXXCS] :: |authority, influence; responsibility; prestige, reputation; opinion, judgment; + authorizo_V2 : V2 ; -- [EXXES] :: authorize, authenticate; approve, confirm; bind one's self; + authoro_V2 : V2 ; -- [DXXES] :: bind/pledge/oblige/engage oneself, hire oneself out; purchase (w/sibi), secure; + authoror_V : V ; -- [DXXFS] :: hire out, sell; give authorization (guardian on behalf of ward); authorize; + authrix_F_N : N ; -- [DXXES] :: seller, vendor; originator; historian; authority; proposer, supporter; founder; + autobiographia_F_N : N ; -- [EXXEE] :: autobiography; + autobirota_F_N : N ; -- [GTXEK] :: motorcycle; + autobirotarius_M_N : N ; -- [GXXEK] :: motorcyclist; + autocarrum_N_N : N ; -- [GTXEK] :: truck; + autochthon_M_N : N ; -- [XXXEE] :: original inhabitant, native; + autochthonus_A : A ; -- [XXXFE] :: indigenous, native; innate; + autocineticus_A : A ; -- [GXXEK] :: car-; of a car; + autocinetista_M_N : N ; -- [GXXEK] :: driver; + autocinetum_N_N : N ; -- [GTXEK] :: car; + autocratus_A : A ; -- [XXXIO] :: self-blended (wine) (i.e., of medium sweetness); + autocthon_M_N : N ; -- [XXXEO] :: original inhabitant, native; + autocthonus_A : A ; -- [XXXFO] :: indigenous, native; innate; + autographum_N_N : N ; -- [DXXFS] :: holograph, document written in one's own hand; + autographus_A : A ; -- [XXXEO] :: written with one's own hand, holograph; + automatarium_N_N : N ; -- [XXXFO] :: automata (pl.), automatic mechanism; + automatarius_A : A ; -- [XTXIO] :: automatic, of automata/automatic mechanisms; + automatarius_M_N : N ; -- [XTXFS] :: maker of automata/automatic mechanisms; + automaticus_A : A ; -- [GXXEK] :: automatic; + automatio_F_N : N ; -- [HTXFE] :: automation; + automatismus_M_N : N ; -- [GXXEK] :: automatic device; + automatizatio_F_N : N ; -- [GXXEK] :: automation; + automatizo_V : V ; -- [GXXEK] :: automate; + automaton_N_N : N ; -- [XTXEO] :: automaton, automatic/self-moving mechanism; automatic/puppet-like movements; + automatopoetus_A : A ; -- [XTXFO] :: automatic; + automatum_N_N : N ; -- [GXXEK] :: |ATM, automatic teller; + automatus_A : A ; -- [XTXES] :: voluntary, spontaneous, self-moving; + autonomatia_F_N : N ; -- [HXXFE] :: autonomy; + autonomia_F_N : N ; -- [FXXEM] :: autonomy; + autonomus_A : A ; -- [FXXEM] :: autonomous; + autopsia_F_N : N ; -- [GBXEK] :: autopsy; + autopyros_A : A ; -- [XAXEO] :: made of unbolted/unsifted wheat meal, whole-wheat; + autopyros_M_N : N ; -- [XAXEO] :: coarse bread made of unbolted/unsifted wheaten meal, whole-wheat bread; + autopyrus_A : A ; -- [XAXEO] :: made of unbolted/unsifted wheat meal, whole-wheat; + autopyrus_M_N : N ; -- [XAXEO] :: coarse bread made of unbolted/unsifted wheaten meal, whole-wheat bread; + autoraeda_F_N : N ; -- [GTXEK] :: car; + autoraedarius_M_N : N ; -- [GXXEK] :: driver; + autumnal_A : A ; -- [BXXDX] :: autumnal, of autumn, for use in autumn; + autumnalis_A : A ; -- [XXXCO] :: autumnal, of autumn, for use in autumn; + autumnasct_V0 : V ; -- [DXXFS] :: autumn is approaching, autumn is coming on; + autumnesct_V0 : V ; -- [DXXFS] :: autumn is approaching, autumn is coming on; + autumnitas_F_N : N ; -- [XXXDO] :: autumn, the autumn season; autumn fruits (poet.); + autumno_V : V ; -- [XXXNO] :: bring autumnal conditions; + autumnus_A : A ; -- [XXXDO] :: of autumn, autumnal; + autumnus_M_N : N ; -- [XXXAO] :: autumn; autumn fruits, harvest; + autumo_V2 : V2 ; -- [XXXCO] :: say, assert; say yes; affirm; mention, speak of; name, call; reckon, judge; + auturgus_M_N : N ; -- [GXXEK] :: handyman; + autus_M_N : N ; -- [FXXEN] :: increase, enlargement; growth; + auxiliabundus_A : A ; -- [XXXFO] :: bringing aid, helping; + auxiliaris_A : A ; -- [XXXCO] :: assisting, succoring, help-bringing; auxiliary (troops); + auxiliaris_M_N : N ; -- [XWXDO] :: auxiliary troops (pl.); allies; + auxiliarius_M_N : N ; -- [XWXDO] :: auxiliary troops (pl.); assistants; allies; + auxiliarus_A : A ; -- [XXXES] :: assisting, succoring, help-bringing; auxiliary (troops); + auxiliatio_F_N : N ; -- [XXXFS] :: help, aid; + auxiliator_M_N : N ; -- [XXXDO] :: helper, one who gives aid; aide, assistant (L+S); + auxiliatrix_F_N : N ; -- [DXXFS] :: helper (female), assistant, aide; + auxiliatus_M_N : N ; -- [XXXFO] :: help, aid; + auxilio_V2 : V2 ; -- [XXXES] :: help (w/DAT); give help/aid; assist; be helpful, be of use/avail; remedy, heal; + auxilior_V : V ; -- [XXXCO] :: help (w/DAT); give help/aid; assist; be helpful, be of use/avail; remedy, heal; + auxilium_N_N : N ; -- [XXXAO] :: help, assistance; remedy/antidote; supporting resource/force; auxiliaries (pl.); + auxilla_F_N : N ; -- [XXXFO] :: small pot for cooking/preserving); + ava_F_N : N ; -- [DXXCS] :: grandmother; rooted prejudice, old wives tale; + avarca_F_N : N ; -- [EXFFN] :: leather sandal worn by Pyrenean peasants; + avare_Adv : Adv ; -- [XXXCO] :: greedily, avariciously, rapaciously; thriftily, economically, stingily, miserly; + avariter_Adv : Adv ; -- [XXXEO] :: greedily, avariciously, rapaciously; thriftily, economically, stingily, miserly; + avaritia_F_N : N ; -- [XXXBO] :: greed, avarice; rapacity; miserliness, stinginess, meanness; + avarities_F_N : N ; -- [DXXFS] :: greed, avarice; rapacity; miserliness, stinginess, meanness; + avarus_A : A ; -- [XXXBO] :: avaricious, greedy; stingy, miserly, mean; covetous, hungry for; + avarus_M_N : N ; -- [XXXBO] :: miser; stingy/mean/greedy person; + ave_Interj : Interj ; -- [XXXCO] :: hail!, formal expression of greetings; + aveho_V2 : V2 ; -- [XXXCO] :: carry away, carry; (passive) ride away/off, sail away, go away, depart; + avellanus_A : A ; -- [XXXFS] :: Abellian; + avello_V2 : V2 ; -- [XXXBO] :: tear/pluck/wrench away/out/off; separate by force, part; take away, wrest; + avena_F_N : N ; -- [XAXAO] :: reed, straw; shepherd's pipe, pan pipe; oats, wild oats, other allied grasses; + avenaceus_A : A ; -- [XAXNO] :: made from oats, oaten, oat-; + avenarius_A : A ; -- [XAXNO] :: of/connected with oats, oat-; + avens_A : A ; -- [XXXES] :: willing, cheerful, glad, with pleasure; eager, anxious; covetous; + aventer_Adv : Adv ; -- [DXXES] :: eagerly, earnestly, anxiously; + aveo_V : V ; -- [XXXCL] :: |be eager or anxious; desire, wish for, long after, crave; + averium_N_N : N ; -- [FAXFJ] :: beast; + avernus_M_N : N ; -- [EEXEE] :: hell; the infernal regions; the lower world; + averro_V2 : V2 ; -- [XXXEO] :: sweep/brush away, take away, clear away (table); + averrunco_V2 : V2 ; -- [XXXCO] :: avert (something bad), ward off; + aversabilis_A : A ; -- [XXXFO] :: repulsive, loathsome, abominable; (from which one would turn away); + aversatio_F_N : N ; -- [XXXDO] :: aversion, feeling of dislike (for); + aversator_M_N : N ; -- [DXXFS] :: apostate, he who abominates/turns away from; rebel, he who rebels/oppresses; + aversatrix_F_N : N ; -- [DXXFS] :: apostate, she who abominates/turns away from; rebel, she who rebels/oppresses; + aversim_Adv : Adv ; -- [DXXFS] :: sidewise, sideways; avertedly; + aversio_F_N : N ; -- [XXXDO] :: loathing, abhorrence; distraction (of attention/from the point); (for) lump sum; + aversor_M_N : N ; -- [XXXFO] :: embezzler; pilferer, thief; + aversor_V : V ; -- [XXXBO] :: turn oneself away in disgust/horror, recoil; avoid, shun; refuse, reject; + aversum_N_N : N ; -- [XXXES] :: back, back/hinder part; other side, obverse; + aversus_A : A ; -- [XXXAO] :: turned/facing away, w/back turned; behind, in rear; distant; averse; hostile; + averta_F_N : N ; -- [DXXES] :: saddle-bags, traveling bag, luggage for horseback, portmanteau; (mantica); + avertarius_M_N : N ; -- [DXXFS] :: horse that bears the averta (saddle/traveling bag), pack-horse, sumpter; + averto_V2 : V2 ; -- [XXXAO] :: turn away from/aside, divert, rout; disturb; withdraw; steal, misappropriate; + avia_F_N : N ; -- [XXXFO] :: unidentified plant; groundsel (L+S); (also called senecio, erigeron); + aviarium_N_N : N ; -- [XAXDO] :: aviary, enclosure for birds; haunt of wild birds (poet.); + aviarius_A : A ; -- [XAXFO] :: used for birds, bird-; + aviarius_M_N : N ; -- [XAXFO] :: bird keeper, one who has charge of poultry; + avicella_F_N : N ; -- [XAXES] :: little bird; + avicula_F_N : N ; -- [XAXDO] :: small bird; + avicularius_M_N : N ; -- [XAXFS] :: bird keeper, one who has charge of poultry; + avide_Adv : Adv ; -- [XXXCO] :: greedily, hungrily, avariciously; eagerly, impatiently; + aviditas_F_N : N ; -- [XXXBO] :: greed, covetousness; keen desire, lust/passion; appetite (food/drink), gluttony; + aviditer_Adv : Adv ; -- [XXXFO] :: greedily; eagerly; + avidus_A : A ; -- [XXXAO] :: greedy, eager, ardent, desirous of; avaricious, insatiable; lustful, passionate; + avipes_A : A ; -- [XXXFO] :: bird-footed; fleet-footed; + avis_F_N : N ; -- [XAXBO] :: bird; sign, omen, portent; + avite_Adv : Adv ; -- [DXXFS] :: from ancient times, of old; + avitium_N_N : N ; -- [XAXFO] :: birds collectively, the bird family; + avitus_A : A ; -- [XXXCO] :: ancestral, of one's ancestors, family; of/belonging to a grandfather; + avium_N_N : N ; -- [XXXCO] :: pathless region (pl.), wild waste, wilderness, desert; lonely/solitary places; + avius_A : A ; -- [XXXBO] :: out of the way, unfrequented, remote; pathless, trackless, untrodden; straying; + avocamentum_N_N : N ; -- [XXXDO] :: distraction, diversion, recreation, relaxation; + avocatio_F_N : N ; -- [XXXEO] :: process of diverting the attention; distraction, diversion; + avocator_M_N : N ; -- [DEXES] :: one who calls off/away, one who diverts; + avocatrix_F_N : N ; -- [DEXES] :: she who calls off/away, she who diverts; + avoco_V2 : V2 ; -- [XXXBO] :: call/summon away; dissuade, divert, distract; remove, take away (property); + avolo_V : V ; -- [XXXCO] :: fly/rush away/off; hasten away, flee, vanish; fly away (missile); + avolsio_F_N : N ; -- [XAXNO] :: process of tearing away/pulling off; + avolsor_M_N : N ; -- [XAXNS] :: one who plucks/tears off/away; + avonculus_M_N : N ; -- [XXXCO] :: maternal uncle, mother's brother, mother's sister's husband; great uncle; + avorro_V2 : V2 ; -- [XXXEO] :: sweep/brush away, take away, clear away (table); + avorsor_V : V ; -- [XXXBO] :: turn oneself away in disgust/horror, recoil; avoid, shun; refuse, reject; + avorsus_A : A ; -- [XXXAO] :: turned/facing away, w/back turned; behind, in rear; distant; averse; hostile; + avorto_V2 : V2 ; -- [BXXDX] :: turn away from/aside, divert, rout; disturb; withdraw; steal, misappropriate; + avos_M_N : N ; -- [XXXFS] :: grandfather; forefather, ancestor; + avulsio_F_N : N ; -- [XAXNO] :: process of tearing away/pulling off; + avulsor_M_N : N ; -- [XAXNO] :: one who plucks/tears off/away; + avunculus_M_N : N ; -- [XXXCO] :: maternal uncle, mother's brother, mother's sister's husband; great uncle; + avus_M_N : N ; -- [XXXBO] :: grandfather; forefather, ancestor; + axamentum_N_N : N ; -- [XEXFS] :: religious hymns (pl.) in Saturnian measure annually sung by the Salii; + axedo_M_N : N ; -- [DXXFS] :: board, plank; + axicia_F_N : N ; -- [XXXFS] :: pair of shears; + axiculus_M_N : N ; -- [XXXEO] :: small axle; small plank, slat; small beam/pole, pin (L+S); + axilla_F_N : N ; -- [XBXEE] :: side; armpit; + axinomantia_F_N : N ; -- [XEXNO] :: divination by means of axes; + axio_F_N : N ; -- [XAXNO] :: little horned owl; + axioma_N_N : N ; -- [XSXFO] :: axiom, fundamental preposition; principle (L+S); + axis_M_N : N ; -- [XXXCO] :: plank, board; + axitia_F_N : N ; -- [XXXFO] :: unidentified toilet article; + axitiosus_A : A ; -- [XXXFO] :: extravagant in use of axitia (unidentified toilet article); 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 ; - azimuthum_N_N : N ; - azonus_M_N : N ; - azura_F_N : N ; - azureus_A : A ; - azurium_N_N : N ; - azurum_N_N : N ; - azymita_M_N : N ; - azymum_N_N : N ; - azymus_A : A ; - babae_Interj : Interj ; - babaecalus_M_N : N ; - babbius_A : A ; - babulus_M_N : N ; - baburrus_A : A ; - baca_F_N : N ; - bacalarius_M_N : N ; - bacalia_F_N : N ; - bacalis_A : A ; - bacalusia_F_N : N ; - bacar_N_N : N ; - bacatus_A : A ; - bacca_F_N : N ; - baccalarius_M_N : N ; - baccalaureatus_M_N : N ; - baccalaureus_M_N : N ; - baccalia_F_N : N ; - baccalis_A : A ; - baccar_N_N : N ; - baccaris_F_N : N ; - bacchabundus_A : A ; - bacchans_F_N : N ; - bacchar_N_N : N ; - baccharis_F_N : N ; - bacchatim_Adv : Adv ; - bacchatio_F_N : N ; - bacchia_F_N : N ; - bacchiacus_A : A ; - bacchius_M_N : N ; - bacchor_V : V ; - bacchus_M_N : N ; - bacciballum_N_N : N ; - baccifer_A : A ; - baccillum_N_N : N ; - baccina_F_N : N ; - baccor_V : V ; - baceolus_A : A ; - bacifer_A : A ; - bacile_N_N : N ; - bacilis_A : A ; - bacillum_N_N : N ; - bacillus_M_N : N ; - bacrio_M_N : N ; - bacterialis_A : A ; - bactericidus_A : A ; - bacteriologus_M_N : N ; - bacterium_N_N : N ; - bactroperita_M_N : N ; - bacula_F_N : N ; - baculum_N_N : N ; - baculus_M_N : N ; - badisso_V : V ; - baditis_F_N : N ; - badius_A : A ; - badizo_V : V ; - bae_F_N : N ; - baeticatus_A : A ; - baeto_V : V ; - baetulus_M_N : N ; - baia_F_N : N ; - baijulo_V2 : V2 ; - baijulus_M_N : N ; - baillium_N_N : N ; - bajolus_M_N : N ; - bajulatio_F_N : N ; - bajulator_M_N : N ; - bajulatorius_A : A ; - bajulo_V2 : V2 ; - bajulus_M_N : N ; - balaena_F_N : N ; - balaenaceus_A : A ; - balanatus_A : A ; - balaninus_A : A ; - balanites_M_N : N ; - balanitis_F_N : N ; - balans_A : A ; - balans_M_N : N ; - balantus_A : A ; - balanus_F_N : N ; - balatro_M_N : N ; - balatus_M_N : N ; - balaustium_N_N : N ; - balbe_Adv : Adv ; - balbus_A : A ; - balbuties_F_N : N ; - balbutio_V : V ; - balbuttio_V : V ; - baldachinum_N_N : N ; - baldachinus_M_N : N ; - balena_F_N : N ; - balenaceus_A : A ; - balinea_F_N : N ; - balineare_N_N : N ; - balinearis_A : A ; - balinearium_N_N : N ; - balinearius_A : A ; - balineaticum_N_N : N ; - balineator_M_N : N ; - balineatorius_A : A ; - balineatrix_F_N : N ; - balineolum_N_N : N ; - balineum_N_N : N ; - baliolus_A : A ; - balis_F_N : N ; - baliscus_A : A ; - baliscus_M_N : N ; - balista_F_N : N ; - balistarium_N_N : N ; - balistarius_M_N : N ; - balistium_N_N : N ; - balito_V : V ; - ballaena_F_N : N ; - ballaenaceus_A : A ; - ballatio_F_N : N ; - ballator_M_N : N ; - ballematicus_A : A ; - ballena_F_N : N ; - ballista_F_N : N ; - ballistarium_N_N : N ; - ballistarius_M_N : N ; - ballistium_N_N : N ; - ballium_N_N : N ; - ballivus_M_N : N ; - ballo_V : V ; - ballote_F_N : N ; - balluca_F_N : N ; - ballux_F_N : N ; - balnea_F_N : N ; - balneare_N_N : N ; - balnearis_A : A ; - balnearium_N_N : N ; - balnearius_A : A ; - balneaticum_N_N : N ; - balneator_M_N : N ; - balneatorius_A : A ; - balneatrix_F_N : N ; - balneolum_N_N : N ; - balneum_N_N : N ; - balo_V : V ; - balsameus_A : A ; - balsaminus_A : A ; - balsamum_N_N : N ; - baltearius_M_N : N ; - balteolus_M_N : N ; - balteum_N_N : N ; - balteus_M_N : N ; - baluca_F_N : N ; - balux_F_N : N ; - bambusa_F_N : N ; - banana_F_N : N ; - bananicus_A : A ; - banca_F_N : N ; - bancale_N_N : N ; - bancarius_M_N : N ; - banchus_M_N : N ; - bancus_M_N : N ; - bannita_F_N : N ; - bannium_N_N : N ; - bannum_N_N : N ; - bannus_M_N : N ; - bapheum_N_N : N ; - bapheus_M_N : N ; - baphium_N_N : N ; - baptes_M_N : N ; - baptisma_N_N : N ; - baptismalis_A : A ; - baptismum_N_N : N ; - baptismus_M_N : N ; - baptista_M_N : N ; - baptisterium_N_N : N ; - baptizatio_F_N : N ; - baptizator_M_N : N ; - baptizo_V2 : V2 ; - barathrum_N_N : N ; - baratrum_N_N : N ; - barba_F_N : N ; - barbara_F_N : N ; - barbare_Adv : Adv ; - barbaria_F_N : N ; - barbaricarius_M_N : N ; - barbarice_Adv : Adv ; - barbaricum_Adv : Adv ; - barbaricum_N_N : N ; - barbaricus_A : A ; - barbaries_F_N : N ; - barbarismus_M_N : N ; + axon_2_N : N ; -- [XWXEO] :: axis of a sundial; axis/roller of a ballista; line on a sundial (L+S); + axulus_M_N : N ; -- [XXXFO] :: small plank/board; + axungia_F_N : N ; -- [XXXEO] :: axle grease (hog/animal fat) (also used as medicament); + azanius_A : A ; -- [XAXNO] :: kind of pine cone; pine cones which open while yet on the tree (L+S); + azimuthum_N_N : N ; -- [GSXEK] :: azimuth; + azonus_M_N : N ; -- [XEXFS] :: gods (pl.) who have no definite place in heaven; + azura_F_N : N ; -- [FXXEM] :: azure; blue; + azureus_A : A ; -- [FXXCM] :: azure; blue; of lapis lazuli; + azurium_N_N : N ; -- [FXXEM] :: azure; blue; + azurum_N_N : N ; -- [FXXEM] :: azure; blue; + azymita_M_N : N ; -- [EEXFE] :: one who used unleavened bread for Eucharist; + azymum_N_N : N ; -- [DEXES] :: unleavened bread (pl.); + azymus_A : A ; -- [XEXFO] :: unleavened; pure, morally uncorrupted (L+S); + babae_Interj : Interj ; -- [CXXEO] :: wow!; exclamation of surprise or amazement; + babaecalus_M_N : N ; -- [CXXFO] :: rich man (slang); + babbius_A : A ; -- [XAXNO] :: designation of a large variety of olive; + babulus_M_N : N ; -- [DXXES] :: babbler, fool; + baburrus_A : A ; -- [DXXES] :: foolish, silly; + baca_F_N : N ; -- [XAXCO] :: berry, fruit of tree/shrub; olive; pearl; piece/bead of coral; + bacalarius_M_N : N ; -- [FXXEE] :: baccalaureate, bachelor's (degree); lowest academic degree/step; bachelor; + bacalia_F_N : N ; -- [XAXNO] :: berry-bearer; female laurel regarded as a variety; + bacalis_A : A ; -- [XAXNO] :: berry-bearing (designation of the female laurel); + bacalusia_F_N : N ; -- [XXXFO] :: stupid guesses? (pl.); kind of sweetmeat? (L+S); + bacar_N_N : N ; -- [XXXFO] :: vessel with a long handle (like bacrio); wine glass (L+S); + bacatus_A : A ; -- [XXXEO] :: set with pearls; + bacca_F_N : N ; -- [XAXES] :: berry, fruit of tree/shrub; olive; pearl; piece/bead of coral; + baccalarius_M_N : N ; -- [GXXEK] :: bachelor; + baccalaureatus_M_N : N ; -- [GXXEK] :: final exam; + baccalaureus_M_N : N ; -- [GXXEK] :: bachelor; + baccalia_F_N : N ; -- [XAXNS] :: berry-bearer; female laurel regarded as a variety; + baccalis_A : A ; -- [XAXNS] :: berry-bearing (designation of the female laurel); + baccar_N_N : N ; -- [XAXEO] :: unidentified plant (cyclamen?, sowbread); another plant; w/fragrant root w/oil; + baccaris_F_N : N ; -- [XAXNO] :: unidentified plant (cyclamen?, sowbread); another plant; w/fragrant root w/oil; + bacchabundus_A : A ; -- [XEXEO] :: reveling in the manner of Bacchantes, raving; + bacchans_F_N : N ; -- [XXXCO] :: votaries (pl.) of Bacchus, Bacchantes; + bacchar_N_N : N ; -- [XAXNS] :: unidentified plant (cyclamen?, sowbread); another plant; w/fragrant root w/oil; + baccharis_F_N : N ; -- [XAXNS] :: unidentified plant (cyclamen?, sowbread); another plant; w/fragrant root w/oil; + bacchatim_Adv : Adv ; -- [XXXFO] :: in the manner of Bacchantes, riotously, wildly; + bacchatio_F_N : N ; -- [XEXEO] :: celebration of rites of Bacchus; orgy, debauch; reveling Bacchanalian fashion; + bacchia_F_N : N ; -- [DXXFS] :: kind of drinking goblet/bowl; + bacchiacus_A : A ; -- [XPXFO] :: name for the choriambic meter; + bacchius_M_N : N ; -- [XPXEO] :: metrical foot of three syllables, either long-long-short or short-long-long; + bacchor_V : V ; -- [XXXCO] :: celebrate rites of Bacchus; revel/rave/riot; run wild; be frenzied/raving mad; + bacchus_M_N : N ; -- [XAXNO] :: kind of sea-fish (myxon L+S); + bacciballum_N_N : N ; -- [XXXFO] :: piece; woman (slang), bit of stuff/fluff; + baccifer_A : A ; -- [XXXFS] :: berry-bearing; + baccillum_N_N : N ; -- [XXXFO] :: stick (small), walking stick, staff; shaft/handle (weapon/tool); lictor's staff; + baccina_F_N : N ; -- [DAXFS] :: plant; (also called apollinaris); + baccor_V : V ; -- [EXXEW] :: run riot/wild/crazy, dash in a frenzy; be frenzied; + baceolus_A : A ; -- [XXXFO] :: stupid, slow-witted, unintelligent, inept; foolish, silly; (used by Augustus); + bacifer_A : A ; -- [XXXDO] :: berry-bearing; + bacile_N_N : N ; -- [FXXFE] :: basin; + bacilis_A : A ; -- [FXXFE] :: low, base; + bacillum_N_N : N ; -- [XXXCO] :: stick (small), walking stick, staff; shaft/handle (weapon/tool); lictor's staff; + bacillus_M_N : N ; -- [DXXFS] :: stick (small), walking stick, staff; shaft/handle (weapon/tool); lictor's staff; + bacrio_M_N : N ; -- [XXXFO] :: vessel with long handle, ladle; + bacterialis_A : A ; -- [GSXEK] :: bacterial; + bactericidus_A : A ; -- [GSXEK] :: bactericidal; + bacteriologus_M_N : N ; -- [GSXEK] :: bacteriologist; + bacterium_N_N : N ; -- [GSXEK] :: bacterium; + bactroperita_M_N : N ; -- [DXXFS] :: one carrying/with staff and pouch; nickname of a Cynic philosopher; + bacula_F_N : N ; -- [XAXNO] :: small berry; + baculum_N_N : N ; -- [XXXCO] :: stick, walking stick, staff; lictor's rod/staff (not fascas); scepter; crozier; + baculus_M_N : N ; -- [DXXFS] :: stick, walking stick, staff; lictor's rod/staff (not fascas); scepter; crozier; + badisso_V : V ; -- [BXXFS] :: go, proceed; walk; + baditis_F_N : N ; -- [DAXFS] :: plant (nymphaea); + badius_A : A ; -- [XAXEO] :: bay, reddish-brown, chestnut; (color, esp. applied to horses); + badizo_V : V ; -- [BXXFO] :: go, proceed; walk; + bae_F_N : N ; -- [EXXFW] :: palm branch; Baiae (pl.) posh Bay of Naples resort w/hot springs, the Palms; + baeticatus_A : A ; -- [XASFO] :: clothed in wool from Baectia (province in southern Spain, Andalusia/Granada); + baeto_V : V ; -- [XXXEO] :: go; + baetulus_M_N : N ; -- [XXXNO] :: species of meteoric stone; + baia_F_N : N ; -- [XXXES] :: palm branch; Baiae (pl.) posh Bay of Naples resort w/hot springs, the Palms; + baijulo_V2 : V2 ; -- [XXXDO] :: carry, bear (load); + baijulus_M_N : N ; -- [XXXDO] :: porter, pall-bearer, carrier of a burden; steward; letter-carrier (L+S); + baillium_N_N : N ; -- [FWXEM] :: castle-bailey; L:bail, security; + bajolus_M_N : N ; -- [XXXDO] :: porter, pall-bearer, carrier of a burden; steward; letter-carrier (L+S); + bajulatio_F_N : N ; -- [DXXFS] :: carrying/bearing of burdens/loads; + bajulator_M_N : N ; -- [DXXFS] :: carrier, porter, one carrying/bearing burdens/loads; + bajulatorius_A : A ; -- [DXXES] :: of/belonging to carrier/porter (e.g., a sedan chair); + bajulo_V2 : V2 ; -- [XXXDO] :: carry, bear (load); + bajulus_M_N : N ; -- [XXXDO] :: porter, pall-bearer, carrier of a burden; steward; letter-carrier (L+S); + balaena_F_N : N ; -- [XAXDO] :: whale; + balaenaceus_A : A ; -- [XAXFO] :: made of whalebone; + balanatus_A : A ; -- [XAXFO] :: perfumed with oil of Ben (winged Horse-radish tree seeds Moringa pterygosperms); + balaninus_A : A ; -- [XAXNO] :: of ben-nut (winged seeds of the Horse-radish tree, Moringa pterygosperms); + balanites_M_N : N ; -- [XXXNO] :: precious stone; + balanitis_F_N : N ; -- [XAXNO] :: species of chestnut; (shaped like an acorn L+S); + balans_A : A ; -- [XAXFO] :: bleating as proper epithet of sheep; + balans_M_N : N ; -- [XAXEO] :: bleater; sheep (pl.); + balantus_A : A ; -- [XXXES] :: anointed/perfumed with balsam; embalmed; + balanus_F_N : N ; -- [XXXCO] :: acorn; other nuts, chestnut, ben-nut; date; balsam; shell-fish; suppository; + balatro_M_N : N ; -- [XXXEO] :: buffoon, fool; jester, joker; bleater, babbler; + balatus_M_N : N ; -- [XAXCO] :: bleating (of sheep/goats); + balaustium_N_N : N ; -- [XAXEO] :: flower of the pomegranate; + balbe_Adv : Adv ; -- [XXXEO] :: inarticulately; obscurely; + balbus_A : A ; -- [XXXCO] :: stammering, stuttering, lisping, suffering from a speech defect; fumbling; + balbuties_F_N : N ; -- [FXXFM] :: stammering; (balbuties); + balbutio_V : V ; -- [XXXCO] :: stammer, stutter; lisp; speak obscurely/indistinctly; babble; + balbuttio_V : V ; -- [XXXCO] :: stammer, stutter; lisp; speak obscurely/indistinctly; babble; + baldachinum_N_N : N ; -- [FXXFE] :: canopy; + baldachinus_M_N : N ; -- [FXXFE] :: canopy; + balena_F_N : N ; -- [XAXES] :: whale; + balenaceus_A : A ; -- [XAXFS] :: made of whalebone; + balinea_F_N : N ; -- [XXXCO] :: baths (pl.); + balineare_N_N : N ; -- [XXXEO] :: bath utensils (pl.); + balinearis_A : A ; -- [XXXEO] :: pertaining/belonging to baths/bathhouse; bathhouse; + balinearium_N_N : N ; -- [XXXCO] :: baths (pl.), bathhouses, places for bathing; + balinearius_A : A ; -- [XXXDO] :: pertaining/relating to baths/bathhouse; bathhouse; + balineaticum_N_N : N ; -- [XXXFS] :: bath money, piece of money to be paid for bath; + balineator_M_N : N ; -- [XXXCO] :: bath-attendant; keeper of a bathhouse; + balineatorius_A : A ; -- [DXXES] :: of/pertaining/related to a bath; + balineatrix_F_N : N ; -- [XXXFO] :: bath attendant (female); + balineolum_N_N : N ; -- [XXXEO] :: small bath; + balineum_N_N : N ; -- [XXXBO] :: bath; bathroom, (public) bath place/rooms (esp. pl.); bathtub; act of bathing; + baliolus_A : A ; -- [DXXFS] :: dark, swarthy, chestnut-colored?; + balis_F_N : N ; -- [XAXNO] :: unidentified plant; (vine?); + baliscus_A : A ; -- [XAXNO] :: kind of vine?; + baliscus_M_N : N ; -- [XXXFO] :: bath?; + balista_F_N : N ; -- [XWXCO] :: ballista, large military engine for throwing stones and missiles; + balistarium_N_N : N ; -- [XWXFO] :: artillery emplacement; + balistarius_M_N : N ; -- [XWXFO] :: maker of ballistas; + balistium_N_N : N ; -- [DDXES] :: music/songs accompanying dancing; + balito_V : V ; -- [XAXFO] :: bleat; + ballaena_F_N : N ; -- [XAXDO] :: whale; + ballaenaceus_A : A ; -- [XAXFO] :: made of whalebone; + ballatio_F_N : N ; -- [GDXEK] :: dance; + ballator_M_N : N ; -- [XDXIS] :: dancer?; + ballematicus_A : A ; -- [DDXFS] :: accompanying the dance; + ballena_F_N : N ; -- [XAXDO] :: whale; + ballista_F_N : N ; -- [XWXCO] :: ballista, large military engine for throwing stones and missiles; + ballistarium_N_N : N ; -- [XWXFO] :: artillery emplacement; + ballistarius_M_N : N ; -- [XWXFO] :: maker of ballistas; + ballistium_N_N : N ; -- [DDXES] :: music/songs accompanying dancing; + ballium_N_N : N ; -- [FLXEM] :: bail; security; + ballivus_M_N : N ; -- [FLXFJ] :: bailiff; + ballo_V : V ; -- [DDXES] :: dance; + ballote_F_N : N ; -- [XAXNO] :: plant, black horehound?; + balluca_F_N : N ; -- [DXSES] :: gold-dust, gold-sand; + ballux_F_N : N ; -- [DXSES] :: gold-dust, gold-sand; + balnea_F_N : N ; -- [XXXBO] :: baths (pl.); + balneare_N_N : N ; -- [XXXEO] :: bath utensils (pl.); + balnearis_A : A ; -- [XXXEO] :: pertaining/belonging to baths/bathhouse; bathhouse; + balnearium_N_N : N ; -- [XXXCO] :: baths (pl.), bathhouses, places for bathing; + balnearius_A : A ; -- [XXXDO] :: pertaining/relating to baths/bathhouse; bathhouse; + balneaticum_N_N : N ; -- [XXXFS] :: bath money, piece of money to be paid for bath; + balneator_M_N : N ; -- [XXXCO] :: bath-attendant; keeper of a bathhouse; + balneatorius_A : A ; -- [DXXES] :: of/pertaining/related to a bath; + balneatrix_F_N : N ; -- [XXXFO] :: bath attendant (female); + balneolum_N_N : N ; -- [XXXEO] :: small bathroom; + balneum_N_N : N ; -- [XXXBO] :: bath; bathtub; act of bathing; bathroom, (public) bath place/rooms (esp. pl.); + balo_V : V ; -- [XAXCO] :: bleat, baa (like a sheep); talk foolishly; + balsameus_A : A ; -- [DAXFS] :: of balsam (aromatic resin used as unguent/salve); balsamic; + balsaminus_A : A ; -- [XAXEO] :: of balsam (aromatic resin used as unguent/salve); balsamic; + balsamum_N_N : N ; -- [XAXCO] :: balsam; balsam tree/gum (aromatic resin used as unguent/salve); balsam; balm; + baltearius_M_N : N ; -- [XXXFS] :: maker of sword belts/baldrics; + balteolus_M_N : N ; -- [DXXFS] :: small girdle; + balteum_N_N : N ; -- [XXXBO] :: belt; shoulder-band/baldric; woman's girdle; band around neck/breast of horse; + balteus_M_N : N ; -- [XXXBO] :: belt; shoulder-band/baldric; woman's girdle; band around neck/breast of horse; + baluca_F_N : N ; -- [DXSES] :: gold-dust, gold-sand; + balux_F_N : N ; -- [XXSEO] :: gold-dust, gold-sand; + bambusa_F_N : N ; -- [GAXEK] :: bamboo; + banana_F_N : N ; -- [GAXEK] :: banana; + bananicus_A : A ; -- [XAXNO] :: variety of vine (w/vitis); + banca_F_N : N ; -- [FXXDM] :: bank/mound; bench/shelf, tradesman's stall/counter; money-changer's table; + bancale_N_N : N ; -- [FXXFE] :: cushion; + bancarius_M_N : N ; -- [GXXEK] :: banker; + banchus_M_N : N ; -- [DAXFS] :: species of fish; + bancus_M_N : N ; -- [DAXFS] :: species of fish; + bannita_F_N : N ; -- [FGXFM] :: syllable; + bannium_N_N : N ; -- [FLBDM] :: proclamation, edict; ban; penalty; marriage banns (pl.); + bannum_N_N : N ; -- [FLBDM] :: proclamation, edict; ban; penalty; marriage banns (pl.); + bannus_M_N : N ; -- [FLBDM] :: proclamation, edict; ban; penalty; marriage banns (pl.); + bapheum_N_N : N ; -- [DXXES] :: dye-house; + bapheus_M_N : N ; -- [DXXES] :: dyer; + baphium_N_N : N ; -- [DXXES] :: dye-house; + baptes_M_N : N ; -- [XXXNO] :: precious stone; + baptisma_N_N : N ; -- [XEXCS] :: baptism; dipping in/under, washing, ablution; + baptismalis_A : A ; -- [EEXDE] :: baptismal; + baptismum_N_N : N ; -- [EEXCE] :: baptism; washing, sprinkling; + baptismus_M_N : N ; -- [EEXCE] :: baptism; washing, sprinkling; + baptista_M_N : N ; -- [EEXDX] :: baptizer; baptist; + baptisterium_N_N : N ; -- [XXXFO] :: plunge-bath, place for bathing/swimming; baptistery; baptismal font; + baptizatio_F_N : N ; -- [DEXFS] :: baptizing, baptism; + baptizator_M_N : N ; -- [DEXES] :: baptizer, baptist; minister of baptism; + baptizo_V2 : V2 ; -- [EEXDX] :: baptize; immerse; + barathrum_N_N : N ; -- [XXXCO] :: abyss, chasm, pit; the infernal region, the underworld; + baratrum_N_N : N ; -- [EEXEV] :: infernal region, hell; + barba_F_N : N ; -- [XXXBO] :: beard/ whiskers; large unkempt beard (pl.); [Jovis ~ => shrub Anthyllis barba]; + barbara_F_N : N ; -- [XXXCO] :: foreign/barbarian woman; kind of plaster; plaster applied to raw wounds (L+S); + barbare_Adv : Adv ; -- [XXXCO] :: in a foreign language; rudely, uncouthly, inelegantly; roughly, savagely; + barbaria_F_N : N ; -- [XXXCO] :: strange/foreign land; uncivilized races, barbarity; brutality; barbarism; + barbaricarius_M_N : N ; -- [DTXES] :: gold-weaver, embroiderer in gold; gilder; + barbarice_Adv : Adv ; -- [DXXES] :: barbarously, uncouthly, rudely; like a foreigner, in a foreign language; + barbaricum_Adv : Adv ; -- [DXXES] :: barbarously, uncouthly, rudely; like a foreigner, in a foreign language; + barbaricum_N_N : N ; -- [DXXCS] :: foreign land/country; + barbaricus_A : A ; -- [XXXCO] :: outlandish; foreign, strange; barbarous, savage; of uncivilized world/people; + barbaries_F_N : N ; -- [XXXCO] :: strange/foreign land; uncivilized races, barbarity; brutality; barbarism; + barbarismus_M_N : N ; -- [XXXCO] :: barbarism, impropriety of speech; 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 ; - barbasculus_M_N : N ; - barbatoria_F_N : N ; - barbatulus_A : A ; - barbatus_A : A ; - barbesco_V : V ; - barbiger_A : A ; - barbio_V : V ; - barbitium_N_N : N ; - barbiton_N_N : N ; - barbitonsor_M_N : N ; + barbarolexis_2_N : N ; -- [DGXFS] :: perversion of form of a word, change/inflection of Greek to Latin usage; + barbarum_N_N : N ; -- [XXXEO] :: barbarism; impropriety of speech; kind of plaster (applied to raw wounds L+S); + barbarus_A : A ; -- [XXXAO] :: foreign, of/used by/typical of foreigners; cruel, savage; uncivilized, uncouth; + barbarus_M_N : N ; -- [XXXCO] :: barbarian, uncivilized person; foreigner (not Greek/Roman); + barbasculus_M_N : N ; -- [XXXFO] :: whipper-snapper?; + barbatoria_F_N : N ; -- [XXXFO] :: ceremony of the first shaving of the beard; shaving of the beard; + barbatulus_A : A ; -- [XXXEO] :: having small/foppish beard; + barbatus_A : A ; -- [XXXCO] :: bearded, having a beard; (like the men of antiquity); (as sign of) adult; + barbesco_V : V ; -- [DXXFS] :: get a beard, begin to grow/sprout a beard; + barbiger_A : A ; -- [XAXFO] :: bearded (like a goat); + barbio_V : V ; -- [DXXES] :: raise/grow a beard; + barbitium_N_N : N ; -- [XXXEO] :: growth of beard; beard; + barbiton_N_N : N ; -- [EXXEE] :: lyre (properly of a lower pitch); lute (Ecc); + barbitonsor_M_N : N ; -- [XXXEE] :: barber; barbitos_F_N : N ; -- [XXXEO] :: lyre (properly of a lower pitch); lute (Ecc); - barbitos_M_N : N ; - barbo_V2 : V2 ; - barbula_F_N : N ; - barbus_M_N : N ; - barca_F_N : N ; - barcala_M_N : N ; - barditus_M_N : N ; - bardocucullus_M_N : N ; - bardus_A : A ; - barile_N_N : N ; - baripe_F_N : N ; - baris_F_N : N ; - baritus_M_N : N ; - baro_M_N : N ; - barocus_A : A ; - barometrum_N_N : N ; - baronia_F_N : N ; - baroptenus_C_N : N ; - barosus_A : A ; - barrinus_A : A ; - barrio_V : V ; - barritus_M_N : N ; - barrus_M_N : N ; - barycephalus_A : A ; - barycus_A : A ; - barypicron_N_N : N ; - barython_M_N : N ; - barythonos_A : A ; - barytonista_M_N : N ; + barbitos_M_N : N ; -- [XXXEO] :: lyre (properly of a lower pitch); lute (Ecc); + barbo_V2 : V2 ; -- [XXXFO] :: supply with a beard (or perhaps a nonsense word); + barbula_F_N : N ; -- [XXXCO] :: little beard (as worn by young Romans L+S); + barbus_M_N : N ; -- [DAXFS] :: barbel, river barbel (Cyprinus barbus); + barca_F_N : N ; -- [XXXIO] :: small boat; bark, barge; + barcala_M_N : N ; -- [XXXFO] :: fool, simpleton; + barditus_M_N : N ; -- [XWXEO] :: trumpeting (of an elephant); war-cry, battle-cry (of the Germans); + bardocucullus_M_N : N ; -- [XXFEO] :: cloak/overcoat (Gallic); (with hood/cowl, of woolen stuff L+S); + bardus_A : A ; -- [XXXDO] :: stupid, slow, dull; + barile_N_N : N ; -- [FXXFE] :: cask; + baripe_F_N : N ; -- [XXXNO] :: precious stone; + baris_F_N : N ; -- [XXEFO] :: flat-bottomed boat used on the Nile; + baritus_M_N : N ; -- [XWXEO] :: trumpeting (of an elephant); war-cry, battle-cry (of the Germans); + baro_M_N : N ; -- [XXXCO] :: block-head, lout, dunce, simpleton; slave (Latham); + barocus_A : A ; -- [GXXEK] :: baroque; odd; + barometrum_N_N : N ; -- [GTXEK] :: barometer; + baronia_F_N : N ; -- [FLXFJ] :: barony; + baroptenus_C_N : N ; -- [XXXNO] :: precious stone; + barosus_A : A ; -- [DXXFS] :: foolish, stupid, weak, effeminate; + barrinus_A : A ; -- [DAXFS] :: of/pertaining to/belonging to an elephant; + barrio_V : V ; -- [XAXFO] :: trumpet (of an elephant); + barritus_M_N : N ; -- [XWXEO] :: trumpeting (of an elephant); war-cry, battle-cry (of the Germans); + barrus_M_N : N ; -- [XXXFO] :: elephant; + barycephalus_A : A ; -- [XXXFO] :: top-heavy; with low walls and broad roofs (L+S); + barycus_A : A ; -- [XXXFS] :: top-heavy; with low walls and broad roofs (L+S); + barypicron_N_N : N ; -- [DAHFS] :: Greek epithet for wormwood (very bitter); + barython_M_N : N ; -- [DAXFS] :: plant; (also called Sabina); + barythonos_A : A ; -- [DGXFS] :: not accented on the last syllable; + barytonista_M_N : N ; -- [GDXEK] :: baritone; 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 ; - basella_F_N : N ; - basiatio_F_N : N ; - basiator_M_N : N ; - basicula_F_N : N ; - basileum_N_N : N ; - basileus_M_N : N ; - basilica_F_N : N ; - basilicanus_M_N : N ; - basilice_Adv : Adv ; - basilice_F_N : N ; - basilicola_F_N : N ; - basilicon_N_N : N ; - basilicum_N_N : N ; - basilicus_A : A ; - basilicus_M_N : N ; - basilisca_F_N : N ; - basiliscus_M_N : N ; - basilium_N_N : N ; - basio_V2 : V2 ; - basioballum_N_N : N ; - basiolum_N_N : N ; + bas_2_N : N ; -- [XXXBO] :: pedestal; base, point of attachment; foundation, support; chord (of an arc); + basaltes_M_N : N ; -- [DXAES] :: dark and very hard species of marble in Ethiopia; (M, contrary to rule L+S); + basanites_M_N : N ; -- [XXXNO] :: kind of quartz used in touchstones/whetstones/mortars (basanite?); teststone; + bascauda_F_N : N ; -- [XXBEO] :: basin (kind of British origin); mat or dish holder of fine basket-work (L+S); + basella_F_N : N ; -- [DTXFS] :: small pedestal/base; + basiatio_F_N : N ; -- [XXXEO] :: kiss; + basiator_M_N : N ; -- [XXXFO] :: kisser, one who kisses; + basicula_F_N : N ; -- [XXXFO] :: small pedestal/base; + basileum_N_N : N ; -- [XXEIO] :: crown (on statue of Isis); royal/princely ornament; an eye salve; + basileus_M_N : N ; -- [XXXFO] :: king; + basilica_F_N : N ; -- [XXXCO] :: basilica; oblong hall with colonnade as law court/exchange; church (medieval); + basilicanus_M_N : N ; -- [XXXFO] :: haunter of basilicas; one doing/soliciting business in cathedral/public place; + basilice_Adv : Adv ; -- [XXXEO] :: royally, in a princely fashion/a magnificent manner; wholly, completely (L+S); + basilice_F_N : N ; -- [XXXFO] :: black plaster; an eye salve; + basilicola_F_N : N ; -- [DEXES] :: small/little church/chapel; + basilicon_N_N : N ; -- [XXXDO] :: black plaster; an eye salve; + basilicum_N_N : N ; -- [XXXEO] :: best throw in dice; (royal/king's throw); princely robe; best kind of nuts; + basilicus_A : A ; -- [XXXCO] :: royal, princely, magnificent, splendid; kind of vine; + basilicus_M_N : N ; -- [XXXES] :: best throw in dice; (royal/king's throw); (also called Venereus); + basilisca_F_N : N ; -- [DAXFS] :: plant; (also called regula); (antidote for bite of basilisk/cockatrice); + basiliscus_M_N : N ; -- [XAXDO] :: basilisk, cockatrice; kind of snake/lizard; + basilium_N_N : N ; -- [XXEIO] :: crown (on statue of Isis); royal/princely ornament; an eye salve; + basio_V2 : V2 ; -- [XXXCO] :: kiss, give a kiss; + basioballum_N_N : N ; -- [XXXFS] :: woman (slang), piece, bit of fluff, crumpet; + basiolum_N_N : N ; -- [XXXEO] :: little kiss, peck; 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 ; - bassus_A : A ; - bastaga_F_N : N ; - bastagarius_M_N : N ; - bastagia_F_N : N ; - bastarda_F_N : N ; - bastardia_F_N : N ; - bastardus_A : A ; - bastardus_M_N : N ; - basterna_F_N : N ; - basternarius_M_N : N ; - bat_Conj : Conj ; - batalaria_F_N : N ; - batallum_N_N : N ; - batenim_Conj : Conj ; - bathrum_N_N : N ; - batia_F_N : N ; - batiaca_F_N : N ; - batillum_N_N : N ; - batillus_M_N : N ; - batioca_F_N : N ; - batiola_F_N : N ; - batis_F_N : N ; - batrachion_N_N : N ; - batrachites_M_N : N ; - batrachium_N_N : N ; - batrachus_M_N : N ; - battalia_F_N : N ; - battis_F_N : N ; - batto_V : V ; - battualia_F_N : N ; - battuarium_N_N : N ; - battuens_M_N : N ; - battuo_V : V ; - battutus_A : A ; - batuo_V : V ; - batus_F_N : N ; - batus_M_N : N ; - baubatus_M_N : N ; - baubo_V : V ; - baubor_V : V ; - baxa_F_N : N ; - baxea_F_N : N ; - baxearius_M_N : N ; - baxiarius_M_N : N ; - bdella_F_N : N ; - bdellium_N_N : N ; - be_Interj : Interj ; - beate_Adv : Adv ; - beatificatio_F_N : N ; - beatifico_V2 : V2 ; - beatificus_A : A ; - beatitas_F_N : N ; - beatitudo_F_N : N ; - beatulus_A : A ; - beatulus_M_N : N ; - beatum_N_N : N ; - beatus_A : A ; - beatus_M_N : N ; - beber_M_N : N ; - bebo_V : V ; - bebra_F_N : N ; - bebrinus_A : A ; - beccus_M_N : N ; - bechicus_A : A ; - bechion_N_N : N ; - bee_Interj : Interj ; - behemoth_N : N ; - behmoth_N : N ; - beia_Interj : Interj ; - bekah_N : N ; - belbus_M_N : N ; - belion_N_N : N ; - belivus_A : A ; - bellarium_N_N : N ; - bellator_A : A ; - bellator_M_N : N ; - bellatorius_A : A ; - bellatorus_A : A ; - bellatrix_A : A ; - bellatrix_F_N : N ; - bellatulus_A : A ; - bellax_A : A ; - belle_Adv : Adv ; - belliatulus_A : A ; - belliatus_A : A ; - bellicosus_A : A ; - bellicrepus_A : A ; - bellicum_N_N : N ; - bellicus_A : A ; - bellifer_A : A ; - belliger_A : A ; - belligerator_M_N : N ; - belligero_V : V ; - belligeror_V : V ; - bellio_F_N : N ; - bellipotens_A : A ; - bellis_F_N : N ; - bellisonus_A : A ; - bellitudo_F_N : N ; - bello_V : V ; - bellonaria_F_N : N ; - bellor_V : V ; - bellosus_A : A ; - bellua_F_N : N ; - bellualis_A : A ; - belluatus_A : A ; - belluilis_A : A ; - belluinus_A : A ; - bellule_Adv : Adv ; - bellulus_A : A ; - bellum_N_N : N ; - bellus_A : A ; - belo_V : V ; - beloacos_M_N : N ; - belone_F_N : N ; - belotocos_M_N : N ; - belua_F_N : N ; - belualis_A : A ; - beluatus_A : A ; - beluilis_A : A ; - beluinus_A : A ; - beluosus_A : A ; - beluus_A : A ; - bema_N_N : N ; - bene_Adv : Adv ; - benedice_Adv : Adv ; - benedico_V2 : V2 ; - benedictio_F_N : N ; - benedictionale_N_N : N ; - benedictorium_N_N : N ; - benedictus_A : A ; - benedictus_M_N : N ; - benedicus_A : A ; - benefacio_V2 : V2 ; - benefactio_F_N : N ; - benefactor_M_N : N ; - benefactum_N_N : N ; - benefice_Adv : Adv ; - beneficentia_F_N : N ; - beneficiarius_A : A ; - beneficiarius_M_N : N ; - beneficiatus_M_N : N ; - beneficientia_F_N : N ; - beneficium_N_N : N ; - beneficus_A : A ; - benefio_V : V ; - benemerens_A : A ; - benemeritus_A : A ; - benemorius_A : A ; - beneolentia_F_N : N ; - beneplacens_A : A ; - beneplaceo_V : V ; - beneplacitum_N_N : N ; - beneplacitus_A : A ; - benesonans_A : A ; - benesuadus_A : A ; - benevole_Adv : Adv ; - benevolens_A : A ; + basis_2_N : N ; -- [XXXBO] :: pedestal; base, point of attachment; foundation, support; chord (of an arc); + basium_N_N : N ; -- [XXXCO] :: kiss; kiss of the hand; + bassilica_F_N : N ; -- [XXXCO] :: basilica; oblong hall with colonnade used as law court or exchange; + bassista_M_N : N ; -- [GDXEK] :: bass-singer; + bassus_A : A ; -- [FXXEE] :: low, base; base (Cal); [follis bassus => baseball]; + bastaga_F_N : N ; -- [DXXES] :: carriage of baggage, carrying of freight on wagons, cartage, transport; + bastagarius_M_N : N ; -- [DXXES] :: baggage-master; + bastagia_F_N : N ; -- [DXXES] :: carriage of baggage, carrying of freight on wagons, cartage, transport; + bastarda_F_N : N ; -- [FLXFM] :: female bastard; bastard daughter; + bastardia_F_N : N ; -- [FLXFM] :: bastardy; + bastardus_A : A ; -- [FLXDM] :: bastard; spurious; impure; + bastardus_M_N : N ; -- [FLXEM] :: bastard; bastard son; + basterna_F_N : N ; -- [DXXES] :: sedan chair/litter (enclosed on all sides, carried by mules); + basternarius_M_N : N ; -- [DXXES] :: bearer of a sedan chair/litter; + bat_Conj : Conj ; -- [XXXEO] :: but, while, however; (contemptuous parity of "at" - b-b-but); + batalaria_F_N : N ; -- [XWXFS] :: kind of warship; + batallum_N_N : N ; -- [FXXFE] :: clapper (of bell); + batenim_Conj : Conj ; -- [XXXEO] :: but, yet, nevertheless, however; (contemptuous parity of "atenim" - b-b-but); + bathrum_N_N : N ; -- [XXXIO] :: base, pedestal; + batia_F_N : N ; -- [XAXNO] :: fish; (perh. skate or ray); + batiaca_F_N : N ; -- [XXXFS] :: drinking vessel, cup, goblet; + batillum_N_N : N ; -- [XXXES] :: shovel; fire/coal/dirt/dung shovel; chafing dish, fire/fumigating/incense pan; + batillus_M_N : N ; -- [DXXES] :: shovel; fire/coal/dirt/dung shovel; chafing dish, fire/fumigating/incense pan; + batioca_F_N : N ; -- [XXXFO] :: drinking vessel, cup, goblet; + batiola_F_N : N ; -- [XXXFO] :: drinking vessel, cup, goblet; + batis_F_N : N ; -- [XAXEO] :: plant (prob. samphire, Crithmum maritimum and sim. species); + batrachion_N_N : N ; -- [XAXEO] :: plant of genus Ranunculus; + batrachites_M_N : N ; -- [XXXNO] :: precious stone (frog-green L+S); + batrachium_N_N : N ; -- [XAXEO] :: plant of genus Ranunculus; + batrachus_M_N : N ; -- [XAXNO] :: fish (prob. angler, Lophius piscatorius); + battalia_F_N : N ; -- [DWXES] :: fighting/fencing exercises of soldiers and gladiators; + battis_F_N : N ; -- [XAXEO] :: plant (prob. samphire, Crithmum maritimum and sim. species); + batto_V : V ; -- [XXFDO] :: pound, beat, hit, strike; fence (with swords); + battualia_F_N : N ; -- [DWXES] :: fighting/fencing exercises of soldiers and gladiators; + battuarium_N_N : N ; -- [DBXFS] :: mortar; + battuens_M_N : N ; -- [GXXEK] :: fencer; + battuo_V : V ; -- [XXXDO] :: pound, beat hit, strike; fence (with swords); + battutus_A : A ; -- [GXXEK] :: whipped (as in whipped cream); + batuo_V : V ; -- [XXXDO] :: pound, beat hit, strike; fence (with swords); + batus_F_N : N ; -- [XAXES] :: bramble; blackberry bush, raspberry bush; + batus_M_N : N ; -- [EEQFS] :: bath, Hebrew liquid measure (about 9 gallons); + baubatus_M_N : N ; -- [GXXEK] :: barking; + baubo_V : V ; -- [FXXEK] :: bark; + baubor_V : V ; -- [XXXEO] :: bark (of dogs), bay, howl; + baxa_F_N : N ; -- [XXXES] :: kind of sandal; (woven, worn on comic stage and by philosophers L+S); + baxea_F_N : N ; -- [XXXEO] :: kind of sandal; (woven, worn on comic stage and by philosophers L+S); + baxearius_M_N : N ; -- [XXXFS] :: sandal maker; maker of woven shoes (L+S); + baxiarius_M_N : N ; -- [XXXFO] :: sandal maker; maker of woven shoes (L+S); + bdella_F_N : N ; -- [XAXFO] :: aromatic gum; tree (prob. of genus Balsamodendron); + bdellium_N_N : N ; -- [XAXEO] :: aromatic gum; tree (prob. of genus Balsamodendron); + be_Interj : Interj ; -- [XAXFO] :: baa (sound made by sheep); + beate_Adv : Adv ; -- [XXXCO] :: happily; excellently, felicitously; lavishly, abundantly; + beatificatio_F_N : N ; -- [FEXEE] :: beatification, act of beatifying; (first step to sainthood); + beatifico_V2 : V2 ; -- [DEXCS] :: bless; make happy; + beatificus_A : A ; -- [XXXFO] :: making happy or blessed, blessing; + beatitas_F_N : N ; -- [XXXEO] :: supreme happiness, blessedness, a blessed condition, beatitude; + beatitudo_F_N : N ; -- [XXXDO] :: supreme happiness, blessedness, a blessed condition, beatitude; + beatulus_A : A ; -- [XXXFO] :: blessed (said of a deceased person); + beatulus_M_N : N ; -- [DXXFS] :: sainted/happy fellow; (ironic/of the dead); + beatum_N_N : N ; -- [XXXES] :: happiness, blessedness; good fortune; good circumstances; + beatus_A : A ; -- [DEXBX] :: blessed, blissful; "Saint" (in early Church, less formal); + beatus_M_N : N ; -- [XXXES] :: happy/fortunate men/persons (pl.); "the_rich"; The Blessed, Saints; + beber_M_N : N ; -- [DAXES] :: beaver; + bebo_V : V ; -- [XAXFO] :: bleat; + bebra_F_N : N ; -- [DWXFS] :: weapon of barbarous nations; + bebrinus_A : A ; -- [DAXES] :: of/pertaining to beaver, beaver-; + beccus_M_N : N ; -- [DAXES] :: bill, beak; (esp. of cock); + bechicus_A : A ; -- [DBXES] :: of/for a cough; + bechion_N_N : N ; -- [XAXNO] :: plant (perh. coltsfoot, Tussiago farfara); (good for cough L+S); + bee_Interj : Interj ; -- [DAXFS] :: baa; sound made by a sheep; + behemoth_N : N ; -- [EAQFE] :: behemoth (Hebrew), great/monstrous beast; (hippopotamus?); (Job 40:10); + behmoth_N : N ; -- [EAQFE] :: behemoth (Hebrew), great/monstrous beast; (hippopotamus?); (Job 40:10); + beia_Interj : Interj ; -- [XXXFO] :: see!; (comic word as contemptuous echo of "heia"); + bekah_N : N ; -- [ELQFE] :: half shekel (Hebrew); + belbus_M_N : N ; -- [DAXFS] :: hyena; + belion_N_N : N ; -- [DAXFS] :: strong smelling plant (poley-germander, Teucrium polium?); + belivus_A : A ; -- [FXXFZ] :: bleating; baaing; talking foolishly; + bellarium_N_N : N ; -- [XXXCO] :: dessert; sweetmeats (pl.), dainties, sweets; + bellator_A : A ; -- [XXXCO] :: warlike, martial; of war [~ equus => war horse]; + bellator_M_N : N ; -- [XWXCO] :: warrior, fighter; soldier; + bellatorius_A : A ; -- [XWXFO] :: warlike, pugnacious; useful in war; martial; + bellatorus_A : A ; -- [XWXCS] :: war-like, martial, ready to fight, valorous; spirited/war/battle (horse); + bellatrix_A : A ; -- [XWXCO] :: warlike, martial; skilled/useful in war; of animals/things used in war; + bellatrix_F_N : N ; -- [XWXFS] :: female warrior; + bellatulus_A : A ; -- [XXXFS] :: pretty, neat; + bellax_A : A ; -- [XWXFO] :: warlike; martial; + belle_Adv : Adv ; -- [XXXBO] :: |well; [w/esse => have a nice time; w/habere => be well; w/est => all is well]; + belliatulus_A : A ; -- [XXXFO] :: pretty little (term of endearment); + belliatus_A : A ; -- [XXXFO] :: pretty, beautiful; + bellicosus_A : A ; -- [XWXCO] :: warlike, fierce; fond of war; + bellicrepus_A : A ; -- [XWXFO] :: marked by sound of arms; [~a saltio => armed dance, dance in arms]; + bellicum_N_N : N ; -- [XWXCS] :: signal (on trumpet) for march/attack/etc. (w/canere); military trumpet call; + bellicus_A : A ; -- [XWXCO] :: of war, military; warlike; [~um canere => sound attack horn/begin hostilities]; + bellifer_A : A ; -- [XWXFS] :: waging war, warring; warlike, martial; war-, battle-; + belliger_A : A ; -- [XWXCO] :: waging war, warring; warlike, martial; war-, battle-; + belligerator_M_N : N ; -- [DWXFS] :: warrior, combatant; + belligero_V : V ; -- [XWXCO] :: wage or carry on war; be at war; + belligeror_V : V ; -- [XWXEO] :: wage or carry on war; be at war; + bellio_F_N : N ; -- [XAXNO] :: meadow flower (unidentified); (yellow ox-eye daisy - L+S); + bellipotens_A : A ; -- [XWXDS] :: powerful/mighty/valiant in war; (often of gods); + bellis_F_N : N ; -- [XAXNO] :: flower (perh. daisy); (white daisy, ox-eye - L+S); + bellisonus_A : A ; -- [DWXFS] :: sounding of/like war/battle; + bellitudo_F_N : N ; -- [XXXEO] :: elegance; beauty, loveliness; + bello_V : V ; -- [XWXBO] :: fight, wage war, struggle; take part in war/battle/fight (also animals/games); + bellonaria_F_N : N ; -- [DAXFS] :: plant (solanum) used by priests at festival of Bellona (goddess of war); + bellor_V : V ; -- [XWXCO] :: fight, wage war, struggle; take part in war/battle/fight (also animals/games); + bellosus_A : A ; -- [XWXFO] :: warlike; + bellua_F_N : N ; -- [XXXBO] :: beast, wild animal (incl. sea creature); monster, brute (great size/ferocity); + bellualis_A : A ; -- [DAXFS] :: bestial, brutish; brutal; + belluatus_A : A ; -- [XAXFS] :: provided with beasts (real or on embroidery); + belluilis_A : A ; -- [DAXFS] :: bestial, brutish; brutal; + belluinus_A : A ; -- [XAXFO] :: proper/pertaining to beasts, bestial; + bellule_Adv : Adv ; -- [XXXEO] :: prettily, nicely, finely; + bellulus_A : A ; -- [XXXEO] :: pretty/nice (little), fine, lovely, beautiful; + bellum_N_N : N ; -- [XWXAO] :: war, warfare; battle, combat, fight; (at/in) (the) war(s); military force, arms; + bellus_A : A ; -- [XXXBO] :: pretty, handsome, charming, pleasant, agreeable, polite; nice, fine, excellent; + belo_V : V ; -- [XAXEO] :: bleat, baa (like a sheep); talk foolishly; + beloacos_M_N : N ; -- [DAXFS] :: plant; (also called dictamnus); + belone_F_N : N ; -- [XAXNO] :: fish (same as acus); pipefish, needlefish, hornpike, gar; + belotocos_M_N : N ; -- [DAXFS] :: plant; (also called dictamnus); + belua_F_N : N ; -- [XAXBO] :: beast, wild animal (incl. sea creature); monster, brute (great size/ferocity); + belualis_A : A ; -- [DAXES] :: bestial, brutish; brutal; + beluatus_A : A ; -- [XAXFO] :: provided with beasts (real or on embroidery); + beluilis_A : A ; -- [DAXES] :: bestial, brutish; brutal; + beluinus_A : A ; -- [XAXFO] :: proper/pertaining to beasts, bestial; + beluosus_A : A ; -- [XAXFO] :: that abounds/abounding in beasts/monsters; + beluus_A : A ; -- [XAXFO] :: proper/pertaining to beasts, bestial; + bema_N_N : N ; -- [EEXEE] :: sanctuary; bishop's chair; pulpit; + bene_Adv : Adv ; -- [XXXAO] :: well, very, quite, rightly, agreeably, cheaply, in good style; better; best; + benedice_Adv : Adv ; -- [XXXFO] :: with friendly words, kindly; + benedico_V2 : V2 ; -- [EEXAX] :: bless; praise; speak well of; speak kindly of (classically 2 words); + benedictio_F_N : N ; -- [EEXCS] :: blessing; benediction; extolling, praising; consecrated/sacred object; + benedictionale_N_N : N ; -- [EEXFE] :: book of benedictions/formulas of blessings; + benedictorium_N_N : N ; -- [GXXEK] :: stoup; holy-water basin; + benedictus_A : A ; -- [EEXDX] :: blessed; blest; approved/praised/spoken well of (person); + benedictus_M_N : N ; -- [EEXDX] :: blessed/blest one; an approved/praised person, spoken well of; + benedicus_A : A ; -- [DXXFS] :: friendly, kind; speaking friendly words; beneficent; + benefacio_V2 : V2 ; -- [XXXCO] :: do service/good to; make well/ably; benefit; bless; (usu. 2 words); + benefactio_F_N : N ; -- [DXXES] :: performing an act of kindness; doing a favor/kindness/boon; + benefactor_M_N : N ; -- [DXXCS] :: benefactor; he who does/confers a favor/kindness; + benefactum_N_N : N ; -- [XXXCO] :: benefit, service (also as 2 words); good deed (usu. pl.); + benefice_Adv : Adv ; -- [XXXFO] :: beneficently; + beneficentia_F_N : N ; -- [XXXDO] :: beneficence, kindness; honorable treatment; + beneficiarius_A : A ; -- [XXXFO] :: that is given as a favor; pertaining to a favor; + beneficiarius_M_N : N ; -- [FEXEE] :: prebendary, holder of benefice; + beneficiatus_M_N : N ; -- [XXXIO] :: status of beneficiarius, privileged soldier (exempt from certain duties); + beneficientia_F_N : N ; -- [XXXFO] :: beneficence, kindness; + beneficium_N_N : N ; -- [XXXBO] :: kindness, favor, benefit, service, help; privilege, right; + beneficus_A : A ; -- [XXXCO] :: beneficent, kind, generous, liberal, serviceable; + benefio_V : V ; -- [XXXCO] :: be blessed; receive a benefit; (benefacio PASS); + benemerens_A : A ; -- [XXXEO] :: well deserving; + benemeritus_A : A ; -- [XXXEO] :: well deserved/due/deserving; + benemorius_A : A ; -- [XXXFO] :: having good moral qualities; + beneolentia_F_N : N ; -- [DXXFS] :: agreeable smell; + beneplacens_A : A ; -- [DEXEE] :: pleasing, acceptable; + beneplaceo_V : V ; -- [DXXES] :: please; be pleasing to; + beneplacitum_N_N : N ; -- [DEXES] :: pleasure; approval, favor; good will, gracious purpose; + beneplacitus_A : A ; -- [DEXES] :: pleasing, acceptable; agreeable; + benesonans_A : A ; -- [EXXEE] :: melodious, sweet-sounding; loud; + benesuadus_A : A ; -- [XXXFO] :: advising well; + benevole_Adv : Adv ; -- [XXXDO] :: in a spirit of good will, in a friendly manner; + benevolens_A : A ; -- [XXXCO] :: kind, friendly, benevolent, well-wishing, kind-hearted; benevolens_F_N : N ; -- [XXXCO] :: friend, well-wisher, kind-heart; - benevolens_M_N : N ; - benevolentia_F_N : N ; - benevolus_A : A ; - benevolus_M_N : N ; - benificium_N_N : N ; - benigne_Adv : Adv ; - benignitas_F_N : N ; - benigniter_Adv : Adv ; - benignor_V : V ; - benignus_A : A ; - benivole_Adv : Adv ; - benivolens_A : A ; + benevolens_M_N : N ; -- [XXXCO] :: friend, well-wisher, kind-heart; + benevolentia_F_N : N ; -- [XXXCO] :: benevolence, kindness, goodwill; favor; endearments; + benevolus_A : A ; -- [XXXCO] :: well-wishing, kind, benevolent, friendly, devoted; + benevolus_M_N : N ; -- [XXXCO] :: well-wisher, friend; + benificium_N_N : N ; -- [XXXEO] :: kindness/favor/benefit/service/help; privilege/right; sacred office+revenues; + benigne_Adv : Adv ; -- [XXXCO] :: kindly, benevolently, obligingly; courteously, cheerfully; freely, generously; + benignitas_F_N : N ; -- [XXXCO] :: kindness, courtesy; friendliness, benevolence; liberality, favor; bounty; mercy; + benigniter_Adv : Adv ; -- [XXXFO] :: kindly, in a friendly manner; benignly; + benignor_V : V ; -- [EEXFS] :: rejoice, take delight (in); + benignus_A : A ; -- [XXXBO] :: kind, favorable, obliging; kindly, mild, affable; liberal, bounteous; + benivole_Adv : Adv ; -- [XXXDO] :: in a spirit of good will, in a friendly manner; + benivolens_A : A ; -- [XXXCO] :: kind, friendly, benevolent, well-wishing, kind-hearted; benivolens_F_N : N ; -- [XXXCO] :: friend, well-wisher, kind-heart; - benivolens_M_N : N ; - benivolentia_F_N : N ; - benivolus_A : A ; - benivolus_M_N : N ; - benna_F_N : N ; - benzinarium_N_N : N ; - benzinarius_M_N : N ; - benzinum_N_N : N ; - beo_V2 : V2 ; - berbex_M_N : N ; - bergomagister_M_N : N ; - berillus_M_N : N ; - berna_M_N : N ; - bernus_M_N : N ; - berula_F_N : N ; - berullus_M_N : N ; - bervex_M_N : N ; - beryllos_M_N : N ; - beryllus_M_N : N ; - bes_M_N : N ; - besalis_A : A ; - bessalis_A : A ; - bestia_F_N : N ; - bestialis_A : A ; - bestialitas_F_N : N ; - bestiarius_A : A ; - bestiarius_M_N : N ; - bestiola_F_N : N ; - beta_F_N : N ; - beta_N : N ; - betaceus_A : A ; - betaceus_M_N : N ; - beth_N : N ; - betis_F_N : N ; - betisso_V : V ; - betizo_V : V ; - beto_V : V ; - betula_F_N : N ; - betulla_F_N : N ; - biaeothanatus_A : A ; - biarchia_F_N : N ; - biarchus_M_N : N ; - bibale_N_N : N ; - bibax_A : A ; - biberarius_M_N : N ; - bibilis_A : A ; - bibio_M_N : N ; - bibitor_M_N : N ; - biblicus_A : A ; - biblinus_A : A ; - bibliographia_F_N : N ; - bibliographicus_A : A ; - bibliographus_M_N : N ; - bibliopegus_M_N : N ; - bibliopola_M_N : N ; - bibliopolium_N_N : N ; - bibliotheca_F_N : N ; - bibliothecalis_A : A ; - bibliothecarius_M_N : N ; - bibliothece_F_N : N ; - bibliothecula_F_N : N ; - biblus_F_N : N ; - bibo_M_N : N ; - bibo_V2 : V2 ; - bibonius_M_N : N ; - bibosus_A : A ; - bibrevis_A : A ; - bibulus_A : A ; - bicallis_M_N : N ; - bicameratum_N_N : N ; - bicameratus_A : A ; - bicaps_A : A ; - biceps_A : A ; - bicepsos_A : A ; - bicessis_M_N : N ; - bicinium_N_N : N ; - bicips_A : A ; - biclinium_N_N : N ; - bicodulus_A : A ; - bicolor_A : A ; - bicolorus_A : A ; - bicomis_A : A ; - bicornis_A : A ; - bicornis_M_N : N ; - bicorpor_A : A ; - bicors_A : A ; - bicoxus_A : A ; - bicrotum_N_N : N ; - bicubitalis_A : A ; - bicubitalus_A : A ; - bidens_A : A ; - bidens_F_N : N ; - bidens_M_N : N ; - bidental_N_N : N ; - bidentalis_A : A ; - bidentatio_F_N : N ; - biduanus_A : A ; - biduum_N_N : N ; - biduus_A : A ; - biennalis_A : A ; - biennis_A : A ; - biennium_N_N : N ; - bifaciatus_A : A ; - bifariam_Adv : Adv ; - bifarius_A : A ; - bifax_A : A ; - bifer_A : A ; - biferus_A : A ; - bifestus_A : A ; - bifidatus_A : A ; - bifidus_A : A ; - bifilum_N_N : N ; - bifissus_A : A ; - biforis_A : A ; - biformatus_A : A ; - biformis_A : A ; - biformitas_F_N : N ; - biforus_A : A ; - bifrons_A : A ; - bifurcum_N_N : N ; - bifurcus_A : A ; - biga_F_N : N ; - bigamia_F_N : N ; - bigamus_A : A ; - bigamus_M_N : N ; - bigarius_M_N : N ; - bigatus_A : A ; - bigatus_M_N : N ; - bigeminus_A : A ; - bigemmis_A : A ; - bigener_A : A ; - bigenus_A : A ; - bigna_F_N : N ; - bigus_A : A ; - bijugis_A : A ; - bijugis_M_N : N ; - bijugus_A : A ; - bijugus_M_N : N ; - bikinianus_A : A ; - bilanx_A : A ; - bilateralis_A : A ; - bilbo_V : V ; - bilibra_F_N : N ; - bilibralis_A : A ; - bilibris_A : A ; - bilinguis_A : A ; - biliosus_A : A ; - bilis_F_N : N ; - bilix_A : A ; - bilocatio_F_N : N ; - bilongus_A : A ; - bilustris_A : A ; - bilychnis_A : A ; - bimammiis_A : A ; - bimaris_A : A ; - bimaritus_M_N : N ; - bimater_A : A ; - bimatris_A : A ; - bimatus_A : A ; - bimatus_M_N : N ; - bimembris_A : A ; - bimembris_M_N : N ; - bimenstris_A : A ; - bimenstruus_A : A ; - bimestre_Adv : Adv ; - bimestris_A : A ; - bimeter_A : A ; - bimotorius_A : A ; - bimulus_A : A ; - bimus_A : A ; - binarius_A : A ; - binatio_F_N : N ; - binio_M_N : N ; - bino_V2 : V2 ; - binoctium_N_N : N ; - binoculum_N_N : N ; - binominis_A : A ; - binubus_M_N : N ; - binus_A : A ; - biographia_F_N : N ; - biographicus_A : A ; - biologia_F_N : N ; - biologicus_A : A ; - biologus_M_N : N ; - biometria_F_N : N ; - biometricus_A : A ; - biopsia_F_N : N ; - bios_M_N : N ; - biosphaera_F_N : N ; - biotechnicus_M_N : N ; - biothanatus_A : A ; - bioticus_A : A ; - biotopium_N_N : N ; - bipalium_N_N : N ; - bipalmis_A : A ; - bipalmus_A : A ; - bipartio_V2 : V2 ; - bipartitio_F_N : N ; - bipartito_Adv : Adv ; - bipartitus_A : A ; - bipatens_A : A ; - bipeda_F_N : N ; - bipedale_N_N : N ; - bipedalis_A : A ; - bipedalium_N_N : N ; - bipedaneus_A : A ; - bipennifer_A : A ; - bipennis_A : A ; - bipennis_F_N : N ; - bipensilis_A : A ; - bipertio_V2 : V2 ; - bipertitio_F_N : N ; - bipertito_Adv : Adv ; - bipertitus_A : A ; - bipes_A : A ; - bipinnis_A : A ; - bipinnis_F_N : N ; - biplex_A : A ; - biprorus_A : A ; - biprosopum_N_N : N ; - biprosopus_M_N : N ; - bipunctum_N_N : N ; - biremis_A : A ; - biremis_F_N : N ; - biretum_N_N : N ; - birota_F_N : N ; - birotarius_M_N : N ; - birotus_A : A ; - birretum_N_N : N ; - birrum_N_N : N ; - birrus_M_N : N ; - bisaccium_N_N : N ; - bisacutus_A : A ; - bisacutus_M_N : N ; - bisaetus_A : A ; - bisbellio_F_N : N ; - biscoctus_M_N : N ; - biselliarius_M_N : N ; - biselliatus_M_N : N ; - bisellium_N_N : N ; - bisetus_A : A ; - bisextialis_A : A ; - bisextilis_A : A ; - bisextum_N_N : N ; - bisextus_M_N : N ; - bismuthum_N_N : N ; - bisolis_A : A ; - bisomum_N_N : N ; - bisomus_A : A ; - bison_M_N : N ; - bisonus_A : A ; - bispellio_F_N : N ; - bissa_F_N : N ; - bisse_N : N ; - bissextilis_A : A ; - bissextum_N_N : N ; - bissextus_A : A ; - bistropha_F_N : N ; - bisulcilinguus_A : A ; - bisulcis_A : A ; - bisulcum_N_N : N ; - bisulcus_A : A ; - bisyllabus_A : A ; - bithalassus_A : A ; - bito_V : V ; - bitumen_N_N : N ; - bituminatus_A : A ; - bitumineus_A : A ; - bitumino_V2 : V2 ; - bituminosus_A : A ; - biurus_M_N : N ; - bivertex_A : A ; - bivia_F_N : N ; - bivira_F_N : N ; - bivirga_F_N : N ; - bivium_N_N : N ; - bivius_A : A ; - blachnon_N_N : N ; - blactero_V : V ; - bladium_N_N : N ; - bladum_N_N : N ; - bladus_M_N : N ; - blaesus_A : A ; - blaesus_M_N : N ; - blande_Adv : Adv ; - blandicellum_N_N : N ; - blandicule_Adv : Adv ; - blandidicus_A : A ; - blandiens_M_N : N ; - blandificus_A : A ; - blandifluus_A : A ; - blandiloquens_A : A ; - blandiloquentia_F_N : N ; - blandiloquentulus_A : A ; - blandiloquium_N_N : N ; - blandiloquus_A : A ; - blandimentum_N_N : N ; - blandio_V : V ; - blandior_V : V ; - blanditer_Adv : Adv ; - blanditia_F_N : N ; - blandities_F_N : N ; - blanditim_Adv : Adv ; - blanditor_M_N : N ; - blanditus_A : A ; - blando_Adv : Adv ; - blandulus_A : A ; - blandum_Adv : Adv ; - blandus_A : A ; - blapsigonia_F_N : N ; - blasphemabilis_A : A ; - blasphematio_F_N : N ; - blasphemia_F_N : N ; - blasphemo_V : V ; - blasphemus_A : A ; - blasphemus_M_N : N ; - blateratio_F_N : N ; - blateratus_M_N : N ; - blatero_M_N : N ; - blatero_V : V ; - blatio_V : V ; - blatium_N_N : N ; - blatta_F_N : N ; - blattaria_F_N : N ; - blattarius_A : A ; - blattea_F_N : N ; - blattero_M_N : N ; - blattero_V : V ; - blatteus_A : A ; - blattiarius_M_N : N ; - blattifer_A : A ; - blatto_V : V ; - blatum_N_N : N ; - blavetum_N_N : N ; - blavius_A : A ; - blavus_A : A ; - blechnon_F_N : N ; - blechon_F_N : N ; - bleium_N_N : N ; - blendea_F_N : N ; - blendium_N_N : N ; - blendius_M_N : N ; - blennius_M_N : N ; - blennus_A : A ; - blennus_M_N : N ; - blepharon_N_N : N ; - blevetum_N_N : N ; - bliteum_N_N : N ; - bliteus_A : A ; - blitum_N_N : N ; - blodius_A : A ; - blovetum_N_N : N ; - blovius_A : A ; - boa_F_N : N ; - boarius_A : A ; - boatus_M_N : N ; - bobsequa_M_N : N ; - boca_F_N : N ; - bocas_F_N : N ; - boethus_M_N : N ; - boia_F_N : N ; - boicotizo_V : V ; - bolarium_N_N : N ; - bolbine_F_N : N ; - bolbiton_N_N : N ; - boletar_N_N : N ; - boletatio_F_N : N ; - boletus_M_N : N ; - bolis_F_N : N ; - bolites_M_N : N ; + benivolens_M_N : N ; -- [XXXCO] :: friend, well-wisher, kind-heart; + benivolentia_F_N : N ; -- [XXXCO] :: benevolence, kindness, goodwill; favor; endearments; + benivolus_A : A ; -- [XXXCO] :: well-wishing, kind, benevolent, friendly, devoted; + benivolus_M_N : N ; -- [XXXCO] :: well-wisher, friend; + benna_F_N : N ; -- [XXFFS] :: kind of carriage (wickerwork?); (Gallic); + benzinarium_N_N : N ; -- [GXXEK] :: petrol tank; + benzinarius_M_N : N ; -- [GXXEK] :: pump-attendant; + benzinum_N_N : N ; -- [GXXEK] :: petrol; + beo_V2 : V2 ; -- [XXXCO] :: bless, make happy, gladden, delight; enrich (with); + berbex_M_N : N ; -- [XXXCO] :: wether (castrated male sheep); stupid/sluggish person; + bergomagister_M_N : N ; -- [ELXEM] :: bergomeister; mayor; + berillus_M_N : N ; -- [XXXCS] :: beryl; [berylius aeroides => sapphire (L+S)]; + berna_M_N : N ; -- [FLXFM] :: slave; servant; + bernus_M_N : N ; -- [FLXFM] :: serf; + berula_F_N : N ; -- [DAXFS] :: herb (also called cardamine); + berullus_M_N : N ; -- [XXXCO] :: beryl; [berylius aeroides => sapphire (L+S)]; + bervex_M_N : N ; -- [XXXCO] :: wether (castrated male sheep); stupid/sluggish person; + beryllos_M_N : N ; -- [XXXCO] :: beryl; [berylius aeroides => sapphire (L+S)]; + beryllus_M_N : N ; -- [XXXCO] :: beryl; [berylius aeroides => sapphire (L+S)]; + bes_M_N : N ; -- [XXXDX] :: two thirds of any whole; [ex bese => in ratio of 2:3; or 8, 2/3 of 12]; + besalis_A : A ; -- [XXXEO] :: two thirds; of small value; (often means eight, as 2/3 of 12 mos. L+S); + bessalis_A : A ; -- [XXXEO] :: two thirds; of small value; (often means eight, as 2/3 of 12 mos. L+S); + bestia_F_N : N ; -- [XAXBO] :: beast, animal, creature; wild beast/animal, beast of prey in arena; + bestialis_A : A ; -- [DAXFS] :: bestial, like a beast; fierce; + bestialitas_F_N : N ; -- [FEXFE] :: bestiality; + bestiarius_A : A ; -- [DAXFS] :: of/with/pertaining to beasts; + bestiarius_M_N : N ; -- [XXXDO] :: fighter with wild beasts at public shows; + bestiola_F_N : N ; -- [XAXCO] :: little creature, insect; + beta_F_N : N ; -- [XAXCO] :: beet, beetroot; + beta_N : N ; -- [XXHEO] :: beta (second letter of Greek alphabet); second of anything, second item; + betaceus_A : A ; -- [XAXEO] :: of/from/pertaining to a beet; + betaceus_M_N : N ; -- [XAXES] :: beetroot; + beth_N : N ; -- [DEQEW] :: bet; (2nd letter of Hebrew alphabet); (transliterate as B and V); + betis_F_N : N ; -- [XAXCS] :: beet, beetroot; + betisso_V : V ; -- [XXXFS] :: be languid (soft as a beet); + betizo_V : V ; -- [XXXFO] :: be languid (soft as a beet); + beto_V : V ; -- [XXXFO] :: go; + betula_F_N : N ; -- [XAXNS] :: birch tree; + betulla_F_N : N ; -- [XAXNO] :: birch tree; + biaeothanatus_A : A ; -- [DXXFS] :: dying by violence; that dies a violent death; + biarchia_F_N : N ; -- [DXXES] :: office of biarchus, commissaryship; + biarchus_M_N : N ; -- [DXXES] :: commissary, superintendent of provisions; + bibale_N_N : N ; -- [GXXEK] :: gratuity; + bibax_A : A ; -- [XXXFO] :: that is given to drinking, given to drink; + biberarius_M_N : N ; -- [XXXFO] :: drink seller; + bibilis_A : A ; -- [DXXFS] :: drinkable, potable; + bibio_M_N : N ; -- [EAXES] :: small insect generated in wine; + bibitor_M_N : N ; -- [XXXIO] :: drinker; tippler; + biblicus_A : A ; -- [EEXEE] :: biblical; + biblinus_A : A ; -- [DXEFS] :: made of Egyptian papyrus; + bibliographia_F_N : N ; -- [GXXEK] :: bibliography; + bibliographicus_A : A ; -- [GXXEK] :: bibliographic; + bibliographus_M_N : N ; -- [GXXEK] :: copyist; + bibliopegus_M_N : N ; -- [GXXEK] :: bookbinder; + bibliopola_M_N : N ; -- [XXXEO] :: bookseller; + bibliopolium_N_N : N ; -- [GXXEK] :: bookstore; + bibliotheca_F_N : N ; -- [XXXCO] :: library (either collection of books or the building, also person in charge); + bibliothecalis_A : A ; -- [DXXFS] :: of/belonging to a library (either collection of books or the building); + bibliothecarius_M_N : N ; -- [XXXFO] :: librarian; + bibliothece_F_N : N ; -- [XXXCO] :: library (either collection of books or the building, also person in charge); + bibliothecula_F_N : N ; -- [DXXFS] :: small library/collection of books; + biblus_F_N : N ; -- [XXEFO] :: Egyptian papyrus; + bibo_M_N : N ; -- [XXXFS] :: hard drinker, tippler, drunkard; kind of worm bread in wine; + bibo_V2 : V2 ; -- [XXXAO] :: drink; toast; visit, frequent (w/river name); drain, draw off; thirst for; suck; + bibonius_M_N : N ; -- [DXXFS] :: hard drinker, tippler, drunkard; + bibosus_A : A ; -- [XXXEO] :: addicted/given to drink, fond of drink; + bibrevis_A : A ; -- [DPXFS] :: having meter consisting of two short syllables; + bibulus_A : A ; -- [XXXCO] :: fond of drinking, ever thirsty; soaking, sodden; spongy, absorbent, porous; + bicallis_M_N : N ; -- [FXXEN] :: foot-path, path; + bicameratum_N_N : N ; -- [DTXES] :: receptacle with two compartments; + bicameratus_A : A ; -- [DTXES] :: double vaulted/arched; + bicaps_A : A ; -- [XXXIO] :: two-headed; with two summits; having two parts, two-fold; + biceps_A : A ; -- [XXXCO] :: two-headed; with two summits; having two parts, two-fold; + bicepsos_A : A ; -- [XXXFS] :: two-headed; with two summits; having two parts, two-fold; + bicessis_M_N : N ; -- [XXXES] :: twenty asses (money); + bicinium_N_N : N ; -- [DDXFS] :: duet; + bicips_A : A ; -- [BXXDS] :: two-headed; with two summits; having two parts, two-fold; + biclinium_N_N : N ; -- [XXXEO] :: dining couch for two persons; + bicodulus_A : A ; -- [XAXFO] :: having two tails; + bicolor_A : A ; -- [XXXCO] :: of two colors; + bicolorus_A : A ; -- [DXXCS] :: of two colors; + bicomis_A : A ; -- [DAXFS] :: with hair/bristles down on both sides of neck, with double mane (horses); + bicornis_A : A ; -- [XXXCO] :: two-horned; two-pronged; having two points; having two peaks (mountain); + bicornis_M_N : N ; -- [XEXFS] :: horned animals (pl.) sacrifice; + bicorpor_A : A ; -- [XXXEO] :: double-bodied, having two bodies; + bicors_A : A ; -- [DXXES] :: having two hearts; dissembling, false, treacherous; + bicoxus_A : A ; -- [XXXFS] :: having two thighs/hips; having two haunches; + bicrotum_N_N : N ; -- [XWXCO] :: light galley, perhaps propelled by two banks of oars; + bicubitalis_A : A ; -- [DXXES] :: of two cubits length; + bicubitalus_A : A ; -- [DXXES] :: of two cubits length; + bidens_A : A ; -- [XAXCO] :: two-pronged; with two teeth; two bladed; having two permanent teeth; + bidens_F_N : N ; -- [XEXCO] :: animal for sacrifice (esp. sheep); + bidens_M_N : N ; -- [XAXCO] :: heavy hoe, mattock with two iron teeth; + bidental_N_N : N ; -- [XEXCO] :: place struck by lightning where forbidden to tread; sacrifice offered there; + bidentalis_A : A ; -- [XEXIO] :: of sacred place (place struck by lightning) or of sacrifice offered there; + bidentatio_F_N : N ; -- [XAXFS] :: harrowing; (working ground with bidens, heavy mattock); breaking/tearing up; + biduanus_A : A ; -- [FXXFE] :: continuing for two days, for a period of two days; of/for two days; + biduum_N_N : N ; -- [XXXCO] :: two days (period of ...); + biduus_A : A ; -- [XXXFS] :: continuing for two days, of/for two days; + biennalis_A : A ; -- [DXXES] :: continuing for two years, over two years; of two years; + biennis_A : A ; -- [XXXFO] :: two years old; lasting two years; + biennium_N_N : N ; -- [XXXCO] :: two years (period of ...); + bifaciatus_A : A ; -- [EXXFE] :: two-faced; two-sided, having two sides; + bifariam_Adv : Adv ; -- [XXXCO] :: in two parts/places/ways, on two sides; + bifarius_A : A ; -- [DXXES] :: twofold, double; + bifax_A : A ; -- [DXXFS] :: two-faced; + bifer_A : A ; -- [XAXCO] :: bearing twice, bearing fruit or flowers twice a year; + biferus_A : A ; -- [XAXEO] :: compounded of two animals, two-fold form; heterogeneous; + bifestus_A : A ; -- [DEXFS] :: doubly festive; [~ dies => twofold festival]; + bifidatus_A : A ; -- [DXXFS] :: cloven, cleft, forked; divided in two parts; + bifidus_A : A ; -- [XXXCO] :: cloven, cleft, forked; divided in two parts; + bifilum_N_N : N ; -- [DXXFS] :: double thread; + bifissus_A : A ; -- [DXXES] :: cloven, cleft, forked; divided in two parts; + biforis_A : A ; -- [XXXDO] :: having two leaves/casements (door/window)/openings, folding; from a double pipe; + biformatus_A : A ; -- [XXXFO] :: of double form, two formed; consisting of two parts/forms; + biformis_A : A ; -- [XXXCO] :: of double form, two formed; consisting of two parts/forms; two-faced (Janus); + biformitas_F_N : N ; -- [FXXEZ] :: double-fullness; + biforus_A : A ; -- [XXXDO] :: having two leaves/casements (door/window)/openings, folding; from a double pipe; + bifrons_A : A ; -- [XXXFO] :: two-faced, with/having two faces; having two foreheads; having two sides; + bifurcum_N_N : N ; -- [XXXEO] :: fork; point at which anything forks; fork of thighs, crotch; + bifurcus_A : A ; -- [XXXEO] :: two-forked, two pronged, bifurcated; + biga_F_N : N ; -- [XXXCO] :: two-horsed chariot (pl.); span/pair of horses; pair harnessed to an open car; + bigamia_F_N : N ; -- [FEXEE] :: bigamy; + bigamus_A : A ; -- [DXXES] :: twice married; + bigamus_M_N : N ; -- [FEXEE] :: bigamist; + bigarius_M_N : N ; -- [XXXIO] :: driver of a two-horse chariot (bigae); + bigatus_A : A ; -- [XXXEO] :: stamped (coin) with a representation of bigae (two-horsed chariot); + bigatus_M_N : N ; -- [XXXCS] :: silver coin with a representation of bigae (two-horsed chariot); + bigeminus_A : A ; -- [DXXFS] :: doubled; + bigemmis_A : A ; -- [XXXFO] :: having two buds; set with two precious stones; + bigener_A : A ; -- [XXXFO] :: from two different races, hybrid, mongrel; + bigenus_A : A ; -- [GXXEK] :: hybrid; + bigna_F_N : N ; -- [XXXFO] :: twins (pl.) (female); + bigus_A : A ; -- [XXXFS] :: yoked two together; (contraction of biiugus); + bijugis_A : A ; -- [XXXCO] :: two horsed; yoked two abreast; from a chariot; + bijugis_M_N : N ; -- [XXXEO] :: horses (pl.) yoked two abreast; two brothers; consuls from same family (L+S); + bijugus_A : A ; -- [XXXCO] :: two horsed; yoked two abreast; double, a pair of; for two horse chariots; + bijugus_M_N : N ; -- [XXXEO] :: horses (pl.) yoked two abreast; two brothers; consuls from same family (L+S); + bikinianus_A : A ; -- [GXXEK] :: bikini-like; + bilanx_A : A ; -- [DXXFS] :: having two scales (balance); + bilateralis_A : A ; -- [FXXFE] :: bilateral; mutual; + bilbo_V : V ; -- [DXXFS] :: make a noise like a liquid agitated in a vessel; (slosh?); + bilibra_F_N : N ; -- [XSXFS] :: two pounds; (two Roman pounds equals about one and a half US pounds); + bilibralis_A : A ; -- [DSXES] :: two-pound, weighing/containing two pounds; (2 Roman pounds = one and a half US); + bilibris_A : A ; -- [XSXDO] :: two-pound, weighing/containing two pounds; (2 Roman pounds = one and a half US); + bilinguis_A : A ; -- [XXXCO] :: two-tongued, speaking two/jumbled languages; treacherous, false, hypocritical; + biliosus_A : A ; -- [XXXCO] :: full of bile, bilious; + bilis_F_N : N ; -- [XXXBO] :: gall, bile; wrath, anger, indignation; madness, melancholy, folly; + bilix_A : A ; -- [XXXFO] :: having two threads; with a double thread, double/two threaded; + bilocatio_F_N : N ; -- [FXXFE] :: bilocation, fact/power of being in two places at once; + bilongus_A : A ; -- [XPXFS] :: doubly long; [~ pes => consisting of two long syllables]; + bilustris_A : A ; -- [XXXFO] :: lasting two lustres, lasting 10 years; + bilychnis_A : A ; -- [XXXEO] :: having two lights/wicks; + bimammiis_A : A ; -- [XAXNO] :: having two breasts; double bosomed; (said of grapes growing in pairs); + bimaris_A : A ; -- [XXXCO] :: situated between two seas; of/connected with two seas; (of Corinth); + bimaritus_M_N : N ; -- [XXXFO] :: bigamist, a husband having two wives; + bimater_A : A ; -- [XXXEO] :: having two mothers; twice born (of Bacchus); + bimatris_A : A ; -- [XXXES] :: having two mothers; twice born (of Bacchus); + bimatus_A : A ; -- [XXXIO] :: two years old; + bimatus_M_N : N ; -- [XXXEO] :: two years of age; (of animals); + bimembris_A : A ; -- [XXXCO] :: having limbs of two kinds, part man part beast; + bimembris_M_N : N ; -- [XXXEO] :: Centaurs (pl.); part man part beast; + bimenstris_A : A ; -- [XXXCO] :: two months old; of/for/lasting two months; + bimenstruus_A : A ; -- [XXXES] :: two months old; of/for/lasting two months; + bimestre_Adv : Adv ; -- [EXXFE] :: bimestrially, every two months; + bimestris_A : A ; -- [XXXCO] :: two months old; of/lasting two months; occurring every two months; + bimeter_A : A ; -- [DPXFS] :: consisting of two meters (poem, literary work); + bimotorius_A : A ; -- [GXXEK] :: twin-motor; + bimulus_A : A ; -- [XXXEO] :: two years old (only/a mere); + bimus_A : A ; -- [XXXBO] :: two years old; for/lasting two years; + binarius_A : A ; -- [DXXES] :: consisting of/containing two; [~ formae => coins of value 2 gold pieces]; + binatio_F_N : N ; -- [FXXFE] :: duplication; + binio_M_N : N ; -- [DXXES] :: number two; a deuce; + bino_V2 : V2 ; -- [FEXFE] :: duplicate; binate (offer two masses in one day); + binoctium_N_N : N ; -- [XXXFO] :: period of two nights; + binoculum_N_N : N ; -- [GXXEK] :: binoculars; + binominis_A : A ; -- [XXXCO] :: having two names; + binubus_M_N : N ; -- [DXXFS] :: doubly married man; (remarried or bigamist?); + binus_A : A ; -- [XXXEO] :: two by two; 2 each; in pairs; 2 at time; on 2 occasions; double, twofold; + biographia_F_N : N ; -- [GXXEK] :: biography; + biographicus_A : A ; -- [GXXEK] :: biographic; + biologia_F_N : N ; -- [HSXFE] :: biology; + biologicus_A : A ; -- [HSXFE] :: biological; + biologus_M_N : N ; -- [GXXEK] :: biologist; + biometria_F_N : N ; -- [HSXEK] :: biometry; + biometricus_A : A ; -- [HSXEK] :: biometric; + biopsia_F_N : N ; -- [GBXEK] :: biopsy; + bios_M_N : N ; -- [XAHNS] :: wine (celebrated and wholesome Greek wine L+S); + biosphaera_F_N : N ; -- [GSXEK] :: biosphere; + biotechnicus_M_N : N ; -- [HSXEK] :: biotechnician; + biothanatus_A : A ; -- [DXXFS] :: dying by violence; that dies a violent death; + bioticus_A : A ; -- [DXXCS] :: of/belonging to/associated with/used in common life, common; practical; + biotopium_N_N : N ; -- [GXXEK] :: biotope; smallest subdivision of a habitat (having high uniformity); + bipalium_N_N : N ; -- [XAXDO] :: bimattock, double mattock, implement for double-digging/trenching; + bipalmis_A : A ; -- [XXXEO] :: two palms/spans (long/broad - 6 inches, Roman foot being 4 palmi); + bipalmus_A : A ; -- [DXXES] :: two palms/spans (long/broad - 6 inches, Roman foot being 4 palmi); + bipartio_V2 : V2 ; -- [XXXES] :: divide in two parts; bisect; divide; + bipartitio_F_N : N ; -- [XXXFO] :: twofold division; dividing in two, split; + bipartito_Adv : Adv ; -- [XXXCO] :: in two parts/divisions/ways/directions; [esse ~ => to be divided]; + bipartitus_A : A ; -- [XXXCO] :: bipartite, that is divided in two parts; double (Ecc); + bipatens_A : A ; -- [XXXEO] :: opening two ways; open in two directions; having both leaves open, wide open; + bipeda_F_N : N ; -- [DTXFS] :: tile/flagstone two feet long (for pavements); + bipedale_N_N : N ; -- [DTXFS] :: tile/flagstone two feet long (for pavements); + bipedalis_A : A ; -- [XXXCO] :: two feet long, wide or thick, measuring two feet; + bipedalium_N_N : N ; -- [XXXFO] :: distance/depth of two feet, two feet; + bipedaneus_A : A ; -- [XXXDO] :: two feet long, wide or thick, measuring two feet; + bipennifer_A : A ; -- [XXXEO] :: bearing a two edged axe; + bipennis_A : A ; -- [XXXDO] :: two-edged; having two wings; + bipennis_F_N : N ; -- [XWXCO] :: two edged ax; battle ax; + bipensilis_A : A ; -- [XXXFS] :: that may be suspended on two sides; + bipertio_V2 : V2 ; -- [XXXEO] :: divide in two parts; bisect; divide; + bipertitio_F_N : N ; -- [XXXFO] :: twofold division; dividing in two, split; + bipertito_Adv : Adv ; -- [XXXCO] :: in two parts/divisions/ways; [esse ~ => to be divided]; + bipertitus_A : A ; -- [XXXCO] :: bipartite, that is divided in two parts; double (Ecc); + bipes_A : A ; -- [XXXCO] :: two-footed; bipedal; on two feet (of quadrupeds); + bipinnis_A : A ; -- [XXXDO] :: two-edged; having two wings; + bipinnis_F_N : N ; -- [XWXCO] :: two edged ax; battle ax; + biplex_A : A ; -- [DXXFS] :: twofold, double; divided; two-faced; + biprorus_A : A ; -- [XWXFO] :: having two prows (ship), double-ended; + biprosopum_N_N : N ; -- [XBXIO] :: kind of salve or plaster; + biprosopus_M_N : N ; -- [XBXIO] :: kind of salve or plaster; + bipunctum_N_N : N ; -- [GGXEK] :: colon; + biremis_A : A ; -- [XWXEO] :: two-oared; having two oars to each bench/banks of oars; having two oars (L+S); + biremis_F_N : N ; -- [XWXCO] :: bireme, vessel having 2 oars to each bench/2 banks of oars; 2-oared boat (L+S); + biretum_N_N : N ; -- [FEXEE] :: biretta/square Catholic clergy hat; (priest=black; bishop=purple; cardinal=red); + birota_F_N : N ; -- [DXXES] :: two-wheeled vehicle, cabriolet; bicycle (Cal); + birotarius_M_N : N ; -- [GXXEK] :: bicyclist; + birotus_A : A ; -- [DXXES] :: two-wheeled, with/having two wheels; + birretum_N_N : N ; -- [FEXEE] :: biretta/square Catholic clergy hat; (priest/black; bishop/purple; cardinal/red); + birrum_N_N : N ; -- [DXXES] :: cloak (wool/silk) to keep off rain; + birrus_M_N : N ; -- [DXXES] :: cloak (wool/silk) to keep off rain; + bisaccium_N_N : N ; -- [XXXFO] :: double bag; pair of saddle bags; + bisacutus_A : A ; -- [FXXEM] :: two-edged; twibill; + bisacutus_M_N : N ; -- [FXXEM] :: two-edged axe; + bisaetus_A : A ; -- [XAXFO] :: with hair/bristles down on both sides of neck, with double mane (horses); + bisbellio_F_N : N ; -- [DXXFS] :: man with two skins; cunning man; + biscoctus_M_N : N ; -- [GXXEK] :: toast; + biselliarius_M_N : N ; -- [XXXIO] :: one entitled to sit on bisellium seat (honor awarded for services in provinces); + biselliatus_M_N : N ; -- [XXXIO] :: right/honor to sit on bisellium seat (honor awarded for services in provinces); + bisellium_N_N : N ; -- [XXXIO] :: seat for two persons; seat of honor awarded for municipal services in provinces; + bisetus_A : A ; -- [XAXFS] :: with hair/bristles down on both sides of neck, with double mane (horses); + bisextialis_A : A ; -- [DSXES] :: of two sextarii (about two pints); 1/3 congius (liquid); 1/8 modius (dry); + bisextilis_A : A ; -- [EXXFE] :: leap (year); intercalary; (two "sixth" days before first/calends of March); + bisextum_N_N : N ; -- [XXXEO] :: two day period of 24 Feb. and leap year intercalary day (Julian calendar); + bisextus_M_N : N ; -- [XXXFS] :: intercalary day; + bismuthum_N_N : N ; -- [GSXEK] :: bismuth; + bisolis_A : A ; -- [DXXFS] :: having two soles (foot); + bisomum_N_N : N ; -- [DXXFS] :: sarcophagus for two persons; + bisomus_A : A ; -- [DXXFE] :: for/having two bodies; (of sarcophagus for two persons); + bison_M_N : N ; -- [XAXEO] :: bison; wild ox; + bisonus_A : A ; -- [DXXES] :: sounding twice; + bispellio_F_N : N ; -- [DXXFS] :: man with two skins; cunning man; + bissa_F_N : N ; -- [FAXEM] :: female deer; + bisse_N : N ; -- [FXXEM] :: forty minutes (pl.); + bissextilis_A : A ; -- [EXXFE] :: leap (year); (two "sixth" days before first/calends of March); + bissextum_N_N : N ; -- [XXXEO] :: two day period of 24 Feb. and leap year intercalary day (Julian calendar); + bissextus_A : A ; -- [XXXFE] :: leap (year); (two "sixth" days before first/calends of March); + bistropha_F_N : N ; -- [FDXFE] :: two musical notes of same pitch; + bisulcilinguus_A : A ; -- [XXXFS] :: with forked tongue; hypocritical/deceitful/lying (person); (snake-like); + bisulcis_A : A ; -- [XXXCO] :: forked, divided into two parts; cloven-footed, cloven; + bisulcum_N_N : N ; -- [XAXNO] :: cloven-footed animal; + bisulcus_A : A ; -- [XXXCO] :: forked, divided into two parts; cloven-footed; + bisyllabus_A : A ; -- [XGXFO] :: disyllabic; + bithalassus_A : A ; -- [EXHFP] :: w/two seas touching/bounding; where two seas meet (Rheims); between two seas; + bito_V : V ; -- [BXXCO] :: go; + bitumen_N_N : N ; -- [XXXCO] :: bitumen, pitch, asphalt (generic name for various hydrocarbons); + bituminatus_A : A ; -- [XXXNO] :: tinctured/impregnated with bitumen (generic for hydrocarbons); bituminous; + bitumineus_A : A ; -- [XXXFO] :: of/connected with bitumen (generic name for various hydrocarbons); + bitumino_V2 : V2 ; -- [DTXES] :: cover/impregnate with bitumen/tar; tar; + bituminosus_A : A ; -- [XXXEO] :: abounding in bitumen (generic name for various hydrocarbons); + biurus_M_N : N ; -- [XAINS] :: rodent found in Campania (central Italy); + bivertex_A : A ; -- [XXXFO] :: having two summits/peaks; + bivia_F_N : N ; -- [XEXIO] :: goddesses worshiped at crossroads; + bivira_F_N : N ; -- [XXXFO] :: woman who has two husbands; woman married to a second husband (L+S); + bivirga_F_N : N ; -- [FDXFE] :: two square and tailed musical notes; + bivium_N_N : N ; -- [XXXCO] :: meet of 2 roads, crossroad; fork in road; 2 alternatives; [~ portae=> gateway]; + bivius_A : A ; -- [XXXFO] :: traversable both ways; having two approaches; + blachnon_N_N : N ; -- [XAXNO] :: male fern; + blactero_V : V ; -- [XAXNS] :: bleat (of a ram/sheep); + bladium_N_N : N ; -- [FABFM] :: grain; (esp. wheat); + bladum_N_N : N ; -- [FABEM] :: grain; (esp. wheat); + bladus_M_N : N ; -- [FABFM] :: grain; (esp. wheat); + blaesus_A : A ; -- [XXXCO] :: lisping, stammering; indistinct; mispronouncing from speech defect/drunkenness; + blaesus_M_N : N ; -- [XXXES] :: one who stammers/lisps; (said of intoxicated persons); + blande_Adv : Adv ; -- [XXXCO] :: in coaxing/winning manner, charmingly, persuasively, seductively; + blandicellum_N_N : N ; -- [XXXFO] :: flattering words (pl.); + blandicule_Adv : Adv ; -- [XXXFO] :: charmingly; + blandidicus_A : A ; -- [XXXFO] :: using fair/flattering words, smooth spoken/talking; + blandiens_M_N : N ; -- [XXXFS] :: flatterer; sweet talker; + blandificus_A : A ; -- [XXXFS] :: flattering; soothing; + blandifluus_A : A ; -- [XXXFS] :: flowing/diffusing sweetly/pleasantly (odor); + blandiloquens_A : A ; -- [XXXFO] :: charming/persuasive (of speech), smooth talking; + blandiloquentia_F_N : N ; -- [XXXFO] :: charming/persuasive speech, smooth talking; + blandiloquentulus_A : A ; -- [XXXFO] :: charming/persuasive in speech, smooth talking; + blandiloquium_N_N : N ; -- [XXXFS] :: soft words; flattering speech; + blandiloquus_A : A ; -- [XXXFO] :: charming/persuasive in speech, smooth talking; + blandimentum_N_N : N ; -- [XXXBO] :: blandishment, coaxing/wheedling behavior, cajolery; favors; charm, delight; + blandio_V : V ; -- [XXXBO] :: flatter, delude; fawn; coax, urge, behave/speak ingratiatingly; allure; please; + blandior_V : V ; -- [XXXBO] :: flatter, delude; fawn; coax, urge, behave/speak ingratiatingly; allure; please; + blanditer_Adv : Adv ; -- [XXXEO] :: in coaxing/winning manner, charmingly, persuasively, seductively; + blanditia_F_N : N ; -- [XXXCO] :: flattery, caress, compliment; charm (pl.), flatteries, enticement, courtship; + blandities_F_N : N ; -- [XXXCO] :: flattery, caress, compliment; charm (pl.), flatteries, enticement, courtship; + blanditim_Adv : Adv ; -- [XXXFS] :: in a flattering/caressing manner; + blanditor_M_N : N ; -- [DXXES] :: flatterer; + blanditus_A : A ; -- [XXXFS] :: pleasant, agreeable, charming; + blando_Adv : Adv ; -- [XXXFO] :: in coaxing/winning manner, charmingly, persuasively, seductively; + blandulus_A : A ; -- [XXXEO] :: charming; pleasant; + blandum_Adv : Adv ; -- [XXXFS] :: in coaxing/winning manner, charmingly, persuasively, seductively; + blandus_A : A ; -- [XXXAO] :: flattering, coaxing; charming, pleasant; smooth, gentle; alluring, attractive; + blapsigonia_F_N : N ; -- [XAXNO] :: disease which prevents bees from breeding (foul brood?); + blasphemabilis_A : A ; -- [DEXES] :: that deserves reproach; censurable; + blasphematio_F_N : N ; -- [DEXES] :: censure, reproach, reviling; + blasphemia_F_N : N ; -- [EEXCS] :: blasphemy (against God); slander; reviling; + blasphemo_V : V ; -- [EEXCS] :: blaspheme (against God); revile; reproach; + blasphemus_A : A ; -- [DEXCS] :: reviling, defaming; + blasphemus_M_N : N ; -- [DEXCS] :: blasphemer; + blateratio_F_N : N ; -- [DXXES] :: babbling, prattle; + blateratus_M_N : N ; -- [DXXES] :: babbling, prattle; + blatero_M_N : N ; -- [XXXFO] :: prater, babbler; + blatero_V : V ; -- [XXXCO] :: prate, babble; utter in a babbling way; (applied to sounds of certain animals); + blatio_V : V ; -- [XXXEO] :: prate, babble; utter in a babbling way; (applied to sounds of certain animals); + blatium_N_N : N ; -- [FABFM] :: sheaf; measure of grain; + blatta_F_N : N ; -- [XAXCO] :: cockroach, moth, book-worm; (applied to various insects); + blattaria_F_N : N ; -- [XAXNO] :: species of Verbasceum (moth mullein?); + blattarius_A : A ; -- [XAXFO] :: connected with/suitable for moths; + blattea_F_N : N ; -- [DXXFS] :: purple, (color of a blood); + blattero_M_N : N ; -- [XXXFO] :: prater, blabber; + blattero_V : V ; -- [XXXCO] :: prate, babble; utter in a babbling way; (applied to sounds of certain animals); + blatteus_A : A ; -- [DXXES] :: purple, purple colored; + blattiarius_M_N : N ; -- [DXXES] :: dyer in purple; + blattifer_A : A ; -- [DXXES] :: wearing purple, clothed in purple; + blatto_V : V ; -- [XXXCO] :: prate, babble; utter in a babbling way; (applied to sounds of certain animals); + blatum_N_N : N ; -- [FABFM] :: crop; standing grain; + blavetum_N_N : N ; -- [FXXEM] :: bluet, blue cloth/garment; + blavius_A : A ; -- [FXXEM] :: blue; + blavus_A : A ; -- [FXXEM] :: blue; + blechnon_F_N : N ; -- [XAXNS] :: wild pennyroyal; + blechon_F_N : N ; -- [XAXNO] :: wild pennyroyal; + bleium_N_N : N ; -- [FABFM] :: grain; (esp. wheat); + blendea_F_N : N ; -- [XAXNS] :: small sea-fish, blenny; + blendium_N_N : N ; -- [XAXNO] :: small sea-fish, blenny; + blendius_M_N : N ; -- [XAXNO] :: small sea-fish, blenny; + blennius_M_N : N ; -- [XAXNS] :: small sea-fish, blenny; + blennus_A : A ; -- [XXXEO] :: driveling, slavering, dribbling; silly, childish, idiotic; + blennus_M_N : N ; -- [DXXES] :: blockhead, dolt, simpleton, imbecile; driveling idiot; + blepharon_N_N : N ; -- [XXXNO] :: eyelid (? Greek); [Chariton blepharon => kind of coral?]; + blevetum_N_N : N ; -- [FXXEM] :: bluet, blue cloth/garment; + bliteum_N_N : N ; -- [XXXFO] :: tasteless/worthless/useless stuff, trash; + bliteus_A : A ; -- [XXXFO] :: tasteless, insipid; worthless, useless; + blitum_N_N : N ; -- [XAXDO] :: kind of spinach, blite (Amaranthus blitum) (tasteless, used for salad L+S); + blodius_A : A ; -- [FXXFM] :: blue; + blovetum_N_N : N ; -- [FXXEM] :: bluet, blue cloth/garment; + blovius_A : A ; -- [FXXEM] :: blue; + boa_F_N : N ; -- [XAXNO] :: large Italian snake; water serpent; disease with pustules (measles/smallpox); + boarius_A : A ; -- [XXXCO] :: of oxen/cattle; [forum boarium => cattle market at Rome]; + boatus_M_N : N ; -- [XXXFO] :: shouting, roaring, bellowing, loud crying; + bobsequa_M_N : N ; -- [DAXES] :: herdsman, cow-herd; + boca_F_N : N ; -- [XAXNO] :: fish (bogue or boce) (Box vulgaris); + bocas_F_N : N ; -- [XAXFO] :: fish (bogue or boce) (Box vulgaris); + boethus_M_N : N ; -- [DLXES] :: aid/assistant of a scribe; + boia_F_N : N ; -- [XXXEO] :: collar/yoke word by criminals (usu. pl. L+S); + boicotizo_V : V ; -- [GXXEK] :: boycott; + bolarium_N_N : N ; -- [XXXFO] :: little lump (e.g., in paint); + bolbine_F_N : N ; -- [XAXNO] :: kind of bulbous plant; + bolbiton_N_N : N ; -- [XAXNO] :: cow dung; + boletar_N_N : N ; -- [XXXFO] :: vessel for holding mushrooms (usu. pl.); vessel for cooking/eating (L+S); + boletatio_F_N : N ; -- [XXXFO] :: surfeit of mushrooms; + boletus_M_N : N ; -- [XAXCS] :: mushroom (best kind); bolet; + bolis_F_N : N ; -- [XSXNO] :: kind of meteor (large, fiery); + bolites_M_N : N ; -- [XAXNS] :: root of lychnis plant; boloe_F_N : N ; -- [XXXNS] :: precious stone; - boloe_M_N : N ; - bolona_M_N : N ; + boloe_M_N : N ; -- [XXXNS] :: precious stone; + bolona_M_N : N ; -- [DAXFS] :: fishmonger, dealer in fish; bolos_F_N : N ; -- [XXXNO] :: precious stone; - bolos_M_N : N ; - bolus_C_N : N ; - bolus_M_N : N ; - bomba_F_N : N ; - bombacinum_N_N : N ; - bombarda_F_N : N ; - bombardarius_M_N : N ; - bombardo_V : V ; - bombax_Interj : Interj ; - bombilo_V : V ; - bombinator_M_N : N ; - bombio_V : V ; - bombito_V : V ; - bombizatio_F_N : N ; - bombulum_N_N : N ; - bombus_M_N : N ; - bombycias_M_N : N ; - bombycinum_N_N : N ; - bombycinus_A : A ; - bombycium_N_N : N ; - bombycius_A : A ; - bombylis_F_N : N ; - bombylius_M_N : N ; + bolos_M_N : N ; -- [XXXNO] :: precious stone; + bolus_C_N : N ; -- [XXXNO] :: precious stone; + bolus_M_N : N ; -- [XXXCO] :: throw of dice; hard piece of luck; choice bit; catch (fish net), haul, profit; + bomba_F_N : N ; -- [GWXEK] :: bomb; + bombacinum_N_N : N ; -- [FXXEF] :: cotton; + bombarda_F_N : N ; -- [GWXEK] :: bombardment; + bombardarius_M_N : N ; -- [GWXEK] :: rifleman; + bombardo_V : V ; -- [GWXEK] :: bombard; + bombax_Interj : Interj ; -- [XXXFO] :: Splendid! Marvelous!; + bombilo_V : V ; -- [XXXFO] :: buzz, hum; + bombinator_M_N : N ; -- [DAXES] :: buzzer, hummer; (of bee); + bombio_V : V ; -- [XXXFO] :: buzz, hum; + bombito_V : V ; -- [XXXFS] :: buzz, hum; + bombizatio_F_N : N ; -- [DXXFO] :: buzzing (of bees); + bombulum_N_N : N ; -- [EBXEW] :: break wind; fart; + bombus_M_N : N ; -- [XXXCO] :: buzzing (esp. bees); booming, deep sound, rumble; + bombycias_M_N : N ; -- [XXXEO] :: reed suitable for making flutes; + bombycinum_N_N : N ; -- [XXXES] :: silk texture/web; silk garments (pl.), silks; + bombycinus_A : A ; -- [XXXEO] :: silken, of silk, silky; + bombycium_N_N : N ; -- [XXXEO] :: silky garments (pl.); silks; + bombycius_A : A ; -- [XXXEO] :: silky; (of reeds/harundines) suitable for making flutes; + bombylis_F_N : N ; -- [XAXNO] :: cocoon-enshrouded silkworm larva; bumble (Cal); + bombylius_M_N : N ; -- [DAXFS] :: cocoon-enshrouded silkworm larva; bumble bee (Cal); 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 ; - bonatus_A : A ; - bonifatus_A : A ; - bonitas_F_N : N ; - bonum_N_N : N ; - bonus_A : A ; - bonus_M_N : N ; - bonusculum_N_N : N ; - boo_V : V ; - boopes_F_N : N ; - boopis_A : A ; - borborygmus_M_N : N ; - boreale_N_N : N ; - borealis_A : A ; - boreotis_A : A ; - boreus_A : A ; - boria_F_N : N ; - borith_N : N ; - borius_A : A ; - borrio_V : V ; + bombyx_M_N : N ; -- [XAXDO] :: silkworm, silk-moth; silk; silk garment; any silk-like fine fiber (cotton); + bona_F_N : N ; -- [XXXES] :: good/moral/honest/brave woman; [Bona Dea => Roman goddess worshiped by women]; + bonasus_M_N : N ; -- [XAXNO] :: European bison (Bos bonasus), a species of wild ox (now almost extinct); + bonatus_A : A ; -- [XXXFO] :: good natured; + bonifatus_A : A ; -- [DXXFS] :: lucky, fortunate; + bonitas_F_N : N ; -- [XXXBO] :: goodness, integrity, moral excellence; kindness, benevolence, tenderness; + bonum_N_N : N ; -- [XXXAO] :: good, good thing, profit, advantage; goods (pl.), possessions, wealth, estate; + bonus_A : A ; -- [XXXAO] :: good, honest, brave, noble, kind, pleasant, right, useful; valid; healthy; + bonus_M_N : N ; -- [XXXCO] :: good/moral/honest/brave man; man of honor, gentleman; better/rich people (pl.); + bonusculum_N_N : N ; -- [DLXES] :: small possessions (pl.); a little/small estate; + boo_V : V ; -- [XXXCO] :: cry aloud, roar, bellow; call loudly upon; + boopes_F_N : N ; -- [DAXFS] :: plant (caerefolium); chervil (Anthiscus cerefolium) (OLD); (L+S says neuter); + boopis_A : A ; -- [XXXFO] :: having large eyes (feminine); + borborygmus_M_N : N ; -- [GXXEK] :: borborygm; + boreale_N_N : N ; -- [XXXFE] :: northern parts (pl.); + borealis_A : A ; -- [XXXFS] :: northern; pertaining to north wind; + boreotis_A : A ; -- [DXXFS] :: northern; + boreus_A : A ; -- [XXXEO] :: northern; pertaining to north wind; + boria_F_N : N ; -- [XXXNO] :: kind of jasper; + borith_N : N ; -- [DEXFS] :: soapwort, plant purifying like soap; (Hebrew); + borius_A : A ; -- [XXXES] :: northern; pertaining to north wind; + borrio_V : V ; -- [XXXFO] :: swarm; bos_F_N : N ; -- [XXXBO] :: ox; bull; cow; ox-ray; cattle (pl.); (ox-like animals); [luca ~ => elephant]; - bos_M_N : N ; + bos_M_N : N ; -- [XXXBO] :: ox; bull; cow; ox-ray; cattle (pl.); (ox-like animals); [luca ~ => elephant]; 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 ; - bostrychitis_F_N : N ; - bostrychus_A : A ; - botane_F_N : N ; - botanica_F_N : N ; - botanicus_A : A ; - botanismos_M_N : N ; - botanismus_M_N : N ; - botellus_M_N : N ; - bothynus_M_N : N ; - boto_M_N : N ; - botono_V : V ; - botrio_M_N : N ; - botronatus_M_N : N ; - botruosus_A : A ; - botrus_F_N : N ; - botrus_M_N : N ; + boscas_2_N : N ; -- [XAXFS] :: kind of water fowl (teal?); + boscis_F_N : N ; -- [XAXFO] :: kind of water fowl (teal?); + boscus_M_N : N ; -- [FAXDM] :: wood; lumber; timber; firewood; woodland, wooded area; + bossellus_M_N : N ; -- [GXXEK] :: bushel; + bostrychitis_F_N : N ; -- [XXXNO] :: precious stone; + bostrychus_A : A ; -- [DXXES] :: curled, in ringlets; + botane_F_N : N ; -- [XAXNO] :: plant; [hiera botane => vervain, herbaceous/medicinal/sacred plant]; + botanica_F_N : N ; -- [GSXEK] :: botany; + botanicus_A : A ; -- [GSXEK] :: botanical; + botanismos_M_N : N ; -- [XAXNO] :: weeding, pulling up weeds; + botanismus_M_N : N ; -- [XAXNS] :: weeding, pulling up weeds; + botellus_M_N : N ; -- [XXXEO] :: small sausage; + bothynus_M_N : N ; -- [XSXFO] :: trench, pit; (as name of fiery meteor); + boto_M_N : N ; -- [GXXEK] :: button; + botono_V : V ; -- [GXXEK] :: button; + botrio_M_N : N ; -- [DAXFS] :: bunch/cluster of grapes; + botronatus_M_N : N ; -- [DXXES] :: woman's hair ornament in form of a cluster of grapes; + botruosus_A : A ; -- [DAXFS] :: full of clusters; + botrus_F_N : N ; -- [DAXFS] :: grape; + botrus_M_N : N ; -- [EAXFW] :: cluster of grapes; (Vulgate 4 Ezra 9:21); 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 ; - botryon_N_N : N ; - botrysos_M_N : N ; - botularius_M_N : N ; - botulismus_M_N : N ; - botulus_M_N : N ; - boustrophedon_Adv : Adv ; - bova_F_N : N ; - bovarius_A : A ; - bovatim_Adv : Adv ; - bovicidium_N_N : N ; - bovida_F_N : N ; - bovile_N_N : N ; - bovilis_A : A ; - bovillus_A : A ; - bovinator_M_N : N ; - bovinor_V : V ; - bovinus_A : A ; - bovista_F_N : N ; - bovo_V : V ; - box_M_N : N ; - boxum_N_N : N ; - brabeum_N_N : N ; - brabeuta_M_N : N ; - brabilla_F_N : N ; - brabium_N_N : N ; - brabreum_N_N : N ; - brabyla_M_N : N ; - braca_F_N : N ; - bracarius_M_N : N ; - bracatus_A : A ; - bracatus_M_N : N ; - bracchiale_N_N : N ; - bracchialis_A : A ; - bracchiatus_A : A ; - bracchiolaris_A : A ; - bracchiolum_N_N : N ; - bracchionarium_N_N : N ; - bracchium_N_N : N ; - braces_F_N : N ; - braceus_A : A ; - brachiale_N_N : N ; - brachialis_A : A ; - brachiatus_A : A ; - brachiolaris_A : A ; - brachiolum_N_N : N ; - brachionarium_N_N : N ; - brachium_N_N : N ; - brachycatalecticum_N_N : N ; - brachycatalectum_N_N : N ; - brachypota_M_N : N ; - brachysyllabus_M_N : N ; - braciator_M_N : N ; - bracile_N_N : N ; - bracilis_A : A ; - bracina_F_N : N ; - bracio_V : V ; - bracis_F_N : N ; - bractea_F_N : N ; - bractealis_A : A ; - bracteamentum_N_N : N ; - bracteator_M_N : N ; - bracteatus_A : A ; - bracteola_F_N : N ; - bractiaria_F_N : N ; - bractiarius_M_N : N ; - bradium_N_N : N ; - brances_F_N : N ; - brancha_F_N : N ; - branchia_F_N : N ; - branchos_M_N : N ; - brandeum_N_N : N ; - brasmatia_F_N : N ; - brassica_F_N : N ; - brastes_M_N : N ; - brattea_F_N : N ; - bratteator_M_N : N ; - bratteatus_A : A ; - bratteola_F_N : N ; - brattiaria_F_N : N ; - brattiarius_M_N : N ; - bratus_F_N : N ; - bravialis_A : A ; - bravio_V : V ; - bravium_N_N : N ; - bregma_F_N : N ; - brenthos_M_N : N ; - brephotropheum_N_N : N ; - brephotrophium_N_N : N ; - brephotrophus_M_N : N ; - breve_N_N : N ; - brevi_Adv : Adv ; - breviale_N_N : N ; - breviarium_N_N : N ; - breviarius_A : A ; - breviatio_F_N : N ; - breviator_M_N : N ; - breviculus_A : A ; - breviculus_M_N : N ; - breviloquens_A : A ; - breviloquentia_F_N : N ; - breviloquis_A : A ; - breviloquium_N_N : N ; - breviloquus_A : A ; - brevio_V2 : V2 ; - brevis_A : A ; - brevis_M_N : N ; - brevitas_F_N : N ; - breviter_Adv : Adv ; - brevium_N_N : N ; - bria_F_N : N ; - brisa_F_N : N ; - brocchitas_F_N : N ; - brocchus_A : A ; - broccus_A : A ; - brochon_N_N : N ; - brochus_A : A ; - bromaticus_M_N : N ; - bromos_M_N : N ; - bromosus_A : A ; - bronchitis_F_N : N ; - bronchium_N_N : N ; - bronchocele_F_N : N ; - bronchoscopia_F_N : N ; - broncus_A : A ; - brontea_F_N : N ; - bruchus_M_N : N ; - brucus_M_N : N ; - bruma_F_N : N ; - brumalis_A : A ; - brumaria_F_N : N ; - brunetus_A : A ; - brunius_A : A ; - brunneus_A : A ; - brunus_A : A ; - bruscum_N_N : N ; - brutalis_A : A ; - brutalitas_F_N : N ; - brutaliter_Adv : Adv ; - brutes_F_N : N ; - brutesco_V : V ; - bruteus_A : A ; - brutum_N_N : N ; - brutus_A : A ; - brya_F_N : N ; - bryon_N_N : N ; - bryonia_F_N : N ; - bryonias_F_N : N ; - bua_F_N : N ; - bubalinus_A : A ; - bubalion_N_N : N ; - bubalus_A : A ; - bubalus_M_N : N ; - bubile_N_N : N ; - bubino_V2 : V2 ; - bubleum_N_N : N ; - bublus_A : A ; - bubo_M_N : N ; - bubo_V : V ; - bubonion_N_N : N ; - bubonium_N_N : N ; - bubonocele_F_N : N ; - bubsequa_M_N : N ; - bubula_F_N : N ; - bubulcarius_M_N : N ; - bubulcito_V : V ; - bubulcitor_V : V ; - bubulcus_M_N : N ; - bubulinus_A : A ; - bubulo_V : V ; - bubulus_A : A ; - bucaeda_M_N : N ; - bucale_N_N : N ; - bucardia_F_N : N ; - bucca_F_N : N ; - buccea_F_N : N ; - buccella_F_N : N ; - buccellare_N_N : N ; - buccellaris_A : A ; - buccellatum_N_N : N ; - buccina_F_N : N ; - buccinator_M_N : N ; - buccino_V : V ; - buccinum_N_N : N ; - buccinus_M_N : N ; - bucco_M_N : N ; - bucconiatis_F_N : N ; - buccula_F_N : N ; - buccularius_M_N : N ; - bucculentus_A : A ; - bucella_F_N : N ; - buceras_N_N : N ; - bucerius_A : A ; - bucerus_A : A ; - bucetum_N_N : N ; - bucina_F_N : N ; - bucinator_M_N : N ; - bucino_V : V ; - bucinum_N_N : N ; - bucinus_M_N : N ; - bucitum_N_N : N ; - bucolicos_A : A ; - bucolicum_N_N : N ; - bucolicus_A : A ; - buconiates_F_N : N ; - bucranium_N_N : N ; - bucula_F_N : N ; - buculus_F_N : N ; - buda_F_N : N ; - bufalus_M_N : N ; - bufo_M_N : N ; - bugenes_A : A ; - bugia_F_N : N ; - bugillo_M_N : N ; - buglossa_F_N : N ; - buglossos_F_N : N ; - bugonia_F_N : N ; - bul_N : N ; - bulapathum_N_N : N ; - bulbaceus_A : A ; - bulbatio_F_N : N ; - bulbine_F_N : N ; - bulbos_M_N : N ; - bulbosus_A : A ; - bulbulus_M_N : N ; - bulbus_M_N : N ; - bule_F_N : N ; - buleuta_M_N : N ; - buleuterion_N_N : N ; - buleuterium_N_N : N ; - bulga_F_N : N ; - bulima_F_N : N ; - bulimia_F_N : N ; - bulimo_V : V ; - bulimos_M_N : N ; - bulimosus_A : A ; - bulimus_M_N : N ; - bulla_F_N : N ; - bullarium_N_N : N ; - bullatio_F_N : N ; - bullatus_A : A ; - bullesco_V : V ; - bulligo_F_N : N ; - bullio_V : V ; - bullitus_M_N : N ; - bullo_V : V ; - bullula_F_N : N ; - bumammus_A : A ; - bumasta_F_N : N ; - bumastus_A : A ; - bumastus_F_N : N ; - bumbulum_N_N : N ; - bumelia_F_N : N ; - bundon_M_N : N ; - bunias_F_N : N ; - bunion_N_N : N ; - bunitus_A : A ; - bupaeda_M_N : N ; + botryitis_2_N : N ; -- [XXXEO] :: kind of precious stone/calamine; [cadmia ~ => grape/cluster-shaped zinc oxide]; + botryo_M_N : N ; -- [XAXFO] :: bunch/cluster of grapes; + botryodes_A : A ; -- [DXXFS] :: in form of a cluster of grapes; + botryon_M_N : N ; -- [XAXFO] :: bunch/cluster of grapes; + botryon_N_N : N ; -- [XBXNO] :: kind of medicine; (prepared from excrements L+S); + botrysos_M_N : N ; -- [XAXFO] :: plant similar to wormwood/mugwort; (also called artemisia); + botularius_M_N : N ; -- [XXXFO] :: sausage seller/maker; + botulismus_M_N : N ; -- [GBXEK] :: botulism; + botulus_M_N : N ; -- [XXXDO] :: sausage; black pudding; stomach filled with delicacies (haggis?); rude word; + boustrophedon_Adv : Adv ; -- [DGXFS] :: right to left and back alternately, forwards and backwards (of ancient script); + bova_F_N : N ; -- [XAXNO] :: large Italian snake; water serpent; + bovarius_A : A ; -- [XAXEO] :: of oxen/cattle; [forum boarium => cattle market at Rome]; + bovatim_Adv : Adv ; -- [XAXFO] :: in manner of cattle/oxen/cows; + bovicidium_N_N : N ; -- [DAXES] :: slaughtering of cattle; + bovida_F_N : N ; -- [GXXEK] :: bovide; + bovile_N_N : N ; -- [XAXEO] :: cattle-shed, stall for cattle/oxen; + bovilis_A : A ; -- [XAXFO] :: of/connected with cattle; + bovillus_A : A ; -- [XAXFO] :: of/consisting of cattle/oxen/cows; + bovinator_M_N : N ; -- [XXXEO] :: one who rails/reviles?; brawler (L+S), blusterer; one who seeks evasion; + bovinor_V : V ; -- [XXXFS] :: bellow at, revile; brawl; + bovinus_A : A ; -- [DAXFS] :: of/pertaining to cattle/oxen/cows; + bovista_F_N : N ; -- [GXXEK] :: mushroom puffball; + bovo_V : V ; -- [XXXCO] :: cry aloud, roar, bellow; call loudly upon; + box_M_N : N ; -- [XAXFS] :: fish; (bogue or boce); (Box vulgaris); + boxum_N_N : N ; -- [XXXCO] :: box-wood; top; flute; + brabeum_N_N : N ; -- [DXXFS] :: prize in games; + brabeuta_M_N : N ; -- [XXXFO] :: umpire (presided at public games and assigned prizes); + brabilla_F_N : N ; -- [XAXNO] :: sloe, fruit of blackthorn/hawthorn; + brabium_N_N : N ; -- [DXXFS] :: prize in games; + brabreum_N_N : N ; -- [EEXEM] :: prize; reward; + brabyla_M_N : N ; -- [XAXNS] :: plant (otherwise unknown); + braca_F_N : N ; -- [XXFCO] :: trousers (usu. pl.), breeches, britches, pants; + bracarius_M_N : N ; -- [DXXES] :: maker of trousers/breeches/pants; + bracatus_A : A ; -- [XXFCO] :: wearing trousers, breeched; (of Gauls of Narbonne); + bracatus_M_N : N ; -- [XXFDO] :: persons wearing trousers/breeched, Gauls of Nabronne; + bracchiale_N_N : N ; -- [XXXNO] :: bracelet, armlet; + bracchialis_A : A ; -- [XXXEO] :: of/connected with arm(s); + bracchiatus_A : A ; -- [XAXDO] :: having branches (tree), branched; wearing bracelets; + bracchiolaris_A : A ; -- [XAXFS] :: pertaining to a leg muscle of a horse; + bracchiolum_N_N : N ; -- [XXXEO] :: little arm, small/delicate arm; muscle of a horse's leg (L+S); arm of a chair; + bracchionarium_N_N : N ; -- [DXXFS] :: bracelet; + bracchium_N_N : N ; -- [XXXAO] :: arm; lower arm, forearm; claw; branch, shoot; earthwork connecting forts; + braces_F_N : N ; -- [XAFNS] :: Gallic name of a particularly white grain (ble blanc de Dauphine); (sandala); + braceus_A : A ; -- [XXXFS] :: pertaining to trousers/breeches; + brachiale_N_N : N ; -- [XXXNO] :: bracelet, armlet; + brachialis_A : A ; -- [XXXEO] :: of/connected with arm(s); + brachiatus_A : A ; -- [XAXCO] :: having branches (tree), branched; wearing bracelets; + brachiolaris_A : A ; -- [XAXFS] :: pertaining to a leg muscle of a horse; + brachiolum_N_N : N ; -- [XXXEO] :: little arm, small/delicate arm; muscle of a horse's leg (L+S); arm of a chair; + brachionarium_N_N : N ; -- [DXXFS] :: bracelet; + brachium_N_N : N ; -- [XXXAO] :: arm; lower arm, forearm; claw; branch, shoot; earthwork connecting forts; + brachycatalecticum_N_N : N ; -- [DPXFS] :: verse that is short by a whole foot or half a meter; + brachycatalectum_N_N : N ; -- [DPXFS] :: verse that is short by a whole foot or half a meter; + brachypota_M_N : N ; -- [DXXFS] :: small drinker; + brachysyllabus_M_N : N ; -- [DPXFS] :: tribrachys, (in meter) short-short-short; + braciator_M_N : N ; -- [GXXEK] :: brewer; + bracile_N_N : N ; -- [DXFES] :: girdle (as worn with trousers); band; + bracilis_A : A ; -- [XXFEO] :: designed to be worn with trousers (e.g., girdle/belt); + bracina_F_N : N ; -- [GXXEK] :: restaurant; + bracio_V : V ; -- [GXXEK] :: brew beer; + bracis_F_N : N ; -- [EXXFS] :: trousers; breeches; (= bracae, -arum); + bractea_F_N : N ; -- [XXXCO] :: gold leaf/foil, thin sheet of metal (esp. gold)/other material; veneer; show; + bractealis_A : A ; -- [DXXES] :: of thin plates of metal/gold-leaf/veneers; showy, glittering; + bracteamentum_N_N : N ; -- [DXXFS] :: glitter, show, splendor; + bracteator_M_N : N ; -- [XXXFS] :: gold-beater, worker in gold-leaf; + bracteatus_A : A ; -- [XXXES] :: gilded/gilt, covered with a (mere) veneer of gold, delusive; shining like gold; + bracteola_F_N : N ; -- [XXXFS] :: gold leaf; + bractiaria_F_N : N ; -- [XXXIS] :: gold-beater, worker in gold leaf; + bractiarius_M_N : N ; -- [XXXIS] :: gold-beater, worker in gold-leaf; + bradium_N_N : N ; -- [EEXEM] :: prize; reward; + brances_F_N : N ; -- [XAFNS] :: Gallic name of a particularly white grain (ble blanc de Dauphine), (sandala); + brancha_F_N : N ; -- [EAXFW] :: gills (usu. pl.) (of a fish); (Vulgate Tobit 6:4); + branchia_F_N : N ; -- [XAXEO] :: gills (usu. pl.) (of a fish); + branchos_M_N : N ; -- [DBXES] :: hoarseness; + brandeum_N_N : N ; -- [EEXEV] :: holy covering/shroud; linen/silk covering for body; + brasmatia_F_N : N ; -- [XSXFS] :: heaving (pl.), a heaver, earthquake, shaking of earth; + brassica_F_N : N ; -- [XAXCO] :: cabbage; cabbages (pl.), varieties of cabbage (L+S); + brastes_M_N : N ; -- [XSXFO] :: heaving, a heaver, earthquake, shaking of earth; + brattea_F_N : N ; -- [XXXCO] :: gold leaf/foil, thin sheet of metal (esp. gold)/other material; veneer; show; + bratteator_M_N : N ; -- [XXXFS] :: gold-beater, worker in gold-leaf; + bratteatus_A : A ; -- [XXXEO] :: gilded/gilt, covered with a (mere) veneer of gold, delusive; shining like gold; + bratteola_F_N : N ; -- [XXXFO] :: gold leaf; + brattiaria_F_N : N ; -- [XXXFO] :: gold-beater (female), worker in gold leaf; + brattiarius_M_N : N ; -- [XXXFO] :: gold-beater, worker in gold-leaf; + bratus_F_N : N ; -- [XAQNO] :: tree (similar to cypress); + bravialis_A : A ; -- [EEXEM] :: earning a prize/reward; + bravio_V : V ; -- [EEXEM] :: gamble; + bravium_N_N : N ; -- [EEXEM] :: prize; reward; + bregma_F_N : N ; -- [XAJNO] :: defect/disease of pepper tree; + brenthos_M_N : N ; -- [XAXNO] :: sea bird (unidentified); + brephotropheum_N_N : N ; -- [DLXFS] :: foundling hospital; orphanage; + brephotrophium_N_N : N ; -- [DLXFS] :: foundling hospital; orphanage; + brephotrophus_M_N : N ; -- [DLXFS] :: one who brings up foundlings; foster carer; + breve_N_N : N ; -- [DGXES] :: |short catalog, summary document; brief reply (Cal); + brevi_Adv : Adv ; -- [XGXBS] :: in a short time; shortly, briefly; in a few words; [in brevi => in brief]; + breviale_N_N : N ; -- [GXXEK] :: breviary; + breviarium_N_N : N ; -- [GXXEK] :: breviary; + breviarius_A : A ; -- [XGXFO] :: in brief form, summary; abridged; + breviatio_F_N : N ; -- [DGXES] :: shortening; + breviator_M_N : N ; -- [DGXES] :: epitomiser, abridger; author of a breviarium (summary statement); + breviculus_A : A ; -- [XXXDO] :: very/rather short/small; quite brief (time); + breviculus_M_N : N ; -- [DGXFS] :: short writing; summary; + breviloquens_A : A ; -- [XGXFO] :: concise, brief in expression, brief; + breviloquentia_F_N : N ; -- [XGXFO] :: brevity of speech, conciseness; + breviloquis_A : A ; -- [DGXES] :: short in speech, brief; concise; speaking briefly; + breviloquium_N_N : N ; -- [DGXES] :: brevity of speech, conciseness; + breviloquus_A : A ; -- [DGXES] :: short in speech, brief; concise; speaking briefly; + brevio_V2 : V2 ; -- [XGXCO] :: shorten, abridge; abbreviate (speech/writing); pronounce short; + brevis_A : A ; -- [XXXAO] :: short, little, small, stunted; brief, concise, quick; narrow, shallow; humble; + brevis_M_N : N ; -- [DGXES] :: short catalog, summary document; + brevitas_F_N : N ; -- [XXXBO] :: shortness, smallness, narrowness; brevity, conciseness, terseness; + breviter_Adv : Adv ; -- [XXXBO] :: shortly, briefly, in a nut shell; quickly; for/within a short distance/time; + brevium_N_N : N ; -- [DXXCS] :: |narrow places (pl.); shallows, shoals; difficulties; + bria_F_N : N ; -- [DXXFS] :: wine vessel; + brisa_F_N : N ; -- [XAXFO] :: refuse of grapes after pressing; + brocchitas_F_N : N ; -- [XBXNO] :: projecting/prominence of teeth; + brocchus_A : A ; -- [XAXCO] :: projecting/prominent (teeth); of persons having projecting/prominent teeth; + broccus_A : A ; -- [XAXCS] :: projecting/prominent (teeth); of persons having projecting/prominent teeth; + brochon_N_N : N ; -- [XAXNO] :: aromatic gum-resin flowing from bdellium tree (used in medicine/perfume); + brochus_A : A ; -- [XAXFS] :: projecting/prominent (teeth); of persons having projecting/prominent teeth; + bromaticus_M_N : N ; -- [DXXFS] :: those (pl.) who loathe food; + bromos_M_N : N ; -- [XAHNO] :: oats; (Greek word for oats); + bromosus_A : A ; -- [DXXES] :: stinking, fetid; + bronchitis_F_N : N ; -- [GBXEK] :: bronchitis; + bronchium_N_N : N ; -- [DBXCS] :: bronchial tubes; + bronchocele_F_N : N ; -- [XBXFO] :: kind of tumor; + bronchoscopia_F_N : N ; -- [GBXEK] :: bronchoscopy; + broncus_A : A ; -- [XAXFS] :: projecting/prominent (teeth); of persons having projecting/prominent teeth; + brontea_F_N : N ; -- [XXXNO] :: kind of meteoric stone, thunder-stone; + bruchus_M_N : N ; -- [DAXES] :: locust; kind of wingless locust; + brucus_M_N : N ; -- [EAXEW] :: locust; kind of wingless locust; caterpillar (OED); (agricultural pest); + bruma_F_N : N ; -- [XSXBO] :: winter, winter cold/weather; winter solstice; shortest day; sun position then; + brumalis_A : A ; -- [XSXCO] :: wintry; during winter; connected with winter solstice/winter; + brumaria_F_N : N ; -- [DAXFS] :: plant; (also called leontopodium); + brunetus_A : A ; -- [EXXEM] :: brown; (cloth); + brunius_A : A ; -- [EXXEM] :: brown; + brunneus_A : A ; -- [GXXEK] :: brown; + brunus_A : A ; -- [EXXCM] :: brown; + bruscum_N_N : N ; -- [XAXNO] :: knot/excrescence on maple tree; + brutalis_A : A ; -- [FXXDF] :: beastly, animal; brutal; + brutalitas_F_N : N ; -- [FXBFM] :: brutishness; insensitivity; + brutaliter_Adv : Adv ; -- [FXXEF] :: brutally; brutishly; in manner of a beast; + brutes_F_N : N ; -- [XXXIO] :: bride; + brutesco_V : V ; -- [DXXCS] :: become brutish/rough/unreasonable; + bruteus_A : A ; -- [FXXEM] :: brutal, brutish; + brutum_N_N : N ; -- [FXXEF] :: beast, animal; brute; + brutus_A : A ; -- [XXXCO] :: heavy, unwieldy, inert; dull, stupid, brute; irrational, insensitive, brutish; + brya_F_N : N ; -- [XAHNO] :: tamarisk (local Greek name), shrub (also called myrice); + bryon_N_N : N ; -- [XAXNO] :: kind of fragrant lichen; moss; sea plant (oyster-green?); white poplar catkins; + bryonia_F_N : N ; -- [XAXEO] :: bryony; [alba ~ => white b. Bryonia dioica; nigra ~ => black b. Tamus communis]; + bryonias_F_N : N ; -- [XAXEO] :: bryony; [alba ~ => white b. Bryonia dioica; nigra ~ => black b. Tamus communis]; + bua_F_N : N ; -- [XXXFS] :: "bubbub"; (natural sound made by infants asking for drink); + bubalinus_A : A ; -- [DAAES] :: of/pertaining to African gazelle; + bubalion_N_N : N ; -- [DAXFS] :: wild cucumber; + bubalus_A : A ; -- [DAAES] :: of/pertaining to African gazelle; + bubalus_M_N : N ; -- [XAXEO] :: antelope, gazelle; wild ox, buffalo; + bubile_N_N : N ; -- [XAXDO] :: cattle-shed, stall for cattle/oxen; + bubino_V2 : V2 ; -- [XBXFO] :: menstruate, have monthly period (woman); + bubleum_N_N : N ; -- [XAXFS] :: kind of wine; + bublus_A : A ; -- [XAXCO] :: of/connected with cattle; bull's/cow's/ox-; consisting of cattle; + bubo_M_N : N ; -- [XXXCO] :: horned or eagle owl (esp. as bird of ill omen); + bubo_V : V ; -- [XAXFS] :: cry like a bittern (bird that booms/roars like an ox during mating); + bubonion_N_N : N ; -- [XAXNO] :: plant (Aster amellus?); (useful for swelling in groin L+S); + bubonium_N_N : N ; -- [XAXNS] :: plant (Aster amellus?); (useful for swelling in groin L+S); + bubonocele_F_N : N ; -- [XBXFO] :: inguinal/groin hernia; + bubsequa_M_N : N ; -- [DAXES] :: herdsman, cow-herd; + bubula_F_N : N ; -- [XXXDO] :: beef, meat from cattle; plant (also called buglossa), ox-tongue (L+S); + bubulcarius_M_N : N ; -- [DAXFS] :: plowman; + bubulcito_V : V ; -- [XAXCO] :: drive/tend cattle; be a plowman/farm laborer; be a rustic in general; + bubulcitor_V : V ; -- [XAXCO] :: drive/tend cattle; be a plowman/farm laborer; be a rustic in general; + bubulcus_M_N : N ; -- [XXXCO] :: one who drives/tends cattle; teamster; plowman, farm laborer; rustic; + bubulinus_A : A ; -- [DAXES] :: of/pertaining to cattle; + bubulo_V : V ; -- [DAXFS] :: screech (like an owl); + bubulus_A : A ; -- [XAXCO] :: of/connected with cattle; bull's/cow's/ox-; consisting of cattle; of ox-hide; + bucaeda_M_N : N ; -- [XAXFO] :: ox-slaughterer; one who is whipped with ox-hide thongs (L+S); + bucale_N_N : N ; -- [FXXEE] :: pitcher; water jug; + bucardia_F_N : N ; -- [XAXNO] :: precious stone; + bucca_F_N : N ; -- [XBXBO] :: jaw, mouth; mouthful; cheek (with blowing a trumpet); cavity (knee joint) (L+S); + buccea_F_N : N ; -- [XXXFS] :: morsel, mouthful; + buccella_F_N : N ; -- [XXXFS] :: morsel, small mouthful of food; + buccellare_N_N : N ; -- [XXXFS] :: cooking utensil; + buccellaris_A : A ; -- [XAXFS] :: ground from biscuit; + buccellatum_N_N : N ; -- [DWXCS] :: soldier's biscuit; hardtack; + buccina_F_N : N ; -- [XXXCO] :: horn; bugle, watch-horn; (curved) trumpet, war trumpet; shell Triton blew; + buccinator_M_N : N ; -- [XXXCO] :: trumpeter; proclaimer; + buccino_V : V ; -- [XWXEO] :: give signal with/sound trumpet/horn; blow trumpet (bucina); honk horn (Cal); + buccinum_N_N : N ; -- [XXXDO] :: blast on trumpet, trumpet call; kind of shellfish (used for purple dye); + buccinus_M_N : N ; -- [XXXFO] :: trumpeter; epithet for cock/rooster; + bucco_M_N : N ; -- [XXXEO] :: fathead, dolt, blockhead, fool; + bucconiatis_F_N : N ; -- [XAXNS] :: species of vine in Thurium; (fruit of which is picked only after first frost); + buccula_F_N : N ; -- [XXXCO] :: little cheek; mouth/cheek-piece of a helmet; part of a machine/catapult channel; + buccularius_M_N : N ; -- [XXXFS] :: maker of beavers for helmets (mouth/cheek piece); + bucculentus_A : A ; -- [XXXFO] :: having fat/full cheeks; having a big mouth (L+S); + bucella_F_N : N ; -- [XXXFS] :: small mouthful of food, morsel; small bread divided among poor (L+S); + buceras_N_N : N ; -- [XAXNS] :: plant, fenugreek (faenum Graecum); + bucerius_A : A ; -- [XXXCS] :: ox-horned; horned; + bucerus_A : A ; -- [XXXDO] :: ox-horned; horned; + bucetum_N_N : N ; -- [XAXEO] :: pasture for cattle, cow pasture, pasture; + bucina_F_N : N ; -- [XXXCO] :: bugle, watch-horn; (curved) trumpet, war trumpet; shell Triton blew; + bucinator_M_N : N ; -- [XXXCO] :: trumpeter; proclaimer; + bucino_V : V ; -- [XWXEO] :: give signal with/sound trumpet/horn; blow trumpet (bucina); honk (Cal); + bucinum_N_N : N ; -- [XXXDO] :: blast on trumpet, trumpet call; kind of shellfish (used for purple dye); + bucinus_M_N : N ; -- [XXXFO] :: trumpeter; epithet for cock/rooster; + bucitum_N_N : N ; -- [XAXEO] :: pasture for cattle; + bucolicos_A : A ; -- [XPXEO] :: pastoral (poetry), bucolic; pertaining to shepherds; pastoral; + bucolicum_N_N : N ; -- [XAXNO] :: plant (all-heal/mistletoe); Bucolic poems (pl.) of Virgil or Theocritus; + bucolicus_A : A ; -- [XPXEO] :: pastoral (poetry), bucolic; pertaining to shepherds; pastoral; + buconiates_F_N : N ; -- [XAXNO] :: species of vine; + bucranium_N_N : N ; -- [XEXIO] :: ox-head, representation of one on alter; plant so shaped; place of sacrifice; + bucula_F_N : N ; -- [XXXCS] :: little cheek; mouth/cheek-piece of a helmet; part of a machine/catapult channel; + buculus_F_N : N ; -- [XAXFO] :: young bull/ox; steer; + buda_F_N : N ; -- [DAXES] :: sedge; + bufalus_M_N : N ; -- [XAXES] :: antelope, gazelle; wild ox, buffalo; + bufo_M_N : N ; -- [XAXFO] :: toad; + bugenes_A : A ; -- [XYXFO] :: born of/produced from an ox/bull; (as insects from a dead carcass); + bugia_F_N : N ; -- [EXXEE] :: hand candlestick; + bugillo_M_N : N ; -- [DAXFS] :: plant; (also called ajuga reptans)]; + buglossa_F_N : N ; -- [XAXNS] :: bugloss (herb) (prickly ox-tongue, Helminthia echioides?); + buglossos_F_N : N ; -- [XAXNO] :: bugloss (herb) (prickly ox-tongue, Helminthia echioides?); + bugonia_F_N : N ; -- [XXXFS] :: generation of bees from putrid cattle carcasses (title of work by Archelaus); + bul_N : N ; -- [EXQEW] :: Bul (rain), Heshvan, Jewish month; (8th in ecclesiastic year); (1 Kings 6:38); + bulapathum_N_N : N ; -- [XAXNO] :: large species of plant Lapathum of genus Ramex (sorrel); herb (patience) (L+S); + bulbaceus_A : A ; -- [XAXNO] :: bulbous, having bulbs; + bulbatio_F_N : N ; -- [XAXNO] :: bulb-like formation (in a kind of stone); + bulbine_F_N : N ; -- [XAXNO] :: kind of bulbous plant; + bulbos_M_N : N ; -- [XAXCS] :: bulb; onion, edible bulb; + bulbosus_A : A ; -- [XAXNO] :: bulbous, having bulbs; + bulbulus_M_N : N ; -- [DAXES] :: small bulb; + bulbus_M_N : N ; -- [XAXCO] :: bulb; onion, edible bulb; + bule_F_N : N ; -- [XLHEO] :: Greek council or senate; + buleuta_M_N : N ; -- [XLHEO] :: member of a Greek council or senate; + buleuterion_N_N : N ; -- [XLHNO] :: council/senate house/chamber (Greek); + buleuterium_N_N : N ; -- [XLHNO] :: council/senate house/chamber (Greek); + bulga_F_N : N ; -- [XXXDO] :: bag, wallet, purse; Gallic leather knapsack; womb (slang); + bulima_F_N : N ; -- [DXXFS] :: great/insatiable hunger; weakness of stomach/fainting (L+S); + bulimia_F_N : N ; -- [GBXEK] :: bulimia; + bulimo_V : V ; -- [DXXES] :: have great/insatiable hunger; + bulimos_M_N : N ; -- [XXXEO] :: great/insatiable hunger; weakness of stomach/fainting (L+S); + bulimosus_A : A ; -- [DXXES] :: bulimic; afflicted with insatiable hunger; + bulimus_M_N : N ; -- [XXXEO] :: great/insatiable hunger; weakness of stomach/fainting (L+S); + bulla_F_N : N ; -- [EEXCE] :: |Papal bull; Papal document; stamped lead seal of Papal document; + bullarium_N_N : N ; -- [FEXFE] :: collection of Papal bulls; + bullatio_F_N : N ; -- [XXXNO] :: bulb-like formation (in a kind of stone); bubbling; + bullatus_A : A ; -- [XXXDO] :: bombastic; with bosses/knobs; wearing/decorated with bulla/childhood locket; + bullesco_V : V ; -- [XXXFO] :: bubble; form bubbles; + bulligo_F_N : N ; -- [DXXFV] :: soup; bubbling/boiling liquid; broth; bouillon; + bullio_V : V ; -- [XXXCO] :: bubble, boil; make bubbles; boil (with indignation); + bullitus_M_N : N ; -- [XXXFO] :: bubble (of water); bubbling (L+S); + bullo_V : V ; -- [XXXDO] :: bubble, boil, effervesce; + bullula_F_N : N ; -- [XXXEO] :: small bubble; watery vesicle/sac; small amulet/locket (bulla) for a boy; + bumammus_A : A ; -- [XXXFO] :: having large clusters; with large breasts; + bumasta_F_N : N ; -- [XXXEO] :: large swelling grapes; vine having such grapes; + bumastus_A : A ; -- [XXXEO] :: large swelling (like grapes); (two term ADJ, F like M, F form is noun); + bumastus_F_N : N ; -- [DXXES] :: large swelling grapes; vine having such grapes; + bumbulum_N_N : N ; -- [EBXEW] :: break wind; fart; + bumelia_F_N : N ; -- [XAXNO] :: large (common) ash-tree (Fraxinus excelsior); + bundon_M_N : N ; -- [EAXCV] :: farmer; + bunias_F_N : N ; -- [XAXEO] :: kind of turnip (French turnip, Brassica napus?); + bunion_N_N : N ; -- [XAXNO] :: kind of turnip; + bunitus_A : A ; -- [DXXES] :: of/made of turnips (bunion); + bupaeda_M_N : N ; -- [DXXFS] :: big/huge boy/youth; 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 ; - buprestis_F_N : N ; - bura_F_N : N ; - burdo_M_N : N ; - burdonarius_M_N : N ; - burdubasta_M_N : N ; - burdunculus_M_N : N ; - burgagium_N_N : N ; - burgaria_F_N : N ; - burgarius_A : A ; - burgarius_M_N : N ; - burgator_M_N : N ; + bupaes_2_N : N ; -- [XXXFO] :: big/huge boy/youth; + buphthalmos_M_N : N ; -- [XAXES] :: flower of chrysanthemum family (Chrysanthemum coronarium?); kind of houseleek; + buphthalmus_F_N : N ; -- [XAXEO] :: flower of chrysanthemum family (Chrysanthemum coronarium?); kind of houseleek; + bupleuron_N_N : N ; -- [XAXNO] :: plant (unidentified); (hare's-ear L+S); + buprestis_F_N : N ; -- [XAXEO] :: beetle (poisonous, sting cattle to swelling L+S); plant (unidentified); + bura_F_N : N ; -- [XAXDO] :: plow beam, curved hinder part of plow; + burdo_M_N : N ; -- [XAXEO] :: mule; hinny; (general term for horse/ass hybrids); pilgrim's "mule"/staff; + burdonarius_M_N : N ; -- [XAXFO] :: muleteer, mule skinner, mule driver; + burdubasta_M_N : N ; -- [XXXFO] :: pug; (word of doubtful meaning applied as abuse to decrepit gladiator); + burdunculus_M_N : N ; -- [DAXFS] :: plant (barage?); + burgagium_N_N : N ; -- [FLXFJ] :: burgage; land in town held by lord for rent; + burgaria_F_N : N ; -- [ELXEM] :: burglary; + burgarius_A : A ; -- [GXXEK] :: bourgeois; + burgarius_M_N : N ; -- [XWXIO] :: inhabitant of a castle/fort; defenders of borders/marches (pl.); + burgator_M_N : N ; -- [FLXFM] :: burglar; 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 ; - burgus_M_N : N ; - burichus_M_N : N ; - buricus_M_N : N ; - buris_F_N : N ; - burius_M_N : N ; - burra_F_N : N ; - burranicum_N_N : N ; - burranicus_A : A ; - burrhinon_N_N : N ; - burrichus_M_N : N ; - burricus_M_N : N ; - burrio_V : V ; - burrus_A : A ; - bursa_F_N : N ; - bursarius_M_N : N ; - bursula_F_N : N ; + burgensis_M_N : N ; -- [EXXCV] :: citizen/burgess/burger; inhabitants/residents (pl.) of a (walled) town/borough; + burgeria_F_N : N ; -- [ELXEM] :: burglary; + burgimagister_M_N : N ; -- [GXXEK] :: burgomaster; mayor; + burgus_M_N : N ; -- [XWXIO] :: castle, fort, fortress; fortified town (medieval), borough; + burichus_M_N : N ; -- [DAXES] :: small horse; + buricus_M_N : N ; -- [DAXES] :: small horse; + buris_F_N : N ; -- [XAXDO] :: plow beam, curved hinder part of plow; + burius_M_N : N ; -- [DAXFS] :: species of animal (unknown); + burra_F_N : N ; -- [DXXES] :: small cow with a red mouth/muzzle; shaggy garment; trifles (pl.), nonsense; + burranicum_N_N : N ; -- [XXXES] :: vessel; (perhaps for a burranicus drink - composed of milk and must/new wine); + burranicus_A : A ; -- [XXXES] :: composed of milk and must/new wine (of a drink); + burrhinon_N_N : N ; -- [DAXFS] :: plant (oxnose); + burrichus_M_N : N ; -- [DAXES] :: small horse; + burricus_M_N : N ; -- [DAXES] :: small horse; + burrio_V : V ; -- [DXXFS] :: swarm; + burrus_A : A ; -- [BXXFO] :: red; + bursa_F_N : N ; -- [EXXEV] :: purse; supply of money, funds; stock market (Cal); + bursarius_M_N : N ; -- [GXXEK] :: stock; + bursula_F_N : N ; -- [EXXEE] :: small purse/case; 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 ; - bustar_M_N : N ; - busticetum_N_N : N ; - bustirapus_M_N : N ; - bustualis_A : A ; - bustuarius_A : A ; - bustum_N_N : N ; - busycon_N_N : N ; - buteo_M_N : N ; - buthysia_F_N : N ; - buthytes_M_N : N ; - butio_M_N : N ; - buttubattum_N_N : N ; - buttuti_Interj : Interj ; - buttutti_Interj : Interj ; - butubattum_N_N : N ; - buturum_N_N : N ; - butyron_N_N : N ; - buvino_V2 : V2 ; - buxans_A : A ; - buxeirostris_A : A ; - buxetum_N_N : N ; - buxeus_A : A ; - buxiarius_A : A ; - buxifer_A : A ; - buxosus_A : A ; - buxum_N_N : N ; - buxus_F_N : N ; - bybliotheca_F_N : N ; - byrrus_A : A ; - byrrus_M_N : N ; - byssinum_N_N : N ; - byssinus_A : A ; - byssum_N_N : N ; - byssus_F_N : N ; - caballa_F_N : N ; - caballarius_M_N : N ; - caballatio_F_N : N ; - caballinus_A : A ; - caballio_M_N : N ; - caballion_N_N : N ; - caballus_M_N : N ; - cabus_M_N : N ; - cacabaceus_A : A ; - cacabatus_A : A ; - cacabo_V : V ; - cacabulus_M_N : N ; - cacabus_M_N : N ; - cacalia_F_N : N ; - cacao_F_N : N ; - cacaturio_V : V ; - cacatus_M_N : N ; - caccabaceus_A : A ; - caccabatus_A : A ; - caccabulus_M_N : N ; - caccabus_M_N : N ; - caccitus_M_N : N ; - cacemphaton_N_N : N ; - cachecta_M_N : N ; - cachecticus_A : A ; - cachexia_F_N : N ; - cachinnabilis_A : A ; - cachinnatio_F_N : N ; - cachinno_M_N : N ; - cachinno_V : V ; - cachinnosus_A : A ; - cachinnus_M_N : N ; - cachla_F_N : N ; - caco_V : V ; - cacoethes_N_N : N ; - cacometer_A : A ; - cacometrus_A : A ; - cacophaton_N_N : N ; - cacophonia_F_N : N ; - cacosyntheton_N_N : N ; - cacozelia_F_N : N ; - cacozelos_A : A ; - cacozelos_Adv : Adv ; - cacozelus_A : A ; - cactos_M_N : N ; - cactus_M_N : N ; - cacula_M_N : N ; - caculatum_N_N : N ; - caculatus_M_N : N ; - cacumen_N_N : N ; - cacumino_V : V ; - cadaver_N_N : N ; - cadaverina_F_N : N ; - cadaverinus_A : A ; - cadaverosus_A : A ; - cadialis_A : A ; - cadium_N_N : N ; - cadivus_A : A ; - cadmea_F_N : N ; - cadmia_F_N : N ; - cadmitis_F_N : N ; - cado_V : V ; - caducarius_A : A ; - caduceator_M_N : N ; - caduceatus_A : A ; - caduceum_N_N : N ; - caduceus_M_N : N ; - caducifer_A : A ; - caducitas_F_N : N ; - caduciter_Adv : Adv ; - caducum_N_N : N ; - caducus_A : A ; - cadurcum_N_N : N ; - cadus_M_N : N ; - cadytas_M_N : N ; - caecator_M_N : N ; - caecatus_A : A ; - caecias_M_N : N ; - caecigenus_A : A ; - caecilia_F_N : N ; - caecitas_F_N : N ; - caecitudo_F_N : N ; - caeco_V : V ; - caeculto_V : V ; - caecus_A : A ; - caecus_M_N : N ; - caecutientia_F_N : N ; - caecutio_V : V ; - caecuttio_V : V ; - caedes_F_N : N ; - caedis_F_N : N ; - caedo_V2 : V2 ; - caeduus_A : A ; - cael_N : N ; - caela_F_N : N ; - caelamen_N_N : N ; - caelator_M_N : N ; - caelatum_N_N : N ; - caelatura_F_N : N ; - caelebs_A : A ; - caelebs_M_N : N ; - caeleps_A : A ; - caeleps_M_N : N ; - caeles_A : A ; - caeles_M_N : N ; - caeleste_N_N : N ; - caelestis_A : A ; + bus_M_N : N ; -- [BAXDO] :: ox, bull; cow; cattle (pl.); (odd form mostly in Varro); + buselinum_N_N : N ; -- [XAXNO] :: large variety of parsley; + busequa_M_N : N ; -- [XAXEO] :: cow-herd, herdsman, man who looks after cattle, cowboy; + bustar_M_N : N ; -- [DXXES] :: place where dead bodies were burned; + busticetum_N_N : N ; -- [DXXES] :: place where dead bodies were burned; + bustirapus_M_N : N ; -- [XXXFO] :: grave robber; tomb robber; (term of reproach L+S); + bustualis_A : A ; -- [DXXES] :: of/pertaining to place where dead bodies were burned; + bustuarius_A : A ; -- [XXXEO] :: connected with/frequenting tombs; (~us gladiator fights at tomb to honor dead); + bustum_N_N : N ; -- [XXXBO] :: tomb, grave-mound; corpse; funeral pyre, ashes; heap of ashes (remains of city); + busycon_N_N : N ; -- [XAXFO] :: large fig; + buteo_M_N : N ; -- [XAXCO] :: species of hawk (buzzard?); (as a cognomen); + buthysia_F_N : N ; -- [XEXFO] :: sacrifice of oxen; + buthytes_M_N : N ; -- [XEXNO] :: sacrificer of oxen; + butio_M_N : N ; -- [DAXFS] :: bittern (bird that booms/roars like an ox during mating); + buttubattum_N_N : N ; -- [XXXFO] :: trifles (pl.), worthless things (L+S) (decl. uncertain); + buttuti_Interj : Interj ; -- [XEIFS] :: Buttuti!; (exclamation used by Hernici of Latinum at religious festivals); + buttutti_Interj : Interj ; -- [XEIFO] :: Buttuti!; (exclamation used by Hernici of Latinum at religious festivals); + butubattum_N_N : N ; -- [XXXFS] :: trifles (pl.), worthless things (decl. uncertain); + buturum_N_N : N ; -- [XAXDO] :: butter; + butyron_N_N : N ; -- [XAXDS] :: butter; + buvino_V2 : V2 ; -- [DBXFS] :: menstruate, have monthly period (woman); + buxans_A : A ; -- [XAXFO] :: characteristic of boxwood (color); + buxeirostris_A : A ; -- [XAXFO] :: having beak of color of boxwood; + buxetum_N_N : N ; -- [XAXFO] :: plantation/wood/grove of boxwood; + buxeus_A : A ; -- [XAXCO] :: of/connected with box-tree; of boxwood; characteristic of boxwood (color); + buxiarius_A : A ; -- [XAXIO] :: of/connected with box-tree; of boxwood; + buxifer_A : A ; -- [XAXFO] :: producing box-trees; + buxosus_A : A ; -- [XAXNO] :: resembling/like boxwood; + buxum_N_N : N ; -- [XAXCO] :: boxwood; a box tree; instrument, pipe, flute (usually made of boxwood); + buxus_F_N : N ; -- [XAXCO] :: boxwood; a box tree; instrument, pipe, flute (usually made of boxwood); + bybliotheca_F_N : N ; -- [XXXCO] :: library (either collection of books or the building, also person in charge); + byrrus_A : A ; -- [BXXFS] :: red; + byrrus_M_N : N ; -- [XXXFO] :: short woolen cloak with a hood; + byssinum_N_N : N ; -- [DXXES] :: garment made of fine flax (byssus); + byssinus_A : A ; -- [XXXEO] :: made of fine linen/flax, fine flaxen; [~ linum => fine linen/flaxen cloth]; + byssum_N_N : N ; -- [DAXFS] :: kind of fine flax; linen made of it (L+S); cotton; + byssus_F_N : N ; -- [XAXFO] :: kind of fine flax; linen made of it (L+S); cotton; + caballa_F_N : N ; -- [XAXFS] :: mare; + caballarius_M_N : N ; -- [DXXFS] :: horseman, rider; hostler; + caballatio_F_N : N ; -- [DAXFS] :: fodder/feed for a horse; + caballinus_A : A ; -- [XAXEO] :: of a horse, horse-; + caballio_M_N : N ; -- [DAXFS] :: small horse, pony; (perhaps hippocampi); + caballion_N_N : N ; -- [DAXFS] :: plant also called cynoglossa, hartsongue, spleenwort; + caballus_M_N : N ; -- [XAXCO] :: horse, riding horse, packhorse; (classical usu. an inferior horse, nag); + cabus_M_N : N ; -- [DAQFS] :: grain measure (Hebrew); + cacabaceus_A : A ; -- [DXXFS] :: of/pertaining to a cooking/kitchen pot; + cacabatus_A : A ; -- [DXXFS] :: black/sooty like a cooking/kitchen pot; (opposite of immaculata); + cacabo_V : V ; -- [DAXFS] :: cackle; natural cry of partridge; + cacabulus_M_N : N ; -- [XXXFO] :: bell; small cooking pot (L+S), vessel; + cacabus_M_N : N ; -- [XXXCO] :: cooking/kitchen pot; + cacalia_F_N : N ; -- [XAXNO] :: plant (Mercurialis tomentosa); colt's foot; (also called leontice L+S); + cacao_F_N : N ; -- [GXXEK] :: cacao tree (Theobroma cacao), chocolate tree; its seeds; + cacaturio_V : V ; -- [XBXEO] :: have urge to defecate; (rude); + cacatus_M_N : N ; -- [XBXFO] :: defecation, voiding of excrement; (rude); + caccabaceus_A : A ; -- [DXXFS] :: of/pertaining to cooking/kitchen pot/pan; + caccabatus_A : A ; -- [DXXFS] :: black/sooty like cooking/kitchen pot; (opposite of immaculata); + caccabulus_M_N : N ; -- [XXXFO] :: bell; small cooking pot (L+S), vessel; + caccabus_M_N : N ; -- [XXXCO] :: pot (cooking/kitchen); pan (Cal); + caccitus_M_N : N ; -- [XXXFO] :: Sweetie; (used in reference to a beautiful boy); (rude?); + cacemphaton_N_N : N ; -- [DXXES] :: illsounding, low or improper expression; + cachecta_M_N : N ; -- [XBXNO] :: sickly/ailing person; consumptive; + cachecticus_A : A ; -- [XBXNO] :: sickly/ailing; consumptive; + cachexia_F_N : N ; -- [DBXES] :: consumption, wasting; + cachinnabilis_A : A ; -- [XXXFO] :: of immoderate/excessive laughter; boisterous; capable of laughing; laughing; + cachinnatio_F_N : N ; -- [XXXEO] :: immoderate/excessive or boisterous laughter, guffawing; jeering; + cachinno_M_N : N ; -- [XXXFO] :: loud laughter; guffawing; jeering; one who laughs (violently) (L+S), derider; + cachinno_V : V ; -- [XXXDO] :: laugh aloud or boisterously, guffaw; laugh loudly at; + cachinnosus_A : A ; -- [DXXFS] :: given to loud/immoderate/excessive or boisterous laughter; + cachinnus_M_N : N ; -- [XXXCO] :: loud/excessive/boisterous/derisive laugh, guffaw; jeer; (applied to waves); + cachla_F_N : N ; -- [XAXNS] :: plant, oxeye (also called buphthalmos); + caco_V : V ; -- [XXXCO] :: defecate; defecate upon; defile with excrement; (rude); + cacoethes_N_N : N ; -- [XBXEO] :: malignant/obstinate tumor/disease; flaw/disease of character, passion; + cacometer_A : A ; -- [DPXFS] :: unmetrical, faulty in meter; + cacometrus_A : A ; -- [DPXFS] :: unmetrical, faulty in meter; + cacophaton_N_N : N ; -- [XGXFS] :: cacophony; union of ugly/disagreeable sounds forming equivocal word/expression; + cacophonia_F_N : N ; -- [FGXFS] :: ugly/disagreeable sound formed by meeting of syllables/words; cacophony; + cacosyntheton_N_N : N ; -- [XGXEO] :: ugly-sounding group of letters/words; incorrect connection of words (L+S); + cacozelia_F_N : N ; -- [XXXEO] :: bad taste; affection of style; bad/faulty/awkward imitation (L+S); + cacozelos_A : A ; -- [XXXEO] :: stylistically affected; in bad taste; + cacozelos_Adv : Adv ; -- [XXXFO] :: with stylistically affection; in bad taste; + cacozelus_A : A ; -- [XXXES] :: stylistically affected; bad imitator/imitation of; in bad taste; + cactos_M_N : N ; -- [XAXNO] :: cardoon (Cynara cardunculus), Spanish artichoke; (prickly plant w/edible stalk); + cactus_M_N : N ; -- [XXXES] :: cardoon (Cynara cardunculus), Spanish artichoke; anything thorny/unpleasant; + cacula_M_N : N ; -- [XWXCO] :: soldier's servant/slave, batman, orderly; servant; + caculatum_N_N : N ; -- [XWXFS] :: servitude; (esp. of a soldier's servant); + caculatus_M_N : N ; -- [XWXFO] :: servitude; (esp. of a soldier's servant); + cacumen_N_N : N ; -- [XXXAO] :: top, peak, summit; shoot, blade of grass, tip of tree/branch; zenith; limit; + cacumino_V : V ; -- [XXXEO] :: make pointed or tapered; sharpen; + cadaver_N_N : N ; -- [XXXCO] :: corpse, cadaver, dead body; ruined city; + cadaverina_F_N : N ; -- [DXXFS] :: carrion, flesh of a carcass; + cadaverinus_A : A ; -- [DXXFS] :: of/pertaining to carrion, carrion-; + cadaverosus_A : A ; -- [XXXFO] :: like that of a corpse/dead body; cadaverous; ghastly; + cadialis_A : A ; -- [DXXFS] :: of/pertaining to a jar; + cadium_N_N : N ; -- [XXXFO] :: small jar; + cadivus_A : A ; -- [XAXNO] :: fallen (fruit), windfall; having falling sickness/epilepsy (L+S), epileptic; + cadmea_F_N : N ; -- [XXXNO] :: zinc oxide, calamine; dross/slag formed in a furnace (L+S); citadel of Thebes; + cadmia_F_N : N ; -- [XXXEO] :: zinc oxide, calamine; dross/slag formed in a furnace (L+S); + cadmitis_F_N : N ; -- [XXXNO] :: precious stone; + cado_V : V ; -- [XXXAO] :: fall, sink, drop, plummet, topple; be slain, die; end, cease, abate; decay; + caducarius_A : A ; -- [XLXES] :: epileptic; relating to property without a master; + caduceator_M_N : N ; -- [XWXDO] :: herald bearing a staff (caduceus) sent by non-Roman generals; priest's servant; + caduceatus_A : A ; -- [XWXIS] :: having/bearing heralds wand/staff (caduceus); + caduceum_N_N : N ; -- [XXXCO] :: herald's staff carried as token of peace/truce; wand of Mercury; + caduceus_M_N : N ; -- [XXXCO] :: herald's staff carried as token of peace/truce; wand of Mercury; + caducifer_A : A ; -- [XEXEO] :: staff-bearer, i.e. Mercury; + caducitas_F_N : N ; -- [FXXEE] :: weakness; frailty; perishableness; + caduciter_Adv : Adv ; -- [XXXFO] :: precipitately, headlong; + caducum_N_N : N ; -- [XLXES] :: property without/that cannot be taken by an heir; unowned/escheated estate; + caducus_A : A ; -- [XXXAO] :: ready to fall; tottering/unsteady; falling, fallen; doomed; perishable; futile; + cadurcum_N_N : N ; -- [XXXEO] :: coverlet (of Cadurcian/French linen); marriage bed; + cadus_M_N : N ; -- [XXXCO] :: jar, large jar for wine/oil/liquids; urn, funeral urn; money jar (L+S); + cadytas_M_N : N ; -- [XAQNO] :: parasitic plant (Syrian) (Cassyta filiformis), dodder; + caecator_M_N : N ; -- [DXXFS] :: one who obstructs/stops a fountain; (one who makes blind); + caecatus_A : A ; -- [XXXEE] :: blinded; + caecias_M_N : N ; -- [XSXDO] :: east-north-east wind; + caecigenus_A : A ; -- [XBXFO] :: born blind; + caecilia_F_N : N ; -- [XAXFO] :: blind-worm; kind of lizard/lettuce (L+S); + caecitas_F_N : N ; -- [XBXCO] :: blindness, darkness; mental/moral blindness, lack of discernment; + caecitudo_F_N : N ; -- [XBXFO] :: blindness; [caecitudo nocturna => night blindness]; + caeco_V : V ; -- [XXXCO] :: blind; obscure, confuse, hide; morally blind; [stu ~ => throw dust, deceive]; + caeculto_V : V ; -- [XBXEO] :: be dim-sighted, see badly, be almost blind; be like one blind/unseeing; + caecus_A : A ; -- [XXXAO] :: blind; unseeing; dark, gloomy, hidden, secret; aimless, confused, random; rash; + caecus_M_N : N ; -- [XXXFE] :: blind person; + caecutientia_F_N : N ; -- [GXXET] :: blindness; (Erasmus); + caecutio_V : V ; -- [XBXEO] :: be blind, see poorly/faultily; + caecuttio_V : V ; -- [XBXEO] :: be blind, see poorly/faultily; + caedes_F_N : N ; -- [XXXAO] :: murder/slaughter/massacre; assassination; feuding; slain/victims; blood/gore; + caedis_F_N : N ; -- [XXXAO] :: murder/slaughter/massacre; assassination; feuding; slain/victims; blood/gore; + caedo_V2 : V2 ; -- [XXXAO] :: chop, hew, cut out/down/to pieces; strike, smite, murder; slaughter; sodomize; + caeduus_A : A ; -- [XAXCO] :: ready/suitable for felling (tree); + cael_N : N ; -- [BSXEO] :: heaven, sky; universe, world; space; air, weather; Jehovah; (shortened form); + caela_F_N : N ; -- [XXSES] :: kind of beer (made in Spain); + caelamen_N_N : N ; -- [XTXDO] :: bas-relief, low relief carving; raised ornamentation; + caelator_M_N : N ; -- [XXXCO] :: engraver, carver, worker in bas-relief; + caelatum_N_N : N ; -- [XTXEO] :: embossed/engraved work (esp. in gold/silver); + caelatura_F_N : N ; -- [XXXCO] :: engraving/carving (art/process); engraved work, engraving/carving (product); + caelebs_A : A ; -- [XXXCO] :: unmarried (usu. men), single, widowed, divorced; celibate; not supporting vines; + caelebs_M_N : N ; -- [XXXEO] :: unmarried man, bachelor, widower; celibate (eccl.); + caeleps_A : A ; -- [XXXCO] :: unmarried (usu. men), single, widowed, divorced; not supporting vines (trees); + caeleps_M_N : N ; -- [XXXEO] :: unmarried man, bachelor, widower; + caeles_A : A ; -- [XXXEO] :: heavenly; celestial (not found in NOM S); + caeles_M_N : N ; -- [XEXCO] :: the_Gods (usu. pl.); divinity, dweller in heaven; saint (Ecc); + caeleste_N_N : N ; -- [XSXCO] :: supernatural/heavenly matters/things/bodies (pl.); high places; astronomy; + caelestis_A : A ; -- [XXXBO] :: heavenly, of heavens/sky, from heaven/sky; celestial; divine; of the_Gods; 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 ; - caelibaris_A : A ; - caelibatus_M_N : N ; - caelicola_C_N : N ; - caelicus_A : A ; - caelifer_A : A ; - caelifluus_A : A ; - caeligenus_A : A ; - caeliger_A : A ; - caelipotens_A : A ; - caelitus_Adv : Adv ; - caelo_V2 : V2 ; - caelum_N_N : N ; - caelus_M_N : N ; - caementa_F_N : N ; - caementarius_M_N : N ; - caementatio_F_N : N ; - caementicium_N_N : N ; - caementicius_A : A ; - caementitium_N_N : N ; - caementitius_A : A ; - caemento_V2 : V2 ; - caementum_N_N : N ; - caemeterium_N_N : N ; - caena_F_N : N ; - caenacularius_A : A ; - caenaculum_N_N : N ; - caenaticus_A : A ; - caenatio_F_N : N ; - caenatiuncula_F_N : N ; - caenator_M_N : N ; - caenatorium_N_N : N ; - caenatorius_A : A ; - caenaturio_V : V ; - caenatus_A : A ; - caencenatio_F_N : N ; - caenito_V : V ; - caeno_V : V ; - caenositas_F_N : N ; - caenosus_A : A ; - caenula_F_N : N ; - caenulentus_A : A ; - caenum_N_N : N ; - caepa_F_N : N ; - caeparia_F_N : N ; - caeparius_M_N : N ; - caepaticus_A : A ; - caepe_N_N : N ; - caepetum_N_N : N ; - caepina_F_N : N ; - caeposus_A : A ; - caepulla_F_N : N ; - caerefolium_N_N : N ; - caereiale_N_N : N ; - caeremonia_F_N : N ; - caeremonial_N_N : N ; - caeremonialis_A : A ; - caeremoniarius_M_N : N ; - caerimonia_F_N : N ; - caerimonialis_A : A ; - caerimonior_V : V ; - caerimoniosus_A : A ; - caerimonium_N_N : N ; - caernophorus_C_N : N ; - caerulans_A : A ; - caeruleatus_A : A ; - caeruleum_N_N : N ; - caeruleus_A : A ; - caeruleus_M_N : N ; - caerulum_N_N : N ; - caerulus_A : A ; - caerulus_M_N : N ; - caesa_F_N : N ; - caesareus_A : A ; - caesarianum_N_N : N ; - caesariatus_A : A ; - caesaries_F_N : N ; - caesicius_A : A ; - caesim_Adv : Adv ; - caesio_F_N : N ; - caesitas_F_N : N ; - caesitius_A : A ; - caesius_A : A ; - caesna_F_N : N ; - caesor_M_N : N ; - caespes_M_N : N ; - caespitator_M_N : N ; - caespiticius_A : A ; - caespito_V : V ; - caesposus_A : A ; - caestar_N_N : N ; - caesticillus_M_N : N ; - caestos_M_N : N ; - caestus_M_N : N ; - caesullus_A : A ; - caesum_N_N : N ; - caesura_F_N : N ; - caesuratim_Adv : Adv ; - caesus_M_N : N ; - caeterus_A : A ; - caetra_F_N : N ; - caetratus_A : A ; - caetratus_M_N : N ; - caetus_M_N : N ; - caf_N : N ; - cafea_F_N : N ; - cafearius_A : A ; - cafeum_N_N : N ; - caia_F_N : N ; - caiatio_F_N : N ; - caio_V2 : V2 ; - cala_F_N : N ; - calabrix_F_N : N ; - calamarius_A : A ; - calamellus_M_N : N ; - calamentum_N_N : N ; - calaminthe_F_N : N ; - calamister_M_N : N ; - calamistratus_A : A ; - calamistrum_N_N : N ; - calamitas_F_N : N ; - calamites_M_N : N ; - calamitose_Adv : Adv ; - calamitosus_A : A ; - calamochnus_M_N : N ; - calamus_M_N : N ; - calasis_M_N : N ; - calathiscus_M_N : N ; - calathus_M_N : N ; - calatina_F_N : N ; - calatio_F_N : N ; - calator_M_N : N ; - calatorius_A : A ; - calautica_F_N : N ; - calbeus_M_N : N ; - calcabilis_A : A ; - calcaneum_N_N : N ; - calcaneus_M_N : N ; - calcar_N_N : N ; - calcarensis_A : A ; - calcarensis_M_N : N ; - calcaria_F_N : N ; - calcariarius_A : A ; - calcariensis_A : A ; - calcarius_A : A ; - calcarius_M_N : N ; - calcata_F_N : N ; - calcator_M_N : N ; - calcatori_M_N : N ; - calcatrix_F_N : N ; - calcatura_F_N : N ; - calcatus_A : A ; - calcatus_M_N : N ; - calceamen_N_N : N ; - calceamentarius_M_N : N ; - calceamentum_N_N : N ; - calcearia_F_N : N ; - calcearium_N_N : N ; - calcearius_M_N : N ; - calceator_M_N : N ; - calceatus_M_N : N ; - calcedonius_M_N : N ; - calcendix_F_N : N ; - calceo_V2 : V2 ; - calceolarius_M_N : N ; - calceolus_M_N : N ; - calcestrum_N_N : N ; - calcetum_N_N : N ; - calceus_M_N : N ; - calciamen_N_N : N ; - calciamentarius_M_N : N ; - calciamentum_N_N : N ; - calciaria_F_N : N ; - calciarium_N_N : N ; - calciarius_M_N : N ; - calciator_M_N : N ; - calciatus_M_N : N ; - calcifraga_F_N : N ; - calcinatio_F_N : N ; - calcio_V2 : V2 ; - calciolarius_M_N : N ; - calcis_M_N : N ; - calcitratus_M_N : N ; - calcitro_F_N : N ; - calcitro_V : V ; - calcitrosus_A : A ; - calcitrosus_M_N : N ; - calcium_N_N : N ; - calco_V : V ; - calcularius_A : A ; - calculatio_M_N : N ; - calculator_M_N : N ; - calculatorius_A : A ; - calculatura_F_N : N ; - calculensis_A : A ; - calculo_M_N : N ; - calculo_V2 : V2 ; - calculosus_A : A ; - calculosus_M_N : N ; - calculum_N_N : N ; - calculus_M_N : N ; - calcus_M_N : N ; - calda_F_N : N ; - caldamentum_N_N : N ; - caldaria_F_N : N ; - caldariola_F_N : N ; - caldarium_N_N : N ; - caldarius_A : A ; - caldicerebrius_A : A ; - caldicus_A : A ; - caldor_M_N : N ; - caldum_N_N : N ; - caldus_A : A ; - caleco_V2 : V2 ; - calefacio_V2 : V2 ; - calefactabilis_A : A ; - calefactio_F_N : N ; - calefacto_V2 : V2 ; - calefactorius_A : A ; - calefactus_A : A ; - calefactus_M_N : N ; - calefio_V : V ; - calendarium_N_N : N ; - calenter_Adv : Adv ; - caleo_V : V ; - calesco_V : V ; - calfacio_V2 : V2 ; - calficio_V2 : V2 ; - calfio_V : V ; - caliandrum_N_N : N ; - calicatus_A : A ; - calicellus_M_N : N ; - calicia_F_N : N ; - caliclarium_N_N : N ; - calico_V2 : V2 ; - caliculus_M_N : N ; - calida_F_N : N ; - calidaria_F_N : N ; - calidarium_N_N : N ; - calidarius_A : A ; - calide_Adv : Adv ; - calidum_N_N : N ; - calidus_A : A ; - caliendrum_N_N : N ; - caliga_F_N : N ; - caligaris_A : A ; - caligarius_A : A ; - caligarius_M_N : N ; - caligatio_F_N : N ; - caligatus_A : A ; - caligatus_M_N : N ; - caligineus_A : A ; - caliginosus_A : A ; - caligo_F_N : N ; - caligo_V : V ; - caligosus_A : A ; - calipha_F_N : N ; - calipha_M_N : N ; - caliptra_F_N : N ; - calix_M_N : N ; - callaica_F_N : N ; - callaina_F_N : N ; - callainus_A : A ; - callais_F_N : N ; - callarias_M_N : N ; - callens_A : A ; - calleo_V : V ; - calliblepharatus_A : A ; - calliblepharum_N_N : N ; - calliblepharus_A : A ; - callicia_F_N : N ; - callide_Adv : Adv ; - calliditas_F_N : N ; - callidulus_A : A ; - callidus_A : A ; - calligo_V : V ; - calligonon_N_N : N ; - callim_Acc_Prep : Prep ; - callim_Adv : Adv ; - callimus_M_N : N ; - callion_N_N : N ; - callionymus_M_N : N ; - callipetalon_N_N : N ; - calliplocamos_A : A ; - callis_M_N : N ; - callisco_V : V ; - callisphyros_A : A ; - callistruthia_F_N : N ; - callistruthis_F_N : N ; + caelestis_M_N : N ; -- [XEXCO] :: divinity, god/goddess; god-like person; the_Gods (pl.); + caelia_F_N : N ; -- [XXSEO] :: kind of beer; (Spanish L+S); + caelibalis_A : A ; -- [DXXES] :: [~ hasta => small spear/pin with which bride's hair was divided into 6 locks]; + caelibaris_A : A ; -- [XXXFS] :: [~ hasta => small spear/pin with which bride's hair was divided into 6 locks]; + caelibatus_M_N : N ; -- [XXXEO] :: celibacy; bachelorhood; state of not being married; single life; + caelicola_C_N : N ; -- [XEXCO] :: heaven dweller; deity, god/goddess; worshiper of heavens (L+S); + caelicus_A : A ; -- [FEXEE] :: heavenly; celestial; + caelifer_A : A ; -- [XXXCO] :: supporting sky/heavens; + caelifluus_A : A ; -- [DXXFS] :: flowing from heaven; + caeligenus_A : A ; -- [XEXEO] :: of heavenly birth/origin, heaven born; + caeliger_A : A ; -- [DYXFS] :: heaven supporting; + caelipotens_A : A ; -- [XEXFO] :: powerful in heaven; + caelitus_Adv : Adv ; -- [XXXEO] :: from heaven; heavenly; from Emperor (L+S); divinely; by divine inspiration; + caelo_V2 : V2 ; -- [XTXBO] :: carve, make raised work/relief; engrave, emboss; chase, finish; embroider; + caelum_N_N : N ; -- [XSXAO] :: heaven, sky, heavens; space; air, climate, weather; universe, world; Jehovah; + caelus_M_N : N ; -- [DEXDS] :: |heaven (eccl.); the_heavens (pl.); [regnum caelorum => kingdom of heaven]; + caementa_F_N : N ; -- [XXXIO] :: small stones, rubble (for concrete); quarry stones (for walls) (L+S); chips; + caementarius_M_N : N ; -- [XTXIO] :: worker in concrete; mason, stone cutter; builder of walls (L+S); + caementatio_F_N : N ; -- [GXXEK] :: cementing; + caementicium_N_N : N ; -- [XTXEO] :: concrete (undressed stones/rubble, lime and sand); unhewn/quarried stone (L+S); + caementicius_A : A ; -- [XTXCO] :: of concrete (undressed stones/rubble, lime and sand); of unhewn stones (L+S); + caementitium_N_N : N ; -- [XTXFS] :: concrete (undressed stones/rubble, lime and sand); unhewn/quarried stone (L+S); + caementitius_A : A ; -- [XTXFS] :: of concrete (undressed stones/rubble, lime and sand); of unhewn stones (L+S); + caemento_V2 : V2 ; -- [ETXEE] :: cement, fasten with mortar; + caementum_N_N : N ; -- [FXXCF] :: |cement; mortar; + caemeterium_N_N : N ; -- [FXXCF] :: cemetery; + caena_F_N : N ; -- [XXXEO] :: dinner/supper, principle Roman meal (evening); course; meal; company at dinner; + caenacularius_A : A ; -- [XXXFS] :: of/pertaining to a garret/attic; + caenaculum_N_N : N ; -- [XXXCO] :: attic, garret (often let as lodging); upstairs dining room; top/upper story; + caenaticus_A : A ; -- [XXXFO] :: of/pertaining to (a) dinner; + caenatio_F_N : N ; -- [XXXCO] :: dining-room; dining hall; + caenatiuncula_F_N : N ; -- [XXXFO] :: small dining-room; + caenator_M_N : N ; -- [DXXFS] :: diner; dinner guest; + caenatorium_N_N : N ; -- [XXXEO] :: dining room, hall; evening dress, dinner wear (pl.); + caenatorius_A : A ; -- [XXXEO] :: of/used for dining; pertaining to dinner or the table; + caenaturio_V : V ; -- [XXXFO] :: desire to dine; have an appetite for dinner; + caenatus_A : A ; -- [XXXCO] :: having dined/eaten; supplied with dinner; + caencenatio_F_N : N ; -- [XXXES] :: dinner party; (Cicero from Greek); supping together, table companionship (L+S); + caenito_V : V ; -- [XXXCO] :: dine/eat habitually (in a particular place/manner); have dinner, dine (often); + caeno_V : V ; -- [XXXBO] :: dine, eat dinner/supper; have dinner with; dine on, make a meal of; + caenositas_F_N : N ; -- [XXXES] :: dirty/foul/muddy place; + caenosus_A : A ; -- [XXXDS] :: muddy; filthy, foul; slimy, marshy; impure; + caenula_F_N : N ; -- [XXXCO] :: little dinner/supper; + caenulentus_A : A ; -- [DXXFS] :: covered in mud/filth; muddy, filthy, slimy; + caenum_N_N : N ; -- [XXXBO] :: mud, mire, filth, slime, dirt, uncleanness; (of persons) scum/filth; + caepa_F_N : N ; -- [XAXCO] :: onion (Allium capa); (used as term of abuse); + caeparia_F_N : N ; -- [DBXFS] :: disease in private parts; + caeparius_M_N : N ; -- [XAXFO] :: grower of onions; trader in onions (L+S); + caepaticus_A : A ; -- [XXXFO] :: resembling an onion; + caepe_N_N : N ; -- [XAXCO] :: onion (Allium capa); + caepetum_N_N : N ; -- [XAXFO] :: onion bed; + caepina_F_N : N ; -- [XAXFO] :: onion bed/field; + caeposus_A : A ; -- [XAXFO] :: abounding in onions; full of onions; + caepulla_F_N : N ; -- [XAXFS] :: onion bed/field; + caerefolium_N_N : N ; -- [XAXDO] :: chervil (Anthiscus cerefolium); + caereiale_N_N : N ; -- [EEXEE] :: book of ceremonies; + caeremonia_F_N : N ; -- [FEXCF] :: ceremony; sacred rite/ritual/usage; holy dread, reverence, worship; sanctity; + caeremonial_N_N : N ; -- [FEXEF] :: ceremonial; system of rules observed on certain occasions/at times of worship; + caeremonialis_A : A ; -- [FEXEF] :: ceremonial; pertaining to a religious/sacred rite/ritual/usage; + caeremoniarius_M_N : N ; -- [EXXEE] :: master of ceremonies; + caerimonia_F_N : N ; -- [XEXCO] :: ceremony; sacred rite/ritual/usage; holy dread, reverence, worship; sanctity; + caerimonialis_A : A ; -- [DEXFS] :: ceremonial; pertaining to a religious/sacred rite/ritual/usage; + caerimonior_V : V ; -- [DEXFS] :: treat with due ceremony; worship; + caerimoniosus_A : A ; -- [DEXFS] :: pertaining/devoted to religious/sacred rite/ritual/usage; + caerimonium_N_N : N ; -- [XEXES] :: ceremony; sacred rite/ritual/usage; holy dread, reverence, worship; sanctity; + caernophorus_C_N : N ; -- [XEXIO] :: bearer of cernus (vessel for holding offerings); + caerulans_A : A ; -- [XXXFS] :: colored blue; dark colored; sky blue; + caeruleatus_A : A ; -- [XXXFO] :: |colored with blue; dark blue, dark colored (L+S); sky blue; + caeruleum_N_N : N ; -- [XXXEO] :: |azurite; kind of blue glass; + caeruleus_A : A ; -- [XXXAO] :: blue, cerulean, dark; greenish-blue, azure; of river/sea deities; of sky/sea; + caeruleus_M_N : N ; -- [XEXEO] :: epithet for river/sea deities; + caerulum_N_N : N ; -- [XXXEO] :: |azurite; kind of blue glass; + caerulus_A : A ; -- [XXXAO] :: blue, cerulean; deep/sky/greenish-blue, azure; of river/sea deities; of sky/sea; + caerulus_M_N : N ; -- [XEXEO] :: epithet for river/sea deities; + caesa_F_N : N ; -- [DWXFS] :: cut; (of a sword/knife/spear); + caesareus_A : A ; -- [FXXFM] :: imperial; of Caesar; + caesarianum_N_N : N ; -- [XXXFO] :: eye salve; + caesariatus_A : A ; -- [XXXEO] :: having long/flowing/luxuriant hair/plume; having lush vegetation/foliage; + caesaries_F_N : N ; -- [XXXCO] :: hair; long/flowing/luxuriant hair; dark/beautiful hair; plume (of a helmet); + caesicius_A : A ; -- [BXXFS] :: bluish; dark blue; + caesim_Adv : Adv ; -- [XXXCO] :: by chopping/cutting; by hewing/slashing; with sword edge; in short clauses; + caesio_F_N : N ; -- [XAXFO] :: chopping/cutting/hewing down (trees); + caesitas_F_N : N ; -- [DXXFS] :: blue; blueness; + caesitius_A : A ; -- [BXXFS] :: bluish; dark blue; + caesius_A : A ; -- [XXXCO] :: gray, gray-blue, steel-colored; having gray/gray-blue/steel-colored eyes; + caesna_F_N : N ; -- [BXXBS] :: dinner/supper, principle Roman meal (evening); course, dish; company at dinner; + caesor_M_N : N ; -- [DAXES] :: hewer, one who hews; hewer (of wood); (stone) breaker; + caespes_M_N : N ; -- [XAXBO] :: grassy ground, grass; earth; sod, turf; altar/rampart/mound of sod/turf/earth; + caespitator_M_N : N ; -- [XAXFS] :: stumbler; shying horse; + caespiticius_A : A ; -- [DAXFS] :: made of turf; + caespito_V : V ; -- [XXXFO] :: stumble; + caesposus_A : A ; -- [DAXFS] :: abounding in grass/turf; + caestar_N_N : N ; -- [FXXFZ] :: support; means of girdle; + caesticillus_M_N : N ; -- [DXXFS] :: small ring/hoop placed on head to support a burden; + caestos_M_N : N ; -- [XXXFS] :: band supporting breasts (esp. girdle of Venus); girdle/belt/girth/strap; + caestus_M_N : N ; -- [XXXCO] :: boxing-glove, strip of leather weighted with lead/iron tied to boxer's hands; + caesullus_A : A ; -- [XXXFO] :: gray-eyed, having gray eyes; + caesum_N_N : N ; -- [DGXES] :: comma; pause, stop; + caesura_F_N : N ; -- [XAXEO] :: cutting (down/off), felling (of trees); that which was cut off; pause in verse; + caesuratim_Adv : Adv ; -- [DGXFS] :: with pauses in short clauses; + caesus_M_N : N ; -- [DAXFS] :: cutting, cutting off; + caeterus_A : A ; -- [XXXAS] :: the_other; the_others (pl.). the_remaining/rest, all the rest; + caetra_F_N : N ; -- [XWSCO] :: caetra (small light shield); (Spanish); elephant's hide; + caetratus_A : A ; -- [XWXEO] :: armed with caetra (small light shield); + caetratus_M_N : N ; -- [XWXDO] :: soldier armed with caetra (small light shield); Greek peltest; + caetus_M_N : N ; -- [XXXBE] :: |social intercourse (w/hominium), society, company; sexual intercourse; + caf_N : N ; -- [DEQEW] :: kaf; (11th letter of Hebrew alphabet); (transliterate as K and CH); + cafea_F_N : N ; -- [GXXEK] :: coffee; + cafearius_A : A ; -- [GXXEK] :: of coffee; + cafeum_N_N : N ; -- [GXXEK] :: cafe; + caia_F_N : N ; -- [XXXFS] :: cudgel; + caiatio_F_N : N ; -- [DXXFS] :: striking/cudgeling/beating of children; + caio_V2 : V2 ; -- [DXXFS] :: beat, thrash, cudgel; + cala_F_N : N ; -- [XAXFO] :: firewood; piece of firewood; + calabrix_F_N : N ; -- [XAXNO] :: kind of thorn tree; (perh. hawthorn); (perh. buckthorn L+S); + calamarius_A : A ; -- [XGXFO] :: for holding pens; pertaining to a writing reed; + calamellus_M_N : N ; -- [DGXFS] :: small/little (writing) reed/pen; + calamentum_N_N : N ; -- [XAXFO] :: dead wood, withered/dry wood/vine; + calaminthe_F_N : N ; -- [DAXFS] :: plant, kind of mint; + calamister_M_N : N ; -- [XXXCO] :: curling-tongs/iron; excessive flourish in discourse; + calamistratus_A : A ; -- [XXXDO] :: curled with curling-iron; having hair curled, effeminately adorned; + calamistrum_N_N : N ; -- [XXXCO] :: curling-tongs/iron; excessive flourish in discourse; + calamitas_F_N : N ; -- [XXXBO] :: loss, damage, harm; misfortune/disaster; military defeat; blight, crop failure; + calamites_M_N : N ; -- [XAXNO] :: small green frog; (rain frog); (also called diopetes rana); + calamitose_Adv : Adv ; -- [XXXFO] :: disastrously; unfortunately, miserably; destructively; + calamitosus_A : A ; -- [XXXBO] :: calamitous; ruinous, destructive; liable to damage/disaster; damaged/miserable; + calamochnus_M_N : N ; -- [XAXNO] :: deposit/efforescence of salt on reeds; sea foam (L+S); (in pure Latin adarca); + calamus_M_N : N ; -- [FXXCF] :: |branch; arm; branch of a candelabrum; + calasis_M_N : N ; -- [XXXFO] :: kind of (woman's) tunic; + calathiscus_M_N : N ; -- [XXXEO] :: small wicker basket; + calathus_M_N : N ; -- [XXXCO] :: wicker basket, flower basket; wine-cup; milk pail; cheese/curdled milk bowl; + calatina_F_N : N ; -- [XAXNS] :: plant (gentian); + calatio_F_N : N ; -- [XXXFO] :: convoking, calling, summoning; + calator_M_N : N ; -- [XXXCO] :: personal attendant, servant, footman; servant of a priest; + calatorius_A : A ; -- [DEXFS] :: pertaining to a servant of a priest; + calautica_F_N : N ; -- [XXXEO] :: kind of woman's headdress; (fell down to shoulders); (kind of veil?); + calbeus_M_N : N ; -- [XXXEO] :: arm-band/filet worn for ornamental/medical purposes; + calcabilis_A : A ; -- [EXXFE] :: able to be trod upon; + calcaneum_N_N : N ; -- [XBXFS] :: heel; (rare form for calx); + calcaneus_M_N : N ; -- [XBXFS] :: heel; (rare form for calx); + calcar_N_N : N ; -- [XXXCO] :: spur (for horse); spur, incitement, stimulus; spur of a cock; + calcarensis_A : A ; -- [XTXIO] :: of/connected with a lime quarry/kiln/works; + calcarensis_M_N : N ; -- [DTXFS] :: lime burner; worker at lime kiln/works; + calcaria_F_N : N ; -- [XTXEO] :: lime quarry; lime kiln; lime works; + calcariarius_A : A ; -- [XTXIO] :: of/connected with a lime quarry/kiln/works; connected with burning for lime; + calcariensis_A : A ; -- [XTXIO] :: of/connected with a lime quarry/kiln/works; + calcarius_A : A ; -- [XTXEO] :: designed for burning lime; pertaining to lime; lime-; + calcarius_M_N : N ; -- [XTXFS] :: lime burner; worker at lime kiln/works; + calcata_F_N : N ; -- [XXXFS] :: filling for ditches, fsacines; ramparts? crates?; + calcator_M_N : N ; -- [DXXFS] :: one who treads (in a treadmill); one who treads grapes; + calcatori_M_N : N ; -- [DXXFS] :: wine press; + calcatrix_F_N : N ; -- [DXXFS] :: she who treads; she who despises/condemns (something); + calcatura_F_N : N ; -- [XXXFO] :: treading (in a treadmill/wine); + calcatus_A : A ; -- [XGXEO] :: trite, hackneyed; + calcatus_M_N : N ; -- [XXXFS] :: treading (in a treadmill); + calceamen_N_N : N ; -- [XXXNO] :: shoe; footwear; + calceamentarius_M_N : N ; -- [DXXFS] :: shoemaker; dealer/merchant in shoes; + calceamentum_N_N : N ; -- [XXXCO] :: shoe; instrument for stretching hides; + calcearia_F_N : N ; -- [XXXFS] :: shoe shop/store; + calcearium_N_N : N ; -- [XXXEO] :: shoe money/allowance; + calcearius_M_N : N ; -- [XXXIO] :: shoemaker; dealer/merchant in shoes; + calceator_M_N : N ; -- [XXXIO] :: shoemaker; + calceatus_M_N : N ; -- [XXXEO] :: shoe; footwear; sandal; + calcedonius_M_N : N ; -- [EXXFW] :: chalcedony; (stone of third foundation of New Jerusalem in Revelations 21:19); + calcendix_F_N : N ; -- [XAXFO] :: murex, purple-fish; a shellfish from which (royal) purple dye was obtained); + calceo_V2 : V2 ; -- [XXXCO] :: put shoes on, furnish with shoes; shoe (horses); put feet in something; + calceolarius_M_N : N ; -- [XXXFO] :: shoemaker; + calceolus_M_N : N ; -- [XXXEO] :: shoe; slipper; small shoe (L+S); half-boot; + calcestrum_N_N : N ; -- [GXXEK] :: concrete; + calcetum_N_N : N ; -- [XAXNO] :: plant (unidentified); + calceus_M_N : N ; -- [XXXCO] :: shoe; soft shoe, slipper; [~ mullei/patricii => red shoe of ex-curule senator]; + calciamen_N_N : N ; -- [XXXNS] :: shoe; footwear; + calciamentarius_M_N : N ; -- [DXXFS] :: shoemaker; dealer/merchant in shoes; + calciamentum_N_N : N ; -- [XXXCO] :: shoe; instrument for stretching hides; + calciaria_F_N : N ; -- [XXXFS] :: shoe shop/store; + calciarium_N_N : N ; -- [XXXEO] :: shoe money/allowance; + calciarius_M_N : N ; -- [XXXIO] :: shoemaker; dealer/merchant in shoes; + calciator_M_N : N ; -- [XXXIO] :: shoemaker; + calciatus_M_N : N ; -- [XXXCO] :: shoe; footwear; sandal; + calcifraga_F_N : N ; -- [XAXEO] :: rock-plant (empetros); unknown plant (removes bladder stones); (haristongue?); + calcinatio_F_N : N ; -- [GSXEK] :: calcination; + calcio_V2 : V2 ; -- [XXXCO] :: put shoes on, furnish with shoes, shoe (horses); put feet in something; + calciolarius_M_N : N ; -- [XXXFS] :: shoemaker; + calcis_M_N : N ; -- [XXXFS] :: lead vial/bottle/jar; + calcitratus_M_N : N ; -- [XXXNO] :: kicking with heels; + calcitro_F_N : N ; -- [XXXDO] :: one that kicks/is inclined to kick with heels, kicker; + calcitro_V : V ; -- [XXXEO] :: kick with heels, kick; be refractory; resist; kick convulsively (dying); + calcitrosus_A : A ; -- [XXXEO] :: inclined/apt to kick with heels, kicking; + calcitrosus_M_N : N ; -- [XXXFO] :: one inclined/apt to kick with heels, kicker; + calcium_N_N : N ; -- [GSXEK] :: calcium; + calco_V : V ; -- [XXXAO] :: tread/trample upon/under foot, crush; tamp/ram down; spurn; copulate (cock); + calcularius_A : A ; -- [DSXFS] :: of/pertaining to calculations; [~ error => error in reckoning/calculation]; + calculatio_M_N : N ; -- [DSXES] :: computation, calculation, reckoning; stone (kidney/bladder), calculus; + calculator_M_N : N ; -- [XSXDO] :: one versed in/teacher of arithmetic; calculator, bookkeeper, accountant; + calculatorius_A : A ; -- [XSXIO] :: used in making (arithmetic) calculations; pertaining to an accountant; + calculatura_F_N : N ; -- [XSXIO] :: calculating, arithmetic; + calculensis_A : A ; -- [XAXNO] :: found in pebbly places; pertaining to stones; + calculo_M_N : N ; -- [DSXFS] :: calculator, computer, accountant; + calculo_V2 : V2 ; -- [DSXES] :: calculate, compute, reckon; consider as; esteem; + calculosus_A : A ; -- [XXXCO] :: full of pebbles, pebbly; knobby; suffering from stones (kidney/bladder); + calculosus_M_N : N ; -- [XBXEO] :: one suffering from/afflicted with kidney/bladder stones; + calculum_N_N : N ; -- [FSXFE] :: calculation, computation; + calculus_M_N : N ; -- [DSXFS] :: |counter; small weight; live coal (Def); + calcus_M_N : N ; -- [DTXFS] :: small weight; + calda_F_N : N ; -- [XXXCO] :: hot water; warm water; + caldamentum_N_N : N ; -- [DAXFS] :: fermentation; + caldaria_F_N : N ; -- [XXXES] :: warm bath; cauldron (Ecc); + caldariola_F_N : N ; -- [DSXFS] :: small vessel for heating fluids; + caldarium_N_N : N ; -- [DXXES] :: caldarium, hot bathing room; hot bath; + caldarius_A : A ; -- [XXXES] :: used/suitable for warming/hot water; warm; for plastering bath walls; by heat; + caldicerebrius_A : A ; -- [XXXFO] :: hot-headed; + caldicus_A : A ; -- [XAXFO] :: hot (?); (descriptive of a kind of fig); + caldor_M_N : N ; -- [XXXEO] :: heat, warmth; + caldum_N_N : N ; -- [XXXCO] :: drink of wine and hot water (w/spices); (usu. Roman winter drink); heat; + caldus_A : A ; -- [XXXAO] :: warm, hot; fiery, lusty; eager, rash, on the spot; having a warm climate/place; + caleco_V2 : V2 ; -- [XTXEO] :: coat with lime/whitewash, whitewash; + calefacio_V2 : V2 ; -- [XXXBO] :: make warm/hot (exert/ferment); heat; excite/rouse; vex/trouble; pursue eagerly; + calefactabilis_A : A ; -- [DXXFS] :: that can be warmed/made hot; + calefactio_F_N : N ; -- [XXXEO] :: heating, warming, making (bath) warm; + calefacto_V2 : V2 ; -- [XXXEO] :: heat, warm; make a person warm by beating; + calefactorius_A : A ; -- [DXXES] :: that has a warming/heating power; warming; + calefactus_A : A ; -- [XXXEW] :: heated, warmed; excited, roused; [calefacta ora => flushed]; + calefactus_M_N : N ; -- [XXXNO] :: action of heating/warming; + calefio_V : V ; -- [XXXBS] :: be made/be warm/hot/heated/excited/roused/vexed/troubled; (calefacio PASS); + calendarium_N_N : N ; -- [XXXDO] :: calendar; ledger/account book (for monthly interest payments); + calenter_Adv : Adv ; -- [XXXFO] :: skillfully, cunningly; + caleo_V : V ; -- [XXXAO] :: be/feel/be kept warm; be hot with passion/inflamed/active/driven hotly/urged; + calesco_V : V ; -- [XXXCO] :: grow/become warm/hot; be heated; become inflamed (w/love/lust); be inspired; + calfacio_V2 : V2 ; -- [XXXBO] :: make warm/hot (exert/ferment); heat; excite/rouse; vex/trouble; pursue eagerly; + calficio_V2 : V2 ; -- [XXXEO] :: make warm/hot (exertion/fermentation); heat; excite, rouse; vex, trouble; + calfio_V : V ; -- [XXXBS] :: be made/be warm/hot/heated/excited/roused/vexed/troubled; (calefacio PASS); + caliandrum_N_N : N ; -- [XXXEO] :: woman's wig, head-dress of false hair; + calicatus_A : A ; -- [DTXFS] :: plastered with lime; whitewashed; + calicellus_M_N : N ; -- [DXXFS] :: little/small cup; + calicia_F_N : N ; -- [XAXNO] :: plant (unidentified); (according to Pythagoras made water freeze); + caliclarium_N_N : N ; -- [DXXFS] :: cupboard, sideboard, place where cups stand; + calico_V2 : V2 ; -- [XTXEO] :: coat with lime/whitewash, whitewash; + caliculus_M_N : N ; -- [XAXEO] :: |calyx/cup of a flower; shell (sea urchin); (maybe confused with calyculus); + calida_F_N : N ; -- [XXXCO] :: hot water; warm water; + calidaria_F_N : N ; -- [XXXES] :: warm bath; + calidarium_N_N : N ; -- [DXXES] :: caldarium, hot bathing room; hot bath; + calidarius_A : A ; -- [XXXES] :: used/suitable for warming/hot water; warm; for plastering bath walls; by heat; + calide_Adv : Adv ; -- [XXXEO] :: in hot haste. in heat of the moment; rashly; + calidum_N_N : N ; -- [XXXCO] :: drink of wine and hot water (w/spices); (usu. Roman winter drink); heat; + calidus_A : A ; -- [XXXAO] :: warm, hot; fiery, lusty; eager, rash, on the spot; having a warm climate/place; + caliendrum_N_N : N ; -- [XXXEO] :: woman's wig, head-dress of false hair; + caliga_F_N : N ; -- [XWXCO] :: soldier's boot; boot; military service; + caligaris_A : A ; -- [XWXEO] :: of/for a soldier's boot; boot-; + caligarius_A : A ; -- [XWXEO] :: of/for a soldier's boot; boot-; wearing army boots; + caligarius_M_N : N ; -- [XWXEO] :: maker of soldier's boots, bootmaker; + caligatio_F_N : N ; -- [XXXNO] :: darkness, mistiness (of eyes); + caligatus_A : A ; -- [XWXCO] :: wearing army boots; of common soldier; booted, wearing heavy boots/brogans; + caligatus_M_N : N ; -- [XWXEO] :: common soldier; private; + caligineus_A : A ; -- [XXXFO] :: dark, obscuring, murky, gloomy; + caliginosus_A : A ; -- [XXXCO] :: foggy, misty; covered with mist; obscure, dark, gloomy; uncertain; + caligo_F_N : N ; -- [XXXBO] :: mist/fog; darkness/gloom/murkiness; moral/intellectual/mental dark; dizziness; + caligo_V : V ; -- [XXXCO] :: be dark/gloomy/misty/cloudy; have bad vision; cloud; be blinded; be/make dizzy; + caligosus_A : A ; -- [DXXCS] :: foggy, misty; covered with mist; obscure, dark, gloomy; uncertain; + calipha_F_N : N ; -- [FXQFE] :: caliph; + calipha_M_N : N ; -- [GXXEK] :: caliph; + caliptra_F_N : N ; -- [XXXFS] :: kind of head covering; + calix_M_N : N ; -- [XXXBO] :: cup, goblet, a vessel for drinking; chalice; cup of wine; pot; water regulator; + callaica_F_N : N ; -- [XXXNO] :: precious stone; (turquoise?); + callaina_F_N : N ; -- [XXXNO] :: pale green precious stone; turquoise; + callainus_A : A ; -- [XXXEO] :: pale green, greenish-blue, turquoise-colored; + callais_F_N : N ; -- [XXXNO] :: greenish-blue/sea-green precious stone; turquoise; + callarias_M_N : N ; -- [XAXNO] :: kind of codfish; + callens_A : A ; -- [XXXFO] :: skilled/practiced/versed/expert in (w/GEN); + calleo_V : V ; -- [XXXCO] :: be calloused/hardened; grow hard; be experienced/skilled, understand; know how; + calliblepharatus_A : A ; -- [XXXNO] :: having beautiful (made-up) eyes/eyelids; + calliblepharum_N_N : N ; -- [XXXEO] :: cosmetic for eyelids and lashes; dye for coloring eyebrows (L+S); + calliblepharus_A : A ; -- [XXXNO] :: having beautiful (made-up) eyes/eyelids; + callicia_F_N : N ; -- [XAXNS] :: plant (unidentified); (according to Pythagoras made water freeze); + callide_Adv : Adv ; -- [XXXCO] :: expertly, skillfully, cleverly; well, thoroughly; cunningly, artfully; + calliditas_F_N : N ; -- [XXXCO] :: shrewdness, skillfulness, skill; craftiness, cunning; subtle tricks (pl.); + callidulus_A : A ; -- [DXXFS] :: little cunning/sly/crafty; + callidus_A : A ; -- [XXXBO] :: crafty, sly, cunning; wise, expert, skillful, clever, experienced, ingenious; + calligo_V : V ; -- [XXXES] :: be dark/gloomy/misty/cloudy; have bad vision; cloud; be blinded; be/make dizzy; + calligonon_N_N : N ; -- [XAXNS] :: plant; (also called polygonon mas); + callim_Acc_Prep : Prep ; -- [AXXBO] :: without knowledge of, unknown to; concealed/secret from; (rarely w/ABL); + callim_Adv : Adv ; -- [AXXBO] :: secretly, in secret, unknown to; privately; covertly; by fraud; + callimus_M_N : N ; -- [XXXNO] :: stone said to be found inside a type of eagle-stone; kind of eagle-stone (L+S); + callion_N_N : N ; -- [XAXNO] :: winter-cherry (Physalis alkekengi); (pure Latin vesicaria); + callionymus_M_N : N ; -- [XAXNO] :: fish (Uranoscopus scaber?); + callipetalon_N_N : N ; -- [DAXFS] :: plant; (pure Latin quinquefolium); + calliplocamos_A : A ; -- [XXXFO] :: having/with beautiful tresses; + callis_M_N : N ; -- [XAXCO] :: rough/stony track, path; moorland/mountain pasture; mountain pass/defile (L+S); + callisco_V : V ; -- [XXXFO] :: grow insensitive; become dull/insensible (L+S); + callisphyros_A : A ; -- [XXXFO] :: having/with beautiful ankles; + callistruthia_F_N : N ; -- [XAXES] :: very delicate fig sparrows were fond of (L+S); (pure Latin ficus passerariae); + callistruthis_F_N : N ; -- [XAXFS] :: very delicate fig sparrows were fond of (L+S); (pure Latin ficus passerariae); 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 ; - callosus_A : A ; - callum_N_N : N ; - callus_M_N : N ; - calo_M_N : N ; - calo_V2 : V2 ; - calor_M_N : N ; - caloratus_A : A ; - caloria_F_N : N ; - calorificus_A : A ; - calos_Adv : Adv ; - calota_F_N : N ; - calpar_N_N : N ; - calta_F_N : N ; - caltha_F_N : N ; - calthula_F_N : N ; - caltula_F_N : N ; - calumma_N_N : N ; - calumnia_F_N : N ; - calumniator_M_N : N ; - calumniatrix_F_N : N ; - calumnior_V : V ; - calumniose_Adv : Adv ; - calumniosus_A : A ; - calumniosus_M_N : N ; - calumpnia_F_N : N ; - calva_F_N : N ; - calvar_N_N : N ; - calvaria_F_N : N ; - calvariola_F_N : N ; - calvarium_N_N : N ; - calvatus_A : A ; - calventinus_A : A ; - calveo_V : V ; - calvesco_V : V ; - calvio_V2 : V2 ; - calvities_F_N : N ; - calvitium_N_N : N ; - calvo_V2 : V2 ; - calvor_V : V ; - calvus_A : A ; - calvus_M_N : N ; + callithrix_2_N : N ; -- [XAXNO] :: waterwort (Asplenium trichomanes) (for hair coloring); an Ethiopian monkey; + callitrichon_N_N : N ; -- [XAXNO] :: maidenhair (Capillus Veneris), type of fern; commonly called adiantum (L+S); + callitrichos_F_N : N ; -- [XAXNS] :: maidenhair (Capillus Veneris), type of fern; commonly called adiantum (L+S); + callositas_F_N : N ; -- [XBXFO] :: hardening/thickening of skin, callus; callousness; hardness; hardening; + callosus_A : A ; -- [XXXCO] :: tough, hard/thick-skinned; made hard/tough by use; callused, indurated; + callum_N_N : N ; -- [XXXBO] :: hard/tough skin/hide, callus; callousness, lack of feeling; firm flesh/fruit; + callus_M_N : N ; -- [XXXBO] :: hard/tough skin/hide, callus; callousness, lack of feeling; firm flesh/fruit; + calo_M_N : N ; -- [XXXFO] :: wooden shoe; + calo_V2 : V2 ; -- [XXXEO] :: |let down, allow to hang free; loosen; slacken; + calor_M_N : N ; -- [XXXBO] :: heat; warmth, glow; warm/hot/summer heat/weather; fever; passion, zeal; love; + caloratus_A : A ; -- [XXXFO] :: passionate, vehement, furious; hot, heated; + caloria_F_N : N ; -- [GSXEK] :: calorie; + calorificus_A : A ; -- [XXXFO] :: promoting/causing heat/warmth; warming, heating; + calos_Adv : Adv ; -- [XXXIO] :: well; hurrah for !; + calota_F_N : N ; -- [FEXFE] :: skullcap; + calpar_N_N : N ; -- [XXXEO] :: wine jar/pitcher; wine from a calpar; wine cask (L+S); vessel for liquids; + calta_F_N : N ; -- [XAXEO] :: marigold (Calendula officinalis); + caltha_F_N : N ; -- [XAXEO] :: marigold (Calendula officinalis); + calthula_F_N : N ; -- [XXXES] :: yellow garment worn by women; yellow robe; + caltula_F_N : N ; -- [XXXEO] :: short undergarment worn by women; + calumma_N_N : N ; -- [DXXFS] :: covering; + calumnia_F_N : N ; -- [FLXFM] :: |charge; accusation; + calumniator_M_N : N ; -- [XLXCO] :: false accuser; pettifogger, chicaner; perverter of law; carping critic; + calumniatrix_F_N : N ; -- [XLXFO] :: false accuser/claimant (female); + calumnior_V : V ; -- [XXXBO] :: accuse falsely; misrepresent, interpret wrongly; depreciate, find fault with; + calumniose_Adv : Adv ; -- [XXXFO] :: by false pretenses; + calumniosus_A : A ; -- [XXXCO] :: that makes false/groundless accusations; marked by misinterpretations, false; + calumniosus_M_N : N ; -- [XXXFS] :: person convicted of making false/groundless accusations/information; + calumpnia_F_N : N ; -- [FLXFY] :: charge; accusation; opprobrium; false charge; + calva_F_N : N ; -- [XXXDO] :: bald head, scalp; skull; smooth nuts (hazel nuts?); + calvar_N_N : N ; -- [XXXEO] :: skulls (pl.); kind of fish; + calvaria_F_N : N ; -- [XBXEO] :: skull; + calvariola_F_N : N ; -- [DXXFS] :: small cup; + calvarium_N_N : N ; -- [DAXFS] :: round sea-fish without scales (bald); + calvatus_A : A ; -- [XXXES] :: made bald, bare; bare (vines); + calventinus_A : A ; -- [XAXNO] :: variety of vine; + calveo_V : V ; -- [XBXNO] :: be bald/hairless; + calvesco_V : V ; -- [XXXEO] :: lose one's hair, become bald; molt (birds); become bare/empty of vegetation; + calvio_V2 : V2 ; -- [DXXES] :: deceive, intrigue/use subterfuge/tricks against; be tricked/deceived (PASS); + calvities_F_N : N ; -- [XBXFO] :: baldness, hairlessness; + calvitium_N_N : N ; -- [XXXCO] :: baldness, absence/loss of hair; bareness/scantiness of vegetation; + calvo_V2 : V2 ; -- [XXXES] :: deceive, intrigue/use subterfuge/tricks against; be tricked/deceived (PASS); + calvor_V : V ; -- [XXXCO] :: deceive, intrigue/use subterfuge/tricks against; + calvus_A : A ; -- [XXXCO] :: bald, bald-headed; having head shaved; smooth (nuts); bare/stripped (things) + calvus_M_N : N ; -- [XBXEO] :: bald person; 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 ; - calymma_N_N : N ; - calyx_M_N : N ; - cama_F_N : N ; - camacum_N_N : N ; - camaeus_M_N : N ; - camara_F_N : N ; - camararius_A : A ; - camaratio_F_N : N ; - camaro_V2 : V2 ; - camaura_F_N : N ; - cambialis_A : A ; - cambio_V : V ; - cambio_V2 : V2 ; - cambitas_F_N : N ; - cambium_N_N : N ; - cambuta_F_N : N ; - camela_F_N : N ; - camelarius_M_N : N ; - camelaucium_N_N : N ; - camelelasia_F_N : N ; - cameleon_M_N : N ; - camelinus_A : A ; - camella_F_N : N ; - camelopardalis_F_N : N ; - camelopardalus_M_N : N ; - camelopardus_M_N : N ; - camelopodium_N_N : N ; - camelottum_N_N : N ; - camelus_M_N : N ; - camena_F_N : N ; - camera_F_N : N ; - cameralis_A : A ; - camerarius_A : A ; - camerarius_M_N : N ; - cameratio_F_N : N ; - camero_V2 : V2 ; - camescopium_N_N : N ; - camilla_F_N : N ; - camillus_M_N : N ; - camino_V2 : V2 ; - caminus_M_N : N ; - camisia_F_N : N ; - camisium_N_N : N ; - cammaron_N_N : N ; - cammaros_M_N : N ; - cammarus_M_N : N ; - campagus_M_N : N ; - campana_F_N : N ; - campanarium_N_N : N ; - campanarius_M_N : N ; - campaneus_A : A ; - campanicum_N_N : N ; - campanile_N_N : N ; - campanius_A : A ; - campanula_M_N : N ; - campanus_A : A ; - campe_F_N : N ; - campeador_M_N : N ; - campester_A : A ; - campestratus_M_N : N ; - campestre_N_N : N ; - campestris_A : A ; - campestris_F_N : N ; - campestris_M_N : N ; - campicursio_F_N : N ; - campidoctor_M_N : N ; - campigenus_M_N : N ; - campio_M_N : N ; - campionatus_M_N : N ; - campismus_M_N : N ; - campitor_M_N : N ; - campsanema_N_N : N ; - campso_V2 : V2 ; - campsor_M_N : N ; - camptaules_M_N : N ; + calx_M_N : N ; -- [XXXFO] :: lead vial/bottle/jar; + calybita_F_N : N ; -- [EXXEE] :: hermit; cabin dweller; Calybite (one of class of early Saints living in huts); + calyculus_M_N : N ; -- [XAXEO] :: calyx/cup of a flower; shell (sea urchin); + calymma_N_N : N ; -- [DXXFS] :: covering; + calyx_M_N : N ; -- [XAXNO] :: |two plants; one like arum; other anchusa (Dyer's bugloss); (monk's-hood? L+S); + cama_F_N : N ; -- [DXXFS] :: small low bed (near ground); + camacum_N_N : N ; -- [XAXNS] :: aromatic plant (nutmeg?); (substitute for cinnamon); kind of cinnamon (L+S); + camaeus_M_N : N ; -- [GXXEK] :: cameo; + camara_F_N : N ; -- [XTXCO] :: vault, vaulted/arched room/roof/ceiling; small boat roofed over with timber; + camararius_A : A ; -- [XAXNO] :: that grows over arches (of a kind of gourd); climbing; + camaratio_F_N : N ; -- [DTXFS] :: vault, arch; + camaro_V2 : V2 ; -- [XTXFO] :: roof/vault over; + camaura_F_N : N ; -- [FXXFE] :: close fitting cap; + cambialis_A : A ; -- [GXXEK] :: of change; exchanging; + cambio_V : V ; -- [FXXEK] :: change (of money); + cambio_V2 : V2 ; -- [XXXFS] :: exchange, barter; + cambitas_F_N : N ; -- [DXXFS] :: exchange, barter; + cambium_N_N : N ; -- [FXXFM] :: change; transformable matter; + cambuta_F_N : N ; -- [EEXFE] :: croiser; + camela_F_N : N ; -- [XXXFS] :: marriage festival/festivities (pl.); (ADJ?); + camelarius_M_N : N ; -- [XAXES] :: camel driver; + camelaucium_N_N : N ; -- [EEXFE] :: red velvet hood (sometimes worn by Pope); + camelelasia_F_N : N ; -- [XAXFS] :: camel-driving; care of camels (belonging to the State); + cameleon_M_N : N ; -- [EAXEW] :: chameleon; (M/F OLD); + camelinus_A : A ; -- [XAXNO] :: of/pertaining to a camel, camel-; + camella_F_N : N ; -- [XXXEO] :: cup, bowl, goblet; + camelopardalis_F_N : N ; -- [XAAEO] :: giraffe; + camelopardalus_M_N : N ; -- [DAAFS] :: giraffe; + camelopardus_M_N : N ; -- [DAAFS] :: giraffe; + camelopodium_N_N : N ; -- [DAXFS] :: plant, camel's-foot, horehound?; + camelottum_N_N : N ; -- [FXXFE] :: cloth (kind of); camelet (costly eastern fabric, maybe of silk and angora W); + camelus_M_N : N ; -- [XAXCO] :: camel, dromedary; + camena_F_N : N ; -- [FPXEN] :: poetry, poem; song; (see also Camena); + camera_F_N : N ; -- [GTXEK] :: |camera (Cal); + cameralis_A : A ; -- [FXXFE] :: of/pertaining to small room or chamber; + camerarius_A : A ; -- [XAXNS] :: that grows over arches (of a kind of gourd); climbing; + camerarius_M_N : N ; -- [FXXEE] :: chamberlain; + cameratio_F_N : N ; -- [DTXFS] :: vault, arch; + camero_V2 : V2 ; -- [XTXFO] :: roof/vault over; + camescopium_N_N : N ; -- [GXXEK] :: cinematic camera; + camilla_F_N : N ; -- [XEXEO] :: handmaiden/female of unblemished character attendant in religious ceremonies; + camillus_M_N : N ; -- [XEXEO] :: boy/noble youth attendant of a flamen/priest; + camino_V2 : V2 ; -- [XXXNO] :: form into an oven; shape like an oven; + caminus_M_N : N ; -- [XXXCO] :: smelting/foundry furnace, forge; home stove/furnace; vent (underground fires); + camisia_F_N : N ; -- [DXXES] :: shirt/nightgown (linen); alb (Ecc); shirt (Cal); + camisium_N_N : N ; -- [FEXEE] :: alb; shirt; + cammaron_N_N : N ; -- [XAXNS] :: plant; (aconitum); + cammaros_M_N : N ; -- [XAXEO] :: lobster; plant (aconitum); sea crab (L+S); + cammarus_M_N : N ; -- [XAXEO] :: lobster; plant (aconitum); sea crab (L+S); + campagus_M_N : N ; -- [DWXES] :: kind of boot worn by military officers; sandal, slipper (Ecc); + campana_F_N : N ; -- [FXXCE] :: bell; + campanarium_N_N : N ; -- [FEXFE] :: belfry; bell tower; + campanarius_M_N : N ; -- [FEXFE] :: bell ringer; + campaneus_A : A ; -- [DAXFS] :: pertaining to fields; + campanicum_N_N : N ; -- [GXXEK] :: champagne (wine); + campanile_N_N : N ; -- [FEXEE] :: belfry; bell tower; campanile; + campanius_A : A ; -- [DAXFS] :: pertaining to fields; + campanula_M_N : N ; -- [FXXFE] :: little boy; + campanus_A : A ; -- [FXXFM] :: flat; level; + campe_F_N : N ; -- [XAXEO] :: caterpillar; (pure Latin eruca); turning/writhing, evasion; + campeador_M_N : N ; -- [FWXEN] :: champion of the field; victor; + campester_A : A ; -- [XXXCO] :: level, even, flat, of level field; on open plain/field; plain-dwelling; + campestratus_M_N : N ; -- [DXXFS] :: one wearing loin-cloth/leather apron of athletes; + campestre_N_N : N ; -- [XXXFO] :: loin-cloth worn by athletes; leather apron worn around loins by wrestlers; + campestris_A : A ; -- [XXXBO] :: level, even, flat, of level field; on open plain/field; plain-dwelling; + campestris_F_N : N ; -- [XEXFO] :: country deity; goddess of fields; + campestris_M_N : N ; -- [DEXIS] :: deities who presided over contests/games (pl.); country deities; + campicursio_F_N : N ; -- [DWIFS] :: military exercise in Campus Martius; + campidoctor_M_N : N ; -- [DWIES] :: one who exercises/drills soldiers in Campus Martius; drill sergeant; + campigenus_M_N : N ; -- [DWXFS] :: well drilled soldiers (pl.); + campio_M_N : N ; -- [GXXEK] :: champion; + campionatus_M_N : N ; -- [GXXEK] :: championship; + campismus_M_N : N ; -- [GXXEK] :: camping; + campitor_M_N : N ; -- [FXXEN] :: charger, battle-horse, war horse; + campsanema_N_N : N ; -- [DAXFS] :: plant (ros marinus); + campso_V2 : V2 ; -- [BXXFO] :: go around; double; turn around in place; + campsor_M_N : N ; -- [GXXEK] :: changer, banker; + camptaules_M_N : N ; -- [DDXFS] :: musician (unknown kind); campter_1_N : N ; -- [XXXEO] :: turning point at end of a race course; - campter_2_N : N ; - campter_M_N : N ; - campus_M_N : N ; + campter_2_N : N ; -- [XXXEO] :: turning point at end of a race course; + campter_M_N : N ; -- [DXXFS] :: bending; turning; angle; + campus_M_N : N ; -- [XXXAO] :: plain; level field/surface; open space for battle/games; sea; scope; campus; 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 ; - camus_M_N : N ; - canaba_F_N : N ; - canabarius_M_N : N ; - canabensis_M_N : N ; - canabula_F_N : N ; - canachenus_M_N : N ; - canale_N_N : N ; - canalicius_A : A ; - canalicola_M_N : N ; - canalicula_F_N : N ; - canaliculatim_Adv : Adv ; - canaliculatus_A : A ; - canaliculus_M_N : N ; - canaliensis_A : A ; + camter_2_N : N ; -- [XXXEO] :: turning point at end of a race course; + camum_N_N : N ; -- [XXXFO] :: kind of beer; + camur_A : A ; -- [XXXEO] :: curved, bent, hooked, crocked; turned/arched inward, having such horns; + camurus_A : A ; -- [XXXEO] :: curved, bent, hooked, crocked; turned/arched inward, having such horns; + camus_M_N : N ; -- [XXXFO] :: necklace; collar for neck (L+S); muzzle/bit/curb for horses (late); + canaba_F_N : N ; -- [XWXIO] :: settlement of traders/discharged soldiers (pl.) near Roman military camp/fort; + canabarius_M_N : N ; -- [XWXIO] :: inhabitant of a canabae (settlement of veterans near a Roman camp); + canabensis_M_N : N ; -- [XWXIO] :: inhabitant of a canabae (settlement of veterans near a Roman camp); + canabula_F_N : N ; -- [DXXFS] :: small hut/hovel; + canachenus_M_N : N ; -- [XXXFS] :: class of thieves; + canale_N_N : N ; -- [XXXFO] :: channel/canal/conduit; ditch, gutter; trough, groove; funnel; pipe, spout; + canalicius_A : A ; -- [XXXNO] :: derived/mined/dug from shafts(/pits L+S); + canalicola_M_N : N ; -- [XXXFS] :: poor/lazy person standing about in gutters near Forum/in place called Canalis; + canalicula_F_N : N ; -- [XXXCO] :: small channel/duct/pipe/gutter, groove; feeding trough; splint/cast (medical); + canaliculatim_Adv : Adv ; -- [XXXNO] :: into/by channels; + canaliculatus_A : A ; -- [XXXNO] :: channeled, grooved; like a channel/pipe; + canaliculus_M_N : N ; -- [XXXCO] :: small channel/duct/pipe/gutter, groove; feeding trough; splint/cast (medical); + canaliensis_A : A ; -- [XXXNO] :: derived/mined/dug from shafts(/pits L+S); 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 ; - canatim_Adv : Adv ; - cancamum_N_N : N ; - cancellaria_F_N : N ; - cancellarius_A : A ; - cancellarius_M_N : N ; - cancellatim_Adv : Adv ; - cancellatio_F_N : N ; - cancellatus_A : A ; - cancello_V2 : V2 ; - cancellosus_A : A ; - cancellus_M_N : N ; - cancer_M_N : N ; - cancer_N_N : N ; - cancerasco_V : V ; - canceraticus_A : A ; - canceratus_A : A ; - canceroma_N_N : N ; - canchrema_N_N : N ; - cancrigenus_A : A ; - cancroma_N_N : N ; - candefacio_V2 : V2 ; - candefio_V : V ; - candela_F_N : N ; - candelaber_M_N : N ; - candelabrarius_M_N : N ; - candelabrum_N_N : N ; - candelabrus_M_N : N ; - candens_A : A ; - candentia_F_N : N ; - candeo_V : V ; - candesco_V2 : V2 ; - candetum_N_N : N ; - candicens_A : A ; - candico_V : V ; - candida_F_N : N ; - candidans_A : A ; - candidarius_A : A ; - candidarius_M_N : N ; - candidata_F_N : N ; - candidatio_F_N : N ; - candidatorius_A : A ; - candidatus_A : A ; - candidatus_M_N : N ; - candide_Adv : Adv ; - candido_V2 : V2 ; - candidule_Adv : Adv ; - candidulus_A : A ; - candidum_N_N : N ; - candidus_A : A ; - candifico_V2 : V2 ; - candificus_A : A ; - canditatio_F_N : N ; - candor_M_N : N ; - candosoccus_M_N : N ; - canens_A : A ; - canentas_F_N : N ; - caneo_V : V ; + canalis_M_N : N ; -- [XXXBO] :: channel/canal/conduit; ditch, gutter; trough, groove; funnel; pipe, spout; + canarius_A : A ; -- [XAXEO] :: of/connected with dogs, dog-; kind of grass; [lappa canaria => kind of bur]; + canaster_A : A ; -- [DXXFS] :: half-gray; grizzled; + canatim_Adv : Adv ; -- [XXXFO] :: in manner of a dog; like a dog; + cancamum_N_N : N ; -- [XAQNO] :: Arabian gum (Balsamodendron katuf?); (used for incense L+S); + cancellaria_F_N : N ; -- [FEXEE] :: chancery; chancellery; + cancellarius_A : A ; -- [XXXFS] :: living/kept behind bars; + cancellarius_M_N : N ; -- [GXXEK] :: chancellor; + cancellatim_Adv : Adv ; -- [XXXNO] :: in a lattice arrangement; + cancellatio_F_N : N ; -- [XAXFO] :: land measuring my means of a grid; fixing boundaries; + cancellatus_A : A ; -- [XXXNO] :: reticulated, having a lattice/grid pattern; lattice/trellis-like; + cancello_V2 : V2 ; -- [XXXCO] :: arrange in criss-cross pattern; enclose in lattice/grid; cancel, cross out; + cancellosus_A : A ; -- [DXXFS] :: with bars; with a railing; + cancellus_M_N : N ; -- [XXXCO] :: lattice/grate/grid; bars, barrier, enclosure; boundaries/limits (pl.); railings; + cancer_M_N : N ; -- [XXXEO] :: lattice, grid; barrier; + cancer_N_N : N ; -- [XXXEO] :: crab; Cancer (zodiac); the_South; summer heat; cancer, disease, tumor, canker; + cancerasco_V : V ; -- [DBXES] :: become cancerous; be afflicted with cancer; suppurate like a cancer; + canceraticus_A : A ; -- [DBXES] :: cancerous; like a cancer; + canceratus_A : A ; -- [DBXES] :: cancerous; + canceroma_N_N : N ; -- [DBXES] :: cancer; + canchrema_N_N : N ; -- [DBXFS] :: cancer; + cancrigenus_A : A ; -- [GBXEK] :: carcinogenic; + cancroma_N_N : N ; -- [DBXES] :: cancer; + candefacio_V2 : V2 ; -- [XXXEO] :: make dazzling white; make glowing; heat, make hot; + candefio_V : V ; -- [XXXEO] :: become dazzling white; be/become glowing/heated/hot; (candefacio PASS); + candela_F_N : N ; -- [XXXCO] :: tallow candle/taper; waxen cord; fire (L+S); small taper/candle (Ecc); + candelaber_M_N : N ; -- [BXXES] :: candelabra; stand for holding burning candles or lamps; lamp stand; + candelabrarius_M_N : N ; -- [XXXIO] :: maker of candelabra/candlesticks; + candelabrum_N_N : N ; -- [XXXCO] :: candelabra; stand for holding burning candles or lamps; lamp stand; + candelabrus_M_N : N ; -- [XXXCO] :: candelabra; stand for holding burning candles or lamps; lamp stand; + candens_A : A ; -- [XXXBO] :: shining/bright/clear (light); (approaching) white; boiling/red-hot, glowing; + candentia_F_N : N ; -- [XXXFO] :: luminous area; whiteness (L+S); white clear luster; + candeo_V : V ; -- [XXXCO] :: be of brilliant whiteness, shine, gleam (white); become/be hot; glow, sparkle; + candesco_V2 : V2 ; -- [XXXCO] :: grow/become light/bright white; begin to glisten/radiate; become (red) hot; + candetum_N_N : N ; -- [XAFFS] :: area of 100 or 150 square feet; (10 or 15 square meters); + candicens_A : A ; -- [XXXNO] :: white; approaching white; + candico_V : V ; -- [XXXEO] :: have white appearance; be white/whitish; + candida_F_N : N ; -- [DDXFS] :: games/play presented by a candidate for office; + candidans_A : A ; -- [DXXFS] :: brilliantly white; + candidarius_A : A ; -- [XXXIO] :: that bakes/makes white bread; + candidarius_M_N : N ; -- [XXXIS] :: baker of white bread; + candidata_F_N : N ; -- [XLXFO] :: candidate (for office) (female); aspirant; office seeker; + candidatio_F_N : N ; -- [FXXFE] :: whiteness; + candidatorius_A : A ; -- [XLXFO] :: of/pertaining to/belonging to a candidate (for office); white-robed (Ecc); + candidatus_A : A ; -- [XXXEO] :: dressed in white/whitened clothes; + candidatus_M_N : N ; -- [XLXFS] :: candidacy (for office); + candide_Adv : Adv ; -- [XXXDO] :: in white clothes; brightly/clearly/spotlessly; candidly/openly, good naturedly; + candido_V2 : V2 ; -- [DEXES] :: make glittering/bright; make white; + candidule_Adv : Adv ; -- [DXXFS] :: candidly, sincerely; + candidulus_A : A ; -- [XXXEO] :: shining white; white, gleaming; + candidum_N_N : N ; -- [XXXNO] :: white (of an egg); + candidus_A : A ; -- [XXXAO] :: |radiant, unclouded; (dressed in) white; of light color; fair skinned, pale; + candifico_V2 : V2 ; -- [DXXFS] :: make dazzlingly white; + candificus_A : A ; -- [XXXFO] :: that cleans/makes white; + canditatio_F_N : N ; -- [FEXEE] :: whiteness; + candor_M_N : N ; -- [XXXBO] :: whiteness; snow; radiance, bright light; heat, glow; beauty; purity; kindness; + candosoccus_M_N : N ; -- [XXXFO] :: layer (of a plant); + canens_A : A ; -- [XXXES] :: gray, grayish; white, hoary; + canentas_F_N : N ; -- [XXXFO] :: head ornament; + caneo_V : V ; -- [XXXCO] :: be/become covered in white; be hoary, be white/gray (with age); 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 ; - canica_F_N : N ; - canicula_F_N : N ; - canicularis_A : A ; - canifera_F_N : N ; - caniformis_A : A ; - canina_F_N : N ; - caninus_A : A ; - canipa_F_N : N ; + canes_M_N : N ; -- [BAXDO] :: dog; hound; subordinate; "jackal"; dog-star/fish; lowest dice throw; clamp; + canesco_V : V ; -- [XXXCO] :: become covered in white, whiten; grow old/hoary; be/grow white/gray with age; + cania_F_N : N ; -- [XAXNO] :: kind of wild nettle; + canica_F_N : N ; -- [XAXFO] :: bran (pl.); + canicula_F_N : N ; -- [XXXCO] :: bitch (also people); dog-star; dog-fish, shark; dog-days; lowest throw at dice; + canicularis_A : A ; -- [DXXES] :: of/pertaining to dog-star; [caniculares dies => dog days]; + canifera_F_N : N ; -- [XXXFO] :: woman carrying basket; + caniformis_A : A ; -- [DXXFS] :: dog-shaped, in dog form/shape; (Anubis); + canina_F_N : N ; -- [XAXFO] :: dog flesh/meat; [canis caninam non est => dog does not eat dog/is not dog meat]; + caninus_A : A ; -- [XAXBO] :: of/pertaining/suitable to/resembling a dog, canine; abusive, mean, snarling; + canipa_F_N : N ; -- [DEXFS] :: fruit basket for religious uses; 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 ; - canistrum_N_N : N ; - canitia_F_N : N ; - canities_F_N : N ; - canitudo_F_N : N ; - canna_F_N : N ; - cannaba_F_N : N ; - cannabinus_A : A ; - cannabis_F_N : N ; - cannabius_A : A ; - cannabum_N_N : N ; - cannabus_M_N : N ; - cannetum_N_N : N ; - canneus_A : A ; - cannibalismus_M_N : N ; - canno_M_N : N ; - cannophorus_M_N : N ; - cannula_F_N : N ; - cannulono_M_N : N ; - cano_V2 : V2 ; + canis_M_N : N ; -- [XAXAO] :: dog; hound; subordinate; "jackal"; dog-star/fish; lowest dice throw; clamp; + canistellum_N_N : N ; -- [XXXFO] :: basket (bread/fruit); + canistraria_F_N : N ; -- [XEXIO] :: basket bearer (in religious festivals); + canistrum_N_N : N ; -- [XXXCO] :: wicker basket (used for food/flowers and in sacrifices); + canitia_F_N : N ; -- [XXXCO] :: white/gray coloring/deposit; gray/white hair, grayness of hair; old age; + canities_F_N : N ; -- [XXXCO] :: white/gray coloring/deposit; gray/white hair, grayness of hair; old age; + canitudo_F_N : N ; -- [XBXEO] :: grayness of hair; + canna_F_N : N ; -- [XXXCO] :: small reed/cane; panpipe/flute; small vessel/gondola; windpipe; cane-sugar; + cannaba_F_N : N ; -- [DXXES] :: hut; hovel; + cannabinus_A : A ; -- [XAXEO] :: made of hemp, hempen, hemp-; + cannabis_F_N : N ; -- [XAXCO] :: hemp; hemp rope; canvas/linen (medieval); + cannabius_A : A ; -- [XAXES] :: made of hemp, hempen, hemp-; + cannabum_N_N : N ; -- [XAXFO] :: hemp; hemp rope; canvas/linen (medieval); + cannabus_M_N : N ; -- [XAXEO] :: hemp; hemp rope; canvas/linen (medieval); + cannetum_N_N : N ; -- [DAXES] :: thicket of reeds; + canneus_A : A ; -- [XAXFS] :: made of reeds, reed-; + cannibalismus_M_N : N ; -- [GXXEK] :: cannibalism; + canno_M_N : N ; -- [GWXEK] :: cannon (artillery piece); + cannophorus_M_N : N ; -- [XEXIO] :: reed-bearer in rites of Magna Mater; + cannula_F_N : N ; -- [XAXFO] :: reed; small/little/low reed; windpipe (L+S); + cannulono_M_N : N ; -- [GXXEK] :: cannelloni; + cano_V2 : V2 ; -- [XXXAO] :: sing, celebrate, chant; crow; recite; play (music)/sound (horn); foretell; canon_1_N : N ; -- [XXXEO] :: sounding-board/channel of water organ; model/standard; measuring line, rule; - canon_2_N : N ; - canon_M_N : N ; - canonia_F_N : N ; - canonicalis_A : A ; - canonicarius_M_N : N ; - canonicatus_M_N : N ; - canonice_Adv : Adv ; - canonicum_N_N : N ; - canonicus_A : A ; - canonicus_M_N : N ; - canonisatio_F_N : N ; - canonissa_F_N : N ; - canonista_M_N : N ; - canonizatio_F_N : N ; - canonizo_V2 : V2 ; - canor_M_N : N ; - canore_Adv : Adv ; - canorum_N_N : N ; - canorus_A : A ; - cantabilis_A : A ; - cantabrarius_M_N : N ; - cantabrum_N_N : N ; - cantabundus_A : A ; - cantamen_N_N : N ; - cantatio_F_N : N ; - cantator_M_N : N ; - cantatorium_N_N : N ; - cantatrix_A : A ; - cantatrix_F_N : N ; - cantenatus_A : A ; - canteriatus_A : A ; - canterinus_A : A ; - canteriolus_M_N : N ; - canterius_M_N : N ; - cantharella_F_N : N ; - cantharias_M_N : N ; - cantharis_F_N : N ; - cantharites_M_N : N ; - cantharulus_M_N : N ; - cantharus_M_N : N ; - cantheriatus_A : A ; - cantherinus_A : A ; - cantheriolus_M_N : N ; - cantherius_M_N : N ; - canthus_M_N : N ; - canticulum_N_N : N ; - canticum_N_N : N ; - canticus_A : A ; - cantilena_F_N : N ; - cantilenosus_A : A ; - cantillo_V2 : V2 ; - cantilo_V : V ; - cantio_F_N : N ; - cantito_V : V ; - cantiuncula_F_N : N ; - canto_M_N : N ; - canto_V : V ; - cantor_M_N : N ; - cantreda_F_N : N ; - cantrix_F_N : N ; - cantulus_M_N : N ; - canturio_V2 : V2 ; - cantus_M_N : N ; - canua_F_N : N ; - canum_N_N : N ; - canus_A : A ; - canus_M_N : N ; - canusina_F_N : N ; - canusinatus_A : A ; - canutus_A : A ; - capa_F_N : N ; - capabilis_A : A ; - capacitas_F_N : N ; - capaciter_Adv : Adv ; - capax_A : A ; - capedo_F_N : N ; - capedulum_N_N : N ; - capeduncula_F_N : N ; - capella_F_N : N ; - capellania_F_N : N ; - capellanus_M_N : N ; - capellianus_A : A ; - capellus_M_N : N ; - caper_M_N : N ; - caperatus_A : A ; - capero_M_N : N ; - caperratus_A : A ; - caperro_V : V ; - capesco_V2 : V2 ; - capesso_V2 : V2 ; - capetum_N_N : N ; - caph_N : N ; - caphisterium_N_N : N ; - capidulum_N_N : N ; - capillaceus_A : A ; - capillamentum_N_N : N ; - capillare_N_N : N ; - capillaris_A : A ; - capillatio_F_N : N ; - capillatura_F_N : N ; - capillatus_A : A ; - capillatus_M_N : N ; - capillitium_N_N : N ; - capillosus_A : A ; - capillulus_M_N : N ; - capillus_M_N : N ; - capio_F_N : N ; - capio_V2 : V2 ; + canon_2_N : N ; -- [XXXEO] :: sounding-board/channel of water organ; model/standard; measuring line, rule; + canon_M_N : N ; -- [XXXES] :: sounding-board/channel of water organ; model/standard; measuring line, rule; + canonia_F_N : N ; -- [FEXFE] :: canon's prebend/stipend; + canonicalis_A : A ; -- [FEXCE] :: canonical/by canons/legal/lawful/right; of a canon; + canonicarius_M_N : N ; -- [DLXFS] :: collector of annual tribute; + canonicatus_M_N : N ; -- [EEXEE] :: office of canon; + canonice_Adv : Adv ; -- [DEXES] :: canonically, according to Church discipline; regularly; + canonicum_N_N : N ; -- [XSXNO] :: theory (pl.); canon; + canonicus_A : A ; -- [EEXDE] :: |canonical/by canons/legal/lawful/right; of a canon; + canonicus_M_N : N ; -- [XSXNO] :: |mathematician/theorist; one who constructs mathematical/astronomical tables; + canonisatio_F_N : N ; -- [FEXEE] :: canonization; elevation to sainthood; + canonissa_F_N : N ; -- [EEXEE] :: canoness; + canonista_M_N : N ; -- [FEXFE] :: canonist, one learned in Canon Law; + canonizatio_F_N : N ; -- [FEXEE] :: canonization; elevation to sainthood; + canonizo_V2 : V2 ; -- [EEXDS] :: canonize, elevate to sainthood; include in canon of Scripture; reduce to rules; + canor_M_N : N ; -- [XDXCO] :: song, vocal music; tune, melody; birdsong; music of instruments; poetic strain; + canore_Adv : Adv ; -- [XXXFO] :: melodiously; harmoniously; tunefully; + canorum_N_N : N ; -- [XGXES] :: melody, charm (in speaking); + canorus_A : A ; -- [XXXBO] :: melodious, harmonious; resonant, ringing, sonorous; tuneful; songful, vocal; + cantabilis_A : A ; -- [XDXES] :: worthy to be sung; + cantabrarius_M_N : N ; -- [DXXFS] :: standard-bearer on festive occasions; + cantabrum_N_N : N ; -- [XXXES] :: kind of banner/standard under emperors; kind of bran; + cantabundus_A : A ; -- [XDXEO] :: singing; chanting; + cantamen_N_N : N ; -- [XEXEO] :: spell that is sung/chanted; magic sentence; spell, charm, incantation; + cantatio_F_N : N ; -- [XXXEO] :: singing; song, music; spell, charm, incantation (L+S); + cantator_M_N : N ; -- [XDXEO] :: singer; musician; minstrel; + cantatorium_N_N : N ; -- [EEXFE] :: Gradual Book (old name); + cantatrix_A : A ; -- [XXXFO] :: that uses incantations/enchantments (feminine adjective); singing, musical; + cantatrix_F_N : N ; -- [DDXFS] :: singer, musician (female); + cantenatus_A : A ; -- [XXXCO] :: chained, fettered; + canteriatus_A : A ; -- [XAXFO] :: supported on a canterius (light pi-shaped prop/"horse" for vines); propped; + canterinus_A : A ; -- [XAXEO] :: of/belonging to a horse, horse-; like a horse; variety of barley (winter L+S); + canteriolus_M_N : N ; -- [XAXFO] :: small vine-supporting prop/"horse"; + canterius_M_N : N ; -- [XAXCO] :: poor-quality horse, hack, nag, gelding; rafter; pi-shaped vine prop/"horse"; + cantharella_F_N : N ; -- [GXXEK] :: chanterelle; + cantharias_M_N : N ; -- [XXXNO] :: precious stone; (having in it a figure of a Spanish fly L+S); + cantharis_F_N : N ; -- [XAXEO] :: blister-beetle (Cantharis vesicatoria); Spanish fly (medicine/poison); a worm; + cantharites_M_N : N ; -- [XXXNO] :: wine from vine cantharites; kind of vine (L+S); + cantharulus_M_N : N ; -- [DXXFS] :: small drinking vessel with handles; + cantharus_M_N : N ; -- [DEXES] :: |vessel of holy water; water pipe; + cantheriatus_A : A ; -- [XAXFO] :: supported on a canterius (light pi-shaped prop/"horse" for vines); propped; + cantherinus_A : A ; -- [XAXEO] :: of/belonging to a horse, horse-; like a horse; variety of barley (winter L+S); + cantheriolus_M_N : N ; -- [XAXFO] :: small vine-supporting prop/"horse"; + cantherius_M_N : N ; -- [XAXCO] :: poor-quality horse, hack, nag, gelding; rafter; pi-shaped vine prop/"horse"; + canthus_M_N : N ; -- [XXXEO] :: tire, iron ring around a carriage wheel; wheel; + canticulum_N_N : N ; -- [XDXFO] :: song; little/brief/short song; sonnet (L+S); short incantation; + canticum_N_N : N ; -- [XDXCO] :: song; passage in a comedy chanted or sung; sing-song voice; + canticus_A : A ; -- [DDXFS] :: musical; + cantilena_F_N : N ; -- [XXXCO] :: oft repeated saying; refrain; ditty/little song; silly prattle (L+S); lampoon; + cantilenosus_A : A ; -- [DDXFS] :: pertaining to song; poetic; + cantillo_V2 : V2 ; -- [XXXEO] :: sing low; hum; warble, chirp (Ecc); + cantilo_V : V ; -- [XDXEO] :: sing; + cantio_F_N : N ; -- [XXXCO] :: song; singing (birds); playing, music (instrumental); incantation, spell; + cantito_V : V ; -- [XXXDO] :: sing; sing repeatedly, sing over and over; sing/play often (L+S); + cantiuncula_F_N : N ; -- [XXXFO] :: (mere) song; flattering/alluring strain (L+S); + canto_M_N : N ; -- [GXXEK] :: canton; + canto_V : V ; -- [XDXAO] :: sing; play (roles/music); recite; praise, celebrate; forewarn; enchant, bewitch; + cantor_M_N : N ; -- [XDXCO] :: singer, poet; actor (of musical parts in play); precentor; cantor; eulogist; + cantreda_F_N : N ; -- [FLXFM] :: cantred; land division; district containing a hundred townships (OED); + cantrix_F_N : N ; -- [XDXEO] :: singer (female), songstress; + cantulus_M_N : N ; -- [DDXFS] :: little song; + canturio_V2 : V2 ; -- [XXXEO] :: recite with musical intonation; sing continuously (birds); chirp; + cantus_M_N : N ; -- [XXXBO] :: song, chant; singing; cry (bird); blast (trumpet); poem, poetry; incantation; + canua_F_N : N ; -- [XXXFO] :: basket; + canum_N_N : N ; -- [XXXFS] :: wicker basket (used for food/flowers and in sacrifices); + canus_A : A ; -- [XXXBO] :: white, gray; aged, old, wise; hoary; foamy, white-capped; white w/snow/frost; + canus_M_N : N ; -- [XBXCO] :: gray hairs (pl.); old age; + canusina_F_N : N ; -- [XXXFO] :: garment of made of Canusian wool; (Canusium/Canosa town in Apulia); + canusinatus_A : A ; -- [XXXFO] :: dressed in garments of Canusian wool; + canutus_A : A ; -- [XXXFO] :: gray; + capa_F_N : N ; -- [FXXDB] :: cape, cloak; cassock, cope, mantle; + capabilis_A : A ; -- [DEXES] :: comprehensible; intelligent; + capacitas_F_N : N ; -- [XXXCO] :: capacity, largeness; ability (mental/legal/to inherit); power of comprehension; + capaciter_Adv : Adv ; -- [DLXFS] :: rightfully to inherit; + capax_A : A ; -- [XXXAO] :: large, spacious, roomy, big; capable, fit, competent; has right to inherit; + capedo_F_N : N ; -- [XEXEC] :: bowl used in sacrifices; + capedulum_N_N : N ; -- [XXXFS] :: kind of covering for head; + capeduncula_F_N : N ; -- [XXXFO] :: small pot/vessel/bowl/dish; (used for sacrifices L+S); + capella_F_N : N ; -- [XXXCS] :: |dirty fellow, old goat; man with a goat-like beard; body odor; + capellania_F_N : N ; -- [FEXFE] :: chaplaincy; + capellanus_M_N : N ; -- [FEXDE] :: chaplain; + capellianus_A : A ; -- [DAXFS] :: of/pertaining to goats; eaten by goats; + capellus_M_N : N ; -- [DAXFS] :: small goat; kid; + caper_M_N : N ; -- [XAXCO] :: he-goat, billy-goat; goatish/armpit smell; star in Auriga (L+S); grunting fish; + caperatus_A : A ; -- [XXXEO] :: wrinkled; + capero_M_N : N ; -- [GXXEK] :: hood; + caperratus_A : A ; -- [XXXEO] :: wrinkled; furled (sails); + caperro_V : V ; -- [XXXFO] :: be/become wrinkled; wrinkle (L+S); furl (sails); + capesco_V2 : V2 ; -- [FXXAM] :: grasp, take; undertake, manage; pursue with zeal; carry out orders; (=capesso); + capesso_V2 : V2 ; -- [XXXAO] :: grasp, take, seize eagerly; undertake, manage; pursue w/zeal; carry out orders; + capetum_N_N : N ; -- [DAXES] :: fodder for cattle; + caph_N : N ; -- [DEQEW] :: kaf; (11th letter of Hebrew alphabet); (transliterate as K and CH); + caphisterium_N_N : N ; -- [XAXFO] :: vessel used for cleaning/separating seed-grain from the rest; + capidulum_N_N : N ; -- [XXXFO] :: kind of covering for head; + capillaceus_A : A ; -- [XXXNO] :: resembling/similar to hair; like hair; made of hair (L+S); + capillamentum_N_N : N ; -- [XXXCO] :: head of hair; toupee/wig; hair-like fiber; thread of metal; streak/flaw in gem; + capillare_N_N : N ; -- [XXXFO] :: ointment/unguent for hair; pomade; + capillaris_A : A ; -- [DXXES] :: of/pertaining to hair; capillary (Cal); [~ herba => plant Capillus Veneris]; + capillatio_F_N : N ; -- [DBXES] :: hair; disease of urinary organs; + capillatura_F_N : N ; -- [XXXEO] :: hair-like flawing in a gem; hair (L+S); false hair; + capillatus_A : A ; -- [XXXCO] :: having long hair (older generation/foreign peoples/boys); hairy; hair-like; + capillatus_M_N : N ; -- [XXXES] :: long hairs (pl.); young aristocrats; + capillitium_N_N : N ; -- [XXXFO] :: head of hair; + capillosus_A : A ; -- [DXXFS] :: full of hair; very hairy; + capillulus_M_N : N ; -- [XXXFS] :: fine/soft hair; + capillus_M_N : N ; -- [XXXBO] :: hair; hair of head; single hair; hair/fur/wool of animals; hair-like fiber; + capio_F_N : N ; -- [XXXCO] :: taking/seizing; [usus ~ => getting ownership by continued possession]; + capio_V2 : V2 ; -- [XXXAO] :: take hold, seize; grasp; take bribe; arrest/capture; put on; occupy; captivate; capis_1_N : N ; -- [XEXEO] :: cup/bowl with handle used mainly for ritual purposes; - capis_2_N : N ; - capis_F_N : N ; - capisso_V2 : V2 ; - capisterium_N_N : N ; - capistrarius_M_N : N ; - capistro_V2 : V2 ; - capistrum_N_N : N ; - capitagium_N_N : N ; - capital_N_N : N ; - capitale_N_N : N ; - capitalis_A : A ; - capitalismus_M_N : N ; - capitalista_M_N : N ; - capitalisticus_A : A ; - capitaliter_Adv : Adv ; - capitaneatus_M_N : N ; - capitaneus_A : A ; - capitaneus_M_N : N ; - capitarius_A : A ; - capitatio_F_N : N ; - capitatus_A : A ; - capitellum_N_N : N ; - capitilavium_N_N : N ; - capitium_N_N : N ; - capito_A : A ; - capitolium_N_N : N ; - capitulare_N_N : N ; - capitularis_A : A ; - capitularium_N_N : N ; - capitularius_A : A ; - capitularius_M_N : N ; - capitulatim_Adv : Adv ; - capitulatus_A : A ; - capitulum_N_N : N ; - capitum_N_N : N ; - capnias_M_N : N ; - capnion_N_N : N ; - capnios_A : A ; - capnios_F_N : N ; - capnites_M_N : N ; - capnitis_F_N : N ; - capnos_F_N : N ; - capo_M_N : N ; - cappa_F_N : N ; - cappara_F_N : N ; - cappari_N : N ; + capis_2_N : N ; -- [XEXEO] :: cup/bowl with handle used mainly for ritual purposes; + capis_F_N : N ; -- [XEXEO] :: cup/bowl with handle used mainly for ritual purposes; + capisso_V2 : V2 ; -- [XXXAO] :: grasp, take, seize eagerly; undertake, manage; pursue w/zeal; carry out orders; + capisterium_N_N : N ; -- [XAXFO] :: vessel used for cleaning/separating seed-grain from the rest; + capistrarius_M_N : N ; -- [XAXIO] :: halter-maker; + capistro_V2 : V2 ; -- [XAXEO] :: provide with a halter, put a halter on a horse; fasten with a headstall; bind; + capistrum_N_N : N ; -- [XAXCO] :: halter/headstall/harness, muzzle; matrimonial halter (L+S); band for vines; + capitagium_N_N : N ; -- [FLXEM] :: poll tax; head-penny; + capital_N_N : N ; -- [XLXCO] :: capital crime/punishment (loss of life or civil rights); priestess headband; + capitale_N_N : N ; -- [XLXCO] :: capital crime/punishment (loss of life or civil rights); priestess headband; + capitalis_A : A ; -- [XXXBO] :: of/belonging to head/life; deadly, mortal; dangerous; excellent, first-rate; + capitalismus_M_N : N ; -- [GXXEK] :: capitalism; + capitalista_M_N : N ; -- [GXXEK] :: capitalist; + capitalisticus_A : A ; -- [GXXEK] :: capitalist; + capitaliter_Adv : Adv ; -- [XXXFO] :: with bitter/lethal hostility; + capitaneatus_M_N : N ; -- [GXXFM] :: captaincy; + capitaneus_A : A ; -- [DXXES] :: large, chief in size; capital (letters); + capitaneus_M_N : N ; -- [GXXEK] :: captain; + capitarius_A : A ; -- [XLXFO] :: levied per head, per capita; poll-; + capitatio_F_N : N ; -- [XLXES] :: poll tax, tax levied per head/capita; outlay for beasts used in public service; + capitatus_A : A ; -- [XXXCO] :: having or forming a head; + capitellum_N_N : N ; -- [DXXES] :: small head; capital/chapiter of a column; + capitilavium_N_N : N ; -- [DXXFS] :: washing of head; [Dominica ~ => Palm Sunday]; + capitium_N_N : N ; -- [XXXCS] :: |covering for head; opening in tunic for head; undervest; priest's vestment; + capito_A : A ; -- [XXXCO] :: big-headed, having a large head (masculine adj.); (cognommen); kind of mullet; + capitolium_N_N : N ; -- [FEXDM] :: religious/cathedral chapter, chapter meeting/house; right of cofraternity; + capitulare_N_N : N ; -- [XLXIS] :: head/poll-tax or levy; + capitularis_A : A ; -- [XLXIO] :: relating to head/poll-tax or levy; + capitularium_N_N : N ; -- [XLXIO] :: head/poll-tax or levy; + capitularius_A : A ; -- [DWXES] :: relating to recruiting of soldiers; + capitularius_M_N : N ; -- [DLXES] :: tax gathers (pl.), revenue officers; recruiting officers; + capitulatim_Adv : Adv ; -- [XXXEO] :: by headings; summarily; + capitulatus_A : A ; -- [XXXEO] :: having (small) head or terminal knob; + capitulum_N_N : N ; -- [XXXDO] :: |little head; piles/hemorrhoids; flower-head/seed-capsule; head of a structure; + capitum_N_N : N ; -- [DAXES] :: fodder for cattle; + capnias_M_N : N ; -- [XXXNO] :: smoky specimen/variety of some precious stone; smoky topaz (L+S); kind of wine; + capnion_N_N : N ; -- [XAXNS] :: plant, funitory, pes gallinaceus; (Fumaria officinalis/Corydaltis digitalia); + capnios_A : A ; -- [XAXNO] :: (vine) with grapes of smoky appearance; + capnios_F_N : N ; -- [XAXNS] :: kind of wine from grapes of smoky appearance; + capnites_M_N : N ; -- [XXXNS] :: smoky specimen/variety of some precious stone; smoky topaz (L+S); kind of wine; + capnitis_F_N : N ; -- [XXXNO] :: substance deposited by copper furnace smoke, ZnO/tutty; smoky precious stone; + capnos_F_N : N ; -- [XAXNO] :: plant, funitory, pes gallinaceus; (Fumaria officinalis/Corydaltis digitalia); + capo_M_N : N ; -- [XAXEO] :: capon; young cockerel?; + cappa_F_N : N ; -- [FXXDB] :: cape, cloak, cassock, cope. + cappara_F_N : N ; -- [DAXFS] :: plant; (also called portulacca); + cappari_N : N ; -- [XAXFO] :: caper plant (Capparis spinosa); fruit of caper plant, caper; capparis_1_N : N ; -- [XAXCO] :: caper plant (Capparis spinosa); fruit of caper plant, caper; - capparis_2_N : N ; - capparis_F_N : N ; + capparis_2_N : N ; -- [XAXCO] :: caper plant (Capparis spinosa); fruit of caper plant, caper; + capparis_F_N : N ; -- [FXXEK] :: caper; cappas_1_N : N ; -- [DAXFS] :: sea horse; - cappas_2_N : N ; - cappella_F_N : N ; - cappellania_F_N : N ; - cappellanus_M_N : N ; - capra_F_N : N ; - capragenus_A : A ; - caprago_F_N : N ; - caprale_N_N : N ; - caprarius_A : A ; - caprarius_M_N : N ; - caprea_F_N : N ; - capreaginus_A : A ; - capreida_F_N : N ; - capreola_F_N : N ; - capreolatim_Adv : Adv ; - capreolus_M_N : N ; - capricornus_M_N : N ; - caprificatio_F_N : N ; - caprifico_V2 : V2 ; - caprificus_F_N : N ; - caprigena_F_N : N ; - caprigenus_A : A ; - caprigenus_M_N : N ; - caprile_N_N : N ; - caprilis_A : A ; - caprimulgus_M_N : N ; - caprina_F_N : N ; - caprinarius_M_N : N ; - caprinus_A : A ; - capriolus_M_N : N ; - capripes_A : A ; - caprona_F_N : N ; - capronea_F_N : N ; - caprugenus_A : A ; - capruginus_A : A ; - caprunculum_N_N : N ; - capsa_F_N : N ; - capsarius_M_N : N ; - capsella_F_N : N ; - capsicum_N_N : N ; - capso_V2 : V2 ; - capsula_F_N : N ; - capsum_N_N : N ; - capsus_M_N : N ; - captatio_F_N : N ; - captator_M_N : N ; - captatorius_A : A ; - captatrix_A : A ; - captatrix_F_N : N ; - captensula_F_N : N ; - captibilis_A : A ; - captio_F_N : N ; - captiose_Adv : Adv ; - captiosum_N_N : N ; - captiosus_A : A ; - captito_V2 : V2 ; - captiuncula_F_N : N ; - captiva_F_N : N ; - captivatio_F_N : N ; - captivator_M_N : N ; - captivitas_F_N : N ; - captivncula_F_N : N ; - captivo_V2 : V2 ; - captivus_A : A ; - captivus_C_N : N ; - capto_V2 : V2 ; - captor_M_N : N ; - captrix_F_N : N ; - captum_N_N : N ; - captura_F_N : N ; - captus_A : A ; - captus_M_N : N ; - capucium_N_N : N ; - capudo_F_N : N ; - capula_F_N : N ; - capularis_A : A ; - capulatio_F_N : N ; - capulator_M_N : N ; - capulatus_A : A ; - capulo_V2 : V2 ; - capulum_N_N : N ; - capulus_M_N : N ; - capus_M_N : N ; - caput_N_N : N ; - caputalis_A : A ; - caputium_N_N : N ; - carabus_M_N : N ; - caracalla_F_N : N ; - caracallis_F_N : N ; - caracter_M_N : N ; - caragogos_F_N : N ; - caravanna_F_N : N ; - carbas_M_N : N ; - carbaseus_A : A ; - carbasineus_A : A ; - carbasinum_N_N : N ; - carbasinus_A : A ; - carbasum_N_N : N ; - carbasus_A : A ; - carbasus_F_N : N ; - carbatina_F_N : N ; - carbatinus_A : A ; - carbo_M_N : N ; - carboarius_M_N : N ; - carbonaria_F_N : N ; - carbonarius_A : A ; - carbonarius_M_N : N ; - carbonesco_V : V ; - carboneum_N_N : N ; - carbonicus_A : A ; - carbunculatio_F_N : N ; - carbunculo_V : V ; - carbunculor_V : V ; - carbunculosus_A : A ; - carbunculus_M_N : N ; - carbunica_F_N : N ; - carcedonius_M_N : N ; - carcer_M_N : N ; - carceralis_A : A ; - carcerarius_A : A ; - carcerarius_M_N : N ; - carcereus_A : A ; - carcharus_M_N : N ; - carchesium_N_N : N ; - carcinethron_N_N : N ; - carcinias_M_N : N ; - carcinodes_A : A ; - carcinodes_N_N : N ; - carcinogenesis_F_N : N ; - carcinoma_N_N : N ; - carcinothron_N_N : N ; - cardamina_F_N : N ; - cardamomum_N_N : N ; - cardamum_N_N : N ; - cardelis_F_N : N ; - cardiacus_A : A ; - cardiacus_M_N : N ; - cardimoma_F_N : N ; - cardinalas_F_N : N ; - cardinalatus_M_N : N ; - cardinalicius_A : A ; - cardinalis_A : A ; - cardinalis_M_N : N ; - cardinaliter_Adv : Adv ; - cardinalitius_A : A ; - cardinatus_A : A ; - cardineus_A : A ; - cardiogramma_N_N : N ; - cardiographia_F_N : N ; - cardiographium_N_N : N ; - cardiologia_F_N : N ; - cardiologus_M_N : N ; - cardo_M_N : N ; - carduelis_F_N : N ; - carduetus_M_N : N ; - carduus_M_N : N ; - care_Adv : Adv ; - carectum_N_N : N ; - carena_F_N : N ; - carenaria_F_N : N ; - carentia_F_N : N ; - carenum_N_N : N ; - careo_V : V ; - careor_V : V ; - careota_F_N : N ; - caresco_V : V ; - careum_N_N : N ; - carex_F_N : N ; - carfiathum_N_N : N ; - carians_A : A ; - carica_F_N : N ; - caries_F_N : N ; - carina_F_N : N ; - carinarius_M_N : N ; - carinatus_A : A ; - carino_V : V ; - carino_V2 : V2 ; - carinor_V : V ; - carinus_A : A ; - cariosus_A : A ; - cariota_F_N : N ; - caris_F_N : N ; - carisa_F_N : N ; - carissus_A : A ; - caristium_N_N : N ; - carisus_A : A ; - caritas_F_N : N ; - caritativus_A : A ; - caritores_F_N : N ; - carmen_N_N : N ; - carminabundus_A : A ; - carminatio_F_N : N ; - carminator_M_N : N ; - carmino_V2 : V2 ; - carnale_N_N : N ; - carnalis_A : A ; - carnalitas_F_N : N ; - carnaliter_Adv : Adv ; - carnarium_N_N : N ; - carnarius_A : A ; - carnarius_M_N : N ; - carnatio_F_N : N ; - carnatus_A : A ; - carnelevarium_N_N : N ; - carnero_M_N : N ; - carneus_A : A ; + cappas_2_N : N ; -- [DAXFS] :: sea horse; + cappella_F_N : N ; -- [FEXDE] :: chapel; choir; [a capella => unaccompanied (song); ~ magister => choirmaster]; + cappellania_F_N : N ; -- [FEXFE] :: chaplaincy; + cappellanus_M_N : N ; -- [FEXDE] :: chaplain; + capra_F_N : N ; -- [XAXCO] :: she-goat, nanny-goat; [Caprae palus => on Campus Martius/Circus Flaminus site]; + capragenus_A : A ; -- [DAXFS] :: of flesh of wild goats; + caprago_F_N : N ; -- [DAXFS] :: plant; (also called cicer columbinum); + caprale_N_N : N ; -- [XAXFO] :: field/marsh/swamp fit only for goats; + caprarius_A : A ; -- [XAXES] :: of/pertaining to goat; + caprarius_M_N : N ; -- [XAXFO] :: goatherd; + caprea_F_N : N ; -- [XAXCO] :: roe deer; wild she-goat (L+S); + capreaginus_A : A ; -- [XAXFS] :: resembling a roe-deer (mottled); + capreida_F_N : N ; -- [XAXFS] :: diuretic? plant; + capreola_F_N : N ; -- [XAXFS] :: young roe doe; + capreolatim_Adv : Adv ; -- [XXXFO] :: like twisted tendrils; in a winding/twisting manner; + capreolus_M_N : N ; -- [XAXCO] :: young roe-deer; wild goat/chamois; rafter, support; vine tendril; weeding fork; + capricornus_M_N : N ; -- [XXXEC] :: Capricorn, a sign of Zodiac; + caprificatio_F_N : N ; -- [XAXNO] :: caprification, by which gall insects emerge to fertilize/puncture wild fig; + caprifico_V2 : V2 ; -- [XAXNO] :: caprificate, fertilize by caprification (insects/hand puncturing wild fig); + caprificus_F_N : N ; -- [XAXCO] :: wild fig tree; fruit of wild fig tree, wild fig; + caprigena_F_N : N ; -- [XAXES] :: goats (pl.); + caprigenus_A : A ; -- [XAXEO] :: of/consisting of/sprung from goats, goat-; + caprigenus_M_N : N ; -- [XAXES] :: goats (pl.); + caprile_N_N : N ; -- [XAXEO] :: goat pen/stall; + caprilis_A : A ; -- [XAXFO] :: of/belonging to goats; + caprimulgus_M_N : N ; -- [XAXEO] :: country bumpkin, goat-milker; nightjar/goatsucker (bird Caprimulgus europaeus); + caprina_F_N : N ; -- [DAXFS] :: goat flesh/meat; + caprinarius_M_N : N ; -- [XEXIO] :: devotee of Pan; + caprinus_A : A ; -- [XAXCO] :: of/belonging to/consisting of/resembling goats; [lactuca ~a => kind of spurge]; + capriolus_M_N : N ; -- [XAXCO] :: young roe-deer; wild goat/chamois; rafter, support; vine tendril; weeding fork; + capripes_A : A ; -- [XXXFO] :: goat-footed; (epithet for rural deities); + caprona_F_N : N ; -- [XXXEO] :: forelocks (pl.); (hair hanging down on forehead of men/animals); + capronea_F_N : N ; -- [XXXEO] :: forelocks (pl.); (hair hanging down on forehead of men/animals); + caprugenus_A : A ; -- [DAXFS] :: of flesh of wild goats; + capruginus_A : A ; -- [XAXFO] :: of roe-deer; + caprunculum_N_N : N ; -- [XXXFS] :: earthenware vessel; + capsa_F_N : N ; -- [XXXCO] :: cylindrical case (for books), bookcase; receptacle for things, box, satchel; + capsarius_M_N : N ; -- [XXXCO] :: slave toting boy's bookcase/satchel; who minded clothes at bath; satchelmaker; + capsella_F_N : N ; -- [XXXEO] :: small box/casket; coffer; + capsicum_N_N : N ; -- [GXXEK] :: paprika, pepper; + capso_V2 : V2 ; -- [BXXAO] :: seize (only PRES form which is FUT); take bribe; capture; occupy; captivate; + capsula_F_N : N ; -- [XXXDO] :: small box for books; chest, casket; + capsum_N_N : N ; -- [GEXEK] :: church nave; + capsus_M_N : N ; -- [XXXEO] :: coach/carriage/wagon body; cage/pen for animals; + captatio_F_N : N ; -- [XXXDO] :: action of straining after; legacy-hunting; feint to attract stroke (fencing); + captator_M_N : N ; -- [XXXDO] :: legacy hunter; one who strives to obtain/eagerly reaches for/grasps at/courts; + captatorius_A : A ; -- [XLXEO] :: of/concerning legacy-hunting/hunters; [~as institutiones => mutual heirs]; + captatrix_A : A ; -- [XXXFO] :: straining after, striving to obtain; (feminine adjective); + captatrix_F_N : N ; -- [DXXFS] :: she who strives to obtain/eagerly reaches for/grasps at/courts; + captensula_F_N : N ; -- [DGXFS] :: fallacious argument; sophism; + captibilis_A : A ; -- [DXXFS] :: that can take; + captio_F_N : N ; -- [XXXCO] :: deception/trick/fraud; disadvantage, loss; a sophistry/quibble; right to take; + captiose_Adv : Adv ; -- [XXXEO] :: in a manner to score over a person/take him in/deceive him; insidiously; + captiosum_N_N : N ; -- [DGXFS] :: sophisms (pl.); + captiosus_A : A ; -- [XXXBO] :: harmful, disadvantageous; captious, intended to ensnare (arguments), deceptive; + captito_V2 : V2 ; -- [XXXEO] :: snatch at; strive eagerly after; + captiuncula_F_N : N ; -- [XGXFS] :: quirk; sophism, fallacy; + captiva_F_N : N ; -- [XXXCO] :: prisoner (female), captive; + captivatio_F_N : N ; -- [DXXFS] :: subjugation; enslavement; + captivator_M_N : N ; -- [DWXFS] :: captor, one who takes captive; + captivitas_F_N : N ; -- [XXXCO] :: captivity/bondage; capture/act of being captured; blindness; captives (Plater); + captivncula_F_N : N ; -- [XLXEO] :: legal quirk or snare; + captivo_V2 : V2 ; -- [DEXES] :: take captive; + captivus_A : A ; -- [XWXBO] :: caught, taken captive; captured (in war), imprisoned; conquered; of captives; + captivus_C_N : N ; -- [XWXCO] :: prisoner of war (likely male, but maybe female), captive; + capto_V2 : V2 ; -- [XXXAO] :: try/long/aim for, desire; entice; hunt legacy; try to catch/grasp/seize/reach; + captor_M_N : N ; -- [DAXFS] :: hunter, huntsman, he who catches animals/game; + captrix_F_N : N ; -- [DXXFS] :: huntress; she who takes/catches; she who despoils; + captum_N_N : N ; -- [XAXFO] :: catch; (e.g. fish); + captura_F_N : N ; -- [XXXCO] :: taking/catching wild game; bag, total game caught; gain, take; making profits; + captus_A : A ; -- [XXXCO] :: captured, captive; + captus_M_N : N ; -- [XXXCO] :: capacity/ability/potentiality; comprehension; action/result of taking/grasping; + capucium_N_N : N ; -- [FXXEM] :: hood; headland of field; + capudo_F_N : N ; -- [XEXFO] :: primitive sacrificial vessel; + capula_F_N : N ; -- [XEXFO] :: small sacrificial bowl/cup; (with handles L+S); + capularis_A : A ; -- [XXXEO] :: ready for bier, having one foot in grave; of/near grave/bier; + capulatio_F_N : N ; -- [FXXEM] :: mutilation; decapitation; + capulator_M_N : N ; -- [XAXEO] :: man who draws from oil press; decanter, who pours from vessel to other (L+S); + capulatus_A : A ; -- [FXXEE] :: hooded; + capulo_V2 : V2 ; -- [XAXNO] :: draw off oil from oil press; attach/halter (cattle); catch (animals); + capulum_N_N : N ; -- [DXXES] :: |sepulcher, tomb, scacophagus; halter for catching/fastening cattle, lasso; + capulus_M_N : N ; -- [DXXES] :: |sepulcher, tomb, scacophagus; halter for catching/fastening cattle, lasso; + capus_M_N : N ; -- [XAXEO] :: capon; young cockerel?; + caput_N_N : N ; -- [FXXDE] :: |heading; chapter, principal division; [~ super pedibus => head over heels]; + caputalis_A : A ; -- [XXXBO] :: of/belonging to head/life; deadly, mortal; dangerous; excellent, first-rate; + caputium_N_N : N ; -- [FXXEE] :: hood; + carabus_M_N : N ; -- [GAXEK] :: scarabe; coleopteron, beetle; (Cal); + caracalla_F_N : N ; -- [DXFCS] :: long tunic/great-coat worn by Gauls; (name for Emperor Antonius Caracalla); + caracallis_F_N : N ; -- [DXFCS] :: long tunic/great-coat worn by Gauls; + caracter_M_N : N ; -- [EXXEW] :: branded/impressed letter/mark/etc; marking instrument; stamp, character, style; + caragogos_F_N : N ; -- [DAXFS] :: medicinal plant; + caravanna_F_N : N ; -- [GXXEK] :: caravan (group of travelers); + carbas_M_N : N ; -- [XSXEO] :: easterly wind; east-northeast wind (L+S); + carbaseus_A : A ; -- [XXXDO] :: made of linen/flax; + carbasineus_A : A ; -- [XXXEO] :: made of linen/flax; + carbasinum_N_N : N ; -- [XXXEO] :: clothes (pl.) made of linen/flax; + carbasinus_A : A ; -- [XXXEO] :: made of linen/flax; green (Ecc); + carbasum_N_N : N ; -- [XAXES] :: plant with narcotic juice; + carbasus_A : A ; -- [XXXEO] :: made of linen/flax; + carbasus_F_N : N ; -- [XXXCO] :: linen (cloth); fine linen, cambric; canvas; sail; linen garment/clothes; awning; + carbatina_F_N : N ; -- [XAXFS] :: kind of rustic leather shoe; + carbatinus_A : A ; -- [XAXFX] :: made of hide; + carbo_M_N : N ; -- [XXXBO] :: charcoal; glowing coal; pencil/marker; worthless thing; charred remains; coal; + carboarius_M_N : N ; -- [FXXEE] :: collier, supplier of coal/charcoal; charcoal burner/supplier; + carbonaria_F_N : N ; -- [DAXFS] :: furnace/chimney/oven for making charcoal (by burning wood/etc.); + carbonarius_A : A ; -- [DAXFS] :: of/relating to charcoal; + carbonarius_M_N : N ; -- [XAXFO] :: charcoal-burner, collier; + carbonesco_V : V ; -- [DAXFS] :: become charcoal; + carboneum_N_N : N ; -- [GSXEK] :: carbon (element); + carbonicus_A : A ; -- [GXXEK] :: carbonic; + carbunculatio_F_N : N ; -- [XAXNO] :: affliction with a form of vine blight; disease of trees (L+S); + carbunculo_V : V ; -- [XAXNO] :: be afflicted with a form of vine blight; + carbunculor_V : V ; -- [XAXNS] :: be afflicted with a form of vine blight; + carbunculosus_A : A ; -- [XXXFO] :: containing tophus (variety of sandstone); containing red toph-stone (L+S); + carbunculus_M_N : N ; -- [XXXCO] :: live coal; red tophus; precious stone; vine blight; carbuncle/tumor/anthrax; + carbunica_F_N : N ; -- [XAXNO] :: variety of vine; + carcedonius_M_N : N ; -- [EXXFW] :: chalcedony; (stone of third foundation of New Jerusalem in Revelations 21:19); + carcer_M_N : N ; -- [XXXBO] :: prison, jail; jailbird; starting barriers at race-course, traps; beginning; + carceralis_A : A ; -- [DXXES] :: of/pertaining to/connected with prison/jail; + carcerarius_A : A ; -- [XXXFO] :: of/pertaining to/connected with prison/jail; + carcerarius_M_N : N ; -- [DXXES] :: prison keeper, jailer; + carcereus_A : A ; -- [DXXES] :: of/pertaining to/connected with prison; + carcharus_M_N : N ; -- [XAXFO] :: fish (kind of); kind of dog fish (L+S); + carchesium_N_N : N ; -- [XXXCO] :: type of drinking-cup/beaker; mast-head of ship; kind of derrick, crane; + carcinethron_N_N : N ; -- [XAXNS] :: plant, knotgrass; (pure Latin geniculata; also called polygonon); + carcinias_M_N : N ; -- [XXXNO] :: crab-colored precious stone; + carcinodes_A : A ; -- [XBXEO] :: cancerous, polypous; + carcinodes_N_N : N ; -- [XBXNS] :: cancerous disease; cancer; + carcinogenesis_F_N : N ; -- [HBXEK] :: carcinogenesis; + carcinoma_N_N : N ; -- [XBXDO] :: ulcer or tumor (malignant?); (term of reproach by Augustus for Julia/Agrippa); + carcinothron_N_N : N ; -- [XAXNO] :: plant, knotgrass; (pure Latin geniculata; also called polygonon); + cardamina_F_N : N ; -- [DAXFS] :: cress-like plant; + cardamomum_N_N : N ; -- [XAXDO] :: cardamom (Elettaris cardamomum); its seeds (used in medicine/spice); + cardamum_N_N : N ; -- [DAXFO] :: cress-like plant; (pure Latin nasturtium); + cardelis_F_N : N ; -- [XAXNO] :: goldfinch (Fringilla carduelis); thistle-finch (L+S); + cardiacus_A : A ; -- [XBXCO] :: of heart or stomach; suffering in stomach; + cardiacus_M_N : N ; -- [XBXEO] :: person suffering from heartburn or stomach distress; + cardimoma_F_N : N ; -- [DBXFS] :: pain in stomach, stomach ache; + cardinalas_F_N : N ; -- [FEXFM] :: cardinalate, office/position/dignity/rank of Cardinal in Catholic Church; + cardinalatus_M_N : N ; -- [FEXEE] :: cardinalate, office/position/dignity/rank of Cardinal in Catholic Church; + cardinalicius_A : A ; -- [GEXEM] :: cardinal's; of a cardinal; + cardinalis_A : A ; -- [XTXFO] :: cardinal/principle/chief; that serves as pivot/on which something turns/depends; + cardinalis_M_N : N ; -- [FEXDB] :: cardinal, prince of Catholic Church; (elector of Popes); chief, principle; + cardinaliter_Adv : Adv ; -- [DXXFS] :: chiefly, principally; especially; + cardinalitius_A : A ; -- [FEXFE] :: of/pertaining to cardinalate/cardinalship/position of Catholic Cardinal; + cardinatus_A : A ; -- [XTXFO] :: mortised; hinged to; + cardineus_A : A ; -- [XTXFO] :: of/by hinges; of/pertaining to door-hinge; E:of a cardinal (Latham); + cardiogramma_N_N : N ; -- [HBXEK] :: cardiogram; electrocardiogram; + cardiographia_F_N : N ; -- [HBXEK] :: cardiography; electrocardiography; + cardiographium_N_N : N ; -- [HBXEK] :: cardiograph; electrocardiograph; + cardiologia_F_N : N ; -- [GBXEK] :: cardiology; + cardiologus_M_N : N ; -- [GBXEK] :: cardiologist; + cardo_M_N : N ; -- [XXXAO] :: hinge; pole, axis; chief point/circumstance; crisis; tenon/mortise; area; limit; + carduelis_F_N : N ; -- [XAXNO] :: goldfinch (Fringilla carduelis); thistle-finch (L+S); + carduetus_M_N : N ; -- [XAXFS] :: thicket of thistle; sedgebrush, rushes (Ecc); + carduus_M_N : N ; -- [XAXCO] :: thistle; prickly bur/seed-vessel; cardoon (artichoke-like vegetable); + care_Adv : Adv ; -- [XXXCO] :: dear, at high price; of high value; at great cost/sacrifice; + carectum_N_N : N ; -- [XAXFO] :: bed/plot of sedges/rushes; + carena_F_N : N ; -- [EEXFE] :: fast of forty days; + carenaria_F_N : N ; -- [DAXFS] :: vessel for making carenum (sweet wine boiled down one third); + carentia_F_N : N ; -- [EXXEE] :: lack; shortage; penury (Cal); + carenum_N_N : N ; -- [DAXES] :: sweet wine boiled down one third; + careo_V : V ; -- [XXXAO] :: be without/absent from/devoid of/free from; miss; abstain from, lack, lose; + careor_V : V ; -- [BXXAS] :: be without/absent from/devoid of/free from; miss; abstain from, lack, lose; + careota_F_N : N ; -- [XAXDO] :: date; nut-shaped date (L+S); (as gift on Saturnalia); + caresco_V : V ; -- [DXXFS] :: want, be without; + careum_N_N : N ; -- [XAXEO] :: caraway; + carex_F_N : N ; -- [XAXEO] :: reed-grass; sedges; rushes; + carfiathum_N_N : N ; -- [XXXNO] :: (superior) kind of incense; excellent kind of white frankincense; + carians_A : A ; -- [DXXFS] :: decayed, rotten; defective; + carica_F_N : N ; -- [XAQCO] :: kind of fig; (Caria a country in south-west Asia Minor); + caries_F_N : N ; -- [XXXBO] :: rot, rottenness, corruption, decay; caries; shriveling up; dry rot; ship worm; + carina_F_N : N ; -- [XXXCO] :: keel, bottom of ship, hull; boat, ship, vessel; voyage; half walnut shell; + carinarius_M_N : N ; -- [XXXFO] :: one who dyes? brown; + carinatus_A : A ; -- [XXXNS] :: shell-formed/shaped; like a keel/hull; + carino_V : V ; -- [BXXEO] :: curse, abuse, revile, blame; use abusive language; + carino_V2 : V2 ; -- [XWXNO] :: turn into/shape like a ship/hull; supply with/get/grow a shell; + carinor_V : V ; -- [BXXEO] :: curse, abuse, revile, blame; use abusive language; + carinus_A : A ; -- [XXXFO] :: nut-brown (fashionable color in women's dress); + cariosus_A : A ; -- [XXXCO] :: rotten, decayed (wood/teeth); crumbly; friable, loose, porous; decayed (old); + cariota_F_N : N ; -- [XAXDO] :: date; nut-shaped date (L+S); (as gift on Saturnalia); + caris_F_N : N ; -- [XAXFO] :: kind of crustacean; shrimp/prawn?; sea-crab (L+S); + carisa_F_N : N ; -- [XXXFS] :: artful woman; + carissus_A : A ; -- [XXXFO] :: artful, sly, cunning, crafty; + caristium_N_N : N ; -- [XXXES] :: annual family banquet 3 days after Parentalia (20 Feb.) where feuds settled; + carisus_A : A ; -- [XXXFS] :: artful, sly, cunning, crafty; + caritas_F_N : N ; -- [XXXBO] :: charity; love, affection, esteem, favor; dearness; high price; + caritativus_A : A ; -- [EEXEE] :: charitable; + caritores_F_N : N ; -- [DAXFS] :: wool-carders; + carmen_N_N : N ; -- [XDXAO] :: song/music; poem/play; charm; prayer, incantation, ritual/magic formula; oracle; + carminabundus_A : A ; -- [XPXFS] :: versifying; making/composing verse/poetry; + carminatio_F_N : N ; -- [XAXNO] :: combing/carding (wool/flax/etc.); + carminator_M_N : N ; -- [XAXIO] :: carder (of wool/flax/etc.); + carmino_V2 : V2 ; -- [DPXFS] :: |make verses; + carnale_N_N : N ; -- [DEXCS] :: carnal/sensual/worldly things; things of the_flesh; + carnalis_A : A ; -- [DEXCS] :: carnal, fleshy, bodily, sensual; of the_flesh; not spiritual, worldly; + carnalitas_F_N : N ; -- [DEXES] :: carnality, sensuality, fleshiness; + carnaliter_Adv : Adv ; -- [DEXCS] :: carnally, sensually; not spiritually; + carnarium_N_N : N ; -- [XAXCO] :: meat rack (for smoking/drying); larder/pantry (L+S); + carnarius_A : A ; -- [DEXFS] :: of/pertaining to/belonging to flesh; + carnarius_M_N : N ; -- [XAXFO] :: dealer in meat; butcher; + carnatio_F_N : N ; -- [DXXFS] :: fleshiness, bulk, corpulence, heaviness; + carnatus_A : A ; -- [DBXFS] :: fleshy, fat, corpulent; + carnelevarium_N_N : N ; -- [GXXEK] :: carnival; + carnero_M_N : N ; -- [FAXEN] :: steer, cow; + carneus_A : A ; -- [DEXES] :: of the_flesh, carnal; not spiritual; 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 ; - carnifex_M_N : N ; - carnificina_F_N : N ; - carnificius_A : A ; - carnifico_V : V ; - carnificor_V : V ; - carnificus_A : A ; - carniger_A : A ; - carnis_F_N : N ; - carnivorus_A : A ; - carnosus_A : A ; - carnufex_A : A ; - carnufex_M_N : N ; - carnuficina_F_N : N ; - carnuficius_A : A ; - carnufico_V : V ; - carnuficor_V : V ; - carnuficus_A : A ; - carnulentus_A : A ; - caro_Adv : Adv ; - caro_F_N : N ; - caro_V2 : V2 ; - caroenum_N_N : N ; - caros_M_N : N ; - carota_F_N : N ; - carotis_F_N : N ; - carpa_F_N : N ; - carpasinus_A : A ; - carpasum_N_N : N ; - carpathium_N_N : N ; - carpathum_N_N : N ; - carpatinus_A : A ; - carpentarius_A : A ; - carpentarius_M_N : N ; - carpentum_N_N : N ; - carpentura_F_N : N ; - carpheothum_N_N : N ; - carphologia_F_N : N ; - carphos_N_N : N ; - carpineus_A : A ; - carpineus_F_N : N ; - carpisculus_M_N : N ; - carpistes_M_N : N ; - carpo_V2 : V2 ; - carpophyllon_N_N : N ; - carptim_Adv : Adv ; - carptor_M_N : N ; - carptura_F_N : N ; - carpusculus_M_N : N ; - carracutium_N_N : N ; - carrago_F_N : N ; - carrarius_M_N : N ; - carrico_V : V ; - carro_V2 : V2 ; - carrobalista_F_N : N ; - carroballista_F_N : N ; - carroco_M_N : N ; - carruca_F_N : N ; - carrucarius_A : A ; - carrucarius_M_N : N ; - carrucha_F_N : N ; - carrulus_M_N : N ; - carrum_N_N : N ; - carrus_M_N : N ; - carta_F_N : N ; - cartallus_M_N : N ; - cartibulum_N_N : N ; - cartilagineus_A : A ; - cartilaginosus_A : A ; - cartilago_F_N : N ; - cartula_F_N : N ; - cartus_M_N : N ; - carucata_F_N : N ; - caruncula_F_N : N ; - carus_A : A ; - caryinos_A : A ; - caryinus_A : A ; - caryites_M_N : N ; - caryon_N_N : N ; - caryophyllon_N_N : N ; - caryophyllum_N_N : N ; - caryota_F_N : N ; - caryotis_F_N : N ; - casa_F_N : N ; - casabundus_A : A ; - casamus_M_N : N ; - casaria_F_N : N ; - casarius_A : A ; - casarius_M_N : N ; - casce_Adv : Adv ; - cascus_A : A ; - casearius_A : A ; - caseatus_A : A ; - casellula_F_N : N ; - caseolus_M_N : N ; - caseta_F_N : N ; - casetophonum_N_N : N ; - caseum_N_N : N ; - caseus_M_N : N ; - casia_F_N : N ; - casiarius_A : A ; - casignete_F_N : N ; - casila_F_N : N ; - casito_V : V ; - casleu_N : N ; - casmila_F_N : N ; - casmilus_M_N : N ; - casnar_N : N ; - cassabundus_A : A ; - cassia_F_N : N ; - cassiculus_M_N : N ; - cassida_F_N : N ; - cassidarius_M_N : N ; - cassidile_N_N : N ; - cassis_F_N : N ; - cassis_M_N : N ; - cassita_F_N : N ; - cassiterinus_A : A ; - cassiterum_N_N : N ; - cassito_V : V ; - casso_V : V ; - casso_V2 : V2 ; - cassum_N_N : N ; - cassus_A : A ; - cassus_M_N : N ; - castanea_F_N : N ; - castanetum_N_N : N ; - castanietum_N_N : N ; - caste_Adv : Adv ; - castella_F_N : N ; - castellanus_A : A ; - castellanus_M_N : N ; - castellarius_M_N : N ; - castellatim_Adv : Adv ; - castellum_N_N : N ; - casteria_F_N : N ; - castifico_V2 : V2 ; - castificus_A : A ; - castigabilis_A : A ; - castigate_Adv : Adv ; - castigatio_F_N : N ; - castigator_M_N : N ; - castigatorius_A : A ; - castigatus_A : A ; - castigo_V : V ; - castimonia_F_N : N ; - castimonialis_A : A ; - castimonium_N_N : N ; - castitas_F_N : N ; - castitudo_F_N : N ; + carnicis_M_N : N ; -- [XAXFO] :: fodder plant, tree-medick (Medicago arborea); its wood; scrubby snail-clover; + carnicula_F_N : N ; -- [DXXFS] :: flesh; + carnifex_A : A ; -- [XXXEO] :: tormenting, torturing; murderous, killing; deadly; + carnifex_M_N : N ; -- [XXXCO] :: executioner, hangman; murderer, butcher, torturer; scoundrel, villain; + carnificina_F_N : N ; -- [XXXCO] :: work/act/office of executioner/torturer; torture/execution; capital punishment; + carnificius_A : A ; -- [XXXFO] :: of/pertaining to an executioner/hangman/torturer; + carnifico_V : V ; -- [XXXEO] :: execute; behead; butcher; cut in pieces, mangle; + carnificor_V : V ; -- [DXXFS] :: execute; behead; butcher; cut in pieces, mangle; + carnificus_A : A ; -- [XXXFO] :: butchering; + carniger_A : A ; -- [DEXFS] :: bearing flesh; + carnis_F_N : N ; -- [XXXCO] :: meat/flesh; the_body; pulp/flesh of plants, sapwood; soft part; low passions; + carnivorus_A : A ; -- [XXXNO] :: carnivorous, flesh-eating; + carnosus_A : A ; -- [XXXCO] :: fleshy; characterized by flesh; consisting of meat; fleshy in color/appearance; + carnufex_A : A ; -- [XXXEO] :: tormenting, torturing; murderous, killing; deadly; + carnufex_M_N : N ; -- [XXXCO] :: executioner, hangman; murderer, butcher, torturer; scoundrel, villain; + carnuficina_F_N : N ; -- [XXXCO] :: work/act/office of executioner/torturer; torture/execution; capital punishment; + carnuficius_A : A ; -- [XXXFO] :: of/pertaining to an executioner/hangman/torturer; + carnufico_V : V ; -- [XXXEO] :: execute; behead; butcher; cut in pieces, mangle; + carnuficor_V : V ; -- [DXXFS] :: execute; behead; butcher; cut in pieces, mangle; + carnuficus_A : A ; -- [XXXFO] :: butchering; + carnulentus_A : A ; -- [DXXES] :: like flesh; + caro_Adv : Adv ; -- [XXXFO] :: dearly; dear, at a high price; + caro_F_N : N ; -- [XXXBO] :: meat, flesh; the_body; pulpy/fleshy/soft parts (plant), sapwood; low passions; + caro_V2 : V2 ; -- [XAXEO] :: card/comb (wool/flax/etc.); + caroenum_N_N : N ; -- [DAXES] :: sweet wine boiled down one third; + caros_M_N : N ; -- [XAXNO] :: variety/seed of plant hypericum; heavy sleep, stupor, sleep of death (L+S); + carota_F_N : N ; -- [XAXFS] :: carrot; + carotis_F_N : N ; -- [XBXFO] :: carotid arteries (pl.); + carpa_F_N : N ; -- [GAXET] :: carp; (Erasmus); + carpasinus_A : A ; -- [EXXFW] :: green; (Vulgate Ester 1:6); + carpasum_N_N : N ; -- [XAXES] :: plant with narcotic juice; (white hellebore? OLD); + carpathium_N_N : N ; -- [XAXES] :: plant with narcotic juice; (white hellebore? OLD); + carpathum_N_N : N ; -- [XAXNO] :: white hellebore plant (Veratrum album); + carpatinus_A : A ; -- [XAXFO] :: made of hide; + carpentarius_A : A ; -- [XXXEO] :: of wagons/carriages/chariots; of/pertaining to carriage building; + carpentarius_M_N : N ; -- [DTXFS] :: carriage/wagon/chariot builder/cartwright's workshop; + carpentum_N_N : N ; -- [XXXCO] :: carriage (2-wheeled, covered for women); chariot (L+S); wagon/cart; barouche; + carpentura_F_N : N ; -- [GXXEK] :: framework; + carpheothum_N_N : N ; -- [XXXNS] :: (superior) kind of incense; excellent kind of white frankincense; + carphologia_F_N : N ; -- [DAXFS] :: picking of pieces of straw from mud/adobe walls; + carphos_N_N : N ; -- [XAXNO] :: fenugreek; goat's thorn; + carpineus_A : A ; -- [XAXNO] :: of/made of/pertaining to hornbeam (tree of genus Carpinus); + carpineus_F_N : N ; -- [XAXDO] :: hornbeam (tree Carpinus betulus); + carpisculus_M_N : N ; -- [DXXES] :: kind of shoe; groundwork/basement; + carpistes_M_N : N ; -- [DEXFS] :: one of Aeons of Valentinus; + carpo_V2 : V2 ; -- [XXXAO] :: |separate/divide, tear down; carve; despoil/fleece; pursue/harry; consume/erode; + carpophyllon_N_N : N ; -- [XAXNO] :: shrub; (Ruscus hypophyllum?); + carptim_Adv : Adv ; -- [XXXCO] :: in separate/detached/disconnected parts/units; selectively; intermittently; + carptor_M_N : N ; -- [XXXFO] :: carver (of game/poultry/etc.); + carptura_F_N : N ; -- [XAXFS] :: gathering of honey; sucking of nectar from flowers (by bees) (L+S); + carpusculus_M_N : N ; -- [DXXES] :: kind of shoe; groundwork/basement; + carracutium_N_N : N ; -- [DXXFS] :: kind of two-wheeled carriage; + carrago_F_N : N ; -- [DWXES] :: fortification/barricade made of wagons; circled wagons; + carrarius_M_N : N ; -- [XXXFO] :: one who makes/repairs wagons/carts/carriages; army cartwright; + carrico_V : V ; -- [GXXEK] :: charge (a weapon, a battery); + carro_V2 : V2 ; -- [XAXEO] :: card/comb (wool/flax/etc.); + carrobalista_F_N : N ; -- [DWXFS] :: ballista/catapult mounted on a carriage; (equivalent of "field gun"); + carroballista_F_N : N ; -- [DWXFS] :: ballista/catapult mounted on a carriage; (equivalent of "field gun"); + carroco_M_N : N ; -- [DAXFS] :: sturgeon (Acipenser sturio); + carruca_F_N : N ; -- [XXXDO] :: coach, traveling-carriage; (four-wheeled L+S); state coach; + carrucarius_A : A ; -- [XXXFO] :: used for/pertaining to carriages/carruca; + carrucarius_M_N : N ; -- [DXXFS] :: coachman; + carrucha_F_N : N ; -- [XXXDO] :: traveling-carriage; (four-wheeled L+S); state coach; + carrulus_M_N : N ; -- [XXXFO] :: small/little cart/wagon; + carrum_N_N : N ; -- [XXFDO] :: wagon; (Gallic type); + carrus_M_N : N ; -- [XXFDO] :: wagon; (Gallic type); + carta_F_N : N ; -- [XXXBO] :: papyrus (sheet/page); record/letter, book/writing(s); thin metal sheet/leaf; + cartallus_M_N : N ; -- [DXXFS] :: basket; + cartibulum_N_N : N ; -- [XXXFS] :: kind of oblong table standing on a pedestal; + cartilagineus_A : A ; -- [XBXNO] :: cartilaginous, gristly; + cartilaginosus_A : A ; -- [XBXNO] :: characterized by/full of cartilage/other tough fibrous tissue, very gristly; + cartilago_F_N : N ; -- [XBXDO] :: cartilage, gristle; substance harder than pulp but softer than woody fiber; + cartula_F_N : N ; -- [XXXFO] :: scrap/piece of papyrus; small note, bill (L+S); + cartus_M_N : N ; -- [XXXFO] :: papyrus (sheet/page); record/letter, book/writing(s); thin metal sheet/leaf; + carucata_F_N : N ; -- [FLXFJ] :: carucate of land; 120-180 acres (as much land as can be plowed in a year); + caruncula_F_N : N ; -- [XXXCO] :: little piece of flesh; piece of tissue (medical), fleshy growth; + carus_A : A ; -- [XXXAO] :: dear, beloved; costly, precious, valued; high-priced, expensive; + caryinos_A : A ; -- [XXXNS] :: made of walnuts, walnut-; made of nuts (L+S); + caryinus_A : A ; -- [XXXNO] :: made of walnuts, walnut-; made of nuts (L+S); + caryites_M_N : N ; -- [XAXNO] :: variety of spurge; species of tithymalus (L+S); + caryon_N_N : N ; -- [XAXNO] :: walnut; nut (L+S); + caryophyllon_N_N : N ; -- [XAXNO] :: dried flower-buds of clove; cloves; + caryophyllum_N_N : N ; -- [FXXEK] :: clove; + caryota_F_N : N ; -- [XAXDO] :: date; nut-shaped date (L+S); (as gift on Saturnalia); + caryotis_F_N : N ; -- [XAXEO] :: date; nut-shaped date (L+S); (as gift on Saturnalia); + casa_F_N : N ; -- [XXXCO] :: cottage/small humble dwelling, hut/hovel; home; house; shop, booth; farm (late); + casabundus_A : A ; -- [XXXES] :: stumbling, tottering; ready to fall; + casamus_M_N : N ; -- [BXXFS] :: old man; attendant; + casaria_F_N : N ; -- [XXXFO] :: one (god/spirit?) who guards over a cottage; + casarius_A : A ; -- [DXXFS] :: of/pertaining to a cottage; + casarius_M_N : N ; -- [DXXFS] :: dweller in a cottage; cottager; + casce_Adv : Adv ; -- [XXXFO] :: in an archaic/out-of-date/old-fashion manner; + cascus_A : A ; -- [XXXDO] :: ancient, old; archaic; primitive; + casearius_A : A ; -- [DXXFS] :: of/pertaining to cheese, cheese-; + caseatus_A : A ; -- [XXXFO] :: mixed with cheese; + casellula_F_N : N ; -- [DAXFS] :: little hut; + caseolus_M_N : N ; -- [XXXFO] :: small cheese; + caseta_F_N : N ; -- [HTXEK] :: cassette; + casetophonum_N_N : N ; -- [HXXEK] :: cassette-recording; + caseum_N_N : N ; -- [XXXCO] :: cheese; pressed curd; comic term of endearment (L+S); + caseus_M_N : N ; -- [XXXCO] :: cheese; pressed curd; comic term of endearment (L+S); + casia_F_N : N ; -- [XAXCO] :: cinnamon (Cinnamomum tree/bark/spice); aromatic shrub (mezereon or marjoram?); + casiarius_A : A ; -- [XXXFO] :: of/connected with cheese; + casignete_F_N : N ; -- [XAXNO] :: plant (unidentified); (also called dionysonymphadas); + casila_F_N : N ; -- [AXXFO] :: helmet (metal) (Sabine form); wearer of a helmet; war, active service; + casito_V : V ; -- [DXXFS] :: fall/drop down repeatedly/frequently; + casleu_N : N ; -- [EXQEW] :: Chislev/Kislev, Jewish month; (ninth in ecclesiastic year); + casmila_F_N : N ; -- [XEXFS] :: handmaiden/female of unblemished character attendant in religious ceremonies; + casmilus_M_N : N ; -- [XEXFS] :: boy/noble youth attendant of a flamen/priest; + casnar_N : N ; -- [BXXFS] :: old man; attendant; + cassabundus_A : A ; -- [XXXFO] :: stumbling, tottering; ready to fall; + cassia_F_N : N ; -- [XAXFS] :: cinnamon (Cinnamomum tree/bark/spice); aromatic shrub (mezereon or marjoram?); + cassiculus_M_N : N ; -- [XAXFO] :: small net; cobweb; + cassida_F_N : N ; -- [XWXEO] :: helmet (metal); wearer of a helmet; war, active service; + cassidarius_M_N : N ; -- [DWXIS] :: helmet maker; + cassidile_N_N : N ; -- [DXXFS] :: small bag, wallet; satchel, bag (Souter); + cassis_F_N : N ; -- [XWXCO] :: helmet (metal); wearer of a helmet; war, active service; + cassis_M_N : N ; -- [XWXCO] :: hunting net (often pl.); spider's web; snare, trap; + cassita_F_N : N ; -- [XAXFO] :: crested/tufted lark (Alauda cristata); + cassiterinus_A : A ; -- [XXXFS] :: made of tin; + cassiterum_N_N : N ; -- [XXXNO] :: tin; (originally a mixture of lead/silver and other metals L+S); + cassito_V : V ; -- [XXXFO] :: drip; + casso_V : V ; -- [XXXFO] :: totter, begin to fall; shake, waver (L+S); + casso_V2 : V2 ; -- [DLXES] :: bring to naught, destroy; annul, make null and void; + cassum_N_N : N ; -- [XXXES] :: empty/vain/futile things (pl.); + cassus_A : A ; -- [XXXBO] :: hollow/empty/devoid of, lacking; useless/fruitless/vain; [in cassum => in vain]; + cassus_M_N : N ; -- [XXXEO] :: fall, overthrow; chance/fortune; accident, emergency, calamity, plight; fate; + castanea_F_N : N ; -- [XAXCO] :: chestnut-tree, chestnut; + castanetum_N_N : N ; -- [XAXEO] :: chestnut plantation; + castanietum_N_N : N ; -- [XAXEO] :: chestnut plantation/grove; + caste_Adv : Adv ; -- [XXXBO] :: uprightly, w/integrity; chastely, w/sexual/ceremonial purity; spotlessly; + castella_F_N : N ; -- [FXSEZ] :: Castile (Spain); (place of castles/castella); + castellanus_A : A ; -- [XWXCO] :: of/connected with/pertaining to/associated with a fort/fortress/castle; + castellanus_M_N : N ; -- [XWXEO] :: garrison/occupants (pl.) of a fort/fortress/castle; + castellarius_M_N : N ; -- [XTXIO] :: keeper of a reservoir; + castellatim_Adv : Adv ; -- [XWXEO] :: at intervals (in manner of strongpoints), in separate detachments; castle-wise; + castellum_N_N : N ; -- [FXXEB] :: ||town, village; (medieval); + casteria_F_N : N ; -- [XWXFO] :: part of a ship?; (where rowers were accustomed to rest, rower's room L+S); + castifico_V2 : V2 ; -- [DEXES] :: punish, correct; make pure; + castificus_A : A ; -- [XXXFO] :: acting chastely, pure; purifying; [~ lavacrum => baptism] (L+S); + castigabilis_A : A ; -- [XXXFO] :: that deserves punishment; deserving of punishment/reprimand/chastising; + castigate_Adv : Adv ; -- [XXXFO] :: chastely; strictly; briefly (L+S); restrainedly, within bounds; + castigatio_F_N : N ; -- [XXXCO] :: punishment; reprimand, reproof; pruning (trees/etc.); tempering (speech) (L+S); + castigator_M_N : N ; -- [XXXDO] :: corrector, reprover, chastiser; + castigatorius_A : A ; -- [XXXFO] :: of nature of reproof; reproving, censuring (L+S); + castigatus_A : A ; -- [XXXCO] :: tightly drawn, restrained, confined, compressed; small/slender; strict, severe; + castigo_V : V ; -- [XXXBO] :: chastise/chasten, punish; correct, reprimand/dress down, castigate; neutralize; + castimonia_F_N : N ; -- [XXXCO] :: chastity, abstinence, ceremonial purity/purification; morality, moral purity; + castimonialis_A : A ; -- [DEXFS] :: pertaining to abstinence or continence/self-restraint; + castimonium_N_N : N ; -- [XXXFO] :: abstinent practice; abstinence (sexual/from meat) for ritual; purity of morals; + castitas_F_N : N ; -- [XXXCO] :: chastity, fidelity; virginity; sexual/moral/ritual purity; integrity, morality; + castitudo_F_N : N ; -- [XXXFO] :: chastity, fidelity; virginity; sexual/moral/ritual purity; integrity, morality; castor_1_N : N ; -- [XAXEO] :: beaver (Castor fiber); - castor_2_N : N ; - castor_M_N : N ; - castoreum_N_N : N ; - castorinatus_A : A ; - castorinus_A : A ; - castra_F_N : N ; - castramentor_V : V ; - castrametor_V : V ; - castratio_F_N : N ; - castrator_M_N : N ; - castratorius_A : A ; - castratura_F_N : N ; - castratus_A : A ; - castratus_M_N : N ; - castrens_M_N : N ; - castrensianus_M_N : N ; - castrensiarius_M_N : N ; - castrensis_A : A ; - castrmetor_V : V ; - castro_V : V ; - castrum_N_N : N ; - castula_F_N : N ; - castum_N_N : N ; - castus_A : A ; - castus_M_N : N ; - casu_Adv : Adv ; - casualis_A : A ; - casualiter_Adv : Adv ; - casula_F_N : N ; - casurus_M_N : N ; - casus_M_N : N ; - cata_Abl_Prep : Prep ; - catabasis_F_N : N ; - catabolensis_M_N : N ; - catabulum_N_N : N ; - catacecaumenites_M_N : N ; - catachana_F_N : N ; - catachanna_F_N : N ; - catachresis_F_N : N ; - cataclisticus_A : A ; - cataclistus_A : A ; - cataclysmos_M_N : N ; - cataclysmus_M_N : N ; - catacumba_F_N : N ; - catadromarius_M_N : N ; - catadromus_M_N : N ; - catadupum_N_N : N ; - cataegis_F_N : N ; - catafracta_M_N : N ; - catafractarius_A : A ; - catafractarius_M_N : N ; - catafractatus_A : A ; - catafractes_M_N : N ; - catafractus_A : A ; - catafractus_M_N : N ; - catagraphum_N_N : N ; - catagraphus_A : A ; - catagusa_F_N : N ; - catalecticos_A : A ; - catalecticus_A : A ; - catalectus_A : A ; - catalepsis_F_N : N ; - catalepticus_A : A ; - catalexis_F_N : N ; - catallum_N_N : N ; - catalogus_M_N : N ; - catamenia_F_N : N ; + castor_2_N : N ; -- [XAXEO] :: beaver (Castor fiber); + castor_M_N : N ; -- [XAXDO] :: beaver (Castor fiber); + castoreum_N_N : N ; -- [XXXCO] :: castor, aromatic secretion obtained from beaver used medicinally; + castorinatus_A : A ; -- [DAXFS] :: clothed in beaver fur; + castorinus_A : A ; -- [DAXES] :: of/pertaining to beaver, beaver-; + castra_F_N : N ; -- [BWXFO] :: camp, military camp/field; army; fort, fortress; war service; day's march; + castramentor_V : V ; -- [FXXDE] :: pitch a camp; encamp; + castrametor_V : V ; -- [DXXCS] :: pitch a camp; encamp; + castratio_F_N : N ; -- [XXXEO] :: castration; emasculation; gelding; + castrator_M_N : N ; -- [DAXES] :: one who castrates/gelds, castrator; + castratorius_A : A ; -- [DAXES] :: of/for castration; + castratura_F_N : N ; -- [DAXES] :: castration, emasculation; pruning of plants; + castratus_A : A ; -- [XXXCO] :: castrated; (applied to seeds of apple); bolted/sifted/selected (grain); + castratus_M_N : N ; -- [XXXDO] :: eunuch, castrated man; + castrens_M_N : N ; -- [DLXES] :: high imperial court officer (Constantinople); soldier in camp; + castrensianus_M_N : N ; -- [DLXES] :: attendants (pl.) to Castrensis (Constantinople high imperial court officer); + castrensiarius_M_N : N ; -- [DWXIS] :: purveyor for camp, suttler; + castrensis_A : A ; -- [XWXBO] :: of/connected with camp or active military service; characteristic of soldiers; + castrmetor_V : V ; -- [DWXFS] :: pitch a camp; set up/pitch camp; + castro_V : V ; -- [XXXBO] :: castrate, emasculate/unman; spay (animal); dock (tail); diminish/impair/weaken; + castrum_N_N : N ; -- [EWXDB] :: |castle, fortress; (fortified) town; [~ doloris => catafalque/coffin platform]; + castula_F_N : N ; -- [XXXFS] :: kind of petticoat, garment worn by women; + castum_N_N : N ; -- [XEXES] :: festival/period of ceremonial/required abstinence/continence dedicated to a god; + castus_A : A ; -- [XXXAO] :: pure, moral; chaste, virtuous, pious; sacred; spotless; free from/untouched by; + castus_M_N : N ; -- [XEXEO] :: ceremonial state of abstinence; sexual abstinence on religious grounds; + casu_Adv : Adv ; -- [XXXCS] :: by chance/accident; accidentally; casually; (ablative of casus); + casualis_A : A ; -- [XGXEO] :: relating to/depending on grammatical case; + casualiter_Adv : Adv ; -- [DXXCS] :: relating to/declined with cases; accidentally, fortuitously; + casula_F_N : N ; -- [GXXEK] :: vestment; (Cal); + casurus_M_N : N ; -- [EXXFW] :: fall, overthrow; (Vulgate Acts 28:6); (calamity, plight; fate;) + casus_M_N : N ; -- [XGXEO] :: grammatical case; termination/ending (of words); + cata_Abl_Prep : Prep ; -- [DXXFS] :: by; (in distributed sense); [cata mane mane => morning by morning]; + catabasis_F_N : N ; -- [DEXFS] :: going down/decent; (name of a ceremonial at festival of Magna Mater); + catabolensis_M_N : N ; -- [DXXES] :: class of carriers who transport burdens by draft animals, kind of mule-skinners; + catabulum_N_N : N ; -- [FXXEE] :: stable; menagerie; + catacecaumenites_M_N : N ; -- [XAXNO] :: wine produced in Catacecaumene district in eastern Lydia; + catachana_F_N : N ; -- [XAXES] :: tree on which several different fruits have been grafted; + catachanna_F_N : N ; -- [XAXEO] :: tree on which several different fruits have been grafted; + catachresis_F_N : N ; -- [XGXCO] :: improper use of a word; (pure Latin abusio); + cataclisticus_A : A ; -- [XXXES] :: of/pertaining to state/special occasion/formal dress; + cataclistus_A : A ; -- [XXXEO] :: kept for special occasions (clothes), Sunday best; [~ vestis => state dress]; + cataclysmos_M_N : N ; -- [XXXEO] :: deluge, flood, inundation; (medical) washing diseased member, shower, douche; + cataclysmus_M_N : N ; -- [EXXFW] :: deluge, flood, inundation; (medical) washing diseased member, shower, douche; + catacumba_F_N : N ; -- [DEXIS] :: catacombs; + catadromarius_M_N : N ; -- [XDXIO] :: one who rides down a catadromus (catwalk suspended on ropes), rope-dancer; + catadromus_M_N : N ; -- [XDXEO] :: kind of catwalk suspended on ropes; (for a rope_dancer); + catadupum_N_N : N ; -- [XXXFO] :: cataracts (pl.); (specifically Nile cataracts); + cataegis_F_N : N ; -- [XSXFO] :: hurricane; violent wind storm; whirlwind; + catafracta_M_N : N ; -- [XWXEO] :: coat of mail; chain mail clad soldier; + catafractarius_A : A ; -- [XWXIO] :: wearing mail, armored; + catafractarius_M_N : N ; -- [XWXIO] :: mail-clad/armored soldier; + catafractatus_A : A ; -- [XWXIO] :: wearing/equipped with mail armor, armored; + catafractes_M_N : N ; -- [XWXEO] :: coat of mail; chain mail clad soldier; + catafractus_A : A ; -- [XWXEO] :: clad in mail armor; equiped with mail; armored; + catafractus_M_N : N ; -- [XWXEO] :: soldier clad in mail armor; + catagraphum_N_N : N ; -- [XXXNO] :: three-quarter face portrait; profile portraits (pl.), side views (L+S); + catagraphus_A : A ; -- [XXXEO] :: painted, colored, depicted; figured (material); + catagusa_F_N : N ; -- [XXXNO] :: name of a statue; (Ceres bring Prosperine to Pluto L+S); + catalecticos_A : A ; -- [XPXFO] :: having incomplete final foot (of meter); forming such a foot (of syllable); + catalecticus_A : A ; -- [XPXFO] :: having incomplete final foot (of meter); forming such a foot (of syllable); + catalectus_A : A ; -- [XPXFS] :: having incomplete final foot (of meter); forming such a foot (of syllable); + catalepsis_F_N : N ; -- [DBXFS] :: catalepsy, seizure, sudden attack of sickness; + catalepticus_A : A ; -- [DBXFS] :: cataleptic; subject to seizures/sudden attacks of sickness; + catalexis_F_N : N ; -- [XPXFO] :: loss of a syllable in a final metrical foot; + catallum_N_N : N ; -- [FLXFJ] :: chattel; + catalogus_M_N : N ; -- [DXXCS] :: enumeration, list of names; catalog; + catamenia_F_N : N ; -- [GBXEK] :: menstruation; catampo_F_N : N ; -- [XXXFO] :: kind of play/sport/game; - catampo_M_N : N ; - catanance_F_N : N ; - cataphagas_M_N : N ; + catampo_M_N : N ; -- [XXXFO] :: kind of play/sport/game; + catanance_F_N : N ; -- [XAXNO] :: kind of vetch used for love charms; + cataphagas_M_N : N ; -- [XXXFO] :: glutton; gourmand; cataphasis_1_N : N ; -- [DXXES] :: affirmation; - cataphasis_2_N : N ; - cataphracta_M_N : N ; - cataphractarius_A : A ; - cataphractarius_M_N : N ; - cataphractes_M_N : N ; - cataphractus_A : A ; - catapirateria_F_N : N ; - catapirates_M_N : N ; - cataplasma_N_N : N ; - cataplasmo_V2 : V2 ; - cataplasmus_M_N : N ; - cataplectatio_F_N : N ; - cataplexis_F_N : N ; - cataplus_M_N : N ; - catapotium_N_N : N ; - catapulta_F_N : N ; - catapultarius_A : A ; - cataracta_F_N : N ; - cataractes_M_N : N ; - cataractria_F_N : N ; - catarhactes_M_N : N ; - catarracta_F_N : N ; - catarractes_M_N : N ; - catarrhactes_M_N : N ; - catarrhus_M_N : N ; - catasceua_F_N : N ; - catasceue_F_N : N ; - catascopiscus_M_N : N ; - catascopium_N_N : N ; - catascopus_M_N : N ; - catasta_F_N : N ; - catastalticus_A : A ; - catastatice_F_N : N ; - catastema_N_N : N ; - catastropha_F_N : N ; - catatexitechnus_A : A ; - catatonus_A : A ; - catax_A : A ; - cate_Adv : Adv ; - catechesis_F_N : N ; - catecheta_C_N : N ; - catechisatio_F_N : N ; - catechismus_M_N : N ; - catechisso_V2 : V2 ; - catechista_C_N : N ; - catechista_M_N : N ; - catechisticus_A : A ; - catechiticus_A : A ; - catechizo_V2 : V2 ; - catechumatus_M_N : N ; - catechumena_F_N : N ; - catechumenatus_M_N : N ; - catechumenus_M_N : N ; - catecizo_V2 : V2 ; - categoria_F_N : N ; - categoricus_A : A ; - cateia_F_N : N ; - catela_F_N : N ; - catella_F_N : N ; - catellus_M_N : N ; - catena_F_N : N ; - catenarius_A : A ; - catenatio_F_N : N ; - catenatus_A : A ; - cateno_V2 : V2 ; - catenula_F_N : N ; - caterva_F_N : N ; - catervarius_A : A ; - catervatim_Adv : Adv ; - catharmos_M_N : N ; - catharticum_N_N : N ; - cathecuminus_M_N : N ; - cathedra_F_N : N ; - cathedralicius_A : A ; - cathedralis_A : A ; - cathedrarius_A : A ; - cathedraticum_N_N : N ; - cathedratus_A : A ; - catheter_M_N : N ; - catheterismus_M_N : N ; - cathetos_A : A ; - cathetus_A : A ; - cathetus_F_N : N ; - catholice_Adv : Adv ; - catholicitas_F_N : N ; - catholicum_N_N : N ; - catholicus_A : A ; - catholicus_C_N : N ; - cathurnus_M_N : N ; - catillamen_N_N : N ; - catillatio_F_N : N ; - catillo_M_N : N ; - catillo_V : V ; - catillum_N_N : N ; - catillus_M_N : N ; - catinulus_M_N : N ; - catinum_N_N : N ; - catinus_M_N : N ; - catlaster_M_N : N ; - catlitio_F_N : N ; - catlutio_F_N : N ; - catoblepas_M_N : N ; - catocha_F_N : N ; - catochitis_F_N : N ; - catoecicus_A : A ; - catomidio_V2 : V2 ; - catomun_Adv : Adv ; - catomus_M_N : N ; - catonium_N_N : N ; - catoptritis_F_N : N ; - catorchites_A : A ; - catta_F_N : N ; - cattus_M_N : N ; - catula_F_N : N ; - catularius_A : A ; - catulaster_M_N : N ; - catulina_F_N : N ; - catulinus_A : A ; - catulio_V : V ; - catuloticus_A : A ; - catulus_M_N : N ; - catus_A : A ; - catus_M_N : N ; - caucalis_F_N : N ; - caucula_F_N : N ; - cauculator_M_N : N ; - cauculus_M_N : N ; - caucus_M_N : N ; - cauda_F_N : N ; - caudatarius_M_N : N ; - caudecus_A : A ; - caudeus_A : A ; - caudex_M_N : N ; - caudica_F_N : N ; - caudicalis_A : A ; - caudicarius_A : A ; - caudicarius_M_N : N ; - cauitio_F_N : N ; - caula_F_N : N ; - caulator_M_N : N ; - cauletum_N_N : N ; - caulias_M_N : N ; - cauliculatus_A : A ; - cauliculus_M_N : N ; - cauliflorus_A : A ; - caulis_M_N : N ; - caulla_F_N : N ; - caulodes_A : A ; - cauma_N_N : N ; - caupo_M_N : N ; - caupona_F_N : N ; - cauponaria_F_N : N ; - cauponarius_M_N : N ; - cauponium_N_N : N ; - cauponius_A : A ; - cauponor_V : V ; - cauponula_F_N : N ; - caupulus_M_N : N ; - cauricrepus_A : A ; - caurinus_A : A ; - caurio_V : V ; - caurus_M_N : N ; - causa_F_N : N ; - causa_Gen_Prep : Prep ; - causabundus_A : A ; - causalis_A : A ; - causalitas_F_N : N ; - causaliter_Adv : Adv ; - causarie_Adv : Adv ; - causarius_A : A ; - causarius_M_N : N ; - causate_Adv : Adv ; - causatio_F_N : N ; - causativus_A : A ; - causea_F_N : N ; - causidica_F_N : N ; - causidicalis_A : A ; - causidicatio_F_N : N ; - causidicatus_M_N : N ; - causidicus_M_N : N ; - causificor_V : V ; - causimus_A : A ; - causo_V2 : V2 ; - causodes_A : A ; - causor_V : V ; - caussa_F_N : N ; - caussa_Gen_Prep : Prep ; - caussidicus_M_N : N ; - caussor_V : V ; - caustice_F_N : N ; - causticum_N_N : N ; - causticus_A : A ; - causula_F_N : N ; - caute_Adv : Adv ; - cautela_F_N : N ; - cauter_M_N : N ; - cauterio_V2 : V2 ; - cauterium_N_N : N ; - cauterizo_V2 : V2 ; - cauteroma_N_N : N ; - cautes_F_N : N ; - cautim_Adv : Adv ; - cautio_F_N : N ; - cautionalis_A : A ; - cautione_Adv : Adv ; - cautis_F_N : N ; - cauto_Adv : Adv ; - cautor_M_N : N ; - cautroma_N_N : N ; - cautulus_A : A ; - cautum_N_N : N ; - cautus_A : A ; - cava_F_N : N ; - cavaedium_N_N : N ; - cavamen_N_N : N ; - cavannus_M_N : N ; - cavaticus_A : A ; - cavatio_F_N : N ; - cavator_M_N : N ; - cavatura_F_N : N ; - cavatus_A : A ; - cavea_F_N : N ; - cavealis_A : A ; - caveatus_A : A ; - cavefacio_V2 : V2 ; - cavefio_V : V ; - caveo_V : V ; - caverna_F_N : N ; - cavernatim_Adv : Adv ; - caverno_V2 : V2 ; - cavernosus_A : A ; - cavernula_F_N : N ; - cavia_F_N : N ; - caviaris_A : A ; - caviarum_N_N : N ; - cavilla_F_N : N ; - cavillabundus_A : A ; - cavillatio_F_N : N ; - cavillator_M_N : N ; - cavillatrix_F_N : N ; - cavillatus_M_N : N ; - cavillor_V : V ; - cavillosus_A : A ; - cavillum_N_N : N ; - cavillus_M_N : N ; - cavo_V2 : V2 ; - cavositas_F_N : N ; - cavum_N_N : N ; - cavus_A : A ; - cavus_M_N : N ; - cedens_A : A ; - cedenter_Adv : Adv ; - cedo_V2 : V2 ; - cedrelate_F_N : N ; - cedreus_A : A ; - cedria_F_N : N ; - cedrinus_A : A ; + cataphasis_2_N : N ; -- [DXXES] :: affirmation; + cataphracta_M_N : N ; -- [XWXEO] :: coat of mail; chain mail clad soldier; + cataphractarius_A : A ; -- [XWXIO] :: armored; wearing mail; + cataphractarius_M_N : N ; -- [XWXIO] :: armored soldier, soldier clad in mail; + cataphractes_M_N : N ; -- [XWXEO] :: coat of mail; chain mail clad soldier; + cataphractus_A : A ; -- [XWXDO] :: armored; clad in mail; B:blinded; + catapirateria_F_N : N ; -- [XWXEO] :: sounding-line/lead; + catapirates_M_N : N ; -- [XWXFO] :: sounding-line; (gender contrary to rule OLD); + cataplasma_N_N : N ; -- [XBXDO] :: poultice; plaster; + cataplasmo_V2 : V2 ; -- [DBXDS] :: apply a poultice/plaster (to); + cataplasmus_M_N : N ; -- [XBXCS] :: poultice; plaster; + cataplectatio_F_N : N ; -- [EXXFP] :: consternation; terror (Vulgate Sirach 21:4); + cataplexis_F_N : N ; -- [XXXFO] :: object of admiration; + cataplus_M_N : N ; -- [XWXEO] :: action of putting/getting into port; ship/fleet that comes to land; + catapotium_N_N : N ; -- [XBXEO] :: pill (medicine); (that which is swallowed); + catapulta_F_N : N ; -- [XWXCO] :: catapult, an engine which shot large arrow/bolt/missile; missile itself (L+S); + catapultarius_A : A ; -- [XWXFO] :: of/connected with/thrown by a catapult (engine which shot large arrows/bolts); + cataracta_F_N : N ; -- [XXXCO] :: cataract/rapid; waterfall; sluice, watergate; portcullis, drawbridge; sea bird; + cataractes_M_N : N ; -- [XXXCO] :: cataract/rapid; waterfall; sluice, watergate; portcullis, drawbridge; sea bird; + cataractria_F_N : N ; -- [BXXFO] :: fictitious condiment/spice; (coined by Plautus L+S); + catarhactes_M_N : N ; -- [XXXCO] :: cataract/rapid; waterfall; sluice, watergate; portcullis, drawbridge; sea bird; + catarracta_F_N : N ; -- [XXXCO] :: cataract/rapid; waterfall; sluice, watergate; portcullis, drawbridge; sea bird; + catarractes_M_N : N ; -- [XXXCO] :: cataract/rapid; waterfall; sluice, watergate; portcullis, drawbridge; sea bird; + catarrhactes_M_N : N ; -- [XXXCO] :: cataract/rapid; waterfall; sluice, watergate; portcullis, drawbridge; sea bird; + catarrhus_M_N : N ; -- [DBXES] :: cold, catarrh, rheum, flu; flowing down, runny nose, flow of mucus with a cold; + catasceua_F_N : N ; -- [XGXFO] :: constructive argument; confirmation of an assumption (L+S); + catasceue_F_N : N ; -- [XGXET] :: constructive argument; confirmation of an assumption (L+S); + catascopiscus_M_N : N ; -- [XWXIO] :: light vessel for reconnoitering/spying/lookout; (navigium speculatorium); + catascopium_N_N : N ; -- [XWXFO] :: light vessel for reconnoitering; + catascopus_M_N : N ; -- [XWXFO] :: light vessel for reconnoitering; + catasta_F_N : N ; -- [DXXCS] :: |scaffold for burning martyrs/heretics/criminals; stage for delivering lectures; + catastalticus_A : A ; -- [DBXFS] :: restraining, checking (medical); + catastatice_F_N : N ; -- [DAXFS] :: plant; (pure Latin scelerata); + catastema_N_N : N ; -- [DSXFS] :: position/situation/condition (of a star); + catastropha_F_N : N ; -- [XDXFO] :: sensational act, coup de theatre; turning point of an action/catastrophe (L+S); + catatexitechnus_A : A ; -- [XXXNO] :: that wastes his art; + catatonus_A : A ; -- [XWXFO] :: low strung (referring to length of tightened skeins of a catapult); depressed; + catax_A : A ; -- [XBXEO] :: lame; limping; + cate_Adv : Adv ; -- [XXXEO] :: well, sagaciously, wisely, intelligently; clearly; slyly, craftily, artfully; + catechesis_F_N : N ; -- [DEXES] :: religious instruction; catechetical instruction/interrogation; + catecheta_C_N : N ; -- [FEXEE] :: catechism teacher, catechist; + catechisatio_F_N : N ; -- [FEXFE] :: questioning; catechizing; + catechismus_M_N : N ; -- [DEXCS] :: catechism, book of elementary Christian instruction; + catechisso_V2 : V2 ; -- [DEXES] :: instruct in religion, teach by question and answer, catechize; + catechista_C_N : N ; -- [FEXEE] :: catechism teacher, catechist; + catechista_M_N : N ; -- [DEXFS] :: catechist, religious teacher; + catechisticus_A : A ; -- [FEXFE] :: of catechism; pertaining to elementary Christian instruction; + catechiticus_A : A ; -- [FEXFE] :: catechetical, of catechism; pertaining to elementary Christian instruction; + catechizo_V2 : V2 ; -- [DEXES] :: instruct in religion, teach by question and answer, catechize; + catechumatus_M_N : N ; -- [EEXFE] :: catechumenate, time of instruction before baptism; + catechumena_F_N : N ; -- [DEXES] :: catechumen, one receiving elementary religious instruction before baptism; + catechumenatus_M_N : N ; -- [EEXFE] :: catechumenate, time of instruction before baptism; + catechumenus_M_N : N ; -- [DEXES] :: catechumen, one receiving elementary religious instruction before baptism; + catecizo_V2 : V2 ; -- [EEXEW] :: instruct in religion, teach by question and answer, catechize; + categoria_F_N : N ; -- [DLXES] :: accusation; predicament; category/class of predicables (logic); + categoricus_A : A ; -- [DLXES] :: relating to a category, categorical; + cateia_F_N : N ; -- [DWXCS] :: kind of spear; (probably barbed); + catela_F_N : N ; -- [XWFDO] :: curved missile weapon; boomerang?; + catella_F_N : N ; -- [XAXCO] :: puppy (female), young/little bitch; lap dog; little/light/ornamental chain; + catellus_M_N : N ; -- [XAXCO] :: little/small/young dog, puppy; (term of endearment); little/light chain; + catena_F_N : N ; -- [XXXBO] :: chain; series; fetter, bond, restraint; imprisonment, captivity; (chain mail); + catenarius_A : A ; -- [XAXEO] :: chained, on a chain, fastened on a chain (e.g., dog); of/pertaining to a chain; + catenatio_F_N : N ; -- [XXXEO] :: connection, joining; band, clamp, clincher, pin (L+S); + catenatus_A : A ; -- [XXXCO] :: chained, fettered; fixed/secured/attached by chain; arranged in a chain/series; + cateno_V2 : V2 ; -- [XXXFO] :: chain/bind/tie/shackle together; secure with bonds/chains/fetters; + catenula_F_N : N ; -- [XXXFS] :: little/small/light/ornamental chain; + caterva_F_N : N ; -- [XXXBO] :: crowd/cluster; troop, company, band of men/followers/actors; flock/herd/swarm; + catervarius_A : A ; -- [XXXEO] :: of/pertaining to/belonging to troop/company/band; in bands; + catervatim_Adv : Adv ; -- [XXXCO] :: in troops/bands/large numbers; in (disordered) masses; in herds/flocks/swarms; + catharmos_M_N : N ; -- [BEXFO] :: purification rites (pl.); title of poem by Empedocles; + catharticum_N_N : N ; -- [DBXFS] :: cathartic, purgative; means for purifying; purification; + cathecuminus_M_N : N ; -- [FEXEF] :: catechumen, one receiving religious instruction; + cathedra_F_N : N ; -- [EEXCF] :: |bishop's chair/throne/office; professor/teacher's chair/office, professorship; + cathedralicius_A : A ; -- [DXXFS] :: of/pertaining to an arm/easy/cushioned/(woman's) chair; effeminate; + cathedralis_A : A ; -- [EEXEE] :: of/pertaining to an bishop's see or cathedral; [~ Ecclesia => cathedral]; + cathedrarius_A : A ; -- [XXXEO] :: fitted as/carrying a cathedra (arm/easy/sedan chair); having professor's chair; + cathedraticum_N_N : N ; -- [EEXFE] :: bishop's tax, cathedraticum, annual tax paid to bishop; + cathedratus_A : A ; -- [XXXFO] :: fitted with cushioned seats (as a cathedra - arm/easy/cushioned chair); + catheter_M_N : N ; -- [DBXFS] :: catheter, instrument for drawing urine; + catheterismus_M_N : N ; -- [DBXFS] :: application of a catheter, drawing urine, relieving pressure on bladder; + cathetos_A : A ; -- [XSXEO] :: perpendicular; + cathetus_A : A ; -- [XSXEO] :: perpendicular; + cathetus_F_N : N ; -- [XSXES] :: perpendicular line; + catholice_Adv : Adv ; -- [DXXES] :: universally; in Catholic way, according to Catholic rite (Def); + catholicitas_F_N : N ; -- [FEXFE] :: catholicity, Catholic quality/character + catholicum_N_N : N ; -- [XGXEO] :: general principle; universal truth; universe (pl.); general properties; + catholicus_A : A ; -- [DEXCS] :: catholic; universal; (Roman) Catholic, orthodox; + catholicus_C_N : N ; -- [EEXCE] :: Catholic, one baptized and fully in communion with Catholic Church; + cathurnus_M_N : N ; -- [FEXFE] :: pride; haughtiness; majesty; + catillamen_N_N : N ; -- [DXXFS] :: junket, curds and cream, cream pudding; sweet dish, sweetmeat; + catillatio_F_N : N ; -- [XXXFO] :: licking the plate; greed; extortion; plundering of friendly provinces (L+S); + catillo_M_N : N ; -- [XXXEO] :: licker of plates, one who cleans his plate, glutton; edible fish (lupus?); + catillo_V : V ; -- [XXXFO] :: lick plates; + catillum_N_N : N ; -- [XXXCO] :: bowl, dish; ornament on sword sheath (L+S); upper millstone; + catillus_M_N : N ; -- [XXXCO] :: bowl, dish; ornament on sword sheath (L+S); upper millstone; + catinulus_M_N : N ; -- [XXXFO] :: small bowl/dish/plate; + catinum_N_N : N ; -- [XXXFO] :: large bowl/plate; main chamber in forepump; smelting crucible; hollow in rock; + catinus_M_N : N ; -- [XXXFO] :: large bowl/plate; main chamber in forepump; smelting crucible; hollow in rock; + catlaster_M_N : N ; -- [XXXFO] :: young man; boy, lad, stripling; + catlitio_F_N : N ; -- [XXXEO] :: being in heat; desire to mate; + catlutio_F_N : N ; -- [XXXES] :: being in heat; desire to mate; + catoblepas_M_N : N ; -- [XAANO] :: wild animal in Ethiopia; species of buffalo?/gnu? (L+S); + catocha_F_N : N ; -- [DBXFS] :: complete stupor; catalepsy; + catochitis_F_N : N ; -- [XXXNS] :: unknown precious stone (said to have an adhesive surface) (from Corsica L+S); + catoecicus_A : A ; -- [XWXFO] :: assigned to military colonists; + catomidio_V2 : V2 ; -- [XXXES] :: lay one over shoulders of another and flog him; strike on shoulders; + catomun_Adv : Adv ; -- [XXXFO] :: over shoulders (for flogging); + catomus_M_N : N ; -- [DBXFS] :: shoulders; (for flogging); + catonium_N_N : N ; -- [XXXCS] :: Lower World; + catoptritis_F_N : N ; -- [XXXNO] :: unknown precious stone; (found in Cappadocia L+S); + catorchites_A : A ; -- [XAXNS] :: fig (wine); [catorchites vinum => wine made of figs]; + catta_F_N : N ; -- [XAXFO] :: edible species of bird; unknown species of animal (L+S); + cattus_M_N : N ; -- [EABCM] :: cat; wild cat; kind of trout; siege engine; + catula_F_N : N ; -- [XAXEO] :: young/small bitch; + catularius_A : A ; -- [XAXFO] :: of dogs; [~ Porta => Roman gate where dogs were sacrificed]; + catulaster_M_N : N ; -- [XXXFS] :: young man; boy, lad, stripling; + catulina_F_N : N ; -- [XAXNO] :: dog meat/flesh; + catulinus_A : A ; -- [XAXNO] :: of/belonging to (young) dogs; + catulio_V : V ; -- [XAXEO] :: be in heat, desire to mate; (e.g., a bitch); + catuloticus_A : A ; -- [DXXFS] :: good for heating over; + catulus_M_N : N ; -- [XAXCO] :: young dog, puppy, whelp; dog (any age); young of any animal, pup/cub; fetter; + catus_A : A ; -- [XXXCO] :: knowing, clever, shrewd, wise, prudent, circumspect; shrill/clear (sound); + catus_M_N : N ; -- [EABCM] :: cat; wild cat; kind of trout; siege engine; male cat (L+S); + caucalis_F_N : N ; -- [XAXNO] :: umbelliferous plant; + caucula_F_N : N ; -- [DXXES] :: small dish; + cauculator_M_N : N ; -- [DSXES] :: calculator, reckoner; + cauculus_M_N : N ; -- [XXXEO] :: pebble; (bladder) stone; piece for reckoning/voting/game; calculation; + caucus_M_N : N ; -- [DXXFS] :: drinking vessel; cruet (Ecc); + cauda_F_N : N ; -- [XAXBO] :: tail (animal); extreme part/tail of anything; penis; train/edge/trail (garment); + caudatarius_M_N : N ; -- [FEXFE] :: trainbearer; attendant who carries train (of sovereign/other); + caudecus_A : A ; -- [DAXFS] :: wooden, made of wood; + caudeus_A : A ; -- [XAXFS] :: wooden, made of wood; + caudex_M_N : N ; -- [XXXBO] :: trunk of tree; piece/hunk of wood; blockhead; (bound) book; note/account book; + caudica_F_N : N ; -- [XWXFO] :: kind of barge/lighter; dugout canoe (Cal); + caudicalis_A : A ; -- [XAXFO] :: pertaining to/dealing with tree-trunks/logs; employment of log-splitting (L+S); + caudicarius_A : A ; -- [XWXCO] :: kind of barge/lighter (w/navis); + caudicarius_M_N : N ; -- [XWXEO] :: bargeman, lighterman; (esp. those who brought grain from Ostia to Rome (L+S)); + cauitio_F_N : N ; -- [BXXBS] :: bail/pledge/security, undertaking, guarantee; caution/wariness; circumspection; + caula_F_N : N ; -- [XXXCO] :: railing (pl.), lattice barrier; holes, pores, apertures; fold, sheepfold (Ecc); + caulator_M_N : N ; -- [XXXCS] :: jester, banterer; quibbler, caviler, sophist, captious critic; + cauletum_N_N : N ; -- [GAXET] :: cabbage-garden; (Erasmus); + caulias_M_N : N ; -- [XAXNO] :: thing taken/derived form stalk; (as opposed to rhizias - from root); + cauliculatus_A : A ; -- [DAXFS] :: having/furnished with a stalk; + cauliculus_M_N : N ; -- [XAXCO] :: stalk/stem (small); small cabbage, cabbage sprout; pillar like a stalk/shoot; + cauliflorus_A : A ; -- [GAXEK] :: cauliflower-like; + caulis_M_N : N ; -- [XAXCO] :: stalk/stem; stem of a cabbage/lettuce/etc; cabbage/lettuce; quill; penis; + caulla_F_N : N ; -- [XXXFO] :: railing (pl.), lattice barrier; holes, pores, apertures; + caulodes_A : A ; -- [XAXNO] :: stalk-like; [~ brassica => kind of cabbage with large leaves]; + cauma_N_N : N ; -- [DXXFS] :: heat; + caupo_M_N : N ; -- [DXXCO] :: shopkeeper, salesman, huckster; innkeeper, keeper of a tavern; + caupona_F_N : N ; -- [GXXEK] :: restaurant; + cauponaria_F_N : N ; -- [XXXFS] :: female shopkeeper; female innkeeper (Erasmus); + cauponarius_M_N : N ; -- [XXXFS] :: shopkeeper; + cauponium_N_N : N ; -- [XXXFO] :: tavern; tavern/inn/shop furniture/fixtures (L+S); + cauponius_A : A ; -- [XXXCO] :: of/belonging to shopkeeper/innkeeper/inn; [~ puer => shop/tavern boy, waiter]; + cauponor_V : V ; -- [XXXFO] :: traffic/trade in, sell; + cauponula_F_N : N ; -- [XXXFO] :: small/mean tavern/inn; + caupulus_M_N : N ; -- [XWXFO] :: kind of light boat?; + cauricrepus_A : A ; -- [DSXFS] :: blown through by north-west wind (Caurus); + caurinus_A : A ; -- [XSXFO] :: of/belonging to north-west wind (Caurus); + caurio_V : V ; -- [XAXFS] :: gurr; (natural sound of rutting panther); + caurus_M_N : N ; -- [XSXCO] :: north-west wind; + causa_F_N : N ; -- [FXXDB] :: ||thing(s); [sine causa => in vain (Vulgate)]; + causa_Gen_Prep : Prep ; -- [XXXAO] :: for sake/purpose of (preceded by GEN.), on account/behalf of, with a view to; + causabundus_A : A ; -- [FXXFV] :: blaming, censuring, accusing, reproaching, condemning; finding fault with; + causalis_A : A ; -- [DLXES] :: pertaining to a cause, causal; + causalitas_F_N : N ; -- [FXXES] :: causality; + causaliter_Adv : Adv ; -- [DLXFS] :: causally; + causarie_Adv : Adv ; -- [DWXFS] :: on account of sickness; [causarie missus est => invalided out of army]; + causarius_A : A ; -- [XBXCO] :: sick, ill, diseased, unhealthy; [misso ~ => army discharge on health grounds]; + causarius_M_N : N ; -- [XWXCO] :: soldier discharged from army on health/other grounds, invalid; the_sick (pl.); + causate_Adv : Adv ; -- [XXXNO] :: with good reason; with better reason; with best reasons?; + causatio_F_N : N ; -- [XLXFO] :: plea, excuse; disease (L+S); pretext; apology; + causativus_A : A ; -- [DGXES] :: |accusative (case) (w/causus); first (person) (w/persona); + causea_F_N : N ; -- [XXHEO] :: Macedonian type of hat; (white sun hat worn by Roman poor L+S); shelter; + causidica_F_N : N ; -- [DLXFS] :: office of an advocate/lawyer; + causidicalis_A : A ; -- [XLXFO] :: suggestive of/resembling that of law-courts; of/pertaining to an advocate; + causidicatio_F_N : N ; -- [XLXFO] :: pleading of a case; speech of an advocate/lawyer/barrister; + causidicatus_M_N : N ; -- [DLXFS] :: forensic oratory, pleading/speech of a lawyer; + causidicus_M_N : N ; -- [XLXCO] :: advocate, barrister; pleader of causes; + causificor_V : V ; -- [XGXEO] :: allege/offer a reason, put forward a pretext; pretend; + causimus_A : A ; -- [XXXFO] :: used for burning; + causo_V2 : V2 ; -- [FXXEE] :: cause; + causodes_A : A ; -- [XXXFO] :: characterized by high temperature; burning; + causor_V : V ; -- [XLXCO] :: allege an excuse/reason, object; excuse oneself; plead a cause, bring action; + caussa_F_N : N ; -- [XXXAO] :: |occasion, subject; plea, position; lawsuit, case, trial; proviso/stipulation; + caussa_Gen_Prep : Prep ; -- [XXXAO] :: for the sake/purpose of (preceded by GEN), on account/behalf of, with view to; + caussidicus_M_N : N ; -- [XLXCS] :: advocate, barrister; pleader of causes; + caussor_V : V ; -- [XLXCS] :: allege an excuse/reason, object; excuse oneself; plead a cause, bring action; + caustice_F_N : N ; -- [DAXFS] :: caustic plant; (pure Latin scelerata); + causticum_N_N : N ; -- [XBXNO] :: caustic/blistering preparation/medicament; + causticus_A : A ; -- [XSXNO] :: caustic, corrosive, burning; [~ spuma => lye with which Germans colored hair]; + causula_F_N : N ; -- [XLXEO] :: speech/case of a party in a petty lawsuit; petty ground/occasion for action; + caute_Adv : Adv ; -- [XXXCO] :: cautiously; with security/precautions, without risk; circumspectly, carefully; + cautela_F_N : N ; -- [XXXEO] :: caution, precaution, care, carefulness; security, surety; + cauter_M_N : N ; -- [DAXES] :: branding iron; wound produced by burning, brand; + cauterio_V2 : V2 ; -- [DXXCS] :: burn/mark with a branding iron, brand; + cauterium_N_N : N ; -- [XBXEO] :: cauterizing/branding iron, cautery; (used in encaustic/burning-in painting); + cauterizo_V2 : V2 ; -- [DBXFS] :: cauterize, burn with a hot iron; mark with a branding iron, brand; + cauteroma_N_N : N ; -- [DXXFS] :: brand, mark produced by a hot iron; + cautes_F_N : N ; -- [XXXBO] :: rough pointed/detached rock, loose stone; rocks (pl.), cliff, crag; reef; + cautim_Adv : Adv ; -- [XXXEO] :: cautiously, warily; prudently, with security; + cautio_F_N : N ; -- [XXXBO] :: |taking of precautions/care; precaution; stipulation, proviso, exception; + cautionalis_A : A ; -- [XLXFO] :: relation to a legal cautio (security, bond, guarantee, pledge); + cautione_Adv : Adv ; -- [FXXEE] :: cautiously, warily; prudently, with caution/security; + cautis_F_N : N ; -- [XXXFS] :: rough pointed/detached rock, loose stone; rocks (pl.), cliff, crag; reef; + cauto_Adv : Adv ; -- [FXXEE] :: cautiously; with security/precautions, without risk; circumspectly, carefully; + cautor_M_N : N ; -- [XXXEO] :: one who takes precautions/who is wary/on guard; one who stands bail/surety; + cautroma_N_N : N ; -- [DXXFS] :: brand, mark produced by a hot iron; + cautulus_A : A ; -- [DXXFS] :: rather safe; + cautum_N_N : N ; -- [DWXFS] :: provisions (pl.) (of a law); concern (Ecc); + cautus_A : A ; -- [XXXBO] :: cautious/careful; circumspect, prudent; wary, on guard; safe/secure; made safe; + cava_F_N : N ; -- [XXXFO] :: hollow; cage (Ecc); + cavaedium_N_N : N ; -- [XXXFO] :: inner court of a Roman house; (avus aedium); + cavamen_N_N : N ; -- [DXXES] :: cavern, hollow; hollowing out; + cavannus_M_N : N ; -- [DAXFS] :: nightowl; + cavaticus_A : A ; -- [XXXNO] :: of/belonging to/born in/living in caves; + cavatio_F_N : N ; -- [XXXFO] :: hollow shape, cavity; cavern, hollow; + cavator_M_N : N ; -- [XTXEO] :: excavator, one who hollows/digs out; + cavatura_F_N : N ; -- [DXXES] :: cavity, hollow; + cavatus_A : A ; -- [XXXCS] :: hollow, hollow in form; hollowed out, excavated; forming a cave; + cavea_F_N : N ; -- [XXXBO] :: |cage/coop/stall/beehive/bird-cage; fence, enclosure; basket/crate; + cavealis_A : A ; -- [DXXFS] :: kept in a cave/cellar; + caveatus_A : A ; -- [XXXNO] :: shut in, caged. cooped up; arranged like seats in a theater; + cavefacio_V2 : V2 ; -- [DXXIS] :: take precautions/defensive action, beware, avoid; give/get surety; stipulate; + cavefio_V : V ; -- [DXXIS] :: be avoided; be stipulated; (cavefacio PASS); + caveo_V : V ; -- [XXXAO] :: beware, avoid, take precautions/defensive action; give/get surety; stipulate; + caverna_F_N : N ; -- [XXXBO] :: |aperture; orifice (body); interior (Trojan horse); celestial sphere; "depths"; + cavernatim_Adv : Adv ; -- [DXXFS] :: through caverns; + caverno_V2 : V2 ; -- [DXXFS] :: make hollow; + cavernosus_A : A ; -- [XXXNO] :: having hollows or depressions; full of cavities/holes; + cavernula_F_N : N ; -- [XXXNO] :: small hollow/cavity; + cavia_F_N : N ; -- [XAXFS] :: excrementary canal of animals; intestines; + caviaris_A : A ; -- [XEXFS] :: of/using intestines; [caviares hostiae => sacrifice victims]; + caviarum_N_N : N ; -- [GXXEK] :: caviar; + cavilla_F_N : N ; -- [XXXFO] :: jesting, banter, raillery, scoffing; + cavillabundus_A : A ; -- [XXXFS] :: seeking for jesting/raillery/scoffing; + cavillatio_F_N : N ; -- [XXXCO] :: raillery/banter/badinage, jeering/scoffing; sophistry, quibbling, captiousness; + cavillator_M_N : N ; -- [XXXDO] :: jester, banterer; quibbler, caviler, sophist, captious critic; + cavillatrix_F_N : N ; -- [XXXEO] :: quibbler (female), captious critic, sophist; sophistry; + cavillatus_M_N : N ; -- [XXXFO] :: raillery; banter, good-natured ridicule; + cavillor_V : V ; -- [XXXCO] :: jest, banter; make fun of, satirize, mock; use sophistry, quibble, cavil (at); + cavillosus_A : A ; -- [DXXFS] :: full of raillery/irony; + cavillum_N_N : N ; -- [XXXEO] :: jesting, banter, raillery, scoffing; + cavillus_M_N : N ; -- [XXXFO] :: jesting, banter; + cavo_V2 : V2 ; -- [XTXBO] :: hollow out, make concave/hollow; excavate; cut/pierce through; carve in relief; + cavositas_F_N : N ; -- [DXXES] :: hollow, cavity, hole; + cavum_N_N : N ; -- [XXXBO] :: hole, cavity, depression, pit, opening; cave, burrow; enclosed space; aperture; + cavus_A : A ; -- [XXXAO] :: |sunken; deep, having deep channel; tubular; having cavity inside (concealing); + cavus_M_N : N ; -- [XXXCO] :: hole, cavity, depression, pit, opening; cave, burrow; enclosed space; aperture; + cedens_A : A ; -- [XXXDO] :: unresisting/deferring/conceding/surrendering/withdrawing; yielding to touch; + cedenter_Adv : Adv ; -- [DXXFS] :: by yielding; + cedo_V2 : V2 ; -- [XXXAO] :: |grant, concede, yield, submit; fall back/to; happen/result; start (period); + cedrelate_F_N : N ; -- [XAQNO] :: Syrian cedar (Juniperus excelia); + cedreus_A : A ; -- [XAXFS] :: of cedar, cedar-; obtained from cedar; + cedria_F_N : N ; -- [XAQEO] :: gum/resin of Syrian cedar (Juniperus excelia), cedar resin/pitch/tar; + cedrinus_A : A ; -- [XAXEO] :: of cedar/cedar-wood, cedar-; obtained from cedar; 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 ; - cedrium_N_N : N ; - cedrostis_F_N : N ; - cedrus_F_N : N ; - celamentum_N_N : N ; - celandum_N_N : N ; - celate_Adv : Adv ; - celatim_Adv : Adv ; - celator_M_N : N ; - celatum_N_N : N ; - celatura_F_N : N ; - celeber_A : A ; - celeberrime_Adv : Adv ; - celebrabilis_A : A ; - celebrans_M_N : N ; - celebratio_F_N : N ; - celebrator_M_N : N ; - celebratus_A : A ; - celebresco_V : V ; - celebris_A : A ; - celebritas_F_N : N ; - celebriter_Adv : Adv ; - celebro_V2 : V2 ; - celer_A : A ; - celeranter_Adv : Adv ; - celeratim_Adv : Adv ; - celere_Adv : Adv ; - celeripes_A : A ; - celeritas_F_N : N ; - celeriter_Adv : Adv ; - celeritudo_F_N : N ; - celeriuscule_Adv : Adv ; - celero_V : V ; - celes_M_N : N ; - celeste_N_N : N ; - celestis_A : A ; + cedris_2_N : N ; -- [XAXNO] :: cone of cedar tree; kind of juniper?; fruit/berry of cedar/juniper (L+S); + cedris_F_N : N ; -- [XAXNO] :: cone of cedar tree; kind of juniper?; fruit/berry of cedar/juniper (L+S); + cedrium_N_N : N ; -- [XAXEO] :: oil/wood-tar/pitch/resin obtained from cedar tree; oil of cedar; + cedrostis_F_N : N ; -- [XAXNO] :: Bryony (plant); white vine (L+S); + cedrus_F_N : N ; -- [XAXCO] :: cedar/juniper; cedar wood; cedar-oil/tar (used as preservative/medicine); + celamentum_N_N : N ; -- [EXXEM] :: secret; concealment; + celandum_N_N : N ; -- [EBBEM] :: privy parts (pl.), privates; + celate_Adv : Adv ; -- [DXXFS] :: secretly; privately; + celatim_Adv : Adv ; -- [XXXFO] :: secretly; privately; + celator_M_N : N ; -- [XXXFO] :: one who conceals/keeps secrets; concealer/hider; + celatum_N_N : N ; -- [XXXFS] :: secret; + celatura_F_N : N ; -- [EEXFE] :: canopy over altar; + celeber_A : A ; -- [XXXAO] :: |oft repeated, frequent; busy, crowded, much used/frequented, populous; festive; + celeberrime_Adv : Adv ; -- [XXXFO] :: most/very frequently; + celebrabilis_A : A ; -- [DXXES] :: commendable; + celebrans_M_N : N ; -- [EEXFE] :: celebrant, officiating minister; + celebratio_F_N : N ; -- [XXXCO] :: celebrating a festival/mass; throng/crowd, audience/gathering; common use/vogue; + celebrator_M_N : N ; -- [XXXFO] :: one who celebrates/extols; + celebratus_A : A ; -- [XXXCO] :: crowded, much frequented, festive; current, popular; celebrated/distinguished; + celebresco_V : V ; -- [XXXFO] :: become famous/renowned/celebrated; + celebris_A : A ; -- [XXXCO] :: |oft repeated, frequent; busy, crowded, much used/frequented, populous; festive; + celebritas_F_N : N ; -- [FXXEE] :: |celebration; feast; + celebriter_Adv : Adv ; -- [EEBEM] :: solemnly; ceremonially; + celebro_V2 : V2 ; -- [XXXAO] :: celebrate/perform; frequent; honor/glorify; publicize/advertise; discuss/bandy; + celer_A : A ; -- [XXXAO] :: swift, quick, agile, rapid, speedy, fast; rash, hasty, hurried; lively; early; + celeranter_Adv : Adv ; -- [XXXFO] :: quickly, rapidly, speedily; with speed; in haste; + celeratim_Adv : Adv ; -- [XXXFO] :: quickly, rapidly, speedily; + celere_Adv : Adv ; -- [XXXDO] :: quickly/rapidly/speedily; hastily; soon/at an early moment; in a short period; + celeripes_A : A ; -- [XXXFO] :: swift-footed; swift of foot; + celeritas_F_N : N ; -- [XXXBO] :: speed, quickness, rapidity; speed of action, dispatch; haste; early date; + celeriter_Adv : Adv ; -- [XXXCO] :: quickly/rapidly/speedily; hastily; soon/at once/early moment; in short period; + celeritudo_F_N : N ; -- [XXXFO] :: speed; swiftness; + celeriuscule_Adv : Adv ; -- [XXXFO] :: rather rapidly; somewhat quickly; + celero_V : V ; -- [XXXCO] :: quicken/accelerate; make haste, act quickly/be quick; hasten, hurry, do quickly; + celes_M_N : N ; -- [XWXNO] :: small/fast boat, yacht; (statue of) a race horse; + celeste_N_N : N ; -- [FSXCO] :: supernatural matter; the heavenly bodies; astronomy; + celestis_A : A ; -- [FXXBO] :: heavenly, of the heavens/sky, from heaven/sky; celestial; divine; of the Gods; celestis_F_N : N ; -- [FEXCO] :: divinity, god/goddess; god-like person; the Gods; - celestis_M_N : N ; + celestis_M_N : N ; -- [FEXCO] :: divinity, god/goddess; god-like person; the Gods; 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 ; - celeusma_N_N : N ; - celia_F_N : N ; - cella_F_N : N ; - cellararia_F_N : N ; - cellariarius_A : A ; - cellariarius_M_N : N ; - cellariensis_A : A ; - cellariolum_N_N : N ; - cellaris_A : A ; - cellarium_N_N : N ; - cellarius_A : A ; - cellarius_M_N : N ; - cellatio_F_N : N ; - celleraria_F_N : N ; - cellerarissa_F_N : N ; - cellerarius_M_N : N ; - cellerissa_F_N : N ; - cellerius_M_N : N ; - cellola_F_N : N ; - cellula_F_N : N ; - cellulanus_M_N : N ; - cellularis_A : A ; - cellulosa_F_N : N ; - celo_M_N : N ; - celo_V2 : V2 ; - celocla_F_N : N ; - celocula_F_N : N ; - celox_A : A ; - celox_F_N : N ; - celse_Adv : Adv ; - celsitudo_F_N : N ; - celsus_A : A ; - celthis_F_N : N ; - celtis_F_N : N ; - celula_F_N : N ; - celum_N_N : N ; - celuma_N_N : N ; - cementarius_M_N : N ; - cementerium_N_N : N ; - cementicium_N_N : N ; - cementicius_A : A ; - cementum_N_N : N ; - cemos_F_N : N ; - cena_F_N : N ; - cenacularia_F_N : N ; - cenacularius_A : A ; - cenacularius_M_N : N ; - cenaculatus_A : A ; - cenaculum_N_N : N ; - cenalis_A : A ; - cenaticum_N_N : N ; - cenaticus_A : A ; - cenatio_F_N : N ; - cenatiuncula_F_N : N ; - cenator_M_N : N ; - cenatorium_N_N : N ; - cenatorius_A : A ; - cenaturio_V : V ; - cenatus_A : A ; - cenchris_F_N : N ; - cenchris_M_N : N ; - cenchritis_M_N : N ; - cenchros_M_N : N ; - cenito_V : V ; - ceno_V : V ; - cenobium_N_N : N ; - cenodoxia_F_N : N ; - cenotaphium_N_N : N ; - censeo_V2 : V2 ; - censio_F_N : N ; - censitio_F_N : N ; - censitor_M_N : N ; - censitus_A : A ; - censor_M_N : N ; - censoreus_A : A ; - censorius_A : A ; - censualis_A : A ; - censualis_M_N : N ; - censum_N_N : N ; - censura_F_N : N ; - censuratus_A : A ; - census_A : A ; - census_M_N : N ; - centaureum_N_N : N ; - centauria_F_N : N ; - centaurion_N_N : N ; - centauris_F_N : N ; - centaurium_N_N : N ; - centaurus_M_N : N ; - centena_F_N : N ; - centenarium_N_N : N ; - centenarius_A : A ; - centenionalis_A : A ; - centensimo_V2 : V2 ; - centenum_N_N : N ; - centenus_A : A ; - centesima_F_N : N ; - centesimalis_A : A ; - centiceps_A : A ; - centifidus_A : A ; - centifolius_A : A ; - centigrammum_N_N : N ; - centigranius_A : A ; - centimalis_A : A ; - centimanus_A : A ; - centimeter_M_N : N ; - centimetrum_N_N : N ; - centinodius_A : A ; - centipeda_F_N : N ; - centipellio_F_N : N ; - centipes_A : A ; - centipes_M_N : N ; - centiplex_A : A ; - centiplicato_Adv : Adv ; - cento_M_N : N ; - centoculus_A : A ; - centonarius_A : A ; - centonarius_M_N : N ; - centralis_A : A ; - centralizatio_F_N : N ; - centralizatorius_A : A ; - centralizo_V : V ; - centratus_A : A ; - centricus_A : A ; - centrifugatrum_N_N : N ; - centrifugus_A : A ; - centrina_M_N : N ; - centripetus_A : A ; - centrosus_A : A ; - centrum_N_N : N ; - centumgeminus_A : A ; - centumpeda_M_N : N ; - centumplex_A : A ; - centumpondium_N_N : N ; - centumvir_M_N : N ; - centumviralis_A : A ; - centunculus_F_N : N ; - centunculus_M_N : N ; - centupeda_F_N : N ; - centuplex_A : A ; - centuplicato_Adv : Adv ; - centuplicatum_N_N : N ; - centuplicatus_A : A ; - centuplico_V2 : V2 ; - centuplum_N_N : N ; - centuplus_A : A ; - centupondium_N_N : N ; - centuria_F_N : N ; - centurialis_A : A ; - centuriatim_Adv : Adv ; - centuriatio_F_N : N ; - centuriato_Adv : Adv ; - centuriatus_A : A ; - centuriatus_M_N : N ; - centurio_M_N : N ; - centurio_V2 : V2 ; - centurionatus_M_N : N ; - centurionicus_A : A ; - centurionus_M_N : N ; - centussis_M_N : N ; - cenula_F_N : N ; - cenum_N_N : N ; - cepa_F_N : N ; - cepaea_F_N : N ; - ceparius_M_N : N ; - cepaticus_A : A ; - cepe_N_N : N ; - cepetum_N_N : N ; - cephalaea_F_N : N ; - cephalaeota_M_N : N ; - cephalaeum_N_N : N ; - cephalalgia_F_N : N ; - cephalalgicus_A : A ; - cephalargia_F_N : N ; - cephalargicus_A : A ; - cephalicus_A : A ; - cephalicus_M_N : N ; - cephalo_M_N : N ; - cephalotos_A : A ; - cephen_M_N : N ; - cephus_M_N : N ; - cepina_F_N : N ; - cepitis_F_N : N ; - cepolartitis_F_N : N ; - cepolendrum_N_N : N ; - ceponis_F_N : N ; - ceposus_A : A ; - cepotafiolum_N_N : N ; - cepotafium_N_N : N ; - cepotafius_M_N : N ; - cepotaphiolum_N_N : N ; - cepotaphium_N_N : N ; - cepotaphius_M_N : N ; - ceps_A : A ; - cepulla_F_N : N ; - cepuricus_A : A ; - cera_F_N : N ; - cerachates_M_N : N ; - cerais_F_N : N ; - ceramitis_F_N : N ; - ceraria_F_N : N ; - cerarium_N_N : N ; - cerarius_A : A ; - cerarius_M_N : N ; - ceras_N_N : N ; - cerasinus_A : A ; - cerasium_N_N : N ; - cerastes_M_N : N ; - cerasum_N_N : N ; - cerasus_F_N : N ; - ceratia_F_N : N ; - ceratias_M_N : N ; - ceratina_F_N : N ; - ceratitis_F_N : N ; - ceratium_N_N : N ; - ceratoides_A : A ; - ceratorium_N_N : N ; - ceratum_N_N : N ; - ceratura_F_N : N ; - ceratus_A : A ; - ceraules_M_N : N ; - ceraunium_N_N : N ; - ceraunius_A : A ; - ceraunus_M_N : N ; - cerceris_F_N : N ; - cercholopis_M_N : N ; - cercis_F_N : N ; - cercitis_F_N : N ; - cercius_M_N : N ; - cercolopis_M_N : N ; - cercopithecon_N_N : N ; - cercopithecus_M_N : N ; - cercops_M_N : N ; - cercurus_M_N : N ; - cercyrus_M_N : N ; - cerdo_M_N : N ; - cerea_F_N : N ; - cerebellare_N_N : N ; - cerebellum_N_N : N ; - cerebralis_A : A ; - cerebrosus_A : A ; - cerebrum_N_N : N ; - ceremonia_F_N : N ; - ceremonial_N_N : N ; - ceremonialis_A : A ; - ceremonior_V : V ; - ceremoniosus_A : A ; - ceremonium_N_N : N ; - cereolus_A : A ; - cereus_A : A ; - cereus_M_N : N ; - cerevisia_F_N : N ; - ceria_F_N : N ; - ceriaria_F_N : N ; - cerifico_V : V ; - cerimonia_F_N : N ; - cerimonial_N_N : N ; - cerimonialis_A : A ; - cerimonior_V : V ; - cerimoniosus_A : A ; - cerimonium_N_N : N ; - cerineus_A : A ; - cerintha_F_N : N ; - cerinthe_F_N : N ; - cerinthus_M_N : N ; - cerinum_N_N : N ; - cerinus_A : A ; - ceriolare_N_N : N ; - ceriolarium_N_N : N ; - ceriolarius_M_N : N ; - ceritis_F_N : N ; - cerium_N_N : N ; - cernentia_F_N : N ; - cerno_V2 : V2 ; - cernophorus_C_N : N ; - cernulo_V2 : V2 ; - cernulus_A : A ; - cernuo_V : V ; - cernuus_A : A ; - cernuus_M_N : N ; - cero_V2 : V2 ; - ceroferarium_N_N : N ; - ceroferarius_M_N : N ; - ceroma_N_N : N ; - ceromaticus_A : A ; - ceromatita_M_N : N ; - ceronia_F_N : N ; - cerosus_A : A ; - cerotum_N_N : N ; - ceroturium_N_N : N ; - cerreus_A : A ; - cerrinus_A : A ; - cerritulus_A : A ; - cerritus_A : A ; - cerro_M_N : N ; - cerrus_F_N : N ; - certabundus_A : A ; - certamen_N_N : N ; - certatim_Adv : Adv ; - certatio_F_N : N ; - certative_Adv : Adv ; - certator_M_N : N ; - certatus_M_N : N ; - certe_Adv : Adv ; - certificatio_F_N : N ; - certificatus_A : A ; - certifico_V : V ; - certim_Adv : Adv ; - certioro_V2 : V2 ; - certisco_V : V ; - certitudo_F_N : N ; - certo_Adv : Adv ; - certo_V : V ; - certor_V : V ; - certum_N_N : N ; - certus_A : A ; - ceruchus_M_N : N ; - cerula_F_N : N ; - cerussa_F_N : N ; - cerussatus_A : A ; - cerva_F_N : N ; - cervarius_A : A ; - cervesa_F_N : N ; - cervesarius_M_N : N ; - cervesia_F_N : N ; - cervical_N_N : N ; - cervicale_N_N : N ; - cervicatas_F_N : N ; - cervicatus_A : A ; - cervicosus_A : A ; - cervicula_F_N : N ; - cervina_F_N : N ; - cervinus_A : A ; - cerviscus_A : A ; - cervisia_F_N : N ; - cervisiaria_F_N : N ; - cervisiarius_A : A ; - cervisiola_F_N : N ; - cervix_F_N : N ; - cervos_M_N : N ; - cervula_F_N : N ; - cervulus_M_N : N ; - cervus_M_N : N ; - ceryceum_N_N : N ; - cerycium_N_N : N ; - ceryx_M_N : N ; - cespes_M_N : N ; - cespito_V : V ; - cessatio_F_N : N ; - cessator_M_N : N ; - cessatrix_F_N : N ; - cessicius_A : A ; - cessim_Adv : Adv ; - cessio_F_N : N ; - cessitius_A : A ; - cesso_V : V ; - cessum_N_N : N ; - cessus_M_N : N ; - cesticillus_M_N : N ; - cestos_M_N : N ; - cestros_F_N : N ; - cestros_M_N : N ; - cestrosphendone_F_N : N ; - cestrotus_A : A ; - cestus_M_N : N ; - cetaria_F_N : N ; - cetarium_N_N : N ; - cetarius_A : A ; - cetarius_M_N : N ; - cetera_Adv : Adv ; - cetero_Adv : Adv ; - ceteroqui_Adv : Adv ; - ceteroquin_Adv : Adv ; - ceterum_Adv : Adv ; - ceterus_A : A ; - cetionis_F_N : N ; - cetos_N_N : N ; - cetosus_A : A ; - cetra_F_N : N ; - cetus_M_N : N ; - ceu_Adv : Adv ; - ceua_F_N : N ; - ceva_F_N : N ; - ceveo_V : V ; - ceyx_M_N : N ; - chaere_Interj : Interj ; - chaerephyllum_N_N : N ; - chaerepolum_N_N : N ; - chalasticamen_N_N : N ; - chalasticus_A : A ; - chalatorius_A : A ; - chalazias_F_N : N ; - chalazion_N_N : N ; - chalazius_A : A ; - chalazophylax_M_N : N ; - chalazosis_F_N : N ; - chalbanum_N_N : N ; - chalcanthon_N_N : N ; - chalcanthum_N_N : N ; - chalcas_F_N : N ; - chalcaspis_A : A ; - chalcaspis_M_N : N ; - chalcedonius_M_N : N ; - chalceos_M_N : N ; - chalcetum_N_N : N ; - chalceum_N_N : N ; - chalceus_A : A ; - chalcidice_F_N : N ; - chalcidicum_N_N : N ; - chalcis_F_N : N ; - chalcites_F_N : N ; - chalcitis_F_N : N ; - chalcographia_F_N : N ; - chalcographus_M_N : N ; - chalcophonos_F_N : N ; - chalcophthongos_F_N : N ; - chalcosmaragdus_F_N : N ; - chalcus_M_N : N ; - chalo_V2 : V2 ; - chalybeius_A : A ; - chalybs_M_N : N ; - chama_F_N : N ; - chama_N_N : N ; - chamaeacte_F_N : N ; - chamaecerasus_F_N : N ; - chamaecissos_F_N : N ; - chamaecyparissos_F_N : N ; - chamaedaphne_F_N : N ; - chamaedracon_M_N : N ; - chamaedrops_F_N : N ; - chamaedrys_F_N : N ; + celetizon_2_N : N ; -- [XXXNS] :: riders on horse-back; (statue by that name); + celeuma_F_N : N ; -- [EXXFE] :: call of bosun giving time to rowers; song. shout (Ecc); + celeuma_N_N : N ; -- [XWXEO] :: call of bosun giving time to rowers; song, shout (Ecc); + celeusma_F_N : N ; -- [XWXFS] :: call of bosun giving time to rowers; song. shout (Ecc); + celeusma_N_N : N ; -- [XWXES] :: call of bosun giving time to rowers; song, shout (Ecc); + celia_F_N : N ; -- [XXSES] :: kind of beer (made in Spain); + cella_F_N : N ; -- [EEXBB] :: |cell; monastery; + cellararia_F_N : N ; -- [FXXEZ] :: female cellar-keeper?; (feminine of cellerarius); + cellariarius_A : A ; -- [XXXFO] :: relating to/connected with a store-room; + cellariarius_M_N : N ; -- [DXXES] :: steward, butler, cellarer; keeper of a larder/cellar; storekeeper; + cellariensis_A : A ; -- [DXXFS] :: relating to/connected with a store-room; + cellariolum_N_N : N ; -- [XXXFS] :: little room; + cellaris_A : A ; -- [XAXFO] :: relating to/connected with a store-room; kept in cage/cote/pen; (pigeons/etc.); + cellarium_N_N : N ; -- [XXXFO] :: store-room; larder; cellar; + cellarius_A : A ; -- [XXXEO] :: relating to/connected with a store-room; + cellarius_M_N : N ; -- [XXXCO] :: steward, butler, cellarer; keeper of a larder/cellar/storeroom; storekeeper; + cellatio_F_N : N ; -- [XXXFO] :: series of store-rooms; + celleraria_F_N : N ; -- [FEXFM] :: office of cellarer/store(s)-keeper; + cellerarissa_F_N : N ; -- [FEXFM] :: female cellarer/store-keeper; (monastic); + cellerarius_M_N : N ; -- [EXXEE] :: steward, butler, cellarer; keeper of a larder/cellar/storeroom; storekeeper; + cellerissa_F_N : N ; -- [FEXFM] :: female cellarer/store-keeper; (monastic); + cellerius_M_N : N ; -- [FXXEE] :: keeper of a larder/cellar; steward, butler, cellarer; storekeeper; + cellola_F_N : N ; -- [XXXCO] :: small/slave's room; humble apartment/dwelling; porter's lodge; whore's cubicle; + cellula_F_N : N ; -- [FBXEM] :: ||cell (biological); chamber of brain; ovary; + cellulanus_M_N : N ; -- [DXXFS] :: hermit; recluse; + cellularis_A : A ; -- [GSXEK] :: cellular; + cellulosa_F_N : N ; -- [GXXEK] :: cellulose; + celo_M_N : N ; -- [XAXFO] :: stallion; + celo_V2 : V2 ; -- [XXXAO] :: conceal, hide, keep secret; disguise; keep in dark/in ignorance; shield; + celocla_F_N : N ; -- [XWXFO] :: small boat; + celocula_F_N : N ; -- [XWXFO] :: small boat; + celox_A : A ; -- [BXXCS] :: fast, rapid, swift, fleet; (classical mostly applied to boats); + celox_F_N : N ; -- [XWXCO] :: cutter, yacht, light/fast boat; packet boat; + celse_Adv : Adv ; -- [XXXFS] :: high; higher, to a greater height; most proudly/prominently/lofty; + celsitudo_F_N : N ; -- [XXXEO] :: height, tallness; lofty carriage of body (L+S); (late Latin) Your Highness; + celsus_A : A ; -- [XXXAO] :: high, lofty, tall; haughty; arrogant/proud; prominent, elevated; erect; noble; + celthis_F_N : N ; -- [XAANO] :: African species of lotus; + celtis_F_N : N ; -- [ETXEE] :: chisel; tool; + celula_F_N : N ; -- [EEXDB] :: cell; monastery; + celum_N_N : N ; -- [XTXCS] :: chisel; engraving tool; burin; + celuma_N_N : N ; -- [EXXFE] :: call of bo'sun giving time to rowers; song, shout (Ecc); + cementarius_M_N : N ; -- [ETXEW] :: worker in concrete; stone cutter, mason, builder of walls (L+S); + cementerium_N_N : N ; -- [FXXEM] :: cemetery; + cementicium_N_N : N ; -- [XTXFO] :: concrete (undressed stones/rubble, lime and sand); unhewn/quarried stone (L+S); + cementicius_A : A ; -- [XTXCO] :: of concrete (undressed stones/rubble, lime and sand); of unhewn stones (L+S); + cementum_N_N : N ; -- [XXXCO] :: small stones, rubble (for concrete); quarry stones (for walls) (L+S); chips; + cemos_F_N : N ; -- [XAXNO] :: unidentified plant; + cena_F_N : N ; -- [XXXBO] :: dinner/supper, principal Roman meal (evening); course; meal; company at dinner; + cenacularia_F_N : N ; -- [XXXFO] :: business of renting attic lodgings; leasing of attic; + cenacularius_A : A ; -- [XXXFS] :: of/pertaining to a garret/attic; + cenacularius_M_N : N ; -- [XXXFO] :: lodging-house keeper; tenant of an attic/garret (L+S); + cenaculatus_A : A ; -- [XXXFS] :: with garrets (house); + cenaculum_N_N : N ; -- [XXXCO] :: attic, garret (often let as lodging); upstairs dining room; top/upper story; + cenalis_A : A ; -- [XXXFO] :: of/pertaining to (a) dinner; + cenaticum_N_N : N ; -- [DWXES] :: money given to soldiers instead of food, subsistence allowance; + cenaticus_A : A ; -- [XXXFO] :: of/pertaining to (a) dinner; + cenatio_F_N : N ; -- [XXXCO] :: dining-room; dining hall; + cenatiuncula_F_N : N ; -- [XXXFO] :: small dining-room; + cenator_M_N : N ; -- [DXXFS] :: diner; dinner guest; + cenatorium_N_N : N ; -- [XXXEO] :: dining room, hall; evening dress, dinner wear (pl.); + cenatorius_A : A ; -- [XXXEO] :: of/used for dining; pertaining to dinner or the table; + cenaturio_V : V ; -- [XXXFO] :: desire to dine; have an appetite for dinner; + cenatus_A : A ; -- [XXXCO] :: having dined/eaten; supplied with dinner; + cenchris_F_N : N ; -- [XAXNO] :: species of hawk; (probably kestrel); + cenchris_M_N : N ; -- [XAXNO] :: kind of snake; + cenchritis_M_N : N ; -- [XXXNO] :: precious stone; + cenchros_M_N : N ; -- [XXXNO] :: small diamond; + cenito_V : V ; -- [XXXCO] :: dine/eat habitually (in a particular place/manner); have dinner, dine (often); + ceno_V : V ; -- [XXXBO] :: dine, eat dinner/supper; have dinner with; dine on, make a meal of; + cenobium_N_N : N ; -- [FEXEM] :: monastery; + cenodoxia_F_N : N ; -- [FXXFE] :: vainglory; + cenotaphium_N_N : N ; -- [XEXES] :: cenotaph, empty tomb/monument to one whose body is elsewhere; (tumulus inanis); + censeo_V2 : V2 ; -- [XXXAO] :: think/suppose, judge; recommend; decree, vote, determine; count/reckon; assess; + censio_F_N : N ; -- [XLXCO] :: assessing/rating of a census; punishment by a censor; recommendation/decision; + censitio_F_N : N ; -- [DLXES] :: declaration of will, command; tax, taxing, taxation, tribute; + censitor_M_N : N ; -- [XLXEO] :: registrar/taxation official in a Roman province/presiding over rating citizens; + censitus_A : A ; -- [DLXCS] :: registered; assessed. rated, estimated; judged; taxed; (VPAR censeo); + censor_M_N : N ; -- [XLXBO] :: censor, magistrate for registration/census; censurer, critic (behavior/books); + censoreus_A : A ; -- [GEXFZ] :: censorious; critical (JFW); + censorius_A : A ; -- [XLXBO] :: of/belonging to/dealt with by/having been a censor, censorial; austere, moral; + censualis_A : A ; -- [XLXEO] :: of/connected with census of citizens; + censualis_M_N : N ; -- [XLXES] :: those who make out censor's lists/rolls; censor's lists/rolls; + censum_N_N : N ; -- [XLXFS] :: estimate of property value by census/censor; ones property/wealth/fortune; + censura_F_N : N ; -- [EEXEE] :: |blame, censure; ecclesiastical punishment; + censuratus_A : A ; -- [EEXEE] :: censured, under censure; + census_A : A ; -- [XLXES] :: registered; assessed. rated, estimated; judged; taxed; (VPAR censeo); + census_M_N : N ; -- [XLXAO] :: census/registration/roll (5 yr.); wealth/property; estate valuation/appraisal; + centaureum_N_N : N ; -- [XAXCO] :: centaury (herb); (of medicinal properties discovered by centaur Chiron); + centauria_F_N : N ; -- [DAXCS] :: centaury (herb); (of medicinal properties discovered by centaur Chiron); + centaurion_N_N : N ; -- [XAXCO] :: centaury (herb); (of medicinal properties discovered by centaur Chiron); + centauris_F_N : N ; -- [XAXNO] :: species of centaury (herb); (properties discovered by centaur Chiron); + centaurium_N_N : N ; -- [XAXCO] :: centaury (herb); (of medicinal properties discovered by centaur Chiron); + centaurus_M_N : N ; -- [XYXCO] :: centaur, a mythical creature, half man and half horse; name of constellation; + centena_F_N : N ; -- [DLXFS] :: dignity in imperial court; + centenarium_N_N : N ; -- [XTXFO] :: hundred (Roman) pounds weight, hundredweight; + centenarius_A : A ; -- [XXXCO] :: containing/consisting of/numbering/having/costing hundred; hundred; hundredfold; + centenionalis_A : A ; -- [DLXFS] :: small coin; (with nummus); + centensimo_V2 : V2 ; -- [DWXFS] :: take out every hundredth (for punishment), centesimate; + centenum_N_N : N ; -- [XAXCS] :: species of very productive wheat (of a hundred grains); + centenus_A : A ; -- [FXXEM] :: hundred; + centesima_F_N : N ; -- [XXXCO] :: hundredth part; one percent; (of interest, usu. 1% per month); cent; + centesimalis_A : A ; -- [HXXEK] :: of a cent; + centiceps_A : A ; -- [XYXEO] :: hundred-headed, having a hundred heads; + centifidus_A : A ; -- [DXXES] :: divided into a hundred parts; divided into a great many parts; + centifolius_A : A ; -- [XAXNO] :: having hundred petals/leaves; (rose); + centigrammum_N_N : N ; -- [GXXEK] :: centigram; + centigranius_A : A ; -- [XAXNO] :: species of very productive wheat (of a hundred grains); + centimalis_A : A ; -- [DBXFS] :: surgical instrument (w/fistula), trocar (perforator for drawing fluid/abscess); + centimanus_A : A ; -- [XYXEO] :: hundred-handed; + centimeter_M_N : N ; -- [DPXFS] :: one who employs a hundred/very many meters (poetic); + centimetrum_N_N : N ; -- [GXXEK] :: centimeter; + centinodius_A : A ; -- [DAXFS] :: with a hundred knots; [~ herba => unknown plant]; + centipeda_F_N : N ; -- [XAXNO] :: centipede; + centipellio_F_N : N ; -- [XAXNO] :: third stomach of a ruminant, psalterium, iomasum, manyplies; + centipes_A : A ; -- [XAXNS] :: hundred-footed; (e.g., like a centipede); + centipes_M_N : N ; -- [XAXNO] :: centipede; + centiplex_A : A ; -- [XXXFS] :: hundredfold; + centiplicato_Adv : Adv ; -- [XXXNO] :: at one hundred times the price; + cento_M_N : N ; -- [XXXCO] :: patchwork quilt, blanket or curtain made of old garments sewn together; rags; + centoculus_A : A ; -- [DYXFS] :: hundred-eyed; (e.g., Argus); with a multitude of eyes; + centonarius_A : A ; -- [DXXFS] :: of/pertaining to patchwork/rags; + centonarius_M_N : N ; -- [XXXEO] :: fireman using mats to extinguish fires; (late) maker of patchwork, rag dealer; + centralis_A : A ; -- [XXXNO] :: central; centrally located; in middle/center; + centralizatio_F_N : N ; -- [GXXEK] :: centralization; + centralizatorius_A : A ; -- [GXXEK] :: centralizing; + centralizo_V : V ; -- [GXXEK] :: centralize; + centratus_A : A ; -- [DXXFS] :: central; in middle/center; + centricus_A : A ; -- [GXXEK] :: central; + centrifugatrum_N_N : N ; -- [GTXEK] :: centrifuge; + centrifugus_A : A ; -- [GTXEK] :: centrifugal; + centrina_M_N : N ; -- [XAXNS] :: kind of wasp or beetle (usu. pl.); + centripetus_A : A ; -- [GTXEK] :: centripetal; + centrosus_A : A ; -- [XXXNO] :: characterized by knots/like flaws; at central point, inward, internal (L+S); + centrum_N_N : N ; -- [XSXBO] :: center (circle/sphere/earth); vanishing point; axis, pivot; knot; spur (fowl); + centumgeminus_A : A ; -- [XXXEO] :: hundredfold; hundred-handed (Briareus); hundred-gated (Thebes); + centumpeda_M_N : N ; -- [DAXFS] :: hundred-footed; (e.g., a centipede); + centumplex_A : A ; -- [XXXFO] :: hundredfold; + centumpondium_N_N : N ; -- [XSXEO] :: weight of one hundred pounds; + centumvir_M_N : N ; -- [XLXCO] :: panel of (about 100) judges chosen annually to decide civil suits (pl.); + centumviralis_A : A ; -- [XLXCO] :: of/belonging to/pertaining to centumviri (civil court of 100)/its jurisdiction; + centunculus_F_N : N ; -- [XXXEO] :: plant of doubtful identity; (knotweed L+S); + centunculus_M_N : N ; -- [XXXDO] :: patchwork blanket/cloth/drape; multicolored saddle cloth (L+S); small patch; + centupeda_F_N : N ; -- [DAXNS] :: centipede; + centuplex_A : A ; -- [BXXFS] :: hundredfold; + centuplicato_Adv : Adv ; -- [DXXNS] :: at one hundred times the price; + centuplicatum_N_N : N ; -- [DXXFS] :: hundredfold (pl.); centuple; + centuplicatus_A : A ; -- [DXXFS] :: increased a hundredfold; centupled; + centuplico_V2 : V2 ; -- [DXXES] :: increase a hundredfold; + centuplum_N_N : N ; -- [DEXCS] :: hundredfold; centuple; + centuplus_A : A ; -- [DEXCS] :: hundredfold; centuple; + centupondium_N_N : N ; -- [DSXES] :: weight of one hundred pounds; + centuria_F_N : N ; -- [XWXBO] :: century, company of 60-100 men in legion; voting unit; land unit (200 jugera); + centurialis_A : A ; -- [XXXEO] :: of/belonging to given centuria for voting; boundary marker of land centuria; + centuriatim_Adv : Adv ; -- [XXXDO] :: by centuries; (citizens for voting/soldiers in companies); + centuriatio_F_N : N ; -- [XAXEO] :: division of land into centuriae (about 100 acre plots); + centuriato_Adv : Adv ; -- [XXXFO] :: by centuries; (citizens for voting/soldiers in companies); + centuriatus_A : A ; -- [XLXCO] :: voting in centuriae; divided into centuriae; [comitia ~ => Roman assembly]; + centuriatus_M_N : N ; -- [XWXEO] :: office of centurion; division into centuriae (land/voting); + centurio_M_N : N ; -- [XWXBO] :: centurion, captain/commander of a century/company; + centurio_V2 : V2 ; -- [XWXCO] :: arrange/assign (soldiers) in military centuries; divide land into centuriae; + centurionatus_M_N : N ; -- [XLXES] :: |division into centuriae (land/voting); + centurionicus_A : A ; -- [XWXIO] :: in capacity of a centurion; + centurionus_M_N : N ; -- [BWXEO] :: centurion, captain of a century; + centussis_M_N : N ; -- [XLXDO] :: sum of 100 asses, a hundred; + cenula_F_N : N ; -- [XXXCO] :: little dinner, supper; + cenum_N_N : N ; -- [XXXFO] :: mud, mire, filth, slime, dirt, uncleanness; (of persons) scum/filth; + cepa_F_N : N ; -- [XAXCO] :: onion (Allium capa); (used as term of abuse); + cepaea_F_N : N ; -- [XAXNO] :: herb (unidentified); plant like portulacca, portulacca-leaved sedum (L+S); + ceparius_M_N : N ; -- [XAXFO] :: grower of onions; trader in onions (L+S); + cepaticus_A : A ; -- [XXXFO] :: resembling an onion; + cepe_N_N : N ; -- [XAXCO] :: onion (Allium capa); + cepetum_N_N : N ; -- [XAXFO] :: onion bed; + cephalaea_F_N : N ; -- [XBXNO] :: persistent/lasting headache; + cephalaeota_M_N : N ; -- [DLXFS] :: collector of capitation/poll tax; + cephalaeum_N_N : N ; -- [XAXNO] :: head-portions/parts; + cephalalgia_F_N : N ; -- [XBXES] :: headache; + cephalalgicus_A : A ; -- [DBXFS] :: sick with a headache; + cephalargia_F_N : N ; -- [XBXES] :: headache; + cephalargicus_A : A ; -- [DBXFS] :: sick with a headache; + cephalicus_A : A ; -- [XBXFO] :: for the head, of/relating to head, head-; + cephalicus_M_N : N ; -- [FDXFE] :: musical note in Gregorian chant; + cephalo_M_N : N ; -- [XAXFS] :: palm tree; + cephalotos_A : A ; -- [XXXFS] :: having a head; + cephen_M_N : N ; -- [XAXNS] :: drones (pl.) (in a swarm/hive of bees); + cephus_M_N : N ; -- [FXXCL] :: bowl, goblet, cup; communion cup; + cepina_F_N : N ; -- [XAXFO] :: onion bed/field; + cepitis_F_N : N ; -- [XXXNO] :: kind of veined gem; + cepolartitis_F_N : N ; -- [XXXNO] :: kind of veined gem; + cepolendrum_N_N : N ; -- [XXXFO] :: imaginary condiment; + ceponis_F_N : N ; -- [XXXNS] :: precious stone (unknown); + ceposus_A : A ; -- [XAXFO] :: abounding in onions; full of onions; + cepotafiolum_N_N : N ; -- [XXXIO] :: small garden tomb; + cepotafium_N_N : N ; -- [XXXIO] :: garden tomb; + cepotafius_M_N : N ; -- [XXXIO] :: garden tomb; + cepotaphiolum_N_N : N ; -- [XXXIO] :: small garden tomb; + cepotaphium_N_N : N ; -- [XXXIO] :: garden tomb; + cepotaphius_M_N : N ; -- [XXXIO] :: garden tomb; + ceps_A : A ; -- [XSXCO] :: -headed; -fold; -part (only w/NUM/PREP prefix); occupying X place in series; + cepulla_F_N : N ; -- [XAXFS] :: onion bed/field; + cepuricus_A : A ; -- [DAXFS] :: pertaining to gardening; + cera_F_N : N ; -- [XXXBO] :: wax, beeswax; honeycomb; wax-covered writing tablet, letter; wax image/seal; + cerachates_M_N : N ; -- [XXXNO] :: beeswax-colored agate, wax-agate; + cerais_F_N : N ; -- [XAXNO] :: wild radish; + ceramitis_F_N : N ; -- [XXXNO] :: kind of gem; + ceraria_F_N : N ; -- [BXXFS] :: woman who makes wax lights?; + cerarium_N_N : N ; -- [XLXFO] :: charge/tax for sealing/affixing wax seal to documents, wax-money/('stamp tax'); + cerarius_A : A ; -- [XXXIO] :: of/concerned with (wax-covered) writing tablets; of a worker in wax; + cerarius_M_N : N ; -- [XXXFS] :: dealer in wax; writer on tablets (wax-covered); + ceras_N_N : N ; -- [DAXFS] :: kind of wild parsnip; [Hesperion ~ => mountain on west coast of Lybia]; + cerasinus_A : A ; -- [XXXFO] :: cherry-colored; + cerasium_N_N : N ; -- [XAXEO] :: cherry; cherry tree; + cerastes_M_N : N ; -- [XAXCO] :: horned snake (Cerastes cornulus); insect parasitic on figs; horned men of Crete; + cerasum_N_N : N ; -- [XXXCO] :: cherry-tree/bark/wood; cherry; + cerasus_F_N : N ; -- [XXXCO] :: cherry-tree/bark/wood; cherry; + ceratia_F_N : N ; -- [XAXNO] :: plant (unidentified); plant with a single leaf (L+S); + ceratias_M_N : N ; -- [XAXNO] :: horn-shaped comet; + ceratina_F_N : N ; -- [XSXEO] :: horn fallacy; (you have not lost your horns, therefore you have horns); + ceratitis_F_N : N ; -- [XAXNO] :: horned poppy (Glaucium flavum); + ceratium_N_N : N ; -- [XSHFO] :: Greek weight corresponding to Latin siliqua/2 calculi; + ceratoides_A : A ; -- [XBXFO] :: horn-like; (of outer coat of eye/sclerotic/white); + ceratorium_N_N : N ; -- [DBXES] :: ointment made with oil and wax, wax-salve, wax-plaster, cerate; + ceratum_N_N : N ; -- [XBXDO] :: ointment made with oil and wax, wax-salve, wax-plaster, cerate; + ceratura_F_N : N ; -- [XXXFO] :: coating with wax; smearing over/covering with wax; + ceratus_A : A ; -- [XXXDO] :: waxed, wax, of wax, wax colored; coated/fastened/caulked with wax; pliant, soft; + ceraules_M_N : N ; -- [XDXEO] :: horn-blower; + ceraunium_N_N : N ; -- [XXXES] :: precious stone; onyx?; meteoric stone?; + ceraunius_A : A ; -- [XXXCO] :: connected with thunderbolts/thunder/lightning; (varieties of plant/minerals); + ceraunus_M_N : N ; -- [XXXES] :: precious stone; onyx?; (meteoric stone?); + cerceris_F_N : N ; -- [XAXFO] :: aquatic bird (unidentified); + cercholopis_M_N : N ; -- [XAXFS] :: monkey having a tuft of hair at end of its tail; + cercis_F_N : N ; -- [XBXFO] :: radius (arm bone); + cercitis_F_N : N ; -- [XAXFO] :: variety of olive; species of olive tree; + cercius_M_N : N ; -- [XSXCO] :: wind between north and west; WNW wind (L+S); (in Gallia Narbonensis); + cercolopis_M_N : N ; -- [XAXFS] :: monkey having a tuft of hair at end of its tail; + cercopithecon_N_N : N ; -- [XAEEO] :: long-tailed monkey; (sacred to Egyptians L+S); + cercopithecus_M_N : N ; -- [XAEEO] :: long-tailed monkey; (sacred to Egyptians L+S); + cercops_M_N : N ; -- [XAXEO] :: long-tailed monkey; money-grubber; inhabitants of Pithecusae changed to monkeys; + cercurus_M_N : N ; -- [XWXCO] :: fast light vessel; sea fish found among rocks; + cercyrus_M_N : N ; -- [XWXCO] :: fast light vessel; sea fish found among rocks; + cerdo_M_N : N ; -- [XTXDO] :: artisan; craftsman; cobbler (L+S); proper name especially of slaves; + cerea_F_N : N ; -- [XXSNO] :: beverage made from grain; (beer?); Spanish drink from grain (L+S); + cerebellare_N_N : N ; -- [XXXFS] :: brain-covering; head-covering; + cerebellum_N_N : N ; -- [XBXDO] :: brain; seat of senses/intellect; little brain (L+S); + cerebralis_A : A ; -- [GBXEK] :: cerebral; + cerebrosus_A : A ; -- [XXXEO] :: liable to be affected with passion; enraged/hot-headed/passionate; hare-brained; + cerebrum_N_N : N ; -- [XXXCO] :: brain; top of the head, skull; bud; seat of senses/intelligence; anger/wrath; + ceremonia_F_N : N ; -- [FEXCS] :: ceremony; sacred rite/ritual/usage; holy dread, reverence, worship; sanctity; + ceremonial_N_N : N ; -- [FEXFE] :: ceremonial, directory/set/series of ceremonies/rituals/rites; + ceremonialis_A : A ; -- [FEXFS] :: ceremonial; pertaining to a religious/sacred rite/ritual/usage; + ceremonior_V : V ; -- [FEXES] :: treat with due ceremony; worship; + ceremoniosus_A : A ; -- [FEXFS] :: pertaining/devoted to religious/sacred rite/ritual/usage; + ceremonium_N_N : N ; -- [FEXES] :: ceremony; sacred rite/ritual/usage; holy dread, reverence, worship; sanctity; + cereolus_A : A ; -- [XXXFO] :: wax-colored; + cereus_A : A ; -- [XXXCO] :: waxed, waxen, of/like wax; wax colored/pale yellow; pliant/soft; easily moved; + cereus_M_N : N ; -- [XXXCO] :: wax light, taper, candle; + cerevisia_F_N : N ; -- [XXFES] :: kind of beer; + ceria_F_N : N ; -- [XXSNS] :: beverage made from grain; (beer?); Spanish drink from grain (L+S); + ceriaria_F_N : N ; -- [XXXFO] :: female worker (of unknown function); + cerifico_V : V ; -- [XAXNS] :: make wax; spawn (of purple-fish) (make wax/prepare slimy nest for eggs); + cerimonia_F_N : N ; -- [DEXCS] :: ceremony; sacred rite/ritual/usage; holy dread, reverence, worship; sanctity; + cerimonial_N_N : N ; -- [EEXFE] :: ceremonial, directory/set/series of ceremonies/rituals/rites; + cerimonialis_A : A ; -- [DEXFS] :: ceremonial; pertaining to a religious/sacred rite/ritual/usage; + cerimonior_V : V ; -- [DEXES] :: treat with due ceremony; worship; + cerimoniosus_A : A ; -- [DEXFS] :: pertaining/devoted to religious/sacred rite/ritual/usage; + cerimonium_N_N : N ; -- [DEXES] :: ceremony; sacred rite/ritual/usage; holy dread, reverence, worship; sanctity; + cerineus_A : A ; -- [XXXIO] :: made of wax; + cerintha_F_N : N ; -- [XAXNO] :: honeywort plant; (genus Cerinthe); wax-flower, plant bees are fond of (L+S); + cerinthe_F_N : N ; -- [XAXNO] :: honeywort plant; (genus Cerinthe); wax-flower, plant bees are fond of (L+S); + cerinthus_M_N : N ; -- [XAXNS] :: bee-bread, pollen; (also called erithace or sandaraca); + cerinum_N_N : N ; -- [XXXFS] :: wax-colored/pale yellow garment (pl.); + cerinus_A : A ; -- [XXXEO] :: wax-colored; + ceriolare_N_N : N ; -- [XXXIO] :: taper-holder; + ceriolarium_N_N : N ; -- [XXXIO] :: taper-holder; + ceriolarius_M_N : N ; -- [XXXIO] :: maker/seller of tapers; + ceritis_F_N : N ; -- [XXXNO] :: precious stone; wax-stone (L+S); + cerium_N_N : N ; -- [XBXNO] :: cyst/growth characterized by honeycomb pattern; bad swelling/ulcer (L+S); + cernentia_F_N : N ; -- [DBXFS] :: sight, seeing; + cerno_V2 : V2 ; -- [XXXAO] :: sift, separate, distinguish, discern, resolve, determine; see; examine; decide; + cernophorus_C_N : N ; -- [XEXIO] :: bearer of cernus (vessel for holding offerings); + cernulo_V2 : V2 ; -- [XXXFO] :: throw headlong; throw down (L+S); + cernulus_A : A ; -- [XXXEO] :: head foremost; turning a somersault (L+S); + cernuo_V : V ; -- [XXXEO] :: fall headfirst; dive; turn a somersault; + cernuus_A : A ; -- [XXXEO] :: head foremost; falling headlong; face down, inclined/stooping/bowing forwards; + cernuus_M_N : N ; -- [XXXFO] :: kind of shoe; tumbler (L+S); mountebank; + cero_V2 : V2 ; -- [XXXFO] :: smear/coat with wax; + ceroferarium_N_N : N ; -- [FEXFE] :: candlestick; + ceroferarius_M_N : N ; -- [DEXES] :: torchbearer; waxlight/taper/candle bearer/attendant at Christian worship; + ceroma_N_N : N ; -- [XXXCO] :: layer of mud put down for wrestling; the_ring; wrestler; wax ointment (L+S); + ceromaticus_A : A ; -- [XXXFO] :: smeared with ceroma (mud put down for wrestling-ring); (wax ointment L+S); + ceromatita_M_N : N ; -- [EXXFP] :: wax-anointer; one who anoints with wax salve; + ceronia_F_N : N ; -- [XAXNS] :: St John's bread (carob-tree pods), husks eaten by prodigal and John the Baptist; + cerosus_A : A ; -- [XXXNO] :: containing wax; full of wax; + cerotum_N_N : N ; -- [XBXES] :: ointment made with oil and wax, wax-salve, wax-plaster, cerate; + ceroturium_N_N : N ; -- [DBXES] :: ointment made with oil and wax, wax-salve, wax-plaster, cerate; + cerreus_A : A ; -- [XAXNO] :: of Turkey oak (Quercus cerris); + cerrinus_A : A ; -- [XAXNO] :: of Turkey oak (Quercus cerris); + cerritulus_A : A ; -- [DBXFS] :: somewhat mad/demented; + cerritus_A : A ; -- [XBXCO] :: possessed by Ceres; frantic, frenzied; mad, demented; + cerro_M_N : N ; -- [XXXEO] :: term of opprobrium/disgrace/reproach; buffoon?; + cerrus_F_N : N ; -- [XAXEO] :: Turkey oak (Quercus cerris), mossy-cup oak of southern Europe (OED); + certabundus_A : A ; -- [XGXFO] :: disputing, contending; + certamen_N_N : N ; -- [XXXAO] :: contest, competition; battle, combat, struggle; rivalry; (matter in) dispute; + certatim_Adv : Adv ; -- [XXXBO] :: with rivalry, in competition; earnestly, eagerly (L+S); + certatio_F_N : N ; -- [XXXCO] :: striving; contest; struggling for superiority/mastery; (fight/sports/legal); + certative_Adv : Adv ; -- [DXXFS] :: combatively; in order to stir up strife; + certator_M_N : N ; -- [XXXEO] :: disputant, one who argues; competitor; + certatus_M_N : N ; -- [XXXFO] :: struggle, contention; fight; + certe_Adv : Adv ; -- [XXXAO] :: surely, certainly, without doubt, really; at least/any rate, in all events; + certificatio_F_N : N ; -- [FLXFJ] :: certification; + certificatus_A : A ; -- [GXXEK] :: certificated, certified; registered; + certifico_V : V ; -- [FLXFJ] :: certify; register + certim_Adv : Adv ; -- [DXXES] :: surely, certainly, without doubt, really; + certioro_V2 : V2 ; -- [XLXCO] :: inform, show, apprise; + certisco_V : V ; -- [XXXFO] :: become more certain/sure/determined?; + certitudo_F_N : N ; -- [FXXCO] :: certainty, certitude; assurance (Bee); truth; + certo_Adv : Adv ; -- [XXXBO] :: certainly, definitely, really, for certain/a fact, truly; surely, firmly; + certo_V : V ; -- [XXXAO] :: vie (with), contest, contend/struggle (at law/politics), dispute; fight, strive; + certor_V : V ; -- [XXXFO] :: compete (in a contest), contend/struggle (at law/politics), strive; + certum_N_N : N ; -- [XXXBO] :: that which is fixed/regular/definite/specified/certain/fact/reliable/settled; + certus_A : A ; -- [XXXAO] :: fixed, settled, firm; certain; trusty/reliable; sure; resolved, determined; + ceruchus_M_N : N ; -- [XWXEO] :: braces (pl.) (supporting yard-arms), ropes fastened to sail-yards; + cerula_F_N : N ; -- [XXXEO] :: small piece of wax; red crayon (w/miniata); candlestick, stand for wax tapers; + cerussa_F_N : N ; -- [XXXCO] :: carbonate of lead; white lead, ceruse; (for paint/cosmetics/medicine/poison); + cerussatus_A : A ; -- [XXXEO] :: painted/colored white/with white lead; made white with lead; + cerva_F_N : N ; -- [XAXCO] :: doe, hind; deer; + cervarius_A : A ; -- [XAXEO] :: of/pertaining to/connected with deer; [lupus ~ => lynx, wolverine?]; + cervesa_F_N : N ; -- [XXFEO] :: beer; kind of beer; + cervesarius_M_N : N ; -- [XXXIO] :: brewer (of beer); + cervesia_F_N : N ; -- [XXFEO] :: beer; kind of beer; + cervical_N_N : N ; -- [XXXCO] :: pillow, cushion; + cervicale_N_N : N ; -- [DXXFS] :: pillow, cushion; + cervicatas_F_N : N ; -- [DXXFS] :: obstinacy, stubbornness; + cervicatus_A : A ; -- [DXXFS] :: stiff-necked, obstinate, stubborn; + cervicosus_A : A ; -- [DXXES] :: stiff-necked, obstinate, stubborn; + cervicula_F_N : N ; -- [XBXCO] :: neck (men/animals); neck of object (e.g., of air container in water organ); + cervina_F_N : N ; -- [XAXES] :: deer meat, venison; + cervinus_A : A ; -- [XAXCO] :: of/pertaining to deer/stag; [~ senectus => longevity/great age]; + cerviscus_A : A ; -- [XAXFO] :: name of a variety of pear; + cervisia_F_N : N ; -- [XXFES] :: kind of beer; + cervisiaria_F_N : N ; -- [GXXEK] :: brasserie; restaurant; + cervisiarius_A : A ; -- [GXXET] :: beer-; made from/of beer; (Erasmus); + cervisiola_F_N : N ; -- [GXXEK] :: light beer; + cervix_F_N : N ; -- [XBXAO] :: neck (sg/pl.), nape; severed neck/head; cervix, neck (bladder/uterus/jar/land); + cervos_M_N : N ; -- [BAXFS] :: stag/deer; forked branches; chevaux-de-frise (spiked barricade against cavalry); + cervula_F_N : N ; -- [DAXFS] :: little hind/doe; + cervulus_M_N : N ; -- [DWXFS] :: little chevaux-de-frise (spiked barricade against cavalry); + cervus_M_N : N ; -- [XAXCO] :: stag/deer; forked branches; chevaux-de-frise (spiked barricade against cavalry); + ceryceum_N_N : N ; -- [DLXFS] :: herald's staff, caduceus; + cerycium_N_N : N ; -- [DLXFS] :: herald's staff, caduceus; + ceryx_M_N : N ; -- [XLXEO] :: herald; + cespes_M_N : N ; -- [EAXBE] :: grassy ground, grass; earth; sod, turf; altar/rampart/mound of sod/turf/earth; + cespito_V : V ; -- [XXXFO] :: stumble; + cessatio_F_N : N ; -- [XXXBO] :: relaxation/rest/respite; period of disuse, inactivity; idleness, neglect; delay; + cessator_M_N : N ; -- [XXXDO] :: idler, sluggard; dilatory person (L+S); + cessatrix_F_N : N ; -- [DXXFS] :: idler (female), loiterer; + cessicius_A : A ; -- [XLXEO] :: made/appointed by cessio (surrendering/conceding in law); of giving up/ceding; + cessim_Adv : Adv ; -- [XXXEO] :: as to give way/lose ground; bending/turning in; (turned) backwards; obliquely; + cessio_F_N : N ; -- [XLXDO] :: surrendering/conceding (in law); running (of period of time); + cessitius_A : A ; -- [XLXFS] :: made/appointed by cessio (surrendering/conceding in law); of giving up/ceding; + cesso_V : V ; -- [XXXAO] :: be remiss/inactive; hold back, leave off, delay, cease from; rest; be free of; + cessum_N_N : N ; -- [XLXIO] :: advance, part of payment that has been made; + cessus_M_N : N ; -- [XXXFO] :: backward or yielding movement; + cesticillus_M_N : N ; -- [DXXFS] :: small ring/hoop placed on head to support burden; + cestos_M_N : N ; -- [XXXEO] :: band supporting breasts (esp. girdle of Venus); girdle/belt/girth/strap; + cestros_F_N : N ; -- [XAXNO] :: plant identified with vettonica; (betony?); + cestros_M_N : N ; -- [XTXNO] :: pointed tool used in encaustic (wax) painting; graving tool (L+S); + cestrosphendone_F_N : N ; -- [XWXFO] :: catapult for discharging bolts; + cestrotus_A : A ; -- [XTXNO] :: engraved; + cestus_M_N : N ; -- [XXXCO] :: boxing-glove, strip of leather weighted with lead/iron tied to boxer's hands; + cetaria_F_N : N ; -- [XAXEO] :: fish-pond; + cetarium_N_N : N ; -- [XAXEO] :: fish-pond; + cetarius_A : A ; -- [XAXFS] :: of/pertaining to fish; + cetarius_M_N : N ; -- [XAXEO] :: fisherman; fishmonger; + cetera_Adv : Adv ; -- [XXXCO] :: for the rest, otherwise; in other respects; + cetero_Adv : Adv ; -- [XXXCO] :: for the rest(new details/theme), otherwise; in other respects; at other times; + ceteroqui_Adv : Adv ; -- [XXXDO] :: in other respects, otherwise; + ceteroquin_Adv : Adv ; -- [XXXCS] :: in other respects, otherwise; + ceterum_Adv : Adv ; -- [XXXCO] :: moreover; but yet; still, for the rest, but, besides; in other respects; + ceterus_A : A ; -- [XXXAO] :: the_other; the_others (pl.). the_remaining/rest, all the_rest; + cetionis_F_N : N ; -- [XXXNO] :: precious stone; + cetos_N_N : N ; -- [XAXCO] :: whale; porpoise; dolphin; its flesh; sea monster (offered Andromeda); + cetosus_A : A ; -- [DAXFS] :: of/pertaining to sea-fishes; + cetra_F_N : N ; -- [XXXCO] :: caetra (small light shield); + cetus_M_N : N ; -- [XAXBO] :: whale; porpoise; dolphin; its flesh; sea monster (offered Andromeda); + ceu_Adv : Adv ; -- [XXXBO] :: as, in the same way/just as; for example, like; (just) as if; as (if) it were; + ceua_F_N : N ; -- [XAXFS] :: small breed of cow; + ceva_F_N : N ; -- [XAXFS] :: small breed of cow; + ceveo_V : V ; -- [XXXES] :: move haunches in a lewd or effeminate manner, practice such behavior; fawn; + ceyx_M_N : N ; -- [XAXNO] :: sea bird (tern?); son of Lucifer/husband of Alcyone; male kingfisher (L+S); + chaere_Interj : Interj ; -- [XXXEO] :: welcome; hail (L+S); + chaerephyllum_N_N : N ; -- [XAXEO] :: chervil (Anthiscus cerefolium); + chaerepolum_N_N : N ; -- [XAXEO] :: chervil (Anthiscus cerefolium); + chalasticamen_N_N : N ; -- [DBXFS] :: alleviating remedy; + chalasticus_A : A ; -- [DBXFS] :: of/pertaining to alleviating/soothing; + chalatorius_A : A ; -- [DXXFS] :: of/pertaining to loosing/letting down; + chalazias_F_N : N ; -- [XXXNO] :: precious stone (unidentified); (of form and color of hail); + chalazion_N_N : N ; -- [XBXFO] :: wart/tubercle on eyelid; sty; + chalazius_A : A ; -- [XXXNO] :: resembling a hailstone (name of a precious stone); of/pertaining to hail (L+S); + chalazophylax_M_N : N ; -- [XEXFO] :: hail-guard (official at Cleonae whose duty it was to avert hail by sacrifice); + chalazosis_F_N : N ; -- [XBXIO] :: attack of warts or pimples; (acne?); + chalbanum_N_N : N ; -- [XAQES] :: resinous sap of an umbelliferous plant in Syria, galbanum; + chalcanthon_N_N : N ; -- [XTXNO] :: copperas-water, cobbler's blackening (for shoe leather); (Atramentum sutorium); + chalcanthum_N_N : N ; -- [XTXNO] :: copperas-water, cobbler's blackening (for shoe leather); (Atramentum sutorium); + chalcas_F_N : N ; -- [XAXNO] :: plant (chrysanthemum family?); (buphthalmus?); + chalcaspis_A : A ; -- [XWXFS] :: having/with a brazen shield; + chalcaspis_M_N : N ; -- [XWXFO] :: soldier with a brazen shield; + chalcedonius_M_N : N ; -- [EXXFW] :: chalcedony; (stone of third foundation of New Jerusalem in Revelations 21:19); + chalceos_M_N : N ; -- [XAXNO] :: prickly plant resembling thistle; + chalcetum_N_N : N ; -- [XBXNS] :: plant (unidentified); (medicinal); + chalceum_N_N : N ; -- [XXXFS] :: brazen/brass things (pl.); + chalceus_A : A ; -- [XXXFS] :: brazen, of brass; + chalcidice_F_N : N ; -- [XAXNS] :: kind of lizard or snake; + chalcidicum_N_N : N ; -- [XTXDO] :: kind of portico or porch; (from Chalcis); + chalcis_F_N : N ; -- [XAXNO] :: kind of fish (sardine?/herring-like?); kind of lizard/snake; (w/copper spots); + chalcites_F_N : N ; -- [XXXDS] :: copper pyrites; precious stone (of copper color L+S); copper stone/ore (L+S); + chalcitis_F_N : N ; -- [XXXDO] :: copper pyrites; precious stone (of copper color L+S); copper stone/ore (L+S); + chalcographia_F_N : N ; -- [GXXEK] :: engraving on copper; + chalcographus_M_N : N ; -- [GXXEK] :: engraver (on copper); printer (Erasmus); + chalcophonos_F_N : N ; -- [XXXNO] :: precious stone; (ringing like brass L+S); + chalcophthongos_F_N : N ; -- [XXXNS] :: precious stone; (ringing like brass L+S); + chalcosmaragdus_F_N : N ; -- [XXXNO] :: precious stone; emerald with veins of brass (malachite?) (L+S); + chalcus_M_N : N ; -- [XLHNO] :: copper coin (of small value, one tenth obol, one 60th or 40th of a drachma); + chalo_V2 : V2 ; -- [XXXEO] :: let down, allow to hang free; loosen; + chalybeius_A : A ; -- [XXXFO] :: of/consisting of iron(/steel); + chalybs_M_N : N ; -- [XWXCO] :: iron/steel; iron weapons/implements; sword (L+S); horse bit; arrow point; rail; + chama_F_N : N ; -- [XAXNS] :: bivalve shellfish, clam; cockle (L+S); + chama_N_N : N ; -- [XAXNS] :: lynx; (undeclined OLD); + chamaeacte_F_N : N ; -- [XAXNO] :: dwarf elder (Sambucus ebulus); danewort (L+S); + chamaecerasus_F_N : N ; -- [XAXNO] :: dwarf cheery tree (Prunus prostrata); + chamaecissos_F_N : N ; -- [XAXNO] :: ground ivy (Glecoma hederacea); kind of cyclamen; + chamaecyparissos_F_N : N ; -- [XAXNO] :: plant, lavender cotton? (Santolina chamaecyparissus); + chamaedaphne_F_N : N ; -- [XAXNO] :: periwinkle? (Vinca herbacea); butcher's broom? (Ruscus racemosus); dwarf laurel; + chamaedracon_M_N : N ; -- [XAAFS] :: kind of African serpent; ground serpent; + chamaedrops_F_N : N ; -- [XAXNS] :: dwarf palm? (Chamaerops humilis); germander? (Teucrium chamaedrys) (medicine); + chamaedrys_F_N : N ; -- [XAXNO] :: germander; (plant Teucrium chamaedrys); (medical); (pure Latin trixago L+S); 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_2_M_N : N ; -- [XAXNS] :: thistles; carline (Cardopatium corymbosum)/pine-thistle (Atractylis gummifera); + chamaeleon_2_N : N ; -- [XAXES] :: chameleon; (M/F OLD); lizard (Ecc); chamaeleon_F_N : N ; -- [XAXNS] :: thistles; carline (Cardopatium corymbosum)/pine-thistle (Atractylis gummifera); - chamaeleon_M_N : N ; - chamaeleuce_F_N : N ; - chamaemelinus_A : A ; - chamaemelon_N_N : N ; - chamaemelygos_F_N : N ; - chamaemilla_F_N : N ; - chamaemyrsine_F_N : N ; - chamaepeuce_F_N : N ; - chamaepitys_F_N : N ; - chamaeplatanus_F_N : N ; - chamaerops_F_N : N ; - chamaesyce_F_N : N ; - chamaetortus_A : A ; - chamaezelon_N_N : N ; - chamedyosmos_F_N : N ; - chamelaea_F_N : N ; - chamelea_F_N : N ; - chameunia_F_N : N ; - chamomilla_F_N : N ; - chamulcus_M_N : N ; - chancellarius_M_N : N ; - chane_F_N : N ; - chanius_A : A ; - channe_F_N : N ; - chara_F_N : N ; - characatus_A : A ; - characias_M_N : N ; - characites_M_N : N ; - character_M_N : N ; - characterismos_M_N : N ; - characterismus_M_N : N ; - charadrion_N_N : N ; - charadrius_M_N : N ; - charazo_V2 : V2 ; - charisma_N_N : N ; - charismaticus_A : A ; - charisticum_N_N : N ; - charistio_M_N : N ; - charistium_N_N : N ; - charitas_F_N : N ; - charitative_Adv : Adv ; - charitativus_A : A ; - charitonblepharon_N_N : N ; - charmidatus_A : A ; - charmido_V2 : V2 ; - charta_F_N : N ; - chartaceus_A : A ; - chartarius_A : A ; - chartarius_M_N : N ; - chartellum_N_N : N ; - charteus_A : A ; - chartiaticum_N_N : N ; - chartographia_F_N : N ; - chartophylax_M_N : N ; - chartopola_M_N : N ; - chartula_F_N : N ; - chartularius_M_N : N ; - chartus_M_N : N ; - charus_A : A ; - charybdis_F_N : N ; - chasma_N_N : N ; - chasmatias_M_N : N ; - chele_F_N : N ; - chelidon_F_N : N ; - chelidonia_F_N : N ; - chelidoniacus_A : A ; - chelidonias_M_N : N ; - chelidonium_N_N : N ; - chelidonius_A : A ; - chelium_N_N : N ; - chelonia_F_N : N ; - chelonitis_F_N : N ; - chelonium_N_N : N ; - chelydrus_M_N : N ; - chelyon_N_N : N ; - chelysos_F_N : N ; - chema_F_N : N ; - chemia_F_N : N ; - chemicus_A : A ; - chemicus_M_N : N ; - chemiotherapia_F_N : N ; - chemista_M_N : N ; - chenalopex_M_N : N ; - chenamyche_F_N : N ; - cheneros_F_N : N ; - cheniscus_M_N : N ; - chenoboscion_N_N : N ; - chenomyche_F_N : N ; - chenturio_V2 : V2 ; - cheragra_F_N : N ; - cheragricus_A : A ; - cheragricus_M_N : N ; - chere_Interj : Interj ; - cheregra_F_N : N ; - chernites_M_N : N ; - chernitis_F_N : N ; - cherolaba_F_N : N ; - chersinus_A : A ; - chersos_F_N : N ; - chersydros_M_N : N ; - chia_F_N : N ; - chianter_M_N : N ; - chiliarches_M_N : N ; - chiliarchus_M_N : N ; - chilias_F_N : N ; - chiliasta_M_N : N ; - chiliodynama_F_N : N ; - chiliodynamia_F_N : N ; - chiliogrammum_N_N : N ; - chiliometrum_N_N : N ; - chiliophylion_N_N : N ; - chiliovattium_N_N : N ; - chiloma_N_N : N ; - chimaerifer_A : A ; - chimerinus_A : A ; - chininum_N_N : N ; - chiragra_F_N : N ; - chiragricus_A : A ; - chiragricus_M_N : N ; - chiramaxium_N_N : N ; - chiregra_F_N : N ; - chiridota_F_N : N ; - chiridotus_A : A ; - chirocma_N_N : N ; - chirodytos_M_N : N ; - chirographarius_A : A ; - chirographon_N_N : N ; - chirographum_N_N : N ; - chirographus_M_N : N ; - chiromantis_M_N : N ; - chironomia_F_N : N ; + chamaeleon_M_N : N ; -- [XAXES] :: chameleon; (M/F OLD); lizard (Ecc); + chamaeleuce_F_N : N ; -- [XAXNO] :: coltsfoot; (Tussilago farfara); + chamaemelinus_A : A ; -- [DAXES] :: of/pertaining to chamomile; + chamaemelon_N_N : N ; -- [XAXNO] :: plant (chamomile?); + chamaemelygos_F_N : N ; -- [DAXFS] :: plant; (also called verbenaca); + chamaemilla_F_N : N ; -- [DAXFS] :: chamomile; + chamaemyrsine_F_N : N ; -- [XAXNO] :: butcher's broom (Ruscus aculeatus); dwarf myrtle (L+S); + chamaepeuce_F_N : N ; -- [XAXNO] :: plant (unidentified); ground larch (L+S); + chamaepitys_F_N : N ; -- [XAXEO] :: plant (genus Ajuga); hypericum/St John's wort; groundpine (abortifacient) (L+S); + chamaeplatanus_F_N : N ; -- [XAXNO] :: plane tree kept small by pruning, pollard plane; dwarf platane (L+S); + chamaerops_F_N : N ; -- [XAXNO] :: dwarf palm? (Chamaerops humilis); germander? (Teucrium chamaedrys) (medicine); + chamaesyce_F_N : N ; -- [XAXNO] :: kind of spurge (Euphorbia chamaesyce?); plant, wolf's-milk, ground fig (L+S); + chamaetortus_A : A ; -- [XXXFO] :: twisted to ground; that creeps on ground (L+S); + chamaezelon_N_N : N ; -- [XAXNO] :: plant, cinquefoil; gnaphalium, an unidentified plant; + chamedyosmos_F_N : N ; -- [DAXFS] :: rosemary; (pure Latin ros marinus); + chamelaea_F_N : N ; -- [XAXEO] :: dwarf olive (Daphne oleoides); shrub (thymelaea, Daphne gnidium?); + chamelea_F_N : N ; -- [XAXEO] :: dwarf olive (Daphne oleoides); shrub (thymelaea, Daphne gnidium?); + chameunia_F_N : N ; -- [DXXFS] :: couch on earth; + chamomilla_F_N : N ; -- [GXXEK] :: camomile; + chamulcus_M_N : N ; -- [DTXFS] :: kind of machine; + chancellarius_M_N : N ; -- [FEXEE] :: porter, doorkeeper; secretary; chancellor (ecclesiastical); diocesan official; + chane_F_N : N ; -- [XAXNS] :: sea-perch (Serranus cabrilla?); (Perca cabrilla L+S); + chanius_A : A ; -- [DPXFS] :: name of a foot of three long syllables (_ _ _) (w/pes); + channe_F_N : N ; -- [XAXEO] :: sea-perch (Serranus cabrilla?); (Perca cabrilla L+S); + chara_F_N : N ; -- [XAXFT] :: edible root, mixed with milk/forms loaf to stave off hunger (Caesar CW III); + characatus_A : A ; -- [XAXFO] :: staked, propped up; provided with stakes; + characias_M_N : N ; -- [XAXNS] :: reed for props/stakes; kind of spurge (wood spurge?); plant, wolf's-milk; + characites_M_N : N ; -- [XAXNS] :: plant, wolf's-milk; + character_M_N : N ; -- [XXXEO] :: branded/impressed letter/mark/etc; marking instrument; stamp, character, style; + characterismos_M_N : N ; -- [XXXFO] :: characterization; making prominent of characteristic marks (L+S); + characterismus_M_N : N ; -- [DXXFS] :: characterization; making prominent of characteristic marks (L+S); + charadrion_N_N : N ; -- [EAXFW] :: yellowish bird; charadrion; + charadrius_M_N : N ; -- [DAXFS] :: yellowish bird; chadadrion; + charazo_V2 : V2 ; -- [DTXES] :: scratch, engrave; + charisma_N_N : N ; -- [DEXES] :: gift, present; spiritual/God-given gift, grace, talent, charisma (Ecc); + charismaticus_A : A ; -- [FEXFE] :: charismatic, pertaining to spiritual/God-given gift/talent/charisma; + charisticum_N_N : N ; -- [XXXFS] :: money/allowance for buying papyrus/paper; + charistio_M_N : N ; -- [XSXIO] :: kind of weighing machine; + charistium_N_N : N ; -- [XXXES] :: annual family banquet 3 days after Parentalia (20 Feb.) where feuds settled; + charitas_F_N : N ; -- [XEXCF] :: charity; love of God; + charitative_Adv : Adv ; -- [XEXFF] :: charitably; in a charitable manner; + charitativus_A : A ; -- [XEXEF] :: charitable, loving, of a charitable nature; pertaining to charity; + charitonblepharon_N_N : N ; -- [XAXNS] :: magical plant producing love; + charmidatus_A : A ; -- [BDXFS] :: become Charmides (comic character in Platuus' play Trinummus); + charmido_V2 : V2 ; -- [BDXFO] :: Charmidize, turn into Charmides (comic character in Plautus' play Trinummus); + charta_F_N : N ; -- [XXXBO] :: paper/papyrus (sheet); record/letter, book/writing(s); thin metal sheet/leaf; + chartaceus_A : A ; -- [XXXFO] :: paper-/papyrus-; (made) of papyrus/paper; + chartarius_A : A ; -- [XXXEO] :: connected with making of papyrus/paper; used for papyrus/paper; + chartarius_M_N : N ; -- [XXXFO] :: maker of/dealer in papyrus/paper; + chartellum_N_N : N ; -- [GXXEK] :: cartel; + charteus_A : A ; -- [XXXFO] :: of/pertaining to papyrus/paper; [~ statium => literary arena/occupation]; + chartiaticum_N_N : N ; -- [XXXFO] :: money/allowance for buying papyrus/paper; + chartographia_F_N : N ; -- [GXXEK] :: cartography; + chartophylax_M_N : N ; -- [XXXIS] :: archivist, keeper of archives; + chartopola_M_N : N ; -- [XXXFS] :: merchant/dealer in papyrus/paper; + chartula_F_N : N ; -- [XXXFO] :: scrap/piece of papyrus; small note, bill (L+S); small piece of paper (Ecc); + chartularius_M_N : N ; -- [DLXFS] :: court archivist, keeper of archives (of court); + chartus_M_N : N ; -- [XXXFO] :: paper/papyrus (sheet); record/letter, book/writing(s); thin metal sheet/leaf; + charus_A : A ; -- [FXXCE] :: dear, beloved; costly, precious, valued; high-priced, expensive; + charybdis_F_N : N ; -- [FXXEM] :: whirlpool; (see also Charybdis); + chasma_N_N : N ; -- [XXXDO] :: chasm/fissure/opening in earth, abyss; supposed meteoric phenomenon; + chasmatias_M_N : N ; -- [DSXES] :: earthquake that leaves chasms/fissures/openings in earth; + chele_F_N : N ; -- [XXXCO] :: claw-shaped mechanism; trigger; Scorpio' claws (pl.) that extend to Libra, Libra + chelidon_F_N : N ; -- [XBXFO] :: female pudenda/genitalia; (Juvenalis?); (rude); + chelidonia_F_N : N ; -- [XAXNO] :: greater celandine (Chelidonium maius)/swallowwort; kind of fig; precious stone; + chelidoniacus_A : A ; -- [DAXFS] :: pointed like a swallow's tail; + chelidonias_M_N : N ; -- [XSXNO] :: west wind; (blowing after 22 Feb. when swallows arrive); + chelidonium_N_N : N ; -- [XAXEO] :: lesser celandine (Ranunculus ficaria); eye-salve containing celandine juice; + chelidonius_A : A ; -- [XAXEO] :: of/belonging to swallow; resembling swallow in color, reddish (fig); + chelium_N_N : N ; -- [XAXNO] :: shell of a horned tortoise; + chelonia_F_N : N ; -- [XXXNO] :: precious stone; tortoise-stone (L+S); + chelonitis_F_N : N ; -- [XXXNO] :: precious stone; (like a tortoise L+S); + chelonium_N_N : N ; -- [FXXEK] :: staple; + chelydrus_M_N : N ; -- [XAXDO] :: venomous water-snake; + chelyon_N_N : N ; -- [XAXNS] :: shell of horned tortoise; + chelysos_F_N : N ; -- [XAXCO] :: tortoise; lyre/harp (made originally from a tortoise shell); constellation Lyra; + chema_F_N : N ; -- [DSXFS] :: liquid measure; (one third of a mystrum, one 48th of a sextarius/pint); + chemia_F_N : N ; -- [GSXEK] :: chemistry; + chemicus_A : A ; -- [GSXEK] :: chemical; + chemicus_M_N : N ; -- [GSXEK] :: chemist; + chemiotherapia_F_N : N ; -- [HBXEK] :: chemotherapy; + chemista_M_N : N ; -- [GXXEK] :: chemist; + chenalopex_M_N : N ; -- [XAENO] :: Egyptian goose (Chenalopex aegyptiaca); + chenamyche_F_N : N ; -- [XAQNO] :: thorny oriental plant (reputed to become luminous at night); + cheneros_F_N : N ; -- [XAXNO] :: small kind of goose; (Anas clipeata? L+S); + cheniscus_M_N : N ; -- [XWXFO] :: figure on stern of a ship resembling a goose; gosling; + chenoboscion_N_N : N ; -- [XAXEO] :: goose pen; place for feeding geese; + chenomyche_F_N : N ; -- [XAQNS] :: thorny oriental plant (reputed to become luminous at night); + chenturio_V2 : V2 ; -- [XWXFO] :: arrange/assign (soldiers) in military centuries; divide land into centuriae; + cheragra_F_N : N ; -- [XBXCO] :: pain in hands, arthritis/gout in hands; + cheragricus_A : A ; -- [XBXFS] :: suffering from cheragra/pain/arthritis/gout in hands; + cheragricus_M_N : N ; -- [XBXEO] :: person suffering from cheragra/pains/arthritis/gout in hands; + chere_Interj : Interj ; -- [XXXDO] :: welcome; hail (L+S); + cheregra_F_N : N ; -- [XXXEC] :: gout in hands; + chernites_M_N : N ; -- [XXXNO] :: white marble; marble resembling ivory (L+S); + chernitis_F_N : N ; -- [XXXNO] :: precious stone; + cherolaba_F_N : N ; -- [XXXFO] :: handle; handspike; + chersinus_A : A ; -- [XXXNO] :: living on dry land, land-; + chersos_F_N : N ; -- [XAXFO] :: land tortoise; kind of toad (L+S); + chersydros_M_N : N ; -- [XAXNO] :: amphibious serpent, water snake; + chia_F_N : N ; -- [XAXFO] :: Chian fig; (Chios/Chius island in Aegean off Ionia); + chianter_M_N : N ; -- [FEXEE] :: choirboy; + chiliarches_M_N : N ; -- [XWHFO] :: officer commanding a thousand men in a Greek army; (battalion commander, LTC); + chiliarchus_M_N : N ; -- [XWHFO] :: officer commanding a thousand men in a Greek army; (battalion commander, LTC); + chilias_F_N : N ; -- [XSXFS] :: number 1000, a chiliad, a group of a thousand (things/years); + chiliasta_M_N : N ; -- [DEXFS] :: believers (pl.) in millennial kingdom; + chiliodynama_F_N : N ; -- [XAXNS] :: unidentified plant; (medicinal, of a thousand virtues L+S); + chiliodynamia_F_N : N ; -- [XAXNO] :: unidentified plant; (medicinal, of a thousand virtues L+S); + chiliogrammum_N_N : N ; -- [GXXEK] :: kilogram; + chiliometrum_N_N : N ; -- [GXXEK] :: kilometer; + chiliophylion_N_N : N ; -- [DAXFS] :: unidentified plant; (thousand leaves); + chiliovattium_N_N : N ; -- [GXXEK] :: kilowatt; + chiloma_N_N : N ; -- [XXXFO] :: box, coffer; + chimaerifer_A : A ; -- [XYXEC] :: producing the Chimaera; + chimerinus_A : A ; -- [XSXIO] :: of winter; + chininum_N_N : N ; -- [GXXEK] :: quinine; + chiragra_F_N : N ; -- [XBXCO] :: pain in hands, arthritis/gout in hands; + chiragricus_A : A ; -- [XBXFS] :: suffering from cheragra/pain/arthritis/gout in hands; + chiragricus_M_N : N ; -- [XBXEO] :: person suffering from cheragra/pain//arthritis/gout in hands; + chiramaxium_N_N : N ; -- [XXXFO] :: hand-cart; small carriage drawn by slaves (L+S); + chiregra_F_N : N ; -- [XXXEC] :: gout in hands; + chiridota_F_N : N ; -- [XXXFO] :: sleeved shirt; (with or without tunica); + chiridotus_A : A ; -- [XXXFO] :: sleeved, with sleeves; [w/tunica => sleeved shirt]; + chirocma_N_N : N ; -- [XXXNO] :: manufactures (pl.); (name of a book by Democritus); made by hand (L+S); + chirodytos_M_N : N ; -- [XXXFO] :: unidentified garment; (chiridota is a sleeved shirt); + chirographarius_A : A ; -- [XLXFO] :: holding a written bond; in/pertaining to handwriting/manuscript; + chirographon_N_N : N ; -- [DLXCO] :: own handwriting; handwritten document, manuscript; written bond/charter/promise; + chirographum_N_N : N ; -- [XLXCO] :: own handwriting; handwritten document, manuscript; written bond/charter/promise; + chirographus_M_N : N ; -- [XLXCS] :: own handwriting; handwritten document, manuscript; written bond/charter/promise; + chiromantis_M_N : N ; -- [GXXEK] :: palmist; + chironomia_F_N : N ; -- [XDXFO] :: rules of gesticulation; art of gesturing (L+S); gesticulation; pantomine; chironomon_1_N : N ; -- [XDXFO] :: pantomime; one who gestures according to the rules of art; - chironomon_2_N : N ; - chironomon_A : A ; - chironomos_A : A ; + chironomon_2_N : N ; -- [XDXFO] :: pantomime; one who gestures according to the rules of art; + chironomon_A : A ; -- [XDXFO] :: gesticulating; pantomime (L+S); + chironomos_A : A ; -- [XDXFO] :: pantomimic, of/like a pantomime, with gestures; 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 ; - chirurgicus_A : A ; - chirurgius_A : A ; - chirurgus_A : A ; - chirurgus_M_N : N ; - chium_N_N : N ; - chlamis_F_N : N ; - chlamyda_F_N : N ; - chlamydatus_A : A ; + chironomos_M_N : N ; -- [XDXFS] :: pantomime; one who gestures according to the rules of art; + chirotheca_F_N : N ; -- [FXDFV] :: glove, mitten; gauntlet (Erasmus); + chirurgia_F_N : N ; -- [XBXEO] :: surgery; violent remedy (L+S); + chirurgicus_A : A ; -- [FBXEE] :: surgical; + chirurgius_A : A ; -- [XBXFO] :: surgical; + chirurgus_A : A ; -- [XBXFO] :: of/pertaining to a surgeon; + chirurgus_M_N : N ; -- [XBXEO] :: surgeon; (pure Latin medicus vulnerarius L+S); + chium_N_N : N ; -- [XAXNO] :: small single seed of Alpine Raetic grape; Chian wine; + chlamis_F_N : N ; -- [XWXCO] :: Greek cloak/cape frequently for military use; state mantle; cloak, mantle; + chlamyda_F_N : N ; -- [EWXEE] :: Greek cloak/cape frequently for military use; state mantle; cloak, mantle; + chlamydatus_A : A ; -- [XWXEO] :: dressed in a (military) cloak/cape; chlamys_1_N : N ; -- [XWXCO] :: Greek cloak/cape frequently for military use; state mantle; cloak, mantle; - chlamys_2_N : N ; - chlamys_F_N : N ; - chlora_F_N : N ; - chloreus_M_N : N ; - chlorion_M_N : N ; - chloritis_F_N : N ; - chloroformium_N_N : N ; - chloron_N_N : N ; - chlorophyllum_N_N : N ; - chlorum_N_N : N ; - choaspites_F_N : N ; - choaspitis_F_N : N ; - choenica_F_N : N ; - choenix_F_N : N ; - choeras_F_N : N ; - choerogrillus_M_N : N ; - choerogryllus_M_N : N ; - choerogyllius_M_N : N ; - choeros_M_N : N ; - choicus_A : A ; - cholera_F_N : N ; - cholericus_M_N : N ; - choliambus_M_N : N ; - cholras_M_N : N ; - choma_N_N : N ; - chondrille_F_N : N ; - chondrillon_N_N : N ; - chondris_F_N : N ; - chondrylla_F_N : N ; - chondrylle_F_N : N ; - chora_F_N : N ; - choragiarius_M_N : N ; - choragium_N_N : N ; - choragius_M_N : N ; - choragus_M_N : N ; - choralis_A : A ; - choraula_M_N : N ; - choraule_F_N : N ; - choraules_M_N : N ; - choraulicus_A : A ; - choraulis_M_N : N ; - chorda_F_N : N ; - chordacista_M_N : N ; - chordapsus_M_N : N ; - chordula_F_N : N ; - chordus_A : A ; - chorea_F_N : N ; - chorepiscopus_M_N : N ; - choreus_M_N : N ; - choreutes_M_N : N ; - choriambicus_A : A ; - choriambus_M_N : N ; - choricum_N_N : N ; - choricus_A : A ; - chorioides_M_N : N ; - chorion_N_N : N ; - chorios_M_N : N ; - chorista_M_N : N ; - chorius_M_N : N ; - chorobates_M_N : N ; - chorocitharistes_M_N : N ; - chorographia_F_N : N ; - chorographus_M_N : N ; - chorona_F_N : N ; - chors_F_N : N ; - chortalinus_A : A ; - chortalis_A : A ; - chortinus_A : A ; - chorus_M_N : N ; - chrematista_M_N : N ; - chreston_N_N : N ; - chria_F_N : N ; - chrisma_N_N : N ; - chrismale_N_N : N ; - chrismalis_A : A ; - chrismarium_N_N : N ; - chrismatio_F_N : N ; - chrismatorium_N_N : N ; + chlamys_2_N : N ; -- [XWXCO] :: Greek cloak/cape frequently for military use; state mantle; cloak, mantle; + chlamys_F_N : N ; -- [XWXCO] :: Greek cloak/cape frequently for military use; state mantle; cloak, mantle; + chlora_F_N : N ; -- [XXXNO] :: variety of emerald; + chloreus_M_N : N ; -- [XAXNO] :: unidentified bird; (greenish bird L+S); + chlorion_M_N : N ; -- [XAXNO] :: golden oriole (Oriolus galbula); yellow bird, yellow thrush (L+S); + chloritis_F_N : N ; -- [XXXNO] :: green precious stone; smaragdoprasus? (L+S); + chloroformium_N_N : N ; -- [GBXEK] :: chloroform; + chloron_N_N : N ; -- [XBXIO] :: kind of eye-salve; + chlorophyllum_N_N : N ; -- [GAXEK] :: chlorophyll; + chlorum_N_N : N ; -- [GXXEK] :: chlorine; + choaspites_F_N : N ; -- [XXXNS] :: precious stone; (found in the Choaspes L+S); + choaspitis_F_N : N ; -- [XXXNO] :: precious stone; (found in the Choaspes L+S); + choenica_F_N : N ; -- [XSXFO] :: dry measure (equal to 2 sextarii) (about a quart); + choenix_F_N : N ; -- [XSXFS] :: dry measure (equal to 2 sextarii) (about a quart); + choeras_F_N : N ; -- [DBXFS] :: scrofula, king's evil; (chronic lymph gland enlargement); (pure Latin struma); + choerogrillus_M_N : N ; -- [EAXEE] :: kind of hare; coney (King James); small gregarious quadruped (Hydrax Syriacus); + choerogryllus_M_N : N ; -- [DAXES] :: kind of hare; coney (King James); small gregarious quadruped (Hydrax Syriacus); + choerogyllius_M_N : N ; -- [DAXES] :: kind of hare; coney (King James); small gregarious quadruped (Hydrax Syriacus); + choeros_M_N : N ; -- [XAXFO] :: pig; female pudenda/external genitalia (Greek for porcus/women's nursery term); + choicus_A : A ; -- [DXXCS] :: of/made of earth/clay; + cholera_F_N : N ; -- [XBXCO] :: European/summer cholera (cholera nostras); an attack of cholera; + cholericus_M_N : N ; -- [XBXNO] :: person suffering from European cholera; + choliambus_M_N : N ; -- [DPXFS] :: limping iambus; (iambic verse whose last foot not iambus but spondee/trochee); + cholras_M_N : N ; -- [XXXNO] :: variety of emerald; + choma_N_N : N ; -- [XTXFO] :: bank, mound; dike, dam; + chondrille_F_N : N ; -- [XAXNO] :: plant, gum succory? (Chondrilla funcea); Spanish savory, endive/chicory (L+S); + chondrillon_N_N : N ; -- [XAXNS] :: plant, gum succory? (Chondrilla funcea); Spanish savory, endive/chicory (L+S); + chondris_F_N : N ; -- [XAXNS] :: |plant, kind of horehound resembling marjoram (Marrubium pseudodictamnus); + chondrylla_F_N : N ; -- [XAXNO] :: plant, gum succory? (Chondrilla funcea); Spanish savory, endive/chicory (L+S); + chondrylle_F_N : N ; -- [XAXNS] :: plant, gum succory? (Chondrilla funcea); Spanish savory, endive/chicory (L+S); + chora_F_N : N ; -- [XXXIO] :: site for a monument; + choragiarius_M_N : N ; -- [XDXIO] :: supplier of stage equipment/properties/gear/trappings; + choragium_N_N : N ; -- [XDXCS] :: place where chorus practiced; preparing chorus; splendid preparation; a spring; + choragius_M_N : N ; -- [XDXIO] :: theatrical supplier, one supplying equipment/properties to dramatic company; + choragus_M_N : N ; -- [XDXCS] :: |theatrical supplier, one supplying equipment/properties to dramatic company; + choralis_A : A ; -- [FEXEE] :: choral; + choraula_M_N : N ; -- [XDXEO] :: player on reed pipes; flute player (L+S); + choraule_F_N : N ; -- [XDXIO] :: player (female) on reed pipes; flute player (L+S); + choraules_M_N : N ; -- [XDXCO] :: player on reed pipes; flute player (L+S); + choraulicus_A : A ; -- [DDXES] :: of/belonging to player on reed pipes; of/belonging to flute player (L+S); + choraulis_M_N : N ; -- [FEXEE] :: young chorister, choirboy; + chorda_F_N : N ; -- [XXXCO] :: tripe; catgut, musical instrument (string); rope/cord (binding slave) (L+S); + chordacista_M_N : N ; -- [DDXFS] :: player on a stringed instrument; + chordapsus_M_N : N ; -- [DBXFS] :: disease of intestines; + chordula_F_N : N ; -- [EXXFE] :: tape, ribbon; cord; + chordus_A : A ; -- [AAXCS] :: late-born/produced out of/late in season; second (crop of hay), aftermath; + chorea_F_N : N ; -- [XDXCO] :: round/ring dance; dancers; planet movement; magistrate court; multitude; choir; + chorepiscopus_M_N : N ; -- [DEXFS] :: deputy bishop for village; auxiliary/suffragan bishop; + choreus_M_N : N ; -- [XPXEO] :: choree/trochee, metrical foot consisting of a long and a short syllable (_U); + choreutes_M_N : N ; -- [XDXFO] :: choral dancer; + choriambicus_A : A ; -- [XPXFO] :: choriambic; having metrical foot consisting of a chorius and an iambus (_UU_); + choriambus_M_N : N ; -- [XPXFO] :: metrical foot consisting of a chorius and an iambus (_UU_); + choricum_N_N : N ; -- [XDXFO] :: choral part of a play; + choricus_A : A ; -- [DDXFS] :: of chorus/choir, choral; (w/metrum) anapaestic verse (hypercatalectic dipody); + chorioides_M_N : N ; -- [XBXFO] :: choriod coat of eye; + chorion_N_N : N ; -- [XBXFO] :: membrane enclosing the fetus, afterbirth; + chorios_M_N : N ; -- [XPXEO] :: choree/trochee, metrical foot consisting of a long and a short syllable (_U); + chorista_M_N : N ; -- [FEXEE] :: chorister, choir member; + chorius_M_N : N ; -- [XPXEO] :: choree/trochee, metrical foot consisting of a long and a short syllable (_U); + chorobates_M_N : N ; -- [XTXFO] :: level, instrument consisting of a long pole with a groove for water; + chorocitharistes_M_N : N ; -- [XDXFO] :: one who accompanied a chorus on lyre/chithara; + chorographia_F_N : N ; -- [XSXFO] :: work of geography, geography book; + chorographus_M_N : N ; -- [XSXFS] :: geographer?, one who describes countries?; + chorona_F_N : N ; -- [XXXEO] :: crown, garland, wreath; circle/cordon of men/troops; + chors_F_N : N ; -- [XWXAO] :: |cohort, tenth part of legion (360 men); armed force; band; ship crew; bodyguard + chortalinus_A : A ; -- [DWXES] :: of/pertaining to an imperial/praetorian bodyguard (cohort); + chortalis_A : A ; -- [XWXIO] :: |of/connected with a military/praetorian cohort/company/guard; + chortinus_A : A ; -- [XAXNO] :: made from grass or fodder; + chorus_M_N : N ; -- [FEXEE] :: ||choir; singing; sanctuary; those in sanctuary; + chrematista_M_N : N ; -- [GXXEK] :: agent of change; + chreston_N_N : N ; -- [XAXNO] :: chicory (Cichorium intybus); + chria_F_N : N ; -- [XGXFO] :: topic of general application set for study/exercise in grammar/rhetoric school; + chrisma_N_N : N ; -- [DEXCS] :: anointing, unction; sacred oils; + chrismale_N_N : N ; -- [EEXEE] :: linen cloth; winding-sheet/cerecloth; corporal (over mass remnants), pyx; pall; + chrismalis_A : A ; -- [EEXFE] :: pertaining to chrisma/sacred oils; + chrismarium_N_N : N ; -- [EEXEE] :: vessel for chrisma/sacred oils; + chrismatio_F_N : N ; -- [EEXDE] :: anointing with chrisma/sacred oils; + chrismatorium_N_N : N ; -- [EEXFE] :: linen cloth; winding-sheet/cerecloth; corporal (over mass remnants), pyx; pall; 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 ; + chroma_2_N : N ; -- [XDXFO] :: chromatic scale (divided tetrachord into 2 intervals of 1 semitone and 1 of 3); + chromatice_F_N : N ; -- [XDXFO] :: note in chromatic scale; science of chromatic harmony (L+S); + chromaticos_A : A ; -- [XDXFO] :: chromatic; (divided tetrachord into 2 intervals of 1 semitone and 1 of 3); + chromaticus_A : A ; -- [DDXFS] :: chromatic; (divided tetrachord into 2 intervals of 1 semitone and 1 of 3); chromis_F_N : N ; -- [XAXEO] :: sea fish; (Umbrina cirrosa?); - chromis_M_N : N ; - chromium_N_N : N ; - chromosoma_N_N : N ; - chromosomaticus_A : A ; - chronica_F_N : N ; - chronicon_N_N : N ; - chronicum_N_N : N ; - chronicus_A : A ; - chronista_M_N : N ; - chronius_A : A ; - chronographus_M_N : N ; - chronologia_F_N : N ; - chronologicus_A : A ; - chrysallis_F_N : N ; - chrysanthemon_N_N : N ; - chrysanthemum_N_N : N ; - chrysanthes_F_N : N ; - chrysanthus_M_N : N ; - chrysatticum_N_N : N ; - chryselectros_F_N : N ; - chryselectrum_N_N : N ; - chryselectrus_F_N : N ; - chrysendetum_N_N : N ; - chrysendetus_A : A ; - chryseum_N_N : N ; - chryseus_A : A ; - chrysites_M_N : N ; - chrysitis_A : A ; - chrysitis_F_N : N ; - chrysizon_A : A ; - chrysoaspides_A : A ; - chrysoberullus_M_N : N ; - chrysoberyllus_M_N : N ; - chrysocalis_F_N : N ; - chrysocanthos_F_N : N ; - chrysocarpos_A : A ; - chrysocarpus_A : A ; - chrysocephalos_M_N : N ; - chrysococcus_A : A ; - chrysocolla_F_N : N ; - chrysocome_F_N : N ; - chrysographatus_A : A ; - chrysolachanum_N_N : N ; - chrysolampis_F_N : N ; + chromis_M_N : N ; -- [XAXEO] :: sea fish; (Umbrina cirrosa?); + chromium_N_N : N ; -- [GSXEK] :: chromium; + chromosoma_N_N : N ; -- [HSXEK] :: chromosome; + chromosomaticus_A : A ; -- [HSXEK] :: chromosomal; + chronica_F_N : N ; -- [EXXEB] :: book of annuals, chronicles (pl.); + chronicon_N_N : N ; -- [EXXEE] :: book of annuals, chronicle; + chronicum_N_N : N ; -- [XXXEO] :: book of annuals, chronicle; + chronicus_A : A ; -- [XXXFO] :: written as annual/chronicle; pertaining to time; chronic/lingering (L+S); + chronista_M_N : N ; -- [EEXEE] :: chronicler; person who chants narrative parts in the_Passion; + chronius_A : A ; -- [DBXFS] :: chronic, lingering; + chronographus_M_N : N ; -- [DXXFS] :: chronographer, annalist, chronicler; + chronologia_F_N : N ; -- [FXXEE] :: chronology; + chronologicus_A : A ; -- [FXXFE] :: chronological; + chrysallis_F_N : N ; -- [XAXNO] :: chrysalis; gold-colored chrysalis, aurelia/pupa of a butterfly (L+S); + chrysanthemon_N_N : N ; -- [XAXNO] :: several plants of order Compositae; marigold (L+S); + chrysanthemum_N_N : N ; -- [XAXNO] :: several plants of order Compositae; marigold (L+S); + chrysanthes_F_N : N ; -- [XAXFS] :: name of several plants of order Compositae; marigold (L+S); + chrysanthus_M_N : N ; -- [XAXFO] :: name of several plants of order Compositae; marigold (L+S); + chrysatticum_N_N : N ; -- [EAXFP] :: golden-attic wine; + chryselectros_F_N : N ; -- [XXXNO] :: amber-colored gem; (classed by Pliny with hyacinthus); + chryselectrum_N_N : N ; -- [XXXNO] :: gold-colored amber; + chryselectrus_F_N : N ; -- [XXXNS] :: dark-yellow precious stone; amber-colored jacinth/hyacinth-stone?; + chrysendetum_N_N : N ; -- [XXXFO] :: things (e.g. dishes) inlaid with gold; + chrysendetus_A : A ; -- [XXXFO] :: inlaid with gold; set in/with gold; + chryseum_N_N : N ; -- [DXXFS] :: gold/gold-colored/golden vessels/dishes; + chryseus_A : A ; -- [DXXFS] :: gold-colored, golden; + chrysites_M_N : N ; -- [XXXNS] :: kind of precious stone; phloginos (flame-colored gem); another gold-colored gem; + chrysitis_A : A ; -- [XXXNS] :: gold-colored, golden; of golden color; + chrysitis_F_N : N ; -- [XXXNS] :: plant (Chrysocoma linosyris?); unidentified precious stone; a native lead oxide; + chrysizon_A : A ; -- [XXXNO] :: gold-colored, golden; of golden color; + chrysoaspides_A : A ; -- [DWXFS] :: bearing golden shields (kind of soldier serving under Alexander Severus); + chrysoberullus_M_N : N ; -- [XXXNO] :: gold-colored beryl; chrysoberyl (L+S); + chrysoberyllus_M_N : N ; -- [XXXNS] :: gold-colored beryl; chrysoberyl (L+S); + chrysocalis_F_N : N ; -- [DAXFS] :: plant; (also called parthenium); + chrysocanthos_F_N : N ; -- [DAXFS] :: kind of ivy having golden berries; + chrysocarpos_A : A ; -- [XAXNO] :: having golden berries; + chrysocarpus_A : A ; -- [XAXNO] :: having golden berries; + chrysocephalos_M_N : N ; -- [DAXFS] :: golden basilisk; + chrysococcus_A : A ; -- [DAXFS] :: having golden grains; + chrysocolla_F_N : N ; -- [XXXCO] :: green copper carbonate/malachite (pigment/medicine); stone (magnetic pyrite?); + chrysocome_F_N : N ; -- [XAXNO] :: plant (Chrysocoma linosyris?); + chrysographatus_A : A ; -- [XXXFS] :: inlaid with gold; + chrysolachanum_N_N : N ; -- [XAXNO] :: plant (orach?); garden orachn; (also called atriplex L+S); + chrysolampis_F_N : N ; -- [XXXNO] :: unidentified precious stone; chrysolithos_F_N : N ; -- [XXXEO] :: topaz; chrysolite (L+S); - chrysolithos_M_N : N ; - chrysolithus_M_N : N ; - chrysolitus_C_N : N ; - chrysomallus_A : A ; - chrysomelinus_A : A ; - chrysomelum_N_N : N ; - chrysopastus_F_N : N ; - chrysophrysos_F_N : N ; - chrysopis_F_N : N ; - chrysoprasius_A : A ; - chrysoprasos_F_N : N ; - chrysoprassos_F_N : N ; - chrysoprassus_F_N : N ; - chrysoprasum_N_N : N ; - chrysoprasus_M_N : N ; - chrysopteros_A : A ; - chrysos_M_N : N ; - chrysothales_F_N : N ; - chrysus_M_N : N ; + chrysolithos_M_N : N ; -- [XXXEO] :: topaz; chrysolite (L+S); + chrysolithus_M_N : N ; -- [EXXEE] :: topaz; chrysolite (L+S); + chrysolitus_C_N : N ; -- [EXXEW] :: topaz; chrysolite; (Vulgate); + chrysomallus_A : A ; -- [XAXFO] :: having a golden fleece; + chrysomelinus_A : A ; -- [XAXNO] :: variety of quince (w/mala); + chrysomelum_N_N : N ; -- [XAXNO] :: variety of quince; + chrysopastus_F_N : N ; -- [DXXFS] :: species of topaz; + chrysophrysos_F_N : N ; -- [XAXEO] :: fish; (gilt-head? Sparus aurata); + chrysopis_F_N : N ; -- [XXXNO] :: unidentified precious stone; precious topaz (L+S); + chrysoprasius_A : A ; -- [XXXNS] :: variety of precious stone (chrysoprase/golden-green beryl and like); + chrysoprasos_F_N : N ; -- [XXXCO] :: precious stone, chrysoprase; (golden-green beryl and like); + chrysoprassos_F_N : N ; -- [EXXCW] :: precious stone, chrysoprase; (golden-green beryl and like); + chrysoprassus_F_N : N ; -- [EXXCW] :: precious stone, chrysoprase; (golden-green beryl and like); + chrysoprasum_N_N : N ; -- [XXXCO] :: precious stone, chrysoprase; (golden-green beryl and like); + chrysoprasus_M_N : N ; -- [FXXCE] :: precious stone, chrysoprase; (golden-green beryl and like); + chrysopteros_A : A ; -- [XXXNO] :: golden-winged; (of a kind of jasper); + chrysos_M_N : N ; -- [BXXFS] :: gold; [chrysos melas => black ivy]; + chrysothales_F_N : N ; -- [XAXNS] :: kind of aizoon/houseleek, wall-pepper; + chrysus_M_N : N ; -- [XXXFO] :: gold; 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 ; - chymus_M_N : N ; - chyrogrillius_M_N : N ; - chyrogryllius_M_N : N ; - chytropus_M_N : N ; - cibalis_A : A ; - cibarium_N_N : N ; - cibarius_A : A ; - cibatio_F_N : N ; - cibatus_M_N : N ; - cibdelus_A : A ; - cibicida_M_N : N ; - cibisis_F_N : N ; - cibo_V2 : V2 ; - ciboria_F_N : N ; - ciborium_N_N : N ; - cibus_M_N : N ; - cicada_F_N : N ; - cicaro_M_N : N ; - cicatrico_V2 : V2 ; - cicatricor_V : V ; - cicatricosus_A : A ; - cicatricula_F_N : N ; - cicatrix_F_N : N ; - ciccum_N_N : N ; - cicer_N_N : N ; - cicera_F_N : N ; - cicercula_F_N : N ; - cicerculum_N_N : N ; - cichoreum_N_N : N ; - cichorion_N_N : N ; - cichorium_N_N : N ; - cici_N : N ; - cicilendrum_N_N : N ; - cicilinus_A : A ; - cicimalindrum_N_N : N ; - cicimandrum_N_N : N ; - cicindela_F_N : N ; - cicindele_N_N : N ; - cicinus_A : A ; - ciconia_F_N : N ; - ciconius_A : A ; - cicuma_F_N : N ; - cicur_A : A ; - cicur_M_N : N ; - cicuro_V2 : V2 ; - cicuta_F_N : N ; - cicuticen_M_N : N ; - cidaris_F_N : N ; - cieo_V2 : V2 ; - cignus_M_N : N ; - cilibantum_N_N : N ; - cilicarius_M_N : N ; - cilicinus_A : A ; - ciliciolum_N_N : N ; - cilicium_N_N : N ; - cilio_M_N : N ; - cilium_N_N : N ; - cilliba_F_N : N ; - cillo_M_N : N ; - cillo_V2 : V2 ; - cilo_M_N : N ; - cilotrum_N_N : N ; - cimeliarcha_M_N : N ; - cimeliarchium_N_N : N ; - cimelium_N_N : N ; - cimenterium_N_N : N ; - cimex_M_N : N ; - cimico_V : V ; - ciminterium_N_N : N ; - cimintorium_N_N : N ; - cimiterium_N_N : N ; - cinaedia_F_N : N ; - cinaedias_M_N : N ; - cinaedicus_A : A ; - cinaedicus_C_N : N ; - cinaedium_N_N : N ; - cinaedius_C_N : N ; - cinaedologos_M_N : N ; - cinaedulus_M_N : N ; - cinaedus_A : A ; - cinaedus_M_N : N ; - cinara_F_N : N ; - cinaris_F_N : N ; - cincinnalis_A : A ; - cincinnatus_A : A ; - cincinnus_M_N : N ; - cincticulus_M_N : N ; - cinctor_M_N : N ; - cinctorium_N_N : N ; - cinctum_N_N : N ; - cinctura_F_N : N ; - cinctus_A : A ; - cinctus_M_N : N ; - cinctutus_A : A ; - cindecoe_Adv : Adv ; - cinefactus_A : A ; - cinemateum_N_N : N ; - cinematicus_A : A ; - cinematographeum_N_N : N ; - cinematographicus_A : A ; - cinematographicus_M_N : N ; - cinematographo_V : V ; - cinematographus_M_N : N ; + chus_2_N : N ; -- [DSXFS] :: liquid measure; (equal to congius/3 quarts); + chydaeus_A : A ; -- [XXXNO] :: common, ordinary; kind of palms (L+S); + chylisma_N_N : N ; -- [XAXFO] :: extracted/expressed juice (of plants); + chylus_M_N : N ; -- [DAXFS] :: extracted/expressed juice (of plants); + chymus_M_N : N ; -- [DBXFS] :: stomach juices/fluid, chyle; + chyrogrillius_M_N : N ; -- [EAQFW] :: coney (of King James Bible, small gregarious quadruped (Hydrax Syriacus); hare; + chyrogryllius_M_N : N ; -- [EAQFW] :: coney (of King James Bible, small gregarious quadruped (Hydrax Syriacus); hare; + chytropus_M_N : N ; -- [DXXFS] :: chafing dish/pot with feet (for cooking directly over coals on ground); + cibalis_A : A ; -- [DXXFS] :: of/pertaining to food; [w/fistula => esophagus/gullet]; + cibarium_N_N : N ; -- [XXXCS] :: shorts, coarser meal remaining after fine flour; ordinary musician; + cibarius_A : A ; -- [XXXCO] :: of/concerning food/rations, ration-; plain/common/servant (food), black (bread); + cibatio_F_N : N ; -- [DXXES] :: meal, repast; feeding; + cibatus_M_N : N ; -- [XAXCO] :: food, nutriment, victuals; fodder; + cibdelus_A : A ; -- [XXXFS] :: spurious, base; [w/fontes => impure/unhealthy spring/source]; + cibicida_M_N : N ; -- [XXXFO] :: eater, consumer of food; (food killer); waste of bread/food (lazy slave) (L+S); + cibisis_F_N : N ; -- [XXXFO] :: satchel; + cibo_V2 : V2 ; -- [XXXEO] :: feed, give food/fodder to animals/men; (also passive sense) eat, take food; + ciboria_F_N : N ; -- [DAEFS] :: Egyptian bean (Nelumbo nucifera); (Arum colocasia L+S); + ciborium_N_N : N ; -- [XXXFO] :: drinking cup; (made of/shaped like flower of Egyptian bean Nelumbo nucifera); + cibus_M_N : N ; -- [XXXAO] :: food; fare, rations; nutriment, sustenance, fuel; eating, a meal; bait; + cicada_F_N : N ; -- [XAXCO] :: cicada, tree-cricket; Athenian hair ornament in shape of cicada; summer season; + cicaro_M_N : N ; -- [XXXFO] :: little boy, darling; + cicatrico_V2 : V2 ; -- [XBXFO] :: form a scar over; + cicatricor_V : V ; -- [DBXCS] :: be scarred over/cicatrized; + cicatricosus_A : A ; -- [XBXCO] :: scarred, covered by scars; marked by pruning (plant); edited/polished (writing); + cicatricula_F_N : N ; -- [XBXFO] :: small scar; + cicatrix_F_N : N ; -- [XBXBO] :: scar/cicatrice; wound/bruise; emotional scar; prune mark on plant/tool on work; + ciccum_N_N : N ; -- [XXXEO] :: proverbially worthless object, trifle, bagatelle; seed membrane of pomegranate; + cicer_N_N : N ; -- [XAXCO] :: chick pea (Cicer aristinum); (as a common food); (rude) testicles, penis?; + cicera_F_N : N ; -- [XAXFO] :: chickling vetch; (Latyrus?); + cicercula_F_N : N ; -- [XAXEO] :: small variety of chick-pea; + cicerculum_N_N : N ; -- [XXXNO] :: kind of ocher; reddish earth pigment; African species of pigment sinopia; + cichoreum_N_N : N ; -- [XAXEO] :: chicory (Cichorium intybus), succory, endive; + cichorion_N_N : N ; -- [XAXEO] :: chicory (Cichorium intybus), succory, endive; + cichorium_N_N : N ; -- [XAXEO] :: chicory (Cichorium intybus), succory, endive; + cici_N : N ; -- [XAXNO] :: castor (oil) tree (Ricinus communis); (Egyptian tree also called croton L+S); + cicilendrum_N_N : N ; -- [BXXFS] :: comic name for an imaginary condiment; + cicilinus_A : A ; -- [DEXES] :: made of hair-cloth, hair-; + cicimalindrum_N_N : N ; -- [BXXFO] :: comic name for an imaginary condiment; + cicimandrum_N_N : N ; -- [BXXFO] :: comic name for an imaginary condiment; + cicindela_F_N : N ; -- [XAXEO] :: firefly (Luciola italica); candle; glow-worm (L+S); cicindelid/beetle (Cal); + cicindele_N_N : N ; -- [FXXEE] :: lamp (made of glass); + cicinus_A : A ; -- [XAXEO] :: castor; [oleum cicinum => castor oil]; + ciconia_F_N : N ; -- [XAXCO] :: stork; derisive gesture made with fingers; T-shaped tool for measuring depth; + ciconius_A : A ; -- [DAXFS] :: of/pertaining to stork; + cicuma_F_N : N ; -- [XAXFO] :: owl; + cicur_A : A ; -- [XAXCO] :: tame (animal), domesticated; mild/gentle (person); + cicur_M_N : N ; -- [XAXFO] :: tame animal, domesticated animal; + cicuro_V2 : V2 ; -- [XAXEO] :: tame; pacify; + cicuta_F_N : N ; -- [XAXCO] :: hemlock (Conium maculatum); hemlock juice (poison); shepherd's pipe (hemlock); + cicuticen_M_N : N ; -- [DDXFS] :: player of reed/shepherd's pipe; (often made of cicuta/hemlock stalks); + cidaris_F_N : N ; -- [XXPFO] :: head-dress of a Persian king; tiara; diadem (L+S), of high priest of Jews; + cieo_V2 : V2 ; -- [XXXAO] :: |disturb, shake; provoke (war); invoke, call on by name; cite; raise/produce; + cignus_M_N : N ; -- [DSXFS] :: measure; (equal to 8 scrupuli/srcipuli); (1/2 or 3/3 of an ounce); + cilibantum_N_N : N ; -- [XXXFS] :: round cupboard; + cilicarius_M_N : N ; -- [DXXIS] :: maker of coverings/rugs/blankets of hair (e.g. goat); + cilicinus_A : A ; -- [XXXFS] :: hair-, made of (goat's) hair; (garment originating in Cilicia); of haircloth; + ciliciolum_N_N : N ; -- [EXXFS] :: small garment/coverlet/blanket of goat's hair; (originating in Cilicia); + cilicium_N_N : N ; -- [XXXCO] :: rug/blanket/small garment of goat's hair; (originating in Cilicia); + cilio_M_N : N ; -- [DTXIS] :: chisel/graver (vulgar); + cilium_N_N : N ; -- [XBXEO] :: upper eyelid; edge of upper eyelid; eyelid, lower eyelid (L+S); + cilliba_F_N : N ; -- [XXXES] :: round dining-table; + cillo_M_N : N ; -- [DXXFS] :: one who practices unnatural lust, sodomite; catamite, pathic; + cillo_V2 : V2 ; -- [DXXFS] :: move, put in motion; + cilo_M_N : N ; -- [XXXFO] :: Cilo; Big Lips (Roman cognomen); fellator; prominent forehead (L+S); + cilotrum_N_N : N ; -- [XAXFO] :: nose-bag; + cimeliarcha_M_N : N ; -- [DLXFS] :: treasurer, keeper of treasure/deposits; + cimeliarchium_N_N : N ; -- [DLXFS] :: treasury, place where treasure is deposited; + cimelium_N_N : N ; -- [ELXEE] :: treasure; + cimenterium_N_N : N ; -- [FXXEM] :: cemetery; + cimex_M_N : N ; -- [XAXCO] :: bed-bug (Cimex lectularius); bug (L+S); + cimico_V : V ; -- [DXXFS] :: purify from bugs; exterminate; debug; + ciminterium_N_N : N ; -- [FXXEM] :: cemetery; + cimintorium_N_N : N ; -- [FXXEM] :: cemetery; + cimiterium_N_N : N ; -- [FXXEE] :: cemetery; + cinaedia_F_N : N ; -- [XXXNO] :: precious stone; (from brain of a fish); + cinaedias_M_N : N ; -- [XXXNS] :: precious stone; (from brain of a fish); + cinaedicus_A : A ; -- [XXXEO] :: lewd; wanton; immodest; pertaining to one who is unchaste; + cinaedicus_C_N : N ; -- [XXXEO] :: lewd/wanton/immodest/unchaste/shameless person; catamite; + cinaedium_N_N : N ; -- [XXXNO] :: precious stone; (from brain of a fish); + cinaedius_C_N : N ; -- [XXXFD] :: lewd/wanton/immodest/unchaste/shameless person; catamite; + cinaedologos_M_N : N ; -- [XXXFO] :: teller of lewd stories; + cinaedulus_M_N : N ; -- [XXXEO] :: catamite, pathic; a male wanton; + cinaedus_A : A ; -- [XXXFO] :: resembling/like/typical of a cinaedus/sodomite; unchaste; impudent, shameless; + cinaedus_M_N : N ; -- [XXXEO] :: sodomite; catamite; effeminate man; man who performs a lewd dance; pervert; + cinara_F_N : N ; -- [XAXFO] :: artichoke; similar plant; + cinaris_F_N : N ; -- [XAXNO] :: unidentified plant; + cincinnalis_A : A ; -- [DXXFS] :: curled, curly; [~ herba => plant also called polytrichon]; + cincinnatus_A : A ; -- [XXXCO] :: with curled/curly hair; with hair in ringlets; (artificially); (of comets); + cincinnus_M_N : N ; -- [XXXCO] :: ringlet, curl/lock; curled hair; rhetorical flourish, artificial embellishment; + cincticulus_M_N : N ; -- [XXXFO] :: belt, (small/little) girdle; apron (Ecc); + cinctor_M_N : N ; -- [XWXFS] :: warrior's belt; + cinctorium_N_N : N ; -- [XWXFO] :: sword belt; (late) girdle (L+S); + cinctum_N_N : N ; -- [XXXES] :: girdle, method of girding clothes; crown/garland; belt; + cinctura_F_N : N ; -- [XXXEO] :: belt; girdle; means of girding; + cinctus_A : A ; -- [XXXBO] :: |having one's dress girt in special way; fastened round; [w/alte => for action]; + cinctus_M_N : N ; -- [XXXCO] :: girdle, method of girding clothes; crown/garland; belt; + cinctutus_A : A ; -- [XXXEO] :: wearing girdle or loin-cloth; girded/girt; (as ancients whose toga was girded); + cindecoe_Adv : Adv ; -- [XXXFO] :: elegantly; + cinefactus_A : A ; -- [XXXFO] :: reduced/turned to ashes; + cinemateum_N_N : N ; -- [HXXEK] :: cinema (building); + cinematicus_A : A ; -- [HXXEK] :: cinematic; + cinematographeum_N_N : N ; -- [HXXFE] :: movies, cinema; + cinematographicus_A : A ; -- [HTXEK] :: cinematic; of film; cinematographic; + cinematographicus_M_N : N ; -- [HXXFE] :: movie scriptwriter; + cinematographo_V : V ; -- [HXXEK] :: film; + cinematographus_M_N : N ; -- [HXXEK] :: film-maker; 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 ; - cinerarium_N_N : N ; - cinerarius_A : A ; - cinerarius_M_N : N ; - cineresco_V : V ; - cinereum_N_N : N ; - cinereus_A : A ; - cinericius_A : A ; - cinerosus_A : A ; - cingillum_N_N : N ; - cingo_V2 : V2 ; - cingula_F_N : N ; - cingulum_N_N : N ; - cingulus_M_N : N ; - cinifes_F_N : N ; - ciniflo_M_N : N ; - ciniphs_F_N : N ; + ciner_M_N : N ; -- [XXXFS] :: ashes; embers, spent love/hate; ruin, destruction; the grave/dead, cremation; + cineraceus_A : A ; -- [XXXEO] :: ashen, ashy, resembling ash in color, ash-colored; + cineracius_A : A ; -- [XXXEO] :: ashen, ashy, resembling ash in color, ash-colored; + cinerarium_N_N : N ; -- [XEXIO] :: receptacle/niche for ashes of the dead; + cinerarius_A : A ; -- [XXXFS] :: of/pertaining to ashes; boundaries of land bordering on graves; + cinerarius_M_N : N ; -- [XXXDO] :: hair-curler, hair-dresser; + cineresco_V : V ; -- [XXXIO] :: turn into ash/ashes; + cinereum_N_N : N ; -- [XBXFO] :: ash-colored ointment/salve; + cinereus_A : A ; -- [XXXDO] :: resembling ashes, similar to ashes, ash-colored; (kinds of plants/animals); + cinericius_A : A ; -- [XXXFS] :: resembling ashes, similar to ashes, ash-colored; (kinds of plants/animals); + cinerosus_A : A ; -- [XXXFO] :: covered with ashes; consisting largely of ashes; full of ashes (L+S); + cingillum_N_N : N ; -- [XXXDO] :: woman's girdle; (esp. that worn by a bride); + cingo_V2 : V2 ; -- [XXXAO] :: surround/encircle/ring; enclose; beleaguer; accompany; gird, equip; ring (tree); + cingula_F_N : N ; -- [XXXFO] :: belt; sword belt; sash, girdle; band; saddle-girth; collar (dog); + cingulum_N_N : N ; -- [XXXCO] :: belt; sword belt; sash, girdle; band; saddle-girth; collar (dog); + cingulus_M_N : N ; -- [XXXCO] :: belt; band; geographical zone; + cinifes_F_N : N ; -- [DAHES] :: kind of stinging insects; very small flies, gnats; lice/flies/others (OLD); + ciniflo_M_N : N ; -- [XXXFO] :: heater of curling-irons, hair-dresser; + ciniphs_F_N : N ; -- [DAHES] :: kind of stinging insects; very small flies, gnats; lice/flies/others (OLD); 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 ; - cinnabaris_F_N : N ; - cinnameus_A : A ; - cinnaminum_N_N : N ; - cinnamolgos_M_N : N ; - cinnamominus_A : A ; - cinnamomum_N_N : N ; - cinnamon_N_N : N ; - cinnamum_N_N : N ; - cinnamus_M_N : N ; - cinnus_M_N : N ; + cinis_M_N : N ; -- [XXXAO] :: ashes; embers, spent love/hate; ruin, destruction; the grave/dead, cremation; + cinisculus_M_N : N ; -- [DXXFS] :: little ashes; + cinnabar_N_N : N ; -- [XAXNS] :: red pigment/dragon's blood; resin of tree Pterocarpus draco; (NOT HgS/cinnabar); + cinnabaris_F_N : N ; -- [XAXNO] :: red pigment/dragon's blood; resin of tree Pterocarpus draco; (NOT HgS/cinnabar); + cinnameus_A : A ; -- [XXXFO] :: scented with/smelling of cinnamon; of/from cinnamon (L+S); + cinnaminum_N_N : N ; -- [XBXIO] :: eye-salve made from cinnamon; + cinnamolgos_M_N : N ; -- [XAQNO] :: bird; (of Arabia); + cinnamominus_A : A ; -- [XXXNO] :: made from cinnamon; of/from cinnamon (L+S); + cinnamomum_N_N : N ; -- [XAXEO] :: |superior kind of cassis; cinnamon-like bark (Cinnamonum cassia); + cinnamon_N_N : N ; -- [XAXCO] :: cinnamon; cinnamon (shrub/twigs); (applied to another aromatic oil); + cinnamum_N_N : N ; -- [XAXCO] :: cinnamon; cinnamon (shrub/twigs); (applied to another aromatic oil); + cinnamus_M_N : N ; -- [DAXES] :: cinnamon; cinnamon (shrub/twigs); (applied to another aromatic oil); + cinnus_M_N : N ; -- [XBXFO] :: kind of facial distortion or grimace; 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 ; - cio_V2 : V2 ; - ciphus_M_N : N ; - cippus_M_N : N ; - ciprus_A : A ; - cipus_M_N : N ; - circa_Acc_Prep : Prep ; - circa_Adv : Adv ; - circaea_F_N : N ; - circaeon_N_N : N ; - circaeum_N_N : N ; - circamoerium_N_N : N ; - circanea_F_N : N ; - circellus_M_N : N ; - circen_N_N : N ; - circensis_A : A ; - circensis_M_N : N ; - circes_M_N : N ; - circiensis_A : A ; - circiensis_M_N : N ; - circinatio_F_N : N ; - circinatus_A : A ; - circino_V2 : V2 ; - circinus_M_N : N ; - circiter_Acc_Prep : Prep ; - circiter_Adv : Adv ; - circito_V2 : V2 ; - circitor_M_N : N ; - circitorium_N_N : N ; - circitorius_A : A ; - circius_M_N : N ; - circlus_M_N : N ; - circo_V2 : V2 ; - circos_M_N : N ; - circuago_V2 : V2 ; - circueo_1_V2 : V2 ; - circueo_2_V2 : V2 ; - circuitio_F_N : N ; - circuitor_M_N : N ; - circuitus_M_N : N ; - circularis_A : A ; - circulatim_Adv : Adv ; - circulatio_F_N : N ; - circulator_M_N : N ; - circulatorius_A : A ; - circulatrix_F_N : N ; - circulo_V2 : V2 ; - circulor_V : V ; - circulus_M_N : N ; - circum_Acc_Prep : Prep ; - circum_Adv : Adv ; - circumactio_F_N : N ; - circumactus_A : A ; - circumactus_M_N : N ; - circumaedifico_V2 : V2 ; - circumaggero_V2 : V2 ; - circumago_V2 : V2 ; - circumambulo_V2 : V2 ; - circumamictus_A : A ; - circumaro_V2 : V2 ; - circumaspicio_V : V ; - circumcaedo_V2 : V2 ; - circumcaesura_F_N : N ; - circumcalco_V2 : V2 ; - circumcidaneus_A : A ; - circumcido_V2 : V2 ; - circumcingo_V2 : V2 ; - circumcirca_Adv : Adv ; - circumcirco_V : V ; - circumcise_Adv : Adv ; - circumcisicius_A : A ; - circumcisio_F_N : N ; - circumcisitius_A : A ; - circumcisorium_N_N : N ; - circumcisura_F_N : N ; - circumcisus_A : A ; - circumclamo_V2 : V2 ; - circumclaudo_V2 : V2 ; - circumcludo_V2 : V2 ; - circumcola_C_N : N ; - circumcolo_V2 : V2 ; - circumcordialis_A : A ; - circumctipo_V2 : V2 ; - circumculco_V2 : V2 ; - circumcumulo_V2 : V2 ; - circumcurrens_A : A ; - circumcurro_V2 : V2 ; - circumcursatio_F_N : N ; - circumcursio_F_N : N ; - circumcurso_V : V ; - circumdatio_F_N : N ; - circumdatus_M_N : N ; - circumdo_V2 : V2 ; - circumdoleo_V : V ; - circumdolo_V2 : V2 ; - circumduco_V2 : V2 ; - circumductio_F_N : N ; - circumductor_M_N : N ; - circumductum_N_N : N ; - circumductus_A : A ; - circumductus_M_N : N ; - circumeo_1_V2 : V2 ; - circumeo_2_V2 : V2 ; - circumequito_V2 : V2 ; - circumerro_V : V ; - circumfarcio_V2 : V2 ; - circumferentia_F_N : N ; - circumfero_V : V ; - circumfigo_V2 : V2 ; - circumfingo_V2 : V2 ; - circumfinio_V2 : V2 ; - circumfirmo_V2 : V2 ; - circumflagro_V2 : V2 ; - circumflecto_V2 : V2 ; - circumflexe_Adv : Adv ; - circumflexibilis_A : A ; - circumflexio_F_N : N ; - circumflexus_M_N : N ; - circumflo_V : V ; - circumfluentia_F_N : N ; - circumfluo_V2 : V2 ; - circumfluus_A : A ; - circumfodio_V2 : V2 ; - circumforaneus_A : A ; - circumforanus_A : A ; - circumforatus_A : A ; - circumforo_V2 : V2 ; - circumfossor_M_N : N ; - circumfossura_F_N : N ; - circumfractus_A : A ; - circumfremo_V2 : V2 ; - circumfrico_V2 : V2 ; - circumfulcio_V2 : V2 ; - circumfulgeo_V2 : V2 ; - circumfundo_V2 : V2 ; - circumfusio_F_N : N ; - circumfusus_A : A ; - circumgarriens_A : A ; - circumgelo_V2 : V2 ; - circumgemo_V2 : V2 ; - circumgestator_M_N : N ; - circumgesto_V2 : V2 ; - circumglobatus_A : A ; - circumglobo_V2 : V2 ; - circumgredior_V : V ; - circumgressus_M_N : N ; - circumhisco_V : V ; - circumhumatus_A : A ; - circumicio_V2 : V2 ; - circumiectalis_A : A ; - circumiectum_N_N : N ; - circuminicio_V2 : V2 ; - circuminjicio_V2 : V2 ; - circuminsessio_F_N : N ; - circuminvolvo_V2 : V2 ; - circumio_V : V ; - circumitio_F_N : N ; - circumitor_M_N : N ; - circumitus_M_N : N ; - circumjacens_A : A ; + cinus_M_N : N ; -- [XXXES] :: ashes; embers, spent love/hate; ruin, destruction; the grave/dead, cremation; + cinyphes_F_N : N ; -- [DAXCS] :: kind of stinging insect; very small flies, gnats; + cinyra_F_N : N ; -- [DDXES] :: lyre, ten-stringed instrument; + cio_V2 : V2 ; -- [XXXAO] :: |disturb, shake; provoke (war); invoke, call on by name; cite; raise/produce; + ciphus_M_N : N ; -- [FXXCL] :: bowl, goblet, cup; communion cup; + cippus_M_N : N ; -- [FXXBL] :: |stocks/fetter/prison; tree stump; bulwark of sharpened stakes (pl.) (L+S); + ciprus_A : A ; -- [AXIFO] :: good; (Sabine for bonus); + cipus_M_N : N ; -- [XXXCO] :: boundary stone/post/pillar; tombstone (usu. indicating extent of cemetery); + circa_Acc_Prep : Prep ; -- [XXXAO] :: around, on bounds of; about/near (space/time/numeral); concerning; with; + circa_Adv : Adv ; -- [XXXBO] :: around, all around; round about; near, in vicinity/company; on either side; + circaea_F_N : N ; -- [XAXNO] :: plant; (Vincetoxicum nigrum?); (used as a charm L+S); + circaeon_N_N : N ; -- [XAXNO] :: plant, mandrake; (alternative name for mandragoras); + circaeum_N_N : N ; -- [XAXNS] :: plant, mandrake; (alternative name for mandragoras); + circamoerium_N_N : N ; -- [XXXFO] :: open space round town; (Livy coined for pomoerium/open space round town wall); + circanea_F_N : N ; -- [XAXFS] :: bird; (named from its circular flight); + circellus_M_N : N ; -- [XXXES] :: small ring; + circen_N_N : N ; -- [XXXFS] :: circle; circular course; [w/solis => a year (poetic)]; + circensis_A : A ; -- [XXXCO] :: of the Circus; associated with games in circus; used at circus; + circensis_M_N : N ; -- [XXXCO] :: games in the Circus (pl.); games/exercises of wrestling, running, fighting; + circes_M_N : N ; -- [XXXEO] :: circle, ring; circuit, circumference of the circus; + circiensis_A : A ; -- [XXXEO] :: of the Circus; associated with games in circus; used at circus; + circiensis_M_N : N ; -- [XXXEO] :: games in the Circus (pl.); games/exercises of wrestling, running, fighting; + circinatio_F_N : N ; -- [XXXEO] :: circular line/form; circular motion, revolution; circle, circumference (L+S); + circinatus_A : A ; -- [XXXNO] :: rounded, circular; + circino_V2 : V2 ; -- [XXXEO] :: bend/make circular/round; traverse circular course, wheel through; take round; + circinus_M_N : N ; -- [XSXCO] :: pair of compasses; circular line/arc; [ad ~um => in a circle/arc, circularly]; + circiter_Acc_Prep : Prep ; -- [XXXDO] :: about, around, near (space/time/numeral); towards; + circiter_Adv : Adv ; -- [XXXCO] :: nearly, not far from, almost, approximately, around, about; + circito_V2 : V2 ; -- [XXXFO] :: go round as a hawker/peddler/solicitor; frequent, be busy (L+S); + circitor_M_N : N ; -- [XXXDO] :: person who goes round; patrol/watchman, overseer/inspector; hawker, peddler; + circitorium_N_N : N ; -- [FXXFE] :: curtain; veil; + circitorius_A : A ; -- [DLXFS] :: of/pertaining to patrols; + circius_M_N : N ; -- [XSXCO] :: wind between north and west; WNW wind (L+S); (in Gallia Narbonensis); + circlus_M_N : N ; -- [XXXAO] :: circle; orbit, zone; ring, hoop; belt, collar; company; cycle; circumference; + circo_V2 : V2 ; -- [XXXIO] :: traverse; go about (L+S); wander through; + circos_M_N : N ; -- [XXXNO] :: precious stone; + circuago_V2 : V2 ; -- [XXXAO] :: drive/lead around; turn (around); wheel, revolve; upset; change opinions, sway; + circueo_1_V : V ; -- [XXXAO] :: encircle, surround; border; skirt; circulate/wander through; go/measure round; + circueo_2_V : V ; -- [XXXAO] :: encircle, surround; border; skirt; circulate/wander through; go/measure round; + circuitio_F_N : N ; -- [XWXBO] :: |going round; patrol/rounds/visiting posts; passage/structure round (building); + circuitor_M_N : N ; -- [XXXFO] :: person who goes round; patrol/watchman, overseer/inspector; hawker, peddler; + circuitus_M_N : N ; -- [XXXAO] :: |revolution, spinning, rotation; (recurring) cycle; period; circumlocution; + circularis_A : A ; -- [XXXFO] :: circular, round; + circulatim_Adv : Adv ; -- [XXXFO] :: in circles, in groups/companies; in a circle; + circulatio_F_N : N ; -- [XSXFS] :: circular course, revolution; + circulator_M_N : N ; -- [XDXDO] :: itinerant performer/vendor; (who gathers impromptu groups round him); + circulatorius_A : A ; -- [XXXFO] :: of/characteristic of circulator (itinerate performer/peddler, mountebank/quack); + circulatrix_F_N : N ; -- [XDXEO] :: female itinerant performer/peddler/stroller; (gather impromptu group round her); + circulo_V2 : V2 ; -- [XXXEO] :: make circular/round/curved; encircle, encompass (L+S); + circulor_V : V ; -- [XXXDO] :: form groups/circles round oneself; (for impromptu speech/giving performance); + circulus_M_N : N ; -- [XXXAO] :: circle; orbit, zone; ring, hoop; belt, collar; company; cycle; circumference; + circum_Acc_Prep : Prep ; -- [XXXBO] :: around, about, among, near (space/time), in neighborhood of; in circle around; + circum_Adv : Adv ; -- [XXXCO] :: about, around; round about, near; in a circle; in attendance; on both sides; + circumactio_F_N : N ; -- [XXXEO] :: driving round in a circle, rotation; rounding off, act of making symmetrical; + circumactus_A : A ; -- [XXXNS] :: bent around/in a curve; curved; + circumactus_M_N : N ; -- [XXXCO] :: rotation, revolution; encircling, encirclement; turning around/in circle/back; + circumaedifico_V2 : V2 ; -- [EXXFW] :: build round about; (Vulgate Lamentations 3:7); + circumaggero_V2 : V2 ; -- [XXXEO] :: pile (earth) round about; surround (with heaped earth); + circumago_V2 : V2 ; -- [XXXAO] :: drive/lead around; turn (around); wheel, revolve; upset; change opinions, sway; + circumambulo_V2 : V2 ; -- [XXXFO] :: walk around/over; + circumamictus_A : A ; -- [DWXFS] :: enveloped, invested, surrounded, besieged; + circumaro_V2 : V2 ; -- [XAXEO] :: plow around, surround with a furrow; + circumaspicio_V : V ; -- [XXXEO] :: look around; consider; + circumcaedo_V2 : V2 ; -- [XXXEO] :: cut/make incision around, ring; clip; circumcise; cut out; remove; diminish; + circumcaesura_F_N : N ; -- [XXXFO] :: surface outline, external contour; + circumcalco_V2 : V2 ; -- [XAXFO] :: tread/trample earth (down around); + circumcidaneus_A : A ; -- [XAXFO] :: must from second pressing of grapes after projecting mass is cut and put back; + circumcido_V2 : V2 ; -- [XXXBO] :: cut/make incision around, ring; clip; circumcise; cut out; remove; diminish; + circumcingo_V2 : V2 ; -- [XXXDO] :: surround, enclose; lie around, be round; surround/encircle (with); gird about; + circumcirca_Adv : Adv ; -- [XXXDO] :: round about, on all sides; round about the body; (strengthened circum); + circumcirco_V : V ; -- [DXXFS] :: encircle, surround; border; skirt; circulate/wander through; go/measure round; + circumcise_Adv : Adv ; -- [XXXEO] :: concisely; briefly; + circumcisicius_A : A ; -- [XAXFO] :: must/juice of second press of grapes after projecting mass is cut and put back; + circumcisio_F_N : N ; -- [DEXES] :: circumcision; cutting around (physical/moral); + circumcisitius_A : A ; -- [XAXFS] :: must/juice of second press of grapes after projecting mass is cut and put back; + circumcisorium_N_N : N ; -- [DXXES] :: instrument for cutting around; (ringing bark on a tree?); (for circumcision?); + circumcisura_F_N : N ; -- [XAXNO] :: cutting round/ringing (bark of trees); + circumcisus_A : A ; -- [XXXCO] :: sheer on all sides, cut off; limited; short, brief, pruned of excess, abridged; + circumclamo_V2 : V2 ; -- [DXXFS] :: roar around (waves/surf); + circumclaudo_V2 : V2 ; -- [DXXFS] :: surround; encircle/enclose/build round (w/structure); hedge/shut in, circumvent; + circumcludo_V2 : V2 ; -- [XXXCO] :: surround; encircle/enclose/build round (w/structure); hedge/shut in, circumvent; + circumcola_C_N : N ; -- [DXXFS] :: people/tribe dwelling around/nearby/in vicinity; locals; + circumcolo_V2 : V2 ; -- [XXXEO] :: dwell round about/around/nearby/in vicinity of; + circumcordialis_A : A ; -- [DBXFS] :: around the heart, heart-; (e.g.blood); + circumctipo_V2 : V2 ; -- [XXXFS] :: surround, accompany, attend; + circumculco_V2 : V2 ; -- [XAXFS] :: tread/trample earth (down around); + circumcumulo_V2 : V2 ; -- [XXXFS] :: heap/pile up around; + circumcurrens_A : A ; -- [XSXFO] :: that encircles/bounds (figure), surrounding/bounding/bordering, running around; + circumcurro_V2 : V2 ; -- [XXXFO] :: run/extend round/about the periphery (of structures); + circumcursatio_F_N : N ; -- [FXXFE] :: attention; + circumcursio_F_N : N ; -- [XXXFO] :: running about/round; + circumcurso_V : V ; -- [XXXDO] :: run about; run round (of person); run about (of things), revolve; + circumdatio_F_N : N ; -- [DXXFS] :: putting/placing around; + circumdatus_M_N : N ; -- [XXXCS] :: surrounding soldiers/men (pl.); those around; + circumdo_V2 : V2 ; -- [XXXAO] :: surround; envelop, post/put/place/build around; enclose; beset; pass around; + circumdoleo_V : V ; -- [DXXES] :: suffer on every side; + circumdolo_V2 : V2 ; -- [XXXNO] :: chop around with an ax; hew off around (L+S); + circumduco_V2 : V2 ; -- [XXXBO] :: |lead/wheel/draw a line/ring around/in a circle; prolong (sound); build around; + circumductio_F_N : N ; -- [XXXCO] :: circuit, perimeter; indirect course; cheating/trick; complete sentence, period; + circumductor_M_N : N ; -- [DXXFS] :: one who leads about/converts (another); + circumductum_N_N : N ; -- [XGXFO] :: period (rhetoric), complete sentence/thought, expansion of a thought; + circumductus_A : A ; -- [XXXFO] :: long-drawn-out, extended; + circumductus_M_N : N ; -- [XSXFO] :: perimeter, circumference, measurement around; motion in a circle, revolution; + circumeo_1_V : V ; -- [XXXAO] :: encircle, surround; border; skirt; circulate/wander through; go/measure round; + circumeo_2_V : V ; -- [XXXAO] :: encircle, surround; border; skirt; circulate/wander through; go/measure round; + circumequito_V2 : V2 ; -- [XXXFO] :: ride around; + circumerro_V : V ; -- [XXXDO] :: wander/prowl/meander/stroll/hover around; orbit, go around in orbit (planet); + circumfarcio_V2 : V2 ; -- [XXXNO] :: pack/stuff/cram round (with); + circumferentia_F_N : N ; -- [XSXEO] :: circumference; + circumfero_V : V ; -- [XXXAO] :: carry/hand/pass/spread/move/take/cast around (in circle); publicize; divulge; + circumfigo_V2 : V2 ; -- [XXXEO] :: fix/fasten/secure all around; + circumfingo_V2 : V2 ; -- [DXXFS] :: form around; + circumfinio_V2 : V2 ; -- [DXXFS] :: complete a circle; bring to an end; + circumfirmo_V2 : V2 ; -- [XXXFS] :: fasten round; + circumflagro_V2 : V2 ; -- [DXXFS] :: blaze/scorch all around; + circumflecto_V2 : V2 ; -- [XXXEO] :: bend/turn (course) around (pivot/turning point); prolong/circumflex (vowel); + circumflexe_Adv : Adv ; -- [XGXFO] :: with circumflex/prolonged sound; + circumflexibilis_A : A ; -- [DGXFS] :: provided with a circumflex/prolonged accent; + circumflexio_F_N : N ; -- [DXXFS] :: bending/winding/coiling around; + circumflexus_M_N : N ; -- [XXXNO] :: action of bending around; rounded form, vault; winding (L+S) circuit; + circumflo_V : V ; -- [XXXEO] :: blow around; blow on/assail from all sides; veer around (wind); + circumfluentia_F_N : N ; -- [FXXFF] :: superabundance; + circumfluo_V2 : V2 ; -- [XXXCO] :: flow/crowd/flock around; overflow; have/be in abundance, be rich/well supplied; + circumfluus_A : A ; -- [XXXCO] :: flowing/flowed around; encircled/surrounded/skirted by (water); immersed; + circumfodio_V2 : V2 ; -- [XAXCO] :: dig around, ease earth around (plants); surround (trees) with a trench; + circumforaneus_A : A ; -- [XXXCO] :: itinerant, that travels to market; of/connected with business of/around forum; + circumforanus_A : A ; -- [XXXFO] :: itinerant, that travels to market; connected with business of forum; + circumforatus_A : A ; -- [XXXNS] :: bored/pierced round; + circumforo_V2 : V2 ; -- [XXXFO] :: pierce with holes round about; + circumfossor_M_N : N ; -- [XAXNO] :: one who digs around (plants/something); + circumfossura_F_N : N ; -- [XAXNO] :: digging around; (plants/trees); + circumfractus_A : A ; -- [DXXES] :: broken (off) around; precipitous; + circumfremo_V2 : V2 ; -- [XXXEO] :: roar/growl/utter cries of anger/protest/make a noise round; + circumfrico_V2 : V2 ; -- [XXXFO] :: rub/brush round about; scour; + circumfulcio_V2 : V2 ; -- [DXXFS] :: support/hold up around; + circumfulgeo_V2 : V2 ; -- [XXXNO] :: shine/glow round about; + circumfundo_V2 : V2 ; -- [XXXAO] :: pour/drape/crowd around; cause (water) to go round/part; surround; distribute; + circumfusio_F_N : N ; -- [DXXES] :: pouring around; + circumfusus_A : A ; -- [XXXFO] :: surrounded; draped around; distributed; extra, superfluous; + circumgarriens_A : A ; -- [DXXFS] :: babbling, babbling about; + circumgelo_V2 : V2 ; -- [XXXNO] :: freeze/harden round/all around; + circumgemo_V2 : V2 ; -- [XXXFO] :: roar/moan/groan around; + circumgestator_M_N : N ; -- [XXXIO] :: one who bears/carries round; + circumgesto_V2 : V2 ; -- [XXXEO] :: carry/bear about/around; + circumglobatus_A : A ; -- [XXXNS] :: rolled together; formed in a ball; clustered; + circumglobo_V2 : V2 ; -- [XXXNO] :: form a ball/cluster/sphere (around something); + circumgredior_V : V ; -- [XWXEO] :: go round behind by a flanking movement; walk/travel about (in hostile manner); + circumgressus_M_N : N ; -- [DXXFS] :: going about; compass/circuit/scope (of a thing); + circumhisco_V : V ; -- [DXXFS] :: stare at with open/gaping mouth; + circumhumatus_A : A ; -- [DXXFS] :: buried around; + circumicio_V2 : V2 ; -- [XXXCO] :: cast/throw or place/put/build around; put on flank of; encompass/envelop; + circumiectalis_A : A ; -- [GXXEK] :: environmental; + circumiectum_N_N : N ; -- [GXXEK] :: environment; + circuminicio_V2 : V2 ; -- [XXXFS] :: throw up all around; + circuminjicio_V2 : V2 ; -- [XXXFS] :: throw up all around; + circuminsessio_F_N : N ; -- [FEXFE] :: coexistence; (shared existence of 3 Divine Persons in same Being); + circuminvolvo_V2 : V2 ; -- [DXXFS] :: involve/cover all around, enclose, envelop; + circumio_V : V ; -- [EXXFW] :: encircle, surround; border; skirt; circulate/wander through; go/measure round; + circumitio_F_N : N ; -- [XXXBO] :: |rotation, revolution; rate of revolution; orbit; circumference; circumlocution; + circumitor_M_N : N ; -- [XXXFO] :: watchman, patrol; one making rounds/circuit; + circumitus_M_N : N ; -- [XXXAO] :: |revolution, spinning, rotation; (recurring) cycle; period; circumlocution; + circumjacens_A : A ; -- [XXXDO] :: situated in neighborhood, lying round about; situated round (in a sentence); 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 ; - circumjectio_F_N : N ; - circumjectum_N_N : N ; - circumjectus_A : A ; - circumjectus_M_N : N ; - circumjicio_V2 : V2 ; - circumlabens_A : A ; - circumlambo_V2 : V2 ; - circumlaqueo_V2 : V2 ; - circumlaticius_A : A ; - circumlatio_F_N : N ; - circumlatitius_A : A ; - circumlator_M_N : N ; - circumlatro_V2 : V2 ; - circumlavo_V2 : V2 ; - circumlego_V2 : V2 ; - circumlevo_V2 : V2 ; - circumligo_V2 : V2 ; - circumlinio_V2 : V2 ; - circumlino_V2 : V2 ; - circumlitio_F_N : N ; - circumlocutio_F_N : N ; - circumloquor_V : V ; - circumlucens_A : A ; - circumluceo_V2 : V2 ; - circumluo_V2 : V2 ; - circumlustro_V2 : V2 ; - circumluvio_F_N : N ; - circumluvium_N_N : N ; - circummeo_V : V ; - circummetio_V2 : V2 ; - circummingo_V2 : V2 ; - circummitto_V2 : V2 ; - circummoenio_V2 : V2 ; - circummugio_V2 : V2 ; - circummulcens_A : A ; - circummulceo_V2 : V2 ; - circummunio_V2 : V2 ; - circummunitio_F_N : N ; - circummuranus_A : A ; - circumnascens_A : A ; - circumnavigo_V2 : V2 ; - circumnecto_V2 : V2 ; - circumno_V2 : V2 ; - circumnoto_V2 : V2 ; - circumobruo_V2 : V2 ; - circumornatus_A : A ; - circumpadanus_A : A ; - circumpavio_V2 : V2 ; - circumpavitus_A : A ; - circumpendeo_V : V ; + circumjacens_M_N : N ; -- [XXXDO] :: neighboring/nearby things/words (pl.), words situated around/near (in sentence); + circumjacentium_N_N : N ; -- [XGXFS] :: context (pl.), things/material around; + circumjaceo_V : V ; -- [XXXEO] :: lie near/round about, border on; (of persons, places, objects); + circumjectio_F_N : N ; -- [DXXES] :: throwing around, casting about; putting on/donning (clothing), dressing; + circumjectum_N_N : N ; -- [XXXES] :: neighborhood (pl.), surroundings; + circumjectus_A : A ; -- [XXXCO] :: surrounding, lying/situated around; enveloping, surrounding; + circumjectus_M_N : N ; -- [XXXEO] :: encircling/surrounding/encompassing/embrace; lying/casting around; wrap, cloak; + circumjicio_V2 : V2 ; -- [XXXCS] :: cast/throw or place/put/build around; put on flank of; encompass/envelop; + circumlabens_A : A ; -- [XXXFS] :: gliding/sliding around; + circumlambo_V2 : V2 ; -- [XXXNO] :: lick around; + circumlaqueo_V2 : V2 ; -- [XXXFS] :: wind around; (like a noose); + circumlaticius_A : A ; -- [DXXFS] :: portable, that may be carried around; + circumlatio_F_N : N ; -- [XXXFO] :: revolution, circuit; a carrying around (L+S); + circumlatitius_A : A ; -- [DXXFS] :: portable, that may be carried around; + circumlator_M_N : N ; -- [DXXFS] :: one who carries around/about; + circumlatro_V2 : V2 ; -- [XXXFO] :: bark round about; roar around (L+S); + circumlavo_V2 : V2 ; -- [XXXEO] :: wash round about/around, wash side of; flow all around (waters) (L+S); + circumlego_V2 : V2 ; -- [EXXFP] :: sail round; compassing by the shore (Vulgate Acts 28:13); + circumlevo_V2 : V2 ; -- [DXXFS] :: raise up all around; + circumligo_V2 : V2 ; -- [XXXCO] :: bind around/to; encircle, surround; attach, fasten; pass/wrap around, bandage; + circumlinio_V2 : V2 ; -- [XXXCO] :: smear/anoint all over (with); decorate, daub/paint around, paint background; + circumlino_V2 : V2 ; -- [XXXCO] :: smear/anoint all over (with); decorate, daub/paint around, paint background; + circumlitio_F_N : N ; -- [XDXES] :: |overlaying of color (painting); tint/hue given to marble by rubbing w/oil/wax; + circumlocutio_F_N : N ; -- [XGXEO] :: circumlocution, periphrasis; + circumloquor_V : V ; -- [DGXFS] :: make use of circumlocution/periphrasis; + circumlucens_A : A ; -- [XXXFS] :: shining/glittering around; + circumluceo_V2 : V2 ; -- [XXXFO] :: shine round, illuminate; + circumluo_V2 : V2 ; -- [XXXEO] :: wash or flow around; skirt; surround; wash upon (L+S); + circumlustro_V2 : V2 ; -- [XXXEO] :: traverse (in circular course), pace around; go around (in purifying ceremony); + circumluvio_F_N : N ; -- [XAXFO] :: formation of alluvial land (in middle of river); land so formed; right to it; + circumluvium_N_N : N ; -- [XAXFO] :: formation of alluvial land (in middle of river); land so formed; right to it; + circummeo_V : V ; -- [DXXES] :: go/travel/pass around; + circummetio_V2 : V2 ; -- [XXXFO] :: measure round about; + circummingo_V2 : V2 ; -- [XXXFO] :: urinate/make water round/over (something); + circummitto_V2 : V2 ; -- [XXXCO] :: send around/to different parts (embassies/missions); send round, flank; + circummoenio_V2 : V2 ; -- [XWXDO] :: invest with walls/siege works; wall/hem in, secure; fence around; fortify; + circummugio_V2 : V2 ; -- [XAXEO] :: moo/low/bellow round; + circummulcens_A : A ; -- [XXXNS] :: licking gently around; + circummulceo_V2 : V2 ; -- [XXXEO] :: lick round, caress (with tongue); + circummunio_V2 : V2 ; -- [XWXDO] :: invest with walls/siege works; wall/hem in, secure; fence around; fortify; + circummunitio_F_N : N ; -- [XWXEO] :: surrounding with walls or siege works; investing a town; + circummuranus_A : A ; -- [DXXFS] :: around the walls; with neighboring nations; + circumnascens_A : A ; -- [XXXNS] :: growing up/being raised/springing forth around; + circumnavigo_V2 : V2 ; -- [XWXFO] :: sail around; circumnavigate; + circumnecto_V2 : V2 ; -- [DXXES] :: wrap/bind around; surround, envelop; + circumno_V2 : V2 ; -- [XXXFO] :: swim around; + circumnoto_V2 : V2 ; -- [XDXFO] :: draw/paint around; + circumobruo_V2 : V2 ; -- [XAXNO] :: heap up earth around; cover/wrap around (L+S); + circumornatus_A : A ; -- [DXXFS] :: ornamented/decorated/adorned round about/all around; + circumpadanus_A : A ; -- [XXIEO] :: lying/found/situated beside Po river; + circumpavio_V2 : V2 ; -- [XXXNO] :: beat down hard all around; + circumpavitus_A : A ; -- [XXXNS] :: beaten/trodden close around; + circumpendeo_V : V ; -- [XXXEO] :: hang around, be suspended all around; 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 ; - circumplector_V : V ; - circumplexus_M_N : N ; - circumplico_V2 : V2 ; - circumplumbo_V2 : V2 ; - circumpono_V2 : V2 ; - circumpositio_F_N : N ; - circumpositus_A : A ; - circumpotatio_F_N : N ; - circumpulso_V2 : V2 ; - circumpungo_V2 : V2 ; - circumpurgo_V2 : V2 ; - circumputo_V2 : V2 ; - circumquaque_Adv : Adv ; - circumrado_V2 : V2 ; - circumrasio_F_N : N ; - circumrefero_V2 : V2 ; - circumretio_V2 : V2 ; - circumrodo_V2 : V2 ; - circumroro_V2 : V2 ; - circumroto_V2 : V2 ; - circumsaepio_V2 : V2 ; - circumsaeptus_A : A ; - circumsalto_V2 : V2 ; - circumscalpo_V2 : V2 ; - circumscariphico_V2 : V2 ; - circumscaripho_V2 : V2 ; - circumscindo_V2 : V2 ; - circumscribo_V2 : V2 ; - circumscripte_Adv : Adv ; - circumscriptio_F_N : N ; - circumscriptor_M_N : N ; - circumscriptorie_Adv : Adv ; - circumscriptus_A : A ; - circumseco_V2 : V2 ; - circumsecus_Adv : Adv ; - circumsedeo_V2 : V2 ; - circumseparo_V2 : V2 ; - circumsepio_V2 : V2 ; - circumseptus_A : A ; - circumsero_V2 : V2 ; - circumsessio_F_N : N ; - circumsideo_V2 : V2 ; - circumsido_V2 : V2 ; - circumsigno_V2 : V2 ; - circumsilio_V : V ; - circumsisto_V2 : V2 ; - circumsitus_A : A ; - circumsocius_A : A ; - circumsono_V : V ; - circumsonus_A : A ; - circumspargo_V2 : V2 ; - circumspectatrix_F_N : N ; - circumspecte_Adv : Adv ; - circumspectio_F_N : N ; - circumspecto_V : V ; - circumspector_M_N : N ; - circumspectus_A : A ; - circumspectus_M_N : N ; - circumspergo_V2 : V2 ; - circumspicientia_F_N : N ; - circumspicio_V2 : V2 ; - circumstagno_V : V ; - circumstans_M_N : N ; - circumstantia_F_N : N ; - circumstatio_F_N : N ; - circumsto_V : V ; - circumstrepo_V2 : V2 ; - circumstridens_A : A ; - circumstringo_V2 : V2 ; - circumstruo_V2 : V2 ; - circumstupeo_V : V ; - circumsudo_V : V ; - circumsurgo_V : V ; - circumsutus_A : A ; - circumtectus_A : A ; - circumtego_V2 : V2 ; - circumtendo_V2 : V2 ; - circumteneo_V2 : V2 ; - circumtentus_A : A ; - circumtergeo_V2 : V2 ; - circumtermino_V2 : V2 ; - circumtero_V2 : V2 ; - circumtextum_N_N : N ; - circumtextus_A : A ; - circumtinnio_V2 : V2 ; - circumtollo_V2 : V2 ; - circumtondeo_V2 : V2 ; - circumtono_V2 : V2 ; - circumtonsus_A : A ; - circumtorqueo_V2 : V2 ; - circumtremo_V2 : V2 ; - circumtueor_V : V ; - circumtumulatus_A : A ; - circumundique_Adv : Adv ; - circumustus_A : A ; - circumvado_V2 : V2 ; - circumvagor_V : V ; - circumvagus_A : A ; - circumvallo_V2 : V2 ; - circumvectio_F_N : N ; - circumvectitor_V : V ; - circumvecto_V2 : V2 ; - circumvector_V : V ; - circumvehor_V : V ; - circumvelo_V2 : V2 ; - circumvenio_V2 : V2 ; - circumventio_F_N : N ; - circumventor_M_N : N ; - circumventorius_A : A ; - circumverro_V2 : V2 ; - circumversio_F_N : N ; - circumversor_V : V ; - circumversus_A : A ; - circumverto_V2 : V2 ; - circumvestio_V2 : V2 ; - circumvincio_V2 : V2 ; - circumviso_V2 : V2 ; - circumvolitabilis_A : A ; - circumvolito_V2 : V2 ; - circumvolo_V : V ; - circumvolutor_V : V ; - circumvolvo_V2 : V2 ; - circumvorsor_V : V ; - circumvorto_V2 : V2 ; - circundo_V2 : V2 ; - circus_M_N : N ; - ciris_F_N : N ; - cirratus_A : A ; - cirratus_M_N : N ; - cirrhosis_F_N : N ; - cirritus_A : A ; - cirrus_M_N : N ; - cirsion_N_N : N ; - cirsocele_F_N : N ; - cis_Acc_Prep : Prep ; - cisanus_M_N : N ; - cisarius_M_N : N ; - cisium_N_N : N ; - cismontanus_A : A ; - cisorium_N_N : N ; - cissanthemos_F_N : N ; - cissanthemus_F_N : N ; - cissaron_N_N : N ; - cissaros_F_N : N ; - cission_N_N : N ; - cissitis_F_N : N ; - cissos_F_N : N ; - cissybium_N_N : N ; - cista_F_N : N ; - cistarius_M_N : N ; - cistella_F_N : N ; - cistellatrix_F_N : N ; - cistellula_F_N : N ; - cisterna_F_N : N ; - cisterninus_A : A ; - cisthos_M_N : N ; - cistifer_M_N : N ; - cistophorus_M_N : N ; - cistula_F_N : N ; - cit_A : A ; - citara_F_N : N ; - citate_Adv : Adv ; - citatim_Adv : Adv ; - citatio_F_N : N ; - citatorium_N_N : N ; - citatorius_A : A ; - citatus_A : A ; - citatus_M_N : N ; - cite_Adv : Adv ; - citer_A : A ; - citeria_F_N : N ; - citerius_Adv : Adv ; - cithara_F_N : N ; - citharicen_M_N : N ; - citharista_M_N : N ; - citharistria_M_N : N ; - citharizo_V : V ; - citharoeda_F_N : N ; - citharoedicus_A : A ; - citharoedus_M_N : N ; - citharus_M_N : N ; - citimus_A : A ; - citipes_A : A ; - citiremis_A : A ; - citivolus_A : A ; - cito_Adv : Adv ; - cito_V2 : V2 ; - citocacium_N_N : N ; - citra_Acc_Prep : Prep ; - citra_Adv : Adv ; - citrago_F_N : N ; - citrarius_M_N : N ; - citratus_A : A ; - citrea_F_N : N ; - citreago_F_N : N ; - citretum_N_N : N ; - citreum_N_N : N ; - citreus_A : A ; - citreus_M_N : N ; - citriarius_M_N : N ; - citrinus_A : A ; - citrium_N_N : N ; - citro_Adv : Adv ; - citrosus_A : A ; - citrulus_M_N : N ; - citrum_N_N : N ; - citrus_F_N : N ; - citrus_M_N : N ; - citus_A : A ; - cituvolus_A : A ; - civica_F_N : N ; - civicus_A : A ; - civile_N_N : N ; - civilis_A : A ; - civilitas_F_N : N ; - civiliter_Adv : Adv ; - civilizatio_F_N : N ; - civilizo_V : V ; + circumpes_M_N : N ; -- [DXXES] :: footgear; sandal; that is around foot; parasite (of foot); covering for foot; + circumplaudo_V2 : V2 ; -- [XXXFO] :: surround with applause, applaud/greet/clap all around; + circumplecto_V2 : V2 ; -- [XXXCO] :: encompass; embrace/clasp; surround/encircle; enclose (w/wall); cover roundabout; + circumplector_V : V ; -- [XXXCO] :: encompass; embrace; surround, encircle; enclose (w/wall); cover round about; + circumplexus_M_N : N ; -- [XXXNO] :: coiling around, encircling, embracing; latitudinal zone/band (of sky); + circumplico_V2 : V2 ; -- [XXXEO] :: coil round (like a snake); wind (strip) around; twine/bend around; + circumplumbo_V2 : V2 ; -- [XTXFO] :: coat (all over) with lead; pour lead all around (L+S); + circumpono_V2 : V2 ; -- [XXXCO] :: put/set/place (all) around/on either side of; confer (Souter); + circumpositio_F_N : N ; -- [DEXES] :: setting/placing around; + circumpositus_A : A ; -- [XXXDO] :: situated around, surrounding; + circumpotatio_F_N : N ; -- [XXXFO] :: passing round, practice of drinking around by passing a cup round company; + circumpulso_V2 : V2 ; -- [XXXFO] :: assail/beat/pulsate from every side; (with noise, etc); + circumpungo_V2 : V2 ; -- [XXXES] :: prick/puncture all round; + circumpurgo_V2 : V2 ; -- [XXXFO] :: clear/clean/purify/free from adhesions all around/round about; + circumputo_V2 : V2 ; -- [XSXFS] :: measure around; + circumquaque_Adv : Adv ; -- [XXXFS] :: on every side; all around; + circumrado_V2 : V2 ; -- [XXXEO] :: scrape/shave/pare around; + circumrasio_F_N : N ; -- [XXXNO] :: action of scraping round surface (of); scraping/paring around; + circumrefero_V2 : V2 ; -- [XXXFO] :: bring/tell round again; + circumretio_V2 : V2 ; -- [XXXEO] :: encircle with a net; ensnare; + circumrodo_V2 : V2 ; -- [XXXDO] :: nibble/gnaw/talk all round, eat off outer part of; speak about; slander; + circumroro_V2 : V2 ; -- [XXXFO] :: sprinkle (water) over/round; + circumroto_V2 : V2 ; -- [XXXEO] :: cause to revolve/rotate; turn/whirl around; turn around in a circle; + circumsaepio_V2 : V2 ; -- [XXXFO] :: fence/hedge round/in, enclose, surround; + circumsaeptus_A : A ; -- [XXXCO] :: fenced/hedged in, enclosed, walled in; surrounded, encircled; + circumsalto_V2 : V2 ; -- [XDXFS] :: dance around (chorus); jump around; + circumscalpo_V2 : V2 ; -- [XXXNO] :: scrape/scratch around/about; + circumscariphico_V2 : V2 ; -- [XXXNS] :: scrape/scratch around/about; scarify around (L+S); + circumscaripho_V2 : V2 ; -- [XXXNO] :: scrape/scratch around/about; scarify around (L+S); + circumscindo_V2 : V2 ; -- [XXXFO] :: tear/rip/strip (all around) (the clothes of); + circumscribo_V2 : V2 ; -- [XXXAO] :: |draw a line/circle around; circumscribe; hem in, confine, restrict; rule out; + circumscripte_Adv : Adv ; -- [XGXEO] :: concisely, succinctly; summarily; in periods/periodic style; + circumscriptio_F_N : N ; -- [XXXCO] :: circle, circumference; boundary; outline; cheating, fraud; periodic sentence; + circumscriptor_M_N : N ; -- [XXXDO] :: cheat; defrauder, deceiver; he who makes void/annuls; + circumscriptorie_Adv : Adv ; -- [XXXFS] :: by fraud/deceit; + circumscriptus_A : A ; -- [XGXEO] :: concisely expressed, succinct; compressed; rounded-off into periods, periodic; + circumseco_V2 : V2 ; -- [XXXDO] :: cut/clip/pare round; circumcise; + circumsecus_Adv : Adv ; -- [XXXFO] :: round about, around, round; in parts/region around; on every side; + circumsedeo_V2 : V2 ; -- [XXXCO] :: besiege/invest/blockade; surround, mob (person), beset; sit/live/settle round; + circumseparo_V2 : V2 ; -- [DBXFS] :: separate around; + circumsepio_V2 : V2 ; -- [XXXFO] :: fence/hedge round/in, enclose, surround; + circumseptus_A : A ; -- [XXXCO] :: fenced/hedged in, enclosed, walled in; surrounded, encircled; + circumsero_V2 : V2 ; -- [XAXNO] :: plant/sow/set round (something); + circumsessio_F_N : N ; -- [XXXFO] :: surrounding, mobbing; besieging; hostile encompassing (L+S); + circumsideo_V2 : V2 ; -- [XXXCO] :: besiege/invest/blockade; surround, mob (person), beset; sit/live/settle round; + circumsido_V2 : V2 ; -- [XXXEO] :: besiege/invest/blockade; surround, mob (person), beset; sit/live/settle round; + circumsigno_V2 : V2 ; -- [XXXEO] :: mark/sign/seal round about; + circumsilio_V : V ; -- [XXXEO] :: leap/spring/hop round; + circumsisto_V2 : V2 ; -- [XXXBO] :: stand/gather/crowd/take a stand around; surround, beset; be on either side; + circumsitus_A : A ; -- [DXXFS] :: lying/situated around; neighboring; + circumsocius_A : A ; -- [DXXFS] :: neighborly, in friendly neighborhood; + circumsono_V : V ; -- [XXXCO] :: resound on every side; echo round; surround/be filled (with noise/sound); + circumsonus_A : A ; -- [XXXEO] :: sounding/making a loud noise round about; filling/filled with sounds/noise; + circumspargo_V2 : V2 ; -- [XXXEO] :: sprinkle/spray round about/around; + circumspectatrix_F_N : N ; -- [XXXEO] :: female spy, she who goes around/spies; she who goes round making eyes (at); + circumspecte_Adv : Adv ; -- [XXXDO] :: warily/cautiously/circumspectly; carefully/meticulously; w/mature deliberation; + circumspectio_F_N : N ; -- [XXXFO] :: careful consideration; looking on all sides (L+S); foresight, caution; + circumspecto_V : V ; -- [XXXBO] :: look about (searchingly), search about; examine, watch (suspiciously), be alert; + circumspector_M_N : N ; -- [DXXES] :: watcher; watchman; spy; all seeing; + circumspectus_A : A ; -- [DXXES] :: |worthy of consideration, respected; distinguished; + circumspectus_M_N : N ; -- [XXXCO] :: survey/looking round/spying; visual examination; commanding view; contemplation; + circumspergo_V2 : V2 ; -- [XXXEO] :: sprinkle/spray round about/around; strew/scatter round about/around (L+S); + circumspicientia_F_N : N ; -- [XXXFO] :: caution, watchfulness; consideration, deliberation (L+S); + circumspicio_V2 : V2 ; -- [XXXAO] :: look around/over/for, survey; inspect; search for/seek; examine/review; ponder; + circumstagno_V : V ; -- [DXXFS] :: be poured forth all around; + circumstans_M_N : N ; -- [XXXES] :: by-stander (usu. pl.); + circumstantia_F_N : N ; -- [XXXDO] :: encircling position/troop; closing of fluid round passing object; circumstance; + circumstatio_F_N : N ; -- [XXXFO] :: circle/circular group (of people); a standing around (L+S); + circumsto_V : V ; -- [XXXBO] :: stand/gather/crowd around, surround, beset; be on either side; + circumstrepo_V2 : V2 ; -- [XXXCO] :: make a noise around; surround with noise; shout/cry clamorously around (person); + circumstridens_A : A ; -- [DXXFS] :: shrieking/yelling//jabbering around; + circumstringo_V2 : V2 ; -- [DXXES] :: bind about, put on; tie around, surround, clothe with; + circumstruo_V2 : V2 ; -- [XXXDO] :: build round, surround with a structure (externally/internally); + circumstupeo_V : V ; -- [XXXFO] :: hang sluggishly round; look around with amazement, stand around amazed (L+S); + circumsudo_V : V ; -- [XXXNO] :: sweat/be moist all around/on all sides; + circumsurgo_V : V ; -- [XXXFO] :: rise/project all around; + circumsutus_A : A ; -- [XXXEO] :: surrounded/enclosed in by means of sewing/stitching; sewed together all round; + circumtectus_A : A ; -- [XXXFO] :: covered, clothed; + circumtego_V2 : V2 ; -- [DXXCS] :: cover round about; + circumtendo_V2 : V2 ; -- [XXXFO] :: cover/surround by stretching; + circumteneo_V2 : V2 ; -- [DXXFS] :: posses; keep/hold around; + circumtentus_A : A ; -- [XXXES] :: covered/bound with (something); that is stretched/drawn around; begirt; + circumtergeo_V2 : V2 ; -- [XXXFO] :: wipe/rub round about/all around; + circumtermino_V2 : V2 ; -- [DXXFS] :: bound/limit round about/all around; + circumtero_V2 : V2 ; -- [XXXFO] :: rub/press/stand close/crowd on all sides; wear/rub away all around; + circumtextum_N_N : N ; -- [XXXES] :: garment inwoven with purple; + circumtextus_A : A ; -- [XXXEO] :: embroidered all around/round about; woven all around (L+S); + circumtinnio_V2 : V2 ; -- [XXXFO] :: clash/ring/tinkle round about/all around; + circumtollo_V2 : V2 ; -- [DXXFS] :: remove from every side; take/lift away all around; + circumtondeo_V2 : V2 ; -- [XXXFS] :: cut/shear/clip all around (hair); + circumtono_V2 : V2 ; -- [XXXEO] :: make a loud noise/clamor round; thunder round; + circumtonsus_A : A ; -- [XXXDO] :: having hair cut/trimmed/shorn all around; elaborate, artificial (L+S); + circumtorqueo_V2 : V2 ; -- [XXXFO] :: pull/twist/turn/wind/bend/spin round; + circumtremo_V2 : V2 ; -- [XXXFS] :: shake/tremble all around; + circumtueor_V : V ; -- [XXXFO] :: look around; + circumtumulatus_A : A ; -- [XXXFS] :: piled up around; + circumundique_Adv : Adv ; -- [DXXCS] :: round about on all sides; from everywhere around; + circumustus_A : A ; -- [XXXFO] :: burnt round/around/on all sides; + circumvado_V2 : V2 ; -- [XXXEO] :: form a ring round, surround, encompass, beset, attack/assail on every side; + circumvagor_V : V ; -- [XXXFO] :: travel/wander/roam around/about; (person, sound, etc); encircle; + circumvagus_A : A ; -- [XXXEO] :: moving/wandering round; encircling, flowing around; + circumvallo_V2 : V2 ; -- [XWXCO] :: surround with wall/siegeworks; blockade; beset, surround with troops/barriers; + circumvectio_F_N : N ; -- [XXXEO] :: circular course, revolution; transport/carrying round (from place to place); + circumvectitor_V : V ; -- [BXXFS] :: travel about; visit in succession; + circumvecto_V2 : V2 ; -- [XXXCS] :: carry/transport round/from place to place; describe; sail/travel round; + circumvector_V : V ; -- [XXXDO] :: sail round; travel round; + circumvehor_V : V ; -- [XXXCO] :: make rounds of; travel/ride round/in succession/past; flow round (sea); + circumvelo_V2 : V2 ; -- [XXXFS] :: cover around, envelop; + circumvenio_V2 : V2 ; -- [XXXBO] :: encircle, surround; assail, beset; enclose; circumvent; defraud/trick; surpass; + circumventio_F_N : N ; -- [XXXFO] :: trickery, fraud, circumvention; + circumventor_M_N : N ; -- [DXXFS] :: defrauder, deceiver, cheat; + circumventorius_A : A ; -- [DXXFS] :: fraudulent, deceitful; + circumverro_V2 : V2 ; -- [XXXFO] :: sweep/clean/skim around/over; + circumversio_F_N : N ; -- [XXXEO] :: action of turning around/revolving, revolution; + circumversor_V : V ; -- [XXXFO] :: turn about repeatedly; spin/whirl about/around; + circumversus_A : A ; -- [XXXFS] :: rushed/swept around; + circumverto_V2 : V2 ; -- [XXXCO] :: free (slave) by manumission; (PASS) turn (oneself) round, revolve (round); + circumvestio_V2 : V2 ; -- [XXXEO] :: clothe, cover over, surround with a covering; wrap up (in words); cloak; + circumvincio_V2 : V2 ; -- [XXXEO] :: bind/fasten round; + circumviso_V2 : V2 ; -- [XXXFO] :: look round at; glare round upon; + circumvolitabilis_A : A ; -- [DXXFS] :: flying around; + circumvolito_V2 : V2 ; -- [XXXCO] :: fly around/round about/over; (of horsemen/horses' hooves); frequent; flit; + circumvolo_V : V ; -- [XXXCO] :: fly/hover/flutter around; run/hasten/rush around; + circumvolutor_V : V ; -- [XXXNO] :: roll over; + circumvolvo_V2 : V2 ; -- [XXXCO] :: roll/revolve round, twine/coil around; wind around (w/something); + circumvorsor_V : V ; -- [XXXFS] :: turn about repeatedly; spin/whirl about/around; + circumvorto_V2 : V2 ; -- [BXXCS] :: free (slave) by manumission; (PASS) turn (oneself) round, revolve (round); + circundo_V2 : V2 ; -- [XXXEO] :: surround; envelop, post/put/place/build around; enclose; beset; pass around; + circus_M_N : N ; -- [XXXBO] :: race course; circus in Rome, celebration of games; circle; orbit; + ciris_F_N : N ; -- [XYXEO] :: mythical bird into which Scylla daughter of Nisus was changed; bird; fish; + cirratus_A : A ; -- [XXXEO] :: curly-haired; having curled hair/ringlets; fringed (L+S); + cirratus_M_N : N ; -- [XXXEO] :: curly-haired boy; schoolboys (pl.); + cirrhosis_F_N : N ; -- [GBXEK] :: cirrhosis; + cirritus_A : A ; -- [XAXFO] :: tufted, bearded; (epithet of a variety of pear?); having filaments (L+S); + cirrus_M_N : N ; -- [XXXCO] :: curl/ringlet, curly lock; tuft (on bird head), oyster's beard/tentacles; fringe; + cirsion_N_N : N ; -- [XAXNO] :: kind of thistle; + cirsocele_F_N : N ; -- [XBXFO] :: vericocele, varicose condition/dilatation of veins of spermatic chord; + cis_Acc_Prep : Prep ; -- [XXXCO] :: on/to this/near side of, short of; before, within (time); + cisanus_M_N : N ; -- [XXXIO] :: driver of a cissium (light two-wheeled carriage); + cisarius_M_N : N ; -- [XXXIO] :: driver of a cissium (light two-wheeled carriage); + cisium_N_N : N ; -- [XXXCO] :: light two-wheeled carriage; light wheeled vehicle; cabriolet; + cismontanus_A : A ; -- [XXXNO] :: that dwells/situated on this/near side of mountains; + cisorium_N_N : N ; -- [DBXFS] :: cutting instrument; (for bone); + cissanthemos_F_N : N ; -- [XAXNO] :: honeysuckle; plant similar to ivy (L+S); + cissanthemus_F_N : N ; -- [XAXNO] :: honeysuckle; plant similar to ivy (L+S); + cissaron_N_N : N ; -- [DAXFS] :: plant; (also called chrysanthemon); + cissaros_F_N : N ; -- [DAXFS] :: plant; (also called chrysanthemon); + cission_N_N : N ; -- [DAXFS] :: small ivy; + cissitis_F_N : N ; -- [XXXNO] :: precious stone; (of color of ivy leaves L+S); + cissos_F_N : N ; -- [XAXNO] :: ivy; + cissybium_N_N : N ; -- [DXXFS] :: cup of ivy-wood; + cista_F_N : N ; -- [XXXCO] :: chest/box (usu. made of wicker); box for sacred ceremonial objects; ballot box; + cistarius_M_N : N ; -- [XXXIO] :: guardian of chest or wardrobe; + cistella_F_N : N ; -- [XXXDO] :: small box/casket/chest; + cistellatrix_F_N : N ; -- [XXXFO] :: woman/slave in charge of clothes chests or wardrobe; (or money-box L+S); + cistellula_F_N : N ; -- [XXXEO] :: little/small box/casket/chest; (diminutive of diminutive of cista/box); + cisterna_F_N : N ; -- [XXXCO] :: cistern; underground/sunken tank/reservoir for water; (or wine L+S); ditch/pit; + cisterninus_A : A ; -- [XXXEO] :: of/obtained from cisterns, cistern-; [aqua cisternina => stored rain water]; + cisthos_M_N : N ; -- [XAXNO] :: rock rose (Cistus villosus and salvifolius); shrub plant w/red blossoms (L+S); + cistifer_M_N : N ; -- [XEXIO] :: bearer of a casket in religious ceremonies; casket-bearer; + cistophorus_M_N : N ; -- [XEXCO] :: ceremonial casket-bearer; an Asiatic coin w/Dionysus as a ~ (worth 4 drachma); + cistula_F_N : N ; -- [XXXDO] :: little/small box/chest; small basket (L+S); + cit_A : A ; -- [GXXEE] :: cited, named (reference); abb. for citus (VPAR ceio); + citara_F_N : N ; -- [FDXEM] :: harp; + citate_Adv : Adv ; -- [XXXEO] :: hurriedly; speedily, quickly, rapidly; nimbly (L+S); + citatim_Adv : Adv ; -- [XXXFO] :: hurriedly, quickly; speedily, hastily; + citatio_F_N : N ; -- [DXXES] :: calling, proclaiming (legal); command (military); citation, legal summons (Ecc); + citatorium_N_N : N ; -- [DLXFS] :: summoning before a tribunal; + citatorius_A : A ; -- [FXXFE] :: relating to a citation/summons; + citatus_A : A ; -- [XXXBO] :: quick, swift; early; loose (bowels); speeded up, hurried, urged on; full gallop; + citatus_M_N : N ; -- [XXXFO] :: impulse; + cite_Adv : Adv ; -- [DXXFS] :: quickly; rapidly; + citer_A : A ; -- [XXXBO] :: near/on this side; (COMP) nearer; sooner/earlier, urgent; (SUPER) next; least; + citeria_F_N : N ; -- [XDXEO] :: clown; effigy/caricature carried in procession at the games (L+S); + citerius_Adv : Adv ; -- [XXXFO] :: short of; to a lesser degree than; + cithara_F_N : N ; -- [XDXBO] :: cithara, lyre; lute, guitar (L+S); + citharicen_M_N : N ; -- [XDXFS] :: cithara/lyre player; + citharista_M_N : N ; -- [XDXEO] :: cithara/lyre player; + citharistria_M_N : N ; -- [XDXFO] :: cithara/lyre player (female); + citharizo_V : V ; -- [XDXFO] :: play on/strike cithara/lyre; + citharoeda_F_N : N ; -- [XDXIO] :: female singer-musician; (with self accompaniment on cithara/lyre); + citharoedicus_A : A ; -- [XDXDO] :: of/belonging to singer-musician; (on cithara/lyre); for singing w/lyre; + citharoedus_M_N : N ; -- [XDXCO] :: singer-musician; (with self accompaniment on cithara/lyre); harpist (Ecc); + citharus_M_N : N ; -- [XAXNO] :: kind of flat-fish; + citimus_A : A ; -- [XXXDO] :: nearest, that is or is situated nearest; + citipes_A : A ; -- [DXXFS] :: fleet-footed, swift-footed; swift, fleet; + citiremis_A : A ; -- [XWXFO] :: swift (of a galley), having swift oars; rowing swiftly (L+S); + citivolus_A : A ; -- [EXBFM] :: swiftly flying, swift-flying; + cito_Adv : Adv ; -- [XXXBO] :: quickly/fast/speedily, with speed; soon, before long; readily; easily; + cito_V2 : V2 ; -- [XXXAO] :: urge on, encourage; promote, excite; summon; set in motion; move (bowels); cite; + citocacium_N_N : N ; -- [DAXFS] :: plant; (also called chamelaea); + citra_Acc_Prep : Prep ; -- [XXXAO] :: on this/near side of, short of; before; below, less than; without regard to; + citra_Adv : Adv ; -- [XXXCO] :: on this/near side of, towards; nearer; short of the mark/amount/degree; + citrago_F_N : N ; -- [DAXFS] :: citrus plant; lemon balm; + citrarius_M_N : N ; -- [XXXIO] :: dealer/maker of articles of citron-wood; dealer in lemons (L+S); + citratus_A : A ; -- [XAXFO] :: treated with citron (tree) oil; steeped in citrus oil (L+S); + citrea_F_N : N ; -- [XAXNO] :: citrus tree; + citreago_F_N : N ; -- [DAXFS] :: citrus plant; lemon balm; + citretum_N_N : N ; -- [DAXFS] :: orchard of citrus trees; + citreum_N_N : N ; -- [XAXFS] :: fruit of citrus tree; citron; citron tree; + citreus_A : A ; -- [XAXCO] :: citrus, of/on/made of citrus tree/wood; of citron tree (L+S); + citreus_M_N : N ; -- [XAXNO] :: fruit of citrus tree; + citriarius_M_N : N ; -- [XXXIO] :: dealer/maker of articles of citron-wood; + citrinus_A : A ; -- [FAXEE] :: citrus; citric; + citrium_N_N : N ; -- [DAXFS] :: kind of gourd; + citro_Adv : Adv ; -- [XXXCO] :: to this side; on/by both sides/parties; [w/ultro/et => here + there, to + fro]; + citrosus_A : A ; -- [XAXEO] :: smelling of citron tree/wood; + citrulus_M_N : N ; -- [GXXEK] :: pumpkin; + citrum_N_N : N ; -- [GXXEK] :: |lemon; + citrus_F_N : N ; -- [GAXEK] :: lemon tree; + citrus_M_N : N ; -- [XAXDO] :: African citrus tree; (Callitris quadrivalvis?); citron (Citrus medica) (L+S); + citus_A : A ; -- [XXXAO] :: quick, swift, rapid; moving/acting/passing/occurring quickly, speedy; early; + cituvolus_A : A ; -- [FXBFM] :: swiftly flying, swift-flying; + civica_F_N : N ; -- [XLXCO] :: civic crown/garland of oak-leaves; (Roman cognomen); + civicus_A : A ; -- [XXXCO] :: of one's town/city/fellow-citizens; civil, civic; legal, civil (not military); + civile_N_N : N ; -- [XXXFS] :: courtesy; civility; + civilis_A : A ; -- [XLXAO] :: of/affecting fellow citizens; civil; legal; public; political; unassuming; + civilitas_F_N : N ; -- [XLXDO] :: science of politics/government; behavior of ordinary person; citizenship (Ecc); + civiliter_Adv : Adv ; -- [XXXCO] :: in civil sphere, between citizens; as becomes a citizen; civilly, unassumingly; + civilizatio_F_N : N ; -- [HXXDE] :: civilization; + civilizo_V : V ; -- [GXXEK] :: civilize; 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 ; - clabula_F_N : N ; - clabulare_N_N : N ; - clabularis_A : A ; - clabularius_A : A ; - clacendix_F_N : N ; - clades_F_N : N ; - clagalopes_F_N : N ; - clam_Abl_Prep : Prep ; - clam_Acc_Prep : Prep ; - clam_Adv : Adv ; - clamator_M_N : N ; - clamatorius_A : A ; - clamatus_M_N : N ; - clamis_F_N : N ; - clamitatio_F_N : N ; - clamito_V : V ; - clamium_N_N : N ; - clamo_V : V ; - clamor_M_N : N ; - clamorosus_A : A ; - clamos_M_N : N ; - clamose_Adv : Adv ; - clamosus_A : A ; + civis_M_N : N ; -- [XXXAO] :: fellow citizen; countryman/woman; citizen, free person; a Roman citizen; + civitas_F_N : N ; -- [XLXAO] :: community/city/town/state; citizens; citizen rights/citizenship; naturalization; + civitatula_F_N : N ; -- [XXXEO] :: (small) city/town; citizenship (in small/petty state); + clabula_F_N : N ; -- [DAXFS] :: graft or cutting; scion; + clabulare_N_N : N ; -- [DWXFS] :: large open wagon (used for transporting soldiers); (with wicker-work sides?); + clabularis_A : A ; -- [DWXFS] :: of/pertaining to large open wagon (used for transporting soldiers); (wicker?); + clabularius_A : A ; -- [DWXFS] :: of/pertaining to large open wagon (used for transporting soldiers); (wicker?); + clacendix_F_N : N ; -- [XAXFO] :: murex, purple-fish; a shellfish from which (royal) purple dye was obtained); + clades_F_N : N ; -- [XXXAO] :: |disaster, ruin, calamity; plague; pest, bane, scourge (cause of disaster); + clagalopes_F_N : N ; -- [XAXFS] :: species of eagle; + clam_Abl_Prep : Prep ; -- [XXXEO] :: without knowledge of, unknown to; concealed/secret from; (rarely w/ABL); + clam_Acc_Prep : Prep ; -- [XXXCO] :: without knowledge of, unknown to; concealed/secret from; (rarely w/ABL); + clam_Adv : Adv ; -- [XXXBO] :: secretly, in secret, unknown to; privately; covertly; by fraud; + clamator_M_N : N ; -- [XXXEO] :: shouter, bawler, noisy disclaimer; + clamatorius_A : A ; -- [XAXNS] :: screeching, clamorous; shouting; (epithet of an unknown bird - of bad omen); + clamatus_M_N : N ; -- [DXXFS] :: crying aloud, shouting; + clamis_F_N : N ; -- [BWXFO] :: Greek cloak/cape frequently for military use; state mantle; cloak, mantle; + clamitatio_F_N : N ; -- [XXXFO] :: shouting, bawling; violent crying, clamor, noise (L+S); + clamito_V : V ; -- [XXXBO] :: cry out, yell; shout repeatedly, clamor; proclaim; name/call repeatedly/loudly; + clamium_N_N : N ; -- [FLXFJ] :: claim; + clamo_V : V ; -- [XXXAO] :: proclaim, declare; cry/shout out; shout/call name of; accompany with shouts; + clamor_M_N : N ; -- [XXXAO] :: |war-cry, battle-cry; roar (thunder/surf); cry of fear/pain/mourning; wailing; + clamorosus_A : A ; -- [FXXDE] :: loud; clamorous; + clamos_M_N : N ; -- [BXXAO] :: |war-cry, battle-cry; roar (thunder/surf); cry of fear/pain/mourning; wailing; + clamose_Adv : Adv ; -- [XXXFO] :: in a loud voice with shouting; clamorously; + clamosus_A : A ; -- [XXXCO] :: given to/marked by/filled with shouting/bawling/yelling; barking (dog), noisy; clamys_1_N : N ; -- [XWXCO] :: Greek cloak/cape frequently for military use; state mantle; cloak, mantle; - clamys_2_N : N ; - clamys_F_N : N ; - clancularius_A : A ; - clanculo_Adv : Adv ; - clanculum_Acc_Prep : Prep ; - clanculum_Adv : Adv ; - clandestinitas_F_N : N ; - clandestino_Adv : Adv ; - clandestinus_A : A ; - clango_V : V ; - clangor_M_N : N ; - clare_Adv : Adv ; - clareo_V : V ; - claresco_V : V ; - claretus_A : A ; - claricito_V : V ; - clarico_V : V ; - clarificatio_F_N : N ; - clarifico_V2 : V2 ; - clarigatio_F_N : N ; - clarigito_V : V ; - clarigo_V : V ; - clarisonus_A : A ; - clarissimatus_M_N : N ; - claritas_F_N : N ; - claritudo_F_N : N ; - claritus_Adv : Adv ; - clarividus_A : A ; - claro_V : V ; - claror_M_N : N ; - claros_M_N : N ; - clarus_A : A ; - clasis_F_N : N ; - classiarius_A : A ; - classiarius_M_N : N ; - classicula_F_N : N ; - classicum_N_N : N ; - classicus_A : A ; - classicus_M_N : N ; - classis_F_N : N ; - clathrum_N_N : N ; - clathrus_A : A ; - clathrus_M_N : N ; - clatratus_A : A ; - clatro_V2 : V2 ; - clatrum_N_N : N ; - clatrus_M_N : N ; - claudaster_A : A ; - claudeo_V : V ; - claudicatio_F_N : N ; - claudico_V : V ; - claudigo_F_N : N ; - clauditas_F_N : N ; - claudo_V : V ; - claudo_V2 : V2 ; - claudus_A : A ; - clausa_F_N : N ; - claustellum_N_N : N ; - claustralis_A : A ; - claustrarius_A : A ; - claustrarius_M_N : N ; - claustritumus_M_N : N ; - claustrum_N_N : N ; - clausula_F_N : N ; - clausum_N_N : N ; - clausura_F_N : N ; - clausus_A : A ; - clava_F_N : N ; - clavarium_N_N : N ; - clavator_M_N : N ; - clavatus_A : A ; - claves_F_N : N ; - clavicarius_M_N : N ; - clavicen_M_N : N ; - clavicina_F_N : N ; - claviclarius_M_N : N ; - clavicula_F_N : N ; - clavicularius_M_N : N ; - clavicymbalum_N_N : N ; - claviger_A : A ; - claviger_M_N : N ; - clavile_N_N : N ; - clavis_F_N : N ; - clavo_V2 : V2 ; - clavola_F_N : N ; - clavula_F_N : N ; - clavulare_N_N : N ; - clavularis_A : A ; - clavularius_A : A ; - clavulus_M_N : N ; - clavus_M_N : N ; - claxendix_F_N : N ; - clema_N_N : N ; + clamys_2_N : N ; -- [XWXCO] :: Greek cloak/cape frequently for military use; state mantle; cloak, mantle; + clamys_F_N : N ; -- [BWXCO] :: Greek cloak/cape frequently for military use; state mantle; cloak, mantle; + clancularius_A : A ; -- [XXXFO] :: anonymous; writing in secret; secret, concealed, unknown (L+S); + clanculo_Adv : Adv ; -- [XXXFO] :: secretly; privately (L+S); + clanculum_Acc_Prep : Prep ; -- [XXXFO] :: without knowledge of, secret from; + clanculum_Adv : Adv ; -- [XXXCO] :: secretly, by stealth; sub rosa; privately (L+S); + clandestinitas_F_N : N ; -- [EXXEE] :: secrecy; + clandestino_Adv : Adv ; -- [XXXEO] :: secretly, clandestinely; + clandestinus_A : A ; -- [XXXCO] :: secret, hidden, concealed, clandestine; acting/done/made secretly/silently; + clango_V : V ; -- [XXXCO] :: clang, make ringing noise; sound (horn); scream (eagle); speak w/ringing tone; + clangor_M_N : N ; -- [XXXCO] :: clang, noise; blare/blast (trumpet); crying/clamor (bird); barking/baying (dog); + clare_Adv : Adv ; -- [XXXBO] :: aloud; brightly, clearly; lucidly; with distinction/honor, illustriously; + clareo_V : V ; -- [XXXDO] :: shine bright/clearly; be clear/plain/understandable/obvious; be famous/renowned; + claresco_V : V ; -- [XXXCO] :: be illuminated; become bright/evident/clear; become loud or famous/notorious; + claretus_A : A ; -- [GXXEK] :: claret (wine); + claricito_V : V ; -- [DXXES] :: recall, recollect, remember; + clarico_V : V ; -- [XXXFO] :: shine, gleam, glow; + clarificatio_F_N : N ; -- [DEXES] :: glorification; + clarifico_V2 : V2 ; -- [DEXCS] :: make illustrious/famous; + clarigatio_F_N : N ; -- [XXXFO] :: satisfaction; reparation, fine; solemn demand for redress (or war in 33 days); + clarigito_V : V ; -- [DXXES] :: recall, recollect, remember; + clarigo_V : V ; -- [XLXNO] :: demand satisfaction formally (from another state in formal declaration of war); + clarisonus_A : A ; -- [XXXFO] :: loud; clear-sounding, distinct; + clarissimatus_M_N : N ; -- [DLXFS] :: dignity of a Clarissimus (imperial official); + claritas_F_N : N ; -- [XXXBO] :: clarity/vividness; brightness; distinctness; loudness; celebrity, renown, fame; + claritudo_F_N : N ; -- [XXXCO] :: clearness, brightness; distinctness; loudness; celebrity, distinction, renown; + claritus_Adv : Adv ; -- [XXXEO] :: clearly, distinctly; + clarividus_A : A ; -- [DXXFS] :: seeing clearly; clear sighted; + claro_V : V ; -- [XXXCO] :: make visible; brighten, light up; make clear, explain; make illustrious/famous; + claror_M_N : N ; -- [BXXFS] :: clarity, brightness; + claros_M_N : N ; -- [XAXNO] :: beetle infesting beehives; (regarded by Pliny as a disease); + clarus_A : A ; -- [XXXAO] :: clear, bright, gleaming; loud, distinct; evident, plain; illustrious, famous; + clasis_F_N : N ; -- [BXXCS] :: division/class of Romans; levy/draft, land army; fleet; group/band; + classiarius_A : A ; -- [XWXDO] :: of navy/fleet/marines; + classiarius_M_N : N ; -- [XWXDO] :: mariner; sailor, seaman; naval forces/personnel (pl.), marines; + classicula_F_N : N ; -- [XWXFO] :: small fleet/flotilla; + classicum_N_N : N ; -- [XWXCO] :: military trumpet call; war-trumpet (L+S); + classicus_A : A ; -- [XWXCO] :: of/connected with fleet/sailors; belonging to a/highest citizen class; + classicus_M_N : N ; -- [XWXFO] :: trumpeter (who summoned comitia centuriata); sailors (pl.), marines; + classis_F_N : N ; -- [XXXBO] :: class/division of Romans; grade (pupils); levy/draft; fleet/navy; group/band; + clathrum_N_N : N ; -- [XXXDO] :: lattices or bars (pl.); grate; railings; + clathrus_A : A ; -- [XXXDO] :: latticed or barred; + clathrus_M_N : N ; -- [XXXDO] :: lattices or bars (pl.); grate; railings; + clatratus_A : A ; -- [XXXDO] :: latticed or barred; + clatro_V2 : V2 ; -- [XXXFO] :: fit with bars or railings; + clatrum_N_N : N ; -- [XXXDO] :: lattices or bars (pl.); grate; railings; + clatrus_M_N : N ; -- [XXXDO] :: lattices or bars (pl.); grate; railings; + claudaster_A : A ; -- [DXXFS] :: little lame; + claudeo_V : V ; -- [XXXCO] :: limp, stumble/falter/hesitate; be weak/imperfect, fall short; be lame, hobble; + claudicatio_F_N : N ; -- [XXXEO] :: limping; lameness; + claudico_V : V ; -- [XXXBO] :: limp, be lame; waver, incline to one side; be defective/deficient/fall short; + claudigo_F_N : N ; -- [XBXFO] :: lameness; limping, limp; + clauditas_F_N : N ; -- [XBXEO] :: lameness; + claudo_V : V ; -- [XXXCO] :: limp, stumble/falter/hesitate; be weak/imperfect, fall short; be lame, hobble; + claudo_V2 : V2 ; -- [XXXAO] :: close, shut, block up; conclude, finish; blockade, besiege; enclose; confine; + claudus_A : A ; -- [XXXBO] :: limping, lame; defective/crippled/imperfect; uneven/halting/wavering/uncertain; + clausa_F_N : N ; -- [FEXDE] :: cell; + claustellum_N_N : N ; -- [XXXFO] :: keyhole; + claustralis_A : A ; -- [DWXFS] :: fortress-, of/pertaining to fortress; cloister-, of cloister/convent (Ecc); + claustrarius_A : A ; -- [DXXFS] :: of/pertaining to locks; [~ artifex => locksmith]; + claustrarius_M_N : N ; -- [XXXIO] :: maker of door-bolts; locksmith; + claustritumus_M_N : N ; -- [XXXFO] :: warden of locks; + claustrum_N_N : N ; -- [EEXBF] :: |monastery, cloister (often pl.); + clausula_F_N : N ; -- [XGXBO] :: end/conclusion (letter/verse/transaction); close (periodic sentence); clause; + clausum_N_N : N ; -- [XXXES] :: enclosed space; + clausura_F_N : N ; -- [XXXEO] :: lock/clasp (necklace); lock, bar, bolt (L+S); castle, fort (late); cloister; + clausus_A : A ; -- [XXXBO] :: closed, inaccessible (places); impervious to feeling; shut/locked in, enclosed; + clava_F_N : N ; -- [GXXEK] :: |golf-club; (Cal); + clavarium_N_N : N ; -- [XWXFO] :: nail-money, allowance to soldiers for shoe-nails; + clavator_M_N : N ; -- [XXXEO] :: one who fights with a club; one who carries clubs/foils/exercise swords (L+S); + clavatus_A : A ; -- [XXXEO] :: furnished/decorated with nails/studs; striped (animal); + claves_F_N : N ; -- [XXXFS] :: door-key; bar/key for turning a press, lever; hook for bowling a hoop; + clavicarius_M_N : N ; -- [DXXFS] :: locksmith; + clavicen_M_N : N ; -- [GDXEK] :: pianist; + clavicina_F_N : N ; -- [GDXEK] :: pianist; + claviclarius_M_N : N ; -- [XXXIO] :: turnkey; keeper of keys, jailer (L+S); + clavicula_F_N : N ; -- [XXXCO] :: (small) key; vine-tendril; pivot; rod, bar, bolt (for door); + clavicularius_M_N : N ; -- [XXXIO] :: turnkey; keeper of keys, jailer (L+S); + clavicymbalum_N_N : N ; -- [GDXEK] :: harpsichord; + claviger_A : A ; -- [XYXDO] :: carrying/armed with a club; (epithet of Hercules); key-bearing (Janus); + claviger_M_N : N ; -- [XYXDO] :: mace/club-bearer, one armed with a club; (Hercules); key-bearer (Janus); + clavile_N_N : N ; -- [GDXEK] :: piano; + clavis_F_N : N ; -- [XXXBO] :: door-key; bar/key for turning a press, lever; hook for bowling a hoop; + clavo_V2 : V2 ; -- [DXXCS] :: nail, furnish/fasten with nails; furnish with points/prickles or purple stripe; + clavola_F_N : N ; -- [XAXFO] :: graft or cutting; scion; + clavula_F_N : N ; -- [XAXFO] :: graft or cutting; scion; + clavulare_N_N : N ; -- [DWXFS] :: large open wagon (used for transporting soldiers); (with wicker-work sides?); + clavularis_A : A ; -- [DWXFS] :: of/pertaining to large open wagon (used for transporting soldiers); (wicker?); + clavularius_A : A ; -- [DWXFS] :: of/pertaining to large open wagon (used for transporting soldiers); (wicker?); + clavulus_M_N : N ; -- [XXXEO] :: small nail; tack; small swelling; + clavus_M_N : N ; -- [XXXAO] :: nail, spike, rivet; purple stripe on tunic; tiller/helm, helm of ship of state; + claxendix_F_N : N ; -- [XAXFS] :: murex, purple-fish; a shellfish from which (royal) purple dye was obtained); + clema_N_N : N ; -- [XAXNO] :: knot-grass (Polygonum aviculare); clematis_1_N : N ; -- [XAXNO] :: plant; (various kinds of clematis/convolvulus/etc); - clematis_2_N : N ; - clematis_F_N : N ; - clematitis_F_N : N ; - clemens_A : A ; - clementer_Adv : Adv ; - clementia_F_N : N ; - clementinum_N_N : N ; - cleonia_F_N : N ; - cleonicion_N_N : N ; - cleopiceton_N_N : N ; - clepo_V2 : V2 ; - clepsydra_F_N : N ; - clepsydrarius_M_N : N ; - clepta_M_N : N ; - cleptes_M_N : N ; - clericalis_A : A ; - clericatus_M_N : N ; - clericus_M_N : N ; - clerus_M_N : N ; - clibanarius_M_N : N ; - clibanicius_A : A ; - clibanus_M_N : N ; - clidion_N_N : N ; - clidium_N_N : N ; - cliduchus_M_N : N ; + clematis_2_N : N ; -- [XAXNO] :: plant; (various kinds of clematis/convolvulus/etc); + clematis_F_N : N ; -- [XAXNO] :: plant; (various kinds of clematis/convolvulus/etc); (climbing plants L+S); + clematitis_F_N : N ; -- [XAXEO] :: plant; species of aristolochia; + clemens_A : A ; -- [XXXBO] :: merciful/loving; lenient/mild/gentle; quiet/peaceful, easy, moderate; compliant; + clementer_Adv : Adv ; -- [XXXCO] :: leniently, mercifully; mildly/softly; slowly/at an easy rate/gradually, gently; + clementia_F_N : N ; -- [XXXBO] :: mercy/clemency; compassion; indulgence/forbearance; gentleness, mildness, calm; + clementinum_N_N : N ; -- [GXXEK] :: clementine; (small orange, hybrid of tangerine and sour orange OED); + cleonia_F_N : N ; -- [DAXFS] :: plant; (also called helenium); + cleonicion_N_N : N ; -- [XAXNS] :: plant; (also called clinopodion); + cleopiceton_N_N : N ; -- [XAXNO] :: wild basil (Calamintha clinopodium); + clepo_V2 : V2 ; -- [XXXCO] :: steal; take away secretly; overhear, listen secretly; steal/hide oneself away; + clepsydra_F_N : N ; -- [XSXCO] :: water-clock; (used for timing speakers); time of one clock (20 minutes); + clepsydrarius_M_N : N ; -- [XSXFS] :: maker of water-clocks; + clepta_M_N : N ; -- [XXXFS] :: thief; + cleptes_M_N : N ; -- [XXXFO] :: thief; + clericalis_A : A ; -- [DEXCS] :: clerical, priestly; + clericatus_M_N : N ; -- [DEXCS] :: clerical office; clerical/priestly state; + clericus_M_N : N ; -- [DEXAS] :: clergyman, priest, cleric, clerk; scholar, student, scribe, secretary (Bee); + clerus_M_N : N ; -- [DEXCS] :: clergy, clerical order; + clibanarius_M_N : N ; -- [DWXES] :: soldier clad in mail, cuirassier; + clibanicius_A : A ; -- [DXXFS] :: baked in a clibanus (bread oven); [w/panis => bread baked in a clibanus]; + clibanus_M_N : N ; -- [XXXDO] :: oven; earthen/iron vessel w/small holes/broad bottom for baking/serving bread; + clidion_N_N : N ; -- [XAXNO] :: (parts round the) shoulder-bone of a fish; (tunny L+S); + clidium_N_N : N ; -- [XAXNS] :: (parts round the) shoulder-bone of a fish; (tunny L+S); + cliduchus_M_N : N ; -- [XXXNO] :: key-bearer; 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 ; + cliens_M_N : N ; -- [GXXEK] :: customer (modern sense); + clienta_F_N : N ; -- [XXXCO] :: female dependent/client, protegee; female votary; + clientela_F_N : N ; -- [XXXBO] :: clientship; vassalage; patronage; protection; clients; vassals; allies (pl.); + clientulus_M_N : N ; -- [XXXEO] :: mere/small/insignificant client; petty vassal; (term of contempt); + clima_N_N : N ; -- [XSXEO] :: measure of land; (60 feet square); inclination from latitude; clime; direction; 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 ; - climatias_M_N : N ; - climaticus_A : A ; - climatologia_F_N : N ; - climax_F_N : N ; - clinamen_N_N : N ; - clinatus_A : A ; - clingo_V2 : V2 ; - clinice_F_N : N ; - clinicos_A : A ; - clinicum_N_N : N ; - clinicus_M_N : N ; - clino_V2 : V2 ; - clinodium_N_N : N ; - clinopale_F_N : N ; - clinopodium_N_N : N ; + climacis_2_N : N ; -- [XWXEO] :: inclined channel/barrel of a ballista; small staircase/ladder (L+S); + climacter_M_N : N ; -- [XSXEO] :: rung (astrological), critical point in life (every 7 years); + climactericus_A : A ; -- [XSXFO] :: critical, climacteric (astrology); of critical point in life (every 7 years); + climacus_M_N : N ; -- [FDXFE] :: three musical notes in defending scale; + climatias_M_N : N ; -- [DSXFS] :: kind of earthquake; + climaticus_A : A ; -- [GXXEK] :: climatic; + climatologia_F_N : N ; -- [GSXEK] :: climatology; + climax_F_N : N ; -- [DGXFS] :: rhetorical figure (gradual increase in force of expression); (also gradatio); + clinamen_N_N : N ; -- [XXXFO] :: swerving, turning aside; + clinatus_A : A ; -- [XXXEO] :: inclining, slanting; inclined, bent, sunk (L+S); + clingo_V2 : V2 ; -- [XXXFO] :: surround/encircle/ring; enclose; beleaguer; accompany; gird, equip; ring (tree); + clinice_F_N : N ; -- [XBXFO] :: clinical medicine; practice at sick-bed (L+S); + clinicos_A : A ; -- [XBXNO] :: clinical, sick-bed; + clinicum_N_N : N ; -- [GXXEK] :: clinic; + clinicus_M_N : N ; -- [XBXES] :: physician attending patient in bed; bedridden patient; one baptized when sick; + clino_V2 : V2 ; -- [XXXFS] :: incline, slope; bend; sink; + clinodium_N_N : N ; -- [FXXFM] :: jewel; + clinopale_F_N : N ; -- [XXXFO] :: intercourse, wrestling in bed, active sexual exercise; + clinopodium_N_N : N ; -- [XAXNO] :: wild basil (Calamintha clinopodium); clinopus_1_N : N ; -- [XXXFO] :: foot of a bed; - clinopus_2_N : N ; - clinsa_F_N : N ; - clipeatus_A : A ; - clipeatus_M_N : N ; - clipeo_V2 : V2 ; - clipeolum_N_N : N ; - clipeum_N_N : N ; - clipeus_M_N : N ; - clitella_F_N : N ; - clitellarius_A : A ; - cliticos_M_N : N ; - clive_N_N : N ; - clivia_F_N : N ; - clivis_A : A ; - clivis_F_N : N ; - clivius_A : A ; - clivolus_M_N : N ; - clivos_M_N : N ; - clivosus_A : A ; - clivulus_M_N : N ; - clivum_N_N : N ; - clivus_A : A ; - clivus_M_N : N ; - cloaca_F_N : N ; - cloacalis_A : A ; - cloacarium_N_N : N ; - cloacarius_A : A ; - cloacarius_M_N : N ; - cloaco_V2 : V2 ; - cloacula_F_N : N ; - clocca_F_N : N ; - cloccarium_N_N : N ; - clodico_V : V ; - clodigo_F_N : N ; - clodo_V2 : V2 ; - clodus_A : A ; - clon_M_N : N ; - clonizatio_F_N : N ; - clonizo_V : V ; - clonos_F_N : N ; - clostellum_N_N : N ; - clostrarius_M_N : N ; - clostrum_N_N : N ; - clouaca_F_N : N ; - cluaca_F_N : N ; - cludo_M_N : N ; - cludo_V : V ; - cludo_V2 : V2 ; - cludus_A : A ; + clinopus_2_N : N ; -- [XXXFO] :: foot of a bed; + clinsa_F_N : N ; -- [FEXFE] :: small handbell; + clipeatus_A : A ; -- [XWXCO] :: armed/furnished with a shield (clipeus); shield-bearing; + clipeatus_M_N : N ; -- [XWXCO] :: soldier armed/furnished with a shield (clipeus) (usu. pl.); + clipeo_V2 : V2 ; -- [XWXFO] :: provide/arm with a shield (clipeus) or protection; + clipeolum_N_N : N ; -- [XWXFO] :: small shield; + clipeum_N_N : N ; -- [XWXBS] :: round/embossed shield (usu. bronze); disk of sun; vault of sky; meteorite; + clipeus_M_N : N ; -- [XWXBO] :: round/embossed shield (usu. bronze); disk of sun; vault of sky; meteorite; + clitella_F_N : N ; -- [XAXCO] :: pack-saddle (pl.), sumpter-saddle; like things; instrument of torture (L+S); + clitellarius_A : A ; -- [XAXEO] :: used for carrying a pack-saddle; of/pertaining to/bearing a pack-saddle (L+S); + cliticos_M_N : N ; -- [XDXNO] :: statue of person reclining/sitting; person reclining/sitting; + clive_N_N : N ; -- [XTXEO] :: slope, incline; + clivia_F_N : N ; -- [XAXNO] :: bird (unidentified); (of ill omen); + clivis_A : A ; -- [XTXEO] :: sloping, inclined; steep; + clivis_F_N : N ; -- [FDXFE] :: two musical notes second lower than first; + clivius_A : A ; -- [DXXES] :: which forbid anything to be done; (having bad omens?); + clivolus_M_N : N ; -- [XTXEO] :: short slope; + clivos_M_N : N ; -- [XTXBO] :: slope (sg.), incline; sloping ground; inclined passage/surface; (street name); + clivosus_A : A ; -- [XTXCO] :: hilly, full of hills; steep, characterized by slopes; difficult (L+S); + clivulus_M_N : N ; -- [XTXEO] :: short slope; little hill (L+S); + clivum_N_N : N ; -- [XTXFO] :: slope (pl.), incline; sloping ground; inclined passage/surface; (street name); + clivus_A : A ; -- [DXXES] :: which forbid anything to be done (pl.); (having bad omens?); + clivus_M_N : N ; -- [XTXBO] :: slope (sg.), incline; sloping ground; inclined passage/surface; (street name); + cloaca_F_N : N ; -- [XXXCO] :: sewer, underground drain; maw of voracious person; privy (medieval); + cloacalis_A : A ; -- [XXXFO] :: of/pertaining to sewage/sewers; + cloacarium_N_N : N ; -- [XLXEO] :: tax/levy/contribution towards upkeep/maintenance of sewers/drains; + cloacarius_A : A ; -- [EXXFM] :: of/derived from sewage/dung/sewers; [mons cloacarius => dung hill]; + cloacarius_M_N : N ; -- [ELXFM] :: sewer/drain worker/cleaner; + cloaco_V2 : V2 ; -- [DXXFS] :: daub; stain, pollute; soil; "smear"; + cloacula_F_N : N ; -- [DXXFS] :: small sewer/drain; + clocca_F_N : N ; -- [FXXEE] :: bell; + cloccarium_N_N : N ; -- [FXXEE] :: belfry; bell/clock tower; + clodico_V : V ; -- [XXXFO] :: limp, be lame; be defective; (facetious plebeian of claudico); + clodigo_F_N : N ; -- [XBXFO] :: lameness; limping, limp; + clodo_V2 : V2 ; -- [XXXNS] :: close, shut, block up; conclude, finish; blockade, besiege; enclose; confine; + clodus_A : A ; -- [XXXCO] :: limping, lame; defective/crippled/imperfect; uneven/halting/wavering/uncertain; + clon_M_N : N ; -- [HSXEK] :: clone; + clonizatio_F_N : N ; -- [HSXEK] :: cloning; + clonizo_V : V ; -- [HSXEK] :: clone; + clonos_F_N : N ; -- [DAXFS] :: plant; (also called batrachion or scelerata); + clostellum_N_N : N ; -- [XXXFO] :: keyhole; small lock (L+S); + clostrarius_M_N : N ; -- [XXXIO] :: maker of door-bolts; + clostrum_N_N : N ; -- [XXXAO] :: bolt (gate/door); key; bars (pl.), enclosure; barrier; door, gate, bulwark; dam; + clouaca_F_N : N ; -- [XXXCO] :: sewer, underground drain; maw of voracious person; privy (medieval); + cluaca_F_N : N ; -- [XXXCO] :: sewer, underground drain; maw of voracious person; privy (medieval); + cludo_M_N : N ; -- [XXXFO] :: dagger; + cludo_V : V ; -- [XBXCO] :: limp, halt; be weak, be imperfect; + cludo_V2 : V2 ; -- [XXXAO] :: close, shut, block up; conclude, finish; blockade, besiege; enclose; confine; + cludus_A : A ; -- [XXXCO] :: limping, lame; defective/crippled/imperfect; uneven/halting/wavering/uncertain; 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 ; - clueor_V : V ; - cluma_F_N : N ; - cluna_F_N : N ; - clunaclum_N_N : N ; - clunaculum_N_N : N ; - clunalis_A : A ; - clunicula_F_N : N ; - cluniculus_M_N : N ; + cluens_M_N : N ; -- [XXXBO] :: client, dependent (of a patron), vassal; client state/its citizens, allies; + clueo_V : V ; -- [XXXCO] :: be called, be named, be reputed/spoken of/said to be; be reckoned as existing; + clueo_V2 : V2 ; -- [XEXEO] :: purify; cleanse, make clean; + clueor_V : V ; -- [XXXCO] :: be called, be named, be reputed/spoken of/said to be; be reckoned as existing; + cluma_F_N : N ; -- [XAXFO] :: husks of grain; barley husks (pl.) (L+S); + cluna_F_N : N ; -- [XAXES] :: apes (pl.); (may be misread for clura); + clunaclum_N_N : N ; -- [XEXEO] :: sacrificial knife; + clunaculum_N_N : N ; -- [XEXEO] :: sacrificial knife; + clunalis_A : A ; -- [DAXFS] :: of/pertaining to hind parts, hind-; [clunales pedes => hindfeet]; + clunicula_F_N : N ; -- [XBXFO] :: upper leg or thigh; small hind parts (L+S); + cluniculus_M_N : N ; -- [XBXFO] :: upper leg or thigh; small hind parts (L+S); clunis_F_N : N ; -- [XBXCO] :: buttock, haunch, hindquarters (vertebrate animals); (also insects/arachnids); - clunis_M_N : N ; - cluo_V : V ; - cluo_V2 : V2 ; - clupea_F_N : N ; - clupeatus_A : A ; - clupeatus_M_N : N ; - clupeo_V2 : V2 ; - clupeolum_N_N : N ; - clupeum_N_N : N ; - clupeus_M_N : N ; - clura_F_N : N ; - clurinus_A : A ; - clusa_F_N : N ; - clusaris_A : A ; - clusarius_A : A ; - clusilis_A : A ; - clusor_M_N : N ; - cluster_M_N : N ; - clustrum_N_N : N ; - clusum_N_N : N ; - clusura_F_N : N ; - clusus_A : A ; - clutus_A : A ; - clybatis_F_N : N ; - clymenos_M_N : N ; - clymenus_M_N : N ; - clypeo_V2 : V2 ; - clypeolum_N_N : N ; - clypeum_N_N : N ; - clypeus_M_N : N ; - clysmus_M_N : N ; - clyster_M_N : N ; - clystera_M_N : N ; - clysterium_N_N : N ; - clysterizo_V2 : V2 ; - cnason_M_N : N ; - cnatus_M_N : N ; - cnecos_F_N : N ; - cnedinus_A : A ; - cnemis_F_N : N ; - cneoron_N_N : N ; - cneorum_N_N : N ; - cnephosus_A : A ; - cnestor_M_N : N ; - cnicus_F_N : N ; - cnide_F_N : N ; - cnidinus_A : A ; - cnisa_F_N : N ; - cnissa_F_N : N ; + clunis_M_N : N ; -- [XBXCO] :: buttock, haunch, hindquarters (vertebrate animals); (also insects/arachnids); + cluo_V : V ; -- [XXXCO] :: be called, be named, be reputed/spoken of/said to be; be reckoned as existing; + cluo_V2 : V2 ; -- [XEXEO] :: purify; cleanse, make clean; + clupea_F_N : N ; -- [XAXNO] :: small river fish; + clupeatus_A : A ; -- [XWXCO] :: armed/furnished with a shield (clipeus); shield-bearing; + clupeatus_M_N : N ; -- [XWXCO] :: soldier armed/furnished with a shield (clipeus) (usu. pl.); + clupeo_V2 : V2 ; -- [XWXFO] :: provide/arm with a shield (clipeus) or protection; + clupeolum_N_N : N ; -- [XWXFS] :: small shield; + clupeum_N_N : N ; -- [XWXBS] :: round/embossed shield (usu. bronze); disk of sun; vault of sky; meteorite; + clupeus_M_N : N ; -- [XWXBS] :: round/embossed shield (usu. bronze); disk of sun; vault of sky; meteorite; + clura_F_N : N ; -- [XAXFO] :: kind of ape; (Barbary ape?); + clurinus_A : A ; -- [XAXFO] :: of/pertaining to apes; + clusa_F_N : N ; -- [GXXEK] :: sluice; + clusaris_A : A ; -- [DXXFS] :: |easily shutting/closing; + clusarius_A : A ; -- [DXXFS] :: easily shutting/closing; + clusilis_A : A ; -- [XAXNO] :: capable of closing; bivalve; easily closing (L+S); + clusor_M_N : N ; -- [DXXFS] :: one who encloses/encompasses; + cluster_M_N : N ; -- [XBXCO] :: clyster, drench, injection; enema; syringe, clyster pipe; + clustrum_N_N : N ; -- [XXXAO] :: bolt (gate/door); key; bars (pl.), enclosure; barrier; door, gate, bulwark; dam; + clusum_N_N : N ; -- [XXXCS] :: enclosed space; + clusura_F_N : N ; -- [XXXEO] :: lock/clasp of a necklace; lock, bar, bolt (L+S); castle, fort (late); + clusus_A : A ; -- [XXXBO] :: closed, inaccessible (places); impervious to feeling; shut/locked in, enclosed; + clutus_A : A ; -- [DXXES] :: famous, renowned; celebrated, glorious; refined; + clybatis_F_N : N ; -- [DAXFS] :: plant (Parietaria officinalis); (also called helxine); + clymenos_M_N : N ; -- [XAXNO] :: plant, scorpion's tail (Scorpiurus vermiculata); + clymenus_M_N : N ; -- [XAXNO] :: plant, scorpion's tail (Scorpiurus vermiculata); + clypeo_V2 : V2 ; -- [XWXFS] :: provide/arm with a shield (clipeus) or protection; + clypeolum_N_N : N ; -- [XWXFS] :: small shield; + clypeum_N_N : N ; -- [XWXBS] :: round/embossed shield (usu. bronze); disk of sun; vault of sky; meteorite; + clypeus_M_N : N ; -- [XWXBS] :: round/embossed shield (usu. bronze); disk of sun; vault of sky; meteorite; + clysmus_M_N : N ; -- [XBXFO] :: clyster, drench, injection; enema; syringe, clyster pipe; + clyster_M_N : N ; -- [XBXCO] :: clyster, drench, injection; enema; syringe, clyster pipe; + clystera_M_N : N ; -- [XBXFT] :: clyster, drench, injection; enema; syringe, clyster pipe; + clysterium_N_N : N ; -- [XBXEO] :: small syringe; clyster (L+S); + clysterizo_V2 : V2 ; -- [DBXES] :: apply a syringe/clyster; give an injection/enema; purge; + cnason_M_N : N ; -- [DXXFS] :: hair-pin (with which women scratch head); + cnatus_M_N : N ; -- [XXXCO] :: son; child; children (pl.); + cnecos_F_N : N ; -- [XAXEO] :: safflower (Carthamus tinctorius); similar thistle; + cnedinus_A : A ; -- [XAXNS] :: of/pertaining to nettles, nettle-; + cnemis_F_N : N ; -- [DXXFS] :: greave; end of verse; + cneoron_N_N : N ; -- [XAXNS] :: plant name; (various kinds of Daphne?); + cneorum_N_N : N ; -- [XAXNO] :: plant name; (various kinds of Daphne?); + cnephosus_A : A ; -- [XXXFO] :: gloomy, dark; + cnestor_M_N : N ; -- [XAXNO] :: shrub; (Daphne gnidium?); + cnicus_F_N : N ; -- [XAXEO] :: safflower (Carthamus tinctorius); similar thistle; + cnide_F_N : N ; -- [XAXNO] :: nettle; sea nettle; + cnidinus_A : A ; -- [XAXNO] :: of/pertaining to nettles, nettle-; + cnisa_F_N : N ; -- [DEXFS] :: steam/odor from a sacrifice; + cnissa_F_N : N ; -- [DEXFS] :: steam/odor from a sacrifice; 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 ; - coa_F_N : N ; - coaccedo_V : V ; - coacervatim_Adv : Adv ; - coacervatio_F_N : N ; - coacervo_V2 : V2 ; - coacesco_V : V ; - coactarius_M_N : N ; - coacte_Adv : Adv ; - coactile_N_N : N ; - coactiliarius_A : A ; - coactiliarius_M_N : N ; - coactilis_A : A ; - coactim_Adv : Adv ; - coactio_F_N : N ; - coactivus_A : A ; - coacto_V : V ; - coactor_M_N : N ; - coactum_N_N : N ; - coactura_F_N : N ; - coactus_A : A ; - coactus_M_N : N ; - coaddo_V2 : V2 ; - coadjuto_V2 : V2 ; - coadjutor_M_N : N ; - coadjutoria_F_N : N ; - coadjutus_A : A ; - coadjutus_M_N : N ; - coadoro_V2 : V2 ; - coadulesco_V : V ; - coadunatio_F_N : N ; - coaduno_V2 : V2 ; - coaedifico_V2 : V2 ; - coaegresco_V : V ; - coaegroto_V : V ; - coaequalis_A : A ; - coaequalis_M_N : N ; - coaequo_V2 : V2 ; - coaestimo_V2 : V2 ; - coaetaneo_V : V ; - coaetaneus_M_N : N ; - coaeternus_A : A ; - coaevus_A : A ; - coaggero_V2 : V2 ; - coagito_V2 : V2 ; - coagmentarius_M_N : N ; - coagmentatio_F_N : N ; - coagmento_V : V ; - coagmentum_N_N : N ; - coagulare_N_N : N ; - coagulatio_F_N : N ; - coagulatus_A : A ; - coagulo_V2 : V2 ; - coagulum_N_N : N ; - coalesco_V : V ; - coalitio_F_N : N ; - coalitus_M_N : N ; - coalo_V2 : V2 ; - coambulo_V : V ; - coangusto_V2 : V2 ; - coapostolus_M_N : N ; - coaptatio_F_N : N ; - coapto_V2 : V2 ; - coarctatio_F_N : N ; - coarcto_V2 : V2 ; - coaresco_V : V ; - coarguo_V2 : V2 ; - coargutio_F_N : N ; - coarmius_M_N : N ; - coarmo_V2 : V2 ; - coartatio_F_N : N ; - coarticulo_V2 : V2 ; - coarto_V2 : V2 ; - coassamentum_N_N : N ; - coassatio_F_N : N ; - coassistens_M_N : N ; - coasso_V2 : V2 ; - coassumo_V2 : V2 ; - coauctio_F_N : N ; - coaudio_V2 : V2 ; - coaudito_V2 : V2 ; - coaxatio_F_N : N ; - coaxo_V : V ; - coaxo_V2 : V2 ; - cobaia_F_N : N ; - cobaltum_N_N : N ; - cobio_M_N : N ; - cobios_M_N : N ; - cobius_M_N : N ; - cocainum_N_N : N ; - coccinatus_A : A ; - coccinella_F_N : N ; - coccineus_A : A ; - coccinum_N_N : N ; - coccinus_A : A ; - coccio_M_N : N ; - coccum_N_N : N ; - coccus_M_N : N ; - coccygia_F_N : N ; - coccymelum_N_N : N ; - coccyx_M_N : N ; - cocetum_N_N : N ; - cochlea_F_N : N ; - cochlear_N_N : N ; - cochleare_N_N : N ; - cochlearis_A : A ; - cochlearium_N_N : N ; - cochleatim_Adv : Adv ; - cochleatus_A : A ; - cochleola_F_N : N ; - cochlia_F_N : N ; - cochlis_F_N : N ; - cochlos_M_N : N ; - cocibilis_A : A ; - cocilendrum_N_N : N ; - cocina_F_N : N ; - cocinaris_A : A ; - cocinarius_A : A ; - cocinatorium_N_N : N ; - cocinatorius_A : A ; - cocino_V2 : V2 ; - cocinus_A : A ; - cocio_M_N : N ; - cocionatura_F_N : N ; - cocionor_V : V ; - cocitatio_F_N : N ; - cocitatorius_A : A ; - cocito_V2 : V2 ; - coclaca_F_N : N ; - coclea_F_N : N ; - coclear_N_N : N ; - cocleare_N_N : N ; - coclearium_N_N : N ; - cocleatim_Adv : Adv ; - cocleatus_A : A ; - cocleola_F_N : N ; - coclia_F_N : N ; - coco_Interj : Interj ; - coco_V2 : V2 ; - cocoa_F_N : N ; - cocodrillus_M_N : N ; - cocodrilus_M_N : N ; - cocolobis_F_N : N ; - cocolubis_F_N : N ; - cocos_F_N : N ; - cocos_M_N : N ; - cocta_F_N : N ; - coctanum_N_N : N ; - coctilicius_A : A ; - coctilis_A : A ; - coctilum_N_N : N ; - coctio_F_N : N ; - coctio_M_N : N ; - coctivus_A : A ; - coctonum_N_N : N ; - coctor_M_N : N ; - coctoria_F_N : N ; - coctorium_N_N : N ; - coctum_N_N : N ; - coctura_F_N : N ; - cocturarius_M_N : N ; - coctus_A : A ; - cocula_F_N : N ; - coculeatus_A : A ; - coculum_N_N : N ; - cocus_M_N : N ; - coda_F_N : N ; - codex_M_N : N ; - codicarius_A : A ; - codicarius_M_N : N ; - codicellus_M_N : N ; - codicillaris_A : A ; - codicillarius_A : A ; - codicillus_M_N : N ; - codicula_F_N : N ; - codificatus_A : A ; + cnodax_2_N : N ; -- [XTXFO] :: pin, pivot; gudgeon, pivot on end of beam/axle for wheel/bell/etc; + cnodax_M_N : N ; -- [XTXFO] :: pin, pivot; gudgeon, pivot on end of beam/axle for wheel/bell/etc; + coa_F_N : N ; -- [XXXFO] :: lustful woman; (wearing fine Coan silk?); fictitious nickname of Clodia (L+S); + coaccedo_V : V ; -- [BXXFS] :: come to or be added besides; + coacervatim_Adv : Adv ; -- [XXXFO] :: in/by heaps; + coacervatio_F_N : N ; -- [XXXCO] :: heaping/piling together/up; adding together, aggregate; (of arguments); + coacervo_V2 : V2 ; -- [XXXBO] :: heap/pile up, gather/crowd together; amass, collect; make by heaping; add/total; + coacesco_V : V ; -- [XXXCO] :: become sour/acid; deteriorate; become corrupt; + coactarius_M_N : N ; -- [XXXIO] :: maker of felt; + coacte_Adv : Adv ; -- [XXXEO] :: briefly/concisely/shortly; exactly/accurately; in forced manner; by compulsion; + coactile_N_N : N ; -- [DXXFS] :: thick fulled cloth, felt; + coactiliarius_A : A ; -- [DXXFS] :: fulling; [~ taberna => fulling mill]; + coactiliarius_M_N : N ; -- [XXXIO] :: maker of felt; maker of thick fulled cloth (L+S); + coactilis_A : A ; -- [XXXFO] :: made of felt; made thick (L+S); + coactim_Adv : Adv ; -- [DXXFS] :: briefly, concisely, shortly; + coactio_F_N : N ; -- [DAXFS] :: |disease of animals; constraint; (Cal); + coactivus_A : A ; -- [GXXEK] :: forced; + coacto_V : V ; -- [XXXFO] :: compel; constrain; force; + coactor_M_N : N ; -- [DXXIS] :: |fuller; (felter?); (cloth worker); one who forces to something; + coactum_N_N : N ; -- [XXXFS] :: thick/fulled covering; mattress; + coactura_F_N : N ; -- [XAXFO] :: amount (of oil) extracted/pressed (in a given period); collection (L+S); + coactus_A : A ; -- [FXXEE] :: coercive; + coactus_M_N : N ; -- [XXXCO] :: compulsion, constraint, force, coercion; + coaddo_V2 : V2 ; -- [XXXFO] :: add; (ingredient); add with, add also (L+S); + coadjuto_V2 : V2 ; -- [FXXEE] :: urge; help, assist; + coadjutor_M_N : N ; -- [DXXIS] :: helper, assistant; + coadjutoria_F_N : N ; -- [FXXFE] :: assistantship; office of assistant; + coadjutus_A : A ; -- [FXXFE] :: assisted, helped;, aided; + coadjutus_M_N : N ; -- [FXXFE] :: assistant, helper; + coadoro_V2 : V2 ; -- [DEXES] :: worship/adore together/along with; + coadulesco_V : V ; -- [DEXFS] :: grow up along with; + coadunatio_F_N : N ; -- [DLXFS] :: uniting into one; summing up; + coaduno_V2 : V2 ; -- [XXXEO] :: unite; add/join together; collect into one; + coaedifico_V2 : V2 ; -- [XXXEO] :: build (town/etc); occupy (site) with buildings; build up/upon; + coaegresco_V : V ; -- [DBXFS] :: become sick at same time as; get sick together with; + coaegroto_V : V ; -- [DBXFS] :: be sick at same time as; + coaequalis_A : A ; -- [XXXEO] :: having same age as; be of equal/same age; + coaequalis_M_N : N ; -- [XXXEO] :: one of same age, contemporary; comrade/companion of same age (L+S); + coaequo_V2 : V2 ; -- [XXXCO] :: make level/equal, equalize; regard/treat as equal, equate; adjust by weighing; + coaestimo_V2 : V2 ; -- [XXXFO] :: estimate together/in conjunction (with); + coaetaneo_V : V ; -- [DXXFS] :: be of same age/contemporary; + coaetaneus_M_N : N ; -- [XXXFO] :: one of same age, contemporary; + coaeternus_A : A ; -- [DEXES] :: co-eternal; equally eternal; existing with another eternally; + coaevus_A : A ; -- [DEXCS] :: of same age, coeval, of equal antiquity, going back to same date; + coaggero_V2 : V2 ; -- [XXXFO] :: heap/cover over (with); heap together (L+S); + coagito_V2 : V2 ; -- [DBXFS] :: shake together; + coagmentarius_M_N : N ; -- [DXXFS] :: joining together; union; + coagmentatio_F_N : N ; -- [XXXDO] :: union, state/act of being joined/fitted together; connection, joint; + coagmento_V : V ; -- [XXXCO] :: join/fasten together, connect; make by joining/construct; fit (words) together; + coagmentum_N_N : N ; -- [XXXCO] :: joint; (vertical between stones); overlapping side of tile; joining (letters); + coagulare_N_N : N ; -- [DBXFS] :: colon; (intestine); + coagulatio_F_N : N ; -- [XXXNO] :: coagulation; curdling; congealing; + coagulatus_A : A ; -- [XXXFE] :: curdled; + coagulo_V2 : V2 ; -- [XAXDO] :: curdle (milk); make (liquids) thick/solid, congeal, coagulate; collect together; + coagulum_N_N : N ; -- [XAXCO] :: tie/bond, binding agent; rennet; curds; thickening/congealing; plant (~ terrae); + coalesco_V : V ; -- [XXXBO] :: join/grow together; coalesce; close (wound); become unified/strong/established; + coalitio_F_N : N ; -- [GXXEK] :: coalition; + coalitus_M_N : N ; -- [DEXFS] :: communion; fellowship; + coalo_V2 : V2 ; -- [DEXFS] :: sustain/nourish together; + coambulo_V : V ; -- [DXXFS] :: walk/go/travel with/together; + coangusto_V2 : V2 ; -- [XXXCO] :: confine to narrow space, cramp; make narrower; narrow/limit scope/application; + coapostolus_M_N : N ; -- [DEXFS] :: fellow apostle; + coaptatio_F_N : N ; -- [DEXFS] :: accurate joining together; + coapto_V2 : V2 ; -- [XXXFO] :: fit/join/adjust together; make by joining; + coarctatio_F_N : N ; -- [XXXES] :: tightening; fitting closely together; crowding/drawing together; + coarcto_V2 : V2 ; -- [XXXBO] :: narrow; hem in, pack/crowd/bring/fit close together, restrict; shorten/abridge; + coaresco_V : V ; -- [DXXFS] :: dry up/wither together; become/run dry together; + coarguo_V2 : V2 ; -- [XLXBO] :: refute; show, demonstrate; overwhelm w/proof; silence; convict; prove guilty; + coargutio_F_N : N ; -- [DLXFS] :: conviction; refutation; + coarmius_M_N : N ; -- [XWXIO] :: comrade-in-arms; + coarmo_V2 : V2 ; -- [DWXFS] :: arm/equip together; + coartatio_F_N : N ; -- [XXXEO] :: tightening; fitting closely together; crowding/drawing together; + coarticulo_V2 : V2 ; -- [DXXFS] :: cause to speak/articulate; + coarto_V2 : V2 ; -- [XXXBO] :: narrow; hem in, pack/crowd/bring/fit close together, restrict; shorten/abridge; + coassamentum_N_N : N ; -- [XTXEO] :: framework of planks; floor; + coassatio_F_N : N ; -- [XTXES] :: floor-boards, floor-planking; floor of planks/boards (L+S); joining of boards; + coassistens_M_N : N ; -- [FXXFE] :: coassistant, fellow assistant; + coasso_V2 : V2 ; -- [XXXFS] :: fit with floor planking; join boards/planks together (L+S); + coassumo_V2 : V2 ; -- [DEXFS] :: assume together; + coauctio_F_N : N ; -- [XXXFS] :: joint increase; + coaudio_V2 : V2 ; -- [XXXEO] :: confine to narrow space, cramp; make narrower; narrow/limit scope/application; + coaudito_V2 : V2 ; -- [DXXES] :: confine to narrow space, cramp; make narrower; narrow scope/application; + coaxatio_F_N : N ; -- [XTXEO] :: floor-boards, floor-planking; floor of planks/boards (L+S); joining of boards; + coaxo_V : V ; -- [XAXFO] :: croak; (of frogs); + coaxo_V2 : V2 ; -- [XXXFO] :: fit with floor planking; join boards/planks together (L+S); + cobaia_F_N : N ; -- [GXXEK] :: guinea pig, pig of India; + cobaltum_N_N : N ; -- [GSXEK] :: cobalt; + cobio_M_N : N ; -- [XAXEO] :: small fish; (of gudgeon kind); (used for bait); (Gobio); + cobios_M_N : N ; -- [XAXNO] :: plant (spurge); tithymalus/wolf's-milk (L+S); dendroides, leptophyllon; + cobius_M_N : N ; -- [XAXEO] :: small fish; (of gudgeon kind); (used for bait); (Gobio); + cocainum_N_N : N ; -- [GXXEK] :: cocaine; + coccinatus_A : A ; -- [XXXEO] :: dressed/clothed in scarlet; + coccinella_F_N : N ; -- [GXXEK] :: ladybird; + coccineus_A : A ; -- [XXXEO] :: dyed scarlet, scarlet-dyed; scarlet, of scarlet color; + coccinum_N_N : N ; -- [XAXCS] :: ||insect (Coccus ilicis) used for dye; scarlet dye/color; scarlet cloth/wool; + coccinus_A : A ; -- [XXXCO] :: dyed scarlet, scarlet-dyed; scarlet, of scarlet color; + coccio_M_N : N ; -- [XXXDO] :: dealer; broker; + coccum_N_N : N ; -- [XAXCO] :: |insect (Coccus ilicis) used for dye; scarlet dye/color; scarlet cloth/wool; + coccus_M_N : N ; -- [FAXET] :: insect (Coccus ilicis) used for dye; scarlet dye/color; scarlet cloth/wool; + coccygia_F_N : N ; -- [XAXNO] :: wig-tree (Rhus cotinus); kind of sumac used in coloring (L+S); + coccymelum_N_N : N ; -- [XAXFO] :: plum; + coccyx_M_N : N ; -- [XAXNO] :: cuckoo; + cocetum_N_N : N ; -- [DXXES] :: kind of food prepared from honey and poppies; + cochlea_F_N : N ; -- [XXXBO] :: snail; (form) snail shell; spiral; screw (press/water/wood); winding entrance; + cochlear_N_N : N ; -- [XXXCO] :: spoon; (originally for extracting snails); spoonful; + cochleare_N_N : N ; -- [XXXCO] :: spoon; (originally for extracting snails); spoonful; + cochlearis_A : A ; -- [GBXEW] :: cochlear, pertaining to the (snail-like) inner ear; of/like snail; + cochlearium_N_N : N ; -- [XAXFO] :: |snailery, snail pen, enclosure for edible snails; + cochleatim_Adv : Adv ; -- [DXXFS] :: spirally; like a snail shell; + cochleatus_A : A ; -- [DXXES] :: spiral/screw formed; + cochleola_F_N : N ; -- [DAXFS] :: small snail; + cochlia_F_N : N ; -- [XXXBO] :: snail; (form of) a snail shell; spiral; screw (press/water); winding entrance; + cochlis_F_N : N ; -- [XXXEO] :: spiral shell, conch; snail-shaped precious stone found in Arabia; + cochlos_M_N : N ; -- [XAXNO] :: kind of marine gastropod; (with spiral shell); + cocibilis_A : A ; -- [XXXNO] :: easy to cook; easily cooked (L+S); + cocilendrum_N_N : N ; -- [BXXFO] :: imaginary magic condiment; + cocina_F_N : N ; -- [XXXFO] :: cooking; art of cookery; kitchen (L+S); + cocinaris_A : A ; -- [XXXFO] :: of/belonging in kitchen; used in cooking; [w/culter => kitchen knife]; + cocinarius_A : A ; -- [XXXNO] :: of/belonging in kitchen; used in cooking; pertaining to kitchen, culinary (L+S); + cocinatorium_N_N : N ; -- [XXXIO] :: kitchen, place for cooking; + cocinatorius_A : A ; -- [XXXFO] :: culinary, used in cooking; pertaining to kitchen (L+S); + cocino_V2 : V2 ; -- [XXXEO] :: cook, prepare food; + cocinus_A : A ; -- [XXXFO] :: of/pertaining to cooks/cooking; [forum ~ => market where cooks were hired]; + cocio_M_N : N ; -- [XXXDO] :: dealer; broker; + cocionatura_F_N : N ; -- [DXXFS] :: bakery; + cocionor_V : V ; -- [XXXFO] :: trade, traffic (in a petty way); be a dealer/broker; + cocitatio_F_N : N ; -- [XXXFO] :: long and thorough process of cooking; continuous cooking (L+S); + cocitatorius_A : A ; -- [XXXFO] :: culinary; used in cooking; + cocito_V2 : V2 ; -- [BXXFO] :: cook; boil, fry, bake; burn, parch (sun); stir up; ripen, mature (plot); digest; + coclaca_F_N : N ; -- [XXXFO] :: round river stones resembling snails; + coclea_F_N : N ; -- [XXXBO] :: snail; (form of) a snail shell; spiral; screw (press/water); winding entrance; + coclear_N_N : N ; -- [XXXCO] :: spoon; (originally for extracting snails); spoonful; + cocleare_N_N : N ; -- [XXXCO] :: spoon; (originally for extracting snails); spoonful; + coclearium_N_N : N ; -- [XAXFO] :: |snailery, snail pen, enclosure for edible snails; + cocleatim_Adv : Adv ; -- [DXXFS] :: spirally; + cocleatus_A : A ; -- [DXXES] :: spiral/screw formed; + cocleola_F_N : N ; -- [DAXFS] :: small snail; + coclia_F_N : N ; -- [XXXBO] :: snail; (form of) a snail shell; spiral; screw (press/water); winding entrance; + coco_Interj : Interj ; -- [XXXFO] :: crow of cock; cock-a-doodle-doo; hen-clucking (L+S); + coco_V2 : V2 ; -- [XXXAO] :: cook; boil, fry, bake; burn, parch (sun); stir up; ripen, mature (plot); digest; + cocoa_F_N : N ; -- [GXXEK] :: cocoa (drink); + cocodrillus_M_N : N ; -- [XAEDO] :: crocodile; land reptile, Nile monitor; + cocodrilus_M_N : N ; -- [XAEDO] :: crocodile; land reptile, Nile monitor; + cocolobis_F_N : N ; -- [XAXES] :: Spanish name for a type of grape; + cocolubis_F_N : N ; -- [XAXES] :: Spanish name for a type of grape; + cocos_F_N : N ; -- [GAXEK] :: coconut tree; + cocos_M_N : N ; -- [XXXCO] :: cook; + cocta_F_N : N ; -- [XXXFO] :: boiled water; (water boiled then iced); + coctanum_N_N : N ; -- [XAQES] :: kind of small fig; (grown in Syria); + coctilicius_A : A ; -- [DXXFS] :: of/pertaining to dried wood; [~ taberna => place where dried wood was sold]; + coctilis_A : A ; -- [XXXEO] :: baked/burned (of bricks); made/built of/of baked/burned bricks; cooked (Ecc); + coctilum_N_N : N ; -- [DXXES] :: very dried wood (pl.); (that burns without smoke); + coctio_F_N : N ; -- [XXXEO] :: cooking; digestion (of food); burning (L+S); + coctio_M_N : N ; -- [XXXDO] :: dealer; broker; + coctivus_A : A ; -- [XXXNO] :: suitable for cooking, cooking- (of food); that easily cooks/ripens early (L+S); + coctonum_N_N : N ; -- [XAQES] :: kind of small fig; (grown in Syria); + coctor_M_N : N ; -- [XXXFO] :: cook; + coctoria_F_N : N ; -- [FXXEE] :: kiln; + coctorium_N_N : N ; -- [GXXEK] :: casserole; pan; + coctum_N_N : N ; -- [XXXDO] :: cooked food; smelted ore; + coctura_F_N : N ; -- [XXXCO] :: cooking (method) (food); heating/roasting/smelting (ore); thing heated/boiled; + cocturarius_M_N : N ; -- [XXXFS] :: cook; + coctus_A : A ; -- [XXXBO] :: cooked; roasted, burnt; smelted; baked (bricks); ripened, ripe; softened, mild; + cocula_F_N : N ; -- [XXXES] :: cook (female); + coculeatus_A : A ; -- [XXXFO] :: spiral; + coculum_N_N : N ; -- [XXXDO] :: cooking vessel/pot/pan; (bronze); + cocus_M_N : N ; -- [XXXCO] :: cook; + coda_F_N : N ; -- [XAXBO] :: tail (animal); extreme part/tail of anything; penis (Horace); + codex_M_N : N ; -- [XXXBO] :: trunk of tree; piece/block of wood; blockhead; (bound) book; note/account book; + codicarius_A : A ; -- [XWXCO] :: kind of barge/lighter (w/navis); + codicarius_M_N : N ; -- [XWXEO] :: bargeman, lighterman; (esp. those who brought grain from Ostia to Rome (L+S)); + codicellus_M_N : N ; -- [XXXBO] :: notepad, small log; writing tablets; patent; petition to Emperor; will/codicil; + codicillaris_A : A ; -- [XLXIO] :: named/appointed by written order of Emperor/in Emperor's handwriting; + codicillarius_A : A ; -- [DLXFS] :: named/appointed by written order of Emperor/in Emperor's handwriting; + codicillus_M_N : N ; -- [XXXBO] :: notepad, small log; writing tablets; patent; petition to Emperor; will/codicil; + codicula_F_N : N ; -- [XXXFS] :: little tail; + codificatus_A : A ; -- [FXXFE] :: codified; arranged; coec_1_N : N ; -- [XAXNO] :: kind of date; (doum palm, Hyphaene thebaica Liddle and Scott); - coec_2_N : N ; + coec_2_N : N ; -- [XAXNO] :: kind of date; (doum palm, Hyphaene thebaica Liddle and Scott); 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 ; - coeles_A : A ; - coeles_M_N : N ; - coeleste_N_N : N ; - coelestis_A : A ; + coecas_2_N : N ; -- [XAXNO] :: kind of date; (doum palm, Hyphaene thebaica Liddle and Scott); + coel_N : N ; -- [BSXES] :: sky, heaven; universe, world; space; air, weather; Jehovah; (shortened form); + coelectus_A : A ; -- [DXXES] :: elected together; + coelementatus_A : A ; -- [DSXFS] :: composed of the elements; + coeles_A : A ; -- [DXXFS] :: heavenly; celestial; (not found classical in NOM S); + coeles_M_N : N ; -- [DEXFS] :: the_Gods (usu. pl.); divinity, dweller in heaven; saint (Ecc); + coeleste_N_N : N ; -- [XSXCS] :: supernatural/heavenly matters (pl.); heavenly bodies; astronomy; + coelestis_A : A ; -- [XXXCS] :: heavenly, of heavens/sky, from heaven/sky; celestial; divine; of the_Gods; 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 ; - coeliacus_M_N : N ; - coelibatus_M_N : N ; - coelicola_C_N : N ; - coelicus_A : A ; - coelifer_A : A ; - coelifluus_A : A ; - coeligenus_A : A ; - coeligerus_A : A ; - coelioticus_A : A ; - coelipotens_A : A ; - coelitus_Adv : Adv ; - coelum_N_N : N ; - coelus_M_N : N ; - coemendatus_A : A ; - coemesis_F_N : N ; - coemeterium_N_N : N ; - coemo_V2 : V2 ; - coemptio_F_N : N ; - coemptionalis_A : A ; - coemptionator_M_N : N ; - coemptor_M_N : N ; - coena_F_N : N ; - coenacularius_A : A ; - coenaculum_N_N : N ; - coenaticus_A : A ; - coenatio_F_N : N ; - coenatiuncula_F_N : N ; - coenator_M_N : N ; - coenatorius_A : A ; - coenaturio_V : V ; - coenautocinetum_N_N : N ; - coencenatio_F_N : N ; - coenito_V : V ; - coeno_V : V ; - coenobiarcha_M_N : N ; - coenobita_M_N : N ; - coenobiticus_A : A ; - coenobium_N_N : N ; - coenomyia_F_N : N ; - coenon_N_N : N ; - coenositas_F_N : N ; - coenosus_A : A ; - coenula_F_N : N ; - coenulentus_A : A ; - coenum_N_N : N ; - 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 ; - coeptum_N_N : N ; - coeptus_A : A ; - coeptus_M_N : N ; - coepulonus_M_N : N ; - coepulor_V : V ; - coerceo_V2 : V2 ; - coercio_F_N : N ; - coercitio_F_N : N ; - coercitivus_A : A ; - coercitor_M_N : N ; - coerctio_F_N : N ; - coerro_V : V ; - coertio_F_N : N ; - coetus_M_N : N ; - coexercitatus_A : A ; - coextendo_V : V ; - cof_N : N ; - cofanus_M_N : N ; - coffeinum_N_N : N ; - cofinus_M_N : N ; - cofraternitas_F_N : N ; - cofrus_M_N : N ; - cogitabilis_A : A ; - cogitabundus_A : A ; - cogitamen_N_N : N ; - cogitamentum_N_N : N ; - cogitate_Adv : Adv ; - cogitatim_Adv : Adv ; - cogitatio_F_N : N ; - cogitatorium_N_N : N ; - cogitatum_N_N : N ; - cogitatus_A : A ; - cogitatus_M_N : N ; - cogito_V : V ; - cognata_F_N : N ; - cognatio_F_N : N ; - cognatus_A : A ; - cognatus_M_N : N ; - cognitio_F_N : N ; - cognitionalis_A : A ; - cognitionaliter_Adv : Adv ; - cognitor_M_N : N ; - cognitorius_A : A ; - cognitura_F_N : N ; - cognitus_A : A ; - cognitus_M_N : N ; - cognobilis_A : A ; - cognomen_N_N : N ; - cognomentum_N_N : N ; - cognominatio_F_N : N ; - cognominatus_A : A ; - cognominis_A : A ; - cognomino_V2 : V2 ; - cognominor_V : V ; - cognoscens_A : A ; - cognoscens_M_N : N ; - cognoscenter_Adv : Adv ; - cognoscibilitas_F_N : N ; - cognoscibiliter_Adv : Adv ; - cognoscitivus_A : A ; - cognosco_V2 : V2 ; - cogo_V2 : V2 ; - cogulo_V2 : V2 ; - cohabitatio_F_N : N ; - cohabitator_M_N : N ; - cohabito_V : V ; - cohaerens_A : A ; - cohaerente_N_N : N ; - cohaerenter_Adv : Adv ; - cohaerentia_F_N : N ; - cohaereo_V : V ; + coelestis_M_N : N ; -- [XEXCS] :: divinity, god/goddess; god-like person; the_Gods (pl.); heavenly bodies; + coeliaca_F_N : N ; -- [XBXNS] :: remedy/medicine for bowel/stomach/abdomen pains/disease; + coeliacus_A : A ; -- [XBXCO] :: in bowels/stomach (pain); having disease of bowels; for bowels (remedy); + coeliacus_M_N : N ; -- [XBXEO] :: person having disease/pain/suffering in bowels; (or stomach/abdomen L+S); + coelibatus_M_N : N ; -- [XXXFS] :: celibacy; bachelorhood; state of not being married; single life; + coelicola_C_N : N ; -- [XEXCO] :: heaven dweller; deity, god/goddess; worshiper of heavens (L+S); + coelicus_A : A ; -- [FEXEE] :: heavenly; celestial; + coelifer_A : A ; -- [XXXCO] :: supporting sky/heavens; + coelifluus_A : A ; -- [XXXFS] :: flowing from heaven; + coeligenus_A : A ; -- [XXXES] :: of heavenly birth/origin, heaven born; + coeligerus_A : A ; -- [XXXFS] :: heaven supporting; + coelioticus_A : A ; -- [DBXFS] :: cleansing of bowels/stomach; (purgative?); + coelipotens_A : A ; -- [XXXFS] :: powerful in heaven; + coelitus_Adv : Adv ; -- [XXXES] :: from heaven; heavenly; from the Emperor (L+S); divine; + coelum_N_N : N ; -- [XSXAS] :: sky, heaven, heavens; space; air, climate, weather; universe, world; Jehovah; + coelus_M_N : N ; -- [BSXAS] :: sky, heaven, heavens; space; air, climate, weather; universe, world; Jehovah; + coemendatus_A : A ; -- [DLXFS] :: amended at same time; + coemesis_F_N : N ; -- [DDXFS] :: somniferous song; + coemeterium_N_N : N ; -- [FDXFE] :: cemetery; + coemo_V2 : V2 ; -- [XXXCO] :: buy; buy up; + coemptio_F_N : N ; -- [XLXDO] :: fictitious marriage to free heiress; mock sale of estate to free it of burdens; + coemptionalis_A : A ; -- [XLXDS] :: of a mock/sham sale/marriage; poor, worthless; [~ senex => one used in sham]; + coemptionator_M_N : N ; -- [XLXFO] :: man acting as fictitious purchaser in coemptio (sham marriage/sale); + coemptor_M_N : N ; -- [XXXFO] :: one who buys up; (one who bribes); one who purchases many things (L+S); + coena_F_N : N ; -- [XXXBE] :: dinner/supper, principle Roman meal (evening); course; meal; company at dinner; + coenacularius_A : A ; -- [XXXFS] :: of/pertaining to a garret/attic; + coenaculum_N_N : N ; -- [XXXCS] :: attic, garret (often let as lodging); upstairs dining room; top/upper story; + coenaticus_A : A ; -- [XXXFS] :: of/pertaining to (a) dinner; + coenatio_F_N : N ; -- [XXXCS] :: dining-room; dining hall; + coenatiuncula_F_N : N ; -- [XXXFS] :: small dining-room; + coenator_M_N : N ; -- [DXXFS] :: diner; dinner guest; + coenatorius_A : A ; -- [XXXES] :: of/used for dining; pertaining to dinner or table; + coenaturio_V : V ; -- [XXXFS] :: desire to dine; have an appetite for dinner; + coenautocinetum_N_N : N ; -- [GXXEK] :: bus; + coencenatio_F_N : N ; -- [XXXES] :: dinner party; (Cicero from Greek); supping together, table companionship (L+S); + coenito_V : V ; -- [XXXCS] :: dine/eat habitually (in a particular place/manner); have dinner, dine (often); + coeno_V : V ; -- [XXXBS] :: dine, eat dinner/supper; have dinner with; dine on, make a meal of; + coenobiarcha_M_N : N ; -- [EEXEE] :: abbot; + coenobita_M_N : N ; -- [EEXCS] :: monk; cloister-brother; + coenobiticus_A : A ; -- [EEXEE] :: monastic; of monastic life/works/ritual/property; + coenobium_N_N : N ; -- [EEXCS] :: monastery; convent; cloister; + coenomyia_F_N : N ; -- [DAXES] :: common fly; + coenon_N_N : N ; -- [XBXIO] :: kind of eye-salve; + coenositas_F_N : N ; -- [XXXES] :: dirty/foul/muddy place; + coenosus_A : A ; -- [XXXES] :: muddy; filthy, foul; slimy, marshy; impure; + coenula_F_N : N ; -- [XXXCS] :: little dinner/supper; + coenulentus_A : A ; -- [XXXES] :: covered in mud/filth; muddy, filthy, slimy; + coenum_N_N : N ; -- [XXXES] :: mud, mire, filth, slime, dirt, uncleanness; (of persons) scum/filth; + coeo_1_V : V ; -- [XXXAO] :: |enter agreement; unite/assemble/conspire; come/go together; mend/knit (wound); + coeo_2_V : V ; -- [XXXAO] :: |enter agreement; unite/assemble/conspire; come/go together; mend/knit (wound); + coepio_V : V ; -- [AXXEO] :: begin, commence, initiate; (rare early form, usu. shows only PERFDEF); + coepio_V2 : V2 ; -- [XXXAO] :: begin, commence, initiate; set foot on; (usu. PERF PASS w/PASS INF; PRES early); + coepiscopatus_M_N : N ; -- [DEXFS] :: co-episcopate/bishopric/see; + coepiscopus_M_N : N ; -- [DEXES] :: associate bishop; fellow bishop (Ecc); + coepto_V : V ; -- [XXXCO] :: begin/commence (w/INF); set to work, undertake/attempt/try; venture/begin (ACC); + coeptum_N_N : N ; -- [XXXCO] :: undertaking (usu.pl.), enterprise, scheme; work begun/started/taken in hand; + coeptus_A : A ; -- [XXXCS] :: begun, started, commenced; undertaken; + coeptus_M_N : N ; -- [XXXCO] :: beginning, undertaking; + coepulonus_M_N : N ; -- [XXXFO] :: table-companion; (mock-tragic for parasitus); fellow banqueter/companion (L+S); + coepulor_V : V ; -- [DXXFS] :: feast/dine together; + coerceo_V2 : V2 ; -- [XXXAO] :: enclose, confine; restrain, check, curb, repress; limit; preserve; punish; + coercio_F_N : N ; -- [XLXFS] :: coercion, restraint, repression; (affliction of summary/right to) punishment; + coercitio_F_N : N ; -- [XLXCO] :: coercion, restraint, repression; (affliction of summary/right to) punishment; + coercitivus_A : A ; -- [FXXFE] :: compelling; coercing; + coercitor_M_N : N ; -- [DXXES] :: enforcer; one who restrains; + coerctio_F_N : N ; -- [XLXFS] :: coercion, restraint, repression; (affliction of summary/right to) punishment; + coerro_V : V ; -- [XXXFO] :: go/wander around together; + coertio_F_N : N ; -- [XLXFS] :: coercion, restraint, repression; (affliction of summary/right to) punishment; + coetus_M_N : N ; -- [XXXBO] :: |social intercourse (w/hominium), society, company; sexual intercourse; + coexercitatus_A : A ; -- [XXXFO] :: that is practiced together/at same time; + coextendo_V : V ; -- [FXXFE] :: have same extension/expansion; + cof_N : N ; -- [DEQEW] :: qof; (19th letter of Hebrew alphabet); (transliterate as K); + cofanus_M_N : N ; -- [DAXFS] :: pelican; + coffeinum_N_N : N ; -- [GXXEK] :: caffeine; + cofinus_M_N : N ; -- [XXXDO] :: basket, hamper; + cofraternitas_F_N : N ; -- [FEXEE] :: association, brotherhood, society/confraternity/confederation/sodality/guild; + cofrus_M_N : N ; -- [FXXFX] :: payment; some kind of coin?; + cogitabilis_A : A ; -- [XXXEO] :: conceivable, thinkable, imaginable, cogitable; + cogitabundus_A : A ; -- [XXXEO] :: wrapped in thought; thoughtful, thinking; + cogitamen_N_N : N ; -- [DXXFS] :: thinking; + cogitamentum_N_N : N ; -- [DXXFS] :: thought; + cogitate_Adv : Adv ; -- [XXXEO] :: carefully, with thought/reflection; + cogitatim_Adv : Adv ; -- [XXXFO] :: carefully, with thought/reflection; + cogitatio_F_N : N ; -- [XXXAO] :: thinking, meditation, reflection; thought; intention; plan; opinion, reasoning; + cogitatorium_N_N : N ; -- [DXXES] :: receptacle of thought; + cogitatum_N_N : N ; -- [XXXCO] :: result of deliberation, thoughts/ideas/reflections; intentions/plans; (pl. L+S); + cogitatus_A : A ; -- [XXXES] :: deliberate; + cogitatus_M_N : N ; -- [XXXEO] :: act of thinking; thought (L+S); + cogito_V : V ; -- [XXXAO] :: think; consider, reflect on, ponder; imagine, picture; intend, look forward to; + cognata_F_N : N ; -- [XXXCO] :: relation by birth (female), kinswoman; + cognatio_F_N : N ; -- [XXXBO] :: blood relation/relationship; kinsmen/relatives, family; consanguinity; affinity; + cognatus_A : A ; -- [XXXBO] :: related, related by birth/position, kindred; similar/akin; having affinity with; + cognatus_M_N : N ; -- [XXXCO] :: relation (male), kinsman; [~i regis => contingent of Persian king's bodyguard]; + cognitio_F_N : N ; -- [XXXAO] :: |getting to know (fact/subject/person); acquaintance; idea/notion; knowledge; + cognitionalis_A : A ; -- [DLXES] :: of/pertaining to judicial inquiry/investigation; + cognitionaliter_Adv : Adv ; -- [DLXFS] :: by judicial inquiry/investigation; + cognitor_M_N : N ; -- [XLXCO] :: guarantor of identity; he who knows/is acquainted with (person/thing); attorney; + cognitorius_A : A ; -- [XLXEO] :: of/concerning an attorney/advocate; + cognitura_F_N : N ; -- [XLXEO] :: duty of an attorney; office of state attorney/fiscal agent (debts) (L+S); + cognitus_A : A ; -- [XXXBO] :: known (from experience/carnally)), tried/proved; noted, acknowledged/recognized; + cognitus_M_N : N ; -- [XXXCO] :: act of getting to know/becoming acquainted with; + cognobilis_A : A ; -- [XXXEO] :: understandable, intelligible; + cognomen_N_N : N ; -- [XXXBO] :: surname, family/3rd name; name (additional/derived from a characteristic); + cognomentum_N_N : N ; -- [XXXCO] :: surname, family/3rd/allusive name; sobriquet; name; cult name of a god; + cognominatio_F_N : N ; -- [XXXFS] :: surname, family/3rd name; name (additional/derived from a characteristic); + cognominatus_A : A ; -- [XXXFO] :: derived from (other words) (of words); given (name); named; called; + cognominis_A : A ; -- [XXXCO] :: having same name; synonymous; like-named; + cognomino_V2 : V2 ; -- [XXXBO] :: give surname/epithet/sobriquet to person; name, give specific name, call; + cognominor_V : V ; -- [FXXEE] :: be named/surnamed/called; + cognoscens_A : A ; -- [XXXES] :: acquainted with; aware of; + cognoscens_M_N : N ; -- [XLXDO] :: judge; inquisitor; one taking part/conducting a judicial investigation; + cognoscenter_Adv : Adv ; -- [DXXFS] :: with knowledge; distinctly; + cognoscibilitas_F_N : N ; -- [FXXEE] :: ability to be know/understood/recognized; + cognoscibiliter_Adv : Adv ; -- [DXXES] :: recognizably; discernibly; + cognoscitivus_A : A ; -- [FEXDF] :: knowing, having power of knowing, intellectually aware + cognosco_V2 : V2 ; -- [XXXAO] :: become acquainted with/aware of; recognize; learn, find to be; inquire/examine; + cogo_V2 : V2 ; -- [XXXAO] :: collect/gather, round up, restrict/confine; force/compel; convene; congeal; + cogulo_V2 : V2 ; -- [XXXFO] :: curdle (milk); make (liquids) thick/solid, congeal, coagulate; collect together; + cohabitatio_F_N : N ; -- [DXXFS] :: cohabitation, living/dwelling together; + cohabitator_M_N : N ; -- [DXXES] :: he who lives/dwells with another; + cohabito_V : V ; -- [DXXES] :: dwell/live together; + cohaerens_A : A ; -- [XXXDO] :: touching, adjacent; holding together, coherent (literary work); being in accord; + cohaerente_N_N : N ; -- [XXXEO] :: things (pl.) touching/adjacent; coherent/systematic/connected whole/argument; + cohaerenter_Adv : Adv ; -- [XXXEO] :: systematically; consistently, compatibly; continuously, uninterruptedly; + cohaerentia_F_N : N ; -- [XXXCO] :: cohesion, sticking/combining together; organic structure; being time contiguous; + cohaereo_V : V ; -- [XXXAO] :: |be consistent/coherent; be connected/bound/joined/tied together; be in harmony; cohaeres_F_N : N ; -- [XLXCS] :: co-heir; joint heir; - cohaeres_M_N : N ; - cohaeresco_V : V ; - cohaesio_F_N : N ; - cohaesus_A : A ; - coherceo_V2 : V2 ; - cohercitio_F_N : N ; - cohereo_V : V ; + cohaeres_M_N : N ; -- [XLXCS] :: co-heir; joint heir; + cohaeresco_V : V ; -- [XXXCO] :: cohere; stick, adhere; grow together, unite; + cohaesio_F_N : N ; -- [FXXCE] :: cohesion, sticking/combining together; organic structure; being time contiguous; + cohaesus_A : A ; -- [DXXFS] :: pressed together; + coherceo_V2 : V2 ; -- [XXXAO] :: enclose, confine; restrain, check, curb, repress; limit; preserve; punish; + cohercitio_F_N : N ; -- [XLXCO] :: coercion, restraint, repression; (affliction of summary/right to) punishment; + cohereo_V : V ; -- [DXXAW] :: |be consistent/coherent; be connected/bound/joined/tied together; be in harmony; coheres_F_N : N ; -- [XLXCO] :: co-heir; joint heir; - coheres_M_N : N ; - coheresco_V : V ; - cohibeo_V2 : V2 ; - cohibilis_A : A ; - cohibiliter_Adv : Adv ; - cohibitio_F_N : N ; - cohibitus_A : A ; - cohonesto_V2 : V2 ; - cohorresco_V : V ; - cohors_F_N : N ; - cohortalinus_A : A ; - cohortalis_A : A ; - cohortatio_F_N : N ; - cohortatiuncula_F_N : N ; - cohorticula_F_N : N ; - cohorto_V2 : V2 ; - cohortor_V : V ; - cohospes_M_N : N ; - cohospitans_M_N : N ; - cohum_N_N : N ; - cohumido_V2 : V2 ; - cohurnus_M_N : N ; - coicio_V2 : V2 ; - coillum_N_N : N ; - coimbibo_V2 : V2 ; - coincidentia_F_N : N ; - coincideo_V : V ; - coincido_V : V ; - coinquinatio_F_N : N ; - coinquinatus_A : A ; - coinquino_V2 : V2 ; - coinquio_V2 : V2 ; - coinquo_V2 : V2 ; - cointelligo_V2 : V2 ; - coitio_F_N : N ; - coitus_M_N : N ; - coix_F_N : N ; - cojecto_V : V ; - cojectura_F_N : N ; + coheres_M_N : N ; -- [XLXCO] :: co-heir; joint heir; + coheresco_V : V ; -- [XXXCS] :: cohere; stick, adhere; grow together, unite; + cohibeo_V2 : V2 ; -- [XXXAO] :: hold together, contain; hold back, restrain, curb, hinder; confine; repress; + cohibilis_A : A ; -- [XXXFO] :: concise; terse; abridged, short (L+S); + cohibiliter_Adv : Adv ; -- [XXXEO] :: concisely; tersely; + cohibitio_F_N : N ; -- [XXXFO] :: restriction; compression; restriction, restraining, governing (L+S); + cohibitus_A : A ; -- [XXXFO] :: restrained; confined, limited (L+S); moderate; + cohonesto_V2 : V2 ; -- [XXXCO] :: honor, grace; do honor/pay respect to; make respectable; prevent baldness (L+S); + cohorresco_V : V ; -- [XXXDO] :: shudder; shiver/shake (from emotion/fear/cold/illness); + cohors_F_N : N ; -- [XWXAO] :: |cohort, tenth part of legion (360 men); armed force; band; ship crew; bodyguard + cohortalinus_A : A ; -- [DWXES] :: of/pertaining to an imperial/praetorian bodyguard (cohort); + cohortalis_A : A ; -- [XWXIO] :: |of/connected with a military/praetorian cohort/company/guard; + cohortatio_F_N : N ; -- [XXXCO] :: encouragement, exhortation, inciting; + cohortatiuncula_F_N : N ; -- [DXXFS] :: short exhortation; + cohorticula_F_N : N ; -- [XWXFO] :: little/small cohort; (used with contempt); + cohorto_V2 : V2 ; -- [DXXES] :: encourage, exhort; + cohortor_V : V ; -- [XXXBO] :: encourage, cheer up; exhort, rouse, incite; admonish; + cohospes_M_N : N ; -- [DXXFS] :: fellow-guest; + cohospitans_M_N : N ; -- [DXXFS] :: fellow-guest; + cohum_N_N : N ; -- [BSXEO] :: |vault/shapelessness/emptiness (of sky/heavens); + cohumido_V2 : V2 ; -- [XXXFO] :: wet all over; moisten; + cohurnus_M_N : N ; -- [XDXCO] :: |elevated/tragic/solemn style; tragic poetry; tragic stage; + coicio_V2 : V2 ; -- [XXXAO] :: |throw/cast/fling (into area); devote/pour (money); thrust, involve; insert; + coillum_N_N : N ; -- [DEXFS] :: innermost part of house where the_Lares were worshiped; + coimbibo_V2 : V2 ; -- [DXXFS] :: drink/imbibe together/along with/at same time; + coincidentia_F_N : N ; -- [GXXEK] :: coincidence; + coincideo_V : V ; -- [GXXEK] :: coincide; + coincido_V : V ; -- [FXXEE] :: coincide; + coinquinatio_F_N : N ; -- [DEXES] :: polluting, defiling; pollution; + coinquinatus_A : A ; -- [DXXFS] :: polluted, contaminated, tainted; + coinquino_V2 : V2 ; -- [XXXCO] :: befoul/pollute/defile wholly (immorality); contaminate/taint/infect (w/disease); + coinquio_V2 : V2 ; -- [XXXIO] :: cut back, prune; cut off, cut down (L+S); + coinquo_V2 : V2 ; -- [XXXIO] :: cut back, prune; cut off, cut down (L+S); + cointelligo_V2 : V2 ; -- [FXXEE] :: understand; presume; + coitio_F_N : N ; -- [XSXCO] :: |combination; physical/chemical union of elements; (late) sexual intercourse; + coitus_M_N : N ; -- [XXXBO] :: |union, sexual intercourse; fertilization; gathering/collection (fluid/pus); + coix_F_N : N ; -- [XAANS] :: kind of Ethiopian palm; + cojecto_V : V ; -- [XXXCO] :: |throw together; assemble; throw (person in prison); interpret (portent); + cojectura_F_N : N ; -- [XXXDX] :: conjecture/guess/inference/reasoning/interpretation/comparison/prophecy/forecast 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 ; - colaphizo_V2 : V2 ; - colaphus_M_N : N ; - colatura_F_N : N ; - colatus_A : A ; - coleatus_A : A ; - colegium_N_N : N ; - colens_A : A ; - colens_M_N : N ; - coleopteron_N_N : N ; - coleopterum_N_N : N ; - colephium_N_N : N ; - colepium_N_N : N ; - coles_M_N : N ; - colesco_V : V ; - coleus_M_N : N ; - colias_M_N : N ; - colices_F_N : N ; - colicon_N_N : N ; - coliculus_M_N : N ; - colicus_A : A ; - coligo_V2 : V2 ; - colimbus_M_N : N ; - colina_F_N : N ; - coliphium_N_N : N ; - colis_M_N : N ; - colisatum_N_N : N ; - collabasco_V : V ; - collabefacto_V : V ; - collabefio_V : V ; - collabello_V2 : V2 ; - collabor_V : V ; - collaboratio_F_N : N ; - collaboro_V : V ; - collaceratus_A : A ; - collacero_V2 : V2 ; - collacrimatio_F_N : N ; - collacrimo_V : V ; - collacrumo_V : V ; - collactanea_F_N : N ; - collactaneus_M_N : N ; - collactea_F_N : N ; - collacteus_M_N : N ; - collactia_F_N : N ; - collacticia_F_N : N ; - collacticius_M_N : N ; - collactius_M_N : N ; - collaetor_V : V ; - collambo_V2 : V2 ; - collapsio_F_N : N ; - collare_N_N : N ; - collaris_A : A ; - collaris_M_N : N ; - collarium_N_N : N ; - collatatus_A : A ; - collateralis_A : A ; - collatero_V2 : V2 ; - collaticius_A : A ; - collatio_F_N : N ; - collatitius_A : A ; - collativum_N_N : N ; - collativus_A : A ; - collator_M_N : N ; - collatro_V2 : V2 ; - collatus_M_N : N ; - collaudabilis_A : A ; - collaudatio_F_N : N ; - collaudator_M_N : N ; - collaudo_V2 : V2 ; - collaxo_V2 : V2 ; - collecta_F_N : N ; - collectaculum_N_N : N ; - collectaneum_N_N : N ; - collectaneus_A : A ; - collectarium_N_N : N ; - collectarius_M_N : N ; - collecte_Adv : Adv ; - collecticius_A : A ; - collectim_Adv : Adv ; - collectio_F_N : N ; - collectitius_A : A ; - collective_Adv : Adv ; - collectivisticus_A : A ; - collectivus_A : A ; - collector_M_N : N ; - collectorium_N_N : N ; - collectum_N_N : N ; - collectus_A : A ; - collectus_M_N : N ; - collega_C_N : N ; - collegatarius_M_N : N ; - collegialis_A : A ; - collegialiter_Adv : Adv ; - collegiarius_A : A ; - collegiarius_M_N : N ; - collegiata_F_N : N ; - collegiatus_A : A ; - collegiatus_M_N : N ; - collegium_N_N : N ; - collema_N_N : N ; - colleprosus_M_N : N ; - collesco_V : V ; - colleticus_A : A ; - colletis_F_N : N ; - collevo_V2 : V2 ; - colliberta_F_N : N ; - collibertus_M_N : N ; - collibro_V2 : V2 ; - collibuit_V0 : V ; - collicellus_M_N : N ; - collicia_F_N : N ; - colliciaris_A : A ; - colliculus_M_N : N ; - collido_V2 : V2 ; - colliga_F_N : N ; - colligate_Adv : Adv ; - colligatio_F_N : N ; - colligo_V2 : V2 ; - collimitaneus_A : A ; - collimito_V : V ; - collimitor_V : V ; - collimitum_N_N : N ; - collimo_V2 : V2 ; - collina_F_N : N ; - collineate_Adv : Adv ; - collineo_V2 : V2 ; - collinio_V2 : V2 ; - collino_V2 : V2 ; - collinus_A : A ; - colliphium_N_N : N ; - colliquefacio_V2 : V2 ; - colliquefactus_A : A ; - colliquefio_V : V ; - colliquesco_V2 : V2 ; - colliquia_F_N : N ; - colliquiarium_N_N : N ; - collis_M_N : N ; - collisio_F_N : N ; - collisus_A : A ; - collisus_M_N : N ; - collocatio_F_N : N ; - colloco_V2 : V2 ; - collocupleto_V2 : V2 ; - collocutio_F_N : N ; - collocutor_M_N : N ; - collocutorium_N_N : N ; - collocutorius_A : A ; - colloquium_N_N : N ; - colloquor_V : V ; - collubuit_V0 : V ; - collubus_M_N : N ; - colluceo_V : V ; - colluco_V2 : V2 ; - colluctatio_F_N : N ; - colluctor_M_N : N ; - colluctor_V : V ; - colludium_N_N : N ; - colludo_V : V ; - collugeo_V : V ; - collum_N_N : N ; - collumino_V2 : V2 ; - collumnela_F_N : N ; - colluo_V2 : V2 ; - collurchinatio_F_N : N ; - collus_M_N : N ; - collusim_Adv : Adv ; - collusio_F_N : N ; - collusor_M_N : N ; - collusorie_Adv : Adv ; - collustrium_N_N : N ; - collustro_V2 : V2 ; - collutio_F_N : N ; - collutito_V2 : V2 ; - collutlento_V2 : V2 ; - colluviaris_A : A ; - colluvies_F_N : N ; - colluvio_F_N : N ; - colluvium_N_N : N ; - collybista_M_N : N ; - collybus_M_N : N ; - collyra_F_N : N ; - collyricus_A : A ; - collyrida_F_N : N ; - collyriolum_N_N : N ; - collyris_F_N : N ; - collyrium_N_N : N ; - colo_V2 : V2 ; - colobathrarius_M_N : N ; - colobicus_A : A ; - colobium_N_N : N ; - colobos_A : A ; - colobum_N_N : N ; - colocasia_F_N : N ; - colocasium_N_N : N ; - colocyntha_F_N : N ; + cojux_M_N : N ; -- [XXXEO] :: spouse/mate/consort; husband (M); wife (F)/bride/fiancee/concubine; yokemate; + cola_F_N : N ; -- [FXXFE] :: strainer; + colafus_M_N : N ; -- [XXXCO] :: blow with fist; buffet, cuff; box on ear (L+S); + colaphizo_V2 : V2 ; -- [DXXFS] :: box one's ears; cuff; + colaphus_M_N : N ; -- [XXXCO] :: blow with fist; buffet, cuff; box on ear (L+S); + colatura_F_N : N ; -- [DXXFS] :: flirtation; that which has been strained; + colatus_A : A ; -- [DXXFS] :: cleansed, cleaned, purified; + coleatus_A : A ; -- [XXXFO] :: provided with/having/pertaining to testicles; + colegium_N_N : N ; -- [XXXEO] :: college/board (priests); corporation; brotherhood/fraternity/guild/colleagueship + colens_A : A ; -- [XXXFS] :: honoring, treating respectfully; + colens_M_N : N ; -- [XEXFS] :: reverer, worshiper; + coleopteron_N_N : N ; -- [GXXEK] :: coleopteron, beetle; carob; carob tree; + coleopterum_N_N : N ; -- [GXXEK] :: beetle; + colephium_N_N : N ; -- [XXXEO] :: unidentified preparation of meat; choice/nourishing meat for athletes (L+S); + colepium_N_N : N ; -- [DXXES] :: |knuckle of beef/pork; + coles_M_N : N ; -- [XXXDO] :: stalk/stem; stem of a cabbage/lettuce/etc; cabbage/lettuce; quill; penis; + colesco_V : V ; -- [XXXCO] :: join/grow together; coalesce; close (wound); become unified/strong/established; + coleus_M_N : N ; -- [XBXCO] :: |testicles (usu.pl.) or scrotum; (rude); + colias_M_N : N ; -- [XAXNO] :: coly-mackerel (Scomber colias); kind of tunny (L+S); + colices_F_N : N ; -- [XBXEO] :: remedy for colic; + colicon_N_N : N ; -- [XBXFO] :: remedy for colic; + coliculus_M_N : N ; -- [XAXCO] :: stalk/stem (small); small cabbage, cabbage sprout; pillar like a stalk/shoot; + colicus_A : A ; -- [DBXFS] :: of/pertaining to colic; + coligo_V2 : V2 ; -- [XXXEO] :: bind/tie/pack together/up, connect, unite, unify; fetter, bind, put in bonds; + colimbus_M_N : N ; -- [XXXIO] :: swimming pool; + colina_F_N : N ; -- [XXXCS] :: kitchen; portable kitchen; food/fare/board; cooking; place for burnt offerings; + coliphium_N_N : N ; -- [XXXES] :: unidentified preparation of meat; choice/nourishing meat for athletes (L+S); + colis_M_N : N ; -- [XAXCO] :: stalk/stem; stem of a cabbage/lettuce/etc; cabbage/lettuce; quill; penis; + colisatum_N_N : N ; -- [XXXNO] :: kind of vehicle; + collabasco_V : V ; -- [XXXFO] :: waver/totter/become unsteady at same time; waver/totter with; + collabefacto_V : V ; -- [XXXFO] :: cause to topple over; make to reel/totter (L+S); overpower/subdue; melt (metal); + collabefio_V : V ; -- [XXXDO] :: collapse/break up; sink together; be overthrown politically/brought to ruin; + collabello_V2 : V2 ; -- [XXXFO] :: make/form by putting lips together; + collabor_V : V ; -- [XXXBO] :: collapse, fall down/in ruin; fall in swoon/exhaustion/death; slip/slink (meet); + collaboratio_F_N : N ; -- [FXXEE] :: collaboration, working together; + collaboro_V : V ; -- [DXXFS] :: labor/work with/together; + collaceratus_A : A ; -- [XXXFS] :: torn to pieces; lacerated; + collacero_V2 : V2 ; -- [XXXFO] :: lacerate severely; tear to pieces (L+S); + collacrimatio_F_N : N ; -- [XXXFO] :: accompanying tears; weeping/lamenting (together/greatly); + collacrimo_V : V ; -- [XXXDO] :: weep together, weep in company of someone; weep over/for (w/ACC); bewail; + collacrumo_V : V ; -- [XXXES] :: weep together, weep in company of someone; weep over/for (w/ACC); bewail; + collactanea_F_N : N ; -- [XXXEO] :: foster-sister; one nourished at same breast; + collactaneus_M_N : N ; -- [XXXEO] :: foster-brother; one nourished at same breast; + collactea_F_N : N ; -- [XXXEO] :: foster-sister; one nourished at same breast; + collacteus_M_N : N ; -- [XXXEO] :: foster-brother; one nourished at same breast; + collactia_F_N : N ; -- [XXXEO] :: foster-sister; one nourished at same breast; + collacticia_F_N : N ; -- [XXXIS] :: foster-sister; one nourished at same breast; + collacticius_M_N : N ; -- [XXXIS] :: foster-brother; one nourished at same breast; + collactius_M_N : N ; -- [XXXEO] :: foster-brother; one nourished at same breast; + collaetor_V : V ; -- [DXXFS] :: rejoice together; + collambo_V2 : V2 ; -- [XXXEV] :: lick thoroughly; lap/lick up; suck (up), absorb; + collapsio_F_N : N ; -- [DXXFS] :: precipitation, falling together; + collare_N_N : N ; -- [XXXDO] :: collar, neckband; chain for neck (L+S); + collaris_A : A ; -- [XBXFO] :: of/pertaining to/belonging to neck; + collaris_M_N : N ; -- [XXXFO] :: collar, neckband; chain for neck (L+S); + collarium_N_N : N ; -- [DXXES] :: collar, neckband; chain for neck (L+S); + collatatus_A : A ; -- [XXXFS] :: extended; diffuse; + collateralis_A : A ; -- [FLXFE] :: collateral; + collatero_V2 : V2 ; -- [DXXFS] :: admit on both sides; + collaticius_A : A ; -- [XXXDO] :: contributed, raised/produced by contributions; brought together (L+S); mingled; + collatio_F_N : N ; -- [XGEBO] :: |comparison; [grammatical secunda ~/tertia ~ => comparative/superlative]; + collatitius_A : A ; -- [XXXES] :: contributed, raised/produced by contributions; brought together (L+S); mingled; + collativum_N_N : N ; -- [DLXFS] :: contribution in money; + collativus_A : A ; -- [XXXEO] :: supplied/produced by contributions from many quarters; collected/combined (L+S); + collator_M_N : N ; -- [XXXEO] :: joint contributor, subscriber; he who brings/places together (L+S); comparer; + collatro_V2 : V2 ; -- [XXXFO] :: bark in chorus at; bark/yelp fiercely at (L+S); inveigh against; + collatus_M_N : N ; -- [XWXFO] :: joining of battle; affray, attack (L+S); contributing (to knowledge, teaching); + collaudabilis_A : A ; -- [DXXFS] :: worthy of praise in every respect; + collaudatio_F_N : N ; -- [XXXEO] :: high/warm praise; commendation; eulogy; + collaudator_M_N : N ; -- [DXXFS] :: one who praises highly/warmly; + collaudo_V2 : V2 ; -- [XXXCO] :: praise/extol highly; commend; eulogize; + collaxo_V2 : V2 ; -- [XXXFO] :: loosen; make loose/porous (L+S); + collecta_F_N : N ; -- [XXXFO] :: contribution; collection; meeting/assemblage (L+S); Collect at Mass (eccl.); + collectaculum_N_N : N ; -- [DXXES] :: place of assembling; receptacle, reservoir; + collectaneum_N_N : N ; -- [FEXEE] :: book of Collects; + collectaneus_A : A ; -- [XXXEO] :: collected, assembled/gathered together from various sources; + collectarium_N_N : N ; -- [FEXEE] :: book of Collects; + collectarius_M_N : N ; -- [DXXES] :: money-changer; banker, cashier; + collecte_Adv : Adv ; -- [DXXFS] :: summarily; briefly; + collecticius_A : A ; -- [XXXEO] :: obtained/collected from various quarters; gathered hastily without selection; + collectim_Adv : Adv ; -- [DXXFS] :: summarily; briefly; + collectio_F_N : N ; -- [XXXCO] :: collection/accumulation; gathering, abscess; recapitulation, summary; inference; + collectitius_A : A ; -- [XXXEO] :: obtained/collected from various quarters; gathered hastily without selection; + collective_Adv : Adv ; -- [GXXEK] :: collectively; + collectivisticus_A : A ; -- [FGXFE] :: proceeding by inference; deductive; gathered together (L+S); collective; + collectivus_A : A ; -- [XGXFO] :: proceeding by inference; deductive; gathered together (L+S); collective; + collector_M_N : N ; -- [XXXIO] :: collector, one who collects; fellow student (L+S); + collectorium_N_N : N ; -- [GXXEK] :: folder; + collectum_N_N : N ; -- [XXXNO] :: that which is collected; (food); collected sayings/writings (pl.); + collectus_A : A ; -- [XXXEO] :: compact (of style), concise; restricted; contracted, narrow; shut (Ecc); + collectus_M_N : N ; -- [XXXEO] :: heap/pile; accumulation (of liquid); collection; + collega_C_N : N ; -- [XXXBO] :: colleague (in official/priestly office); associate, fellow (not official); + collegatarius_M_N : N ; -- [XLXEO] :: joint legatee; person bequeathed a legacy in common with others; + collegialis_A : A ; -- [XXXIO] :: of a collegium (guild/fraternity/board); collegial; acting together (Ecc); + collegialiter_Adv : Adv ; -- [DXXFE] :: collegially; + collegiarius_A : A ; -- [DXXFS] :: of a collegium (guild/fraternity/board); collegial; acting together (Ecc); + collegiarius_M_N : N ; -- [XXXEO] :: member of a collegium (guild/fraternity/society/corporation/board); + collegiata_F_N : N ; -- [FXXEE] :: collegiate church; institution, cooporation; + collegiatus_A : A ; -- [FXXEE] :: collegiate, corporate, of a group; + collegiatus_M_N : N ; -- [DXXES] :: member of a collegium (guild/fraternity/society/corporation/board); + collegium_N_N : N ; -- [GXXEK] :: college, school; + collema_N_N : N ; -- [DXXFS] :: that which is glued/cemented together; + colleprosus_M_N : N ; -- [DXXFS] :: fellow-leper; + collesco_V : V ; -- [DXXES] :: lighten up, become illuminated; become clear/intelligible; + colleticus_A : A ; -- [DXXFS] :: suitable for gluing/sticking together; + colletis_F_N : N ; -- [DAXFS] :: plant; + collevo_V2 : V2 ; -- [XXXDO] :: make (entirely) smooth; smooth; + colliberta_F_N : N ; -- [XXXIO] :: fellow freedwoman; (having same patronus); + collibertus_M_N : N ; -- [XXXCO] :: fellow freedman; (having same patronus); + collibro_V2 : V2 ; -- [XAXFO] :: measure; measure off (L+S); + collibuit_V0 : V ; -- [XXXCO] :: it pleases/is very agreeable; (IMPERS PERFDEF perfect form has present sense); + collicellus_M_N : N ; -- [XTXES] :: very small hill; + collicia_F_N : N ; -- [XAXDO] :: gutter/drain(pl.) between two inwardly-sloping roofs; gully; field-drain/runnel + colliciaris_A : A ; -- [XAXFO] :: designed for making gullies; pertaining to water-channels (L+S); + colliculus_M_N : N ; -- [XTXFO] :: hillock, small hill; + collido_V2 : V2 ; -- [XXXBO] :: strike/dash together; crush, batter, deform; set into conflict with each other; + colliga_F_N : N ; -- [XXXNS] :: place/cave for gathering natron (native sesquicarbonate of soda from dripping); + colligate_Adv : Adv ; -- [DXXES] :: connectedly, jointly; + colligatio_F_N : N ; -- [XGXCO] :: binding together; bond/connection; thing that binds/connects, band; conjunction; + colligo_V2 : V2 ; -- [XXXFO] :: |obtain/acquire, amass; rally; recover; sum up; deduce, infer; compute, add up; + collimitaneus_A : A ; -- [DXXFS] :: bordering upon; (w/DAT); + collimito_V : V ; -- [DXXES] :: border upon; (w/DAT); + collimitor_V : V ; -- [DXXES] :: border upon; (w/DAT); + collimitum_N_N : N ; -- [DXXES] :: boundary between two countries; + collimo_V2 : V2 ; -- [XXXFO] :: direct (eyes) sideways; glance sidelong; + collina_F_N : N ; -- [DTXFS] :: hilly land; goddess of hills; + collineate_Adv : Adv ; -- [DXXES] :: skillfully, artistically; in a straight/direct line; + collineo_V2 : V2 ; -- [XXXDO] :: align, direct, aim; direct in a straight line (L+S); + collinio_V2 : V2 ; -- [XXXDO] :: align, direct, aim; direct in a straight line (L+S); + collino_V2 : V2 ; -- [XXXDO] :: besmear, smear over; soil, pollute, defile; + collinus_A : A ; -- [XXXDO] :: of/belonging to/pertaining to hills; found/growing on hill (L+S); hilly, hill-; + colliphium_N_N : N ; -- [XXXES] :: unidentified preparation of meat; choice/nourishing meat for athletes (L+S); + colliquefacio_V2 : V2 ; -- [XSXEO] :: melt, liquefy; dissolve; + colliquefactus_A : A ; -- [XSXES] :: made fluid, liquefied, melted; dissolved; + colliquefio_V : V ; -- [XSXEO] :: be/become melted/liquefied/dissolved; (colliquefacio PASS); + colliquesco_V2 : V2 ; -- [XXXDO] :: melt, liquefy (w/in+ACC); turn into by liquefying; melt along with; dissolve; + colliquia_F_N : N ; -- [XAXDO] :: gutter/drain (pl.) between two inwardly-sloping roofs; gully; field-drain/runnel + colliquiarium_N_N : N ; -- [XTXFO] :: contrivance (pl.) for reliving air-pressure in water pipes; + collis_M_N : N ; -- [XXXBO] :: hill, hillock, eminence, hill-top; mound; high ground; mountains (pl.) (poetic); + collisio_F_N : N ; -- [XXXFO] :: clash, collision; dashing/striking together (L+S); + collisus_A : A ; -- [XXXFO] :: crushed, flattened; + collisus_M_N : N ; -- [XXXEO] :: striking/clashing together; collision; + collocatio_F_N : N ; -- [XXXCO] :: placing/siting (together); position; arrangement, ordering (things); marrying; + colloco_V2 : V2 ; -- [XXXAO] :: |put together, assemble; settle/establish in a place/marriage; billet; lie down; + collocupleto_V2 : V2 ; -- [XXXEO] :: enrich, make wealthy/very rich; embellish, adorn; + collocutio_F_N : N ; -- [XXXDO] :: conversation (private), discussion, debate; conference, parley; talking together + collocutor_M_N : N ; -- [DEXES] :: he who talks with another; + collocutorium_N_N : N ; -- [FXXEE] :: parlor, visiting room; + collocutorius_A : A ; -- [GXXEK] :: of conversation; + colloquium_N_N : N ; -- [XXXBO] :: talk, conversation; colloquy/discussion; interview; meeting/conference; parley; + colloquor_V : V ; -- [XXXBO] :: talk/speak to/with; talk together/over; converse; discuss; confer, parley; + collubuit_V0 : V ; -- [XXXCO] :: it pleases/is very agreeable; (IMPERS PERFDEF perfect form has present sense); + collubus_M_N : N ; -- [XXXEO] :: cost of exchange, agio; discount/fee to change money/make change; coin; + colluceo_V : V ; -- [XXXCO] :: shine brightly, light up (with fire); reflect light, shine, be lit up; glitter; + colluco_V2 : V2 ; -- [XAXEO] :: prune; thin out (trees); clear/thin (forest) (L+S); + colluctatio_F_N : N ; -- [XXXCO] :: struggling (physical), wrestling; struggle, conflict; death struggle/agony; + colluctor_M_N : N ; -- [DXXFS] :: wrestler; antagonist, adversary; + colluctor_V : V ; -- [XXXCO] :: struggle physically; wrestle/contend (with); struggle/fight against (adversity); + colludium_N_N : N ; -- [DXXDS] :: sporting, playing together; secret, deceptive understanding, collusion; + colludo_V : V ; -- [XXXCO] :: play/sport together/with; (also) make sport; act in collusion (with); + collugeo_V : V ; -- [DXXFS] :: lament; grieve together; + collum_N_N : N ; -- [XBXAO] :: neck; throat; head and neck; severed head; upper stem (flower); mountain ridge; + collumino_V2 : V2 ; -- [XXXFO] :: illuminate; + collumnela_F_N : N ; -- [FXXCE] :: small column/pillar; pivot of oil-mill; stanchion of catapult; column tombstone; + colluo_V2 : V2 ; -- [XXXCO] :: wash/rinse out; wash/rinse away (impurities); wash together; use as a wash(?); + collurchinatio_F_N : N ; -- [XXXFO] :: gormandizing, gross gluttony; guzzling; + collus_M_N : N ; -- [XBXAO] :: neck; throat; head and neck; severed head; upper stem (flower); mountain ridge; + collusim_Adv : Adv ; -- [XXXFO] :: in collusion; + collusio_F_N : N ; -- [XXXDO] :: secret/deceptive understanding, collusion; + collusor_M_N : N ; -- [XXXCO] :: playmate, companion in play; fellow gambler; one in collusion to hurt another; + collusorie_Adv : Adv ; -- [XXXFO] :: in/by collusion; in a concerted manner (L+S); + collustrium_N_N : N ; -- [XEXIO] :: ceremonial purification (of fields); corporation that procured purification; + collustro_V2 : V2 ; -- [XXXCO] :: illuminate, make bright, light up fully; look over, survey; traverse, explore; + collutio_F_N : N ; -- [XXXFO] :: rinsing; washing (L+S); + collutito_V2 : V2 ; -- [DXXES] :: soil/defile greatly/thoroughly; + collutlento_V2 : V2 ; -- [XXXFO] :: cover over with mud; + colluviaris_A : A ; -- [XAXFO] :: swilled/slopped, fed on refuse/filth (pigs); + colluvies_F_N : N ; -- [XAXCO] :: muck, decayed matter; refuse/sewage; pig-swill; filth; dregs; cesspool/mire; + colluvio_F_N : N ; -- [XXXCS] :: |muck, decayed matter; refuse/sewage; pig-swill; filth; dregs; cesspool/mire; + colluvium_N_N : N ; -- [DAXES] :: muck, decayed matter; refuse/sewage; pig-swill; filth; dregs; cesspool/mire; + collybista_M_N : N ; -- [DXXES] :: money-changer; + collybus_M_N : N ; -- [XXXEO] :: (cost of) exchange; agio, discount/fee to change money/make change; coin; + collyra_F_N : N ; -- [XXXEO] :: pasta (kind of); macaroni/vermicelli (L+S); dough (Cal); + collyricus_A : A ; -- [XXXFO] :: made with collyra (kind of pasta); of vermicelli (L+S); (vermicelli soup); + collyrida_F_N : N ; -- [DXXDS] :: roll/cake; head-dress of women; plant (also called malva erratica); + collyriolum_N_N : N ; -- [DBXFS] :: small suppository; packing; pessary/tent; + collyris_F_N : N ; -- [DXXDS] :: roll/cake; head-dress of women; plant (also called malva erratica); + collyrium_N_N : N ; -- [XBXCO] :: eye-salve; suppository; packing; pessary/tent (contraceptive); shaft/pillar; + colo_V2 : V2 ; -- [XXXAO] :: |honor, cherish, worship; tend, take care of; adorn, dress, decorate, embellish; + colobathrarius_M_N : N ; -- [DXXFS] :: stilt-walker, one who walks on stilts; + colobicus_A : A ; -- [DXXFS] :: mutilated; + colobium_N_N : N ; -- [DXXES] :: undershirt, undergarment with short sleeves; vest (British); + colobos_A : A ; -- [DPXES] :: mutilated, curtailed, cut off; in which one syllable is missing (verse); + colobum_N_N : N ; -- [DXXES] :: undergarment with short sleeves; + colocasia_F_N : N ; -- [XAEDO] :: Egyptian bean (lily); (plant/fruit); + colocasium_N_N : N ; -- [XAEDO] :: Egyptian bean (lily) (pl.); (plant/fruit); + colocyntha_F_N : N ; -- [XAXFO] :: kind of gourd; (rude of os cunnilingi); (purgative); colocynthis_1_N : N ; -- [XAXNO] :: gourd plant/fruit, bitter apple, colocynth (Citrullus colocynthis); (purgative); - colocynthis_2_N : N ; - colocynthis_F_N : N ; + colocynthis_2_N : N ; -- [XAXNO] :: gourd plant/fruit, bitter apple, colocynth (Citrullus colocynthis); (purgative); + colocynthis_F_N : N ; -- [XAXNO] :: gourd plant/fruit, bitter apple, colocynth (Citrullus colocynthis); (purgative); 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 ; - colonarius_A : A ; - colonatus_M_N : N ; - colonellus_M_N : N ; - colonia_F_N : N ; - colonialismus_M_N : N ; - colonialista_M_N : N ; - coloniaria_F_N : N ; - coloniarius_A : A ; - coloniarius_M_N : N ; - colonicus_A : A ; - colonus_M_N : N ; + colocyntis_2_N : N ; -- [EAXFW] :: gourd plant/fruit, bitter apple, colocynth (Citrullus colocynthis); (purgative); + coloephium_N_N : N ; -- [XXXEO] :: unidentified preparation of meat; choice/nourishing meat for athletes (L+S); + colon_N_N : N ; -- [XPXDO] :: part of a line of verse, metrical entity; clause of a period; line, fragment; + colona_F_N : N ; -- [XAXDO] :: female farmer/tenant/cultivator of land; farmer's wife; countrywoman (L+S); + colonarius_A : A ; -- [DAXES] :: of/pertaining to farmer/colonist; rustic; + colonatus_M_N : N ; -- [DAXFS] :: condition of a rustic; + colonellus_M_N : N ; -- [GWXEK] :: colonel; + colonia_F_N : N ; -- [XAXCS] :: |land possession; landed estate, farm; abode/dwelling; [~ Agrippina => Colonge]; + colonialismus_M_N : N ; -- [GXXEK] :: colonialism; + colonialista_M_N : N ; -- [GXXEK] :: colonialist; + coloniaria_F_N : N ; -- [DXXES] :: native of a colony (female); colonial; + coloniarius_A : A ; -- [XXXEO] :: of/belonging to/prescribed for a colony, colonial; + coloniarius_M_N : N ; -- [DXXES] :: native of a colony; colonial; + colonicus_A : A ; -- [XXXCO] :: of/belonging to/prescribed for colony, colonial; (troops); common/farm (sheep); + colonus_M_N : N ; -- [XAXBO] :: farmer, cultivator, tiller; tenant-farmer; settler, colonist; inhabitant; colophon_1_N : N ; -- [XXXES] :: summit; finishing/crowning touch/stroke; - colophon_2_N : N ; - colophon_M_N : N ; - color_M_N : N ; - colorabilis_A : A ; - colorate_Adv : Adv ; - coloratilis_A : A ; - colorator_M_N : N ; - coloratus_A : A ; - coloreus_A : A ; - colorius_A : A ; - coloro_V2 : V2 ; - colos_M_N : N ; - colosiaeus_A : A ; - colossaeus_A : A ; - colosseus_A : A ; - colossicon_A : A ; - colossicus_A : A ; - colostra_F_N : N ; - colostratio_F_N : N ; - colostratus_A : A ; - colostratus_M_N : N ; - colostrum_N_N : N ; - colotes_M_N : N ; - colpa_F_N : N ; - coluber_M_N : N ; - colubra_F_N : N ; - colubrifer_A : A ; - colubrimodus_A : A ; - colubrina_F_N : N ; - colubrinus_A : A ; - colubrosus_A : A ; - colum_N_N : N ; - columba_F_N : N ; - columbar_N_N : N ; - columbare_N_N : N ; - columbarium_N_N : N ; - columbarius_M_N : N ; - columbatim_Adv : Adv ; - columbinaceus_A : A ; - columbinus_A : A ; - columbinus_M_N : N ; - columbor_V : V ; - columbula_F_N : N ; - columbulatim_Adv : Adv ; - columbulus_M_N : N ; - columbus_M_N : N ; - columella_F_N : N ; - columellaris_A : A ; - columellaris_M_N : N ; - columen_N_N : N ; - columis_A : A ; - columna_F_N : N ; - columnar_N_N : N ; - columnaris_A : A ; - columnarium_N_N : N ; - columnarius_M_N : N ; - columnatio_F_N : N ; - columnatus_A : A ; - columnella_F_N : N ; - columnifer_A : A ; - columpna_F_N : N ; - colurnus_A : A ; - colurus_A : A ; - colus_C_N : N ; + colophon_2_N : N ; -- [XXXES] :: summit; finishing/crowning touch/stroke; + colophon_M_N : N ; -- [XXXEO] :: summit; finishing/crowning touch/stroke; + color_M_N : N ; -- [XXXAO] :: color; pigment; shade/tinge; complexion; outward appearance/show; excuse/pretext + colorabilis_A : A ; -- [DDXFS] :: chromatic; (?) (divided tetrachord into 2 intervals of 1 semitone and 1 of 3); + colorate_Adv : Adv ; -- [XGXFS] :: in a specious or plausible manner; + coloratilis_A : A ; -- [XXXFO] :: sunburnt, brown, tanned; + colorator_M_N : N ; -- [XXXEO] :: colorer; house-painter(?); polisher (L+S); + coloratus_A : A ; -- [XXXCO] :: colored; sunburnt/tanned/not pallid; dark complected/swarthy, colored; specious; + coloreus_A : A ; -- [DXXES] :: multi-colored, variegated; + colorius_A : A ; -- [XXXEO] :: multi-colored, variegated; + coloro_V2 : V2 ; -- [XXXBO] :: color; paint; dye; tan; make darker; give deceptive color/gloss/appearance to; + colos_M_N : N ; -- [BXXAO] :: color; pigment; shade/tinge; complexion; outward appearance/show; excuse/pretext + colosiaeus_A : A ; -- [XXXNO] :: colossal, huge, gigantic; much larger than life (statue); + colossaeus_A : A ; -- [XXXEO] :: colossal, huge, gigantic; much larger than life (statue); + colosseus_A : A ; -- [XXXEO] :: colossal, huge, gigantic; much larger than life (statue); + colossicon_A : A ; -- N + colossicus_A : A ; -- [XXXEO] :: colossal, huge, gigantic; much larger than life (statue); + colostra_F_N : N ; -- [XAXCO] :: colustrum/beestings (first milk from a cow after calving); (term of endearment); + colostratio_F_N : N ; -- [XAXNO] :: disease of new-born mammals; (falsely attributed to first milk/beestings); + colostratus_A : A ; -- [XAXNO] :: afflicted with disease from first milk/beestings; + colostratus_M_N : N ; -- [XAXNS] :: one/those afflicted with disease (colostration) from first milk/beestings; + colostrum_N_N : N ; -- [XAXCO] :: colustrum/beestings (first milk from a cow after calving); (term of endearment); + colotes_M_N : N ; -- [XAXNO] :: gecko/spotted lizard (Platdactylus mauretanicus); + colpa_F_N : N ; -- [XXXES] :: |offense; error; (sense of) guilt; fault/defect (moral/other); sickness/injury; + coluber_M_N : N ; -- [XAXCO] :: snake; serpent; (forming hair of mythical monsters); + colubra_F_N : N ; -- [XAXCO] :: serpent, snake; (forming hair of mythical monsters); Furies; (head of) Hydra; + colubrifer_A : A ; -- [XYXEO] :: snaky; snake-haired; (of Gorgon/Medusa); + colubrimodus_A : A ; -- [DXXFS] :: snake-like, having qualities of a snake; + colubrina_F_N : N ; -- [DAXFS] :: plant; (also called bryonia and dracontea); + colubrinus_A : A ; -- [XXXEO] :: snake-like, having qualities of a snake, cunning; + colubrosus_A : A ; -- [DXXFS] :: serpentine, winding; + colum_N_N : N ; -- [XXXCO] :: |strainer, filter, sieve; vessel for straining, colander (L+S); wicker fish net; + columba_F_N : N ; -- [XAXBO] :: pigeon; dove; (term of endearment); (bird of Venus/symbol of love/gentleness); + columbar_N_N : N ; -- [XXXEO] :: pigeon compartment/cot/hole; collar for constraint, pillory; niche in sepulcher; + columbare_N_N : N ; -- [XXXEO] :: pigeon compartment/cot/hole; collar for constraint, pillory; niche in sepulcher; + columbarium_N_N : N ; -- [XXXCO] :: |hole for beam; exit of water-wheel near axle; dove-cot, pigeon house (L+S); + columbarius_M_N : N ; -- [XAXFO] :: pigeon-keeper; oarsman (term of reproach) (L+S); + columbatim_Adv : Adv ; -- [XAXFS] :: in manner of doves, like doves, dovey; + columbinaceus_A : A ; -- [DAXES] :: of/pertaining to pigeons/doves, dove/pigeon-; [~ pullus => young dove]; + columbinus_A : A ; -- [XAXCO] :: of pigeons, pigeon-; variety of plants (dove-colored?) (chick-pea/vine/marl); + columbinus_M_N : N ; -- [XAXES] :: little dove; + columbor_V : V ; -- [XXXFO] :: bill and coo; (like doves); + columbula_F_N : N ; -- [XAXNO] :: little dove; + columbulatim_Adv : Adv ; -- [XAXFO] :: in manner of (little) doves, like (little) doves, dovey; + columbulus_M_N : N ; -- [XAXNS] :: little dove; + columbus_M_N : N ; -- [XAXCO] :: male/cock pigeon; (of male persons) (L+S); dove; + columella_F_N : N ; -- [XXXCO] :: small column/pillar; pivot of oil-mill; stanchion of catapult; column tombstone; + columellaris_A : A ; -- [XAXES] :: pillar-formed; (of grinding teeth of horses); + columellaris_M_N : N ; -- [XAXEO] :: canine teeth (pl.) of horses; grinding teeth of horses (L+S); (pillar-formed); + columen_N_N : N ; -- [XXXBO] :: height, peak, summit, zenith; roof, gable, ridge-pole; head, chief; "keystone"; + columis_A : A ; -- [XXXFO] :: safe; unhurt, unimpaired; (?); + columna_F_N : N ; -- [XXXAO] :: |stanchion (press/ballista); water-spout; pillar of fire; penis (rude); + columnar_N_N : N ; -- [XXXIO] :: marble quarry; stone quarry (L+S); + columnaris_A : A ; -- [DEXES] :: rising in form of a pillar, pillar-like, columnar; [~ lux => pillar of fire]; + columnarium_N_N : N ; -- [XLXEO] :: pillar-tax, tax on pillars/columns; (applied to fancy houses); + columnarius_M_N : N ; -- [DXXFS] :: one who was condemned at Columna Maenia; criminal; debtor; + columnatio_F_N : N ; -- [XXXFO] :: supporting with/on pillars; support by pillars/columns; + columnatus_A : A ; -- [XTXDO] :: supported on/by pillars/columns; provided with/having pillars; + columnella_F_N : N ; -- [XXXCS] :: small column/pillar; pivot of oil-mill; stanchion of catapult; column tombstone; + columnifer_A : A ; -- [DEXFS] :: column-bearing; [~ radius => pillar of fire]; + columpna_F_N : N ; -- [FXXFM] :: column/pillar, post/prop; portico; (columna); + colurnus_A : A ; -- [XAXEO] :: made of hazel, of hazel, hazel-; + colurus_A : A ; -- [DPXES] :: syllable too short (w/metrum); + colus_C_N : N ; -- [XXXBO] :: distaff; woman's concern; spinning; Fate's distaff w/threads of life; destiny; 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 ; + colus_M_N : N ; -- [XXXBO] :: distaff; woman's concern; spinning; Fate's distaff w/threads of life; destiny; + colustra_F_N : N ; -- [XAXCO] :: colustrum/beestings (first milk from a cow after calving); (term of endearment); + colustrum_N_N : N ; -- [XAXCO] :: colustrum/beestings (first milk from a cow after calving); (term of endearment); + coluteum_N_N : N ; -- [XAXFO] :: pods (pl.) of an unidentified tree (?); pod-like fruit (L+S); + coluthium_N_N : N ; -- [XAXNO] :: kind of gastropod mollusk; kind of snail of dark color (L+S); colymbas_1_N : N ; -- [XXXEO] :: pickled olive; (swimming in brine L+S); - colymbas_2_N : N ; - colymbus_M_N : N ; - colyphium_N_N : N ; + colymbas_2_N : N ; -- [XXXEO] :: pickled olive; (swimming in brine L+S); + colymbus_M_N : N ; -- [DXXES] :: swimming pool/bath; + colyphium_N_N : N ; -- [XXXEO] :: unidentified preparation of meat; choice/nourishing meat for athletes (L+S); 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 ; - coma_N_N : N ; - comacum_N_N : N ; - comans_A : A ; - comarchus_M_N : N ; - comaros_F_N : N ; - comatorius_A : A ; - comatus_A : A ; - comatus_M_N : N ; - comaudio_V2 : V2 ; - combardus_A : A ; - combenno_M_N : N ; - combibo_M_N : N ; - combibo_V2 : V2 ; - combinatio_F_N : N ; - combino_V2 : V2 ; - combretum_N_N : N ; - combullio_V2 : V2 ; - comburo_V2 : V2 ; - combustibilis_A : A ; - combustibilitas_F_N : N ; - combustio_F_N : N ; - combustum_N_N : N ; - combustura_F_N : N ; - come_F_N : N ; - comedium_N_N : N ; - comedo_M_N : N ; - comedo_V2 : V2 ; - comedus_M_N : N ; + colyx_2_N : N ; -- [XXXNS] :: cavern where natron (native sesquicarbonate of soda/alkali) is distilling/drips; + com_Abl_Prep : Prep ; -- [AXXAC] :: |under command/at the head of; having/containing/including; using/by means of; + com_Adv : Adv ; -- [XXXFO] :: together; + coma_F_N : N ; -- [XXXBO] :: hair, hair of head, mane of animal; wool, fleece; foliage, leaves; rays; + coma_N_N : N ; -- [GBXEK] :: coma; + comacum_N_N : N ; -- [XAXNO] :: aromatic plant (nutmeg?); (substitute for cinnamon); kind of cinnamon (L+S); + comans_A : A ; -- [XXXBO] :: hairy; long-haired; flowing (beard); plumed; leafy; w/foliage; w/radiant train; + comarchus_M_N : N ; -- [XLXFO] :: headman/chief/governor of a village; burgomeister, mayor; + comaros_F_N : N ; -- [XAXNO] :: (fruit of) strawberry-tree (arbitus unedonis); plant (called fragum) (L+S); + comatorius_A : A ; -- [XXXFO] :: for hair; [~ acus => hair-pin]; + comatus_A : A ; -- [XXXCO] :: long-haired, having (long) hair; leafy; [Gallia Comata => Transalpine Gaul]; + comatus_M_N : N ; -- [DXXES] :: one having long hair; (esp. as applied to Frankish royals); + comaudio_V2 : V2 ; -- [XXXEO] :: confine to narrow space, cramp; make narrower; narrow/limit scope/application; + combardus_A : A ; -- [XXXFO] :: thoroughly stupid; + combenno_M_N : N ; -- [XXFFO] :: those riding together in a benna (kind of (wickerwork?) carriage) (Gallic); + combibo_M_N : N ; -- [XXXFO] :: drinking companion/buddy; + combibo_V2 : V2 ; -- [XXXBO] :: drink completely/together/up; hold back (tears); absorb, soak in; swallow up; + combinatio_F_N : N ; -- [DXXFS] :: joining two by two; + combino_V2 : V2 ; -- [DXXES] :: unite, combine; + combretum_N_N : N ; -- [XAXNO] :: plant (unidentified); kind of rush (L+S); + combullio_V2 : V2 ; -- [XXXFO] :: boil fully/thoroughly; + comburo_V2 : V2 ; -- [XXXBO] :: burn up/away; (w/love); consume/destroy w/fire; reduce to ash, cremate; scald; + combustibilis_A : A ; -- [GXXEK] :: combustible; + combustibilitas_F_N : N ; -- [GXXEK] :: combustibility; + combustio_F_N : N ; -- [DSXFS] :: burning, consuming; + combustum_N_N : N ; -- [XBXEO] :: burn, injury from burning/scalding; + combustura_F_N : N ; -- [DXXES] :: burning; + come_F_N : N ; -- [XAXNO] :: one or more plants of genus Tragopogon, goat's beard or salsify; + comedium_N_N : N ; -- [FXXEM] :: meal; feast; feasting; + comedo_M_N : N ; -- [XXXEO] :: glutton; gourmet; one who spends/squanders his money on feasting/revelling; + comedo_V2 : V2 ; -- [XXXBO] :: eat up/away, chew up; finish eating; fret, chafe; consume/devour; waste/squander + comedus_M_N : N ; -- [XXXFO] :: glutton; gourmet; one who spends/squanders his money on feasting/revelling; 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 ; - comesator_M_N : N ; - comesor_M_N : N ; - comessaliter_Adv : Adv ; - comessatio_F_N : N ; - comessator_M_N : N ; - comestabilia_F_N : N ; - comestabilis_A : A ; - comestibilis_A : A ; - comestio_F_N : N ; - comestor_M_N : N ; - comesus_M_N : N ; - cometa_F_N : N ; - cometerium_N_N : N ; - cometes_F_N : N ; - cometessa_F_N : N ; - cometissa_F_N : N ; - comice_Adv : Adv ; - comicotragicus_A : A ; - comicotragoedia_F_N : N ; - comicus_A : A ; - comicus_M_N : N ; - comincommodus_A : A ; - cominus_Adv : Adv ; - comis_A : A ; - comisabundus_A : A ; - comisatio_F_N : N ; - comisator_M_N : N ; - comisor_V : V ; - comissabundus_A : A ; - comissaliter_Adv : Adv ; - comissatio_F_N : N ; - comissator_M_N : N ; - comissor_V : V ; - comitabilis_A : A ; - comitas_F_N : N ; - comitatensis_A : A ; - comitatus_A : A ; - comitatus_M_N : N ; - comiter_Adv : Adv ; - comitessa_F_N : N ; - comitialis_A : A ; - comitialis_M_N : N ; - comitialiter_Adv : Adv ; - comitianus_A : A ; - comitiatus_M_N : N ; - comitio_V : V ; - comitissa_F_N : N ; - comitium_N_N : N ; - comitiva_F_N : N ; - comitivus_A : A ; - comitivus_M_N : N ; - comito_V2 : V2 ; - comitor_V : V ; - comium_N_N : N ; - comiva_F_N : N ; - comma_F_N : N ; - commaceratio_F_N : N ; - commacero_V2 : V2 ; - commacesco_V : V ; - commaculo_V2 : V2 ; - commadeo_V : V ; - commagister_M_N : N ; - commalaxo_V2 : V2 ; - commalleo_V2 : V2 ; - commalliolo_V2 : V2 ; - commandaticius_A : A ; - commando_V2 : V2 ; - commanducatio_F_N : N ; - commanduco_V2 : V2 ; - commanducor_V : V ; - commaneo_V : V ; - commanifesto_V2 : V2 ; - commaniplaris_M_N : N ; - commaniplus_M_N : N ; - commanipularis_M_N : N ; - commanipulatio_F_N : N ; - commanipulo_M_N : N ; - commanipulus_M_N : N ; - commarceo_V : V ; - commargino_V2 : V2 ; - commaritus_M_N : N ; - commartyr_M_N : N ; - commasculo_V2 : V2 ; - commastico_V2 : V2 ; - commaterr_F_N : N ; - commaticus_A : A ; - commaturesco_V : V ; - commatus_A : A ; - commeabilis_A : A ; - commeatalis_A : A ; - commeator_M_N : N ; - commeatus_M_N : N ; - commeditor_V : V ; - commeio_V2 : V2 ; - commeleto_V : V ; - commembratus_A : A ; - commemorabilis_A : A ; - commemoramentum_N_N : N ; - commemoratio_F_N : N ; - commemorator_M_N : N ; - commemoratorium_N_N : N ; - commemoro_V2 : V2 ; - commenda_F_N : N ; - commendabilis_A : A ; - commendatarius_A : A ; - commendaticius_A : A ; - commendatio_F_N : N ; - commendatitius_A : A ; - commendativus_A : A ; - commendator_M_N : N ; - commendatorius_A : A ; - commendatrix_F_N : N ; - commendatus_A : A ; - commendo_V2 : V2 ; - commensalis_M_N : N ; - commensurabilis_A : A ; - commensurabilitas_F_N : N ; - commensuratio_F_N : N ; - commensuratus_A : A ; - commensuro_V : V ; - commensus_M_N : N ; - commentariensis_M_N : N ; - commentariolum_N_N : N ; - commentariolus_M_N : N ; - commentarium_N_N : N ; - commentarius_M_N : N ; - commentatio_F_N : N ; - commentator_M_N : N ; - commenticius_A : A ; - commentior_V : V ; - commentitius_A : A ; - commento_V2 : V2 ; - commentor_M_N : N ; - commentor_V : V ; - commentum_N_N : N ; - commentus_A : A ; - commeo_V : V ; - commercari_M_N : N ; - commercator_M_N : N ; - commercior_V : V ; - commercium_N_N : N ; - commercor_V : V ; - commereo_V2 : V2 ; - commereor_V : V ; - commers_F_N : N ; - commetaculum_N_N : N ; - commetior_V : V ; - commeto_V : V ; - commi_N : N ; - commictilis_A : A ; - commictus_A : A ; - commigratio_F_N : N ; - commigro_V : V ; - commiles_M_N : N ; - commilitium_N_N : N ; - commilito_M_N : N ; - commilito_V : V ; - comminabundus_A : A ; - comminatio_F_N : N ; - comminativus_A : A ; - comminator_M_N : N ; - comminatus_A : A ; - commingo_V2 : V2 ; - comminisco_V2 : V2 ; - comminiscor_V : V ; - comminister_M_N : N ; - commino_V2 : V2 ; - comminor_V : V ; - comminuo_V2 : V2 ; - comminus_Adv : Adv ; - comminutus_A : A ; - commis_F_N : N ; - commisariatus_M_N : N ; - commisarius_M_N : N ; - commisatio_F_N : N ; - commisceo_V2 : V2 ; - commiscibilis_A : A ; - commiscuus_A : A ; - commiseratio_F_N : N ; - commisereor_V : V ; - commiseresco_V : V ; - commiseresct_V0 : V ; - commiseret_V0 : V ; - commisero_M_N : N ; - commiseror_V : V ; - commisio_F_N : N ; - commisor_V : V ; - commissarius_M_N : N ; - commissatio_F_N : N ; - commissio_F_N : N ; - commissor_M_N : N ; - commissor_V : V ; - commissoria_F_N : N ; - commissorius_A : A ; - commissum_N_N : N ; - commissura_F_N : N ; - commissuralis_A : A ; - commistim_Adv : Adv ; - commistio_F_N : N ; - commistura_F_N : N ; - commitigo_V2 : V2 ; - committo_V2 : V2 ; - commixtim_Adv : Adv ; - commixtio_F_N : N ; - commixtura_F_N : N ; - commobilis_A : A ; - commodate_Adv : Adv ; - commodatio_F_N : N ; - commodator_M_N : N ; - commodatum_N_N : N ; - commode_Adv : Adv ; - commoderatus_A : A ; - commoditas_F_N : N ; - commodo_Adv : Adv ; - commodo_V : V ; - commodulatio_F_N : N ; - commodule_Adv : Adv ; - commodulum_Adv : Adv ; - commodulum_N_N : N ; - commodum_Adv : Adv ; - commodum_N_N : N ; - commodus_A : A ; - commoenio_V2 : V2 ; - commoetaculum_N_N : N ; - commolior_V : V ; - commollio_V2 : V2 ; - commolo_V2 : V2 ; - commonefacio_V2 : V2 ; - commonefio_V : V ; - commoneo_V : V ; - commonitio_F_N : N ; - commonitor_M_N : N ; - commonitorium_N_N : N ; - commonitorius_A : A ; - commonstro_V2 : V2 ; - commoratio_F_N : N ; - commordeo_V2 : V2 ; - commorior_V : V ; - commoro_V : V ; - commoror_V : V ; - commorsico_V2 : V2 ; - commorsito_V2 : V2 ; - commortalis_A : A ; - commosis_F_N : N ; - commostro_V2 : V2 ; - commotio_F_N : N ; - commotiuncula_F_N : N ; - commoto_V2 : V2 ; - commotor_M_N : N ; - commotus_A : A ; - commotus_M_N : N ; - commovens_A : A ; - commoveo_V2 : V2 ; - commuate_Adv : Adv ; - commulceo_V2 : V2 ; - commulco_V2 : V2 ; - communa_F_N : N ; - communalis_A : A ; - commundo_V2 : V2 ; - commune_N_N : N ; - communicabilis_A : A ; - communicabilitas_F_N : N ; - communicabiliter_Adv : Adv ; - communicarius_A : A ; - communicatio_F_N : N ; - communicator_M_N : N ; - communicatus_M_N : N ; - communiceps_M_N : N ; - communico_V2 : V2 ; - communicor_V : V ; - communio_F_N : N ; - communio_V2 : V2 ; - communis_A : A ; - communismus_M_N : N ; - communista_M_N : N ; - communisticus_A : A ; - communitarius_A : A ; - communitas_F_N : N ; - communiter_Adv : Adv ; - communitio_F_N : N ; - communitus_Adv : Adv ; - commurmuratio_F_N : N ; - commurmuro_V : V ; - commurmuror_V : V ; - commuro_V2 : V2 ; - commutabilis_A : A ; - commutatio_F_N : N ; - commutatus_M_N : N ; - commuto_V2 : V2 ; - como_V : V ; - como_V2 : V2 ; - comoedia_F_N : N ; - comoedice_Adv : Adv ; - comoedicus_A : A ; - comoedus_A : A ; - comoedus_M_N : N ; - comoinis_A : A ; - comosus_A : A ; - compaciscor_V : V ; - compaco_V2 : V2 ; - compacticius_A : A ; - compactilis_A : A ; - compactio_F_N : N ; - compactitius_A : A ; - compactivus_A : A ; - compactum_N_N : N ; - compactura_F_N : N ; - compactus_A : A ; - compaedagogita_F_N : N ; - compaedagogius_M_N : N ; - compaganus_M_N : N ; - compages_F_N : N ; - compagina_F_N : N ; - compaginatio_F_N : N ; - compagino_V : V ; - compago_F_N : N ; - compagus_M_N : N ; - compalpo_V2 : V2 ; - compar_A : A ; + comes_M_N : N ; -- [ELXCM] :: Count, Earl (England); official, magnate; occupant of any state office; + comesaliter_Adv : Adv ; -- [EXXFW] :: wantonly; jovially; + comesatio_F_N : N ; -- [EXXCW] :: carousing, merry-making, feasting, revelry; Bacchanal procession/rioting (L+S); + comesator_M_N : N ; -- [EXXCW] :: reveller, carouser; one who joins a festive procession (L+S); (Vulgate one s); + comesor_M_N : N ; -- [XXXEO] :: glutton, gourmand; member of a dancing-club; + comessaliter_Adv : Adv ; -- [DXXFS] :: wantonly; jovially; + comessatio_F_N : N ; -- [XXXCO] :: carousing, merry-making, feasting, revelry; Bacchanal procession/rioting (L+S); + comessator_M_N : N ; -- [XXXCO] :: reveller, carouser; one who joins a festive procession (L+S); + comestabilia_F_N : N ; -- [FXXFM] :: victuals; + comestabilis_A : A ; -- [EXXFE] :: eatable; + comestibilis_A : A ; -- [DXXFS] :: eatable; + comestio_F_N : N ; -- [DXXFS] :: consuming; + comestor_M_N : N ; -- [XXXEO] :: glutton, gourmand; member of a dining-club; + comesus_M_N : N ; -- [DXXFS] :: eating, consuming; + cometa_F_N : N ; -- [DSXES] :: comet; meteor; luminous body in sky w/trail/tail; (portent of disaster); + cometerium_N_N : N ; -- [DEXFS] :: churchyard; cemetery, burying ground; + cometes_F_N : N ; -- [XSXCO] :: comet; meteor; luminous body in sky w/trail/tail; (portent of disaster); + cometessa_F_N : N ; -- [ELXCM] :: Countess, Lady; wife of a Count/Comes; (or widow or daughter); + cometissa_F_N : N ; -- [ELXCM] :: Countess, Lady; wife of a Count/Comes; (or widow or daughter); + comice_Adv : Adv ; -- [XDXEO] :: in a style suited to comedy; in manner of comedy; + comicotragicus_A : A ; -- [GXXEK] :: tragi-comic; + comicotragoedia_F_N : N ; -- [GXXEK] :: tragicomedy; + comicus_A : A ; -- [XDXCO] :: comic, belonging/suited/appropriate to comedy; typical/characteristic of comedy; + comicus_M_N : N ; -- [XDXCO] :: comic actor, comedian; writer of comedy; comic poet; + comincommodus_A : A ; -- [XXXFO] :: agreeable/disagreeable; (facetious combination of commodus and incommodus); + cominus_Adv : Adv ; -- [XWXDO] :: hand to hand (fight), in close combat/quarters; close at hand; in presence of; + comis_A : A ; -- [XXXBO] :: courteous/kind/obliging/affable/gracious; elegant, cultured, having good taste; + comisabundus_A : A ; -- [XXXEO] :: carousing, revelling, banqueting; holding a riotous procession (L+S); + comisatio_F_N : N ; -- [XXXCO] :: carousing, merry-making, feasting, revelry; Bacchanal procession/rioting (L+S); + comisator_M_N : N ; -- [XXXCO] :: reveller, carouser; one who joins a festive procession (L+S); + comisor_V : V ; -- [XXXCO] :: carouse, revel, make merry; hold a festive procession (L+S); + comissabundus_A : A ; -- [XXXEO] :: carousing, revelling, banqueting; holding a riotous procession (L+S); + comissaliter_Adv : Adv ; -- [DXXFS] :: wantonly; jovially; + comissatio_F_N : N ; -- [XXXCO] :: carousing, merry-making, feasting, revelry; Bacchanal procession/rioting (L+S); + comissator_M_N : N ; -- [XXXCO] :: reveller, carouser; one who joins a festive procession (L+S); + comissor_V : V ; -- [XXXCO] :: carouse, revel, make merry; hold a festive procession (L+S); + comitabilis_A : A ; -- [DXXFS] :: attending, accompanying; + comitas_F_N : N ; -- [XXXCO] :: politeness, courtesy; kindness, generosity, friendliness; good taste, elegance; + comitatensis_A : A ; -- [DLXES] :: of/pertaining to dignity/office of courtiers; court-; + comitatus_A : A ; -- [XXXCO] :: accompanied (by/in time); (COMP) better attended, having a larger retinue; + comitatus_M_N : N ; -- [GXXEK] :: ||county (Cal); + comiter_Adv : Adv ; -- [XXXCO] :: courteously/kindly/civilly, readily; in friendly/sociable manner; w/good will; + comitessa_F_N : N ; -- [ELXCM] :: Countess, Lady; wife of a Count/Comes; (or widow or daughter); + comitialis_A : A ; -- [XBXCO] :: |epileptic, suffering from epilepsy; [morbus/vitium ~ => major epilepsy]; + comitialis_M_N : N ; -- [XBXNO] :: epileptic, one who has epilepsy; attacks of epilepsy (pl.); + comitialiter_Adv : Adv ; -- [XBXNO] :: by/as a result of epilepsy; epileptically; + comitianus_A : A ; -- [DLXFS] :: of/pertaining to Comes Orientis (Byzantine court official); + comitiatus_M_N : N ; -- [XLXDO] :: assembly of people in comitia; + comitio_V : V ; -- [XLXEO] :: offer sacrifice after which comitia could be held; go to comitia (L+S); + comitissa_F_N : N ; -- [DLXCM] :: Countess, Lady; wife of a Count/Comes; (or widow or daughter); + comitium_N_N : N ; -- [XLXAO] :: place in Forum where comitia were held; comitia (pl.), assembly; elections; + comitiva_F_N : N ; -- [ELXEE] :: escort; retinue; + comitivus_A : A ; -- [DLXES] :: pertaining to a chief officer; + comitivus_M_N : N ; -- [DLXES] :: chief; + comito_V2 : V2 ; -- [XXXCO] :: accompany, go along with; attend (funeral); follow (camp); grow alongside; + comitor_V : V ; -- [XXXAO] :: |go/be carried with; be retained/stay/grow/join with; be connected with; occur; + comium_N_N : N ; -- [ELXCM] :: county, earldom (England); county court (attendance/fine for non-attendance); + comiva_F_N : N ; -- [ELXCM] :: county, earldom (England); county court (attendance/fine for non-attendance); + comma_F_N : N ; -- [XGXEO] :: phrase, part of a line; division of a period (L+S); comma, punctuation mark; + commaceratio_F_N : N ; -- [DXXFS] :: dissolution, maceration, steeping to soften; + commacero_V2 : V2 ; -- [DXXES] :: macerate, soften by steeping in liquid; + commacesco_V : V ; -- [DXXFS] :: grow lean; + commaculo_V2 : V2 ; -- [XXXCO] :: stain deeply, pollute, defile; contaminate, defile morally; sully (reputation); + commadeo_V : V ; -- [XXXFO] :: become tender or sodden; become very soft (L+S); + commagister_M_N : N ; -- [XXXIO] :: joint-master (of a collegium); + commalaxo_V2 : V2 ; -- [XXXFO] :: soften/subdue completely; make entirely mild (L+S); + commalleo_V2 : V2 ; -- [XXXFO] :: weld on, attach; + commalliolo_V2 : V2 ; -- [XXXFO] :: weld on, attach; + commandaticius_A : A ; -- [XXXDO] :: containing a recommendation/introduction (letters); commendatory (L+S); + commando_V2 : V2 ; -- [DXXES] :: chew; (chew thoroughly/completely); + commanducatio_F_N : N ; -- [XXXFO] :: chewing, mastication; + commanduco_V2 : V2 ; -- [XXXEO] :: chew up, chew/masticate thoroughly; chew to pieces (L+S); + commanducor_V : V ; -- [XXXEO] :: chew up, chew/masticate thoroughly; chew to pieces (L+S); + commaneo_V : V ; -- [DXXCS] :: remain somewhere constantly; + commanifesto_V2 : V2 ; -- [DEXFS] :: manifest together; + commaniplaris_M_N : N ; -- [XWXEO] :: soldier/comrade of same maniple; fellow soldier; + commaniplus_M_N : N ; -- [XWXIO] :: soldier/comrade of same maniple; fellow soldier; + commanipularis_M_N : N ; -- [XWXEO] :: soldier/comrade of same maniple; fellow soldier; + commanipulatio_F_N : N ; -- [DWXFS] :: companionship in a maniple; + commanipulo_M_N : N ; -- [DWXFS] :: soldier/comrade of same maniple; fellow soldier; + commanipulus_M_N : N ; -- [XWXIO] :: soldier/comrade of same maniple; fellow soldier; + commarceo_V : V ; -- [DXXES] :: wither; become wholly faint/inactive; + commargino_V2 : V2 ; -- [DXXFS] :: furnish with a parapet or railing; + commaritus_M_N : N ; -- [XXXFO] :: fellow/associate husband; (facetious); + commartyr_M_N : N ; -- [DEXFS] :: fellow-martyr, companion in martyrdom; + commasculo_V2 : V2 ; -- [XXXEO] :: screw up (one's courage); make manly/firm/courageous (L+S); invigorate/embolden; + commastico_V2 : V2 ; -- [DXXFS] :: chew; + commaterr_F_N : N ; -- [EEXFE] :: godmother; female sponsor; + commaticus_A : A ; -- [DEXES] :: cut up, divided. short; + commaturesco_V : V ; -- [XXXFO] :: mature; ripen thoroughly/completely; + commatus_A : A ; -- [FXXEZ] :: divided(?); + commeabilis_A : A ; -- [DXXES] :: permeable, that is easily passed through; that easily passes through; + commeatalis_A : A ; -- [DXXES] :: of/pertaining to provisions/supplies; with/accompanying provisions; + commeator_M_N : N ; -- [XXXFO] :: go-between, messenger; one who goes to and fro (L+S); epithet of Mercury; + commeatus_M_N : N ; -- [XWXBO] :: supplies/provisions; goods; voyage; passage; convoy/caravan; furlough/leave; + commeditor_V : V ; -- [XXXEO] :: study, practice; imitate (poetic); impress carefully on one's mind (L+S); + commeio_V2 : V2 ; -- [XXXEO] :: defile with urine, wet; soil, defile; have sexual intercourse (Adams); + commeleto_V : V ; -- [XXXFO] :: exercise, practice assiduously; + commembratus_A : A ; -- [DXXFS] :: grown up together; united; + commemorabilis_A : A ; -- [XXXEO] :: memorable, remarkable, worth mentioning; + commemoramentum_N_N : N ; -- [XXXFO] :: reminder; mention; mentioning; + commemoratio_F_N : N ; -- [XXXCO] :: remembrance/commemoration; observance (law); memory; mention/citation/reference; + commemorator_M_N : N ; -- [DXXFS] :: commemorator, one who mentions/recalls a thing; + commemoratorium_N_N : N ; -- [DXXFS] :: means of remembrance; + commemoro_V2 : V2 ; -- [XXXBO] :: recall (to self/other); keep in mind, remember; mention/relate; place on record; + commenda_F_N : N ; -- [FEXFE] :: commendam, temporal income without spiritual obligation, layman's benefice; + commendabilis_A : A ; -- [XXXDO] :: praiseworthy, notable; be commended, commendable; + commendatarius_A : A ; -- [FEXFE] :: holding benefice in commendam; (by clerk/layman til proper priest provided); + commendaticius_A : A ; -- [XXXDO] :: containing a recommendation/introduction (letters); commendatory (L+S); + commendatio_F_N : N ; -- [XXXBO] :: entrusting, committal; recommendation, praise; excellence; approval, esteem; + commendatitius_A : A ; -- [FEXFE] :: |commendatory; commending (letter/prayer); holding benefice in commendam; + commendativus_A : A ; -- [DXXDS] :: commendatory; serving for/as commendation/recommendation/introduction; + commendator_M_N : N ; -- [XXXFO] :: reference, one who recommends; recommended, commender; + commendatorius_A : A ; -- [DXXES] :: commendatory; serving for/as commendation/recommendation; + commendatrix_F_N : N ; -- [XXXEO] :: reference, one who recommends (female); + commendatus_A : A ; -- [XXXCO] :: recommended (for attention/favor); entrusted; acceptable, agreeable, suitable; + commendo_V2 : V2 ; -- [XXXAO] :: entrust, give in trust; commit; recommend, commend to; point out, designate; + commensalis_M_N : N ; -- [FXXFE] :: table companion; + commensurabilis_A : A ; -- [DSXFS] :: commensurable, having a common measure; + commensurabilitas_F_N : N ; -- [FXXFM] :: commensurability; + commensuratio_F_N : N ; -- [DSXFS] :: symmetry, uniformity; + commensuratus_A : A ; -- [DSXFS] :: equal; commensurate; equally-measured; + commensuro_V : V ; -- [DSXFE] :: measure/make equal; correspond; + commensus_M_N : N ; -- [XSXEO] :: proportion, relative measurements; in due proportion (L+S); symmetry; + commentariensis_M_N : N ; -- [DLXCS] :: |court clerk, registrar of public documents; prison keeper/recorder; + commentariolum_N_N : N ; -- [XXXDO] :: notebook; textbook; short treatise; brief commentary (L+S); + commentariolus_M_N : N ; -- [XXXDS] :: notebook; textbook; short treatise; brief commentary (L+S); + commentarium_N_N : N ; -- [XXXBO] :: notebook, private/historical journal; register; memo/note; commentary/treatise; + commentarius_M_N : N ; -- [XXXBO] :: notebook, private/historical journal; register; memo/note; commentary/treatise; + commentatio_F_N : N ; -- [XXXCO] :: thinking out, mental preparation; study; piece of reasoning/argument; textbook; + commentator_M_N : N ; -- [XXXDO] :: inventor, deviser; contriver (L+S); author; interpreter (of law); + commenticius_A : A ; -- [XXXCO] :: invented, devised, improvised; imaginary; fabricated/fictitious; forged, false; + commentior_V : V ; -- [XXXDO] :: state falsely; invent/devise a falsehood/lie (L+S); + commentitius_A : A ; -- [XXXCS] :: invented, devised, improvised; imaginary; fabricated/fictitious; forged, false; + commento_V2 : V2 ; -- [XXXES] :: delineate, sketch; (humorously) demonstrate on face (cudgel/beat); + commentor_M_N : N ; -- [XTXEO] :: inventor, deviser; machinist (L+S); + commentor_V : V ; -- [XXXBO] :: think about; study beforehand, practice, prepare; discuss, argue over; imagine; + commentum_N_N : N ; -- [XXXCO] :: invention; intention, design, scheme, device; fiction, fabrication; argument; + commentus_A : A ; -- [XXXEO] :: feigned, pretended, fabricated, devised, fictitious, invented; + commeo_V : V ; -- [XXXBO] :: go to, visit, travel; pass; resort to; go to and fro, come and go; communicate; + commercari_M_N : N ; -- [XXXFS] :: fellow-purchaser; + commercator_M_N : N ; -- [XXXFS] :: fellow-trader; + commercior_V : V ; -- [DXXFS] :: trade; + commercium_N_N : N ; -- [XXXAO] :: |exchange, trafficking; goods, military supplies; trade routes; use in common; + commercor_V : V ; -- [XXXDO] :: buy, purchase; buy up (L+S); trade/traffic together; + commereo_V2 : V2 ; -- [XXXCO] :: merit fully, deserve, incur, earn (punishment/reward); be guilty of, perpetuate; + commereor_V : V ; -- [XXXCO] :: merit fully, deserve, incur, earn (punishment/reward); be guilty of, perpetuate; + commers_F_N : N ; -- [XXXFO] :: friendly intercourse; + commetaculum_N_N : N ; -- [DEXES] :: rods (pl.) carried by flamens/priests; + commetior_V : V ; -- [XSXDO] :: measure; pace out/off; compare (in measurement); + commeto_V : V ; -- [XXXDO] :: go constantly/frequently; come and go; survey thoroughly (facetious); + commi_N : N ; -- [XAXCO] :: gum, vicid secretion from trees; + commictilis_A : A ; -- [XXXFO] :: filthy, foul; (term of abuse); despicable, vile, deserves to be defiled (L+S); + commictus_A : A ; -- [XXXES] :: filthy, foul; (term of abuse); + commigratio_F_N : N ; -- [XXXFO] :: removal (to a new place); wandering (L+S); migration; + commigro_V : V ; -- [XXXCO] :: migrate, go and live (elsewhere); move one's home with all effects; enter; + commiles_M_N : N ; -- [XWXFO] :: fellow soldier; + commilitium_N_N : N ; -- [XWXCO] :: comradeship/association in war/military service; fellowship in other activities; + commilito_M_N : N ; -- [XWXBO] :: fellow soldier; (used by J Caesar and others to troops); comrade, mate; + commilito_V : V ; -- [XWXFO] :: fight on same side/in company; be a comrade/companion in arms/battle/war; + comminabundus_A : A ; -- [DXXFS] :: threatening, menacing; + comminatio_F_N : N ; -- [XXXCO] :: threat, menace; + comminativus_A : A ; -- [DXXFS] :: threatening, menacing; + comminator_M_N : N ; -- [DXXFS] :: menace, intimidator, threatener; + comminatus_A : A ; -- [DXXES] :: threatened, menaced; + commingo_V2 : V2 ; -- [XXXDS] :: pollute, defile; + comminisco_V2 : V2 ; -- [XXXBO] :: devise, think up, invent; fabricate; state/contrive falsely, allege, pretend; + comminiscor_V : V ; -- [XXXBO] :: devise, think up, invent; fabricate; state/contrive falsely, allege, pretend; + comminister_M_N : N ; -- [FEXFE] :: fellow minister; + commino_V2 : V2 ; -- [XXXFO] :: drive (cattle) together, round up; + comminor_V : V ; -- [XXXCO] :: threaten, make a threat; + comminuo_V2 : V2 ; -- [XXXBO] :: break/crumble into pieces, shatter; break up; crush, smash, pulverize; lessen; + comminus_Adv : Adv ; -- [XWXBO] :: hand to hand (fight), in close combat/quarters; close at hand; in presence of; + comminutus_A : A ; -- [XXXCO] :: broken, shattered; smashed; + commis_F_N : N ; -- [XAXCO] :: gum, vicid secretion from trees; + commisariatus_M_N : N ; -- [FXXEE] :: commissioner; office of commissioner; + commisarius_M_N : N ; -- [GXXEE] :: commissioner; trustee; agent (Erasmus); + commisatio_F_N : N ; -- [XXXCO] :: carousing, merry-making, feasting, revelry; Bacchanal procession/rioting (L+S); + commisceo_V2 : V2 ; -- [XXXBO] :: |mingle (with another race); transact business (w/cum), discuss; confuse; + commiscibilis_A : A ; -- [DXXFS] :: that can be mingled/mixed/combined; + commiscuus_A : A ; -- [DXXFS] :: common; + commiseratio_F_N : N ; -- [XGXEO] :: pathos, rousing of pity (esp. in a speech); part of oration exciting compassion; + commisereor_V : V ; -- [XXXEO] :: pity; excite compassion; show pity at; + commiseresco_V : V ; -- [XXXCO] :: have/show pity/sympathy, commiserate; + commiseresct_V0 : V ; -- [XXXDO] :: one pities/sympathizes/feels sorry for (w/ACC or GEN); thou have pity upon; + commiseret_V0 : V ; -- [XXXEO] :: one pities/feels sorry for (w/ACC or GEN); + commisero_M_N : N ; -- [DXXES] :: companion in misfortune; + commiseror_V : V ; -- [XXXCO] :: feel pity/compassion for; sympathize with; seek/arouse pity/sympathy for; bewail + commisio_F_N : N ; -- [FXXDE] :: commission; committee; + commisor_V : V ; -- [XXXCS] :: carouse, revel, make merry; hold a festive procession (L+S); + commissarius_M_N : N ; -- [GXXEE] :: commissioner; trustee; agent (Erasmus); + commissatio_F_N : N ; -- [XXXCO] :: carousing, merry-making, feasting, revelry; Bacchanal procession/rioting (L+S); + commissio_F_N : N ; -- [FXXDE] :: commission; committee; + commissor_M_N : N ; -- [DXXFS] :: perpetrator; + commissor_V : V ; -- [XXXCS] :: carouse, revel, make merry; hold a festive procession (L+S); + commissoria_F_N : N ; -- [DLXFS] :: sale contract clause by which creditor gets property/goods on non-payment; + commissorius_A : A ; -- [XLXEO] :: foreclosure (contract clause by which creditor gets property on non-payment); + commissum_N_N : N ; -- [XLXCO] :: undertaking, enterprise; trust, secret; thing entrusted/confiscated; crime; + commissura_F_N : N ; -- [XXXBO] :: joint, juncture, seam, gap; intersection, common point; boundary/dividing line; + commissuralis_A : A ; -- [DXXES] :: of/pertaining to a juncture/joining/intersection; + commistim_Adv : Adv ; -- [DXXFS] :: jointly, in a mixed manner; + commistio_F_N : N ; -- [DXXES] :: mixture; mixing, mingling; sexual intercourse; + commistura_F_N : N ; -- [XXXFO] :: mixture; mixing, mingling (L+S); + commitigo_V2 : V2 ; -- [XXXFO] :: soften; make soft (L+S); mellow; + committo_V2 : V2 ; -- [XXXAO] :: |engage (battle), set against; begin/start; bring about; commit; incur; forfeit; + commixtim_Adv : Adv ; -- [DXXFS] :: jointly, in a mixed manner; + commixtio_F_N : N ; -- [XXXEO] :: mixture; mixing, mingling; sexual intercourse; + commixtura_F_N : N ; -- [XXXFO] :: mixture; mixing, mingling (L+S); + commobilis_A : A ; -- [DXXFS] :: easily moving; easily moved/swayed; + commodate_Adv : Adv ; -- [XXXFO] :: fittingly; in a suitable manner; + commodatio_F_N : N ; -- [DXXFS] :: accommodation, rendering of service; + commodator_M_N : N ; -- [XLXEO] :: lender; + commodatum_N_N : N ; -- [XLXCO] :: loan; thing lent, borrowed object; + commode_Adv : Adv ; -- [XXXBO] :: |agreeably, helpfully; comfortably/pleasantly; at a good time/right moment; + commoderatus_A : A ; -- [DLXFS] :: exact; brought into right measure; (standardized?); + commoditas_F_N : N ; -- [XXXBS] :: |due measure, just proportion; suitable (oratorical expression); symmetry; + commodo_Adv : Adv ; -- [XXXEO] :: suitably; seasonably; just, this very minute (L+S); even now, at this moment; + commodo_V : V ; -- [XXXBO] :: lend, hire; give, bestow, provide; put at disposal of, oblige; make fit, adapt; + commodulatio_F_N : N ; -- [XXXFO] :: common adaptation to standard measure; regularity/proportion/symmetry (L+S); + commodule_Adv : Adv ; -- [XXXEO] :: fairly suitably, aptly; conveniently, at one's convenience (L+S); + commodulum_Adv : Adv ; -- [XXXEO] :: fairly suitably, aptly; + commodulum_N_N : N ; -- [DXXFS] :: small advantage/profit; + commodum_Adv : Adv ; -- [XXXCO] :: just, a very short time before; that/this very minute; even now, at this moment; + commodum_N_N : N ; -- [XXXBO] :: convenience, advantage, benefit; interest, profit, yield; wages, reward; gift; + commodus_A : A ; -- [XXXAO] :: |standard, full weight/size/measure; desirable, agreeable; good (health/news); + commoenio_V2 : V2 ; -- [XWXCO] :: strongly fortify, entrench; strengthen, secure, reinforce; + commoetaculum_N_N : N ; -- [XEXEO] :: small rod carried by flamines/priests and used in sacrifices; + commolior_V : V ; -- [XXXDO] :: set in motion; move with an effort; put together, construct; + commollio_V2 : V2 ; -- [DXXFS] :: soften; + commolo_V2 : V2 ; -- [XXXEO] :: pound, grind down/thoroughly; + commonefacio_V2 : V2 ; -- [XXXCO] :: recall, remember; call to mind; remind (forcibly), warn, admonish; impress upon; + commonefio_V : V ; -- [XXXCO] :: be recalled/remembered/reminded; be warned/admonished; (commonefacio PASS); + commoneo_V : V ; -- [XXXCO] :: remind (forcibly), warn; bring to recollection (L+S); impress upon one; + commonitio_F_N : N ; -- [XXXEO] :: reminder; earnest reminding (L+S); admonition; + commonitor_M_N : N ; -- [DXXFS] :: one who earnestly reminds; + commonitorium_N_N : N ; -- [DXXDS] :: aide-memoire, writing for reminding; letter of instructions; means of reminding; + commonitorius_A : A ; -- [DXXFS] :: suitable for reminding; + commonstro_V2 : V2 ; -- [XXXCO] :: point out (fully/distinctly), show where; make known, declare, reveal; + commoratio_F_N : N ; -- [XXXCO] :: stay (at a place), tarrying, abiding; delay; dwelling on a point; residence; + commordeo_V2 : V2 ; -- [XXXEO] :: bite/snap at; (literally/figuratively); (sharply/eagerly L+S); + commorior_V : V ; -- [XXXCO] :: die together/with; work oneself to death (with); perish/be destroyed together; + commoro_V : V ; -- [DXXCS] :: stop/stay/remain, abide; linger, delay; detain, be delayed (menses); dwell on; + commoror_V : V ; -- [XXXBO] :: stop/stay/remain, abide; linger, delay; detain, be delayed (menses); dwell on; + commorsico_V2 : V2 ; -- [XXXEO] :: bite all over; devour (with eyes); bite to pieces (L+S); + commorsito_V2 : V2 ; -- [DXXDS] :: bite all over; devour (with eyes); bite to pieces (L+S); + commortalis_A : A ; -- [XXXFO] :: mortal, common to mortals; "our mortal"; + commosis_F_N : N ; -- [XAXNO] :: "gumming"; (said to be first layer in construction of honeycombs); + commostro_V2 : V2 ; -- [XXXCO] :: point out (fully/distinctly), show where; make known, declare, reveal; + commotio_F_N : N ; -- [XXXCO] :: excitement, commotion, agitation; arousing of emotion; + commotiuncula_F_N : N ; -- [XXXFO] :: mild agitation/upset/commotion; slight case of disease, indisposition (L+S); + commoto_V2 : V2 ; -- [DXXDS] :: move very violently; agitate; + commotor_M_N : N ; -- [DXXFS] :: mover, one who sets in motion; + commotus_A : A ; -- [XXXCO] :: excited, nervous; frenzied/deranged; angry/annoyed; temperamental; tempestuous; + commotus_M_N : N ; -- [XXXFO] :: movement; moving, agitation (L+S); + commovens_A : A ; -- [XXXFO] :: striking; rousing; that causes an impression; + commoveo_V2 : V2 ; -- [XXXAO] :: |waken; provoke; move (money/camp); produce; cause, start (war); raise (point); + commuate_Adv : Adv ; -- [XXXFO] :: in an altered/changed manner; + commulceo_V2 : V2 ; -- [DXXDS] :: caress, coax; soothe, please (much); cajole; + commulco_V2 : V2 ; -- [DXXFS] :: beat violently/thoroughly; + communa_F_N : N ; -- [FLXFJ] :: common usage; + communalis_A : A ; -- [DAXFS] :: common, communal, belonging to the community; local (Cal); + commundo_V2 : V2 ; -- [XXXDO] :: clean/cleanse thoroughly; purify wholly (L+S); + commune_N_N : N ; -- [XXXBO] :: |common feature, characteristic, general rule/terms; general; common lot/remedy; + communicabilis_A : A ; -- [EXXFP] :: communicable, capable of being communicated; + communicabilitas_F_N : N ; -- [FXXEF] :: communicability; + communicabiliter_Adv : Adv ; -- [EXXFP] :: in a way capable of being communicated; + communicarius_A : A ; -- [XEXFS] :: days on which all gods were sacrificed to together? (w/dies); + communicatio_F_N : N ; -- [XXXCO] :: sharing, imparting; partaking; fellowship; communication; consult (w/audience); + communicator_M_N : N ; -- [DXXES] :: he who makes on a participant in a thing; he who has a part in a thing; + communicatus_M_N : N ; -- [XXXFO] :: intercommunication; participation (L+S); + communiceps_M_N : N ; -- [XLXIO] :: fellow citizen (of a municipium/municipality/town); born in same town (L+S); + communico_V2 : V2 ; -- [XXXAO] :: |communicate, discuss, impart; make common cause; take common counsel, consult; + communicor_V : V ; -- [XXXDS] :: share; share/divide with/out; receive/take a share of; receive; join with; + communio_F_N : N ; -- [XXXCO] :: community, mutual participation; association; sharing; fellowship; communion; + communio_V2 : V2 ; -- [XWXCO] :: fortify strongly, entrench, barricade; strengthen, secure, reinforce; + communis_A : A ; -- [XXXAO] :: |||shared/possessed/used by two/all parties; affecting whole state/community; + communismus_M_N : N ; -- [GXXEK] :: Communism; + communista_M_N : N ; -- [GXXEK] :: Communist; + communisticus_A : A ; -- [GXXEK] :: Communist (adj.); + communitarius_A : A ; -- [XXXFE] :: communal, with others; community; + communitas_F_N : N ; -- [XXXBO] :: partnership, joint possession/use/participation; fellowship; community, kinship; + communiter_Adv : Adv ; -- [XXXCO] :: in common, commonly; in joint action; indiscriminately; generally, ordinarily; + communitio_F_N : N ; -- [XWXEO] :: fortification; building up (of a road); making/preparing (of a way) (L+S); + communitus_Adv : Adv ; -- [XXXFO] :: jointly, as a group; + commurmuratio_F_N : N ; -- [XXXEO] :: buzz, hum, murmur, confused noise of talking; general murmuring (L+S); + commurmuro_V : V ; -- [XXXDO] :: mutter, murmur; rumble; chatter/twitter (birds); + commurmuror_V : V ; -- [XXXDO] :: mutter, murmur; rumble; chatter/twitter (birds); + commuro_V2 : V2 ; -- [XXXBO] :: burn up/away; (w/love); consume/destroy w/fire; reduce to ash, cremate; scald; + commutabilis_A : A ; -- [XXXCO] :: changeable/variable; liable to reversal; plastic; adaptable (to adversary); + commutatio_F_N : N ; -- [XXXBO] :: change, reversal; upheaval; alteration; exchange, substitution; interchange; + commutatus_M_N : N ; -- [XXXFO] :: change; alteration; + commuto_V2 : V2 ; -- [XXXAO] :: change; alter wholly, rearrange, replace; transform; exchange, barter, sell; + como_V : V ; -- [DXXES] :: be furnished/covered with hair; clothe/deck with hair/something hair-like; + como_V2 : V2 ; -- [XXXCS] :: arrange/do (hair); adorn, make beautiful; embellish; arrange in order, set out; + comoedia_F_N : N ; -- [XDXCO] :: comedy (as form of drama/literature; comedy (work/play); + comoedice_Adv : Adv ; -- [XDXEO] :: in a manner appropriate to comedy; as in comedy (L+S); + comoedicus_A : A ; -- [XDXFO] :: comic, of comedy, pertaining to a comedy; + comoedus_A : A ; -- [XDXFO] :: that performs in comedy; given to acting (L+S); of/pertaining to comedy, comic; + comoedus_M_N : N ; -- [XDXCO] :: comedian; comic actor; + comoinis_A : A ; -- [XXXES] :: |neutral, impartial (Mars); applicable on either side; same form for two cases; + comosus_A : A ; -- [XXXEO] :: having long or abundant hair; having many leaves (plant), leafy; + compaciscor_V : V ; -- [XXXFO] :: make an agreement/arrangement/compact; + compaco_V2 : V2 ; -- [DEXES] :: bring to peace; + compacticius_A : A ; -- [DXXFS] :: agreed upon; + compactilis_A : A ; -- [XXXDO] :: joined, fastened/fitted/pressed/joined together; thick-set, compact; + compactio_F_N : N ; -- [XXXEO] :: framework, structure; act/action of fitting/joining together; + compactitius_A : A ; -- [DXXFS] :: agreed upon; + compactivus_A : A ; -- [DXXFS] :: suitable for joining; + compactum_N_N : N ; -- [XLXDS] :: agreement/compact; [ABL compacto => according to/in accordance with agreement]; + compactura_F_N : N ; -- [XXXFO] :: act/action of fitting/joining together; + compactus_A : A ; -- [XXXCO] :: joined/fastened together, united; close-packed, firm, thick; well-set, compact; + compaedagogita_F_N : N ; -- [XXXIO] :: fellow member of a paedagogium (training establishment for slave boys); (M L+S); + compaedagogius_M_N : N ; -- [XXXIS] :: fellow member of a paedagogium (training establishment for slave boys); + compaganus_M_N : N ; -- [XXXIO] :: fellow villager, inhabitant of same village; + compages_F_N : N ; -- [XXXBO] :: action of binding together, fastening; bond, tie; joint; structure, framework; + compagina_F_N : N ; -- [DAXES] :: joining together, combination; (peculiar to agrimensores/land surveyors); + compaginatio_F_N : N ; -- [DXXES] :: joining; joint; + compagino_V : V ; -- [DXXES] :: join together; border upon; (fields); + compago_F_N : N ; -- [XXXCO] :: fact/action of binding together, fastening; structure, framework; + compagus_M_N : N ; -- [XXXIO] :: fellow member of a pagus (country district/community); (as a cult-title); + compalpo_V2 : V2 ; -- [DXXFS] :: stroke, caress; + compar_A : A ; -- [XXXCO] :: equal, equal to; like, similar, resembling; suitable, matching, corresponding; 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 ; - comparate_Adv : Adv ; - comparatio_F_N : N ; - comparative_Adv : Adv ; - comparativus_A : A ; - comparator_M_N : N ; - comparatus_M_N : N ; - comparco_V2 : V2 ; - compareo_V : V ; - comparilis_A : A ; - comparo_V2 : V2 ; + compar_M_N : N ; -- [XXXCO] :: fellow, partner, equal; comrade; husband/wife; pair (of animals also), mate; + compar_N_N : N ; -- [XGXFO] :: sentence containing clauses of roughly same number of syllables; + comparabilis_A : A ; -- [XXXDO] :: similar, comparable; + comparate_Adv : Adv ; -- [XXXFO] :: comparatively; in/by comparison (L+S); + comparatio_F_N : N ; -- [XXXAO] :: ||preparation, making ready; procuring, provision; arrangement, settlement; + comparative_Adv : Adv ; -- [XXXFO] :: in a comparative sense; + comparativus_A : A ; -- [XGXCO] :: based on/involving consideration of relative merits; comparative; + comparator_M_N : N ; -- [XXXIO] :: buyer/purchaser, dealer; comparer (L+S); + comparatus_M_N : N ; -- [XSXIO] :: proportion; relation (L+S); + comparco_V2 : V2 ; -- [DXXCO] :: save, husband well, lay up; forbear/abstain/refrain from (w/INF), spare (w/DAT); + compareo_V : V ; -- [XXXBO] :: appear/come in sight; be visible/present/in evidence/clearly stated/forthcoming; + comparilis_A : A ; -- [DXXES] :: equal, like; + comparo_V2 : V2 ; -- [XXXAO] :: ||set up/establish/institute; arrange, dispose, settle; buy, acquire, secure; compars_F_N : N ; -- [FXXEE] :: partner; - compars_M_N : N ; - comparticeps_A : A ; - compartimentum_N_N : N ; - compartior_V : V ; - comparturio_V : V ; - compasco_V2 : V2 ; - compascua_F_N : N ; - compascuum_N_N : N ; - compascuus_A : A ; - compassibilis_A : A ; - compassio_F_N : N ; - compastor_M_N : N ; - compater_M_N : N ; - compaternitas_F_N : N ; - compatiens_A : A ; - compatior_V : V ; - compatriota_F_N : N ; - compatronus_M_N : N ; - compauper_M_N : N ; - compavesco_V : V ; - compavio_V2 : V2 ; - compavitus_A : A ; - compeccator_M_N : N ; - compecco_V : V ; - compeciscor_V : V ; - compectum_N_N : N ; - compedagogita_F_N : N ; - compedagogius_M_N : N ; - compedio_V2 : V2 ; - compeditus_A : A ; - compeditus_M_N : N ; - compedus_A : A ; - compellatio_F_N : N ; - compello_V2 : V2 ; - compendiaria_F_N : N ; - compendiarium_N_N : N ; - compendiarius_A : A ; - compendio_V2 : V2 ; - compendiose_Adv : Adv ; - compendiosus_A : A ; - compendium_N_N : N ; - compendo_V2 : V2 ; - compenetratio_F_N : N ; - compensatio_F_N : N ; - compensativus_A : A ; - compensato_Adv : Adv ; - compenso_V2 : V2 ; - comperco_V2 : V2 ; - comperegrinus_M_N : N ; - comperendinatio_F_N : N ; - comperendinatus_M_N : N ; - comperendino_V2 : V2 ; - comperendinus_A : A ; - compereo_V : V ; - comperio_V2 : V2 ; - comperior_V : V ; - compernis_A : A ; - comperpetuus_A : A ; - comperte_Adv : Adv ; - compertum_N_N : N ; - compertus_A : A ; - compertus_M_N : N ; - compertusio_F_N : N ; - compes_F_N : N ; - compesco_V2 : V2 ; - compestror_V : V ; - competalis_A : A ; - competens_A : A ; - competenter_Adv : Adv ; - competentia_F_N : N ; - competitio_F_N : N ; - competitivitas_F_N : N ; - competitor_M_N : N ; - competitrix_F_N : N ; - competo_V2 : V2 ; - competum_N_N : N ; - compilatio_F_N : N ; - compilator_M_N : N ; - compilo_V2 : V2 ; - compingo_V2 : V2 ; - compinguesco_V : V ; - compitalicius_A : A ; - compitalis_A : A ; - compitalitius_A : A ; - compitensis_A : A ; - compitum_N_N : N ; - compitus_M_N : N ; - complaceo_V : V ; - complacitus_A : A ; - complaco_V2 : V2 ; - complanator_M_N : N ; - complano_V2 : V2 ; - complantatio_F_N : N ; - complanto_V2 : V2 ; - complatonicus_M_N : N ; - complaudo_V : V ; - complecto_V2 : V2 ; - complector_V : V ; - complectus_M_N : N ; - complementarius_A : A ; - complementum_N_N : N ; - complenda_F_N : N ; - compleo_V2 : V2 ; - completio_F_N : N ; - completivus_A : A ; - completor_M_N : N ; - completorium_N_N : N ; - completus_A : A ; - complex_A : A ; + compars_M_N : N ; -- [FXXEE] :: partner; + comparticeps_A : A ; -- [DXXES] :: partaking/participating together; sharing jointly (Ecc); + compartimentum_N_N : N ; -- [GXXEK] :: compartment (in a train); + compartior_V : V ; -- [XXXIO] :: share; divide something with one (L+S); (PASS) be made partaker of; + comparturio_V : V ; -- [DXXES] :: be associated in childbirth with any one; + compasco_V2 : V2 ; -- [XAXCO] :: pasture (cattle) on common land; feed up/together; use as cattle food; eat; + compascua_F_N : N ; -- [XAXEO] :: common pasture/land; pasture possessed/used in common; + compascuum_N_N : N ; -- [XAXEO] :: common pasture/land (pl.); pasture possessed/used in common; + compascuus_A : A ; -- [XAXCO] :: common pasture (land); right of common pasturage; grazed on/sharing a pasture; + compassibilis_A : A ; -- [DXXFS] :: suffering with one; + compassio_F_N : N ; -- [DEXES] :: fellow-feeling, fellow-suffering; sympathy; + compastor_M_N : N ; -- [XAXFO] :: fellow herdsman; + compater_M_N : N ; -- [FXXEM] :: fellow priest; child's godfather (Nelson); sponsor (Ecc); + compaternitas_F_N : N ; -- [XLXEZ] :: co-paternity; + compatiens_A : A ; -- [EXXEE] :: compassionate, having compassion; + compatior_V : V ; -- [DXXDS] :: suffer with one; pity, have compassion, feel pity; + compatriota_F_N : N ; -- [XXXIO] :: compatriot, fellow countryman; + compatronus_M_N : N ; -- [XXXEO] :: co-patron (one who has joined in manumitting a slave); + compauper_M_N : N ; -- [DXXFS] :: fellow-pauper; + compavesco_V : V ; -- [XXXFO] :: become very afraid/full of fear/thoroughly terrified; + compavio_V2 : V2 ; -- [XXXFO] :: trample on; beat (L+S); + compavitus_A : A ; -- [XXXFO] :: trampled upon; beaten (L+S); + compeccator_M_N : N ; -- [DEXES] :: fellow-sinner; + compecco_V : V ; -- [DXXES] :: err/sin/commit a fault together; + compeciscor_V : V ; -- [XXXFO] :: make an agreement/arrangement/compact; + compectum_N_N : N ; -- [XLXDS] :: agreement/compact; [ABL compacto => according to/in accordance with agreement]; + compedagogita_F_N : N ; -- [XXXIO] :: fellow member of a paedagogium (training establishment for slave boys); (M L+S); + compedagogius_M_N : N ; -- [XXXIS] :: fellow member of a paedagogium (training establishment for slave boys); + compedio_V2 : V2 ; -- [XXXEO] :: shackle, fetter; put fetters on; + compeditus_A : A ; -- [XXXDO] :: that wears fetters/shackles; + compeditus_M_N : N ; -- [XXXDO] :: fettered slave; + compedus_A : A ; -- [XXXFO] :: that fetters or restrains; fettering, shackling (L+S); + compellatio_F_N : N ; -- [XGXDO] :: action of addressing/apostrophizing (aside to person)/reproaching, reproof; + compello_V2 : V2 ; -- [XXXAO] :: drive together (cattle), round up; force, compel, impel, drive; squeeze; gnash; + compendiaria_F_N : N ; -- [XXXCO] :: short/quick route, short cut; quick/easy method, short cut; + compendiarium_N_N : N ; -- [XXXEO] :: short/quick route, short cut; fitment in a granary; + compendiarius_A : A ; -- [XXXEO] :: short/quick (of routes); + compendio_V2 : V2 ; -- [DEXES] :: shorten, abridge (sermon); shorten/cut short (life), kill; + compendiose_Adv : Adv ; -- [DXXES] :: briefly, shortly, compendiously; + compendiosus_A : A ; -- [XXXDO] :: profitable, advantageous; short/quick (route); compendious, succinct, short; + compendium_N_N : N ; -- [GXXEK] :: summarized, abstract; + compendo_V2 : V2 ; -- [XXXFO] :: weigh/balance together; + compenetratio_F_N : N ; -- [FXXFE] :: merging, compenetration, mutual penetration, co-mixing; uniting equally; + compensatio_F_N : N ; -- [XXXCO] :: balancing of items in account, offsetting; weighing/balancing (of factors); + compensativus_A : A ; -- [DXXFS] :: serving for compensation; + compensato_Adv : Adv ; -- [DXXFS] :: with compensation/reward; + compenso_V2 : V2 ; -- [XXXBO] :: balance/weigh/offset; get rid of; make good, compensate; save/secure; short cut; + comperco_V2 : V2 ; -- [DXXCO] :: save, husband well, lay up; forbear/abstain/refrain from (w/INF), spare (w/DAT); + comperegrinus_M_N : N ; -- [DXXFS] :: fellow-stranger; + comperendinatio_F_N : N ; -- [XLXDO] :: adjournment of a trial for two days; (to third day following or later L+S); + comperendinatus_M_N : N ; -- [XLXEO] :: adjournment of a trial for two days; (to third day following or later L+S); + comperendino_V2 : V2 ; -- [XLXCO] :: adjourn trial of a person; adjourn trial; (for two days or later); + comperendinus_A : A ; -- [XLXFO] :: on which an adjourned trial is resumed (of a day); + compereo_V : V ; -- [DXXFS] :: perish together; + comperio_V2 : V2 ; -- [XXXAO] :: learn/discover/find (by investigation); verify/know for certain; find guilty; + comperior_V : V ; -- [XXXDS] :: learn/discover/find (by investigation); verify/know for certain; find guilty; + compernis_A : A ; -- [XBXEO] :: having thighs close together; knock-kneed (L+S); + comperpetuus_A : A ; -- [DEXFS] :: co-eternal; + comperte_Adv : Adv ; -- [XXXCO] :: on good authority, on reliable information/intelligence; informedly; + compertum_N_N : N ; -- [XLXCO] :: ascertained/proved/verified fact, certainty; [pro ~o => as certain/for a fact]; + compertus_A : A ; -- [XLXCO] :: ascertained, proved, verified; [res ~ => fact; male ~ => bad character]; + compertus_M_N : N ; -- [DXXFS] :: experience, personal knowledge; + compertusio_F_N : N ; -- [XTXIO] :: joint tunneling operation; + compes_F_N : N ; -- [XXXCO] :: shackles (for feet) (usu. pl.), fetters; things impeding movement; chains; + compesco_V2 : V2 ; -- [XXXAO] :: restrain, check; quench; curb, confine, imprison; hold in check; block, close; + compestror_V : V ; -- [FXXEE] :: clothe in apron; + competalis_A : A ; -- [XEXEO] :: associated with/worshiped at cross-roads; + competens_A : A ; -- [XLXCO] :: agreeing with, corresponding to, proper/appropriate/suitable; competent (legal); + competenter_Adv : Adv ; -- [XXXEO] :: suitably, appositely; properly, becomingly; + competentia_F_N : N ; -- [GXXEK] :: |expertise; (Cal); + competitio_F_N : N ; -- [DLXDS] :: agreement; judicial demand; rivalry, competition; + competitivitas_F_N : N ; -- [GXXEK] :: competitiveness; + competitor_M_N : N ; -- [XXXCO] :: rival, competitor; other candidate for office; rival claimant (to throne); + competitrix_F_N : N ; -- [XXXEO] :: rival, competitor (female); other candidate for office; rival claimant; + competo_V2 : V2 ; -- [XXXBO] :: |be sound/capable/applicable/relevant/sufficient/adequate/competent/admissible; + competum_N_N : N ; -- [XXXCO] :: cross-roads (usu. pl.), junction; people/shrine at crossroads; point of choice; + compilatio_F_N : N ; -- [XXXFO] :: burglary; raking together, pillaging/plundering (L+S); compilation (document); + compilator_M_N : N ; -- [DGXES] :: plunderer; imitator (literary); plagiarizer; (compiler/anthologist?); + compilo_V2 : V2 ; -- [XXXCO] :: rob/pillage, snatch; steal from (another author)/plagiarize; beat up thoroughly; + compingo_V2 : V2 ; -- [XXXFS] :: disguise, cover, paint over; + compinguesco_V : V ; -- [DXXFS] :: thicken to a solid substance; + compitalicius_A : A ; -- [XXXDO] :: associated with cross-roads; of Compitalia festival of the_Lares; + compitalis_A : A ; -- [XEXEO] :: associated with/worshiped at cross-roads; + compitalitius_A : A ; -- [XXXDS] :: associated with cross-roads; of Compitalia festival of the_Lares; + compitensis_A : A ; -- [XXXIO] :: adjoining/sharing same crossroads/road junction; + compitum_N_N : N ; -- [XXXCO] :: cross-roads (usu. pl.), junction; people/shrine at crossroads; point of choice; + compitus_M_N : N ; -- [XXXEO] :: cross-roads (usu. pl.), junction; people/shrine at crossroads; point of choice; + complaceo_V : V ; -- [XXXCO] :: please, take fancy of, capture affections of, be acceptable/agreed to; + complacitus_A : A ; -- [DXXES] :: pleased; favorable; + complaco_V2 : V2 ; -- [XXXFO] :: conciliate (greatly), placate; win sympathy of; + complanator_M_N : N ; -- [XXXFO] :: thing/one that makes smooth/level; (toothpaste); + complano_V2 : V2 ; -- [XXXCO] :: make (ground) level/flat; smooth out (trouble); pull down, raze to ground; + complantatio_F_N : N ; -- [DAXFS] :: planting; + complanto_V2 : V2 ; -- [DAXES] :: plant together; + complatonicus_M_N : N ; -- [DSXFS] :: fellow-Platonist; + complaudo_V : V ; -- [DXXFS] :: applaud together/enthusiastically; + complecto_V2 : V2 ; -- [XXXCO] :: |lay hold of, grip; seize; grasp, take in/up; sum up; include in scope, cover; + complector_V : V ; -- [XXXAO] :: |lay hold of, grip; seize; grasp, take in/up; sum up; include in scope, cover; + complectus_M_N : N ; -- [FXXEN] :: embrace, grasp. + complementarius_A : A ; -- [GXXEK] :: complementary; + complementum_N_N : N ; -- [XXXEO] :: complement, something that fills out/up or completes; + complenda_F_N : N ; -- [FEXFE] :: Post-Communion; + compleo_V2 : V2 ; -- [XXXAO] :: |finish, complete, perfect; make pregnant; fulfill, make up, complete, satisfy; + completio_F_N : N ; -- [DXXES] :: filling, filling up; fulfillment; + completivus_A : A ; -- [DXXFS] :: serving for filling up, completive; + completor_M_N : N ; -- [DEXFS] :: one who fills up; fulfiller; (Jesus); + completorium_N_N : N ; -- [DEXFS] :: Compline, service of prayers at close of day; + completus_A : A ; -- [XXXEO] :: complete, round off; filled full, full (L+S); perfect; + complex_A : A ; -- [DXXDS] :: closely connected with one, confederate, participant; complex_F_N : N ; -- [DXXEE] :: accomplice; confederate, participant; - complex_M_N : N ; - complexio_F_N : N ; - complexionatus_A : A ; - complexitas_F_N : N ; - complexivus_A : A ; - complexo_V2 : V2 ; - complexor_V : V ; - complexus_M_N : N ; - complicabilis_A : A ; - complicatio_F_N : N ; - complicitas_F_N : N ; - complico_V2 : V2 ; - complodo_V2 : V2 ; - comploratio_F_N : N ; - comploratus_M_N : N ; - comploro_V : V ; - compluor_V : V ; - compluriens_Adv : Adv ; - complurimus_A : A ; - complus_A : A ; - complus_M_N : N ; - complus_N_N : N ; - complusculus_A : A ; - complusicule_Adv : Adv ; - complut_V0 : V ; - complutor_M_N : N ; - compluviatus_A : A ; - compluvium_N_N : N ; - componderans_A : A ; - compono_V2 : V2 ; - comportatio_F_N : N ; - comportionalis_A : A ; - comporto_V2 : V2 ; - compos_A : A ; - composcens_A : A ; - composite_Adv : Adv ; - compositicius_A : A ; - compositio_F_N : N ; - composititius_A : A ; - compositivus_A : A ; - composito_Adv : Adv ; - compositor_M_N : N ; - compositum_N_N : N ; - compositura_F_N : N ; - compositus_A : A ; - compossessor_M_N : N ; - compostio_F_N : N ; - compostura_F_N : N ; - compostus_A : A ; - compotatio_F_N : N ; - compotator_M_N : N ; - compotens_A : A ; - compotio_V2 : V2 ; - compoto_V : V ; - compotor_M_N : N ; - compotrix_F_N : N ; - compraecido_V2 : V2 ; - compraes_M_N : N ; - compransor_M_N : N ; - comprecatio_F_N : N ; - comprecor_V : V ; - comprehendibilis_A : A ; - comprehendo_V2 : V2 ; - comprehensibilis_A : A ; - comprehensibilitas_F_N : N ; - comprehensio_F_N : N ; - comprehensivus_A : A ; - comprehenso_V2 : V2 ; - comprendo_V2 : V2 ; - comprensio_F_N : N ; - compresbyter_M_N : N ; - compresse_Adv : Adv ; - compressio_F_N : N ; - compresso_V2 : V2 ; - compressor_M_N : N ; - compressus_A : A ; - compressus_M_N : N ; - comprimens_A : A ; - comprimo_V2 : V2 ; - comprobatio_F_N : N ; - comprobator_M_N : N ; - comprobo_V2 : V2 ; - compromissarius_A : A ; - compromissio_F_N : N ; - compromissum_N_N : N ; - compromitto_V2 : V2 ; - comprovincialis_A : A ; - compte_Adv : Adv ; - comptionalis_A : A ; - comptor_M_N : N ; - comptulus_A : A ; - comptus_A : A ; - comptus_M_N : N ; - compugnantia_F_N : N ; - compugno_V : V ; - compulsamentum_N_N : N ; - compulsatio_F_N : N ; - compulsio_F_N : N ; - compulso_V2 : V2 ; - compulsor_M_N : N ; - compulsus_M_N : N ; - compunctio_F_N : N ; - compunctorius_A : A ; - compunctus_A : A ; - compungo_V2 : V2 ; - compurgatio_F_N : N ; - compurgo_V2 : V2 ; - computabilis_A : A ; - computatio_F_N : N ; - computator_M_N : N ; - computatrum_N_N : N ; - computesco_V : V ; - computo_V2 : V2 ; - computresco_V : V ; - computus_M_N : N ; - comte_Adv : Adv ; - comtus_A : A ; - comtus_M_N : N ; - comula_F_N : N ; - comunis_A : A ; - conabilis_A : A ; - conamen_N_N : N ; - conamentum_N_N : N ; - conangusto_V2 : V2 ; - conarache_F_N : N ; - conatio_F_N : N ; - conatum_N_N : N ; - conatus_M_N : N ; - conaudito_V2 : V2 ; - conbenno_M_N : N ; - conbibo_M_N : N ; - conbibo_V2 : V2 ; - conbullio_V2 : V2 ; - conburo_V2 : V2 ; - conbustio_F_N : N ; - conbustum_N_N : N ; - conbustura_F_N : N ; - conca_F_N : N ; - concaco_V2 : V2 ; - concado_V : V ; - concaedes_F_N : N ; - concalefacio_V2 : V2 ; - concalefactio_F_N : N ; - concalefio_V : V ; - concaleo_V : V ; - concalesco_V : V ; - concalfacio_V2 : V2 ; - concalfactorius_A : A ; - concalfio_V : V ; - concallesco_V : V ; - concalo_V2 : V2 ; - concamaratio_F_N : N ; - concamaratus_A : A ; - concamaro_V2 : V2 ; - concameratio_F_N : N ; - concameratus_A : A ; - concamero_V2 : V2 ; - concandefacio_V2 : V2 ; - concandefio_V : V ; - concandesco_V : V ; - concaptivus_M_N : N ; - concarnatio_F_N : N ; - concarno_V2 : V2 ; - concastigo_V2 : V2 ; - concatenatio_F_N : N ; - concateno_V2 : V2 ; - concatervatus_A : A ; - concatus_A : A ; - concavatus_A : A ; - concavitas_F_N : N ; - concavo_V2 : V2 ; - concavum_N_N : N ; - concavus_A : A ; - concedo_V2 : V2 ; - concelebratio_F_N : N ; - concelebro_V2 : V2 ; - concellita_M_N : N ; - concelo_V2 : V2 ; - concenatio_F_N : N ; - concentio_F_N : N ; - concentor_M_N : N ; - concentricus_A : A ; - concenturio_V2 : V2 ; - concentus_M_N : N ; - conceptaculum_N_N : N ; - conceptio_F_N : N ; - conceptionalis_A : A ; - conceptivus_A : A ; - concepto_V2 : V2 ; - conceptum_N_N : N ; - conceptus_A : A ; - conceptus_M_N : N ; - concerno_V2 : V2 ; - concero_V : V ; - concerpo_V2 : V2 ; - concerra_M_N : N ; - concerro_M_N : N ; - concertatio_F_N : N ; - concertativus_A : A ; - concertator_M_N : N ; - concertatorius_A : A ; - concerto_V : V ; - concertor_V : V ; - concessatio_F_N : N ; - concessio_F_N : N ; - concessivus_A : A ; - concesso_V : V ; - concessus_A : A ; - concessus_M_N : N ; - concha_F_N : N ; - conchatus_A : A ; - concheus_A : A ; - conchicla_F_N : N ; - conchiclatus_A : A ; - conchis_F_N : N ; - conchita_M_N : N ; - conchortalis_A : A ; - conchuela_F_N : N ; - conchula_F_N : N ; - conchyliarius_M_N : N ; - conchyliatus_A : A ; - conchyliatus_M_N : N ; - conchylilegulus_M_N : N ; - conchylium_N_N : N ; - conchyta_M_N : N ; - concido_V : V ; - concido_V2 : V2 ; - conciens_A : A ; - concieo_V2 : V2 ; - conciliabulum_N_N : N ; - conciliaris_A : A ; - conciliarismus_M_N : N ; - conciliatio_F_N : N ; - conciliator_M_N : N ; - conciliatricula_F_N : N ; - conciliatrix_F_N : N ; - conciliatura_F_N : N ; - conciliatus_A : A ; - conciliatus_M_N : N ; - conciliciatus_A : A ; - concilio_V2 : V2 ; - concilium_N_N : N ; - concinens_A : A ; - concinentia_F_N : N ; - concineratus_A : A ; - concingo_V2 : V2 ; - concinnaticius_A : A ; - concinnatio_F_N : N ; - concinnator_M_N : N ; - concinnatus_A : A ; - concinne_Adv : Adv ; - concinnis_A : A ; - concinnitas_F_N : N ; - concinniter_Adv : Adv ; - concinnitudo_F_N : N ; - concinno_V2 : V2 ; - concinnus_A : A ; - concino_V2 : V2 ; - concio_F_N : N ; - concio_V2 : V2 ; - concionabundus_A : A ; - concionalis_A : A ; - concionarius_A : A ; - concionator_M_N : N ; - concionatorius_A : A ; - concionor_V : V ; - concipilo_V2 : V2 ; - concipio_V2 : V2 ; - concise_Adv : Adv ; - concisio_F_N : N ; - concisor_M_N : N ; - concisorius_A : A ; - concisura_F_N : N ; - concisus_A : A ; - concitamentum_N_N : N ; - concitate_Adv : Adv ; - concitatio_F_N : N ; - concitator_M_N : N ; - concitatrix_A : A ; - concitatrix_F_N : N ; - concitatus_A : A ; - concitatus_M_N : N ; - concito_Adv : Adv ; - concito_V2 : V2 ; - concitor_M_N : N ; - concitus_A : A ; - concitus_M_N : N ; - conciucula_F_N : N ; - concivis_M_N : N ; - conclamans_A : A ; - conclamatio_F_N : N ; - conclamatus_A : A ; - conclamito_V : V ; - conclamo_V : V ; - conclave_N_N : N ; - conclavista_F_N : N ; - conclavo_V2 : V2 ; - conclericus_M_N : N ; - concludenter_Adv : Adv ; - concludo_V2 : V2 ; - concluse_Adv : Adv ; - conclusio_F_N : N ; - conclusiuncula_F_N : N ; - conclusive_Adv : Adv ; - conclusum_N_N : N ; - conclusura_F_N : N ; - conclusus_A : A ; - conclusus_M_N : N ; - concoctio_F_N : N ; - concohortalis_A : A ; - concolona_F_N : N ; - concolor_A : A ; - concolorans_A : A ; - concolorus_A : A ; - concomitantia_F_N : N ; - concomitatus_A : A ; - concomitor_V : V ; - concopulo_V2 : V2 ; - concoquo_V2 : V2 ; - concordabilis_A : A ; - concordantia_F_N : N ; - concordatio_F_N : N ; - concordatum_N_N : N ; - concorde_Adv : Adv ; - concordia_F_N : N ; - concordialis_A : A ; - concordis_A : A ; - concorditas_F_N : N ; - concorditer_Adv : Adv ; - concordo_V : V ; - concorporalis_A : A ; - concorporalis_M_N : N ; - concorporatio_F_N : N ; - concorporatus_A : A ; - concorporeus_A : A ; - concorporificatus_A : A ; - concorporo_V2 : V2 ; - concors_A : A ; - concrasso_V2 : V2 ; - concreatus_A : A ; - concrebresco_V : V ; - concredo_V2 : V2 ; - concreduo_V2 : V2 ; - concrematio_F_N : N ; - concrementum_N_N : N ; - concremo_V2 : V2 ; - concreo_V2 : V2 ; - concrepatio_F_N : N ; - concrepatio_V : V ; - concrepo_V : V ; - concrescentia_F_N : N ; - concresco_V : V ; - concretio_F_N : N ; - concretum_N_N : N ; - concretus_A : A ; - concretus_M_N : N ; - concriminor_V : V ; - concrispo_V : V ; - concrispus_A : A ; - concrucifigo_V2 : V2 ; - concrusio_V2 : V2 ; - concrustatus_A : A ; - conctabundus_A : A ; - conctanter_Adv : Adv ; - conctio_F_N : N ; - concubatio_F_N : N ; - concubeo_V2 : V2 ; - concubina_F_N : N ; - concubinalis_A : A ; - concubinarius_A : A ; - concubinarius_M_N : N ; - concubinatus_M_N : N ; - concubinus_M_N : N ; - concubitalis_A : A ; - concubitio_F_N : N ; - concubitor_M_N : N ; - concubitus_M_N : N ; - concubium_N_N : N ; - concubius_A : A ; - concubo_V2 : V2 ; - conculcatio_F_N : N ; - conculco_V2 : V2 ; - conculium_N_N : N ; - concumbo_V : V ; - concumulatus_A : A ; - concupiens_A : A ; - concupio_V2 : V2 ; - concupiscentia_F_N : N ; - concupiscentialis_A : A ; - concupiscentivus_A : A ; - concupiscibilis_A : A ; - concupiscitivus_A : A ; - concupisco_V2 : V2 ; - concupitor_M_N : N ; - concurator_M_N : N ; - concurialis_A : A ; - concurialis_M_N : N ; - concuro_V2 : V2 ; - concurrentia_F_N : N ; - concurro_V : V ; - concursatio_F_N : N ; - concursator_A : A ; - concursator_M_N : N ; - concursatorius_A : A ; - concursio_F_N : N ; - concurso_V : V ; - concursus_M_N : N ; - concurvo_V2 : V2 ; - concussibilis_A : A ; - concussio_F_N : N ; - concussor_M_N : N ; - concussura_F_N : N ; - concussus_A : A ; - concussus_M_N : N ; - concustodio_V2 : V2 ; - concutio_V2 : V2 ; - condalium_N_N : N ; - condama_F_N : N ; - condator_M_N : N ; - condecens_A : A ; - condeceo_V : V ; - condecerno_V2 : V2 ; - condecet_V0 : V ; - condecoro_V2 : V2 ; - condecuralis_M_N : N ; - condecurio_M_N : N ; - condelecto_V : V ; - condeliquesco_V : V ; - condemnabilis_A : A ; - condemnatio_F_N : N ; - condemnator_M_N : N ; - condemnatorius_A : A ; - condemno_V2 : V2 ; - condensatio_F_N : N ; - condensatrum_N_N : N ; - condensatus_A : A ; - condenseo_V2 : V2 ; - condenso_V2 : V2 ; - condensum_N_N : N ; - condensus_A : A ; - condepso_V2 : V2 ; - condescendo_V : V ; - condescensio_F_N : N ; - condesertor_M_N : N ; - condicio_F_N : N ; - condicionabilis_A : A ; - condicionalis_A : A ; - condicionaliter_Adv : Adv ; - condico_V2 : V2 ; - condicticius_A : A ; - condictio_F_N : N ; - condictitius_A : A ; - condictor_M_N : N ; - condictum_N_N : N ; - condigne_Adv : Adv ; - condignus_A : A ; - condimentarius_A : A ; - condimentarius_M_N : N ; - condimentum_N_N : N ; - condio_V2 : V2 ; - condiscipula_F_N : N ; - condiscipulatus_M_N : N ; - condiscipulus_M_N : N ; - condisco_V2 : V2 ; - conditaneus_A : A ; - conditarius_M_N : N ; - conditicius_A : A ; - conditio_F_N : N ; - conditionabilis_A : A ; - conditionalis_A : A ; - conditionaliter_Adv : Adv ; - conditionate_Adv : Adv ; - conditionatus_A : A ; - conditione_Adv : Adv ; - condititius_A : A ; - conditivum_N_N : N ; - conditivus_A : A ; - conditor_M_N : N ; - conditorium_N_N : N ; - conditorius_A : A ; - conditrix_F_N : N ; - conditum_N_N : N ; - conditura_F_N : N ; - conditus_A : A ; - conditus_M_N : N ; - condo_V2 : V2 ; - condocefacio_V2 : V2 ; - condocefio_V : V ; - condoceo_V2 : V2 ; - condoctor_M_N : N ; - condoctus_A : A ; - condoleo_V : V ; - condolesco_V : V ; - condoma_F_N : N ; - condominus_M_N : N ; - condomo_V2 : V2 ; - condomum_N_N : N ; - condonatio_F_N : N ; - condonatus_M_N : N ; - condono_V2 : V2 ; - condormio_V : V ; - condormisco_V : V ; - condrilla_F_N : N ; - condrille_F_N : N ; - condrion_N_N : N ; - condrylla_F_N : N ; - conducenter_Adv : Adv ; - conducibilis_A : A ; - conduco_V : V ; - conduco_V2 : V2 ; - conducticius_A : A ; - conductio_F_N : N ; - conductitius_A : A ; - conductor_M_N : N ; - conductrix_F_N : N ; - conductrum_N_N : N ; - conductum_N_N : N ; - conductus_A : A ; - conductus_M_N : N ; - condulco_V2 : V2 ; - condulus_M_N : N ; - condumno_V2 : V2 ; - conduplicatio_F_N : N ; - conduplico_V2 : V2 ; - condurdum_N_N : N ; - conduro_V2 : V2 ; - condus_M_N : N ; - condyloma_N_N : N ; - condylus_M_N : N ; - conea_F_N : N ; - conective_Adv : Adv ; - conecto_V2 : V2 ; - conesto_V2 : V2 ; - conexe_Adv : Adv ; - conexio_F_N : N ; - conexivus_A : A ; - conexo_Adv : Adv ; - conexum_N_N : N ; - conexus_M_N : N ; - confabricor_V : V ; - confabulatio_F_N : N ; - confabulator_M_N : N ; - confabulatus_M_N : N ; - confabulo_M_N : N ; - confabulor_V : V ; - confacio_V2 : V2 ; - confamulans_A : A ; - confamulus_M_N : N ; - confarreatio_F_N : N ; - confarreo_V2 : V2 ; - confatalis_A : A ; - confectio_F_N : N ; - confector_M_N : N ; - confectorarius_M_N : N ; - confectorium_N_N : N ; - confectrix_F_N : N ; - confectura_F_N : N ; - confectus_A : A ; - confederatio_F_N : N ; - confederatorus_M_N : N ; - confedero_V : V ; - confercio_V2 : V2 ; - conferentia_F_N : N ; - confermento_V2 : V2 ; - confero_V2 : V2 ; - conferrumino_V2 : V2 ; - confersus_A : A ; - conferte_Adv : Adv ; - confertim_Adv : Adv ; - confertus_A : A ; - conferumino_V2 : V2 ; - conferva_F_N : N ; - confervefacio_V2 : V2 ; - confervefio_V : V ; - confervesco_V : V ; - confervo_V : V ; - confessarius_M_N : N ; - confessio_F_N : N ; - confessionale_N_N : N ; - confessionalis_A : A ; - confessionalis_F_N : N ; - confessor_M_N : N ; - confessorius_A : A ; - confessum_N_N : N ; - confessus_A : A ; - confessus_M_N : N ; - confestim_Adv : Adv ; - confibula_F_N : N ; - conficiens_A : A ; - conficio_V2 : V2 ; - confictio_F_N : N ; - conficto_V2 : V2 ; - confictor_M_N : N ; - confictus_A : A ; - confidejussor_M_N : N ; - confidelis_M_N : N ; - confidens_A : A ; - confidenter_Adv : Adv ; - confidentia_F_N : N ; - confidentiloquus_A : A ; - confideo_V : V ; - confido_V : V ; - configo_V2 : V2 ; - configuratio_F_N : N ; - configuratus_A : A ; - configuro_V2 : V2 ; - confindo_V2 : V2 ; - confine_N_N : N ; - confingo_V2 : V2 ; - confinis_A : A ; - confinium_N_N : N ; - confinius_A : A ; - confinus_M_N : N ; - confio_V : V ; - confirmanda_F_N : N ; - confirmandus_M_N : N ; - confirmate_Adv : Adv ; - confirmatio_F_N : N ; - confirmative_Adv : Adv ; - confirmativum_N_N : N ; - confirmativus_A : A ; - confirmator_M_N : N ; - confirmatrix_F_N : N ; - confirmatus_A : A ; - confirmitas_F_N : N ; - confirmo_V2 : V2 ; - confiscatio_F_N : N ; - confiscator_M_N : N ; - confisco_V2 : V2 ; - confisio_F_N : N ; - confiteor_V : V ; - confixilis_A : A ; - confixio_F_N : N ; - conflabello_V2 : V2 ; - conflaccesco_V : V ; - conflagratio_F_N : N ; - conflagratus_A : A ; - conflagro_V : V ; - conflammo_V2 : V2 ; - conflans_A : A ; - conflatile_N_N : N ; - conflatilis_A : A ; - conflatio_F_N : N ; - conflator_M_N : N ; - conflatorium_N_N : N ; - conflatura_F_N : N ; + complex_M_N : N ; -- [DXXEE] :: accomplice; confederate, participant; + complexio_F_N : N ; -- [XXXCO] :: encircling; combination, association, connection; summary, resume; dilemma; + complexionatus_A : A ; -- [FXXFM] :: constituted; tempered; + complexitas_F_N : N ; -- [EXXCE] :: combination, association, connection; summary, resume; dilemma; complexity; + complexivus_A : A ; -- [XGXFO] :: connective, conjunctive; (grammar); serving for connecting (L+S); + complexo_V2 : V2 ; -- [FXXFE] :: embrace closely; join, combine (Ecc); + complexor_V : V ; -- [DXXFS] :: embrace closely; join, combine (Ecc); + complexus_M_N : N ; -- [XXXAO] :: |sexual intercourse (w/Venerius/femineus); hand-to-hand fighting; stranglehold; + complicabilis_A : A ; -- [DXXFS] :: bending, pliant, that may be folded together; + complicatio_F_N : N ; -- [DXXES] :: folding together, enveloping; multiplication; + complicitas_F_N : N ; -- [EXXDE] :: complicity; + complico_V2 : V2 ; -- [XXXCO] :: fold/tie up/together; roll/curl/double up, wind (round); involve; bend at joint; + complodo_V2 : V2 ; -- [XXXCO] :: clap/strike (hands) together, applaud (enthusiastically/with emotion); + comploratio_F_N : N ; -- [XXXCO] :: lamentation, (vocal) mourning; loud/violent complaint/bemoaning/bewailing (L+S); + comploratus_M_N : N ; -- [XXXEO] :: lamentation, (vocal) mourning; loud/violent complaint/bemoaning/bewailing (L+S); + comploro_V : V ; -- [XXXCO] :: bewail, bemoan; lament loudly/together/violently; despair of; morn for; + compluor_V : V ; -- [DXXES] :: be rained upon; + compluriens_Adv : Adv ; -- [XXXEO] :: several/many times, a good number of times; more than once; + complurimus_A : A ; -- [XXXEO] :: great many (pl.), very many; + complus_A : A ; -- [XXXBO] :: many (pl.), several, a fair/good number; more than one (L+S); + complus_M_N : N ; -- [XXXCO] :: many/several people/men(pl.), a fair/good number of people; + complus_N_N : N ; -- [XXXCO] :: many/several things/items(pl.), a fair/good number of things; + complusculus_A : A ; -- [XXXCO] :: several (pl.), more than one; a good many (L+S); + complusicule_Adv : Adv ; -- [XXXFO] :: fairly/pretty often, not infrequently; + complut_V0 : V ; -- [XXXFO] :: rain-water runs/flows together/collects; it rains upon (L+S); + complutor_M_N : N ; -- [DEXFS] :: he who gives rain/who waters; + compluviatus_A : A ; -- [XAXEO] :: shaped/square like a compluvium/inward-sloping roof; of vines on such frame; + compluvium_N_N : N ; -- [XXXDO] :: inward-sloping central roof (guides rainwater to cistern); like frame for vines; + componderans_A : A ; -- [DSXFS] :: weighing; + compono_V2 : V2 ; -- [XXXAO] :: |construct, build; arrange, compile, compose, make up; organize, order; settle; + comportatio_F_N : N ; -- [XXXEO] :: transportation; bringing/carrying together (L+S); + comportionalis_A : A ; -- [DAXES] :: between boundaries of possessions/property (w/termmi/limits); + comporto_V2 : V2 ; -- [XXXCO] :: carry, transport, bring in, convey (to market); bring together; amass, collect; + compos_A : A ; -- [XXXBO] :: in possession/control/mastery of; sharing, guilty of, afflicted with; granted; + composcens_A : A ; -- [DXXES] :: demanding at same time; + composite_Adv : Adv ; -- [XXXCO] :: in orderly/skillful/well arranged/composed way; deliberately/regularly/properly; + compositicius_A : A ; -- [XGXFO] :: compound (words); + compositio_F_N : N ; -- [XXXBO] :: |agreement, pact; mixture (medicine); composition (music/prose); storing; + composititius_A : A ; -- [XGXFS] :: compound (words); + compositivus_A : A ; -- [DXXFS] :: suitable for uniting, compositive; + composito_Adv : Adv ; -- [XXXEO] :: by prearrangement; concertedly; + compositor_M_N : N ; -- [XDXEO] :: writer, composer; orderer, arranger, disposer, maker (L+S); + compositum_N_N : N ; -- [XXXEO] :: settled/peaceful situation (pl.), security, law and order; + compositura_F_N : N ; -- [XXXEO] :: assembling/fitting together; structure/assemblage; combination (words), syntax; + compositus_A : A ; -- [XXXBO] :: |prepared/ready/fit, suitable/trained/qualified; calm, peaceful; mature, sedate; + compossessor_M_N : N ; -- [DLXFS] :: joint-possessor; + compostio_F_N : N ; -- [EXXEE] :: arrangement, composition; + compostura_F_N : N ; -- [XXXEO] :: assembling/fitting together; structure/assemblage; combination (words), syntax; + compostus_A : A ; -- [XXXBO] :: |prepared/ready/fit, suitable/trained/qualified; calm, peaceful; mature, sedate; + compotatio_F_N : N ; -- [XXXES] :: drinking party; (translation of Greek); a drink/drinking together (L+S); + compotator_M_N : N ; -- [EXXFE] :: drinking companion; + compotens_A : A ; -- [XEXIO] :: that is able (to grant a prayer); having power with one (epithet of Diana L+S); + compotio_V2 : V2 ; -- [XXXDO] :: put in possession of, make partaker of; (PASS) attain; obtain, come into (L+S); + compoto_V : V ; -- [XXXFO] :: drink together; + compotor_M_N : N ; -- [XXXEO] :: drinking-companion/buddy; + compotrix_F_N : N ; -- [XXXEO] :: drinking-companion (female); (bar girl?); + compraecido_V2 : V2 ; -- [XXXFO] :: cut each other off; cut off at same time (?) (L+S); + compraes_M_N : N ; -- [DLXEO] :: joint-surety; + compransor_M_N : N ; -- [XXXFO] :: table-companion; companion at a banquet; boon companion (L+S); + comprecatio_F_N : N ; -- [XEXEO] :: public supplication or prayers; common imploring of a deity (L+S); + comprecor_V : V ; -- [XEXCO] :: implore, invoke (gods); supplicate, pray that; pray for; pray to; + comprehendibilis_A : A ; -- [XXXEO] :: comprehensible, able to be grasped by senses/intellect; that can be seized; + comprehendo_V2 : V2 ; -- [XXXAO] :: |embrace; include/cover/deal with (in speech/law); express (by term/symbol); + comprehensibilis_A : A ; -- [XXXEO] :: comprehensible, able to be grasped by senses/intellect; that can be seized; + comprehensibilitas_F_N : N ; -- [GXXEK] :: comprehensibility; + comprehensio_F_N : N ; -- [XXXBO] :: |comprehensive argument; dilemma; region, zone; scope, range; grouping (words); + comprehensivus_A : A ; -- [DXXFS] :: comprehensive, conceivable; + comprehenso_V2 : V2 ; -- [XXXFO] :: seize in an embrace; embrace, hug; + comprendo_V2 : V2 ; -- [XXXAO] :: |embrace; include/cover/deal with (in speech/law); express (by term/symbol); + comprensio_F_N : N ; -- [XXXBO] :: |comprehensive argument; dilemma; region, zone; scope, range; grouping (words); + compresbyter_M_N : N ; -- [DEXFS] :: fellow-presbyter; + compresse_Adv : Adv ; -- [XXXEO] :: briefly, succinctly, in a compressed manner; urgently, pressingly, insistently; + compressio_F_N : N ; -- [XXXCO] :: squeezing, compression; sexual embrace, copulation; abridging, compression; + compresso_V2 : V2 ; -- [DXXES] :: press; oppress; + compressor_M_N : N ; -- [XXXEO] :: ravisher, rapist; one who presses/compresses (L+S); + compressus_A : A ; -- [XBXCO] :: constricted/narrow/pressed together; bound/tight (bowels), constipated, binding; + compressus_M_N : N ; -- [XXXCO] :: compression, pressure; closing, pressing together; embracing/copulation; + comprimens_A : A ; -- [XXXEO] :: astringent; + comprimo_V2 : V2 ; -- [XXXAO] :: |suppress/control/stifle/frustrate/subdue/cow, put down; hold breath; silence; + comprobatio_F_N : N ; -- [XXXEO] :: approval; + comprobator_M_N : N ; -- [XXXFO] :: approver; + comprobo_V2 : V2 ; -- [XXXBO] :: approve, accept, sanction, ratify; prove, justify, confirm, attest, bear out; + compromissarius_A : A ; -- [XLXEO] :: accepted as arbitrator by both parties (judge w/iudex); of arbitration; + compromissio_F_N : N ; -- [FLXFM] :: compromise; submission to arbitration; + compromissum_N_N : N ; -- [XLXCO] :: joint undertaking guaranteed by deposit of money to abide by arbitration; + compromitto_V2 : V2 ; -- [XXXCO] :: enter into agreement to submit to arbitration/arbiter; agree to pay award; + comprovincialis_A : A ; -- [DXXFS] :: born in same province; + compte_Adv : Adv ; -- [XXXDO] :: neatly, elegantly, in a well arrange manner; with ornament (L+S); + comptionalis_A : A ; -- [XLXES] :: of a mock/sham sale/marriage; poor, worthless; [~ senex => one used in sham]; + comptor_M_N : N ; -- [DXXFS] :: one who adorns; (hairdresser?); + comptulus_A : A ; -- [XXXFO] :: elegantly dressed; luxuriously decked (L+S); + comptus_A : A ; -- [XXXCO] :: adorned/ornamented/decked (hair); embellished, elegant/neat/pointed (discourse); + comptus_M_N : N ; -- [XXXDO] :: union, conjunction; head-dress, hairband; adornment; well dressed hair (pl.); + compugnantia_F_N : N ; -- [DWXFS] :: fighting together/with; + compugno_V : V ; -- [XXXEO] :: fight together/with; struggle together (in argument); + compulsamentum_N_N : N ; -- [DXXFS] :: impelling; exhortation; + compulsatio_F_N : N ; -- [DXXES] :: contest, contention, (hostile) pressing together; + compulsio_F_N : N ; -- [XLXFO] :: compulsion; (legal); urging (L+S); dunning; constraint; + compulso_V2 : V2 ; -- [XXXFO] :: batter, pound; + compulsor_M_N : N ; -- [DXXCS] :: driver (of cattle); one who asks/forces a payment, exactor of money; (goon?); + compulsus_M_N : N ; -- [DXXFS] :: striking together (hostile); + compunctio_F_N : N ; -- [DEXES] :: puncture, prick; remorse, sting/prick of conscience; + compunctorius_A : A ; -- [DEXFS] :: admonitory; hortatory; + compunctus_A : A ; -- [EXXEB] :: aroused, pricked; inspired; feeling remorse, remorseful; + compungo_V2 : V2 ; -- [XXXCO] :: prick, puncture (thoroughly); goad, stimulate; mark with points, tattoo; + compurgatio_F_N : N ; -- [DXXFS] :: complete purification; + compurgo_V2 : V2 ; -- [XEXNS] :: purify completely/thoroughly; + computabilis_A : A ; -- [XXXNO] :: calculable, computable; + computatio_F_N : N ; -- [XSXCO] :: calculation, reckoning, computation; form/result of a particular calculation; + computator_M_N : N ; -- [XXXFO] :: calculator, reckoner, accountant; + computatrum_N_N : N ; -- [HTXEK] :: calculator; + computesco_V : V ; -- [XXXCO] :: decay, rot, putrefy; (completely); + computo_V2 : V2 ; -- [XSXBO] :: reckon/compute/calculate, sum/count (up); take/include in reckoning; work out; + computresco_V : V ; -- [XXXCO] :: decay, rot, putrefy; (completely); + computus_M_N : N ; -- [DSXES] :: computation, calculation; bank account (Cal); + comte_Adv : Adv ; -- [XXXES] :: neatly, elegantly, in a well arrange manner; with ornament (L+S); + comtus_A : A ; -- [XXXBS] :: |elegant (writing), embellished/elegant/neat/pointed; in order/polished/smooth; + comtus_M_N : N ; -- [XXXDS] :: union, conjunction; head-dress, hairband; adornment; well dressed hair (pl.); + comula_F_N : N ; -- [XXXFO] :: dainty/pretty hair; + comunis_A : A ; -- [XXXEO] :: |neutral, impartial (Mars); applicable on either side; same form for two cases; + conabilis_A : A ; -- [DXXFS] :: laborious, difficult; + conamen_N_N : N ; -- [XXXCO] :: effort, exertion; power to move; attempt, endeavor, enterprise; prop, support; + conamentum_N_N : N ; -- [XAXNO] :: implement used in gathering esparto grass; tool for uprooting plants (L+S); + conangusto_V2 : V2 ; -- [XXXCO] :: confine to narrow space, cramp; make narrower; narrow scope/application; + conarache_F_N : N ; -- [XSXFO] :: type of sundial; + conatio_F_N : N ; -- [XXXFO] :: attempt; endeavor, effort (L+S); + conatum_N_N : N ; -- [XXXCO] :: effort; attempt/design/attempted action (in pejorative sense); (usu. pl.) (L+S); + conatus_M_N : N ; -- [XXXBO] :: attempt, effort; exertion, struggle; impulse, tendency; endeavor, design; + conaudito_V2 : V2 ; -- [DXXES] :: confine to narrow space, cramp; make narrower; narrow scope/application; + conbenno_M_N : N ; -- [XXFFO] :: those riding together in a benna (kind of (wickerwork?) carriage) (Gallic); + conbibo_M_N : N ; -- [XXXFO] :: drinking companion/buddy; + conbibo_V2 : V2 ; -- [XXXBO] :: drink completely/together/up; hold back (tears); absorb, soak in; swallow up; + conbullio_V2 : V2 ; -- [XXXFO] :: boil fully/thoroughly; + conburo_V2 : V2 ; -- [XXXBO] :: burn up/away; (w/love); consume/destroy w/fire; reduce to ash, cremate; scald; + conbustio_F_N : N ; -- [DSXFS] :: burning, consuming; + conbustum_N_N : N ; -- [XBXEO] :: burn, injury from burning/scalding; + conbustura_F_N : N ; -- [DXXES] :: burning; + conca_F_N : N ; -- [XXXBO] :: mollusk/murex/oyster/scallop; pearl/mollusk-shell; Triton horn; female genitalia + concaco_V2 : V2 ; -- [XXXEO] :: soil, pollute, defile, make foul (with excrement/ordure/dung); + concado_V : V ; -- [XXXFO] :: fall together/at same time; + concaedes_F_N : N ; -- [XXXFO] :: barricade (of felled trees), abatis; (also pl.); + concalefacio_V2 : V2 ; -- [XXXDO] :: heat; make warm, warm thoroughly (L+S); + concalefactio_F_N : N ; -- [FXXEE] :: warning; + concalefio_V : V ; -- [XXXDO] :: be/become heated/made warm/warmed thoroughly (L+S); (concalefacio PASS); + concaleo_V : V ; -- [XXXFO] :: be/become warm; (thoroughly); + concalesco_V : V ; -- [XXXCO] :: become/grow warm; warm up (with enthusiasm); glow with love (L+S); + concalfacio_V2 : V2 ; -- [XXXEO] :: heat; make warm, warm thoroughly (L+S); + concalfactorius_A : A ; -- [XBXNO] :: causing warmth, thermogenic; (medical); warming, suitable for warming (L+S); + concalfio_V : V ; -- [XXXEO] :: be/become heated/made warm/warmed thoroughly (L+S); (concalfacio PASS); + concallesco_V : V ; -- [XXXEO] :: grow/become hard/hardened/callous/insensitive/shrewd/insensible/dull/obtuse; + concalo_V2 : V2 ; -- [XXXFO] :: summon; + concamaratio_F_N : N ; -- [XTXDO] :: vaulting; vaulted roof; vault; + concamaratus_A : A ; -- [XXXDQ] :: vaulted, arched; + concamaro_V2 : V2 ; -- [XTXCO] :: cover with an arch/vault, vault over; + concameratio_F_N : N ; -- [XTXDO] :: vaulting; vaulted roof; + concameratus_A : A ; -- [XXXDQ] :: vaulted, arched; + concamero_V2 : V2 ; -- [XTXCO] :: cover with an arch/vault, vault over; + concandefacio_V2 : V2 ; -- [XXXFO] :: heat thoroughly; + concandefio_V : V ; -- [XXXFO] :: be/become heated thoroughly; (concandefacio PASS); + concandesco_V : V ; -- [XXXFO] :: glow, become inflamed; + concaptivus_M_N : N ; -- [DXXES] :: fellow-captive/prisoner; + concarnatio_F_N : N ; -- [DEXFO] :: incarnation, uniting with flesh; + concarno_V2 : V2 ; -- [DEXES] :: incarnate, unite/clothe with flesh; + concastigo_V2 : V2 ; -- [XXXEO] :: chastise severely/thoroughly, punish; censure, dress down; + concatenatio_F_N : N ; -- [DXXDS] :: connecting/joining; concatenation, sequence; fettering, binding; + concateno_V2 : V2 ; -- [DXXES] :: link/bind together; connect; + concatervatus_A : A ; -- [DXXES] :: heaped/crowed together; + concatus_A : A ; -- [XXXEO] :: fouled w/excrement; [catillus ~ => mince/hash => SOS/chipped beef on toast]; + concavatus_A : A ; -- [XXXFO] :: hollowed out; + concavitas_F_N : N ; -- [DXXFS] :: cavity, hollow; + concavo_V2 : V2 ; -- [XXXFO] :: hollow out; round, curve; give hollow/curved form; hollows (pl.), a glen (Ecc); + concavum_N_N : N ; -- [XXXEO] :: void, gap, hollow space; + concavus_A : A ; -- [XXXCO] :: hollow/hollowed out; concave/curving inward; arched; bent/curved; sunken (eyes); + concedo_V2 : V2 ; -- [XXXAO] :: relinquish/give up/concede; depart; pardon; submit, allow/grant/permit/condone; + concelebratio_F_N : N ; -- [EXXDE] :: celebration; concelebration; + concelebro_V2 : V2 ; -- [XXXBO] :: celebrate, make known; go often/in large numbers/together, frequent, haunt; + concellita_M_N : N ; -- [DXXFO] :: cell-mate, one who dwells with one in a cell; + concelo_V2 : V2 ; -- [XXXFO] :: keep secret, conceal altogether; conceal carefully (L+S); + concenatio_F_N : N ; -- [XXXEO] :: dinner party; (Cicero from Greek); supping together, table companionship (L+S); + concentio_F_N : N ; -- [XDXEO] :: unison singing/utterance; harmony (L+S); + concentor_M_N : N ; -- [DDXFS] :: one who sings (with others in a chorus); + concentricus_A : A ; -- [GXXEK] :: concentric; + concenturio_V2 : V2 ; -- [XXXEO] :: assemble by centuries, gather by hundreds; marshal, bring together, prepare; + concentus_M_N : N ; -- [XXXBO] :: singing (esp. birds)/playing/shouting together; harmony; concord; tune; choir; + conceptaculum_N_N : N ; -- [XXXCO] :: containing vessel/place/space/receptacle; reservoir; place emotion is conceived; + conceptio_F_N : N ; -- [XXXCO] :: conception, action/fact of conceiving, pregnancy; idea/notion/formula/system; + conceptionalis_A : A ; -- [DXXES] :: pertaining to conception; + conceptivus_A : A ; -- [XXXEO] :: proclaimed/directed/movable (of holidays not held on same day every year); + concepto_V2 : V2 ; -- [DBXES] :: conceive, become pregnant; conceive in mind; + conceptum_N_N : N ; -- [XXXCO] :: fetus, that which is conceived; concept/ideas; measurement of volume/capacity; + conceptus_A : A ; -- [XXXCO] :: conceived, imagined; understood, adopted; [verba ~ => solemn/formal utterance]; + conceptus_M_N : N ; -- [XXXCO] :: conception; embryo/fetus; catching fire; storing water; cistern/basin/reservoir; + concerno_V2 : V2 ; -- [DXXFS] :: mix/mingle together (as in sieve in order to separate by sifting); sift/examine; + concero_V : V ; -- [FXXEN] :: connect, join, twine; join in conflict; + concerpo_V2 : V2 ; -- [XXXCO] :: tear/pull in/to pieces; pluck off; tear up, rend; censure, abuse, revile; + concerra_M_N : N ; -- [XXXFS] :: playfellow; crony; + concerro_M_N : N ; -- [BXXES] :: fellow idler; boon/jolly companion; (one who contributes to a common feast); + concertatio_F_N : N ; -- [XXXCO] :: strife, conflict (esp. of words); wrangling, dispute, controversy; + concertativus_A : A ; -- [XLXFO] :: counter (charge/accusation); [accusatio ~ => charge brought against accuser]; + concertator_M_N : N ; -- [XXXFO] :: rival; one who vies/contends with another (L+S); + concertatorius_A : A ; -- [XXXFO] :: controversial, concerned with disputes; of controversy/disputation (L+S); + concerto_V : V ; -- [XXXCO] :: fight, engage in a contest, vie with; dispute, debate (zealously); argue over; + concertor_V : V ; -- [DXXES] :: fight, engage in a contest, vie with, dispute, debate (zealously); argue over; + concessatio_F_N : N ; -- [XXXFO] :: action of stopping/resting (on a journey); stopping, delaying (L+S); + concessio_F_N : N ; -- [XXXCO] :: permission; grant/concession; admission, plea of excuse/for pardon; yielding; + concessivus_A : A ; -- [DXXES] :: pertaining to concession, concessive; (tending to concession); + concesso_V : V ; -- [XXXEO] :: cease/desist temporarily, leave off; rest; + concessus_A : A ; -- [XXXCO] :: permitted/allowable/allowed/granted; lawful; relinquished; permitting/conceding; + concessus_M_N : N ; -- [XXXCO] :: concession; agreement; permission, leave; movement?; + concha_F_N : N ; -- [EEXEE] :: |holy-water font; + conchatus_A : A ; -- [XXXNO] :: shell-formed, shell-like, shaped like a sea-shell; + concheus_A : A ; -- [XXXFO] :: produced by an oyster; of/pertaining to a mollusk; [~ baca => pearl]; + conchicla_F_N : N ; -- [XXXES] :: boiled bean; (boiled with shell/pod?); + conchiclatus_A : A ; -- [XXXFS] :: prepared with beans; + conchis_F_N : N ; -- [XAXEO] :: leguminous vegetable, kind of bean; (boiled with shell/pod); + conchita_M_N : N ; -- [XAXFO] :: one who harvests/gathers mollusks/murex/oysters; + conchortalis_A : A ; -- [XWXIO] :: of/belonging to same cohort (battalion); + conchuela_F_N : N ; -- [EEXEE] :: holy-water font; small shell; + conchula_F_N : N ; -- [XAXEO] :: small mollusk/mussel/oyster; + conchyliarius_M_N : N ; -- [XXXDI] :: purple dyer; (one who dyes with murex/purple-fish dye); + conchyliatus_A : A ; -- [XXXDO] :: purple-dyed (dye from murex/mussel); of a purple color; clothed in purple; + conchyliatus_M_N : N ; -- [XXXEO] :: person dressed in clothes of a purple color; (nobility); + conchylilegulus_M_N : N ; -- [DAXFS] :: collector of mussels; he who goes in quest for murex/purple-fish (Leverett); + conchylium_N_N : N ; -- [XXXFS] :: |shellfish; oyster; purple color; + conchyta_M_N : N ; -- [XAXFI] :: one who harvests/gathers mollusks/murex/oysters; + concido_V : V ; -- [XXXAO] :: |perish, be slain/sacrificed; lose one's case, fail, give out/lose heart, decay; + concido_V2 : V2 ; -- [XXXBO] :: cut/chop up/down/to pieces; crop; ruin, kill, destroy; divide minutely; beat; + conciens_A : A ; -- [XXXFO] :: pregnant, teeming, full; + concieo_V2 : V2 ; -- [XXXBO] :: move, set in violent motion, stir up; muster; rouse, excite, incite, provoke; + conciliabulum_N_N : N ; -- [XXXCO] :: meeting/assembly/public place; district administrative center; meeting/assembly; + conciliaris_A : A ; -- [DEXFE] :: concillary, of council; + conciliarismus_M_N : N ; -- [FEXFE] :: theory of conciliarism; (theory/system of governing by Church councils); + conciliatio_F_N : N ; -- [XXXCO] :: connection/union; winning over/favor; attraction; acceptance; desire; procuring; + conciliator_M_N : N ; -- [XXXCO] :: mediator; intermediary, procurer; who provides/prepares/causes; promoter/agent; + conciliatricula_F_N : N ; -- [XXXFO] :: one that commends; recommender; that which conciliates/unites (L+S); + conciliatrix_F_N : N ; -- [XXXCO] :: go-between (marriage/liaison), match-maker; who commends/endears/procures; bawd; + conciliatura_F_N : N ; -- [XXXFO] :: practice of arranging liaisons; trade of procurer, pimping, pandering (L+S); + conciliatus_A : A ; -- [XXXCS] :: favorably inclined/disposed; devoted; favorable to, amenable; friendly; beloved; + conciliatus_M_N : N ; -- [XXXEO] :: conjunction, joining, union (of atoms), connection (of bodies); + conciliciatus_A : A ; -- [DEXFS] :: clothed in a garment of hair/hair-shirt; (of a penitent); + concilio_V2 : V2 ; -- [XXXAO] :: ||bring a woman to man as wife, match; procure as a mistress; obtain improperly; + concilium_N_N : N ; -- [XXXCS] :: ||sexual union/coition; close conjunction; bond of union; plant iasione blossom; + concinens_A : A ; -- [XXXEO] :: harmonious, fitting; harmonious (L+S); + concinentia_F_N : N ; -- [DDXDS] :: musical harmony; concord; symmetry; + concineratus_A : A ; -- [DXXFS] :: sprinkled with ashes; + concingo_V2 : V2 ; -- [DXXFS] :: gird; surround completely; + concinnaticius_A : A ; -- [XXXFO] :: exquisite, elegant; skillfully prepared (L+S); + concinnatio_F_N : N ; -- [DXXDS] :: adjusting, preparing (economics); making, composing (letters/verses); + concinnator_M_N : N ; -- [XXXEO] :: one who dresses up something; arranger (L+S); (hair) dresser; maker/inventor; + concinnatus_A : A ; -- [XXXFO] :: elaborated, dressed up; + concinne_Adv : Adv ; -- [XXXCO] :: neatly, prettily, daintily, beautifully; + concinnis_A : A ; -- [XXXFO] :: ready for use, trimmed; + concinnitas_F_N : N ; -- [XXXCO] :: neatness/elegance; excessive ingenuity/refinement; grace/charm (of appearance); + concinniter_Adv : Adv ; -- [XXXFO] :: cleverly, ingeniously; + concinnitudo_F_N : N ; -- [XXXFO] :: neatness/elegance/beauty (of style); + concinno_V2 : V2 ; -- [XXXBO] :: |make up, construct, concoct, put together; bring about, cause; render, make; + concinnus_A : A ; -- [XXXCO] :: set in order, neatly arranged/made; neat/elegant/clever (style); pretty/pleasing + concino_V2 : V2 ; -- [XXXBO] :: sing/chant/shout/sound together; celebrate in song; say same thing, agree; + concio_F_N : N ; -- [EEXEE] :: |sermon; + concio_V2 : V2 ; -- [XXXCO] :: move, set in violent motion, stir up; muster; rouse, excite, incite, provoke; + concionabundus_A : A ; -- [ELXEO] :: delivering public speech/harangue; proposing something at public assembly (L+S); + concionalis_A : A ; -- [EXXDO] :: of/proper to public assembly/meeting; (disparaging) devoted to meetings; + concionarius_A : A ; -- [EXXEO] :: of/proper to public assembly/meeting; (disparaging) devoted to meetings; + concionator_M_N : N ; -- [EXXFE] :: preacher; demagogue/agitator; haranguer; one who addresses public meetings; + concionatorius_A : A ; -- [EEXEE] :: of sermon; of/proper to public assembly/meeting/gathering of people; + concionor_V : V ; -- [ELXCO] :: address assembly, deliver public speech; preach/harangue; attend public meeting; + concipilo_V2 : V2 ; -- [XXXEO] :: seize, take, catch; lay violent hands on; + concipio_V2 : V2 ; -- [XXXAO] :: |form, devise; understand, imagine; conceive, be mother of; utter (oath/prayer); + concise_Adv : Adv ; -- [XXXEO] :: in detail; concisely, briefly (L+S); + concisio_F_N : N ; -- [XGXFO] :: dividing up (into clauses); cutting to pieces/destruction/mutilation (L+S); + concisor_M_N : N ; -- [DAXFS] :: one who cuts down/fells; + concisorius_A : A ; -- [DAXES] :: suitable for cutting/felling; + concisura_F_N : N ; -- [XBXEO] :: cut, incision; distribution, dividing up, split; hollow/chink/cleft (L+S); + concisus_A : A ; -- [XXXCO] :: cut up/off; broken, abrupt; short, brief, concise; minute/detailed, very small; + concitamentum_N_N : N ; -- [XXXFO] :: incentive, thing which rouses/agitates the mind; + concitate_Adv : Adv ; -- [XXXCO] :: rapidly/quickly/hurriedly; vehemently/animatedly/heatedly (speaking); ardently; + concitatio_F_N : N ; -- [XXXCO] :: |rapid/quick/violent motion; impetuosity/animatedness (speaking); disturbance; + concitator_M_N : N ; -- [XXXCO] :: instigator, provoker, inciter, agitator, mover; + concitatrix_A : A ; -- [XXXEO] :: which excites/stimulates; (sexually); exciting, stimulating; + concitatrix_F_N : N ; -- [XXXEO] :: that which excites/stimulates/stirs; (sexually); + concitatus_A : A ; -- [XXXCO] :: fast/rapid; roused/vehement/violent (emotions); passionate, energetic; excited; + concitatus_M_N : N ; -- [DXXFS] :: impulse; + concito_Adv : Adv ; -- [XXXFO] :: rapidly; + concito_V2 : V2 ; -- [XXXAO] :: |rush; urge/rouse/agitate; enrage/inflame; spur/impel; summon/assemble; cause; + concitor_M_N : N ; -- [XXXDO] :: instigator, provoker; inciter, agitator; one who stirs up; + concitus_A : A ; -- [XXXEO] :: moving rapidly; headlong; agitated, disturbed; inflamed, roused; impelled; + concitus_M_N : N ; -- [DXXFS] :: inciting, spurring on; impetuosity; haste; + conciucula_F_N : N ; -- [EEXEE] :: short sermon; brief address; + concivis_M_N : N ; -- [DXXES] :: fellow-citizen; + conclamans_A : A ; -- [DXXFS] :: noisy; + conclamatio_F_N : N ; -- [XXXDO] :: shouting/crying together (usu. grief); acclamation; loud shouting, shout (L+S); + conclamatus_A : A ; -- [DXXCS] :: published abroad by crying out; known, celebrated; lamentable, unfortunate; + conclamito_V : V ; -- [XXXFO] :: keep shouting loudly; cry; call/cry out loudly (L+S); + conclamo_V : V ; -- [XXXBO] :: cry/shout aloud/out; make resound w/shouts; give a signal; summon; bewail/mourn; + conclave_N_N : N ; -- [XXXCO] :: room, chamber; lockable enclosed space; coop/cage; public lavatory; dining hall; + conclavista_F_N : N ; -- [EEXEE] :: cardinal in conclave; + conclavo_V2 : V2 ; -- [DXXFS] :: nail together; + conclericus_M_N : N ; -- [DEXFS] :: fellow-clergyman/cleric; + concludenter_Adv : Adv ; -- [DGXES] :: consequently, by/in consequence; + concludo_V2 : V2 ; -- [XGXAO] :: |conclude/finish; define; construct/compose (sentence); infer, deduce, imply; + concluse_Adv : Adv ; -- [XGXFO] :: in a rounded manner; in form of a period/complete sentence; harmonious (L+S) + conclusio_F_N : N ; -- [XWXBO] :: |state of siege; enclosing (area); fastening in position; conclusion, finish; + conclusiuncula_F_N : N ; -- [XGXFO] :: quibbling syllogism/argument; trifling/captious conclusion (L+S); sophism; + conclusive_Adv : Adv ; -- [DGXFS] :: conclusively; in form of a conclusion; + conclusum_N_N : N ; -- [XGXEO] :: confined space; conclusion in a syllogism (L+S); + conclusura_F_N : N ; -- [XTXFO] :: joint/fastening/joining (of an arch); + conclusus_A : A ; -- [XXXCO] :: restricted, closed, confined; + conclusus_M_N : N ; -- [DXXFS] :: shutting up; confining; + concoctio_F_N : N ; -- [XBXEO] :: digestion, process of digestion; + concohortalis_A : A ; -- [XWXIO] :: of/belonging to same cohort (battalion); + concolona_F_N : N ; -- [DXXFS] :: fellow-citizen/inhabitant (female); she who inhabits the same town/house; + concolor_A : A ; -- [XXXCO] :: of the same color/faction, matching; of uniform color throughout; agreeing with; + concolorans_A : A ; -- [DXXFS] :: of the same color/faction, matching; like, similar; agreeing with; + concolorus_A : A ; -- [DXXDS] :: of the same color/faction, matching; like, similar; agreeing with; + concomitantia_F_N : N ; -- [EXXFE] :: association; + concomitatus_A : A ; -- [XXXFO] :: accompanied, escorted; + concomitor_V : V ; -- [DXXES] :: attend, accompany, escort; + concopulo_V2 : V2 ; -- [XXXFS] :: join, unite; + concoquo_V2 : V2 ; -- [XXXBO] :: |digest/promote digestion; put up with/tolerate/stomach; ponder; devise/concoct; + concordabilis_A : A ; -- [DXXFS] :: harmonizing, easily according; + concordantia_F_N : N ; -- [EXXEE] :: agreement; + concordatio_F_N : N ; -- [DXXES] :: concord, unanimity; reconciliation (Ecc); agreement; + concordatum_N_N : N ; -- [EXXEE] :: concordat, agreement (between church and civil authority); things (pl.) agreed; + concorde_Adv : Adv ; -- [XXXIO] :: harmoniously; in harmony; + concordia_F_N : N ; -- [XXXBO] :: concurrence/mutual agreement/harmony/peace; rapport/amity/concord/union; friend; + concordialis_A : A ; -- [DXXFS] :: of/pertaining to concord/union; + concordis_A : A ; -- [DXXCO] :: agreeing, concurring; like-minded; united, joint, shared; peaceful, harmonious; + concorditas_F_N : N ; -- [DXXFS] :: concurrence, mutual agreement, harmony; rapport, amity, concord; union; + concorditer_Adv : Adv ; -- [XXXCO] :: harmoniously, amicably, in a concordant manner; + concordo_V : V ; -- [XXXCO] :: harmonize; be in harmony/agreement/on good terms/friendly; agree; go by pattern; + concorporalis_A : A ; -- [DXXFS] :: of/belonging to the same body/company; + concorporalis_M_N : N ; -- [DXXFS] :: comrade, one belonging to the same body/company; + concorporatio_F_N : N ; -- [DEXES] :: union, harmony; + concorporatus_A : A ; -- [EEXFE] :: incorporated, united in one body; + concorporeus_A : A ; -- [EEXFE] :: of one body with; + concorporificatus_A : A ; -- [DXXFS] :: incorporated, united in one body; + concorporo_V2 : V2 ; -- [XXXEO] :: unite into a single body, make one; incorporate (L+S); + concors_A : A ; -- [XXXBO] :: agreeing, concurring; like-minded; united, joint, shared; peaceful, harmonious; + concrasso_V2 : V2 ; -- [DSXFS] :: thicken, make thick; + concreatus_A : A ; -- [DEXES] :: created together; + concrebresco_V : V ; -- [XXXFO] :: become frequent; (thoroughly, very); increase, gather strength (L+S); + concredo_V2 : V2 ; -- [XXXCO] :: entrust for safe keeping; confide (secret or similar); consign/commit (L+S); + concreduo_V2 : V2 ; -- [BXXDS] :: entrust for safe keeping; confide (secret or similar); consign/commit (L+S); + concrematio_F_N : N ; -- [DXXFS] :: burning up; conflagration, great fire; + concrementum_N_N : N ; -- [XXXFO] :: concretion; mixture (L+S); + concremo_V2 : V2 ; -- [XXXDO] :: consume by fire; burn up/down entirely/completely/thoroughly; burn together; + concreo_V2 : V2 ; -- [EXXFE] :: create together; + concrepatio_F_N : N ; -- [DXXFS] :: noise; rattling/clatter; (of castanets); + concrepatio_V : V ; -- [DXXFS] :: rattle/sound much/thoroughly/loudly; + concrepo_V : V ; -- [XXXCO] :: make noise (door), grate/creak; sound, crash/clash, rattle; snap (fingers); + concrescentia_F_N : N ; -- [XSXFO] :: coagulation, solidification; condensing (L+S); + concresco_V : V ; -- [XSXBO] :: thicken; condense/collect; set/curdle/congeal; clot/coagulate; solidify/freeze; + concretio_F_N : N ; -- [XSXEO] :: formation into solid matter, compacting/condensing; materiality; matter/solid; + concretum_N_N : N ; -- [XSXFS] :: concrete; firm/solid matter; + concretus_A : A ; -- [XSXBO] :: |condensed; curdled/clotted; cohering/closed up; constipated; ingrained (sin); + concretus_M_N : N ; -- [XSXNO] :: coagulation; solidifying; condensation (L+S); + concriminor_V : V ; -- [XLXFO] :: bring a charge; make an accusation; make bitter accusations, complain (L+S); + concrispo_V : V ; -- [XXXEO] :: curl (hair); move in curls, curl/swirl (vapors/fog); brandish (weapon) (L+S); + concrispus_A : A ; -- [DXXFS] :: curled; + concrucifigo_V2 : V2 ; -- [EEXEW] :: crucify together; + concrusio_V2 : V2 ; -- [XXXFO] :: cause violent pain; torment, rack, torture severely; + concrustatus_A : A ; -- [DXXES] :: incrusted, entirely covered with a crust; + conctabundus_A : A ; -- [XXXDS] :: lingering, loitering; slow to action, delaying, hesitating, hesitant; tardy; + conctanter_Adv : Adv ; -- [DXXCS] :: hesitantly, slowly, with delay/hesitation; tardily; stubbornly; + conctio_F_N : N ; -- [XLXIO] :: meeting/assembly; audience/speech; public opinion; parade addressed by general; + concubatio_F_N : N ; -- [DXXFS] :: lying/reclining upon; + concubeo_V2 : V2 ; -- [EXXDW] :: lie with (sexual and not); have sexual intercourse with; + concubina_F_N : N ; -- [XXXCO] :: concubine; kept mistress, one living in concubinage; (milder than paelex L+S); + concubinalis_A : A ; -- [DXXFS] :: lascivious, lewd, wanton; voluptuous; + concubinarius_A : A ; -- [EXXFE] :: of/related to concubines; + concubinarius_M_N : N ; -- [EXXFE] :: keeper of concubines; + concubinatus_M_N : N ; -- [XXXDO] :: concubinage; cohabiting when not married; illicit intercourse; + concubinus_M_N : N ; -- [XXXCO] :: catamite; male paramour; kept man, one who lives in concubinage; + concubitalis_A : A ; -- [XXXFO] :: relating to sexual intercourse; + concubitio_F_N : N ; -- [XXXFO] :: sexual intercourse, coitus; + concubitor_M_N : N ; -- [XXXFO] :: fellow sleeper; sleeping partner; bed fellow/mate; cohabitor; concubine; + concubitus_M_N : N ; -- [XXXCO] :: lying together (sleeping/dining/sex); sexual intercourse, coitus; sexual act; + concubium_N_N : N ; -- [XXXCO] :: early night/first sleep/bedtime; sexual intercourse; + concubius_A : A ; -- [XXXCO] :: of lying in sleep [nox ~ => the early night/first sleep/bedtime]; + concubo_V2 : V2 ; -- [XXXFO] :: lie with (sexual and not); have sexual intercourse with; + conculcatio_F_N : N ; -- [DXXES] :: treading under foot, stamping on; + conculco_V2 : V2 ; -- [XXXCO] :: tread/trample upon/underfoot/down; crush, oppress; despise, disregard; + conculium_N_N : N ; -- [XXXCO] :: mollusk, murex/purple-fish; purple, purple dye/garments (pl.); plant iasine; + concumbo_V : V ; -- [XXXCO] :: lie with/together (w/DAT); (for sexual intercourse); cohabit; + concumulatus_A : A ; -- [DXXFS] :: heaped up; accumulated; + concupiens_A : A ; -- [DXXES] :: very desirous, warmly desiring; + concupio_V2 : V2 ; -- [XXXFO] :: desire/wish greatly/eagerly/ardently; covet, long for, be desirous of; + concupiscentia_F_N : N ; -- [DXXDS] :: longing, eager desire for; concupiscence; desire for carnal/worldly things; + concupiscentialis_A : A ; -- [DXXFS] :: full of desire; (lustful); + concupiscentivus_A : A ; -- [DXXFS] :: passionately desiring; + concupiscibilis_A : A ; -- [DEXFS] :: worthy to be longed for, very desirable; valuable (Ecc); + concupiscitivus_A : A ; -- [DXXFS] :: passionately desiring; + concupisco_V2 : V2 ; -- [XXXCO] :: desire eagerly/ardently; covet, long for; aim at; conceive a strong desire for; + concupitor_M_N : N ; -- [DXXFS] :: coveter, one who longs eagerly for/covets something; + concurator_M_N : N ; -- [XLXFO] :: joint guardian; co-trustee; + concurialis_A : A ; -- [XLXIO] :: of/belonging to same curia/division of the Roman people; + concurialis_M_N : N ; -- [XLXIO] :: one belonging to the same curia/division of the Roman people; + concuro_V2 : V2 ; -- [XXXFO] :: attend to thoroughly/completely; care for suitably (L+S); + concurrentia_F_N : N ; -- [EXXEE] :: concurrence; mutual participation; competition (Cal); + concurro_V : V ; -- [XWXAO] :: |charge, fight/engage in battle; come running up/in large numbers; rally; + concursatio_F_N : N ; -- [XWXCO] :: running/pushing together; journeying to and fro; skirmish; disorderly meeting; + concursator_A : A ; -- [XWXFO] :: skirmishing; that runs hither and thither/to and fro/about; + concursator_M_N : N ; -- [XWXCS] :: skirmisher; one who runs hither and thither/to and fro/about; + concursatorius_A : A ; -- [DWXFS] :: pertaining to skirmishing; [~ pugna => skirmish]; + concursio_F_N : N ; -- [XXXCO] :: running together, conjunction, meeting; coincidence; juxtaposition; repetition; + concurso_V : V ; -- [XXXCO] :: rush/run to and fro/about/together/to visit; clash; visit in turn; run through; + concursus_M_N : N ; -- [XXXBO] :: |encounter; combination, coincidence; conjunction, juxtaposition; joint right; + concurvo_V2 : V2 ; -- [XXXFO] :: bend down; bend, curve (L+S); + concussibilis_A : A ; -- [DXXFS] :: that can be shaken; + concussio_F_N : N ; -- [XXXCO] :: shaking/disturbance; earthquake; extortion by violence/intimidation, shake down; + concussor_M_N : N ; -- [DLXFS] :: extortionist; one who extorts money by threats; + concussura_F_N : N ; -- [DLXFS] :: extortion, extorting money by threats; + concussus_A : A ; -- [DXXFS] :: stirred/shaken up; restless; + concussus_M_N : N ; -- [XXXEO] :: action of striking together; shock; shaking (L+S); concussion; + concustodio_V2 : V2 ; -- [XXXDO] :: watch over/carefully, guard, protect; + concutio_V2 : V2 ; -- [XXXBO] :: |strike together/to damage; weaken/shake/shatter; harass/intimidate; rouse; + condalium_N_N : N ; -- [XXXDO] :: ring (worn on the finger); + condama_F_N : N ; -- [FLXFY] :: farmer's land; land held by colonus; + condator_M_N : N ; -- [DXXFS] :: joint contributor/giver/donor; + condecens_A : A ; -- [DXXFS] :: becoming, seemly; + condeceo_V : V ; -- [XXXEO] :: be fitting/proper for, suit; + condecerno_V2 : V2 ; -- [DXXFS] :: decide, judge, determine together; jointly settle/resolve; + condecet_V0 : V ; -- [XXXCO] :: it is fitting/becoming/seemly/meet; (w/ACC + INF); + condecoro_V2 : V2 ; -- [XXXCO] :: adorn, embellish with ornament/excessively/carefully; decorate, grace; + condecuralis_M_N : N ; -- [DWXFS] :: he who has been a decurion with one; fellow decurion; + condecurio_M_N : N ; -- [XWXIO] :: fellow decurion; he who is/has been a decurion with one; + condelecto_V : V ; -- [DEXFS] :: delight in; (PASSIVE) be delighted with something; + condeliquesco_V : V ; -- [XXXFO] :: melt wholly/completely (away); dissolve (completely), dissipate; + condemnabilis_A : A ; -- [DXXFS] :: worthy of condemnation; + condemnatio_F_N : N ; -- [XLXDO] :: condemnation; verdict; damages awarded in a civil case; sentence (Ecc); + condemnator_M_N : N ; -- [XLXFO] :: accuser, one who procures a condemnation; condemner, one who passes sentence; + condemnatorius_A : A ; -- [ELXFE] :: condemnatory, expressing condemnation; + condemno_V2 : V2 ; -- [XLXAO] :: condemn, doom, convict; find guilty; (pass) sentence; blame, censure, impugn; + condensatio_F_N : N ; -- [DXXFS] :: condensation; condensing, compressing; + condensatrum_N_N : N ; -- [HTXEK] :: capacitor; + condensatus_A : A ; -- [GXXEK] :: concentrated (in kitchen); + condenseo_V2 : V2 ; -- [XXXFO] :: compress; pack/press closely together; condense/make firm; (PASS) grow thickly; + condenso_V2 : V2 ; -- [XXXCO] :: compress; pack/press closely together; condense/make firm; (PASS) grow thickly; + condensum_N_N : N ; -- [EXXEE] :: thicket; woods (pl.); leafy boughs; + condensus_A : A ; -- [XXXCO] :: dense, thick; wedged together, closely/tightly packed; close; coherent; + condepso_V2 : V2 ; -- [XXXFO] :: knead together; + condescendo_V : V ; -- [DXXES] :: condescend, stoop; let oneself down; + condescensio_F_N : N ; -- [DXXFS] :: condescension; + condesertor_M_N : N ; -- [DWXFS] :: fellow-deserter; + condicio_F_N : N ; -- [XXXCO] :: |marriage (contract); spouse, bride; relation of lover/mistress; paramour; + condicionabilis_A : A ; -- [DXXFS] :: conditional; + condicionalis_A : A ; -- [XXXEO] :: conditional, contingent upon certain conditions, with a condition attached; + condicionaliter_Adv : Adv ; -- [XXXEO] :: conditionally, in a conditional manner; + condico_V2 : V2 ; -- [XLXCO] :: |claim redress/restitution; make actions for damages; fix/appoint (date/price); + condicticius_A : A ; -- [XLXEO] :: relating to reclaiming property/restitution/repossession; + condictio_F_N : N ; -- [DEXES] :: |proclamation of a religious festival; + condictitius_A : A ; -- [XLXES] :: (legal action) for the purpose of reclaiming property/restitution/repossession; + condictor_M_N : N ; -- [XXXFO] :: fixer, arranger, one who fixes/arranges; + condictum_N_N : N ; -- [XXXEO] :: agreement; appointment; + condigne_Adv : Adv ; -- [XXXDO] :: in an appropriate manner, fittingly, worthily; very worthily (L+S); + condignus_A : A ; -- [XXXCO] :: appropriate, worthy, befitting; wholly deserving, very worthy (L+S); + condimentarius_A : A ; -- [XXXNO] :: used for seasoning; of/pertaining to spices/seasoning; + condimentarius_M_N : N ; -- [DXXFS] :: one who prepares/sells spices/seasoning; + condimentum_N_N : N ; -- [XXXCO] :: spice, seasoning; that which renders acceptable; condiment; tempering quality; + condio_V2 : V2 ; -- [XXXCO] :: preserve/pickle; embalm/mummify; spice; season/flavor/render pleasant/give zest; + condiscipula_F_N : N ; -- [XGXEO] :: fellow pupil (female); schoolmate; + condiscipulatus_M_N : N ; -- [XGXEO] :: time/fact of being a fellow pupil; companionship in school (L+S); + condiscipulus_M_N : N ; -- [XGXCO] :: fellow pupil/student (male); schoolfellow, schoolmate; fellow disciple (Ecc); + condisco_V2 : V2 ; -- [XXXCO] :: learn thoroughly/well; learn about; learn in company with (another) (w/DAT); + conditaneus_A : A ; -- [XXXFO] :: suitable for pickling/preserving; pickled/preserved (L+S); + conditarius_M_N : N ; -- [XXXIO] :: dealer in preserved foods; + conditicius_A : A ; -- [DXXFS] :: preserved; laid up; + conditio_F_N : N ; -- [DXXES] :: |||creating, making; thing made, work; creation (Vulgate); + conditionabilis_A : A ; -- [DXXFS] :: conditional; + conditionalis_A : A ; -- [XXXES] :: conditional, contingent upon certain conditions, with a condition attached; + conditionaliter_Adv : Adv ; -- [XXXES] :: conditionally, in a conditional manner; + conditionate_Adv : Adv ; -- [FEXFE] :: conditionally; + conditionatus_A : A ; -- [EXXEE] :: conditional; conditioned; + conditione_Adv : Adv ; -- [FXXEE] :: conditionally; + condititius_A : A ; -- [DXXFS] :: preserved; laid up; + conditivum_N_N : N ; -- [XXXEO] :: tomb, sepulcher; + conditivus_A : A ; -- [XXXEO] :: suitable for preserving/storing; preserved/stored/laid up (food); + conditor_M_N : N ; -- [XXXFO] :: seasoner, one who seasons; one who prepares a thing in a savory manner (L+S); + conditorium_N_N : N ; -- [XXXDO] :: tomb/sepulcher; coffin (L+S); place for ashes; repository, place to store; + conditorius_A : A ; -- [GXXEK] :: of savings; + conditrix_F_N : N ; -- [XXXEO] :: foundress, female founder; she who lays to rest (L+S late); + conditum_N_N : N ; -- [XXXFO] :: secret, something hidden/concealed; + conditura_F_N : N ; -- [XXXCS] :: |preparing; preserving (fruits); preserving material; condiment, spice; jam; + conditus_A : A ; -- [XXXCO] :: preserved, kept in store; hidden, concealed, secret; sunken (eyes); + conditus_M_N : N ; -- [XLXFO] :: founding (of a city); establishment; preparing (L+S); preserving fruit; hiding; + condo_V2 : V2 ; -- [XXXAO] :: ||restore; sheathe (sword); plunge/bury (weapon in enemy); put out of sight; + condocefacio_V2 : V2 ; -- [XXXEO] :: train; discipline; teach, instruct (L+S); + condocefio_V : V ; -- [XXXEO] :: be/become trained/disciplined/taught/instructed (L+S); (condocefacio PASS); + condoceo_V2 : V2 ; -- [XGXFO] :: teach, instruct; train, exercise (L+S); + condoctor_M_N : N ; -- [DGXFS] :: fellow-teacher; + condoctus_A : A ; -- [XGXEO] :: taught; well learnt, well instructed; + condoleo_V : V ; -- [DEXCS] :: feel severe pain; suffer greatly/with another; feel another's pain; empathize; + condolesco_V : V ; -- [XXXCO] :: be painful, ache; feel grief/sorrow; grieve; + condoma_F_N : N ; -- [FLXFY] :: farmer's land; land held by colonus; + condominus_M_N : N ; -- [FXXFE] :: co-owner, one who shares domain; + condomo_V2 : V2 ; -- [DXXFS] :: check, curb; tame completely; + condomum_N_N : N ; -- [HBXEK] :: condom; + condonatio_F_N : N ; -- [XXXEO] :: giving away; donation, gift (Ecc); + condonatus_M_N : N ; -- [EEXEE] :: lay brother; oblate; + condono_V2 : V2 ; -- [XXXBO] :: give (away/up); present; make present of; forgive/pardon/absolve; sacrifice to; + condormio_V : V ; -- [XXXEO] :: sleep soundly; be fast asleep; + condormisco_V : V ; -- [XXXDO] :: fall asleep, go to sleep; + condrilla_F_N : N ; -- [XAXNS] :: plant, gum succory? (Chondrilla funcea); Spanish savory, endive/chicory (L+S); + condrille_F_N : N ; -- [XAXNO] :: plant, gum succory? (Chondrilla funcea); Spanish savory, endive/chicory (L+S); + condrion_N_N : N ; -- [XAXNO] :: plant, gum succory? (Chondrilla funcea); Spanish savory, endive/chicory (L+S); + condrylla_F_N : N ; -- [XAXNS] :: plant, gum succory? (Chondrilla funcea); Spanish savory, endive/chicory (L+S); + conducenter_Adv : Adv ; -- [XXXFO] :: profitably, wisely; becomingly; properly, suitably, appropriately (L+S); + conducibilis_A : A ; -- [XXXDO] :: expedient, advantageous; wise, advisable; profitable (L+S); + conduco_V : V ; -- [XXXBO] :: be of advantage/profitable/expedient; be proper/fitting/concerned with; tend to + conduco_V2 : V2 ; -- [XXXAO] :: |employ, hire; rent; borrow; contract for, undertake; farm the taxes; + conducticius_A : A ; -- [XXXDO] :: hired, mercenary; rented (house); of/pertaining to hire (L+S); + conductio_F_N : N ; -- [DBXES] :: spasm; convulsion; + conductitius_A : A ; -- [XXXDS] :: hired, mercenary; rented (house); of/pertaining to hire (L+S); + conductor_M_N : N ; -- [XXXCO] :: employer/hirer; contractor; lessee/renter; entrepreneur (Cal); + conductrix_F_N : N ; -- [DXXES] :: hirer (female), who hires or rents a thing; lessee/renter; + conductrum_N_N : N ; -- [GTXEK] :: conductor (of electricity); + conductum_N_N : N ; -- [XXXCO] :: anything hired/leased; rented house/dwelling; lease/contract; + conductus_A : A ; -- [XXXCO] :: hired; composed of hired men/mercenaries; taken under contract, leased; + conductus_M_N : N ; -- [DBXES] :: contraction; (of eye/other); convulsion/spasm(?); [~ Paschae => Low Sunday]; + condulco_V2 : V2 ; -- [DXXES] :: sweeten; + condulus_M_N : N ; -- [DBXDS] :: knob/knuckle of a joint; joint of a reed, reed; fist (pl.); ring (OLD); + condumno_V2 : V2 ; -- [XLXIO] :: condemn, doom, convict; find guilty; (pass) sentence; blame, censure, impugn; + conduplicatio_F_N : N ; -- [XGXEO] :: doubling; (facetiously an embrace); reiteration/repetition (word/phrase); + conduplico_V2 : V2 ; -- [XXXDO] :: double, make twofold/twice as much/great; make two kinds; embrace (w/corpora); + condurdum_N_N : N ; -- [XAXNO] :: plant (unidentified); + conduro_V2 : V2 ; -- [XXXFO] :: harden, make hard; + condus_M_N : N ; -- [XXXFO] :: one who stores (provisions); + condyloma_N_N : N ; -- [XBXEO] :: callous anal protuberance; swelling in the parts around the anus (L+S); + condylus_M_N : N ; -- [DBXDS] :: knob/knuckle of a joint; joint of a reed, reed; fist (pl.); ring (OLD); + conea_F_N : N ; -- [AAIFO] :: stork; (Praenestine form of circonia); + conective_Adv : Adv ; -- [DXXFS] :: connectively, conjunctively; + conecto_V2 : V2 ; -- [XXXBO] :: join/fasten/link together, connect/associate; lead to; tie; implicate/involve; + conesto_V2 : V2 ; -- [XXXCO] :: honor, grace; do honor/pay respect to; make respectable; prevent baldness (L+S); + conexe_Adv : Adv ; -- [DXXFS] :: in connection; connectively; + conexio_F_N : N ; -- [DXXDS] :: |binding together; close union; organic union; syllable; + conexivus_A : A ; -- [XGXFO] :: serving to unite/join (words/clauses), copulative, conjunctive, connective; + conexo_Adv : Adv ; -- [DXXFS] :: in connection; connectively; + conexum_N_N : N ; -- [XGXEO] :: hypothetical proposition; necessary consequence, inevitable inference (L+S); + conexus_M_N : N ; -- [XXXEO] :: connection; joining together; combination (L+S); + confabricor_V : V ; -- [XXXFO] :: construct, build up; compose, make (L+S); + confabulatio_F_N : N ; -- [DEXES] :: conversation; discoursing together; + confabulator_M_N : N ; -- [DEXES] :: one who converses; (with God); + confabulatus_M_N : N ; -- [DXXFS] :: conversation; + confabulo_M_N : N ; -- [GXXET] :: companion; (Erasmus); + confabulor_V : V ; -- [XXXDO] :: converse, talk together; talk about; discuss something (L+S); + confacio_V2 : V2 ; -- [XXXFS] :: make together; + confamulans_A : A ; -- [DXXFS] :: serving together; (in the same household); + confamulus_M_N : N ; -- [DXXFS] :: fellow-servant; + confarreatio_F_N : N ; -- [XXXEO] :: marriage ceremony, in which meal/grain (far) was given as an offering; + confarreo_V2 : V2 ; -- [XLXEO] :: marry by confarreatio (ceremony with meal/grain offering); contract marriage; + confatalis_A : A ; -- [XXXEO] :: fated by implication; jointly dependent on fate (L+S); decided by fate; + confectio_F_N : N ; -- [XXXCO] :: |destroying/diminishing/weakening/impairing; reduction (food chewing/digestion); + confector_M_N : N ; -- [XXXCO] :: maker/preparer; who conducts (business); finisher; consumer; destroyer, slayer; + confectorarius_M_N : N ; -- [XXXIO] :: slaughter; butcher; + confectorium_N_N : N ; -- [XAXFS] :: slaughterhouse, place where swine/hogs are slaughtered/butchered; + confectrix_F_N : N ; -- [DXXFS] :: destroyer, that which destroys; + confectura_F_N : N ; -- [XXXEO] :: preparation, making, manufacture; + confectus_A : A ; -- [XAXFO] :: with her litter (w/sus of a sow); (offered with all her young for sacrifice); + confederatio_F_N : N ; -- [FXXFM] :: confederation; league; + confederatorus_M_N : N ; -- [FXXFM] :: conspirator; + confedero_V : V ; -- [FXXFM] :: confederate; join in league; + confercio_V2 : V2 ; -- [XXXCO] :: stuff/cram/pack/press (close) together; fill densely; raise a shout in unison; + conferentia_F_N : N ; -- [EXXEE] :: conference, meeting, gathering; + confermento_V2 : V2 ; -- [DXXFS] :: leaven, ferment through and through; + confero_V2 : V2 ; -- [XXXAO] :: |discuss/debate/confer; oppose; pit/match against another; blame; bestow/assign; + conferrumino_V2 : V2 ; -- [XXXNO] :: cause to join; knit together (fractures); cement (L+S); solder together; + confersus_A : A ; -- [XXXFO] :: |full (of), crammed (with), abounding (in) (w/ABL); as a whole, summarized; + conferte_Adv : Adv ; -- [DXXFS] :: in a compact body/bunch/formation; closely; + confertim_Adv : Adv ; -- [XXXEO] :: in a compact body/bunch/formation; closely; + confertus_A : A ; -- [XXXBO] :: |full (of), crammed (with), abounding (in) (w/ABL); as a whole, summarized; + conferumino_V2 : V2 ; -- [XXXNO] :: cause to join; knit together (fractures); cement (L+S); solder together; + conferva_F_N : N ; -- [XAXNO] :: aquatic plant; (kind of conferva/fresh water Green Algae?); (w/medicinal power); + confervefacio_V2 : V2 ; -- [XXXEO] :: boil, make thoroughly hot; make glowing/melting hot (L+S); + confervefio_V : V ; -- [XXXEO] :: be boiled/made very hot/glowing/melting hot (L+S); (confervefacio PASS); + confervesco_V : V ; -- [XXXEO] :: become heated; grow hot; begin to boil (L+S); heal, grow together (bones); + confervo_V : V ; -- [XBXEO] :: knit (broken bones), grow together, heal; seethe/boil together (L+S); + confessarius_M_N : N ; -- [EEXDE] :: confessor; + confessio_F_N : N ; -- [EEXER] :: ||praise, thanksgiving; (Vulgate); + confessionale_N_N : N ; -- [EEXDE] :: confessional; + confessionalis_A : A ; -- [EEXFE] :: confessional; + confessionalis_F_N : N ; -- [EEXDE] :: confessional; + confessor_M_N : N ; -- [DEXES] :: confessor of Christianity; martyr; lower clergy; pious monk; confessor (modern); + confessorius_A : A ; -- [XLXEO] :: based on admission/claiming a right (w/actio); of a confession/acknowledgement; + confessum_N_N : N ; -- [XLXCO] :: acknowledged/generally admitted fact; substance of a confession; + confessus_A : A ; -- [XLXCO] :: admitted, acknowledged; generally admitted, manifest, obvious; confessed; + confessus_M_N : N ; -- [XLXEO] :: one who admits/confesses liability/crime; + confestim_Adv : Adv ; -- [XXXBO] :: immediately, suddenly; at once, without delay, forthwith; rapidly, speedily; + confibula_F_N : N ; -- [XXXFS] :: wooden double clamp/cramp, clincher; + conficiens_A : A ; -- [XXXEO] :: productive of; [~ litterarum => diligent in keeping accounts]; + conficio_V2 : V2 ; -- [XXXAO] :: ||finish off; kill, dispatch; defeat finally, subdue/reduce/pacify; chop/cut up; + confictio_F_N : N ; -- [XXXFO] :: fabrication; invention (of an accusation/falsehood); + conficto_V2 : V2 ; -- [XXXEO] :: fabricate/invent/concoct an accusation/falsehood together; counterfeit/feign; + confictor_M_N : N ; -- [DXXFS] :: fabricator, he who fabricates/concocts a thing; + confictus_A : A ; -- [XXXFE] :: forged; counterfeit; + confidejussor_M_N : N ; -- [XLXEO] :: joint surety/bond; + confidelis_M_N : N ; -- [DEXFS] :: fellow-believer; + confidens_A : A ; -- [XXXCO] :: assured/confident; bold/daring/undaunted; overconfident, presumptuous; trusting; + confidenter_Adv : Adv ; -- [XXXCO] :: boldly, daringly, with assurance; audaciously, impudently, with effrontery; + confidentia_F_N : N ; -- [XXXCO] :: assurance/confidence; boldness, impudence, audacity; firm belief/expectation; + confidentiloquus_A : A ; -- [AXXFO] :: speaking audaciously; speaking confidently (L+S); + confideo_V : V ; -- [EXXFW] :: rely on, trust (to); believe, be confident/assured/sure; (Vulgate 4 Ezra 7:98); + confido_V : V ; -- [XXXBO] :: have confidence in, rely on, trust (to); believe, be confident/assured; be sure; + configo_V2 : V2 ; -- [XXXBO] :: |pierce through, transfix; strike down, pierce with a weapon; + configuratio_F_N : N ; -- [DXXFS] :: configuration; similar formation; + configuratus_A : A ; -- [EXXFE] :: made like; fashioned; conformable; + configuro_V2 : V2 ; -- [XXXEO] :: mold, shape; form from/after something, fashion accordingly (L+S); + confindo_V2 : V2 ; -- [XXXFO] :: split, cleave; divide, cleave asunder (L+S); + confine_N_N : N ; -- [XXXEO] :: boundary, border, border-line; confine, neighborhood (L+S); + confingo_V2 : V2 ; -- [XXXCO] :: fashion/fabricate, construct by shaping/molding; invent/feign/devise; pretend; + confinis_A : A ; -- [DXXES] :: |pertaining to boundaries; boundary-, border-; + confinium_N_N : N ; -- [XXXBO] :: common boundary (area); border, limit; proximity/nearness/neighborhood; + confinius_A : A ; -- [DXXES] :: adjoining, contiguous/having a common boundary; closely connected, allied, akin; + confinus_M_N : N ; -- [XXXFO] :: one whose property is adjacent/adjoining, neighbor; + confio_V : V ; -- [BXXCS] :: |||be chopped/cut up; be recorded/written; come about/happen; (conficio PASS); + confirmanda_F_N : N ; -- [EEXEE] :: candidate for confirmation (female); + confirmandus_M_N : N ; -- [EEXEE] :: candidate for confirmation; + confirmate_Adv : Adv ; -- [DXXFS] :: firmly; + confirmatio_F_N : N ; -- [XXXCO] :: |confirmation/verification/establishing; proof; corroboration; adducing proofs; + confirmative_Adv : Adv ; -- [DXXFS] :: confirmatively, corroboratively; + confirmativum_N_N : N ; -- [DXXFS] :: affirmation; affirmative; + confirmativus_A : A ; -- [DXXDS] :: serving for confirmation, confirmative, corroborative; + confirmator_M_N : N ; -- [XLXFO] :: guarantor; that/who confirms/establishes a thing (L+S); surety, security; + confirmatrix_F_N : N ; -- [DLXFS] :: she who confirms/establishes a thing; + confirmatus_A : A ; -- [XXXCS] :: |encouraged; courageous, resolute; asserted/affirmed; certain, credible; proved; + confirmitas_F_N : N ; -- [BXXFO] :: self-assurance; firmness of will (L+S); obstinacy; + confirmo_V2 : V2 ; -- [XXXAO] :: |assert positively; declare, prove, confirm, support; sanction; encourage; + confiscatio_F_N : N ; -- [XLXFO] :: confiscation/seizure of a person's property; forfeiting; + confiscator_M_N : N ; -- [XLXFS] :: treasurer; master of the exchequer; + confisco_V2 : V2 ; -- [XLXCO] :: confiscate/seize (for the public treasury); lay-up in a treasury, store; + confisio_F_N : N ; -- [XXXFO] :: assurance; trust, confidence; + confiteor_V : V ; -- [XXXBO] :: confess (w/ACC), admit, acknowledge, reveal, disclose; concede, allow; denote; + confixilis_A : A ; -- [XXXFO] :: fixed together, constructed; that can be joined together (L+S); + confixio_F_N : N ; -- [DXXFS] :: firm joining together; + conflabello_V2 : V2 ; -- [DXXFS] :: fan violently; kindle; + conflaccesco_V : V ; -- [XXXFO] :: grow weak; grow quite languid (L+S); + conflagratio_F_N : N ; -- [XXXFO] :: conflagration, burning; (applied to the eruption of a volcano); + conflagratus_A : A ; -- [DXXES] :: burnt up; completely consumed by fire; + conflagro_V : V ; -- [XXXCO] :: be on fire/burn; be burnt down/consumed/utterly destroyed; be/become inflamed; + conflammo_V2 : V2 ; -- [DXXFS] :: inflame; + conflans_A : A ; -- [EXXFE] :: refining, purifying; + conflatile_N_N : N ; -- [DXXFS] :: cast idol/image; + conflatilis_A : A ; -- [DXXES] :: cast; molten (Ecc); + conflatio_F_N : N ; -- [DXXDS] :: fanning, kindling, stirring up; casting, molding (in metal); + conflator_M_N : N ; -- [DTXFS] :: metal-caster; + conflatorium_N_N : N ; -- [DTXFS] :: melting/casting furnace; (for metal); crucible (Ecc); + conflatura_F_N : N ; -- [DTXFS] :: melting (of metals by fire); 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 ; - conflictatrix_F_N : N ; - conflictatus_A : A ; - conflictio_F_N : N ; - conflicto_V : V ; - conflictor_V : V ; - conflictus_M_N : N ; - confligatus_A : A ; - confligium_N_N : N ; - confligo_V2 : V2 ; - conflo_V2 : V2 ; - conflorens_A : A ; - confloreo_V : V ; + conflax_M_N : N ; -- [XXXFW] :: places (pl.) exposed on all sides to the winds; (L+S); + conflexus_A : A ; -- [XXXNO] :: bent; curved round; + conflictatio_F_N : N ; -- [XXXDO] :: struggle, contest, contention; convulsion; dispute; punishing (L+S); collision; + conflictatrix_F_N : N ; -- [DXXFS] :: she who afflicts; + conflictatus_A : A ; -- [DXXFS] :: struck together; collided; contended, battled; argued, disagreed; + conflictio_F_N : N ; -- [XXXCO] :: collision/striking together; clash, disagreement/inconsistency; act of fighting; + conflicto_V : V ; -- [XXXCO] :: |strike frequently/forcibly/violently; buffet; ruin; + conflictor_V : V ; -- [XXXCO] :: contend, struggle; enter into a contest; + conflictus_M_N : N ; -- [XXXDO] :: clash, collision; impact; fight, contest (L+S); impulse; impression; necessity; + confligatus_A : A ; -- [DXXFS] :: struck together; collided; contended, battled; argued, disagreed; + confligium_N_N : N ; -- [DXXES] :: striking/dashing together; (waves); + confligo_V2 : V2 ; -- [XXXBO] :: clash, collide; contend/fight/combat; be in conflict/at war; argue/disagree; + conflo_V2 : V2 ; -- [FXXBE] :: ||forge; refine, purify; inflame; + conflorens_A : A ; -- [DXXFS] :: blooming/blossoming/flourishing together/strongly; + confloreo_V : V ; -- [FXXEE] :: bloom/flourish together; 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 ; - confluentia_F_N : N ; - confluo_V : V ; - confluus_A : A ; - confluvium_N_N : N ; + conflox_M_N : N ; -- [XXXFW] :: places (pl.) exposed on all sides to the winds; (L+S); + confluctuo_V : V ; -- [XXXFO] :: wave, swell, undulate, fluctuate; surge/rise in waves on all sides (L+S); + confluens_M_N : N ; -- [XXXCO] :: confluence, meeting place/junction of rivers; name of town (pl.) (now Coblenz); + confluentia_F_N : N ; -- [DXXFS] :: conflux, flowing together; confluence; [Confluentia => Coblenz]; + confluo_V : V ; -- [XXXBO] :: flow/flock/come together/abundantly, meet/assemble; gather/collect; be brought; + confluus_A : A ; -- [DXXES] :: flowing together; + confluvium_N_N : N ; -- [XXXEO] :: confluence, place where streams of water/air meet; sink, drain; 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 ; - confoedero_V2 : V2 ; - confoedo_V2 : V2 ; - confoedustus_A : A ; - confoedustus_M_N : N ; - conforane_A : A ; - conforio_V2 : V2 ; - conformalis_A : A ; - conformatio_F_N : N ; - conformator_M_N : N ; - conformis_A : A ; - conformitas_F_N : N ; - conformo_V2 : V2 ; - confornicatio_F_N : N ; - confornico_V2 : V2 ; - confortatio_F_N : N ; - conforto_V2 : V2 ; - confortor_V : V ; - confossus_A : A ; - confoveo_V2 : V2 ; - confracesco_V : V ; - confractio_F_N : N ; - confractorium_N_N : N ; - confractura_F_N : N ; - confractus_A : A ; - confragose_Adv : Adv ; - confragosum_N_N : N ; - confragosus_A : A ; - confragum_N_N : N ; - confragus_A : A ; - confraria_F_N : N ; - confrater_M_N : N ; - confraternitas_F_N : N ; - confratria_F_N : N ; + conflux_M_N : N ; -- [XXXFO] :: places (pl.) with rivers on all sides; junction/meeting of several rivers; + confodio_V2 : V2 ; -- [XXXCO] :: stab/run through, wound fatally; pierce, harm; dig up/turn over (land); trench; + confoederatio_F_N : N ; -- [DLXFS] :: agreement, covenant; league, union, confederation (Ecc); + confoedero_V2 : V2 ; -- [DLXES] :: unite, join in a league; + confoedo_V2 : V2 ; -- [XXXFO] :: befoul, make filthy; + confoedustus_A : A ; -- [XLXFS] :: allied, joined in alliance; + confoedustus_M_N : N ; -- [XWXFO] :: allies (pl.); + conforane_A : A ; -- [XXXFS] :: working/selling at the same market place; + conforio_V2 : V2 ; -- [XXXFO] :: defile/pollute with ordure/diarrhea; (rude); + conformalis_A : A ; -- [DEXES] :: similar, like, conformable; + conformatio_F_N : N ; -- [XXXCO] :: shape, form; character/constitution; idea, notion; figure of speech; inflection; + conformator_M_N : N ; -- [DXXFS] :: framer, former; + conformis_A : A ; -- [DXXFS] :: similar, like; + conformitas_F_N : N ; -- [EXXFP] :: likeness; conformity (Ecc); agreement; + conformo_V2 : V2 ; -- [XXXBO] :: shape/mold skillfully; outline, describe; train/educate/teach; make to agree; + confornicatio_F_N : N ; -- [XTXFO] :: arching/vaulting over (of a space); + confornico_V2 : V2 ; -- [XTXFO] :: vault over, over-arch, cover with an arched roof; + confortatio_F_N : N ; -- [EEXFE] :: comfort, consolation, solace; + conforto_V2 : V2 ; -- [DXXES] :: strengthen very much; (reinforce, fortify); console, comfort (Bee); encourage; + confortor_V : V ; -- [FXXEE] :: wax strong; take courage; + confossus_A : A ; -- [BXXFS] :: punctured, pierced; pierced through; full of holes; + confoveo_V2 : V2 ; -- [XXXEO] :: care for, tend; warm (L+S); foster; cherish assiduously; + confracesco_V : V ; -- [XXXFO] :: putrefy, rot; + confractio_F_N : N ; -- [DXXES] :: breach; rupture; fracture; + confractorium_N_N : N ; -- [EEXFE] :: prayer at end of Cannon in Ambrosian rite; + confractura_F_N : N ; -- [DXXFS] :: breach; rupture; fracture; + confractus_A : A ; -- [XXXEO] :: broken; irregular; uneven; + confragose_Adv : Adv ; -- [XXXFS] :: roughly, unevenly; + confragosum_N_N : N ; -- [XXXDO] :: rough/uneven/broken ground; rough place; thicket; difficulty; + confragosus_A : A ; -- [XXXCS] :: rough, uneven, broken; difficult, hard, difficult to accomplish; + confragum_N_N : N ; -- [XXXFO] :: rough place; thicket (L+S); + confragus_A : A ; -- [XXXEO] :: rough, uneven, broken; difficult, hard, difficult to accomplish; + confraria_F_N : N ; -- [FXXEM] :: brotherhood, association, fraternity; + confrater_M_N : N ; -- [EEXEE] :: brother; colleague, confrere, fellow; guild brother; + confraternitas_F_N : N ; -- [FEXEE] :: association, brotherhood, society/confraternity/confederation/sodality/guild; + confratria_F_N : N ; -- [EEXEE] :: sodality, society; 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 ; - confricamentum_N_N : N ; - confricatio_F_N : N ; - confrico_V2 : V2 ; - confrigo_V2 : V2 ; - confringo_V2 : V2 ; - confrio_V2 : V2 ; - confrixo_V2 : V2 ; - confronto_V2 : V2 ; - confuga_C_N : N ; - confugela_F_N : N ; - confugio_V : V ; - confugium_N_N : N ; - confulcio_V2 : V2 ; - confulgeo_V : V ; - confultus_A : A ; - confundo_V2 : V2 ; - confunero_V2 : V2 ; - confusaneus_A : A ; - confuse_Adv : Adv ; - confusicius_A : A ; - confusim_Adv : Adv ; - confusio_F_N : N ; - confusionismus_M_N : N ; - confusus_A : A ; - confutatio_F_N : N ; - confuto_V2 : V2 ; - confutor_M_N : N ; - confutuo_V2 : V2 ; - cong_N : N ; - congarrio_V2 : V2 ; - congaudeo_V : V ; - congelasco_V : V ; - congelatio_F_N : N ; - congelatus_A : A ; - congelo_V : V ; - congeminatio_F_N : N ; - congemino_V2 : V2 ; - congemisco_V : V ; - congemo_V2 : V2 ; - congenatus_A : A ; - congener_A : A ; - congener_M_N : N ; - congenero_V2 : V2 ; - congeniclatus_A : A ; - congeniclo_V : V ; - congenitus_A : A ; - congentilis_M_N : N ; - congenuclatus_A : A ; - congenuclo_V : V ; - conger_M_N : N ; - congeria_F_N : N ; - congeries_F_N : N ; - congermanatus_A : A ; - congermanesco_V : V ; - congermanus_A : A ; - congerminalis_A : A ; - congermino_V : V ; - congero_M_N : N ; - congero_V2 : V2 ; - congerra_M_N : N ; - congerro_M_N : N ; - congeste_Adv : Adv ; - congesticius_A : A ; - congestim_Adv : Adv ; - congestio_F_N : N ; - congestitius_A : A ; - congesto_V2 : V2 ; - congestus_A : A ; - congestus_M_N : N ; - congialis_A : A ; - congiarium_N_N : N ; - congiarius_A : A ; - congius_M_N : N ; - conglacio_V : V ; - conglacior_V : V ; - conglisco_V : V ; - conglobatim_Adv : Adv ; - conglobatio_F_N : N ; - conglobo_V : V ; - conglomeratio_F_N : N ; - conglomero_V2 : V2 ; - conglorifico_V2 : V2 ; - conglutinatio_F_N : N ; - conglutino_V : V ; - conglutino_V2 : V2 ; - conglutinor_V : V ; - conglutinosus_A : A ; - congluvialis_A : A ; - congradus_A : A ; - congraeco_V2 : V2 ; - congratulatio_F_N : N ; - congratulor_V : V ; - congredior_V : V ; - congregabilis_A : A ; - congregalis_A : A ; - congregatim_Adv : Adv ; - congregatio_F_N : N ; - congregativus_A : A ; - congregator_M_N : N ; - congregatus_M_N : N ; - congrego_V2 : V2 ; - congregus_A : A ; - congressio_F_N : N ; - congressor_M_N : N ; - congressus_M_N : N ; - congrex_A : A ; - congrua_F_N : N ; - congrue_Adv : Adv ; - congruens_A : A ; - congruenter_Adv : Adv ; - congruentia_F_N : N ; - congruo_V : V ; - congrus_M_N : N ; - congruus_A : A ; - congyro_V : V ; - conia_F_N : N ; - coniacum_N_N : N ; - conibentia_F_N : N ; - conicio_V2 : V2 ; - conicus_A : A ; - conifer_A : A ; - coniger_A : A ; - conila_F_N : N ; - coniludium_N_N : N ; - coninquino_V2 : V2 ; - coninquo_V2 : V2 ; - coniptum_N_N : N ; - conisco_V : V ; - conisterium_N_N : N ; - conitor_V : V ; - conitum_N_N : N ; - conium_N_N : N ; - coniunctivus_M_N : N ; - coniventia_F_N : N ; - coniveo_V : V ; - conivolus_A : A ; - conjaceo_V : V ; - conjectaneum_N_N : N ; - conjectarius_A : A ; - conjectatio_F_N : N ; - conjectator_M_N : N ; - conjectatorius_A : A ; - conjectio_F_N : N ; - conjecto_V : V ; - conjector_M_N : N ; - conjectrix_F_N : N ; - conjectura_F_N : N ; - conjecturale_N_N : N ; - conjecturalis_A : A ; - conjecturaliter_Adv : Adv ; - conjectus_M_N : N ; - conjicio_V2 : V2 ; - conjubeo_V2 : V2 ; - conjucundor_V : V ; - conjuga_F_N : N ; - conjugalis_A : A ; - conjugalus_A : A ; - conjugatio_F_N : N ; - conjugatiter_Adv : Adv ; - conjugator_M_N : N ; - conjugatum_N_N : N ; - conjugatus_A : A ; - conjugialis_A : A ; - conjugicidium_N_N : N ; - conjugium_N_N : N ; - conjugo_V2 : V2 ; - conjugulus_A : A ; - conjuncte_Adv : Adv ; - conjunctim_Adv : Adv ; - conjunctio_F_N : N ; - conjunctivus_A : A ; - conjunctivus_M_N : N ; - conjunctrix_F_N : N ; - conjunctum_N_N : N ; - conjunctus_A : A ; - conjunctus_M_N : N ; - conjungo_V2 : V2 ; - conjunx_A : A ; + confrax_M_N : N ; -- [XXXFW] :: places (pl.) exposed on all sides to the winds; (L+S); + confremo_V : V ; -- [XXXDO] :: resound, ring, echo; make a noise; murmur loudly; + confrequento_V2 : V2 ; -- [XXXCO] :: |celebrate/keep (festival); keep in mind; maintain (memory of the dead); + confricamentum_N_N : N ; -- [DXXFS] :: something/compound for rubbing; dentifrice; + confricatio_F_N : N ; -- [DXXFS] :: vigorous rubbing; friction; + confrico_V2 : V2 ; -- [XXXCO] :: rub vigorously; rub (with unguents, massage, rub down (body); rub/make smooth; + confrigo_V2 : V2 ; -- [EXXEE] :: burn up; + confringo_V2 : V2 ; -- [XXXCO] :: break up/down/in pieces/in two; shatter/destroy/crush/ruin/wreck; subvert/undo; + confrio_V2 : V2 ; -- [XXXFO] :: cover with power (or the like); rub in (L+S); + confrixo_V2 : V2 ; -- [DXXFS] :: roast/fry (with something); + confronto_V2 : V2 ; -- [EXXEE] :: confront; + confuga_C_N : N ; -- [DLXFS] :: refugee, one who takes refuge; + confugela_F_N : N ; -- [XXXFO] :: place of refuge; + confugio_V : V ; -- [XXXBO] :: flee (for refuge/safety/protection); take refuge; have recourse/appeal to; + confugium_N_N : N ; -- [XXXEO] :: sanctuary, refuge, place of refuge; shelter (L+S); + confulcio_V2 : V2 ; -- [XXXFO] :: press together; + confulgeo_V : V ; -- [BXXFO] :: shine, gleam; be resplendent; shine brightly, glitter, glisten (L+S); + confultus_A : A ; -- [XXXFS] :: pressed together; + confundo_V2 : V2 ; -- [XXXAO] :: |upset/confuse; blur/jumble; bring disorder/ruin; disfigure; bewilder, dismay; + confunero_V2 : V2 ; -- [DXXFS] :: bury, inter; ruin, destroy; + confusaneus_A : A ; -- [XXXFO] :: composite, derived from several sources; mingled (L+S); miscellaneous; + confuse_Adv : Adv ; -- [XXXCO] :: in a confused/disorderly/perplexed way, fumblingly; indiscriminately; vaguely; + confusicius_A : A ; -- [XXXFO] :: mixed; hodge-podge; + confusim_Adv : Adv ; -- [XXXFO] :: confusedly, in a disorderly manner/fashion; + confusio_F_N : N ; -- [XXXBO] :: mingling/mixture/union; confusion/confounding/disorder; trouble; blushing/shame; + confusionismus_M_N : N ; -- [FXXEE] :: confusion; shame; + confusus_A : A ; -- [XXXBO] :: |confused/perplexed, troubled; vague/indefinite, obscure; embarrassed/blushing; + confutatio_F_N : N ; -- [XGXEO] :: refutation; action of proving false; confutation (L+S); + confuto_V2 : V2 ; -- [XXXCO] :: |abash, silence (accuser); shock; disprove, refute; convict of error; put down; + confutor_M_N : N ; -- [DXXFS] :: refuter; opponent; + confutuo_V2 : V2 ; -- [XXXFO] :: have sexual intercourse with (woman); (rude); lie with conjugally (L+S); + cong_N : N ; -- [XXXEW] :: liquid measure (about 3 quarts); (6 sextarri, 1/4 urna); abb. cong.; + congarrio_V2 : V2 ; -- [XXXFO] :: prattle; + congaudeo_V : V ; -- [DEXES] :: rejoice with one/together; + congelasco_V : V ; -- [XXXEO] :: freeze; congeal owing to cold; + congelatio_F_N : N ; -- [XXXNO] :: frost; action of freezing; freezing, congealing (L+S); + congelatus_A : A ; -- [XXXEE] :: frozen; + congelo_V : V ; -- [XXXCO] :: |harden; make/become hard; strike fear into, chill; render/become inactive; + congeminatio_F_N : N ; -- [BXXFO] :: doubling; (of an embrace, embracing); + congemino_V2 : V2 ; -- [XXXCO] :: double; increase; combine to double size; redouble; employ in repeated action; + congemisco_V : V ; -- [DEXFS] :: sigh deeply; + congemo_V2 : V2 ; -- [XXXCO] :: groan/moan (loudly), utter a cry of grief/pain; bewail, lament; sigh deeply; + congenatus_A : A ; -- [XGXEO] :: akin; linguistically related (languages); innate; + congener_A : A ; -- [XAXNO] :: of/belonging to same family (plant); of the same race/kind (L+S); + congener_M_N : N ; -- [DXXFS] :: joint son-in-law?; + congenero_V2 : V2 ; -- [XXXDO] :: bind by ties of kinship, unite; give birth/beget/produce at the same time; + congeniclatus_A : A ; -- [XXXFO] :: forced to one's knees; fallen upon the knees (L+S); + congeniclo_V : V ; -- [XXXEO] :: fall on one's knees; + congenitus_A : A ; -- [XBXNO] :: congenital, existing from time of birth; coeval; born/produced together with; + congentilis_M_N : N ; -- [XXXIO] :: persons (pl.) belonging to the same gens; relatives, kindred; + congenuclatus_A : A ; -- [XXXFO] :: forced to one's knees; + congenuclo_V : V ; -- [XXXEO] :: fall on one's knees; + conger_M_N : N ; -- [XAXDO] :: conger eel; sea eel (L+S); + congeria_F_N : N ; -- [DXXES] :: heap, pile, mass; collection/accumulation (events/words); the ruins; chaos; + congeries_F_N : N ; -- [XXXCO] :: heap, pile, mass; collection/accumulation (events/words); the ruins; chaos; + congermanatus_A : A ; -- [XXXFO] :: related, associated; + congermanesco_V : V ; -- [XXXEO] :: become allied/united (to); grow up/together with one (L+S); + congermanus_A : A ; -- [DXXFS] :: grown together/up with; united with; + congerminalis_A : A ; -- [DAXFS] :: from the same stalk/stock; + congermino_V : V ; -- [XAXFO] :: sprout, put forth shoots; shoot forth at the same time (L+S); + congero_M_N : N ; -- [BXXES] :: thief; + congero_V2 : V2 ; -- [XXXAO] :: |consign (to one's stomach); assemble/crowd together; give repeatedly, shower; + congerra_M_N : N ; -- [XXXFS] :: playfellow; crony; + congerro_M_N : N ; -- [XXXEO] :: fellow idler; boon/jolly companion; (one who contributes to a common feast); + congeste_Adv : Adv ; -- [DXXFS] :: briefly; summarily; + congesticius_A : A ; -- [XXXEO] :: raised, heaped/piled up; of material brought to the spot; brought together; + congestim_Adv : Adv ; -- [XXXFO] :: in heaps; heaped together (L+S); + congestio_F_N : N ; -- [XXXDO] :: action of filling (holes/ditches); heap/mass/pile; combination/accumulation; + congestitius_A : A ; -- [XXXES] :: raised, heaped/piled up; of material brought to the spot; brought together; + congesto_V2 : V2 ; -- [XXXFS] :: bring/carry together; + congestus_A : A ; -- [DXXFS] :: brought together; pressed/crowded together; thick; + congestus_M_N : N ; -- [XXXCO] :: action of bringing together/assembling/heaping; heap/pile/mass; big collection; + congialis_A : A ; -- [BSXFO] :: holding a congius (3 quarts); (liquid measure); + congiarium_N_N : N ; -- [XXXCO] :: largess for soldiers/poor; gift in grain/oil/wine/salt/money; 1 congius vessel; + congiarius_A : A ; -- [XSXFS] :: of/pertaining to/holding the (liquid) measure of one congius (about 3 quarts); + congius_M_N : N ; -- [XSXDO] :: liquid measure (about 3 quarts); (6 sextarri, 1/4 urna); abb. cong.; + conglacio_V : V ; -- [XXXDS] :: freeze, turn (entirely) to ice; cause to freeze up; be inactive; + conglacior_V : V ; -- [XXXDO] :: freeze, turn to ice; + conglisco_V : V ; -- [BXXFO] :: grow, increase; blaze up, be kindled; become illustrious; + conglobatim_Adv : Adv ; -- [DXXFS] :: in heaps, in a mass; + conglobatio_F_N : N ; -- [XXXEO] :: accumulation; massing together (things); crowding/gathering together (people); + conglobo_V : V ; -- [XXXBO] :: form/make into a ball; roll up; accumulate; crowd/press/mass together; clot; + conglomeratio_F_N : N ; -- [XXXFS] :: assembly; crowding together; + conglomero_V2 : V2 ; -- [XXXDO] :: concentrate, gather into a compact mass; heap (evils upon a person) (w/in+ACC); + conglorifico_V2 : V2 ; -- [DEXFS] :: glorify together with (others); (PASSIVE) be glorified with; + conglutinatio_F_N : N ; -- [XXXEO] :: joint; joining by cohesion; gluing/cementing/joining together (L+S); + conglutino_V : V ; -- [GXXEK] :: bind (books); + conglutino_V2 : V2 ; -- [XXXCO] :: glue/stick/bind/cohere together; cement; cleave to; bring to agreement; devise; + conglutinor_V : V ; -- [FXXDE] :: glue/stick/bind/cohere together; cement; cleave to; bring to agreement; devise; + conglutinosus_A : A ; -- [DXXFS] :: glutinous; viscous; + congluvialis_A : A ; -- [XXXFO] :: additional/tacked on (days) for proceedings after a break?; + congradus_A : A ; -- [DXXFS] :: keeping pace with; apace; + congraeco_V2 : V2 ; -- [XXXFO] :: squander like a Greek; lavish on banquets, squander on luxury (L+S); + congratulatio_F_N : N ; -- [DXXES] :: congratulations; wishing of joy, congratulating; + congratulor_V : V ; -- [XXXEO] :: congratulate; wish joy; rejoice with (ECC); + congredior_V : V ; -- [BXXEO] :: meet, approach, near; join in battle, come to grips; contend/engage (at law); + congregabilis_A : A ; -- [XXXFO] :: that group(s) together; social, easily brought together (L+S); + congregalis_A : A ; -- [DXXFS] :: uniting together; joining; + congregatim_Adv : Adv ; -- [DXXFS] :: together; in crowds; + congregatio_F_N : N ; -- [XXXCO] :: act of forming social group; association, community; brotherhood; congregation; + congregativus_A : A ; -- [DXXFS] :: suitable for uniting/congregating, copulative; + congregator_M_N : N ; -- [DXXES] :: assembler, one who brings together; convener?; + congregatus_M_N : N ; -- [DXXFS] :: union, association; + congrego_V2 : V2 ; -- [XXXBO] :: collect/bring together/assemble/convene; flock, congregate; group; concentrate; + congregus_A : A ; -- [DAXFS] :: united/collected in flocks/herds; + congressio_F_N : N ; -- [XXXCO] :: meeting, visit, interview; encounter; conflict, attack; sexual intercourse; + congressor_M_N : N ; -- [DXXFS] :: one who meets/assembles with; + congressus_M_N : N ; -- [XXXBO] :: |union, combination, coming together; sexual/social intercourse; companionship; + congrex_A : A ; -- [XXXFO] :: herded together; of same herd/flock (L+S); collected in flocks; intimate/close; + congrua_F_N : N ; -- [FEXFE] :: salary of pastor; + congrue_Adv : Adv ; -- [DXXES] :: suitably, aptly; agreeably, harmoniously; + congruens_A : A ; -- [XXXBO] :: |congruent, corresponding to, similar, matching; appropriate, fitting; proper; + congruenter_Adv : Adv ; -- [XXXEO] :: agreeably; in a corresponding manner; appropriately, aptly; suitably; + congruentia_F_N : N ; -- [XXXDO] :: consistency/accordance; proper way; similarity/likeness; symmetry/proportion; + congruo_V : V ; -- [XXXBO] :: |unite, combine, come together; blend, harmonize, act together; be congenial; + congrus_M_N : N ; -- [XAXFS] :: conger eel; sea eel (L+S); + congruus_A : A ; -- [XXXDO] :: agreeing, according; fit, suitable (L+S); harmonious; + congyro_V : V ; -- [DXXFS] :: circle, make a circle around a person; + conia_F_N : N ; -- [BAXFS] :: stork; + coniacum_N_N : N ; -- [GXXEK] :: cognac; + conibentia_F_N : N ; -- [FLXFM] :: connivance, tacit permission/sanction; (coniventia); + conicio_V2 : V2 ; -- [XXXAO] :: |throw/cast/fling (into area); devote/pour (money); thrust, involve; insert; + conicus_A : A ; -- [XSXFO] :: conical; + conifer_A : A ; -- [XAXFO] :: coniferous, cone-bearing (tree); bearing fruit of a conical form (L+S); + coniger_A : A ; -- [XAXFO] :: coniferous, cone-bearing (tree); bearing fruit of a conical form (L+S); + conila_F_N : N ; -- [DAXFS] :: plant (genus Satureia, savory); (also called cunila and origanum L+S); + coniludium_N_N : N ; -- [GXXEK] :: game of ninepins; + coninquino_V2 : V2 ; -- [XXXDO] :: befoul/pollute/defile wholly (immorality); contaminate/taint/infect (w/disease); + coninquo_V2 : V2 ; -- [DXXFO] :: cut back, prune; cut off, cut down (L+S); + coniptum_N_N : N ; -- [XEXFS] :: oblation/offering/rite made by sprinkling flour; + conisco_V : V ; -- [XXXCS] :: brandish/shake/quiver; flash/glitter, emit/reflect intermittent/quivering light; + conisterium_N_N : N ; -- [XXXFO] :: room in a palaestra for wrestlers to sprinkle themselves with dust; + conitor_V : V ; -- [XXXBO] :: strain, strive (physically); put forth; endeavor eagerly; struggle (to reach); + conitum_N_N : N ; -- [XEXFS] :: oblation/offering/rite made by sprinkling flour; + conium_N_N : N ; -- [DAXFS] :: hemlock; (pure Latin cicuta); + coniunctivus_M_N : N ; -- [GGXEK] :: subjunctive; + coniventia_F_N : N ; -- [XLXDS] :: connivance, tacit permission/sanction, overlooking/winking at an offense; + coniveo_V : V ; -- [XXXBO] :: |be tightly closed (eyes); (other things); be inactive/eclipsed; lie dormant; + conivolus_A : A ; -- [XXXFW] :: closed (eyes); hidden, covered; + conjaceo_V : V ; -- [XXXFS] :: lie together; + conjectaneum_N_N : N ; -- [XGXFO] :: miscellany (pl.); (title of several books); note/commonplace book (L+S); + conjectarius_A : A ; -- [XGXFO] :: conjectural, based on inferences; of/pertaining to conjecture (L+S); + conjectatio_F_N : N ; -- [XXXDO] :: inference, conjecture, guess, surmise; act of guessing/surmising; + conjectator_M_N : N ; -- [DEXEO] :: soothsayer, seer; conjecturer; + conjectatorius_A : A ; -- [DGXFS] :: conjectural, based on inferences; of/pertaining to conjecture (L+S); + conjectio_F_N : N ; -- [XXXCO] :: summary; comparison; interpretation/exposition; inference/conjecture; throwing; + conjecto_V : V ; -- [XXXCO] :: |throw together; assemble; throw (person in prison); interpret (portent); + conjector_M_N : N ; -- [XEXEO] :: soothsayer; interpreter of dreams; diviner, seer; + conjectrix_F_N : N ; -- [XEXEO] :: interpreter of dreams (female); soothsayer (female); diviner, seer; + conjectura_F_N : N ; -- [XXXBO] :: conjecture/guess/inference/reasoning/interpretation/comparison/prophecy/forecast + conjecturale_N_N : N ; -- [XGXFS] :: conjectures/inferences/guesses (pl.); + conjecturalis_A : A ; -- [XGXBO] :: conjectural, of/based on conjecture/guess/inference; + conjecturaliter_Adv : Adv ; -- [XXXFO] :: by way of conjecture, conjecturally; + conjectus_M_N : N ; -- [XXXBO] :: |throw/shot (distance); act of throwing (missile); glance/directing one's gaze; + conjicio_V2 : V2 ; -- [XXXES] :: |throw/cast/fling (into area); devote/pour (money); thrust, involve; insert; + conjubeo_V2 : V2 ; -- [DLXFS] :: command together; + conjucundor_V : V ; -- [DEXFS] :: rejoice together/with one; + conjuga_F_N : N ; -- [XXXEO] :: wife; spouse; consort (L+S); + conjugalis_A : A ; -- [XAXNO] :: species of myrtle?; + conjugalus_A : A ; -- [XAXEO] :: name of a species of myrtle; + conjugatio_F_N : N ; -- [XGXEO] :: etymological connection; mixing together/combining, mixture; conjugation (late); + conjugatiter_Adv : Adv ; -- [DXXFS] :: as married persons; + conjugator_M_N : N ; -- [XXXFO] :: one who unites (in a pair); one who joins (L+S); + conjugatum_N_N : N ; -- [XGXFO] :: etymologically connected words; + conjugatus_A : A ; -- [XGXEO] :: etymologically connected/related (words); depending on etymological connection; + conjugialis_A : A ; -- [XXXEO] :: of/belonging to marriage, conjugal, connubial, marital; of a husband; + conjugicidium_N_N : N ; -- [XXXFE] :: murder of one's spouse; + conjugium_N_N : N ; -- [XXXCO] :: marriage/wedlock; husband/wife; couple; mating (animal), pair; close connection; + conjugo_V2 : V2 ; -- [XXXEO] :: join in marriage; form a friendship; join together, unite in (L+S); + conjugulus_A : A ; -- [XAXES] :: name of a species of myrtle; pertaining to uniting/connecting (L+S); + conjuncte_Adv : Adv ; -- [XXXCO] :: jointly, at same time; together, in a friendly/confidential fashion; + conjunctim_Adv : Adv ; -- [XXXCO] :: jointly, in common; together; in combination; + conjunctio_F_N : N ; -- [XXXAO] :: |conjunction (word); combination; compound proposition; association/affinity; + conjunctivus_A : A ; -- [XXXFO] :: connective; of connection, serving to connect (L+S); subjunctive (mood); + conjunctivus_M_N : N ; -- [DGXFS] :: conjunctive/subjunctive mood; + conjunctrix_F_N : N ; -- [DXXFS] :: that which joins/unites together; + conjunctum_N_N : N ; -- [XGXDO] :: connected word/proposition; compound proposition; connection (L+S); + conjunctus_A : A ; -- [XXXBO] :: |closely connected/related/attached/associated (friendship/kinship/wed); + conjunctus_M_N : N ; -- [XXXEO] :: process/state of being joined together; connection, conjunction (L+S); (ABL S); + conjungo_V2 : V2 ; -- [XXXAO] :: |unite (sexually); place/bring side-by-side; juxtapose; share; add; associate; + conjunx_A : A ; -- [XAXFO] :: yoked together; paired; linked as a pair; 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 ; + conjunx_M_N : N ; -- [XXXBO] :: spouse/mate/consort; husband/wife/bride/fiancee/intended; concubine; yokemate; + conjuratio_F_N : N ; -- [XXXCO] :: conspiracy, plot, intrigue; alliance; band of conspirators; taking joint oath; + conjuratus_A : A ; -- [XXXDS] :: conspiring; leagued; + conjuratus_M_N : N ; -- [XXXEO] :: conspirator; (usu. pl.); + conjuro_V : V ; -- [XXXBO] :: swear/act together, join in an oath/plot; conspire, plot; form alliance/league; 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 ; - conlabefio_V : V ; - conlabello_V2 : V2 ; - conlabo_V : V ; - conlabor_V : V ; - conlaceratus_A : A ; - conlacero_V2 : V2 ; - conlacrimatio_F_N : N ; - conlacrimo_V : V ; - conlacrumo_V : V ; - conlactanea_F_N : N ; - conlactaneus_M_N : N ; - conlactea_F_N : N ; - conlacteus_M_N : N ; - conlactia_F_N : N ; - conlacticia_F_N : N ; - conlacticius_M_N : N ; - conlactius_M_N : N ; - conlaetor_V : V ; - conlapsio_F_N : N ; - conlatero_V2 : V2 ; - conlaticius_A : A ; - conlatio_F_N : N ; - conlatitius_A : A ; - conlativum_N_N : N ; - conlativus_A : A ; - conlator_M_N : N ; - conlatro_V2 : V2 ; - conlatus_M_N : N ; - conlaudabilis_A : A ; - conlaudatio_F_N : N ; - conlaudator_M_N : N ; - conlaudo_V2 : V2 ; - conlaxo_V2 : V2 ; - conlecta_F_N : N ; - conlectaculum_N_N : N ; - conlectaneus_A : A ; - conlectarius_M_N : N ; - conlecte_Adv : Adv ; - conlecticius_A : A ; - conlectim_Adv : Adv ; - conlectio_F_N : N ; - conlectitius_A : A ; - conlectivus_A : A ; - conlector_M_N : N ; - conlectum_N_N : N ; - conlectus_A : A ; - conlectus_M_N : N ; - conlega_C_N : N ; - conlegatarius_M_N : N ; - conlegialis_A : A ; - conlegiarius_A : A ; - conlegiarius_M_N : N ; - conlegiatus_M_N : N ; - conlegium_N_N : N ; - conleprosus_M_N : N ; - conlesco_V : V ; - conlevo_V2 : V2 ; - conliberta_F_N : N ; - conlibertus_M_N : N ; - conlibro_V2 : V2 ; - conlibuit_V0 : V ; - conlicia_F_N : N ; - conliciaris_A : A ; - conliculus_M_N : N ; - conlido_V2 : V2 ; - conligate_Adv : Adv ; - conligatio_F_N : N ; - conligo_V2 : V2 ; - conlimitaneus_A : A ; - conlimito_V : V ; - conlimitor_V : V ; - conlimitum_N_N : N ; - conlimo_V2 : V2 ; - conlineate_Adv : Adv ; - conlineo_V2 : V2 ; - conlinio_V2 : V2 ; - conlino_V2 : V2 ; - conliquefacio_V2 : V2 ; - conliquefactus_A : A ; - conliquefio_V : V ; - conliquesco_V2 : V2 ; - conliquia_F_N : N ; - conliquiarium_N_N : N ; - conlisio_F_N : N ; - conlisus_A : A ; - conlisus_M_N : N ; - conlocatio_F_N : N ; - conloco_V2 : V2 ; - conlocupleto_V2 : V2 ; - conlocutio_F_N : N ; - conlocutor_M_N : N ; - conloquium_N_N : N ; - conloquor_V : V ; - conlubuit_V0 : V ; - conluceo_V : V ; - conluco_V2 : V2 ; - conluctatio_F_N : N ; - conluctor_M_N : N ; - conluctor_V : V ; - conludium_N_N : N ; - conludo_V : V ; - conlugeo_V : V ; - conlumino_V2 : V2 ; - conluo_V2 : V2 ; - conlurchinatio_F_N : N ; - conlusim_Adv : Adv ; - conlusio_F_N : N ; - conlusor_M_N : N ; - conlusorie_Adv : Adv ; - conlustrium_N_N : N ; - conlustro_V2 : V2 ; - conlutio_F_N : N ; - conlutito_V2 : V2 ; - conlutlento_V2 : V2 ; - conluviaris_A : A ; - conluvies_F_N : N ; - conluvio_F_N : N ; - conluvium_N_N : N ; - conmemorabilis_A : A ; - conmemoramentum_N_N : N ; - conmemoratio_F_N : N ; - conmemorator_M_N : N ; - conmemoratorium_N_N : N ; - conmemoro_V2 : V2 ; - conmensalis_M_N : N ; - conmercium_N_N : N ; - conmercor_V : V ; - conmereo_V2 : V2 ; - conmereor_V : V ; - conmers_F_N : N ; - conmetior_V : V ; - conmitigo_V2 : V2 ; - conmitto_V2 : V2 ; - conmolior_V : V ; - conmonefacio_V2 : V2 ; - conmonefio_V : V ; - conmoneo_V : V ; - conmonstro_V2 : V2 ; - conmorior_V : V ; - conmoro_V : V ; - conmoror_V : V ; - conmostro_V2 : V2 ; - conmotus_A : A ; - conmoveo_V2 : V2 ; - conmunicabilis_A : A ; - conmunicabilitas_F_N : N ; - conmunicabiliter_Adv : Adv ; - conmunico_V2 : V2 ; - conmunicor_V : V ; - conmunis_A : A ; - conmunitus_Adv : Adv ; - conmuro_V2 : V2 ; - connascor_V : V ; - connaturaliter_Adv : Adv ; - connatus_A : A ; - connatus_M_N : N ; - connecto_V2 : V2 ; - connexe_Adv : Adv ; - connexio_F_N : N ; - connexivus_A : A ; - connexo_Adv : Adv ; - connexum_N_N : N ; - connexus_M_N : N ; - connitor_V : V ; - conniveo_V : V ; - connotatio_F_N : N ; - connubialis_A : A ; - connubialiter_Adv : Adv ; - connubium_N_N : N ; - connudatus_A : A ; - connumeratio_F_N : N ; - connumero_V2 : V2 ; - conopaeum_N_N : N ; - conopeum_N_N : N ; - conopium_N_N : N ; - conor_V : V ; - conpaciscor_V : V ; - conpactum_N_N : N ; - conpactus_A : A ; - conpaedagogita_F_N : N ; - conpaedagogius_M_N : N ; - conpaganus_M_N : N ; - conpages_F_N : N ; - conpago_F_N : N ; - conpar_A : A ; + conjux_M_N : N ; -- [XXXBO] :: spouse/mate/consort; husband/wife/bride/fiancee/intended; concubine; yokemate; + conlabasco_V : V ; -- [XXXFO] :: waver/totter/become unsteady at the same time; waver/totter with; + conlabefacto_V : V ; -- [XXXFO] :: cause to topple over; make to reel/totter (L+S); overpower/subdue; melt (metal); + conlabefio_V : V ; -- [XXXCO] :: collapse/break up; sink together; be overthrown politically/brought to ruin; + conlabello_V2 : V2 ; -- [XXXFO] :: make/form by putting the lips together; + conlabo_V : V ; -- [DXXFS] :: labor/work with/together; + conlabor_V : V ; -- [XXXBO] :: collapse, fall down/in ruin; fall in swoon/exhaustion/death; slip/slink (meet); + conlaceratus_A : A ; -- [XXXFS] :: torn to pieces; lacerated; + conlacero_V2 : V2 ; -- [XXXFO] :: lacerate severely; tear to pieces (L+S); + conlacrimatio_F_N : N ; -- [XXXFO] :: accompanying tears; weeping/lamenting (together/greatly); + conlacrimo_V : V ; -- [XXXDO] :: weep together, weep in the company of someone; weep over/for (w/ACC); bewail; + conlacrumo_V : V ; -- [XXXES] :: weep together, weep in the company of someone; weep over/for (w/ACC); bewail; + conlactanea_F_N : N ; -- [XXXEO] :: foster-sister; one nourished at the same breast; + conlactaneus_M_N : N ; -- [XXXEO] :: foster-brother; one nourished at the same breast; + conlactea_F_N : N ; -- [XXXEO] :: foster-sister; one nourished at the same breast; + conlacteus_M_N : N ; -- [XXXEO] :: foster-brother; one nourished at the same breast; + conlactia_F_N : N ; -- [XXXEO] :: foster-sister; one nourished at the same breast; + conlacticia_F_N : N ; -- [XXXIS] :: foster-sister; one nourished at the same breast; + conlacticius_M_N : N ; -- [XXXIS] :: foster-brother; one nourished at the same breast; + conlactius_M_N : N ; -- [XXXEO] :: foster-brother; one nourished at the same breast; + conlaetor_V : V ; -- [DXXFS] :: rejoice together; + conlapsio_F_N : N ; -- [DXXFS] :: precipitation, falling together; + conlatero_V2 : V2 ; -- [DXXFS] :: admit on both sides; + conlaticius_A : A ; -- [XXXDO] :: contributed, raised/produced by contributions; brought together (L+S); mingled; + conlatio_F_N : N ; -- [XGXEO] :: |comparison; [grammatical secunda ~/tertia ~ => comparative/superlative]; + conlatitius_A : A ; -- [XXXDS] :: contributed, raised/produced by contributions; brought together (L+S); mingled; + conlativum_N_N : N ; -- [DLXFS] :: contribution in money; + conlativus_A : A ; -- [XXXEO] :: supplied/produced by contributions from many quarters; collected/combined (L+S); + conlator_M_N : N ; -- [XXXEO] :: joint contributor, subscriber; he who brings/places together (L+S); comparer; + conlatro_V2 : V2 ; -- [XXXFO] :: bark in chorus at; bark/yelp fiercely at (L+S); inveigh against; + conlatus_M_N : N ; -- [XWXFO] :: joining of battle; affray, attack (L+S); contributing (to knowledge, teaching); + conlaudabilis_A : A ; -- [DXXFS] :: worthy of praise in every respect; + conlaudatio_F_N : N ; -- [XXXEO] :: high/warm praise; commendation; eulogy; + conlaudator_M_N : N ; -- [DXXFS] :: one who praises highly/warmly; + conlaudo_V2 : V2 ; -- [XXXCO] :: praise/extol highly; commend; eulogize; + conlaxo_V2 : V2 ; -- [XXXFO] :: loosen; make loose/porous (L+S); + conlecta_F_N : N ; -- [XXXCO] :: contribution; collection; meeting/assemblage (L+S); Collect at Mass (eccl.); + conlectaculum_N_N : N ; -- [DXXES] :: place of assembling; receptacle, reservoir; + conlectaneus_A : A ; -- [XXXEO] :: collected, assembled/gathered together from various sources; + conlectarius_M_N : N ; -- [DXXES] :: money-changer; banker, cashier; + conlecte_Adv : Adv ; -- [DXXFS] :: summarily; briefly; + conlecticius_A : A ; -- [XXXEO] :: obtained/collected from various quarters; gathered hastily without selection; + conlectim_Adv : Adv ; -- [DXXFS] :: summarily; briefly; + conlectio_F_N : N ; -- [XXXCO] :: collection/accumulation; gathering, abscess; recapitulation, summary; inference; + conlectitius_A : A ; -- [XXXEO] :: obtained/collected from various quarters; gathered hastily without selection; + conlectivus_A : A ; -- [XGXEO] :: proceeding by inference; deductive; gathered together (L+S); collective (noun); + conlector_M_N : N ; -- [XXXIO] :: collector, one who collects; fellow student (L+S); + conlectum_N_N : N ; -- [XXXEO] :: that which is collected; (food); collected sayings/writings (pl.); + conlectus_A : A ; -- [XXXEO] :: compact (of style), concise; restricted; contracted, narrow; + conlectus_M_N : N ; -- [XXXDO] :: heap/pile; accumulation (of liquid); collection; + conlega_C_N : N ; -- [XXXCO] :: colleague (in official/priestly office); associate, fellow (not official); + conlegatarius_M_N : N ; -- [XLXEO] :: joint legatee; person bequeathed a legacy in common with others; + conlegialis_A : A ; -- [XXXIO] :: of a collegium (guild/fraternity/board); collegial; + conlegiarius_A : A ; -- [DXXFS] :: of a collegium (guild/fraternity/board); collegial; + conlegiarius_M_N : N ; -- [XXXEO] :: member of a collegium (guild/fraternity/society/corporation/board); + conlegiatus_M_N : N ; -- [DXXES] :: member of a collegium (guild/fraternity/society/corporation/board); + conlegium_N_N : N ; -- [XXXBO] :: college/board (priests); corporation; brotherhood/fraternity/guild/colleagueship + conleprosus_M_N : N ; -- [DXXFS] :: fellow-leper; + conlesco_V : V ; -- [DXXES] :: lighten up, become illuminated; become clear/intelligible; + conlevo_V2 : V2 ; -- [XXXDO] :: make (entirely) smooth; smooth; + conliberta_F_N : N ; -- [XXXIO] :: fellow freedwoman; (having the same patronus); + conlibertus_M_N : N ; -- [XXXCO] :: fellow freedman; (having the same patronus); + conlibro_V2 : V2 ; -- [XAXEO] :: measure; measure off (L+S); + conlibuit_V0 : V ; -- [XXXCO] :: it pleases/is very agreeable; (IMPERS PERFDEF perfect form has present sense); + conlicia_F_N : N ; -- [XAXDO] :: gutter/drain (pl.) between inwardly-sloping roofs; gully; field-drain/runnel; + conliciaris_A : A ; -- [XAXFO] :: designed for making gullies; pertaining to water-channels (L+S); + conliculus_M_N : N ; -- [XTXFO] :: hillock, small hill; + conlido_V2 : V2 ; -- [XXXBO] :: strike/dash together; crush, batter, deform; set into conflict with each other; + conligate_Adv : Adv ; -- [DXXES] :: connectedly, jointly; + conligatio_F_N : N ; -- [XGXCO] :: binding together; bond/connection; thing that binds/connects band; conjunction; + conligo_V2 : V2 ; -- [XXXFO] :: |obtain/acquire, amass; rally; recover; sum up; deduce, infer; compute, add up; + conlimitaneus_A : A ; -- [DXXFS] :: bordering upon; (w/DAT); + conlimito_V : V ; -- [DXXES] :: border upon; (w/DAT); + conlimitor_V : V ; -- [DXXES] :: border upon; (w/DAT); + conlimitum_N_N : N ; -- [DXXES] :: boundary between two countries; + conlimo_V2 : V2 ; -- [XXXFO] :: direct (the eyes) sideways; glance sidelong; + conlineate_Adv : Adv ; -- [DXXES] :: in a straight/direct line; skillfully, artistically; + conlineo_V2 : V2 ; -- [XXXEO] :: align, direct, aim; + conlinio_V2 : V2 ; -- [XXXDO] :: align, direct, aim; + conlino_V2 : V2 ; -- [XXXCO] :: besmear, smear over; soil, pollute, defile; + conliquefacio_V2 : V2 ; -- [XSXEO] :: melt, liquefy; dissolve; + conliquefactus_A : A ; -- [XSXES] :: made fluid, liquefied, melted; dissolved; + conliquefio_V : V ; -- [XSXEO] :: be/become melted/liquefied/dissolved; (conliquefacio PASS); + conliquesco_V2 : V2 ; -- [XXXDO] :: melt, liquefy (w/in+ACC); turn into by liquefying; melt along with; dissolve; + conliquia_F_N : N ; -- [XAXDO] :: gutter/drain (pl.) between inwardly-sloping roofs; gully; field-drain/runnel; + conliquiarium_N_N : N ; -- [XTXFO] :: contrivance (pl.) for reliving air-pressure in water pipes; + conlisio_F_N : N ; -- [XXXFO] :: clash, collision; dashing/striking together (L+S); + conlisus_A : A ; -- [XXXFO] :: crushed, flattened; + conlisus_M_N : N ; -- [XXXEO] :: striking/clashing together; collision; + conlocatio_F_N : N ; -- [XXXCO] :: placing/siting (together); position; arrangement, ordering (things); marrying; + conloco_V2 : V2 ; -- [XXXAO] :: |put together, assemble; settle/establish in a place/marriage; billet; lie down; + conlocupleto_V2 : V2 ; -- [XXXEO] :: enrich, make wealthy/very rich; embellish, adorn; + conlocutio_F_N : N ; -- [XXXCO] :: conversation (private), discussion, debate; conference, parley; talking together + conlocutor_M_N : N ; -- [DEXEO] :: he who talks with another; + conloquium_N_N : N ; -- [XXXBO] :: talk, conversation; colloquy/discussion; interview; meeting/conference; parley; + conloquor_V : V ; -- [XXXBO] :: talk/speak to/with; talk together/over; converse; discuss; confer, parley; + conlubuit_V0 : V ; -- [XXXCO] :: it pleases/is very agreeable; (IMPERS PERFDEF perfect form has present sense); + conluceo_V : V ; -- [XXXBO] :: shine brightly, light up (with fire); reflect light, shine, be lit up; glitter; + conluco_V2 : V2 ; -- [XAXEO] :: prune; thin out (trees); clear/thin (forest) (L+S); + conluctatio_F_N : N ; -- [XXXCO] :: struggling (physical), wrestling; struggle, conflict; death struggle/agony; + conluctor_M_N : N ; -- [DXXFS] :: wrestler; antagonist, adversary; + conluctor_V : V ; -- [XXXCO] :: struggle physically; wrestle/contend (with); struggle/fight against (adversity); + conludium_N_N : N ; -- [DXXDS] :: sporting, playing together; secret, deceptive understanding, collusion; + conludo_V : V ; -- [XXXCO] :: play/sport together/with; (also) make sport; act in collusion (with); + conlugeo_V : V ; -- [DXXFS] :: lament; grieve together; + conlumino_V2 : V2 ; -- [XXXEO] :: illuminate (on all sides/fully); + conluo_V2 : V2 ; -- [XXXCO] :: wash/rinse out; wash/rinse away (impurities); wash together; use as a wash(?); + conlurchinatio_F_N : N ; -- [XXXEO] :: gormandizing, gross gluttony; guzzling; + conlusim_Adv : Adv ; -- [XXXFO] :: in collusion(?); + conlusio_F_N : N ; -- [XXXDO] :: secret/deceptive understanding, collusion; + conlusor_M_N : N ; -- [XXXCO] :: playmate, companion in play; fellow gambler; one in collusion to hurt another; + conlusorie_Adv : Adv ; -- [XXXFO] :: in/by collusion; in a concerted manner (L+S); + conlustrium_N_N : N ; -- [XEXEO] :: ceremonial purification (of fields); corporation that procured the purification; + conlustro_V2 : V2 ; -- [XXXCO] :: illuminate, make bright, light up fully; look over, survey; traverse, explore; + conlutio_F_N : N ; -- [XXXEO] :: rinsing; washing (L+S); + conlutito_V2 : V2 ; -- [DXXES] :: soil/defile greatly/thoroughly; + conlutlento_V2 : V2 ; -- [XXXFO] :: cover over with mud; + conluviaris_A : A ; -- [XAXFO] :: swilled/slopped, fed on refuse/filth (pigs); + conluvies_F_N : N ; -- [XAXCO] :: muck, decayed matter; refuse/sewage; pig-swill; filth; dregs; cesspool/mire; + conluvio_F_N : N ; -- [XXXCS] :: |muck, decayed matter; refuse/sewage; pig-swill; filth; dregs; cesspool/mire; + conluvium_N_N : N ; -- [DAXES] :: muck, decayed matter; refuse/sewage; pig-swill; filth; dregs; cesspool/mire; + conmemorabilis_A : A ; -- [XXXES] :: memorable, remarkable, worth mentioning; + conmemoramentum_N_N : N ; -- [XXXFO] :: reminder; mention; mentioning; + conmemoratio_F_N : N ; -- [XXXCO] :: remembrance/commemoration; observance (law); memory; mention/citation/reference; + conmemorator_M_N : N ; -- [DXXFS] :: commemorator, one who mentions/recalls a thing; + conmemoratorium_N_N : N ; -- [DXXFS] :: means of remembrance; + conmemoro_V2 : V2 ; -- [XXXBO] :: recall (to self/other); keep in mind, remember; mention/relate; place on record; + conmensalis_M_N : N ; -- [FXXFE] :: table commpanion; + conmercium_N_N : N ; -- [XXXAS] :: |exchange, trafficking; goods, military supplies; trade routes; use in common; + conmercor_V : V ; -- [XXXDO] :: buy, purchase; buy up (L+S); trade/traffic together; + conmereo_V2 : V2 ; -- [XXXCO] :: merit fully, deserve, incur, earn (punishment/reward); be guilty of, perpetuate; + conmereor_V : V ; -- [XXXCO] :: merit fully, deserve, incur, earn (punishment/reward); be guilty of, perpetuate; + conmers_F_N : N ; -- [XXXFO] :: friendly intercourse; + conmetior_V : V ; -- [XSXDO] :: measure; pace out/off; compare (in measurement); + conmitigo_V2 : V2 ; -- [XXXFO] :: soften; make soft (L+S); mellow; + conmitto_V2 : V2 ; -- [XXXAO] :: |engage (battle), set against; begin/start; bring about; commit; incur; forfeit; + conmolior_V : V ; -- [XXXDS] :: set in motion; move with an effort; put together, construct; + conmonefacio_V2 : V2 ; -- [XXXCO] :: recall, remember; call to mind; remind (forcibly), warn, admonish; impress upon; + conmonefio_V : V ; -- [XXXCO] :: be recalled/remembered/reminded; be warned/admonished; (conmonefacio PASS); + conmoneo_V : V ; -- [XXXCS] :: remind (forcibly), warn; bring to recollection (L+S); impress upon one; + conmonstro_V2 : V2 ; -- [XXXCS] :: point out (fully/distinctly), show where; make known, declare, reveal; + conmorior_V : V ; -- [XXXCS] :: die together/with; work oneself to death (with); perish/be destroyed together; + conmoro_V : V ; -- [DXXCS] :: stop/stay/remain, abide; linger, delay; detain, be delayed (menses); dwell on; + conmoror_V : V ; -- [XXXBS] :: stop/stay/remain, abide; linger, delay; detain, be delayed (menses); dwell on; + conmostro_V2 : V2 ; -- [XXXCS] :: point out (fully/distinctly), show where; make known, declare, reveal; + conmotus_A : A ; -- [XXXCS] :: excited, nervous; frenzied/deranged; angry/annoyed; temperamental; tempestuous; + conmoveo_V2 : V2 ; -- [XXXAS] :: |waken; provoke; move (money/camp); produce; cause, start (war); raise (point); + conmunicabilis_A : A ; -- [EXXFP] :: communicable, capable of being communicated; + conmunicabilitas_F_N : N ; -- [FXXEF] :: communicability; + conmunicabiliter_Adv : Adv ; -- [EXXFP] :: in a way capable of being communicated; + conmunico_V2 : V2 ; -- [XXXAS] :: |communicate, discuss, impart; make common cause; take common counsel, consult; + conmunicor_V : V ; -- [XXXDS] :: share; share/divide with/out; receive/take a share of; receive; join with; + conmunis_A : A ; -- [XXXAO] :: |neutral, impartial (Mars); applicable on either side; same form for two cases; + conmunitus_Adv : Adv ; -- [XXXFO] :: jointly, as a group; + conmuro_V2 : V2 ; -- [XXXBO] :: burn up/away; (w/love); consume/destroy w/fire; reduce to ash, cremate; scald; + connascor_V : V ; -- [DXXCS] :: born with/at same time; arise together with; + connaturaliter_Adv : Adv ; -- [FXXFE] :: in a natural way; + connatus_A : A ; -- [DXXES] :: innate; + connatus_M_N : N ; -- [DXXES] :: twin; double; one similar/alike; + connecto_V2 : V2 ; -- [XXXBO] :: join/fasten/link together, connect/associate; lead to; tie; implicate/involve; + connexe_Adv : Adv ; -- [DXXFS] :: in connection; connectively; + connexio_F_N : N ; -- [DXXDS] :: |binding together; close union; organic union; syllable; + connexivus_A : A ; -- [XGXFO] :: serving to unite/join (words/clauses), copulative, conjunctive, connective; + connexo_Adv : Adv ; -- [DXXFS] :: in connection; connectively; + connexum_N_N : N ; -- [XGXEO] :: hypothetical proposition; necessary consequence, inevitable inference (L+S); + connexus_M_N : N ; -- [XXXEO] :: connection; joining together; combination (L+S); + connitor_V : V ; -- [XXXDS] :: strain, strive (physically); put forth; endeavor eagerly; struggle (to reach); + conniveo_V : V ; -- [XXXDS] :: |be tightly closed (eyes); (other things); be inactive/eclipsed; lie dormant; + connotatio_F_N : N ; -- [FXXEM] :: connotation; + connubialis_A : A ; -- [XXXES] :: of/belonging to marriage/wedlock (or a specific marriage), conjugal/connubial; + connubialiter_Adv : Adv ; -- [XXXFS] :: in a conjugal manner, connubially; + connubium_N_N : N ; -- [XXXDS] :: marriage/wedlock; right to marry; act/ceremony of marriage (usu. pl.); + connudatus_A : A ; -- [XXXNS] :: completely/wholly naked/bare; stark naked; + connumeratio_F_N : N ; -- [DXXES] :: reckoning together; + connumero_V2 : V2 ; -- [XXXEO] :: reckon in, include in counting/the count; number with, reckon among (L+S); + conopaeum_N_N : N ; -- [EXXDE] :: canopy; mosquito-net, gauze net; bed provided with a mosquito-net; + conopeum_N_N : N ; -- [XXXDO] :: canopy; mosquito-net, gauze net; bed provided with a mosquito-net; + conopium_N_N : N ; -- [XXXDO] :: canopy; mosquito-net, gauze net; bed provided with a mosquito-net; + conor_V : V ; -- [XXXBO] :: attempt/try/endeavor, make an effort; exert oneself; try to go/rise/speak; + conpaciscor_V : V ; -- [XXXFS] :: make an agreement/arrangement/compact; + conpactum_N_N : N ; -- [XLXDS] :: agreement/compact; [ABL compacto => according to/in accordance with agreement]; + conpactus_A : A ; -- [XXXCO] :: joined/fastened together, united; close-packed, firm, thick; well-set, compact; + conpaedagogita_F_N : N ; -- [XXXIO] :: fellow member of a paedagogium (training establishment for slave boys); (M L+S); + conpaedagogius_M_N : N ; -- [XXXIS] :: fellow member of a paedagogium (training establishment for slave boys); + conpaganus_M_N : N ; -- [XXXIO] :: fellow villager, inhabitant of the same village; + conpages_F_N : N ; -- [XXXBO] :: action of binding together, fastening; bond, tie; joint; structure, framework; + conpago_F_N : N ; -- [XXXCO] :: fact/action of binding together, fastening; structure, framework; + conpar_A : A ; -- [XXXCO] :: equal, equal to; like, similar, resembling; suitable, matching, corresponding; 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 ; - conparate_Adv : Adv ; - conparaticius_A : A ; - conparatio_F_N : N ; - conparative_Adv : Adv ; - conparativus_A : A ; - conparator_M_N : N ; - conparatus_M_N : N ; - conparco_V2 : V2 ; - conpareo_V : V ; - conparo_V2 : V2 ; - conpartior_V : V ; - conpasco_V2 : V2 ; - conpascua_F_N : N ; - conpascuum_N_N : N ; - conpascuus_A : A ; - conpastor_M_N : N ; - conpatriota_F_N : N ; - conpatronus_M_N : N ; - conpavesco_V : V ; - conpavio_V2 : V2 ; - conpavitus_A : A ; - conpeciscor_V : V ; - conpectum_N_N : N ; - conpedagogita_F_N : N ; - conpedagogius_M_N : N ; - conpedio_V2 : V2 ; - conpeditus_A : A ; - conpeditus_M_N : N ; - conpedus_A : A ; - conpellatio_F_N : N ; - conpello_V2 : V2 ; - conpendiaria_F_N : N ; - conpendiarium_N_N : N ; - conpendiarius_A : A ; - conpendiose_Adv : Adv ; - conpendiosus_A : A ; - conpendium_N_N : N ; - conpendo_V2 : V2 ; - conpensatio_F_N : N ; - conpenso_V2 : V2 ; - conperco_V2 : V2 ; - conperendinatio_F_N : N ; - conperendinatus_M_N : N ; - conperendino_V2 : V2 ; - conperendinus_A : A ; - conperio_V2 : V2 ; - conperior_V : V ; - conpertusio_F_N : N ; - conpes_F_N : N ; - conpesco_V2 : V2 ; - conpetalis_A : A ; - conpetens_A : A ; - conpetenter_Adv : Adv ; - conpetentia_F_N : N ; - conpetitio_F_N : N ; - conpetitor_M_N : N ; - conpetitrix_F_N : N ; - conpeto_V2 : V2 ; - conpetum_N_N : N ; - conphretor_M_N : N ; - conpilatio_F_N : N ; - conpilator_M_N : N ; - conpilo_V2 : V2 ; - conpingo_V2 : V2 ; - conpitalicius_A : A ; - conpitalis_A : A ; - conpitalitius_A : A ; - conpitensis_A : A ; - conpitum_N_N : N ; - conplaceo_V : V ; - conplaco_V2 : V2 ; - conplanator_M_N : N ; - conplano_V2 : V2 ; - conplecto_V2 : V2 ; - conplector_V : V ; - conplementum_N_N : N ; - conpleo_V2 : V2 ; - conpletus_A : A ; - conplexio_F_N : N ; - conplexivus_A : A ; - conplexus_M_N : N ; - conplico_V2 : V2 ; - conplodo_V2 : V2 ; - conploratio_F_N : N ; - conploratus_M_N : N ; - conploro_V : V ; - conpluor_V : V ; - conpluriens_Adv : Adv ; - conplurimus_A : A ; - conplus_A : A ; - conplus_M_N : N ; - conplus_N_N : N ; - conplusculus_A : A ; - conplusicule_Adv : Adv ; - conplut_V0 : V ; - conpluviatus_A : A ; - conpluvium_N_N : N ; - conpono_V2 : V2 ; - conportatio_F_N : N ; - conporto_V2 : V2 ; - conpos_A : A ; - conposite_Adv : Adv ; - conpositicius_A : A ; - conpositio_F_N : N ; - conposititius_A : A ; - conposito_Adv : Adv ; - conpositor_M_N : N ; - conpositum_N_N : N ; - conpositura_F_N : N ; - conpositus_A : A ; - conpostura_F_N : N ; - conpostus_A : A ; - conpotatio_F_N : N ; - conpotens_A : A ; - conpotio_V2 : V2 ; - conpoto_V : V ; - conpotor_M_N : N ; - conpotrix_F_N : N ; - conpraecido_V2 : V2 ; - conpraes_M_N : N ; - conpransor_M_N : N ; - conprecatio_F_N : N ; - conprecor_V : V ; - conprehendibilis_A : A ; - conprehendo_V2 : V2 ; - conprehensibilis_A : A ; - conprehensio_F_N : N ; - conprehenso_V2 : V2 ; - conprendo_V2 : V2 ; - conprensio_F_N : N ; - conpresse_Adv : Adv ; - conpressio_F_N : N ; - conpressor_M_N : N ; - conpressus_A : A ; - conpressus_M_N : N ; - conprimens_A : A ; - conprimo_V2 : V2 ; - conprobatio_F_N : N ; - conprobator_M_N : N ; - conprobo_V2 : V2 ; - conpromissarius_A : A ; - conpromissum_N_N : N ; - conpromitto_V2 : V2 ; - conpulsio_F_N : N ; - conpulso_V2 : V2 ; - conpungo_V2 : V2 ; - conpurgo_V2 : V2 ; - conputabilis_A : A ; - conputatio_F_N : N ; - conputator_M_N : N ; - conputesco_V : V ; - conputo_V2 : V2 ; - conputresco_V : V ; - conquadro_V : V ; - conquadro_V2 : V2 ; - conquaero_V2 : V2 ; - conquaestor_M_N : N ; - conquassatio_F_N : N ; - conquasso_V2 : V2 ; - conquaterno_Adv : Adv ; - conqueror_V : V ; - conquestio_F_N : N ; - conquestus_M_N : N ; - conquiesco_V : V ; - conquietus_A : A ; - conquiliarius_M_N : N ; - conquinisco_V : V ; - conquino_V2 : V2 ; - conquiro_V2 : V2 ; - conquisite_Adv : Adv ; - conquisitio_F_N : N ; - conquisitor_M_N : N ; - conquisitus_A : A ; - conquistor_M_N : N ; - conrado_V2 : V2 ; - conrationalitas_F_N : N ; - conrectio_F_N : N ; - conrector_M_N : N ; - conrectura_F_N : N ; - conrectus_A : A ; - conrecumbens_A : A ; - conregio_F_N : N ; - conregionalis_M_N : N ; - conregno_V : V ; - conrepo_V : V ; - conrepte_Adv : Adv ; - conreptio_F_N : N ; - conrepto_V : V ; - conreptor_M_N : N ; - conreptus_A : A ; - conresupinatus_A : A ; - conresuscito_V2 : V2 ; - conreus_M_N : N ; - conrideo_V : V ; - conrigia_F_N : N ; - conrigo_V2 : V2 ; - conripio_V2 : V2 ; - conrivalis_M_N : N ; - conrivatio_F_N : N ; - conrivium_N_N : N ; - conrivo_V2 : V2 ; - conroboramentum_N_N : N ; - conroboro_V2 : V2 ; - conrodo_V2 : V2 ; - conrogatio_F_N : N ; - conrogo_V2 : V2 ; - conrotundo_V2 : V2 ; - conruda_F_N : N ; - conrugis_A : A ; - conrugo_V2 : V2 ; - conrugus_M_N : N ; - conrumpo_V2 : V2 ; - conrumptela_F_N : N ; - conruo_V2 : V2 ; - conrupte_Adv : Adv ; - conruptela_F_N : N ; - conruptibilis_A : A ; - conruptibilitas_F_N : N ; - conruptio_F_N : N ; - conruptive_Adv : Adv ; - conruptivus_A : A ; - conruptor_M_N : N ; - conruptorius_A : A ; - conruptrix_A : A ; - conruptrix_F_N : N ; - conruptum_N_N : N ; - conruptus_A : A ; - conruspor_V : V ; - conrutundo_V2 : V2 ; - cons_N : N ; + conpar_M_N : N ; -- [XXXCO] :: fellow, partner, equal; comrade; husband/wife; pair (of animals also), mate; + conpar_N_N : N ; -- [XGXFO] :: sentence containing clauses of roughly the same number of syllables; + conparabilis_A : A ; -- [XXXDO] :: similar, comparable; + conparate_Adv : Adv ; -- [XXXFO] :: comparatively; in/by comparison (L+S); + conparaticius_A : A ; -- [DXXFS] :: similar, comparable; furnished by contribution; + conparatio_F_N : N ; -- [XXXAO] :: ||preparation, making ready; procuring, provision; arrangement, settlement; + conparative_Adv : Adv ; -- [XXXFO] :: in a comparative sense; + conparativus_A : A ; -- [XGXCO] :: based on/involving consideration of relative merits; comparative; + conparator_M_N : N ; -- [XXXIO] :: buyer/purchaser, dealer; comparer (L+S); + conparatus_M_N : N ; -- [XSXIO] :: proportion; relation (L+S); + conparco_V2 : V2 ; -- [DXXCO] :: save, husband well, lay up; forbear/abstain/refrain from (w/INF), spare (w/DAT); + conpareo_V : V ; -- [XXXBO] :: appear/come in sight; be visible/present/in evidence/clearly stated/forthcoming; + conparo_V2 : V2 ; -- [XXXAO] :: ||set up/establish/institute; arrange, dispose, settle; buy, acquire, secure; + conpartior_V : V ; -- [XXXIO] :: share; divide something with one (L+S); (PASS) be made partaker of; + conpasco_V2 : V2 ; -- [XAXCO] :: pasture (cattle) on common land; feed up/together; use as cattle food; eat; + conpascua_F_N : N ; -- [XAXEO] :: common pasture/land; pasture possessed/used in common; + conpascuum_N_N : N ; -- [XAXEO] :: common pasture/land (pl.); pasture possessed/used in common; + conpascuus_A : A ; -- [XAXCO] :: common pasture (land); right of common pasturage; grazed on/sharing a pasture; + conpastor_M_N : N ; -- [XAXFO] :: fellow herdsman; + conpatriota_F_N : N ; -- [XXXIO] :: compatriot, fellow countryman; + conpatronus_M_N : N ; -- [XXXEO] :: co-patron (one who has joined in manumitting a slave); + conpavesco_V : V ; -- [XXXFO] :: become very afraid/full of fear/thoroughly terrified; + conpavio_V2 : V2 ; -- [XXXFO] :: trample on; beat (L+S); + conpavitus_A : A ; -- [XXXFO] :: trampled upon; beaten (L+S); + conpeciscor_V : V ; -- [XXXFS] :: make an agreement/arrangement/compact; + conpectum_N_N : N ; -- [XLXDS] :: agreement/compact; [ABL compacto => according to/in accordance with agreement]; + conpedagogita_F_N : N ; -- [XXXIO] :: fellow member of a paedagogium (training establishment for slave boys); (M L+S); + conpedagogius_M_N : N ; -- [XXXIS] :: fellow member of a paedagogium (training establishment for slave boys); + conpedio_V2 : V2 ; -- [XXXEO] :: shackle, fetter; put fetters on; + conpeditus_A : A ; -- [XXXDO] :: that wears fetters/shackles; + conpeditus_M_N : N ; -- [XXXDO] :: fettered slave; + conpedus_A : A ; -- [XXXFO] :: that fetters or restrains; fettering, shackling (L+S); + conpellatio_F_N : N ; -- [XGXDO] :: action of addressing/apostrophizing (aside to person)/reproaching, reproof; + conpello_V2 : V2 ; -- [XXXAO] :: drive together (cattle), round up; force, compel, impel, drive; squeeze; gnash; + conpendiaria_F_N : N ; -- [XXXCO] :: short/quick route, short cut; quick/easy method, short cut; + conpendiarium_N_N : N ; -- [XXXEO] :: short/quick route, short cut; fitment in a granary; + conpendiarius_A : A ; -- [XXXEO] :: short/quick (of routes); + conpendiose_Adv : Adv ; -- [DXXES] :: briefly, shortly, compendiously; + conpendiosus_A : A ; -- [XXXDO] :: profitable, advantageous; short/quick (route); compendious, succinct, short; + conpendium_N_N : N ; -- [XXXAO] :: gain, profit; sparing/saving; abridgement, compendium; shorthand; a short cut; + conpendo_V2 : V2 ; -- [XXXFO] :: weigh/balance together; + conpensatio_F_N : N ; -- [XXXCO] :: balancing of items in account, offsetting; weighing/balancing (of factors); + conpenso_V2 : V2 ; -- [XXXBO] :: balance/weigh, offset; get rid of; make good, compensate; save/secure; short cut + conperco_V2 : V2 ; -- [DXXCO] :: save, husband well, lay up; forbear/abstain/refrain from (w/INF), spare (w/DAT); + conperendinatio_F_N : N ; -- [XLXDO] :: adjournment of a trial for two days; (to third day following or later L+S); + conperendinatus_M_N : N ; -- [XLXEO] :: adjournment of a trial for two days; (to third day following or later L+S); + conperendino_V2 : V2 ; -- [XLXCO] :: adjourn the trial of a person; adjourn a trial; (for two days or later); + conperendinus_A : A ; -- [XLXFO] :: on which an adjourned trial is resumed (of a day); + conperio_V2 : V2 ; -- [XXXAO] :: learn/discover/find (by investigation); verify/know for certain; find guilty; + conperior_V : V ; -- [XXXDS] :: learn/discover/find (by investigation); verify/know for certain; find guilty; + conpertusio_F_N : N ; -- [XTXIO] :: joint tunneling operation; + conpes_F_N : N ; -- [XXXCO] :: shackles (for feet) (usu. pl.), fetters; things impeding movement; chains; + conpesco_V2 : V2 ; -- [XXXAO] :: restrain, check; quench; curb, confine, imprison; hold in check; block, close; + conpetalis_A : A ; -- [XEXEO] :: associated with/worshiped at the cross-roads; + conpetens_A : A ; -- [XLXCO] :: agreeing with, corresponding to, apposite, suitable; competent (legal); + conpetenter_Adv : Adv ; -- [XXXEO] :: suitably, appositely; properly, becomingly; + conpetentia_F_N : N ; -- [XSXEO] :: correspondence; proportion; symmetry (L+S); meeting, agreement; conjunction; + conpetitio_F_N : N ; -- [DLXDS] :: agreement; judicial demand; rivalry; + conpetitor_M_N : N ; -- [XXXCO] :: rival, competitor; other candidate for office; rival claimant (to throne); + conpetitrix_F_N : N ; -- [XXXEO] :: rival, competitor (female); other candidate for office; rival claimant; + conpeto_V2 : V2 ; -- [XXXBO] :: |be sound/capable/applicable/relevant/sufficient/adequate/competent/admissible; + conpetum_N_N : N ; -- [XXXCO] :: cross-roads (usu. pl.), junction; people/shrine at crossroads; point of choice; + conphretor_M_N : N ; -- [BXXFO] :: fellow member of a phretria (division in a Greek community); + conpilatio_F_N : N ; -- [XXXFO] :: burglary; raking together, pillaging/plundering (L+S); compilation (document); + conpilator_M_N : N ; -- [DGXES] :: plunderer; imitator (literary); plagiarizer; (compiler/anthologist?); + conpilo_V2 : V2 ; -- [XXXCO] :: rob, pillage, steal from (another writer), plagiarize; beat up thoroughly; + conpingo_V2 : V2 ; -- [XXXFS] :: disguise, cover, paint over; + conpitalicius_A : A ; -- [XXXDO] :: associated with the cross-roads; of the Compitalia festival of the Lares; + conpitalis_A : A ; -- [XEXEO] :: associated with/worshiped at the cross-roads; + conpitalitius_A : A ; -- [XXXDS] :: associated with the cross-roads; of the Compitalia festival of the Lares; + conpitensis_A : A ; -- [XXXIO] :: adjoining/sharing the same crossroads/road junction; + conpitum_N_N : N ; -- [XXXCO] :: cross-roads (usu. pl.), junction; people/shrine at crossroads; point of choice; + conplaceo_V : V ; -- [XXXCO] :: please, take the fancy of, capture the affections of, be acceptable/agreed to; + conplaco_V2 : V2 ; -- [XXXFO] :: conciliate (greatly), placate; win the sympathy of; + conplanator_M_N : N ; -- [XXXFO] :: thing/one that makes smooth/level; (toothpaste); + conplano_V2 : V2 ; -- [XXXCO] :: make (ground) level/flat; smooth out (trouble); pull down, raze to the ground; + conplecto_V2 : V2 ; -- [XXXAO] :: |lay hold of, grip; seize; grasp, take in/up; sum up; include in scope, cover; + conplector_V : V ; -- [XXXAO] :: |lay hold of, grip; seize; grasp, take in/up; sum up; include in scope, cover; + conplementum_N_N : N ; -- [XXXEO] :: complement, something that fills out/up or completes; + conpleo_V2 : V2 ; -- [XXXAO] :: |finish, complete, perfect; make pregnant; fulfill, make up, complete, satisfy; + conpletus_A : A ; -- [XXXEO] :: complete, round off; filled full, full (L+S); perfect; + conplexio_F_N : N ; -- [XXXCO] :: encircling; combination, association, connection; summary, resume; dilemma; + conplexivus_A : A ; -- [XGXFO] :: connective, conjunctive; (grammar); serving for connecting (L+S); + conplexus_M_N : N ; -- [XXXAO] :: |sexual intercourse (w/Venerius/femineus); hand-to-hand fighting; stranglehold; + conplico_V2 : V2 ; -- [XXXCO] :: fold/tie up/together; roll/curl/double up, wind (round); involve; bend at joint; + conplodo_V2 : V2 ; -- [XXXCO] :: clap/strike (the hands) together, applaud (enthusiastically/with emotion); + conploratio_F_N : N ; -- [XXXCO] :: lamentation, (vocal) mourning; loud/violent complaint/bemoaning/bewailing (L+S); + conploratus_M_N : N ; -- [XXXEO] :: lamentation, (vocal) mourning; loud/violent complaint/bemoaning/bewailing (L+S); + conploro_V : V ; -- [XXXCO] :: bewail, bemoan; lament loudly/together/violently; despair of; morn for; + conpluor_V : V ; -- [DXXES] :: be rained upon; + conpluriens_Adv : Adv ; -- [XXXEO] :: several/many times, a good number of times; more than once; + conplurimus_A : A ; -- [XXXEO] :: great many (pl.), very many; + conplus_A : A ; -- [XXXCO] :: many (pl.), several, a fair/good number; + conplus_M_N : N ; -- [XXXCO] :: many/several people/men(pl.), a fair/good number of people; + conplus_N_N : N ; -- [XXXCO] :: many/several things/items(pl.), a fair/good number of things; + conplusculus_A : A ; -- [XXXCO] :: several (pl.), more than one; a good many (L+S); + conplusicule_Adv : Adv ; -- [XXXFO] :: fairly/pretty often, not infrequently; + conplut_V0 : V ; -- [XXXFO] :: rain-water runs/flows together/collects; it rains upon (L+S); + conpluviatus_A : A ; -- [XAXEO] :: shaped/square like a compluvium/inward-sloping roof; of vines on such frame; + conpluvium_N_N : N ; -- [XXXDO] :: inward-sloping central roof (guides rainwater to cistern); like frame for vines; + conpono_V2 : V2 ; -- [XXXAO] :: |construct, build; arrange, compile, compose, make up; organize, order; settle; + conportatio_F_N : N ; -- [XXXEO] :: transportation; bringing/carrying together (L+S); + conporto_V2 : V2 ; -- [XXXCO] :: carry, transport, bring in, convey (to market); bring together; amass, collect; + conpos_A : A ; -- [XXXBO] :: in possession/control/mastery of; sharing, guilty of, afflicted with; granted; + conposite_Adv : Adv ; -- [XXXCO] :: in orderly/skillful/well arranged/composed way; deliberately/regularly/properly; + conpositicius_A : A ; -- [XGXFO] :: compound (words); + conpositio_F_N : N ; -- [XXXBO] :: |agreement, pact; mixture (medicine); composition (music/prose); storing; + conposititius_A : A ; -- [XGXFS] :: compound (words); + conposito_Adv : Adv ; -- [XXXEO] :: by prearrangement; concertedly; + conpositor_M_N : N ; -- [XDXEO] :: writer, composer; orderer, arranger, disposer, maker (L+S); + conpositum_N_N : N ; -- [XXXEO] :: |settled/peaceful situation (pl.), security, law and order; + conpositura_F_N : N ; -- [XXXEO] :: assembling/fitting together; structure/assemblage; combination (words), syntax; + conpositus_A : A ; -- [XXXBO] :: |prepared/ready/fit, suitable/trained/qualified; calm, peaceful; mature, sedate; + conpostura_F_N : N ; -- [XXXEO] :: assembling/fitting together; structure/assemblage; combination (words), syntax; + conpostus_A : A ; -- [XXXBO] :: |prepared/ready/fit, suitable/trained/qualified; calm, peaceful; mature, sedate; + conpotatio_F_N : N ; -- [XXXES] :: drinking party; (translation of the Greek); a drink/drinking together (L+S); + conpotens_A : A ; -- [XEXIO] :: that is able (to grant a prayer); having power with one (epithet of Diana L+S); + conpotio_V2 : V2 ; -- [XXXDO] :: put in possession of, make partaker of; (PASS) attain; obtain, come into (L+S); + conpoto_V : V ; -- [XXXFO] :: drink together; + conpotor_M_N : N ; -- [XXXEO] :: drinking-companion/buddy; + conpotrix_F_N : N ; -- [XXXEO] :: drinking-companion (female); (bar girl?); + conpraecido_V2 : V2 ; -- [XXXFO] :: cut each other off; cut off at the same time (?) (L+S); + conpraes_M_N : N ; -- [DLXEO] :: joint-surety; + conpransor_M_N : N ; -- [XXXFO] :: table-companion; companion at a banquet; boon companion (L+S); + conprecatio_F_N : N ; -- [XEXEO] :: public supplication or prayers; common imploring of a deity (L+S); + conprecor_V : V ; -- [XEXCO] :: implore, invoke (gods); supplicate, pray that; pray for; pray to; + conprehendibilis_A : A ; -- [XXXEO] :: comprehensible, able to be grasped by the senses/intellect; that can be seized; + conprehendo_V2 : V2 ; -- [XXXAO] :: |embrace; include/cover/deal with (in speech/law); express (by term/symbol); + conprehensibilis_A : A ; -- [XXXEO] :: comprehensible, able to be grasped by the senses/intellect; that can be seized; + conprehensio_F_N : N ; -- [XXXBO] :: |comprehensive argument; dilemma; region, zone; scope, range; grouping (words); + conprehenso_V2 : V2 ; -- [XXXFO] :: seize in an embrace; embrace, hug; + conprendo_V2 : V2 ; -- [XXXAO] :: |embrace; include/cover/deal with (in speech/law); express (by term/symbol); + conprensio_F_N : N ; -- [XXXBO] :: |comprehensive argument; dilemma; region, zone; scope, range; grouping (words); + conpresse_Adv : Adv ; -- [XXXEO] :: brief, succinctly; urgently, insistently; + conpressio_F_N : N ; -- [XXXCO] :: squeezing, compression; sexual embrace, copulation; abridging, compression; + conpressor_M_N : N ; -- [XXXEO] :: ravisher, rapist; one who presses/compresses (L+S); + conpressus_A : A ; -- [XBXCO] :: constricted/narrow/pressed together; bound/tight (bowels), constipated, binding; + conpressus_M_N : N ; -- [XXXCO] :: compression, pressure; closing, pressing together; embracing/copulation; + conprimens_A : A ; -- [XXXEO] :: astringent; + conprimo_V2 : V2 ; -- [XXXAO] :: |suppress/control/stifle/frustrate/subdue/cow, put down; hold breath; silence; + conprobatio_F_N : N ; -- [XXXEO] :: approval; + conprobator_M_N : N ; -- [XXXFO] :: approver; + conprobo_V2 : V2 ; -- [XXXBO] :: approve, accept, sanction, ratify; prove, justify, confirm, attest, bear out; + conpromissarius_A : A ; -- [XLXEO] :: accepted as arbitrator by both parties (judge w/iudex); of arbitration; + conpromissum_N_N : N ; -- [XLXCO] :: joint undertaking guaranteed by deposit of money to abide by arbitration; + conpromitto_V2 : V2 ; -- [XXXCO] :: enter a promissum, agree to submit to an arbiter; agree to pay the award; + conpulsio_F_N : N ; -- [XLXFO] :: compulsion; (legal); urging (L+S); dunning; constraint; + conpulso_V2 : V2 ; -- [XXXFO] :: batter, pound; + conpungo_V2 : V2 ; -- [XXXEP] :: |cause repentance; feel remorse/contrition; inspire w/devotion; (PASS) repent; + conpurgo_V2 : V2 ; -- [XEXNS] :: purify completely/thoroughly; + conputabilis_A : A ; -- [XXXNO] :: calculable, computable; + conputatio_F_N : N ; -- [XSXCO] :: calculation, reckoning, computation; form/result of a particular calculation; + conputator_M_N : N ; -- [XXXFO] :: calculator, reckoner, accountant; + conputesco_V : V ; -- [XXXCO] :: decay, rot, putrefy; (completely); + conputo_V2 : V2 ; -- [XSXBO] :: reckon/compute/calculate, sum/count (up); take/include in reckoning; work out; + conputresco_V : V ; -- [XXXCO] :: decay, rot, putrefy; (completely); + conquadro_V : V ; -- [DXXES] :: agree with, be proportioned to; square to; + conquadro_V2 : V2 ; -- [XXXEO] :: make square, square; + conquaero_V2 : V2 ; -- [XXXBS] :: seek out; hunt/rake up; investigate; collect; search out/down/for diligently; + conquaestor_M_N : N ; -- [XWXCO] :: inspector, one who searches; recruiting officer; + conquassatio_F_N : N ; -- [XXXFO] :: shaking up; severe shaking (L+S); shattering; + conquasso_V2 : V2 ; -- [XXXCO] :: shake violently; break, shatter; unsettle, disturb, throw into confusion; + conquaterno_Adv : Adv ; -- [XAXFS] :: by fours (yoked oxen); in a team of four; + conqueror_V : V ; -- [XXXBO] :: bewail, lament, utter a complaint; complain of, deplore; + conquestio_F_N : N ; -- [EXXER] :: questioning; + conquestus_M_N : N ; -- [XXXEO] :: complaint (violent), (strenuous) complaining; + conquiesco_V : V ; -- [XXXBO] :: |be inactive; pause (speaking); relax; settle/quiet down; come to an end/cease; + conquietus_A : A ; -- [XXXIO] :: dead; still in death; + conquiliarius_M_N : N ; -- [XXXIO] :: dyer; purple-fisher; + conquinisco_V : V ; -- [XXXDO] :: cower down, crouch down; stoop; squat; + conquino_V2 : V2 ; -- [EXXCE] :: befoul/pollute/defile wholly (immorality); contaminate/taint/infect (w/disease); + conquiro_V2 : V2 ; -- [XXXBO] :: seek out; hunt/rake up; investigate; collect; search out/down/for diligently; + conquisite_Adv : Adv ; -- [XXXEO] :: carefully, painstakingly; with great pains (L+S); + conquisitio_F_N : N ; -- [EXXER] :: questioning; (Acts 15:7); + conquisitor_M_N : N ; -- [XWXCO] :: inspector, one who searches; recruiting officer; + conquisitus_A : A ; -- [XXXEO] :: select, chosen; sought out with great pains; costly (L+S); + conquistor_M_N : N ; -- [BWXCO] :: inspector, one who searches; recruiting officer; claqueur (theater) (L+S); + conrado_V2 : V2 ; -- [XXXCO] :: rake/sweep/draw together; amass with difficulty, scrape together; scrape off; + conrationalitas_F_N : N ; -- [DSXFS] :: analogy; + conrectio_F_N : N ; -- [XXXCO] :: amendment, rectification; improvement, correction; word substitution; reproof; + conrector_M_N : N ; -- [XXXDX] :: corrector/improver, reformer; one who sets things right; financial commissioner; + conrectura_F_N : N ; -- [DLXES] :: office of a corrector (financial commissioner/land bailiff); + conrectus_A : A ; -- [XXXEO] :: reformed (person); improved, amended, corrected (L+S); + conrecumbens_A : A ; -- [DXXFS] :: lying down with (anyone); + conregio_F_N : N ; -- [XEXEO] :: drawing of boundary lines (within which auspices may be taken); + conregionalis_M_N : N ; -- [DXXFS] :: adjoining/neighboring people; + conregno_V : V ; -- [DLXES] :: reign together with one; + conrepo_V : V ; -- [XXXCO] :: creep, crawl; slink, move stealthily; take to the bush; creep (of the flesh); + conrepte_Adv : Adv ; -- [XGXEO] :: shortly; with a short vowel or syllable; + conreptio_F_N : N ; -- [XXXCO] :: seizure/attack, onset (disease); rebuking/censure; shorting/decrease (in vowel); + conrepto_V : V ; -- [DXXCS] :: creep; + conreptor_M_N : N ; -- [DXXES] :: reprover, censurer, corrector; + conreptus_A : A ; -- [XGXEO] :: short; (of a syllable); + conresupinatus_A : A ; -- [DXXFS] :: bent backwards at the same time; + conresuscito_V2 : V2 ; -- [DEXES] :: raise up/from the dead together; + conreus_M_N : N ; -- [XLXFO] :: joint defendant; co-respondent; + conrideo_V : V ; -- [XXXFO] :: laugh together; laugh out loud (L+S); + conrigia_F_N : N ; -- [XXXEO] :: shoe-lace, thong for securing shoes to feet; thong of any kind; + conrigo_V2 : V2 ; -- [XXXBO] :: correct, set right; straighten; improve, edit, reform; restore, cure; chastise; + conripio_V2 : V2 ; -- [XXXAO] :: |censure/reproach/rebuke/chastise; shorten/abridge; hasten (upon); catch (fire); + conrivalis_M_N : N ; -- [XXXFS] :: joint rival; + conrivatio_F_N : N ; -- [XXXNO] :: leading/channeling (water) into the same channel/basin, collection; + conrivium_N_N : N ; -- [XXXNS] :: confluence of brooks/streams; + conrivo_V2 : V2 ; -- [XXXEO] :: lead/channel (water) into the same channel/basin, collect; + conroboramentum_N_N : N ; -- [DXXFS] :: means of strengthening; + conroboro_V2 : V2 ; -- [XXXBO] :: strengthen, harden, reinforce; corroborate; mature; make powerful, fortify; + conrodo_V2 : V2 ; -- [XXXDO] :: gnaw, gnaw away; chew up; gnaw to pieces (L+S); + conrogatio_F_N : N ; -- [DEXFS] :: bringing together; gathering, assembly (Ecc); collection; + conrogo_V2 : V2 ; -- [XXXCO] :: collect money by begging/entreaty; summon/invite (persons) to a gathering; + conrotundo_V2 : V2 ; -- [XXXDO] :: make round; round off; amass/make up a round sum of money; + conruda_F_N : N ; -- [XAXEO] :: wild asparagus; + conrugis_A : A ; -- [XXXFS] :: wrinkled, having wrinkles/folds; corrugated; + conrugo_V2 : V2 ; -- [XXXEO] :: make wrinkled; (make one turn up one's nose); corrugate; + conrugus_M_N : N ; -- [XTXNO] :: channel/canal/conduit/sluice constructed to bring wash water for ore (mining); + conrumpo_V2 : V2 ; -- [XXXAO] :: |pervert, corrupt, deprave; bribe, suborn; seduce, tempt, beguile; falsify; + conrumptela_F_N : N ; -- [XXXCS] :: |seduction/seducing; enticement to sexual misconduct; brothel/place of seduction + conruo_V2 : V2 ; -- [XXXBO] :: |topple (houses); subside (ground); rush/sweep together; overthrow; + conrupte_Adv : Adv ; -- [XXXCO] :: incorrectly; perversely; in bad style/depraved manner; licentiously, corruptly; + conruptela_F_N : N ; -- [XXXCO] :: |seduction/seducing; enticement to sexual misconduct; brothel/place of seduction + conruptibilis_A : A ; -- [DXXES] :: corruptible, liable to decay, perishable; + conruptibilitas_F_N : N ; -- [DEXFS] :: corruptibility, perishability; + conruptio_F_N : N ; -- [XXXDO] :: corruption; bribery, seduction from loyalty; diseased/corrupt condition; + conruptive_Adv : Adv ; -- [DEXFS] :: corruptibly; perishably; + conruptivus_A : A ; -- [DEXFS] :: corruptible; perishable; + conruptor_M_N : N ; -- [XXXDX] :: corruptor, briber; seducer, ravisher; one who ruins/spoils/spreads infection; + conruptorius_A : A ; -- [DXXFS] :: destructible; corruptible, perishable; + conruptrix_A : A ; -- [XXXFO] :: tending to deprave/corrupt, corruptive; + conruptrix_F_N : N ; -- [DXXES] :: she who corrupts/seduces; + conruptum_N_N : N ; -- [XBXFS] :: corrupted parts (pl.) (of the body); + conruptus_A : A ; -- [XXXCO] :: |incorrect/improper/disorderly; impure/adulterated/changed for worse; seditious; + conruspor_V : V ; -- [XXXEO] :: search for, seek out; search carefully after (L+S); + conrutundo_V2 : V2 ; -- [XXXDO] :: make round; round off; amass/make up a round sum of money; + cons_N : N ; -- [CLICO] :: consul (the highest elected Roman official); abb. cons./cos.; consacerdos_F_N : N ; -- [DEXFO] :: fellow-priest/priestess; - consacerdos_M_N : N ; - consacraneus_A : A ; - consacraneus_M_N : N ; - consacratio_F_N : N ; - consacrator_M_N : N ; - consacratrix_F_N : N ; - consacratus_A : A ; - consacro_V2 : V2 ; - consaepio_V2 : V2 ; - consaepto_V2 : V2 ; - consaeptum_N_N : N ; - consaeptus_M_N : N ; - consalutatio_F_N : N ; - consaluto_V2 : V2 ; - consanesco_V : V ; - consanguinea_F_N : N ; - consanguineus_A : A ; - consanguineus_C_N : N ; - consanguinitas_F_N : N ; - consano_V2 : V2 ; - consarcino_V2 : V2 ; - consario_V2 : V2 ; - consarrio_V2 : V2 ; - consatio_F_N : N ; - consaucio_V2 : V2 ; - consavio_V2 : V2 ; - consavior_V : V ; - consceleratus_A : A ; - consceleratus_M_N : N ; - conscelero_V2 : V2 ; - conscendo_V2 : V2 ; - conscensio_F_N : N ; - conscensus_M_N : N ; - conscia_C_N : N ; - conscientia_F_N : N ; - conscindo_V2 : V2 ; - conscio_V2 : V2 ; - conscisco_V2 : V2 ; - conscissio_F_N : N ; - conscius_A : A ; - conscius_C_N : N ; - conscreor_V : V ; - conscribillo_V2 : V2 ; - conscribo_V2 : V2 ; - conscribtor_M_N : N ; - conscriptio_F_N : N ; - conscriptor_M_N : N ; - conscriptus_M_N : N ; - conseco_V2 : V2 ; - consecor_V : V ; - consecraneus_A : A ; - consecraneus_M_N : N ; - consecratio_F_N : N ; - consecrator_M_N : N ; - consecratorius_A : A ; - consecratrix_F_N : N ; - consecratus_A : A ; - consecro_V2 : V2 ; - consectandus_A : A ; - consectaneus_A : A ; - consectaneus_M_N : N ; - consectarium_N_N : N ; - consectarius_A : A ; - consectatio_F_N : N ; - consectator_M_N : N ; - consectatrix_F_N : N ; - consectio_F_N : N ; - consector_V : V ; - consecue_Adv : Adv ; - consecutio_F_N : N ; - consedo_M_N : N ; - consedo_V2 : V2 ; - conseminalis_A : A ; - consemineus_A : A ; - conseminia_F_N : N ; - consenesco_V : V ; - consenior_M_N : N ; - consensio_M_N : N ; - consensualis_A : A ; - consensus_A : A ; - consensus_M_N : N ; - consentaneum_N_N : N ; - consentaneus_A : A ; - consentiens_A : A ; - consentio_V2 : V2 ; - consentium_N_N : N ; - consepelio_V2 : V2 ; - consepio_V2 : V2 ; - consepto_V2 : V2 ; - conseptum_N_N : N ; - conseptus_M_N : N ; - conseque_Adv : Adv ; - consequens_A : A ; - consequens_N_N : N ; - consequenter_Adv : Adv ; - consequentia_F_N : N ; - consequia_F_N : N ; - consequius_A : A ; - consequius_M_N : N ; - consequor_V : V ; - consequtio_F_N : N ; - consequus_A : A ; - conserba_F_N : N ; - consermonor_V : V ; - consero_V2 : V2 ; - conserte_Adv : Adv ; - consertio_F_N : N ; - conserva_F_N : N ; - conservabilis_A : A ; - conservans_A : A ; - conservatio_F_N : N ; - conservativismus_M_N : N ; - conservativus_A : A ; - conservator_M_N : N ; - conservatorium_N_N : N ; - conservatrix_F_N : N ; - conservitium_N_N : N ; - conservo_V : V ; - conservula_F_N : N ; - conservus_M_N : N ; - consessor_M_N : N ; - consessus_M_N : N ; - consideranter_Adv : Adv ; - considerantia_F_N : N ; - considerate_Adv : Adv ; - consideratio_F_N : N ; - considerator_M_N : N ; - consideratus_A : A ; - considero_V2 : V2 ; - considium_N_N : N ; - consido_V : V ; - consignate_Adv : Adv ; - consignatio_F_N : N ; - consignatorium_N_N : N ; - consignifico_V : V ; - consigno_V2 : V2 ; - consilatio_F_N : N ; - consilesco_V : V ; - consiliaris_M_N : N ; - consiliarius_A : A ; - consiliarius_M_N : N ; - consiliator_M_N : N ; - consiliatrix_F_N : N ; - consiligo_F_N : N ; - consilior_V : V ; - consiliosus_A : A ; - consilium_N_N : N ; - consimile_N_N : N ; - consimilis_A : A ; - consimiliter_Adv : Adv ; - consimilo_V2 : V2 ; - consipio_V : V ; - consipio_V2 : V2 ; - consiptum_N_N : N ; - consistentia_F_N : N ; - consistio_F_N : N ; - consisto_V2 : V2 ; - consistorialis_A : A ; - consistorianus_A : A ; - consistorianus_M_N : N ; - consistorium_N_N : N ; - consitor_M_N : N ; - consitura_F_N : N ; - consitus_A : A ; - consobrina_F_N : N ; - consobrinus_M_N : N ; - consocer_M_N : N ; - consocia_F_N : N ; - consociabilis_A : A ; - consociatim_Adv : Adv ; - consociatio_F_N : N ; - consociatus_A : A ; - consocio_V : V ; - consocius_A : A ; - consocius_M_N : N ; - consocrus_F_N : N ; - consol_M_N : N ; - consolabilis_A : A ; - consolamen_N_N : N ; - consolatio_F_N : N ; - consolativus_A : A ; - consolator_M_N : N ; - consolatorie_Adv : Adv ; - consolatorius_A : A ; - consolida_F_N : N ; - consolidatio_F_N : N ; - consolidator_M_N : N ; - consolido_V2 : V2 ; - consolo_V2 : V2 ; - consolor_V : V ; - consoltum_N_N : N ; - consolutus_A : A ; - consomnio_V2 : V2 ; - consona_F_N : N ; - consonans_A : A ; - consonans_F_N : N ; - consonanter_Adv : Adv ; - consonantia_F_N : N ; - consonatio_F_N : N ; - consone_Adv : Adv ; - consono_V : V ; - consonus_A : A ; - consopio_V2 : V2 ; - consors_A : A ; + consacerdos_M_N : N ; -- [DEXFO] :: fellow-priest/priestess; + consacraneus_A : A ; -- [XLXIS] :: bound by the same (military) oath; + consacraneus_M_N : N ; -- [XLXIO] :: one united/bound by the same (military) oath; + consacratio_F_N : N ; -- [XEXCO] :: consecration, dedication; making sacred; deification; devoting person to a god; + consacrator_M_N : N ; -- [DEXES] :: one who consecrates/dedicates/makes sacred; + consacratrix_F_N : N ; -- [DEXFS] :: she who consecrates/dedicates/makes sacred; + consacratus_A : A ; -- [XEXFS] :: consecrated, holy, sacred; + consacro_V2 : V2 ; -- [XEXBO] :: consecrate/dedicate, set apart; hallow, sanctify; deify; curse; vow to a god; + consaepio_V2 : V2 ; -- [XXXCO] :: surround with a wall/fence/hedge; enclose, fence; fence/hedge in; + consaepto_V2 : V2 ; -- [DXXFS] :: surround with a wall/fence/hedge; enclose, fence; fence/hedge in; + consaeptum_N_N : N ; -- [XXXCO] :: enclosure; precinct; fenced/hedged off area; fence/hedge (L+S); + consaeptus_M_N : N ; -- [XXXES] :: hedging in; fencing around; constraining; + consalutatio_F_N : N ; -- [XXXDO] :: greeting; exchange of greetings; several mutual salutations (L+S); + consaluto_V2 : V2 ; -- [XXXCO] :: hail/greet/salute (as); exchange greetings; greet/salute cordially (L+S); + consanesco_V : V ; -- [XBXEO] :: heal up (wounds/plants); be healed (persons); become whole/sound/well (L+S); + consanguinea_F_N : N ; -- [XXXCS] :: sister; kin, blood relation; kindred/relations (pl.); + consanguineus_A : A ; -- [XXXCO] :: of the same blood; related by blood; kindred; fraternal; brotherly/sisterly; + consanguineus_C_N : N ; -- [XXXCO] :: kinsman, blood relation; brother (M); a sister (F); kindred/relations (pl.); + consanguinitas_F_N : N ; -- [XXXCO] :: blood-relationship/kinship/consanguinity; (esp. between brothers/sisters L+S); + consano_V2 : V2 ; -- [XBXEO] :: heal; make whole; make wholly sound (L+S); + consarcino_V2 : V2 ; -- [XXXEO] :: stitch/sew/patch together; + consario_V2 : V2 ; -- [XAXEO] :: hoe thoroughly/to pieces; rake (L+S); + consarrio_V2 : V2 ; -- [XAXEO] :: hoe thoroughly/to pieces; hoe; weed (crops); dig over (land); rake (L+S); + consatio_F_N : N ; -- [DXXFS] :: procreation; + consaucio_V2 : V2 ; -- [XWXEO] :: injure, wound severely; + consavio_V2 : V2 ; -- [XXXFO] :: cover with kisses; kiss affectionately (L+S); + consavior_V : V ; -- [XXXFO] :: cover with kisses; kiss affectionately (L+S); + consceleratus_A : A ; -- [XXXCS] :: wicked, depraved; criminal; (person/actions); + consceleratus_M_N : N ; -- [XXXEO] :: wicked/depraved person; criminal; villain (L+S); + conscelero_V2 : V2 ; -- [XXXEO] :: stain with crime, pollute with guilt, dishonor, disgrace by wicked conduct; + conscendo_V2 : V2 ; -- [XXXBO] :: climb up, ascend, scale; rise to; mount (horse); board (ship)/embark/set out; + conscensio_F_N : N ; -- [XXXFO] :: embarkation; setting out; ascending into (L+S); mounting up; + conscensus_M_N : N ; -- [DEXFS] :: ascending, mounting; + conscia_C_N : N ; -- [EXXFE] :: accomplice, accessory; partner; confidante; one privy to (crime/plot); witness; + conscientia_F_N : N ; -- [XXXBO] :: (joint) knowledge, complicity (of crime); conscience; sense of guilt, remorse; + conscindo_V2 : V2 ; -- [XXXCO] :: rend/tear to pieces, destroy by tearing; slaughter, cut to pieces; + conscio_V2 : V2 ; -- [XXXEO] :: feel guilty; be conscious of (wrong); have on conscience; know well (late); + conscisco_V2 : V2 ; -- [XXXCO] :: ordain/decree/determine/resolve; decide/inflict on; bring on oneself (w/sibi); + conscissio_F_N : N ; -- [DEXFS] :: tearing to pieces, rending asunder; + conscius_A : A ; -- [XXXBO] :: conscious, aware of, knowing, privy (to); sharing (secret) knowledge; guilty; + conscius_C_N : N ; -- [XXXDO] :: accomplice, accessory; partner; confidante; one privy to (crime/plot); witness; + conscreor_V : V ; -- [XXXFO] :: clear the throat/voice; hawk (much); + conscribillo_V2 : V2 ; -- [XXXEO] :: scrawl/scribble over/upon, cover with scribbling; mark by beating (L+S); + conscribo_V2 : V2 ; -- [XXXBO] :: enroll/enlist/raise (army); write on/down, commit to/cover with writing; compose + conscribtor_M_N : N ; -- [XGXFO] :: author; framer; + conscriptio_F_N : N ; -- [XGXEO] :: account/written record/writing; treatise/composition; conscription/troop levy; + conscriptor_M_N : N ; -- [XGXEO] :: author; framer; composer; writer; + conscriptus_M_N : N ; -- [XLXCO] :: senator/counselor; enrolling of the people for the purpose of bribery (L+S); + conseco_V2 : V2 ; -- [XXXCO] :: dismember, chop/cut up/short/off/in pieces/deep; prune/top; lacerate; intersect; + consecor_V : V ; -- [EXXEZ] :: follow, go after; attend on; pursue; catch up with, overtake; follow up; + consecraneus_A : A ; -- [XLXIS] :: bound by the same (military) oath; + consecraneus_M_N : N ; -- [XLXIO] :: one united/bound by the same (military) oath; + consecratio_F_N : N ; -- [XEXCO] :: consecration, dedication; making sacred; deification; devoting person to a god; + consecrator_M_N : N ; -- [DEXES] :: one who consecrates/dedicates/makes sacred; + consecratorius_A : A ; -- [DEXFE] :: consecratory; has attribute of consecrating or making sacred/holy; + consecratrix_F_N : N ; -- [DEXFS] :: she who consecrates/dedicates/makes sacred; + consecratus_A : A ; -- [XEXFS] :: consecrated, holy, sacred; + consecro_V2 : V2 ; -- [XEXBO] :: consecrate/dedicate, set apart; hallow, sanctify; deify; curse; vow to a god; + consectandus_A : A ; -- [XXXFO] :: cropped, cut short; + consectaneus_A : A ; -- [DXXES] :: following eagerly after; hanging upon; + consectaneus_M_N : N ; -- [DXXES] :: adherent, follower; one following eagerly after/hanging upon; + consectarium_N_N : N ; -- [XGXFO] :: conclusions (pl.); inferences; + consectarius_A : A ; -- [XGXEO] :: conclusive; effecting proof (syllogism); following logically, consequent (L+S); + consectatio_F_N : N ; -- [XXXEO] :: striving, striving after, (eager) pursuit; + consectator_M_N : N ; -- [DXXFS] :: one who pursues/strives after; adherent, friend; + consectatrix_F_N : N ; -- [XXXFO] :: one who pursues/strives after; adherent, friend; + consectio_F_N : N ; -- [XXXFO] :: cutting/cleaving up/to pieces; + consector_V : V ; -- [XXXBO] :: |hunt down, overtake, seek out (to destroy); attack/inveigh against; persecute; + consecue_Adv : Adv ; -- [XXXFO] :: consequently; consecutively?; + consecutio_F_N : N ; -- [XXXCO] :: |investigation of consequences/effects; acquiring/obtaining (L+S); attainment; + consedo_M_N : N ; -- [XLXFO] :: assessor?; one who sits by (to advise?); + consedo_V2 : V2 ; -- [XXXFO] :: stop, check, allay; still, quiet (L+S); + conseminalis_A : A ; -- [XAXEO] :: planted/sown with several varieties (of vines/trees/seeds); + consemineus_A : A ; -- [XAXEO] :: planted/sown with several varieties (of vines/trees/seeds); + conseminia_F_N : N ; -- [XAXNO] :: kind of vine; + consenesco_V : V ; -- [XXXBO] :: ||lose force, become invalid, fall into disuse; become of no account; + consenior_M_N : N ; -- [DEXFS] :: fellow-elder; fellow-presbyter; + consensio_M_N : N ; -- [XXXCO] :: agreement (opinion), consent, accordance, harmony; unanimity; plot, conspiracy; + consensualis_A : A ; -- [GXXEK] :: consensual; + consensus_A : A ; -- [DXXFS] :: agreed upon; + consensus_M_N : N ; -- [XXXBO] :: |general consensus; custom; combined action; [concensu => by general consent]; + consentaneum_N_N : N ; -- [XXXCS] :: concurrent circumstances (pl.); [~ est => it is fitting/reasonable/consistent]; + consentaneus_A : A ; -- [XXXCO] :: agreeable; consistent/appropriate/fitting; in harmony with (L+S); + consentiens_A : A ; -- [XXXCO] :: unanimous; harmonious, agreeing closely; consistent; favorable; + consentio_V2 : V2 ; -- [XXXAO] :: ||agree, consent; fit/be consistent/in sympathy/unison with; favor; assent to; + consentium_N_N : N ; -- [XEXFS] :: (sacred) rites (pl.) established by common agreement (w/sacra); + consepelio_V2 : V2 ; -- [EXXFE] :: bury with; + consepio_V2 : V2 ; -- [XXXCO] :: surround with a wall/fence/hedge; enclose, fence; fence/hedge in; + consepto_V2 : V2 ; -- [DXXFS] :: surround with a wall/fence/hedge; enclose, fence; fence/hedge in; + conseptum_N_N : N ; -- [XXXCO] :: enclosure; precinct; fenced/hedged off area; fence/hedge (L+S); + conseptus_M_N : N ; -- [XXXES] :: hedging in; fencing around; constraining; + conseque_Adv : Adv ; -- [XXXFO] :: consequently; consecutively?; + consequens_A : A ; -- [XXXBO] :: subsequent/later; as a logical consequence; reasonable/consistent; analogous; + consequens_N_N : N ; -- [XXXCS] :: (logical) consequence; analogy?; (strange form, Cicero uses as neuter); + consequenter_Adv : Adv ; -- [XXXCO] :: consequently/as a result; appropriate/aptly; in accordance with/agreeable to; + consequentia_F_N : N ; -- [XXXCO] :: logical consequence; succession/sequence/progression (of events); analogy; + consequia_F_N : N ; -- [DXXES] :: consequence; retinue; rear guard; + consequius_A : A ; -- [XXXFO] :: which follows or is in attendance; + consequius_M_N : N ; -- [XXXFO] :: who(/that which) follows or is in attendance; + consequor_V : V ; -- [XXXAO] :: ||seek after, aim at; achieve, reach; obtain; acquire, gain; grasp/comprehend; + consequtio_F_N : N ; -- [XXXCS] :: |investigation of consequences/effects; acquiring/obtaining (L+S); attainment; + consequus_A : A ; -- [XXXCS] :: following; + conserba_F_N : N ; -- [BXXIO] :: fellow-slave (female); (sometimes informal wife); + consermonor_V : V ; -- [XXXFO] :: talk, converse; + consero_V2 : V2 ; -- [XXXCO] :: sow, plant (field/crops/seeds/tree), set; breed; sow/strew plentifully/thickly; + conserte_Adv : Adv ; -- [XXXFO] :: in a connected manner; as if bound/fastened together (L+S); + consertio_F_N : N ; -- [DXXFS] :: joining together; + conserva_F_N : N ; -- [BXXCO] :: fellow-slave (female); (sometimes informal wife); + conservabilis_A : A ; -- [DXXES] :: that can be preserved; + conservans_A : A ; -- [XXXFS] :: preservative (w/GEN); + conservatio_F_N : N ; -- [XXXCO] :: preservation, conservation, keeping (intact); observance/maintenance (duty); + conservativismus_M_N : N ; -- [GXXEK] :: conservatism; + conservativus_A : A ; -- [GXXEK] :: conservative (politics); + conservator_M_N : N ; -- [XXXCO] :: keeper, one who preserves; defender; savior; worshiper (late) (L+S); + conservatorium_N_N : N ; -- [EAXCT] :: greenhouse; + conservatrix_F_N : N ; -- [XXXDO] :: keeper (female), one who preserves/defends; protectress; + conservitium_N_N : N ; -- [BXXES] :: joint servitude/slavery; the fellow-slaves (late); + conservo_V : V ; -- [XXXBO] :: keep safe/intact, save (from danger); preserve, maintain; spare; keep/observe; + conservula_F_N : N ; -- [XXXFS] :: small fellow-slave (female); + conservus_M_N : N ; -- [XXXCO] :: fellow-slave; companion in servitude (L+S); + consessor_M_N : N ; -- [XXXCO] :: companion, one who sits near (at assembly/gathering); fellow juror; assessor; + consessus_M_N : N ; -- [XXXCO] :: assembly/gathering/meeting; audience; court; the right to a place, seat; + consideranter_Adv : Adv ; -- [XXXDS] :: carefully, with consideration; in a deliberate considerate manner (L+S); + considerantia_F_N : N ; -- [XXXFO] :: consideration, reflection, due thought; + considerate_Adv : Adv ; -- [XXXDO] :: carefully, cautiously, considerately; upon consideration; + consideratio_F_N : N ; -- [XXXDO] :: gaze/inspection/act of looking; mental examination/contemplation/consideration; + considerator_M_N : N ; -- [XXXFO] :: one who examines/considers/reflects on a problem; + consideratus_A : A ; -- [XXXCO] :: thought out, careful, considered (thing); cautious/deliberate/careful (person); + considero_V2 : V2 ; -- [XXXBO] :: examine/look at/inspect; consider closely, reflect on/contemplate; investigate; + considium_N_N : N ; -- [XLXFO] :: court of justice; + consido_V : V ; -- [XXXDO] :: |encamp/bivouac; take up a position; stop/stay, make one's home, settle; lodge; + consignate_Adv : Adv ; -- [XXXEO] :: aptly; expressively; in a distinct manner, plainly, distinctly (L+S); + consignatio_F_N : N ; -- [XLXDO] :: affixing a seal/sealing/authentication; sealed/attested document; written proof; + consignatorium_N_N : N ; -- [EEXFE] :: room in which confirmation was administered; + consignifico_V : V ; -- [FGXFM] :: be significant; convey extra meaning; + consigno_V2 : V2 ; -- [XXXCO] :: (fix a) seal; put on record; indicate precisely/establish; attest/authenticate; + consilatio_F_N : N ; -- [DXXFS] :: consulting, consult; counseling, advice; + consilesco_V : V ; -- [BXXEO] :: fall silent; become still; be hushed (L+S); keep silent; grow dumb; + consiliaris_M_N : N ; -- [DXXFO] :: counsel, advice; counseling; + consiliarius_A : A ; -- [XXXDO] :: counseling, advising; suitable for counsel (L+S); + consiliarius_M_N : N ; -- [XXXCO] :: counselor/adviser; sharer of counsels; assessor; consilium princips member; + consiliator_M_N : N ; -- [XXXDO] :: counselor, adviser; sharer in the counsels (of); epithet of Jupiter (L+S); + consiliatrix_F_N : N ; -- [XXXFO] :: adviser (female); she who counsels (L+S); + consiligo_F_N : N ; -- [XBXEO] :: medicinal herb (Pulmonaria officinalis), lugwort (or green hellebore); + consilior_V : V ; -- [XXXCO] :: take counsel, consult; deliberate; advise, give advice; + consiliosus_A : A ; -- [XXXDS] :: instructive; giving good advice; full of prudence/wisdom, considerate (L+S); + consilium_N_N : N ; -- [XXXAO] :: |||intelligence, sense, capacity for judgment/invention; mental ability; choice; + consimile_N_N : N ; -- [XXXEO] :: similar things (pl.); and the like (L+S); + consimilis_A : A ; -- [XXXCO] :: like, very similar; similar in all respects (L+S); + consimiliter_Adv : Adv ; -- [XXXFO] :: (very) similarly; in a like manner (L+S); + consimilo_V2 : V2 ; -- [DXXES] :: compare; + consipio_V : V ; -- [XXXEO] :: be sane, be in one's right mind; be of sound mind (L+S); + consipio_V2 : V2 ; -- [BXXCO] :: surround with a wall/fence/hedge; enclose, fence; fence/hedge in; + consiptum_N_N : N ; -- [BXXCO] :: enclosure; precinct; fenced/hedged off area; + consistentia_F_N : N ; -- [GXXEK] :: consistence; + consistio_F_N : N ; -- [XXXFO] :: action of standing in place; a standing still (L+S); [~ loci => in a place]; + consisto_V2 : V2 ; -- [XXXAO] :: |||come about, exist; fall due (tax); be established; remain valid/applicable; + consistorialis_A : A ; -- [EEXFE] :: consistorial, by/pertaining to a consistory/(ecclesiastical) assembly/court; + consistorianus_A : A ; -- [DLXFS] :: of/pertaining to the emperor's cabinet; of (ecclesiastical) assembly/court; + consistorianus_M_N : N ; -- [DLXES] :: assessor, aid in council; (in emperor's council); + consistorium_N_N : N ; -- [EEXEE] :: |consistory, (ecclesiastical) assembly/court; Cardinals presided over by Pope; + consitor_M_N : N ; -- [XAXEO] :: sower, planter; + consitura_F_N : N ; -- [XAXFO] :: planting/sowing of land; + consitus_A : A ; -- [XXXIO] :: laid to rest (in a tomb), "planted"; + consobrina_F_N : N ; -- [XXXEO] :: first cousin (female); (on mother's side); children of sisters (L+S); relation; + consobrinus_M_N : N ; -- [XXXCO] :: first cousin (male); (on mother's side); children of sisters (L+S); relation; + consocer_M_N : N ; -- [XXXEO] :: one's child's father-in-law; one of two joint fathers-in-law (L+S); + consocia_F_N : N ; -- [DXXFS] :: companion (female); consort; + consociabilis_A : A ; -- [DXXFS] :: compatible, suitable; + consociatim_Adv : Adv ; -- [DXXFS] :: together, unitedly, jointly; + consociatio_F_N : N ; -- [XXXEO] :: association, union; associating, uniting; + consociatus_A : A ; -- [XXXEO] :: closely linked/associated; united (L+S); agreeing, harmonious; + consocio_V : V ; -- [XXXCO] :: associate/join/unite (in), share; bring in close relation/alliance/partnership; + consocius_A : A ; -- [DXXFS] :: united; connected; + consocius_M_N : N ; -- [DXXES] :: partaker; aid; companion; associate, ally (Bee); + consocrus_F_N : N ; -- [XXXES] :: one's child's mother-in-law; one of two joint mothers-in-law (L+S); + consol_M_N : N ; -- [BLXIS] :: consul (highest elected Roman official - 2/year); supreme magistrate elsewhere; + consolabilis_A : A ; -- [XXXEO] :: consolable, admitting of consolation; consolatory, bringing consolation; + consolamen_N_N : N ; -- [DXXFS] :: consolation; + consolatio_F_N : N ; -- [DXXES] :: |confirming; establishing of ownership; + consolativus_A : A ; -- [DXXFS] :: comforting; consolatory; + consolator_M_N : N ; -- [XXXEO] :: comforter, consoler; one who comforts/consoles; + consolatorie_Adv : Adv ; -- [DXXFS] :: in a consolatory/comforting manner; + consolatorius_A : A ; -- [XXXEO] :: consolatory, consoling; [~ literae => letters of consolation]; + consolida_F_N : N ; -- [DAXFS] :: plant; black briony, comfrey; (also called conferva); + consolidatio_F_N : N ; -- [XLXFO] :: merging of usufruct (temporary use/possession) in property, consolidation; + consolidator_M_N : N ; -- [DXXFS] :: confirmer; fortifier; + consolido_V2 : V2 ; -- [XXXEO] :: solidify, make solid/thick; merge (usufruct) attached property, consolidate; + consolo_V2 : V2 ; -- [XXXDO] :: console, cheer, comfort; (PASS) console oneself, take comfort; + consolor_V : V ; -- [XXXCO] :: console, (be source of) comfort/solace; soothe; alleviate/allay/assuage (grief); + consoltum_N_N : N ; -- [XXXCO] :: decision/resolution/plan; decree (of senate/other authority); oracular response; + consolutus_A : A ; -- [DSXEO] :: dissolved together; + consomnio_V2 : V2 ; -- [BXXFS] :: dream of; + consona_F_N : N ; -- [DGXES] :: consonant; (letter not a vowel); + consonans_A : A ; -- [XXXDO] :: agreeing; sounding in accord; fitting, suitable, appropriate; + consonans_F_N : N ; -- [XGXEO] :: consonant; (letter not a vowel); + consonanter_Adv : Adv ; -- [XXXFO] :: concordantly; in concord/agreement; agreeably (L+S); consonantly, harmoniously; + consonantia_F_N : N ; -- [XDXEO] :: concord, consonance (music); harmony (of spoken sounds); agreement (L+S); + consonatio_F_N : N ; -- [DXXFS] :: resemblance of sound; + consone_Adv : Adv ; -- [XXXFO] :: in unison, (sounding) together; harmoniously (L+S); + consono_V : V ; -- [XXXCO] :: sound/utter/make noise together, harmonize; resound/re-echo; agree; + consonus_A : A ; -- [XXXCO] :: sounding together; harmonious; having common sound; agreeing; unanimous; fit; + consopio_V2 : V2 ; -- [XXXCO] :: lull/put to sleep, make unconscious; stupefy, benumb; make obsolete; + consors_A : A ; -- [XXXDO] :: sharing inheritance/property; shared, in common; kindred, brotherly, sisterly; 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 ; - consortium_N_N : N ; - conspargo_V2 : V2 ; - consparsio_F_N : N ; - conspatians_A : A ; - conspectio_F_N : N ; - conspector_M_N : N ; - conspectus_A : A ; - conspectus_M_N : N ; - conspelio_V2 : V2 ; - conspergo_V2 : V2 ; - conspersio_F_N : N ; - conspicabilis_A : A ; - conspicabundus_A : A ; - conspiciendus_A : A ; - conspiciens_A : A ; - conspicientia_F_N : N ; - conspicillium_N_N : N ; - conspicillum_N_N : N ; - conspicio_F_N : N ; - conspicio_V2 : V2 ; - conspicor_V : V ; - conspicuus_A : A ; - conspirate_Adv : Adv ; - conspiratio_F_N : N ; - conspiratus_A : A ; - conspiratus_M_N : N ; - conspiro_V : V ; - conspiro_V2 : V2 ; - conspissatio_F_N : N ; - conspissatus_A : A ; - conspisso_V2 : V2 ; - consplendesco_V : V ; - conspolio_V2 : V2 ; - conspolium_N_N : N ; - conspondeo_V : V ; - consponsata_F_N : N ; - consponsor_M_N : N ; - consponsus_A : A ; - conspultus_A : A ; - conspuo_V : V ; - conspuo_V2 : V2 ; - conspurcatus_A : A ; - conspurco_V2 : V2 ; - consputo_V2 : V2 ; - conss_N : N ; - constabilarius_M_N : N ; - constabilio_V2 : V2 ; - constabularius_M_N : N ; - constagno_V : V ; - constans_A : A ; - constanter_Adv : Adv ; - constantia_F_N : N ; - constat_V0 : V ; - constellatio_F_N : N ; - constellatus_A : A ; - consternatio_F_N : N ; - consternatus_A : A ; - consterno_V2 : V2 ; - constibilis_A : A ; - constipatio_F_N : N ; - constipo_V2 : V2 ; - constitio_F_N : N ; - constituo_V2 : V2 ; - constitutio_F_N : N ; - constitutionarius_M_N : N ; - constitutivus_A : A ; - constitutor_M_N : N ; - constitutorius_A : A ; - constitutum_N_N : N ; - constitutus_A : A ; - constitutus_M_N : N ; - consto_V : V ; - constratum_N_N : N ; - constratus_A : A ; - constrepo_V : V ; - constricte_Adv : Adv ; - constrictio_F_N : N ; - constrictive_Adv : Adv ; - constrictivus_A : A ; - constricto_V2 : V2 ; - constrictura_F_N : N ; - constrictus_A : A ; - constringo_V2 : V2 ; - constructio_F_N : N ; - construo_V2 : V2 ; - constupeo_V : V ; - constuprator_M_N : N ; - constupro_V2 : V2 ; - consuadeo_V2 : V2 ; - consuasor_M_N : N ; - consuavio_V2 : V2 ; - consuavior_V : V ; - consubigo_V2 : V2 ; - consubstantialis_A : A ; - consubstantialitas_F_N : N ; - consubstantivus_A : A ; - consucidus_A : A ; - consudasco_V : V ; - consudesco_V : V ; - consudo_V : V ; - consuefacio_V2 : V2 ; - consuefio_V : V ; - consueo_V2 : V2 ; - consuesco_V2 : V2 ; - consuete_Adv : Adv ; - consuetio_F_N : N ; - consuetudinarie_Adv : Adv ; - consuetudinarius_A : A ; - consuetudo_F_N : N ; - consuetus_A : A ; - consul_M_N : N ; - consulans_M_N : N ; - consularis_A : A ; - consularitas_F_N : N ; - consulariter_Adv : Adv ; - consularius_A : A ; - consulatus_M_N : N ; - consulo_V2 : V2 ; - consultatio_F_N : N ; - consultator_M_N : N ; - consultatorius_A : A ; - consultatum_N_N : N ; - consulte_Adv : Adv ; - consultivus_A : A ; - consulto_Adv : Adv ; - consulto_V : V ; - consultor_M_N : N ; - consultor_V : V ; - consultrix_F_N : N ; - consultum_N_N : N ; - consultus_A : A ; - consultus_M_N : N ; - consum_V : V ; - consummabilis_A : A ; - consummatio_F_N : N ; - consummator_M_N : N ; - consummatus_A : A ; - consummo_V : V ; - consumo_V2 : V2 ; - consumptibilis_A : A ; - consumptio_F_N : N ; - consumptivus_A : A ; - consumptor_M_N : N ; - consumptrix_F_N : N ; - consuo_V2 : V2 ; - consupplicatrix_F_N : N ; - consurgo_V : V ; - consurrectio_F_N : N ; - consusrro_V : V ; - consutilis_A : A ; - consutum_N_N : N ; - contabefacio_V2 : V2 ; - contabesco_V : V ; - contabulatio_F_N : N ; - contabulo_V2 : V2 ; - contactrum_N_N : N ; - contactus_M_N : N ; - contages_F_N : N ; - contagio_F_N : N ; - contagiosus_A : A ; - contagium_N_N : N ; - contamen_N_N : N ; - contaminabilus_A : A ; - contaminatio_F_N : N ; - contaminator_M_N : N ; - contaminatum_N_N : N ; - contaminatus_A : A ; - contaminatus_M_N : N ; - contamino_V2 : V2 ; - contans_A : A ; - contarius_M_N : N ; - contatio_F_N : N ; - contator_M_N : N ; - contatus_M_N : N ; - contechnor_V : V ; - contego_V2 : V2 ; - contemero_V2 : V2 ; - contemnendus_A : A ; - contemnenter_Adv : Adv ; - contemnificus_A : A ; - contemno_V2 : V2 ; - contemperatio_F_N : N ; - contempero_V2 : V2 ; - contemplabilis_A : A ; - contemplabiliter_Adv : Adv ; - contemplabundus_A : A ; - contemplatio_F_N : N ; - contemplativus_A : A ; - contemplator_M_N : N ; - contemplatrix_F_N : N ; - contemplatus_M_N : N ; - contemplo_V2 : V2 ; - contemplor_V : V ; - contemplum_N_N : N ; - contempno_V2 : V2 ; - contemporalis_A : A ; - contemporalis_M_N : N ; - contemporaneus_A : A ; - contemporaneus_M_N : N ; - contemporo_V : V ; - contempte_Adv : Adv ; - contemptibilis_A : A ; - contemptibilitas_F_N : N ; - contemptim_Adv : Adv ; - contemptio_F_N : N ; - contemptor_M_N : N ; - contemptrix_F_N : N ; - contemptus_A : A ; - contemptus_M_N : N ; - contemte_Adv : Adv ; - contemtibilis_A : A ; - contemtibilitas_F_N : N ; - contemtim_Adv : Adv ; - contemtio_F_N : N ; - contemtor_M_N : N ; - contemtrix_F_N : N ; - contemtus_A : A ; - contemtus_M_N : N ; - contendo_V2 : V2 ; - contenebrasco_V2 : V2 ; - contenebro_V2 : V2 ; - contente_Adv : Adv ; - contentio_F_N : N ; - contentiose_Adv : Adv ; - contentiosus_A : A ; - contentor_V : V ; - contentus_A : A ; - conterebro_V2 : V2 ; - contereo_V2 : V2 ; - conterito_V2 : V2 ; - contermino_V : V ; - conterminum_N_N : N ; - conterminus_A : A ; - conterminus_M_N : N ; - conternans_A : A ; - conternatio_F_N : N ; - conterno_V2 : V2 ; - contero_V2 : V2 ; - conterraneus_M_N : N ; - conterreo_V2 : V2 ; - conterrito_V2 : V2 ; - conterritus_A : A ; - contesseratio_F_N : N ; - contessero_V : V ; - contestatio_F_N : N ; - contestatiuncula_F_N : N ; - contestato_Adv : Adv ; - contestatus_A : A ; - contestificans_A : A ; - contestis_M_N : N ; - contestor_V : V ; - contexo_V2 : V2 ; - contexte_Adv : Adv ; - contextim_Adv : Adv ; - contextio_F_N : N ; - contextor_M_N : N ; - contextus_A : A ; - contextus_M_N : N ; - contheroleta_M_N : N ; - conticeo_V : V ; - conticesco_V : V ; - conticinium_N_N : N ; - conticinnum_N_N : N ; - conticisco_V : V ; - conticium_N_N : N ; - contificis_M_N : N ; - contiger_M_N : N ; - contignatio_F_N : N ; - contigno_V2 : V2 ; - contignum_N_N : N ; - contigue_Adv : Adv ; - contiguus_A : A ; - continator_M_N : N ; - continens_A : A ; - continens_F_N : N ; - continens_N_N : N ; - continenter_Adv : Adv ; - continentia_F_N : N ; - contineo_V2 : V2 ; - contingenter_Adv : Adv ; - contingo_V : V ; - contingo_V2 : V2 ; - contingt_V0 : V ; - continnatus_A : A ; - continor_V : V ; - continuanter_Adv : Adv ; - continuate_Adv : Adv ; - continuatim_Adv : Adv ; - continuatio_F_N : N ; - continuativus_A : A ; - continuator_M_N : N ; - continuatus_A : A ; - continue_Adv : Adv ; - continuitas_F_N : N ; - continuo_Adv : Adv ; - continuo_V2 : V2 ; - continuor_V : V ; - continuum_N_N : N ; - continuus_A : A ; - continuus_M_N : N ; - contio_F_N : N ; - contionabundus_A : A ; - contionalis_A : A ; - contionarius_A : A ; - contionator_M_N : N ; - contionatorius_A : A ; - contionor_V : V ; - contiro_M_N : N ; - contitularis_A : A ; - contiuncula_F_N : N ; - contogatus_M_N : N ; - contollo_V2 : V2 ; - contonat_V0 : V ; - contor_V : V ; + consors_M_N : N ; -- [XXXCO] :: sharer; partner/associate/collogue/fellow; consort/wife; brother/sister; co-heir + consortalis_A : A ; -- [XXXFO] :: joint, held in association/common/partnership; pertaining to common property; + consortio_F_N : N ; -- [XXXCO] :: partnership/association; fellowship, community; conjunction (things); sympathy; + consortium_N_N : N ; -- [XXXCO] :: |possession in common, sharing property; community life; conjunction (stars); + conspargo_V2 : V2 ; -- [XXXBO] :: sprinkle/strew/spatter, cover with small drops/particles; diversify/intersperse; + consparsio_F_N : N ; -- [DXXES] :: scattering, strewing, sprinkling, sprinkle; paste, dough; + conspatians_A : A ; -- [XXXFS] :: walking together; + conspectio_F_N : N ; -- [DXXES] :: look, sight, view; + conspector_M_N : N ; -- [XXXIO] :: inspector; overseer; he who sees/beholds (L+S); + conspectus_A : A ; -- [XXXCO] :: visible, open to view; remarkable/striking/eminent/distinguished; conspicuous; + conspectus_M_N : N ; -- [XXXBO] :: view, (range of) sight; aspect/appearance/look; perception/contemplation/survey; + conspelio_V2 : V2 ; -- [DEXFS] :: bury with; + conspergo_V2 : V2 ; -- [XXXBO] :: sprinkle/strew/spatter, cover with small drops/particles; diversify/intersperse; + conspersio_F_N : N ; -- [DXXES] :: scattering, strewing, sprinkling, sprinkle; paste, dough; + conspicabilis_A : A ; -- [DXXES] :: visible; remarkable, notable; + conspicabundus_A : A ; -- [DXXFS] :: considering attentively; + conspiciendus_A : A ; -- [XXXCO] :: conspicuous, attracting attention; worth seeing/attention (L+S); distinguished; + conspiciens_A : A ; -- [XXXFS] :: intelligent, having understanding; + conspicientia_F_N : N ; -- [DXXFS] :: faculty of considering; + conspicillium_N_N : N ; -- [EXXEE] :: lookout post, place for spying out; watching (L+S); eyeglass (Ecc); binoculars; + conspicillum_N_N : N ; -- [BXXEO] :: lookout post, place for spying out; watching (L+S); eyeglass (Ecc); binoculars; + conspicio_F_N : N ; -- [XXXEO] :: looking/observing/discerning, action of looking; (augury); + conspicio_V2 : V2 ; -- [XXXBO] :: |have appearance; attract attention; discern; (PASS) be conspicuous/visible; + conspicor_V : V ; -- [XXXCO] :: catch sight of, see; observe, notice; perceive; be conspicuous; be regarded; + conspicuus_A : A ; -- [XXXCO] :: visible, clearly seen, in sight/full view; illustrious/notable/famous/striking; + conspirate_Adv : Adv ; -- [DXXFS] :: unanimously, with one accord, all together; + conspiratio_F_N : N ; -- [XXXCS] :: |concord/harmony/unanimity/agreement in feeling/opinion; conspirator; + conspiratus_A : A ; -- [XXXFS] :: having conspired/agreed, having entered into a conspiracy; acting in concert; + conspiratus_M_N : N ; -- [XDXFO] :: sounding together (of musical instruments); agreement (L+S); harmony; + conspiro_V : V ; -- [XXXBO] :: plot/conspire/unite; sound/act in unison/harmony/accord; blow together (horns); + conspiro_V2 : V2 ; -- [DXXFS] :: coil up; + conspissatio_F_N : N ; -- [DXXFS] :: thickening, condensing; pressing together; accumulation; + conspissatus_A : A ; -- [XXXES] :: thickened, condensed; pressed together; dense; + conspisso_V2 : V2 ; -- [XXXEO] :: thicken; condense; + consplendesco_V : V ; -- [DXXFS] :: shine very much/brightly/splendidly; + conspolio_V2 : V2 ; -- [DXXFS] :: rob; + conspolium_N_N : N ; -- [DXXFS] :: kind of sacrificial fruit cake; + conspondeo_V : V ; -- [XXXDO] :: exchange pledges; engage/promise mutually (L+S); + consponsata_F_N : N ; -- [DXXFS] :: bride; betrothed, fiance, intended; + consponsor_M_N : N ; -- [XXXEO] :: joint surety; one who takes a joint/mutual oath; who obligates himself (L+S); + consponsus_A : A ; -- [XXXFO] :: bound by mutual pledges; + conspultus_A : A ; -- [DEXFS] :: buried with; + conspuo_V : V ; -- [DXXES] :: spit; spit out much; spit it out; + conspuo_V2 : V2 ; -- [XXXCO] :: spit on, sputter over; besplatter with saliva; (contempt); spit; spit it out; + conspurcatus_A : A ; -- [GXXET] :: polluted; (Erasmus); + conspurco_V2 : V2 ; -- [XXXEO] :: befoul, pollute; defile sexually; + consputo_V2 : V2 ; -- [XXXFO] :: spit on/over; (in contempt); + conss_N : N ; -- [XXXCT] :: consuls (pl.) (highest elected official); abb. conss./coss.; (two of a year); + constabilarius_M_N : N ; -- [FLXEM] :: constable; commander, high constable; warden (of castle/manor/parish); + constabilio_V2 : V2 ; -- [XXXEO] :: establish; put on a firm basis; strengthen; confirm, make firm (L+S); + constabularius_M_N : N ; -- [FLXDM] :: constable; commander, high constable; warden (of castle/manor/parish); + constagno_V : V ; -- [DXXFS] :: cause to stand; congeal; + constans_A : A ; -- [XXXBO] :: |consistent; standing firm; firm; persistent; mentally/morally settled/certain; + constanter_Adv : Adv ; -- [XXXBO] :: |evenly, uniformly, regularly; calmly; continually, persistently; consistently; + constantia_F_N : N ; -- [XXXBO] :: |steadiness, regularity, consistency; constancy; resistance to change; + constat_V0 : V ; -- [XXXCQ] :: it is agreed/evident/understood/correct/well known (everyone knows/agrees); + constellatio_F_N : N ; -- [DSXDS] :: constellation; group of stars supposed to influence human affairs; + constellatus_A : A ; -- [DSXES] :: starry; studded with stars; + consternatio_F_N : N ; -- [XXXCO] :: confusion/dismay/shock/alarm; excitement; disturbance/disorder; mutiny/sedition; + consternatus_A : A ; -- [XXXFE] :: dismayed, confused, confounded, in consternation; + consterno_V2 : V2 ; -- [XXXBO] :: strew/cover/spread (rugs); cover/lay/pave/line; bring down, lay low; calm (sea); + constibilis_A : A ; -- [XXXFO] :: strong; stout; + constipatio_F_N : N ; -- [DXXES] :: crowding together; a dense crowd; + constipo_V2 : V2 ; -- [XXXEO] :: crowd together; press/crowd closely together (L+S); + constitio_F_N : N ; -- [XXXFO] :: act of standing in place; abiding (L+S); abode; stay; [w/loci => in same place]; + constituo_V2 : V2 ; -- [XXXAO] :: ||establish/create/institute; draw up, arrange/set in order; make up, form; fix; + constitutio_F_N : N ; -- [XXXBO] :: |ordinance, decree, decision; position/ordering; destiny; definition of a term; + constitutionarius_M_N : N ; -- [DLXFS] :: he who presides over the copying of the imperial constitutions; + constitutivus_A : A ; -- [EXXFE] :: determining; constituent, component; confirmatory (Souter); defining; + constitutor_M_N : N ; -- [XXXEO] :: founder, one who establishes; orderer, arranger (L+S); + constitutorius_A : A ; -- [XLXFO] :: relating to a constitutum (agreement to pay/agreed price); + constitutum_N_N : N ; -- [XLXCO] :: |agreed price; decree, ordinance, law; order/conventional rule (architecture); + constitutus_A : A ; -- [XXXCO] :: constituted/disposed, endowed with a nature; ordered/arranged/appointed; being; + constitutus_M_N : N ; -- [XLXCS] :: meeting; + consto_V : V ; -- [XXXAO] :: ||stand firm/still/erect/together; remain motionless/constant; consist of/in; + constratum_N_N : N ; -- [XWXEO] :: platform; deck; covering (L+S); + constratus_A : A ; -- [XWXDO] :: flat, plane; [navis ~ => decked ship]; + constrepo_V : V ; -- [XXXCO] :: make a loud noise; resound; sound loudly/boisterously (L+S); (of vivid speech); + constricte_Adv : Adv ; -- [DXXFS] :: closely; + constrictio_F_N : N ; -- [XXXFO] :: compression, constriction; binding/drawing together (L+S); constipation; + constrictive_Adv : Adv ; -- [DBXES] :: astringently; + constrictivus_A : A ; -- [DXXES] :: contracting; drawing together; astringent; + constricto_V2 : V2 ; -- [DBXES] :: draw together; (medical term associated with cauterization and amputation); + constrictura_F_N : N ; -- [DXXFS] :: drawing together; + constrictus_A : A ; -- [XXXNO] :: small/limited in size; marked by contraction/tightening; compressed/contracted; + constringo_V2 : V2 ; -- [XXXBO] :: |compress/squeeze; make smaller/lessen/contract; hold together; congeal/freeze; + constructio_F_N : N ; -- [XXXCO] :: erection, putting/joining together; building, construction; arrangement (words); + construo_V2 : V2 ; -- [XXXBO] :: heap/pile/load (up); make/build/construct; arrange (in group); amass, collect; + constupeo_V : V ; -- [DXXFS] :: be very much astonished; + constuprator_M_N : N ; -- [XXXFO] :: ravisher, debaucher, defiler; one perpetrating illicit (adultery/forcible) sex; + constupro_V2 : V2 ; -- [XXXDO] :: ravish, rape; debauch, defile, corrupt; have illicit (adultery/forcible) sex; + consuadeo_V2 : V2 ; -- [XXXEO] :: advocate, recommend/advise strongly; try to persuade (w/DAT); + consuasor_M_N : N ; -- [XXXFO] :: advisor, counselor; one who recommends/advocates/counsels; + consuavio_V2 : V2 ; -- [XXXFO] :: cover with kisses; kiss affectionately (L+S); + consuavior_V : V ; -- [XXXFO] :: cover with kisses; kiss affectionately (L+S); + consubigo_V2 : V2 ; -- [DXXFS] :: knead/work/mix/force together; + consubstantialis_A : A ; -- [DEXES] :: of like nature/essence/quality; + consubstantialitas_F_N : N ; -- [DEXES] :: like quality/nature/essence; + consubstantivus_A : A ; -- [DEXES] :: of like nature/essence/quality; + consucidus_A : A ; -- [XXXFO] :: fresh; juicy; (applied to a girl); + consudasco_V : V ; -- [XXXFS] :: sweat profusely/thoroughly/much; exude moisture (of packed olives L+S); + consudesco_V : V ; -- [XXXFO] :: sweat profusely/thoroughly/a lot; exude moisture (of packed olives L+S); + consudo_V : V ; -- [XXXDO] :: sweat profusely/well/a lot; (also applied to packed olives/fruit); + consuefacio_V2 : V2 ; -- [XXXCO] :: accustom, acclimate, make used to, habituate, inure; + consuefio_V : V ; -- [DXXCO] :: be/become accustomed/acclimated/habituated/hardened (to); (consuefacio PASS); + consueo_V2 : V2 ; -- [DXXES] :: accustom; become accustomed; be accustomed, inure, habituate. familiarize; + consuesco_V2 : V2 ; -- [XXXBO] :: |be intimate/have sexual intercourse with; form a habit; be in the habit of; + consuete_Adv : Adv ; -- [DXXFS] :: in the usual/accustomed manner, as usual; according to custom; + consuetio_F_N : N ; -- [XXXEO] :: intimacy; sexual intimacy/intercourse; + consuetudinarie_Adv : Adv ; -- [DXXFS] :: in the usual/accustomed manner, as usual; according to custom; + consuetudinarius_A : A ; -- [DXXES] :: usual, ordinary, customary; + consuetudo_F_N : N ; -- [XXXAO] :: |experience; empirical knowledge; sexual/illicit intercourse, intimacy, affair; + consuetus_A : A ; -- [XXXCO] :: accustomed. used (to); customary, habitual, usual; ordinary, commonly employed; + consul_M_N : N ; -- [XLXAO] :: consul (highest elected Roman official - 2/year); supreme magistrate elsewhere; + consulans_M_N : N ; -- [XXXNS] :: those (pl.) who seek advice (from lawyer/oracle); + consularis_A : A ; -- [XLXBO] :: consular, of/proper to a consul; of consular rank; proposed/governed by consul; + consularitas_F_N : N ; -- [DLXES] :: office/dignity of consul or imperial governor; + consulariter_Adv : Adv ; -- [XLXFO] :: in a manner befitting/worthy of a consul; + consularius_A : A ; -- [DLXES] :: consular, of/proper to a consul; of consular rank; proposed/governed by consul; + consulatus_M_N : N ; -- [XLXCO] :: consulship/consulate; (term of) office of consul; actions/acts as consul; + consulo_V2 : V2 ; -- [XXXAO] :: |decide upon, adopt; look after/out for (DAT), pay attention to; refer to; + consultatio_F_N : N ; -- [XXXBO] :: |meeting/opportunity for debate; subject for consideration, problem, question; + consultator_M_N : N ; -- [XXXEO] :: inquirer; one who consults; one who asks advice (L+S); + consultatorius_A : A ; -- [DXXFS] :: of/pertaining to consultation; + consultatum_N_N : N ; -- [XXXFS] :: resolution, decision; deliberations (pl.) (OLD); + consulte_Adv : Adv ; -- [XXXDO] :: prudently, with due deliberation; advisedly; deliberately, on purpose; + consultivus_A : A ; -- [EXXFE] :: consultive, consultative; + consulto_Adv : Adv ; -- [XXXCO] :: purposely, deliberately, on purpose, by design; of set purpose; + consulto_V : V ; -- [XXXBO] :: |deliberate, debate, discuss; consider carefully, weigh, ponder; + consultor_M_N : N ; -- [XLXCO] :: adviser, counselor, one who gives counsel; client/one who asks (lawyer/oracle); + consultor_V : V ; -- [DXXES] :: consult, go for/ask/take counsel; consult oracle/astrologer; + consultrix_F_N : N ; -- [XXXFO] :: one who takes thought for; she who has a care for/provides (L+S); + consultum_N_N : N ; -- [XXXCO] :: decision/resolution/plan; decree (of senate/other authority); oracular response; + consultus_A : A ; -- [XXXCO] :: skilled/practiced/learned/experienced; planned/prudent, well-considered/advised; + consultus_M_N : N ; -- [DXXFS] :: decision/resolution/plan; decree (of senate/other authority); oracular response; + consum_V : V ; -- [XXXES] :: be together/with, coexist; be, happen; [confore => to be about to happen]; + consummabilis_A : A ; -- [XXXFO] :: perfectible, capable of being perfected/completed; + consummatio_F_N : N ; -- [XXXBO] :: |final result, conclusion, completion, achievement; consummation; perfection; + consummator_M_N : N ; -- [DXXES] :: completer, finisher; + consummatus_A : A ; -- [XXXCO] :: complete, perfect, nothing lacking; perfect/consummate (people); + consummo_V : V ; -- [XXXBO] :: |bring to perfection; put finishing/crowning touch; serve one's time; be grown; + consumo_V2 : V2 ; -- [XXXAO] :: |devour/swallow up/consume/eat/use up/exhaust/expend; spend; squander/waste; + consumptibilis_A : A ; -- [DXXFS] :: transient; consumable; that can be consumed/destroyed; + consumptio_F_N : N ; -- [XXXFO] :: consumption, process of consuming or wearing away; wasting; employing, use; + consumptivus_A : A ; -- [GXXEK] :: of consumption (economy); + consumptor_M_N : N ; -- [XXXEO] :: consumer, one who consumes; spendthrift, waster; destroyer; + consumptrix_F_N : N ; -- [DXXES] :: she who consumes/wastes, consumer; spendthrift; + consuo_V2 : V2 ; -- [XXXCO] :: sew together/up, stitch/join; make by sewing together; patch up; devise, plan; + consupplicatrix_F_N : N ; -- [XXXEO] :: fellow suppliant; she who supplicates with (L+S); + consurgo_V : V ; -- [XXXAO] :: |aspire to, rouse, prepare; break out, come from hiding; grow/spring up, rise; + consurrectio_F_N : N ; -- [XXXEO] :: rising, action of standing up; (as sign of assent in public meeting L+S); + consusrro_V : V ; -- [XXXFO] :: whisper together; + consutilis_A : A ; -- [DXXFS] :: sewed together; + consutum_N_N : N ; -- [DXXFS] :: garment stitched together; + contabefacio_V2 : V2 ; -- [XXXFO] :: make to waste away; wear away; consume; + contabesco_V : V ; -- [XXXDO] :: melt/waste slowly/completely away, decline in health; be consumed, pine away; + contabulatio_F_N : N ; -- [XXXDO] :: floor/roof made of boards; flooring, boarding; (folds/tucks of a garment); + contabulo_V2 : V2 ; -- [XXXCO] :: board over, cover with boards; furnish with roof/floor/bridge; build; bridge; + contactrum_N_N : N ; -- [HTXEK] :: electric plug; + contactus_M_N : N ; -- [XXXCO] :: touch, contact; contagion, infection, pollution; (personal/logical) association; + contages_F_N : N ; -- [XXXEO] :: contact, touch; infection, contagion; + contagio_F_N : N ; -- [XXXCO] :: contact/touch (to contagion/infection); social contact/intercourse; influence; + contagiosus_A : A ; -- [DBXES] :: contagious; infectious; + contagium_N_N : N ; -- [XXXCO] :: action/fact of touching, contact; contact communicating infection, contagion; + contamen_N_N : N ; -- [DXXCS] :: action/fact of touching, contact; contact communicating infection, contagion; + contaminabilus_A : A ; -- [DEXES] :: that may be polluted/defiled; + contaminatio_F_N : N ; -- [XEXFO] :: defilement; pollution, contamination; + contaminator_M_N : N ; -- [DEXES] :: defiler; polluter; + contaminatum_N_N : N ; -- [XXXFS] :: adulterated/contaminated things (pl.); + contaminatus_A : A ; -- [XXXDX] :: |impure, vile, defiled, degraded; morally foul, guilt stained; ritually unclean; + contaminatus_M_N : N ; -- [XXXFS] :: abandoned youths (pl.); (juvenile delinquents?); + contamino_V2 : V2 ; -- [XXXBO] :: |debase w/mixture of inferior material; contaminate, infect; pollute (morally); + contans_A : A ; -- [DXXCS] :: hesitant/delaying/slow to act, tardy; clinging; stubborn, resistant to movement; + contarius_M_N : N ; -- [XWXIO] :: soldier armed with a contus (lance/pike/long spear); pike-bearer; + contatio_F_N : N ; -- [DXXCO] :: delay, hesitation; tardiness, inactivity; hesitating about/delaying of (w/GEN); + contator_M_N : N ; -- [DXXCS] :: delayer/procrastinator; one prone to delay; considerate/cautious person (L+S); + contatus_M_N : N ; -- [DWXFS] :: soldier armed with a contus (lance/pike/long spear); pike-bearer; + contechnor_V : V ; -- [XXXFO] :: plot, devise/contrive a trick; + contego_V2 : V2 ; -- [XXXBO] :: cover up, conceal, hide; protect; clothe; roof over; bury/entomb; strew thickly; + contemero_V2 : V2 ; -- [XXXEO] :: violate; defile, pollute; stain; + contemnendus_A : A ; -- [XXXCO] :: be despised/neglected; [w/negative => considerable, not negligible]; + contemnenter_Adv : Adv ; -- [DXXFS] :: in a contemptuous manner; + contemnificus_A : A ; -- [XXXFO] :: scornful, contemptuous; despising; + contemno_V2 : V2 ; -- [XXXDO] :: |treat with/hold in contempt, scorn, disdain; despise; keep away from, avoid; + contemperatio_F_N : N ; -- [DBXFS] :: proper/suitable mixture; + contempero_V2 : V2 ; -- [XXXFO] :: temper (by mixing) (drink); moderate (L+S); + contemplabilis_A : A ; -- [DXXFS] :: aiming, taking aim; + contemplabiliter_Adv : Adv ; -- [DXXFS] :: taking aim; + contemplabundus_A : A ; -- [DXXFS] :: considering/contemplating attentively; + contemplatio_F_N : N ; -- [XXXCO] :: |taking into consideration (ABL w/GEN); in consideration of, for the sake of; + contemplativus_A : A ; -- [XXXFO] :: theoretical, speculative; contemplative; + contemplator_M_N : N ; -- [XXXEO] :: observer, surveyor; one who observes/studies/examines/ponders/contemplates; + contemplatrix_F_N : N ; -- [DXXES] :: she who observes/studies/ponders/contemplates; + contemplatus_M_N : N ; -- [XXXFO] :: contemplation, pondering; consideration (L+S); observance; regard, respect; + contemplo_V2 : V2 ; -- [XXXBO] :: observe/note/notice, gaze/look hard at, regard; contemplate/consider carefully; + contemplor_V : V ; -- [XXXBO] :: observe/note/notice, gaze/look hard at, regard; contemplate/consider carefully; + contemplum_N_N : N ; -- [XXXFO] :: place for observation in augury; + contempno_V2 : V2 ; -- [XXXBS] :: |treat with/hold in contempt, scorn, disdain; despise; keep away from, avoid; + contemporalis_A : A ; -- [DXXFS] :: contemporary; + contemporalis_M_N : N ; -- [DXXFS] :: contemporary; + contemporaneus_A : A ; -- [DXXFS] :: contemporary; + contemporaneus_M_N : N ; -- [DXXFS] :: contemporary; + contemporo_V : V ; -- [DXXFS] :: be contemporary, be at the same time; + contempte_Adv : Adv ; -- [XXXES] :: with great/greater/greatest contempt; contemptibly, despicably; + contemptibilis_A : A ; -- [XXXFO] :: contemptible, worthless; + contemptibilitas_F_N : N ; -- [DXXFS] :: contemptibleness; + contemptim_Adv : Adv ; -- [XXXCO] :: contemptuously, with contempt, scornfully; fearlessly, without regard to danger; + contemptio_F_N : N ; -- [XXXCO] :: contempt/scorn/destain (act/state); (act) disregard/paying no attention to; + contemptor_M_N : N ; -- [XXXCO] :: despiser; one who looks down on/scorns; who disregards/pays no heed (to life); + contemptrix_F_N : N ; -- [XXXCO] :: despiser; she who looks down on/scorns; who disregards/pays no heed (to life); + contemptus_A : A ; -- [XXXCO] :: despised, despicable, paltry, mean; contemptible, vile; + contemptus_M_N : N ; -- [XXXCO] :: contempt/scorn/despising (act/state); ignominy; disregard; object of contempt; + contemte_Adv : Adv ; -- [XXXES] :: with great/greater/greatest contempt; contemptibly, despicably; + contemtibilis_A : A ; -- [DXXFS] :: contemptible, worthless; + contemtibilitas_F_N : N ; -- [DXXFS] :: contemptibleness; + contemtim_Adv : Adv ; -- [XXXCS] :: contemptuously, with contempt, scornfully; fearlessly, without regard to danger; + contemtio_F_N : N ; -- [XXXCO] :: contempt/scorn/destain (act/state); (act) disregard/paying no attention to; + contemtor_M_N : N ; -- [XXXCS] :: despiser; one who looks down on/scorns; who disregards/pays no heed (to life); + contemtrix_F_N : N ; -- [XXXCS] :: despiser; she who looks down on/scorns; who disregards/pays no heed (to life); + contemtus_A : A ; -- [XXXCS] :: despised, despicable, paltry, mean; contemptible, vile; + contemtus_M_N : N ; -- [XXXCS] :: contempt/scorn/despising (act/state); ignominy; disregard; object of contempt; + contendo_V2 : V2 ; -- [XXXAO] :: |||hurl, shoot; direct; travel; extend; rush to, be in a hurry, hasten; + contenebrasco_V2 : V2 ; -- [XXXFO] :: become/grow completely/very dark; [used IMPERS => it grew very/completely dark]; + contenebro_V2 : V2 ; -- [DEXFS] :: grow dark; + contente_Adv : Adv ; -- [XXXDO] :: with great exertion, vehemently, vigorously; eagerly, earnestly; + contentio_F_N : N ; -- [XXXAO] :: ||raising voice, speaking passionately/vigorously/formally; intensification; + contentiose_Adv : Adv ; -- [XXXFO] :: emphatically; persistently/obstinately; vigorously/passionately/argumentatively; + contentiosus_A : A ; -- [XXXEO] :: persistent, obstinate, headstrong; argumentative, quarrelsome, contentious; + contentor_V : V ; -- [FLXEM] :: satisfy; pay; + contentus_A : A ; -- [XXXDO] :: tense, tight, strained, exerted; energetic, vigorous, intent, eager, serious; + conterebro_V2 : V2 ; -- [DXXFS] :: pierce/bore through; + contereo_V2 : V2 ; -- [EXXCW] :: frighten thoroughly; fill with terror; suppress/intimidate by terrorizing; + conterito_V2 : V2 ; -- [EXXCW] :: frighten much/greatly/thoroughly, terrorize; + contermino_V : V ; -- [DXXFS] :: border on; be a borderer, have a common boundary; + conterminum_N_N : N ; -- [XXXEO] :: region bordering on; neighboring/adjacent region/area; + conterminus_A : A ; -- [XXXCO] :: close by, neighboring, adjacent, close; bordering on, having a common boundary; + conterminus_M_N : N ; -- [XXXFO] :: neighbor; + conternans_A : A ; -- [DXXFS] :: three years old; + conternatio_F_N : N ; -- [XXXFO] :: group of three; grouping (persons/things) in threes; placing of three together; + conterno_V2 : V2 ; -- [XXXFO] :: divide into groups of three; (persons); + contero_V2 : V2 ; -- [XXXBO] :: |spend, exhaust, waste (time), use up; wear out/down; make weary; + conterraneus_M_N : N ; -- [XXXNO] :: fellow countryman; + conterreo_V2 : V2 ; -- [XXXCO] :: frighten thoroughly; fill with terror; suppress/intimidate by terrorizing; + conterrito_V2 : V2 ; -- [XXXCO] :: frighten much/greatly/thoroughly, terrorize; + conterritus_A : A ; -- [XXXCE] :: frightened; terrorized; + contesseratio_F_N : N ; -- [DXXFS] :: contract of friendship with tesserae (token divided between friends as sign); + contessero_V : V ; -- [DXXFS] :: contract friendship with tesserae (token divided between friends as sign); + contestatio_F_N : N ; -- [XLXDS] :: |attesting, proving by witnesses, testimony; conclusive proof; earnest entreaty; + contestatiuncula_F_N : N ; -- [DLXFS] :: short speech; + contestato_Adv : Adv ; -- [XXXFO] :: in the presence of witnesses; by aid of witnesses (L+S); + contestatus_A : A ; -- [XXXFO] :: attested; proved; + contestificans_A : A ; -- [DLXFS] :: attesting at the same time; + contestis_M_N : N ; -- [XLXFE] :: co-witness; + contestor_V : V ; -- [XLXCO] :: call to witness; appeal to the gods that (w/ut); join issue (w/litis); + contexo_V2 : V2 ; -- [XXXBO] :: weave/entwine/braid/twist together; compose/connect/link/combine; make/join/form + contexte_Adv : Adv ; -- [XXXEO] :: in close combination; in a connected/coherent manner; connected together (L+S); + contextim_Adv : Adv ; -- [XXXEO] :: in a continuous/uninterrupted/connected manner; + contextio_F_N : N ; -- [DXXDS] :: joining, putting together; preparing, composing; + contextor_M_N : N ; -- [DGXFS] :: composer, author, one who puts writing together; + contextus_A : A ; -- [XXXCO] :: |continuous, uninterrupted, unbroken; covered with a network (of rivers); + contextus_M_N : N ; -- [GXXEK] :: ||context; + contheroleta_M_N : N ; -- [DYXFS] :: fellow destroyer of wild beasts; + conticeo_V : V ; -- [XXXFO] :: be silent; keep quiet/still; + conticesco_V : V ; -- [XXXCO] :: cease to talk, fall silent, lapse into silence; cease to function, become idle; + conticinium_N_N : N ; -- [XXXEO] :: quiet/still of night; (immediately following nightfall and preceding dawn); + conticinnum_N_N : N ; -- [BXXEO] :: quiet/still of night; (immediately following nightfall and preceding dawn); + conticisco_V : V ; -- [XXXCO] :: cease to talk, fall silent, lapse into silence; cease to function, become idle; + conticium_N_N : N ; -- [XXXEO] :: quiet/still of night; (immediately following nightfall and preceding dawn); + contificis_M_N : N ; -- [DWXFS] :: spearmen (pl.), lancers; + contiger_M_N : N ; -- [DWXFS] :: lancer, spear-bearer; + contignatio_F_N : N ; -- [XXXDO] :: raftering; story, floor; joists and boards erected for roof/upper floor; + contigno_V2 : V2 ; -- [XXXEO] :: join/furnish with joists/beams; rafter, floor; + contignum_N_N : N ; -- [XXXFS] :: structure of beams; roast/meat with seven ribs; + contigue_Adv : Adv ; -- [DXXFS] :: closely; [w/sequor => follow at/on his heels]; + contiguus_A : A ; -- [XXXCO] :: |touching, contiguous; side by side; closely connected; allied; + continator_M_N : N ; -- [EXXFE] :: demagogue/agitator; haranguer; one who addresses public meetings; preacher; + continens_A : A ; -- [XXXAO] :: ||close (in time); linked; continuous, unbroken, uninterrupted; homogeneous; + continens_F_N : N ; -- [XXXCO] :: mainland; continent; forming part of a continuous mass; + continens_N_N : N ; -- [XXXCO] :: essential point, central argument, hinge, basis; suburbs (pl.), (outside walls); + continenter_Adv : Adv ; -- [XXXCS] :: |in unbroken succession, in a row; w/self-restraint; temperately, moderately; + continentia_F_N : N ; -- [XXXCS] :: |contents of a work; contiguity; proximity; + contineo_V2 : V2 ; -- [XXXAO] :: ||keep/hold/hang together/fast; surround, enclose, contain, limit; concentrate; + contingenter_Adv : Adv ; -- [FXXFM] :: contingently; conditionally; not of necessity (Def); + contingo_V : V ; -- [XXXBO] :: happen, befall, turn out, come to pass, be granted to one; be produced; + contingo_V2 : V2 ; -- [XXXAO] :: |color/stain; lay hands on, appropriate; smite; affect emotionally, move/touch; + contingt_V0 : V ; -- [XXXCO] :: it happens, it turns out; (PERF) it came to pass; + continnatus_A : A ; -- [FXXEE] :: continual; + continor_V : V ; -- [XXXDO] :: encounter, meet with; + continuanter_Adv : Adv ; -- [DXXFS] :: continuously, uninterruptedly; in uninterrupted succession; + continuate_Adv : Adv ; -- [XXXFO] :: continuously, uninterruptedly; + continuatim_Adv : Adv ; -- [DXXFS] :: continuously, uninterruptedly; + continuatio_F_N : N ; -- [FLXEM] :: ||adjournment; continuation; + continuativus_A : A ; -- [DGXFS] :: copulative, conjunctive, serving to connect the discourse; + continuator_M_N : N ; -- [FXXFM] :: continuer; + continuatus_A : A ; -- [XXXCO] :: uninterrupted/unbroken; consecutive; contiguous/adjacent to; permanent (Latham); + continue_Adv : Adv ; -- [XXXEO] :: continuously; without interruption; + continuitas_F_N : N ; -- [XXXEO] :: prolongation/continuation/extension; being uninterrupted; series; L:continuance; + continuo_Adv : Adv ; -- [XXXBO] :: |without further evidence/ado; (w/negative) necessarily, in consequence; + continuo_V2 : V2 ; -- [FLXEM] :: ||adjourn; + continuor_V : V ; -- [XXXDO] :: encounter, meet with; join, unite oneself to/with (L+S); + continuum_N_N : N ; -- [FSXEM] :: continuum; + continuus_A : A ; -- [XXXBX] :: |continuous, connected/hanging together; uninterrupted; indivisible; lasting; + continuus_M_N : N ; -- [XXXES] :: attendant, one who is always around; + contio_F_N : N ; -- [EEXEE] :: |sermon; + contionabundus_A : A ; -- [XLXEO] :: delivering public speech/harangue; proposing something at public assembly (L+S); + contionalis_A : A ; -- [XXXDO] :: of/proper to public assembly/meeting; (disparaging) devoted to meetings; + contionarius_A : A ; -- [XXXEO] :: of/proper to public assembly/meeting; (disparaging) devoted to meetings; + contionator_M_N : N ; -- [XXXFO] :: demagogue/agitator; haranguer; one who addresses public meetings; preacher; + contionatorius_A : A ; -- [EEXEE] :: of sermon; of/proper to public assembly/meeting/gathering of people; + contionor_V : V ; -- [XLXCO] :: address assembly, deliver public speech; preach/harangue; attend public meeting; + contiro_M_N : N ; -- [XWXIO] :: fellow recruit; + contitularis_A : A ; -- [FXXFE] :: titular; + contiuncula_F_N : N ; -- [XLXEO] :: small or negligible meeting; short harangue, trifling speech (L+S); + contogatus_M_N : N ; -- [DLXFS] :: law-colleague; + contollo_V2 : V2 ; -- [XXXEO] :: step up/go (to meet a person) (w/gradum); bring together (L+S); + contonat_V0 : V ; -- [XXXFO] :: it thunders violently/loudly/heavily; + contor_V : V ; -- [DXXBS] :: delay, impede, hold up; hesitate, tarry, linger; be slow to act; dawdle; doubt; contoral_F_N : N ; -- [FXXFM] :: spouse; - contoral_M_N : N ; - contorqueo_V2 : V2 ; - contorreo_V2 : V2 ; - contorte_Adv : Adv ; - contortio_F_N : N ; - contortiplicatus_A : A ; - contortor_M_N : N ; - contortulus_A : A ; - contortus_A : A ; - contra_Acc_Prep : Prep ; - contra_Adv : Adv ; - contrabassum_N_N : N ; - contrabium_N_N : N ; - contraceptio_F_N : N ; - contractabilis_A : A ; - contractabiliter_Adv : Adv ; - contracte_Adv : Adv ; - contractio_F_N : N ; - contractiuncula_F_N : N ; - contracto_V2 : V2 ; - contractor_M_N : N ; - contractorium_N_N : N ; - contractura_F_N : N ; - contractus_A : A ; - contractus_M_N : N ; - contradicibilis_A : A ; - contradico_V2 : V2 ; - contradictio_F_N : N ; - contradictor_M_N : N ; - contradictorium_N_N : N ; - contradictorius_A : A ; - contrado_V2 : V2 ; - contraeo_V : V ; - contrafacio_V2 : V2 ; - contrafaco_V2 : V2 ; - contrafactio_F_N : N ; - contraho_V2 : V2 ; - contrajuris_A : A ; - contrapondus_N_N : N ; - contrapono_V2 : V2 ; - contrapositum_N_N : N ; - contrapunctum_N_N : N ; - contraretus_M_N : N ; - contrarie_Adv : Adv ; - contrarietas_F_N : N ; - contrarior_V : V ; - contrarium_N_N : N ; - contrarius_A : A ; - contrarius_M_N : N ; - contrascriba_M_N : N ; - contrascribo_V2 : V2 ; - contrascriptor_M_N : N ; - contravenio_V : V ; - contraversia_F_N : N ; - contraversim_Adv : Adv ; - contraversum_Adv : Adv ; - contraversus_A : A ; - contrectabilis_A : A ; - contrectabiliter_Adv : Adv ; - contrectatio_F_N : N ; - contrectator_M_N : N ; - contrecto_V2 : V2 ; - contrectus_A : A ; - contremesco_V2 : V2 ; - contremisco_V2 : V2 ; - contremo_V : V ; - contremulus_A : A ; - contreo_V2 : V2 ; - contribulatio_F_N : N ; - contribulis_A : A ; - contribulis_M_N : N ; - contribulo_V2 : V2 ; - contribuo_V2 : V2 ; - contributio_F_N : N ; - contributum_N_N : N ; - contrico_V2 : V2 ; - contrio_V2 : V2 ; - contristatio_F_N : N ; - contristo_V2 : V2 ; - contritio_F_N : N ; - contritus_A : A ; - controversia_F_N : N ; - controversialis_A : A ; - controversiola_F_N : N ; - controversiosus_A : A ; - controversor_V : V ; - controversum_N_N : N ; - controversus_A : A ; - controversus_Adv : Adv ; - controverto_V2 : V2 ; - contrpuncticus_A : A ; - contrpunctum_N_N : N ; - contrucido_V2 : V2 ; - contrudo_V2 : V2 ; - contrunco_V2 : V2 ; - contubernalis_M_N : N ; - contubernium_N_N : N ; - contubernius_M_N : N ; - contueor_V : V ; - contuitus_M_N : N ; - contumacia_F_N : N ; - contumaciter_Adv : Adv ; - contumax_A : A ; - contumelia_F_N : N ; - contumelio_V2 : V2 ; - contumeliose_Adv : Adv ; - contumeliosus_A : A ; - contumesco_V : V ; - contumia_F_N : N ; - contumulo_V2 : V2 ; - contundo_V2 : V2 ; - contuo_V : V ; - contuolus_A : A ; - contuor_V : V ; - conturbatio_F_N : N ; - conturbator_A : A ; - conturbator_M_N : N ; - conturbatus_A : A ; - conturbo_V : V ; - conturmalis_M_N : N ; - conturmo_V2 : V2 ; - contus_M_N : N ; - contusio_F_N : N ; - contusum_N_N : N ; - contutor_M_N : N ; - contutor_V : V ; - contutus_M_N : N ; - conubialis_A : A ; - conubium_N_N : N ; - conula_F_N : N ; - conus_M_N : N ; - convador_V : V ; - convalescens_M_N : N ; - convalescentia_F_N : N ; - convalesco_V : V ; - convalidatio_F_N : N ; - convalido_V2 : V2 ; - convallaria_F_N : N ; - convallis_F_N : N ; - convallo_V2 : V2 ; - convalo_V : V ; - convario_V : V ; - convario_V2 : V2 ; - convaso_V2 : V2 ; - convectio_F_N : N ; - convecto_V : V ; - convector_M_N : N ; - conveho_V2 : V2 ; - convello_V2 : V2 ; - convelo_V2 : V2 ; - convena_M_N : N ; - conveniens_A : A ; - convenienter_Adv : Adv ; - convenientia_F_N : N ; - convenio_V2 : V2 ; - convenit_V0 : V ; - conventicium_N_N : N ; - conventicius_A : A ; - conventiculum_N_N : N ; - conventio_F_N : N ; - conventionalis_A : A ; - conventitium_N_N : N ; - conventitius_A : A ; - conventiuncula_F_N : N ; - conventum_N_N : N ; - conventus_M_N : N ; - convenus_A : A ; - convenusto_V2 : V2 ; - converbero_V2 : V2 ; - convergentia_F_N : N ; - convergo_V : V ; - converritor_M_N : N ; - converro_V2 : V2 ; - conversa_F_N : N ; - conversatio_F_N : N ; - conversator_M_N : N ; - conversibilis_A : A ; - conversibiliter_Adv : Adv ; - conversio_F_N : N ; - conversiuncula_F_N : N ; - converso_V2 : V2 ; - conversom_Adv : Adv ; - conversor_V : V ; - conversus_A : A ; - conversus_M_N : N ; - convertibilis_A : A ; - convertibiliter_Adv : Adv ; - converto_V2 : V2 ; - convertor_V : V ; - convescor_V : V ; - convestio_V2 : V2 ; - conveteranus_M_N : N ; - convexio_F_N : N ; - convexitas_F_N : N ; - convexo_V2 : V2 ; - convexum_N_N : N ; - convexus_A : A ; - convibro_V : V ; - convicanus_M_N : N ; - conviciator_M_N : N ; - convicinus_A : A ; - conviciolum_N_N : N ; - convicior_V : V ; - convicium_N_N : N ; - convictio_F_N : N ; - convictor_M_N : N ; - convictus_M_N : N ; - convicus_M_N : N ; - convinco_V2 : V2 ; - convinctio_F_N : N ; - conviolo_V2 : V2 ; - conviresco_V : V ; - convisero_V2 : V2 ; - convisio_F_N : N ; - conviso_V2 : V2 ; - convitiator_M_N : N ; - convitio_V2 : V2 ; - convitior_V : V ; - convitium_N_N : N ; - conviva_C_N : N ; - convivalis_A : A ; - convivans_M_N : N ; - convivator_M_N : N ; - conviventia_F_N : N ; - convivifico_V2 : V2 ; - convivium_N_N : N ; - convivo_V : V ; - convivor_V : V ; - convocatio_F_N : N ; - convoco_V2 : V2 ; - convolnero_V2 : V2 ; - convolo_V : V ; - convolsio_F_N : N ; - convolsum_N_N : N ; - convolsus_A : A ; - convoluto_V : V ; - convoluto_V2 : V2 ; - convolvo_V2 : V2 ; - convolvolus_M_N : N ; - convomo_V2 : V2 ; - convoro_V2 : V2 ; - convorro_V2 : V2 ; - convotus_M_N : N ; - convoveo_V : V ; - convulnero_V2 : V2 ; - convulsio_F_N : N ; - convulsum_N_N : N ; - convulsus_A : A ; - conyza_F_N : N ; - coodibilis_A : A ; - cooperatio_F_N : N ; - cooperativus_A : A ; - cooperator_M_N : N ; - cooperatrix_F_N : N ; - cooperculum_N_N : N ; - cooperimentum_N_N : N ; - cooperio_V2 : V2 ; - cooperior_V : V ; - coopero_V : V ; - cooperor_V : V ; - coopertorium_N_N : N ; - coopertus_A : A ; - cooptatio_F_N : N ; - coopto_V2 : V2 ; - coordinatio_F_N : N ; - coordinatus_A : A ; - coordino_V : V ; - coorior_V : V ; - coortus_M_N : N ; - copa_F_N : N ; - copadium_N_N : N ; - coperculum_N_N : N ; - coperimentum_N_N : N ; - coperio_V2 : V2 ; - coperor_V : V ; - copertorium_N_N : N ; - copertus_A : A ; - coph_N : N ; - cophinus_M_N : N ; - copia_F_N : N ; - copiarius_M_N : N ; - copiata_M_N : N ; - copiates_M_N : N ; - copiola_F_N : N ; - copior_V : V ; - copiose_Adv : Adv ; - copiositas_F_N : N ; - copiosus_A : A ; - copis_F_N : N ; - copo_M_N : N ; - copona_F_N : N ; - coppa_N : N ; - coppadium_N_N : N ; - coprea_M_N : N ; - cops_A : A ; - copta_F_N : N ; - coptatio_F_N : N ; - copto_V2 : V2 ; - coptoplancenta_F_N : N ; - copula_F_N : N ; - copulabilis_A : A ; - copulate_Adv : Adv ; - copulatim_Adv : Adv ; - copulatio_F_N : N ; - copulative_Adv : Adv ; - copulativus_A : A ; - copulator_M_N : N ; - copulatrix_F_N : N ; - copulatum_N_N : N ; - copulatus_A : A ; - copulatus_M_N : N ; - copulo_V2 : V2 ; - copulor_V : V ; - coqua_F_N : N ; - coque_Adv : Adv ; - coquibilis_A : A ; - coquina_F_N : N ; - coquinaris_A : A ; - coquinarius_A : A ; - coquinatorium_N_N : N ; - coquinatorius_A : A ; - coquino_V2 : V2 ; - coquinus_A : A ; - coquitatio_F_N : N ; - coquitatorius_A : A ; - coquito_V2 : V2 ; - coquo_V2 : V2 ; - coquos_M_N : N ; - coquula_F_N : N ; - coquulum_N_N : N ; - coquus_M_N : N ; - cor_N_N : N ; - cora_F_N : N ; - coracesia_F_N : N ; - coracicum_N_N : N ; - coracicus_A : A ; - coracino_V : V ; - coracinus_A : A ; - coracinus_M_N : N ; - coragus_M_N : N ; - coralium_N_N : N ; - corallachates_F_N : N ; - corallinus_A : A ; - corallis_F_N : N ; - coralliticus_A : A ; - corallium_N_N : N ; - corallius_C_N : N ; - coralloachates_M_N : N ; - corallum_N_N : N ; - coram_Abl_Prep : Prep ; - coram_Adv : Adv ; - corambe_F_N : N ; - coranus_M_N : N ; - corarius_A : A ; - corax_M_N : N ; - corban_N : N ; - corbicula_F_N : N ; + contoral_M_N : N ; -- [FXXFM] :: spouse; + contorqueo_V2 : V2 ; -- [XXXBO] :: |twist, make twisted/crooked; twirl/whirl, rotate/move in arc; brandish; fling; + contorreo_V2 : V2 ; -- [DXXFS] :: dry up entirely; parch, scorch; + contorte_Adv : Adv ; -- [XXXEO] :: in an involved/contorted fashion; intricately; perplexedly (L+S); + contortio_F_N : N ; -- [XXXEO] :: |involving; intricacy/complication; (w/orationis) involved expression; + contortiplicatus_A : A ; -- [XXXFO] :: compounded in an involved fashion; entangled, complicated (L+S); + contortor_M_N : N ; -- [XXXFO] :: twister, one who perverts; + contortulus_A : A ; -- [XGXFS] :: somewhat complicated/intricate; + contortus_A : A ; -- [XXXES] :: |brandished/hurled; vehement, energetic, strong, full of motion; + contra_Acc_Prep : Prep ; -- [XXXAO] :: ||towards/up to, in direction of; directly over/level with; to detriment of; + contra_Adv : Adv ; -- [XXXAO] :: ||otherwise, differently; conversely; on the contrary; vice versa; + contrabassum_N_N : N ; -- [GDXEK] :: bass; + contrabium_N_N : N ; -- [DTXFS] :: framework of beams, flooring; + contraceptio_F_N : N ; -- [GBXEK] :: contraception; + contractabilis_A : A ; -- [DXXFS] :: that may be felt/handled; + contractabiliter_Adv : Adv ; -- [XXXFO] :: caressingly; so as just to be felt; + contracte_Adv : Adv ; -- [XXXFO] :: sparingly, economically, on a restricted/contracted scale; + contractio_F_N : N ; -- [XXXCO] :: contraction; abridgement; clamp; compression/condensation (of speech/syllable); + contractiuncula_F_N : N ; -- [XBXFO] :: slight (mental) depression (w/animi); dejection, sadness (L+S); + contracto_V2 : V2 ; -- [XXXBO] :: |caress/fondle, handle amorously; have sex with; deal with/handle/apply oneself; + contractor_M_N : N ; -- [DXXES] :: contractor, one who makes a contract; + contractorium_N_N : N ; -- [XXXFS] :: lace; string; + contractura_F_N : N ; -- [XTXEO] :: contracture, narrowing of columns towards the top, tapering; + contractus_A : A ; -- [XXXCS] :: violated; dishonored; touched carnally; stolen, purloined, taken by stealth; + contractus_M_N : N ; -- [XXXCO] :: shrinking/narrowing; undertaking; legal/commercial agreement/contract; + contradicibilis_A : A ; -- [DXXFS] :: that may be contracted or spoken against; + contradico_V2 : V2 ; -- [XGXCO] :: gainsay/contradict; speak against/speak for adversary, oppose/object to/contest; + contradictio_F_N : N ; -- [XGXDX] :: objection; contradiction; opposition; argument against, counter-argument; reply; + contradictor_M_N : N ; -- [XGXEO] :: opponent, one who replies/objects; + contradictorium_N_N : N ; -- [FGXFE] :: defense, speaking against; + contradictorius_A : A ; -- [DGXFS] :: containing an objection/contradiction; + contrado_V2 : V2 ; -- [DXXES] :: deliver together/wholly; + contraeo_V : V ; -- [DXXES] :: go against, oppose; make resistance; (w/DAT); + contrafacio_V2 : V2 ; -- [FLXFM] :: act against; + contrafaco_V2 : V2 ; -- [FXXCM] :: counterfeit, forge, fake; + contrafactio_F_N : N ; -- [DXXFS] :: setting in opposition, contrast; + contraho_V2 : V2 ; -- [XXXAO] :: ||sadden/depress/diminish/contract/tighten; cause/provoke (disease/war); commit; + contrajuris_A : A ; -- [XLXFS] :: unlawful, illegal, contrary to law; + contrapondus_N_N : N ; -- [GXXEK] :: counterweight; + contrapono_V2 : V2 ; -- [XXXEO] :: put/place/set/station against/opposite; place in opposition; + contrapositum_N_N : N ; -- [XGXEE] :: antithesis; + contrapunctum_N_N : N ; -- [GDXEK] :: counterpoint (music); + contraretus_M_N : N ; -- [XXXIO] :: gladiator matched against the retiarius (net); + contrarie_Adv : Adv ; -- [XGXDO] :: in opposite directions; in opposition (to what was said/written); contrariwise; + contrarietas_F_N : N ; -- [EXXFP] :: contrast, opposite; opposition, contrariety; misfortune, evil; + contrarior_V : V ; -- [FXXEM] :: oppose; + contrarium_N_N : N ; -- [XGXCS] :: |opposite direction; antithesis; contrast; [ex ~ => on the contrary/other hand]; + contrarius_A : A ; -- [XXXAO] :: |incompatible; reversed, inverted; reciprocal, mutual; counterbalancing; + contrarius_M_N : N ; -- [XXXFS] :: opponent, adversary; antagonist; + contrascriba_M_N : N ; -- [XLXIO] :: checking-clerk; counter-signer (L+S); comptroller; + contrascribo_V2 : V2 ; -- [DLXFS] :: counter-sign; + contrascriptor_M_N : N ; -- [XXXIO] :: checking-clerk; counter-signer (L+S); comptroller; + contravenio_V : V ; -- [DXXFS] :: oppose; + contraversia_F_N : N ; -- [XGXBO] :: controversy/dispute; debate; moot case debated in school, forensic exercise; + contraversim_Adv : Adv ; -- [XXXFO] :: in reverse (as in a mirror); + contraversum_Adv : Adv ; -- [XXXFS] :: on the contrary, on the other hand; + contraversus_A : A ; -- [DXXES] :: turned opposite; lying over against; + contrectabilis_A : A ; -- [DXXFS] :: that may be felt/handled; + contrectabiliter_Adv : Adv ; -- [XXXFO] :: caressingly; so as just to be felt; + contrectatio_F_N : N ; -- [XXXCO] :: touching/handling (action); fondling/caressing; handling with felonious intent; + contrectator_M_N : N ; -- [XLXFO] :: thief; (who touches/handles with felonious intent, theft/embezzlement); + contrecto_V2 : V2 ; -- [XXXBO] :: |handle amorously, caress/fondle; have sex with; deal with/handle/apply oneself; + contrectus_A : A ; -- [XXXCS] :: violated; dishonored; touched carnally; stolen, purloined, taken by stealth; + contremesco_V2 : V2 ; -- [XXXCO] :: tremble all over; shake (violently), quake; tremble at/with fear, be afraid of; + contremisco_V2 : V2 ; -- [XXXCO] :: tremble all over; shake (violently), quake; tremble at/with fear, be afraid of; + contremo_V : V ; -- [XXXEO] :: tremble/shake violently; quake; + contremulus_A : A ; -- [XXXFO] :: tremulous, shimmering; trembling/shaking violently (L+S); + contreo_V2 : V2 ; -- [EEXFW] :: destroy, crush; go against; + contribulatio_F_N : N ; -- [DXXFS] :: anguish; + contribulis_A : A ; -- [DXXES] :: from the same tribe/region; + contribulis_M_N : N ; -- [XXXIO] :: fellow tribesman, member of the same tribe; one from the same region; + contribulo_V2 : V2 ; -- [DEXDS] :: crush, bruise; afflict much, crush; + contribuo_V2 : V2 ; -- [XXXCO] :: unite/incorporate, join/attach (to state); assign/allot; contribute/give, share; + contributio_F_N : N ; -- [XXXDO] :: payment, contribution; dividing/distributing, distribution (L+S); + contributum_N_N : N ; -- [EXXEE] :: contribution; + contrico_V2 : V2 ; -- [XXXFO] :: fritter away, waste; + contrio_V2 : V2 ; -- [XXXFO] :: wear down; + contristatio_F_N : N ; -- [DEXES] :: grief; affliction, afflicting; + contristo_V2 : V2 ; -- [XXXBO] :: sadden, make gloomy, depress, discourage; afflict, sap, damage (crops); darken; + contritio_F_N : N ; -- [XXXFO] :: grief, dismay, despondency; grinding (L+S); + contritus_A : A ; -- [XXXEO] :: trite, hackneyed, worn out; common (L+S); + controversia_F_N : N ; -- [DTXFS] :: |turning against; (turning of water against (w/aqua) (undermining land)); + controversialis_A : A ; -- [DXXFS] :: controversial; pertaining to controversy; + controversiola_F_N : N ; -- [DXXES] :: little/minor controversy; + controversiosus_A : A ; -- [XGXEO] :: much disputed, debatable; very much controverted/contested (L+S); + controversor_V : V ; -- [XGXFO] :: dispute; (used by Cicero as translation of Greek); be at variance (L+S); + controversum_N_N : N ; -- [XGXFS] :: controversial/debatable/disputed/questionable/doubtful points (pl.); + controversus_A : A ; -- [XXXCO] :: controversial/debatable/disputed; turned against, in opposite direction (L+S); + controversus_Adv : Adv ; -- [XXXFO] :: in opposite directions; + controverto_V2 : V2 ; -- [EGXEE] :: deny; oppose, voice opposition; + contrpuncticus_A : A ; -- [FGXFE] :: pertaining to a counterpoint; + contrpunctum_N_N : N ; -- [FGXEE] :: counterpoint; + contrucido_V2 : V2 ; -- [XXXCO] :: |inflict many wounds on, kill large numbers; slay (L+S); put to the sword; + contrudo_V2 : V2 ; -- [XXXCO] :: thrust/crowd (together), impel; thrust/press/push in (to receptacle), cram/stow; + contrunco_V2 : V2 ; -- [XXXEO] :: hack/cut down/to pieces; gobble up, dispatch (food); + contubernalis_M_N : N ; -- [XWXCO] :: tent mate, comrade-in-arms; staff trainee; companion; colleague; slave's mate; + contubernium_N_N : N ; -- [XWXBO] :: |cohabitation, concubinage (with/between slaves); attendance on a general; + contubernius_M_N : N ; -- [XWXIO] :: tent mate, comrade-in-arms; staff trainee; companion; colleague; slave's mate; + contueor_V : V ; -- [XXXCO] :: look at/gaze on/behold; see to; be in sight of, have view of; contemplate/weigh; + contuitus_M_N : N ; -- [XXXEO] :: contemplation; gaze; attentive look at (L+S); view/sight; [~u => in view of]; + contumacia_F_N : N ; -- [XXXCO] :: stubbornness/obstinacy; proud/defiant behavior; disobedience to judicial order; + contumaciter_Adv : Adv ; -- [XXXCO] :: stubbornly, obstinately; defiantly; + contumax_A : A ; -- [XXXCO] :: |willfully disobedient to decree/summons; not yielding, immovable (things); + contumelia_F_N : N ; -- [XXXCO] :: indignity, affront, abuse/insult; insulting language/behavior; rough treatment; + contumelio_V2 : V2 ; -- [XXXIO] :: insult; treat outrageously; + contumeliose_Adv : Adv ; -- [XXXDO] :: in an insulting manner; abusively, insolently (L+S); + contumeliosus_A : A ; -- [XXXCO] :: insulting, outrageous, humiliating; rude, insolent, abusive; reproachful (L+S); + contumesco_V : V ; -- [DXXFS] :: swell greatly; + contumia_F_N : N ; -- [DXXCS] :: indignity, affront, abuse/insult; insulting language/behavior; rough treatment; + contumulo_V2 : V2 ; -- [XXXDO] :: bury, inter; heap together; heap up like a mound (L+S); furnish with a mound; + contundo_V2 : V2 ; -- [XXXCO] :: quell/crush/outdo/subdue utterly; bruise/beat; pound to pieces/powder/pulp; + contuo_V : V ; -- [XXXEO] :: look at/gaze on/behold; see to; be in sight of, have view of; contemplate/weigh; + contuolus_A : A ; -- [DBXFS] :: surrounded by a partial closing of the eyelid (eyes w/oculi); + contuor_V : V ; -- [XXXCO] :: look at/gaze on/behold; see to; be in sight of, have view of; contemplate/weigh; + conturbatio_F_N : N ; -- [XXXDO] :: disorder (physical/mental/emotional); perturbation, dismay, confusion, panic; + conturbator_A : A ; -- [XXXFO] :: leading to bankruptcy, ruinous, expensive, costly; + conturbator_M_N : N ; -- [XXXDO] :: disturber; who/that which brings/spreads disorder/ruin; bankrupt; + conturbatus_A : A ; -- [XXXFO] :: disturbed, perplexed, disquieted, confused; disordered, diseased (L+S); + conturbo_V : V ; -- [XXXCO] :: confuse, disquiet/confound/derange/dismay, upset/mix up; go bankrupt, default; + conturmalis_M_N : N ; -- [XWXFO] :: fellow soldier from the same turma/squadron (small unit of cavalry); + conturmo_V2 : V2 ; -- [DWXFS] :: arrange in turmae/squadrons (cavalry); + contus_M_N : N ; -- [XWXCO] :: long pole esp. used on ship); lance, pike; + contusio_F_N : N ; -- [XBXEO] :: bruising; bruise, contusion; crushing, battering (L+S); + contusum_N_N : N ; -- [XBXEO] :: bruise, contusion; + contutor_M_N : N ; -- [XXXEO] :: joint guardian; + contutor_V : V ; -- [DXXES] :: place in safety; + contutus_M_N : N ; -- [XXXEO] :: contemplation; gaze; attentive look at (L+S); view/sight; [~u => in view of]; + conubialis_A : A ; -- [XXXDO] :: of/belonging to marriage/wedlock (or a specific marriage), conjugal/connubial; + conubium_N_N : N ; -- [XXXBS] :: ||married partner/spouse, husband/wife; sexual union; ingrafting (plants); + conula_F_N : N ; -- [DAXDO] :: plant (genus Satureia, savory); (also called conila and origanum L+S); + conus_M_N : N ; -- [XSXCO] :: cone, conical figure/shape; apex of helmet; form of sundial; pine cone; tenpin; + convador_V : V ; -- [XXXFO] :: make a person give surety/bail to appear in court; + convalescens_M_N : N ; -- [XBXDS] :: convalescents (pl.), those convalescing/regaining health; + convalescentia_F_N : N ; -- [DBXFS] :: convalescence, regaining of health; + convalesco_V : V ; -- [XLXEO] :: |become valid; (legal term); + convalidatio_F_N : N ; -- [FEXFE] :: convalidation; (renewal of/consent to marriage previously canonically invalid); + convalido_V2 : V2 ; -- [EXXEE] :: validate, make valid; + convallaria_F_N : N ; -- [GAXEK] :: lily of the valley; + convallis_F_N : N ; -- [XXXCO] :: valley (much shut in), ravine, deep/narrow/enclosed valley, glen; (also pl.); + convallo_V2 : V2 ; -- [XXXFO] :: surround with a rampart/entrenchment; hedge in; encircle, surround (L+S); + convalo_V : V ; -- [XXXCO] :: grow strong/thrive/gain power; regain health/strength, recover, get well/better; + convario_V : V ; -- [DXXFS] :: vary, be different; + convario_V2 : V2 ; -- [XXXFO] :: spot, variegate; + convaso_V2 : V2 ; -- [XWXFO] :: pack up (baggage); pack vessels/implements together (L+S); pile up; + convectio_F_N : N ; -- [DXXFS] :: carrying/bringing together; + convecto_V : V ; -- [XXXEO] :: carry/bring together (in abundance); gather, collect; + convector_M_N : N ; -- [XXXEO] :: |passenger; fellow traveler; he who goes with one (L+S); + conveho_V2 : V2 ; -- [XXXCO] :: bring/carry/bear together/to one place; collect, gather; get in (harvest) (L+S); + convello_V2 : V2 ; -- [XXXBO] :: |pull/pluck/tug/tear up/at dislodge, uproot; wrench, strain, dislocate (limbs); + convelo_V2 : V2 ; -- [XXXEO] :: cover (over), veil; wrap around; + convena_M_N : N ; -- [XXXCO] :: refugees (pl.), immigrants; those together for some purpose (asylum); tramps; + conveniens_A : A ; -- [XXXCO] :: |agreed, conventional, based on agreement; agreeable, compliant; + convenienter_Adv : Adv ; -- [XXXCO] :: suitably, consistently; comfortably; conformably (L+S); + convenientia_F_N : N ; -- [XXXCO] :: agreement (things), consistency; harmony (music); arrangement; convention; + convenio_V2 : V2 ; -- [XXXAO] :: ||resort to; sue, prosecute, take legal action; be agreed upon/arranged (PASS); + convenit_V0 : V ; -- [XXXCO] :: it agrees/came together/is agreed/asserted; [bene ~ nobis=>we're on good terms]; + conventicium_N_N : N ; -- [XLXEO] :: fee paid to attend an assembly; (paid to poor Greek citizens as inducement L+S); + conventicius_A : A ; -- [XXXFO] :: |met by chance; + conventiculum_N_N : N ; -- [XXXCS] :: small assembly; place of assembly/resort; assembly, meeting, association (L+S); + conventio_F_N : N ; -- [XLXCO] :: |assembly/meeting; suing/prosecuting a defendant; agreement, compact, covenant; + conventionalis_A : A ; -- [XLXFO] :: based on an agreement; of/pertaining to agreement/compact (L+S); conventional; + conventitium_N_N : N ; -- [XLXES] :: fee paid to attend an assembly; (paid to poor Greek citizens as inducement L+S); + conventitius_A : A ; -- [BXXFS] :: pertaining to coming together or intercourse; coming from various quarters; + conventiuncula_F_N : N ; -- [DLXFS] :: small assembly; + conventum_N_N : N ; -- [XLXCO] :: agreement, compact, covenant; convention, accord (L+S); + conventus_M_N : N ; -- [FEXCB] :: ||convent, monastery; religious community; convention (Ecc); + convenus_A : A ; -- [XXXES] :: coming together for some purpose; (strangers); meeting; + convenusto_V2 : V2 ; -- [DXXDS] :: ornament, adorn; + converbero_V2 : V2 ; -- [XXXCO] :: beat, batter; bruise; strike severely (L+S); chastise; + convergentia_F_N : N ; -- [GXXEK] :: convergence; + convergo_V : V ; -- [DXXFS] :: incline together; + converritor_M_N : N ; -- [XXXFO] :: sweeper; one who sweeps up/together; (janitor?); + converro_V2 : V2 ; -- [XXXCO] :: sweep/brush/scrape together/thoroughly/up; sweep/beat clean; clear away (L+S); + conversa_F_N : N ; -- [EEXEE] :: convert; she who has changed; + conversatio_F_N : N ; -- [XXXCO] :: ||turning around; moving in place; constant practical experience; frequent use; + conversator_M_N : N ; -- [XXXFS] :: companion; + conversibilis_A : A ; -- [DXXES] :: changeable; + conversibiliter_Adv : Adv ; -- [DXXES] :: changeably; + conversio_F_N : N ; -- [XXXBO] :: ||turning upside down, inversion, transposition; prolapse; paraphrase/rewrite; + conversiuncula_F_N : N ; -- [DEXFS] :: slight change/alteration; + converso_V2 : V2 ; -- [XXXEO] :: turn, turn over in the mind, ponder; turn around (L+S); + conversom_Adv : Adv ; -- [DXXES] :: conversely; + conversor_V : V ; -- [XXXCS] :: |abide, live, dwell (somewhere); keep company with; live with; pass one's life; + conversus_A : A ; -- [XXXDO] :: upside down; inverted; turned backward; recurved; facing in specified direction; + conversus_M_N : N ; -- [DXXFS] :: turning, twisting around; + convertibilis_A : A ; -- [DXXES] :: changeable; + convertibiliter_Adv : Adv ; -- [DXXES] :: changeably; + converto_V2 : V2 ; -- [XXXAO] :: |||cause to turn/revolve, rotate; turn/wheel about; reverse; shift/transfer; + convertor_V : V ; -- [FXXCE] :: convert; change, alter; refresh; turn; + convescor_V : V ; -- [DEXFS] :: eat with one; (eccl.); + convestio_V2 : V2 ; -- [XXXCO] :: clothe, dress; cover; cover with clothing (L+S); surround; + conveteranus_M_N : N ; -- [XWXIO] :: fellow veteran; + convexio_F_N : N ; -- [XSXFO] :: convexity; curvature; vaulting (L+S); concavity; + convexitas_F_N : N ; -- [XTXNO] :: arched formation, vaulting, curvature; concavity, hollowness; convexity (L+S); + convexo_V2 : V2 ; -- [XXXFO] :: jostle, push against; press/squeeze together (L+S); + convexum_N_N : N ; -- [XTXCO] :: arch, vault; dome; dome of the sky; concavity (L+S); (usu. pl.); + convexus_A : A ; -- [XXXCS] :: |inclined, sloping downwards; concave; + convibro_V : V ; -- [XXXEO] :: move rapidly, flash; set in rapid motion; move something quickly/rapidly; + convicanus_M_N : N ; -- [EXXFE] :: fellow villager; + conviciator_M_N : N ; -- [XXXFO] :: one who utters abuse, reviler; + convicinus_A : A ; -- [FXXEM] :: neighboring; + conviciolum_N_N : N ; -- [DXXFS] :: slight reproach; taunt; + convicior_V : V ; -- [XXXCO] :: scold/jeer/revile/insult, utter abuse against; reproach, taunt, rail at (L+S); + convicium_N_N : N ; -- [XXXBO] :: |reprimand/reproach/reproof; abuse/jeers/mockery/insults; object of shame; + convictio_F_N : N ; -- [DEXFS] :: demonstration, proof; + convictor_M_N : N ; -- [XXXCO] :: messmate, friend, companion; one who lives with a person on intimate terms; + convictus_M_N : N ; -- [XXXCO] :: intimacy; association; living together; close friends; banquet, dinner party; + convicus_M_N : N ; -- [XXXIO] :: inhabitant of the same vicus (village/street/row of houses); fellow villager; + convinco_V2 : V2 ; -- [XLXBO] :: |find guilty/against, convict; prove wrong, refute (person/statement); expose; + convinctio_F_N : N ; -- [XGXFO] :: conjunction, connective particle; + conviolo_V2 : V2 ; -- [XEXIO] :: violate, desecrate (tomb/etc.); + conviresco_V : V ; -- [DAXES] :: grow green, become verdant; + convisero_V2 : V2 ; -- [DXXFS] :: incorporate, unite; + convisio_F_N : N ; -- [EEXFR] :: joint vision; + conviso_V2 : V2 ; -- [XXXCO] :: watch/look at/scan; visit, go to see; consider attentively, examine thoroughly; + convitiator_M_N : N ; -- [DXXFS] :: one who utters abuse, reviler; + convitio_V2 : V2 ; -- [DWXFS] :: attack/injure at some later time; + convitior_V : V ; -- [FXXEE] :: revile, reproach; insult; + convitium_N_N : N ; -- [XXXBO] :: |reprimand/reproach/reproof; abuse/jeers/mockery/insults; object of shame; + conviva_C_N : N ; -- [XXXBO] :: guest, table companion; (literally one who lives with another); + convivalis_A : A ; -- [XXXCO] :: convivial, festal, party; of/proper to a feast/dinner party; + convivans_M_N : N ; -- [FXXEE] :: banqueters (pl.); + convivator_M_N : N ; -- [XXXEO] :: host; one who gives a dinner party/entertainment; master of feast (L+S); + conviventia_F_N : N ; -- [FXXEE] :: cooperation; living and working together; + convivifico_V2 : V2 ; -- [DEXES] :: quicken together; revive, give/restore life together (physical/spiritual); + convivium_N_N : N ; -- [XXXBO] :: banquet/feast/dinner party; guests/people at party; dining-club; living together + convivo_V : V ; -- [XXXCO] :: live at same time, be contemporary; spend time in company; live/dine together; + convivor_V : V ; -- [XXXCO] :: give/attend a dinner party/feast; carouse/feast/banquet together (L+S); eat; + convocatio_F_N : N ; -- [XXXFO] :: assembling, convoking, action of calling together; + convoco_V2 : V2 ; -- [XXXBO] :: call/bring together; assemble; convoke/convene; summon/muster; collect (thing); + convolnero_V2 : V2 ; -- [XXXCO] :: wound/inflict severe wounds (person/body part); cut; bore, perforate (pipe); + convolo_V : V ; -- [XXXCO] :: fly/flock together; run together; assemble rapidly; have recourse to (w/ad); + convolsio_F_N : N ; -- [XBXEO] :: dislocation, violent displacement of body part; cramp, convulsion (L+S); + convolsum_N_N : N ; -- [XBXNO] :: dislocations (pl.); wrenches; + convolsus_A : A ; -- [XBXES] :: suffering from wrenching/dislocation of a limb; + convoluto_V : V ; -- [XXXEO] :: revolve; whirl around; wallow in vice; + convoluto_V2 : V2 ; -- [XXXFS] :: whirl/roll around rapidly?; + convolvo_V2 : V2 ; -- [XXXBS] :: |fasten together, interweave, interlace; unroll and roll up (scroll), look up; + convolvolus_M_N : N ; -- [XAXEO] :: caterpillar which rolls up leaves; plant bindweed (Calystegia sepium); + convomo_V2 : V2 ; -- [XXXEO] :: vomit over/on; bespew upon (L+S); + convoro_V2 : V2 ; -- [DXXFS] :: eat up, devour; + convorro_V2 : V2 ; -- [XXXCO] :: sweep/brush/scrape together/thoroughly/up; sweep/beat clean; clear away (L+S); + convotus_M_N : N ; -- [XLXFO] :: binding vow; legal oath; + convoveo_V : V ; -- [XLXIO] :: join in taking a vow/oath; devour together (L+S)?; + convulnero_V2 : V2 ; -- [XXXCO] :: inflict severe wounds (on person/part of body); cut; bore, perforate (pipe); + convulsio_F_N : N ; -- [XBXEO] :: dislocation, violent displacement of body part; cramp, convulsion (L+S); + convulsum_N_N : N ; -- [XBXNO] :: dislocations (pl.); wrenches; + convulsus_A : A ; -- [XBXES] :: suffering from wrenching/dislocation of a limb; + conyza_F_N : N ; -- [XAXNO] :: strong-smelling composite plant (Inula viscosa and related species); fleabane; + coodibilis_A : A ; -- [DEXES] :: exceedingly/extremely hateful, detestable; + cooperatio_F_N : N ; -- [DXXES] :: co-operation; joint operation; + cooperativus_A : A ; -- [FXXEE] :: cooperative; + cooperator_M_N : N ; -- [DEXDS] :: joint-laborer, co-operator; coworker, fellow helper (Ecc); assistant; + cooperatrix_F_N : N ; -- [EEXEE] :: joint-laborer (female), co-operator; coworker, fellow helper (Ecc); assistant; + cooperculum_N_N : N ; -- [XXXEO] :: lid/cover (of a jar/coffin/etc.); + cooperimentum_N_N : N ; -- [XXXFO] :: covering; + cooperio_V2 : V2 ; -- [XXXCO] :: cover wholly/completely, cover up; overwhelm, bury deep; [lapidibus ~ => stone]; + cooperior_V : V ; -- [FXXDE] :: clothe; cover wholly/completely, cover up; overwhelm, bury deep; + coopero_V : V ; -- [FXXEE] :: work with/together, cooperate (with); combine, unite; + cooperor_V : V ; -- [DXXDS] :: work with/together, cooperate (with); combine, unite; + coopertorium_N_N : N ; -- [XXXFO] :: covering, garment; cover (L+S); + coopertus_A : A ; -- [XXXCO] :: overwhelmed, buried deep (in crime/misfortune/etc.); + cooptatio_F_N : N ; -- [XLXDO] :: co-option (into office or body); adoption; election, choice (L+S); confirmation; + coopto_V2 : V2 ; -- [XXXCO] :: choose (colleague in office), elect; co-opt, admit; + coordinatio_F_N : N ; -- [FXXDE] :: coordination, arranging together; + coordinatus_A : A ; -- [FSXEM] :: coordinate; + coordino_V : V ; -- [FXXDO] :: coordinate, arrange together; set in order; correlate; + coorior_V : V ; -- [XXXCO] :: appear, originate; arise, break out (bad); be born; spring forth/to attack; + coortus_M_N : N ; -- [XXXEO] :: coming into being, birth; breaking out (storm); rising, originating (L+S); + copa_F_N : N ; -- [XXXEO] :: dancing-girl; female tavern-keeper and castanet-dancer (L+S); + copadium_N_N : N ; -- [DXXES] :: delicacy, tidbit; (usu. pl.) delicacies; dainty dishes, tidbits (L+S); + coperculum_N_N : N ; -- [XXXEO] :: lid/cover (of a jar/coffin/etc.); + coperimentum_N_N : N ; -- [XXXFO] :: covering; + coperio_V2 : V2 ; -- [XXXDX] :: cover wholly/completely, cover up; overwhelm, bury deep; [lapidibus ~ => stone]; + coperor_V : V ; -- [DXXDS] :: work with/together, cooperate (with); combine, unite; + copertorium_N_N : N ; -- [XXXFO] :: covering, garment; cover (L+S); + copertus_A : A ; -- [XXXCO] :: overwhelmed, buried deep (in crime/misfortune/etc.); + coph_N : N ; -- [DEQEW] :: qof; (19th letter of Hebrew alphabet); (transliterate as K); + cophinus_M_N : N ; -- [XXXBO] :: basket, hamper; + copia_F_N : N ; -- [GXXEK] :: ||copy; + copiarius_M_N : N ; -- [DXXFS] :: purveyor; + copiata_M_N : N ; -- [DEXEO] :: sexton; grave-digger; + copiates_M_N : N ; -- [DEXEO] :: sexton; grave-digger; + copiola_F_N : N ; -- [XWXFO] :: small military forces (pl.); small number of troops (L+S); + copior_V : V ; -- [XWXFO] :: furnish oneself (with supplies); (military); provide oneself abundantly (L+S); + copiose_Adv : Adv ; -- [XXXCO] :: eloquently/fully/at length; w/abundant provisions, sumptuously/copiously/richly; + copiositas_F_N : N ; -- [FXXDE] :: abundance; + copiosus_A : A ; -- [XXXBO] :: |eloquent, w/plentiful command of the language; verbose; rich/wealthy; fruitful; + copis_F_N : N ; -- [XWXFO] :: short curved sword; + copo_M_N : N ; -- [XXXCO] :: shopkeeper, salesman, huckster; innkeeper, keeper of a tavern; + copona_F_N : N ; -- [XXXCO] :: landlady; (female) shopkeeper, hostess; inn, tavern, lodging-house; shop; + coppa_N : N ; -- [XXXEO] :: archaic Greek letter koppa; + coppadium_N_N : N ; -- [DXXES] :: delicacy, tidbit; (usu. pl.) delicacies; dainty dishes, tidbits (L+S); + coprea_M_N : N ; -- [XXXFO] :: buffoon, jester; + cops_A : A ; -- [XXXEO] :: well/abundantly equipped/supplied; rich; swelling (of chest with pride); + copta_F_N : N ; -- [XXXFO] :: kind of hard-baked cake; cake made with pounded materials (L+S); + coptatio_F_N : N ; -- [XLXDO] :: co-option (into office or body); adoption; election, choice (L+S); confirmation; + copto_V2 : V2 ; -- [XXXCO] :: choose (colleague in office), elect; co-opt, admit; + coptoplancenta_F_N : N ; -- [XXXFO] :: kind of hard-baked cake; cake made with pounded materials (L+S); + copula_F_N : N ; -- [XXXBO] :: |friendly/close relationship, bond, intimate connection; (used in grammar); + copulabilis_A : A ; -- [DEXFS] :: that can be connected; + copulate_Adv : Adv ; -- [XGXEO] :: as compound word, connectedly; + copulatim_Adv : Adv ; -- [XXXFS] :: in union; + copulatio_F_N : N ; -- [XXXDX] :: connecting, combining, joining, uniting; union, synthesis, association; + copulative_Adv : Adv ; -- [DXXFS] :: connectedly; + copulativus_A : A ; -- [DGXDO] :: of/pertaining to connecting, copulative; + copulator_M_N : N ; -- [DXXFS] :: connector, binder; + copulatrix_F_N : N ; -- [DXXFS] :: connector, she who connects/couples; + copulatum_N_N : N ; -- [DGXFS] :: joint sentence; (also called conjunctum); + copulatus_A : A ; -- [XXXCO] :: closely connected/associated/joined (blood/marriage); intimate; compound/complex + copulatus_M_N : N ; -- [DXXFS] :: connecting/joining together; + copulo_V2 : V2 ; -- [XXXBO] :: connect, join physically, couple; bind/tie together, associate, unite, ally; + copulor_V : V ; -- [XXXES] :: connect, join physically, couple; bind/tie together, associate, unite, ally; + coqua_F_N : N ; -- [XXXFO] :: cook (female); + coque_Adv : Adv ; -- [XXXAO] :: likewise; no less; besides, as well, also/too; not only; even/indeed, actually; + coquibilis_A : A ; -- [XXXNO] :: easy to cook; easily cooked (L+S); + coquina_F_N : N ; -- [XXXFO] :: cooking; art of cookery; kitchen (L+S); + coquinaris_A : A ; -- [XXXFO] :: of/belonging in kitchen; used in cooking; + coquinarius_A : A ; -- [XXXNO] :: of/belonging in kitchen; used in cooking; pertaining to kitchen, culinary (L+S); + coquinatorium_N_N : N ; -- [XXXIO] :: kitchen, place for cooking; + coquinatorius_A : A ; -- [XXXFO] :: culinary, used in cooking; pertaining to the kitchen (L+S); + coquino_V2 : V2 ; -- [XXXEO] :: cook, prepare food; + coquinus_A : A ; -- [XXXFO] :: of/pertaining to cooks/cooking; [forum ~ => market where cooks were hired]; + coquitatio_F_N : N ; -- [XXXFO] :: long and thorough process of cooking; continuous cooking (L+S); + coquitatorius_A : A ; -- [XXXFO] :: culinary; used in cooking; + coquito_V2 : V2 ; -- [BXXFO] :: cook; boil, fry, bake; burn, parch (sun); stir up; ripen, mature (plot); digest; + coquo_V2 : V2 ; -- [XXXAO] :: cook; boil, fry, bake; burn, parch (sun); stir up; ripen, mature (plot); digest; + coquos_M_N : N ; -- [XXXCO] :: cook; + coquula_F_N : N ; -- [XXXES] :: cook (female); + coquulum_N_N : N ; -- [XXXCS] :: cooking vessel/pot/pan; (bronze); + coquus_M_N : N ; -- [XXXCO] :: cook; + cor_N_N : N ; -- [XXXAO] :: heart; mind/soul/spirit; intellect/judgment; sweetheart; souls/persons (pl.); + cora_F_N : N ; -- [DBXFO] :: pupil of the eye; + coracesia_F_N : N ; -- [XAXNO] :: magical herb; (said to make water freeze L+S); + coracicum_N_N : N ; -- [DEXIS] :: mysteries of Mithras; + coracicus_A : A ; -- [XXXFS] :: of/belonging to/resembling a raven; + coracino_V : V ; -- [DAXFS] :: caw (like a crow); croak (like a frog); + coracinus_A : A ; -- [XXXEO] :: raven-black; + coracinus_M_N : N ; -- [XAXEO] :: fish; one of several dark-colored fish; (usu. Egyptian bolti Tilapia nilotica); + coragus_M_N : N ; -- [XDXCS] :: |he who has care of chorus and supplies; he who pays the cost of a banquet; + coralium_N_N : N ; -- [DXXDS] :: coral; (esp. red coral); + corallachates_F_N : N ; -- [XXXNO] :: precious stone (coral agate); + corallinus_A : A ; -- [XXXES] :: coral-red; coral-colored; + corallis_F_N : N ; -- [XXXNO] :: precious stone (unidentified); + coralliticus_A : A ; -- [XXXEO] :: name given to a white marble; made of this stone (of statues); + corallium_N_N : N ; -- [XXXDO] :: coral; + corallius_C_N : N ; -- [DXXFS] :: coral; + coralloachates_M_N : N ; -- [XXXNS] :: precious stone (coral agate); + corallum_N_N : N ; -- [DXXDS] :: coral; (esp. red coral); + coram_Abl_Prep : Prep ; -- [XXXCO] :: in the presence of, before; (may precede or follow object); personally (L+S); + coram_Adv : Adv ; -- [XXXBO] :: in person, face-to-face; in one's presence, before one's eyes; publicly/openly; + corambe_F_N : N ; -- [XAXFO] :: cultivated plant (unidentified); kind of cabbage injurious to the eyes (L+S); + coranus_M_N : N ; -- [GXXEK] :: Koran; + corarius_A : A ; -- [XXXEO] :: of/related to the tanning of hides; [frutex coriarius => sumac, Rhus coriaria]; + corax_M_N : N ; -- [XWXFO] :: kind of siege engine; raven (L+S); hooked war engine; battering ram (corvus); + corban_N : N ; -- [EEQFP] :: gift/corban (Hebrew); offering given to God usually associated w/vow; + corbicula_F_N : N ; -- [DXXFS] :: little basket; 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 ; - corbona_F_N : N ; - corbonas_M_N : N ; - corbula_F_N : N ; - corcholopis_M_N : N ; - corchoros_M_N : N ; - corchorum_N_N : N ; - corchorus_M_N : N ; - corcillum_N_N : N ; - corcodillus_M_N : N ; - corcodilus_M_N : N ; - corcota_F_N : N ; - corcotarius_A : A ; - corcotta_M_N : N ; - corculum_N_N : N ; - corcus_M_N : N ; - corda_F_N : N ; - cordate_Adv : Adv ; - cordatus_A : A ; - cordax_A : A ; - cordax_M_N : N ; - cordetenus_Adv : Adv ; - cordicitus_Adv : Adv ; - cordiger_A : A ; - cordipugus_A : A ; - cordolium_N_N : N ; - cordus_A : A ; - cordyla_F_N : N ; - corgo_Adv : Adv ; - coriaceus_A : A ; - coriaginosus_A : A ; - coriago_F_N : N ; - coriandratum_N_N : N ; - coriandron_N_N : N ; - coriandrum_N_N : N ; - coriandrus_F_N : N ; - coriarius_A : A ; - coriarius_M_N : N ; - coricus_M_N : N ; - corinthius_M_N : N ; - coriolum_N_N : N ; - corion_N_N : N ; - corior_V : V ; + corbis_M_N : N ; -- [XXXCO] :: basket; (esp. one used for gathering grain/fruit; basketful (quantity); + corbita_F_N : N ; -- [XWXDO] :: slow-sailing merchant/cargo vessel; shipload (quantity); + corbitus_A : A ; -- [XWXFS] :: with a scuttle; [w/navis => slow sailing cargo ship]; + corbona_F_N : N ; -- [EEQFO] :: corban, treasure chamber of Jerusalem Temple where money offerings are placed; + corbonas_M_N : N ; -- [EEQFW] :: corban, treasure chamber of Jerusalem Temple where money offerings are placed; + corbula_F_N : N ; -- [XXXDO] :: basket (small); contents of a small basket; + corcholopis_M_N : N ; -- [XAXFS] :: ape having tuft of hair at the end of its tail; + corchoros_M_N : N ; -- [XAXNS] :: edible plant; (prob. jute, Corchorus olitorius); poor wild legume (L+S); + corchorum_N_N : N ; -- [XAXNO] :: edible plant; (prob. jute, Corchorus olitorius); poor wild legume (L+S); + corchorus_M_N : N ; -- [XAXNO] :: edible plant; (prob. jute, Corchorus olitorius); poor wild legume (L+S); + corcillum_N_N : N ; -- [XBXFO] :: heart (as the seat of intelligence); brains; savoir-faire; little heart (L+S); + corcodillus_M_N : N ; -- [XAEEO] :: crocodile; land reptile, Nile monitor; + corcodilus_M_N : N ; -- [XAEEO] :: crocodile; land reptile, Nile monitor; + corcota_F_N : N ; -- [XXXDO] :: saffron-colored dress; (worn by women and effeminate men); + corcotarius_A : A ; -- [XXXFO] :: concerned with saffron-colored robes; (worn by women and effeminate men); + corcotta_M_N : N ; -- [XAAES] :: wild animal of Ethiopia; (unidentified); (perh. hyena); + corculum_N_N : N ; -- [XXXEC] :: little heart; (seat of feelings); sweetheart (endearment); wise/shrewd person; + corcus_M_N : N ; -- [DBXFS] :: disease of the chest; + corda_F_N : N ; -- [XXXEO] :: tripe; catgut, musical instrument string; rope/cord (binding a slave) (L+S); + cordate_Adv : Adv ; -- [XXXEO] :: sensibly, shrewdly; with intelligence; wisely, with prudence (L+S); + cordatus_A : A ; -- [XXXEO] :: prudent, wise; sensible, judicious; endowed with intelligence; + cordax_A : A ; -- [XXXDO] :: lively, tripping; + cordax_M_N : N ; -- [XPXDO] :: trochaic meter; cordax (indecent/extravagant dance of Greek comedy L+S); + cordetenus_Adv : Adv ; -- [FXXFX] :: as far as the heart?; with wisdom?; (JFW guess, medieval, not in L+S or Latham); + cordicitus_Adv : Adv ; -- [DXXFS] :: from the heart; deep in the heart; + cordiger_A : A ; -- [FXXFE] :: wearing a cord; + cordipugus_A : A ; -- [XXXFO] :: heart-piercing; + cordolium_N_N : N ; -- [XXXEO] :: heartfelt grief; sorrow of the heart, grief (L+S); + cordus_A : A ; -- [XAXCO] :: late-born/produced out of/late in the season; second (crop of hay), aftermath; + cordyla_F_N : N ; -- [XAXEO] :: young tunny; fry of the tunny (L+S); + corgo_Adv : Adv ; -- [AXXFO] :: surely, certainly; + coriaceus_A : A ; -- [DXXES] :: of leather, made of leather; + coriaginosus_A : A ; -- [DAXFS] :: afflicted with the coriago (skin disease of cattle); + coriago_F_N : N ; -- [XAXFO] :: hide-bound condition in cattle; disease of the skin of animals (L+S); + coriandratum_N_N : N ; -- [XXXFS] :: coriander-water; + coriandron_N_N : N ; -- [XAXES] :: coriander (aromatic herb); + coriandrum_N_N : N ; -- [XAXDO] :: coriander (aromatic herb); + coriandrus_F_N : N ; -- [XAXES] :: coriander (aromatic herb); + coriarius_A : A ; -- [XXXEO] :: of/related to leather/the tanning of hides; [frutex ~ => sumac, Rhus coriaria]; + coriarius_M_N : N ; -- [XXXDO] :: leather worker; tanner; currier (processes/dyes leather after the tanning); + coricus_M_N : N ; -- [XXXFS] :: heavy punching bag; sand-bag; + corinthius_M_N : N ; -- [XXHEO] :: Corinthian; worker/dealer in Corinthian bronze vessels; + coriolum_N_N : N ; -- [XXXDO] :: small piece of leather; + corion_N_N : N ; -- [XAXNS] :: plant; (also called chamaepitys or hypericon); + corior_V : V ; -- [XXXCO] :: appear, originate; arise, break out (bad); be born; spring forth/to attack; coris_1_N : N ; -- [XAXNS] :: plant; (species of hypericon); its seed; - coris_2_N : N ; - coris_F_N : N ; - corissum_N_N : N ; - corium_N_N : N ; - corius_M_N : N ; - cornatus_A : A ; - corneolus_A : A ; - cornesco_V : V ; - cornetum_N_N : N ; - corneus_A : A ; - cornicen_M_N : N ; - cornicor_V : V ; - cornicula_F_N : N ; - corniculans_A : A ; - cornicularius_M_N : N ; - corniculatus_A : A ; - corniculum_N_N : N ; - corniculus_M_N : N ; - cornifer_A : A ; - cornifrons_A : A ; - corniger_A : A ; - corniger_C_N : N ; - corniger_N_N : N ; - cornigera_F_N : N ; - cornipes_A : A ; - cornipes_M_N : N ; - cornipetus_A : A ; - cornix_F_N : N ; - cornu_N_N : N ; - cornualis_A : A ; - cornuarius_M_N : N ; - cornucopia_F_N : N ; - cornucopium_N_N : N ; - cornucularius_M_N : N ; - cornuculum_N_N : N ; - cornulum_N_N : N ; - cornum_N_N : N ; - cornupeta_F_N : N ; - cornupetus_A : A ; - cornus_F_N : N ; - cornuta_F_N : N ; - cornutus_A : A ; - cornutus_M_N : N ; - corocottas_F_N : N ; - coroliticus_A : A ; - corolla_F_N : N ; - corollaria_F_N : N ; - corollarium_N_N : N ; - corolliticus_A : A ; - corona_F_N : N ; - coronalis_A : A ; - coronamen_N_N : N ; - coronamentum_N_N : N ; - coronaria_F_N : N ; - coronarius_A : A ; - coronarius_M_N : N ; - coronatio_F_N : N ; - coronator_M_N : N ; - coronatus_A : A ; - coroneola_F_N : N ; - coroniola_F_N : N ; - coronis_F_N : N ; - corono_V : V ; - coronopus_M_N : N ; - coronula_F_N : N ; - corporale_N_N : N ; - corporalis_A : A ; - corporalitas_F_N : N ; - corporaliter_Adv : Adv ; - corporasco_V : V ; - corporatio_F_N : N ; - corporativus_A : A ; - corporatura_F_N : N ; - corporatus_A : A ; - corporatus_M_N : N ; - corporeus_A : A ; - corporicida_M_N : N ; - corporo_V2 : V2 ; - corporosus_A : A ; - corpulentia_F_N : N ; - corpulentus_A : A ; - corpus_N_N : N ; - corpuscularis_A : A ; - corpusculum_N_N : N ; - corrado_V2 : V2 ; - corrationalitas_F_N : N ; - correctio_F_N : N ; - corrector_M_N : N ; - correctura_F_N : N ; - correctus_A : A ; - correctus_M_N : N ; - correcumbens_A : A ; - corregio_F_N : N ; - corregionalis_M_N : N ; - corregno_V : V ; - correlativus_A : A ; - correpo_V : V ; - correpte_Adv : Adv ; - correptio_F_N : N ; - correpto_V : V ; - correptor_M_N : N ; - correptus_A : A ; - correspondens_M_N : N ; - correspondentia_F_N : N ; - correspondeo_V : V ; - corresupinatus_A : A ; - corresuscito_V2 : V2 ; - correus_M_N : N ; - corrideo_V : V ; - corrigia_F_N : N ; - corrigo_V2 : V2 ; - corripio_V2 : V2 ; - corrivalis_M_N : N ; - corrivatio_F_N : N ; - corrivium_N_N : N ; - corrivo_V2 : V2 ; - corrixatio_F_N : N ; - corroboramentum_N_N : N ; - corroboro_V2 : V2 ; - corroco_M_N : N ; - corrodo_V2 : V2 ; - corrogatio_F_N : N ; - corrogo_V2 : V2 ; - corrosio_F_N : N ; - corrotundo_V2 : V2 ; - corruda_F_N : N ; - corrugis_A : A ; - corrugo_V2 : V2 ; - corrugus_M_N : N ; - corrumpo_V2 : V2 ; - corrumptela_F_N : N ; - corrumptella_F_N : N ; - corruo_V2 : V2 ; - corrupte_Adv : Adv ; - corruptela_F_N : N ; - corruptibilis_A : A ; - corruptibilitas_F_N : N ; - corruptio_F_N : N ; - corruptive_Adv : Adv ; - corruptivus_A : A ; - corruptor_M_N : N ; - corruptorius_A : A ; - corruptrix_A : A ; - corruptrix_F_N : N ; - corruptum_N_N : N ; - corruptus_A : A ; - corruspor_V : V ; - corrutundo_V2 : V2 ; - cors_F_N : N ; - corsa_F_N : N ; - corsoides_M_N : N ; - corsum_Adv : Adv ; - corsus_Adv : Adv ; + coris_2_N : N ; -- [XAXNS] :: plant; (species of hypericon); its seed; + coris_F_N : N ; -- [XAXNS] :: plant; (species of hypericon); its seed; + corissum_N_N : N ; -- [XAXNO] :: plant (St. John's wort); chamaepitys (L+S); + corium_N_N : N ; -- [XAXBO] :: skin/leather/hide; peel/rind/shell/outer cover; layer/coating; thong/strap/whip; + corius_M_N : N ; -- [BAXDO] :: skin/leather/hide; peel/rind/shell/outer cover; layer/coating; thong/strap/whip; + cornatus_A : A ; -- [XXXFS] :: horn-like; horn-shaped; + corneolus_A : A ; -- [XAXFO] :: made of cornel-wood; + cornesco_V : V ; -- [XXXNO] :: become horny; (sexually stimulated); become like horn, turn to horn (L+S); + cornetum_N_N : N ; -- [XAXEO] :: plantation/orchard/grove of cornelian cherry trees; + corneus_A : A ; -- [XXXCO] :: of horn, made of horn, horn-; resembling horn (hardness/appearance); horny; + cornicen_M_N : N ; -- [XWXCO] :: trumpeter, bugler; horn blower; + cornicor_V : V ; -- [XXXEO] :: say in a croaking voice, croak out; caw like a crow (L+S); + cornicula_F_N : N ; -- [XAXFO] :: crow; little crow (L+S); + corniculans_A : A ; -- [DXXES] :: horn-shaped; horned; crescent-shaped; (like the new moon); + cornicularius_M_N : N ; -- [FDXEE] :: |trumpeter; + corniculatus_A : A ; -- [XXXFO] :: crescent-shaped; (like a horn); in the form of a horn, horned (L+S); + corniculum_N_N : N ; -- [XXXEC] :: little/small horn; (used as funnel); a horn-shaped decoration for soldiers; + corniculus_M_N : N ; -- [DLXFS] :: civil office of a cornicularius (aide/secretary); + cornifer_A : A ; -- [DXXES] :: horn-bearing, horned; having horns/antlers; + cornifrons_A : A ; -- [XAXFO] :: horned; having horns on the forehead; + corniger_A : A ; -- [XXXDO] :: horn-bearing, horned; having horns/antlers; [Jupiter Coniger => Ammon]; + corniger_C_N : N ; -- [XAXEO] :: horn-bearing/horned animal; + corniger_N_N : N ; -- [XAXNS] :: horn-bearing/horned animals/cattle (pl.); + cornigera_F_N : N ; -- [XAXIS] :: hind; doe, female deer (esp. after third year); + cornipes_A : A ; -- [XAXDO] :: hoofed, horn-footed; + cornipes_M_N : N ; -- [XAXDO] :: hoofed animal; (horse); (centaur); + cornipetus_A : A ; -- [EXXFS] :: pushing/goring with horns; + cornix_F_N : N ; -- [XAXCO] :: crow; (or related bird); (example of longevity); (insulting for old woman); + cornu_N_N : N ; -- [XXXAO] :: horn; hoof; beak/tusk/claw; bow; horn/trumpet; end, wing of army; mountain top; + cornualis_A : A ; -- [DXXES] :: of/with/pertaining to horns; + cornuarius_M_N : N ; -- [XWXFO] :: maker of bugles/horns/trumpets; + cornucopia_F_N : N ; -- [FXXEE] :: cornucopia, symbol/emblem of abundance; (horn-shaped); + cornucopium_N_N : N ; -- [FXXEE] :: sconce, bracket for holding candles; (horn-shaped?); + cornucularius_M_N : N ; -- [XWXCS] :: adjutant/aide (officer's); (given the corniculum/promoted); assistant/secretary; + cornuculum_N_N : N ; -- [XXXEC] :: little/small horn; (used as funnel); a horn-shaped decoration for soldiers; + cornulum_N_N : N ; -- [DXXFS] :: little horn; + cornum_N_N : N ; -- [XXXCO] :: horn; hoof; beak/tusk/claw; bow; horn/trumpet; end, wing of army; mountain top; + cornupeta_F_N : N ; -- [DXXFE] :: act of pushing/goring with horns; + cornupetus_A : A ; -- [DXXFS] :: pushing/goring with horns; + cornus_F_N : N ; -- [XXXCO] :: cornel-cherry-tree (Cornus mas); cornel wood; javelin (of cornel wood); + cornuta_F_N : N ; -- [XAXEO] :: any horned animal; name of a fish/sea-animal (unidentified); horned syllogism; + cornutus_A : A ; -- [XXXCO] :: horned; having horns/horn-like appendages; tusked; + cornutus_M_N : N ; -- [XAXEO] :: ox, bullock; oxen (pl.), bullocks; + corocottas_F_N : N ; -- [XAXNO] :: animal (unidentified); + coroliticus_A : A ; -- [XXXEO] :: name given to a white marble; made of this stone (of statues); + corolla_F_N : N ; -- [XXXCO] :: small garland, small wreath/crown of flowers; + corollaria_F_N : N ; -- [XXXFO] :: flower girl; (comedy by Naevius); female flower-garlands merchant (L+S); + corollarium_N_N : N ; -- [XXXCO] :: flower garland; (reward/prize); (money for); present/gift; tip/gratuity; + corolliticus_A : A ; -- [XXXEO] :: name given to a white marble; made of this stone (of statues); + corona_F_N : N ; -- [XXXAO] :: crown; garland, wreath; halo/ring; circle of men/troops; [sub ~ => as slaves]; + coronalis_A : A ; -- [XXXFO] :: of/associated with a wreath/garland/crown; + coronamen_N_N : N ; -- [XXXFO] :: wreaths collectively, garlandry; wreathing/crowning (L+S); + coronamentum_N_N : N ; -- [XXXEO] :: flowers (pl.) for making garlands; garland/crown itself (L+S); + coronaria_F_N : N ; -- [XXXEO] :: woman who makes/sells garlands/wreaths; + coronarius_A : A ; -- [XXXCO] :: connected with/used for crowns/garlands/wreaths or the manufacture; of cornice; + coronarius_M_N : N ; -- [XXXEO] :: maker/seller of garlands/wreaths/crowns; + coronatio_F_N : N ; -- [DXXEE] :: coronation; + coronator_M_N : N ; -- [DXXFS] :: crowner; + coronatus_A : A ; -- [XXXCO] :: garlanded, adorned with wreaths; (of persons/animals/buildings); + coroneola_F_N : N ; -- [XAXNS] :: kind of autumn rose; + coroniola_F_N : N ; -- [XAXNO] :: kind of autumn rose; + coronis_F_N : N ; -- [CXXFO] :: colophon, device for marking the end of a book; curved line/flourish at end; + corono_V : V ; -- [XXXBX] :: wreathe, crown, deck with garlands; award prize; surround/encircle, ring round; + coronopus_M_N : N ; -- [XAXNO] :: plant w/toothed leaves, buckthorn plantain (Plantago coronopus); swine's cress; + coronula_F_N : N ; -- [DEXDS] :: ornament on mitre; rim/border on base of basin/laver; hair crown at horse hoof; + corporale_N_N : N ; -- [XXXEE] :: corporal, linen for consecrated elements of mass; ancient eucharistic vestment; + corporalis_A : A ; -- [XXXCO] :: of/belonging/related to body, physical; having tangible body/material/corporeal; + corporalitas_F_N : N ; -- [DXXFS] :: materiality, corporality; (as opposed to spirituality); + corporaliter_Adv : Adv ; -- [XXXEO] :: in respect of material things; carnally; corporally, bodily (L+S); + corporasco_V : V ; -- [DEXES] :: assume a body; become incarnate; + corporatio_F_N : N ; -- [XBXFO] :: build, physical make-up; assuming a body, incarnation (L+S); + corporativus_A : A ; -- [DXXFS] :: of/pertaining to the forming of a body; + corporatura_F_N : N ; -- [XBXEO] :: build, frame; physical/corporeal structure/nature; + corporatus_A : A ; -- [GLXEK] :: |corporate-, corporation-, of a corporation; (Cal); + corporatus_M_N : N ; -- [XXXIO] :: member of a corporate society/corporation; + corporeus_A : A ; -- [XXXDX] :: corporeal/material/physical, endowed w/body; fleshy, composed of animal tissue; + corporicida_M_N : N ; -- [XXXFS] :: butcher; + corporo_V2 : V2 ; -- [XXXDO] :: kill, strike dead; form into a body, furnish w/a body; form (corporate society); + corporosus_A : A ; -- [DBXFS] :: corpulent, gross, large, fat, obese; + corpulentia_F_N : N ; -- [XBXNO] :: obesity, corpulence, fleshiness of body; putting on of flesh/fat; + corpulentus_A : A ; -- [XXXDO] :: corpulent, fat, stout, of a heavy build of body; large; great (L+S); physical; + corpus_N_N : N ; -- [XXXAO] :: |substantial/material/concrete object/body; particle/atom; corporation, guild; + corpuscularis_A : A ; -- [GXXEK] :: corpuscular; + corpusculum_N_N : N ; -- [XXXDX] :: small/little body/object, atom/minute particle; human body (contempt/pity/love); + corrado_V2 : V2 ; -- [XXXCO] :: rake/sweep/draw together; amass with difficulty, scrape together; scrape off; + corrationalitas_F_N : N ; -- [DSXFS] :: analogy; + correctio_F_N : N ; -- [XXXCO] :: amendment, rectification; improvement, correction; word substitution; reproof; + corrector_M_N : N ; -- [XXXDX] :: corrector/improver, reformer; one who sets things right; financial commissioner; + correctura_F_N : N ; -- [DLXES] :: office of a corrector (financial commissioner/land bailiff); + correctus_A : A ; -- [XXXEO] :: reformed (person); + correctus_M_N : N ; -- [DXXES] :: reformed person; one who has/is reformed; + correcumbens_A : A ; -- [DXXFS] :: lying down with (anyone); + corregio_F_N : N ; -- [XEXEO] :: drawing of boundary lines (within which auspices may be taken); + corregionalis_M_N : N ; -- [DXXFS] :: adjoining/neighboring people; + corregno_V : V ; -- [DLXES] :: reign together with one; + correlativus_A : A ; -- [FXXFM] :: correlative; + correpo_V : V ; -- [XXXCO] :: creep, crawl; slink, move stealthily; take to the bush; creep (of the flesh); + correpte_Adv : Adv ; -- [XGXEO] :: shortly; with a short vowel or syllable; + correptio_F_N : N ; -- [XXXCO] :: seizure/attack, onset (disease); reproof/rebuke/censure; shorting (in vowel); + correpto_V : V ; -- [DXXCS] :: creep; + correptor_M_N : N ; -- [DXXES] :: reprover, censurer, corrector; + correptus_A : A ; -- [XGXEO] :: short; (of a syllable); + correspondens_M_N : N ; -- [GXXEK] :: correspondent; + correspondentia_F_N : N ; -- [FXXEM] :: correspondence; mutual agreement; + correspondeo_V : V ; -- [FXXDM] :: correspond; harmonize; repay; reciprocate; respond to; answer strongly; + corresupinatus_A : A ; -- [DXXFS] :: bent backwards at the same time; + corresuscito_V2 : V2 ; -- [DEXES] :: raise up/from the dead together; + correus_M_N : N ; -- [XLXFO] :: joint defendant; co-respondent; joint/co-criminal (Ecc); + corrideo_V : V ; -- [XXXFO] :: laugh together; laugh out loud (L+S); + corrigia_F_N : N ; -- [XXXEO] :: shoe-lace/tie, thong for securing shoes to feet; thong of any kind; + corrigo_V2 : V2 ; -- [XXXBO] :: correct, set right; straighten; improve, edit, reform; restore, cure; chastise; + corripio_V2 : V2 ; -- [XXXAO] :: |censure/reproach/rebuke/chastise; shorten/abridge; hasten (upon); catch (fire); + corrivalis_M_N : N ; -- [XXXFS] :: joint rival; + corrivatio_F_N : N ; -- [XXXNO] :: leading/channeling (water) into the same channel/basin, collection; + corrivium_N_N : N ; -- [XXXNS] :: confluence of brooks/streams; + corrivo_V2 : V2 ; -- [XXXEO] :: lead/channel (water) into the same channel/basin, collect; + corrixatio_F_N : N ; -- [FXXEV] :: violent quarrel/brawl/dispute/altercation/conflict/clash/struggle; + corroboramentum_N_N : N ; -- [DXXFS] :: means of strengthening; + corroboro_V2 : V2 ; -- [XXXBO] :: strengthen, harden, reinforce; corroborate; mature; make powerful, fortify; + corroco_M_N : N ; -- [DAXFS] :: kind of fish (unidentified); + corrodo_V2 : V2 ; -- [XXXDO] :: gnaw, gnaw away; chew up; gnaw to pieces (L+S); + corrogatio_F_N : N ; -- [DEXFS] :: bringing together; gathering, assembly (Ecc); collection; + corrogo_V2 : V2 ; -- [XXXCO] :: collect money by begging/entreaty; summon/invite (persons) to a gathering; + corrosio_F_N : N ; -- [XXXFE] :: gnawing; + corrotundo_V2 : V2 ; -- [XXXDO] :: make round; round off; amass/make up a round sum of money; + corruda_F_N : N ; -- [XAXEO] :: wild asparagus; + corrugis_A : A ; -- [XXXFS] :: wrinkled, having wrinkles/folds; corrugated; + corrugo_V2 : V2 ; -- [XXXEO] :: make wrinkled; (make one turn up one's nose); corrugate; + corrugus_M_N : N ; -- [XTXNO] :: channel/canal/conduit/sluice constructed to bring wash water for ore (mining); + corrumpo_V2 : V2 ; -- [XXXAO] :: |pervert, corrupt, deprave; bribe, suborn; seduce, tempt, beguile; falsify; + corrumptela_F_N : N ; -- [XXXCS] :: |seduction/seducing; enticement to sexual misconduct; brothel/place of seduction + corrumptella_F_N : N ; -- [EXXCE] :: |seduction/seducing; enticement to sexual misconduct; brothel/place of seduction + corruo_V2 : V2 ; -- [XXXBO] :: |topple (house/wall), totter; subside (ground); rush/sweep together; overthrow; + corrupte_Adv : Adv ; -- [XXXCO] :: incorrectly; perversely; in bad style/depraved manner; licentiously, corruptly; + corruptela_F_N : N ; -- [XXXCO] :: |seduction/seducing; enticement to sexual misconduct; brothel/place of seduction + corruptibilis_A : A ; -- [DXXES] :: corruptible, liable to decay, perishable; + corruptibilitas_F_N : N ; -- [DEXFS] :: corruptibility, perishability; + corruptio_F_N : N ; -- [XXXDO] :: corruption; bribery, seduction from loyalty; diseased/corrupt condition; + corruptive_Adv : Adv ; -- [DEXFS] :: corruptibly; perishably; + corruptivus_A : A ; -- [DEXFS] :: corruptible; perishable; + corruptor_M_N : N ; -- [XXXDX] :: corruptor, briber; seducer, ravisher; one who ruins/spoils/spreads infection; + corruptorius_A : A ; -- [DXXFS] :: destructible; corruptible, perishable; + corruptrix_A : A ; -- [XXXFO] :: tending to deprave/corrupt, corruptive; + corruptrix_F_N : N ; -- [DXXES] :: she who corrupts/seduces; + corruptum_N_N : N ; -- [XBXFS] :: corrupted parts (pl.) (of the body); + corruptus_A : A ; -- [XXXCO] :: |incorrect/improper/disorderly; impure/adulterated/changed for worse; seditious; + corruspor_V : V ; -- [XXXEO] :: search for, seek out; search carefully after (L+S); + corrutundo_V2 : V2 ; -- [XXXDO] :: make round; round off; amass/make up a round sum of money; + cors_F_N : N ; -- [XWXAO] :: |cohort, tenth part of legion (360 men); armed force; band; ship crew; bodyguard + corsa_F_N : N ; -- [XTXEO] :: facia; (architectural flat surface/tablet/plate on column/door jamb/lintel); + corsoides_M_N : N ; -- [XXXNO] :: precious stone (unidentified); (gender does not follow rule OLD); + corsum_Adv : Adv ; -- [XXXFO] :: in what direction; to what place/condition/action/point/end; with what view? + corsus_Adv : Adv ; -- [XXXFO] :: in what direction; to what place/condition/action/point/end; with what view? 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 ; - corticius_A : A ; - corticosus_A : A ; - corticulus_M_N : N ; - cortina_F_N : N ; - cortinale_N_N : N ; - cortinipotens_M_N : N ; - cortinula_F_N : N ; - cortumio_F_N : N ; - cortus_M_N : N ; - corulus_F_N : N ; - corus_M_N : N ; - coruscamen_N_N : N ; - coruscatio_F_N : N ; - coruscifer_A : A ; - corusco_V : V ; - coruscum_N_N : N ; - coruscus_A : A ; - coruscus_M_N : N ; - corvinus_A : A ; - corvus_M_N : N ; - coryceum_N_N : N ; - corycomachia_F_N : N ; - corycus_M_N : N ; - corydalus_M_N : N ; - coryletum_N_N : N ; - corylus_F_N : N ; - corymbias_M_N : N ; - corymbiatus_A : A ; - corymbifer_A : A ; - corymbion_N_N : N ; - corymbites_M_N : N ; - corymbus_M_N : N ; - coryphaeus_M_N : N ; - coryphion_N_N : N ; - corytos_M_N : N ; - corytus_M_N : N ; - coryza_F_N : N ; - cos_F_N : N ; - cos_N : N ; - coscinomantia_F_N : N ; - cosentio_V2 : V2 ; - cosidero_V2 : V2 ; - cosigno_V2 : V2 ; - cosmeta_M_N : N ; - cosmetes_M_N : N ; - cosmetica_F_N : N ; - cosmeticus_A : A ; - cosmicos_A : A ; - cosmicos_M_N : N ; - cosmicum_N_N : N ; - cosmicus_A : A ; - cosmitto_V2 : V2 ; - cosmogonia_F_N : N ; - cosmographia_F_N : N ; - cosmographicus_A : A ; - cosmographus_M_N : N ; - cosmologia_F_N : N ; - cosmologicus_A : A ; - cosmonauta_M_N : N ; - cosmopoliticus_A : A ; - cosmopolitismus_M_N : N ; - cosmos_M_N : N ; - coss_N : N ; - cossim_Adv : Adv ; - cossis_M_N : N ; - cossus_M_N : N ; - costa_F_N : N ; - costabilis_A : A ; - costamomum_N_N : N ; - costatus_A : A ; - costos_F_N : N ; - costum_N_N : N ; - costus_F_N : N ; - cotangens_F_N : N ; - cotaria_F_N : N ; - cotenea_F_N : N ; - cotes_F_N : N ; - cotho_M_N : N ; - cothurnate_Adv : Adv ; - cothurnatio_F_N : N ; - cothurnatus_A : A ; - cothurnus_M_N : N ; - coticula_F_N : N ; - cotidiano_Adv : Adv ; - cotidianus_A : A ; - cotidie_Adv : Adv ; - cotidio_Adv : Adv ; - cotila_F_N : N ; - cotinus_M_N : N ; - cotio_M_N : N ; - cotoneum_N_N : N ; - cotoneus_A : A ; - cotonum_N_N : N ; - cotoria_F_N : N ; - cottabus_M_N : N ; - cottanum_N_N : N ; - cottatium_N_N : N ; - cottidiano_Adv : Adv ; - cottidianus_A : A ; - cottidie_Adv : Adv ; - cottidio_Adv : Adv ; - cottonum_N_N : N ; - cotula_F_N : N ; - coturnatus_A : A ; - coturnix_F_N : N ; - coturnus_M_N : N ; - cotyla_F_N : N ; - cotyledon_F_N : N ; - coum_N_N : N ; - coutor_V : V ; - covinnarius_M_N : N ; - covinnus_M_N : N ; - coxa_F_N : N ; - coxendix_F_N : N ; - coxim_Adv : Adv ; - coxo_M_N : N ; - coxus_A : A ; - crabattus_M_N : N ; - crabatus_M_N : N ; - crabro_M_N : N ; - cracca_F_N : N ; - cracens_A : A ; - cramaculus_M_N : N ; - crambe_F_N : N ; - cramum_N_N : N ; - crapula_F_N : N ; - crapulanus_A : A ; - crapularius_A : A ; - crapulatio_F_N : N ; - crapulatus_A : A ; - crapulentus_A : A ; - crapulosus_A : A ; - cras_Adv : Adv ; - crassamen_N_N : N ; - crassamentum_N_N : N ; - crassator_M_N : N ; - crasse_Adv : Adv ; - crassendo_F_N : N ; - crassesco_V : V ; - crassicula_F_N : N ; - crassificatio_F_N : N ; - crassitas_F_N : N ; - crassities_F_N : N ; - crassitudo_F_N : N ; - crassivenius_A : A ; - crasso_V2 : V2 ; - crassundium_N_N : N ; - crassus_A : A ; - crastino_Adv : Adv ; - crastinum_N_N : N ; - crastinus_A : A ; + cortex_M_N : N ; -- [XAXBO] :: bark; cork; skin, rind, husk, hull; outer covering, shell, carapace, chrysalis; + corticatus_A : A ; -- [XXXFO] :: derived from bark; covered with bark (L+S); + corticeus_A : A ; -- [XXXEO] :: made from bark; of bark/cork (L+S); + corticius_A : A ; -- [XXXEO] :: made from bark; + corticosus_A : A ; -- [XXXNO] :: covered in bark/rind; containing pieces of bark/rind/shell; abounding in bark; + corticulus_M_N : N ; -- [XAXFO] :: thin rind (of the olive); small/thin rind/bark/shell (L+S); + cortina_F_N : N ; -- [XXXCO] :: cauldron, (of Delphi oracle), kettle; water-organ; vault/arch; curtain (L+S); + cortinale_N_N : N ; -- [XXXFO] :: cauldron-room; (where new wine was boiled down); + cortinipotens_M_N : N ; -- [XEXFO] :: master of the (oracular) cauldron (Apollo); + cortinula_F_N : N ; -- [DXXFS] :: small kettle; + cortumio_F_N : N ; -- [XEXEO] :: augural word (uncertain meaning); + cortus_M_N : N ; -- [XXXEO] :: coming into being, birth; breaking out (storm); rising, originating (L+S); + corulus_F_N : N ; -- [XAXCO] :: hazel-tree; hazel wood; filbert shrub (L+S); + corus_M_N : N ; -- [XXXCO] :: north-west wind; + coruscamen_N_N : N ; -- [XXXFO] :: flash, gleam; glittering (L+S); + coruscatio_F_N : N ; -- [DXXES] :: flash, gleam; glittering; + coruscifer_A : A ; -- [DEXFS] :: lightening-bearing; + corusco_V : V ; -- [XXXBO] :: brandish/shake/quiver; flash/glitter, emit/reflect intermittent/quivering light; + coruscum_N_N : N ; -- [XSXFS] :: lightening; + coruscus_A : A ; -- [XXXCO] :: vibrating/waving/tremulous/shaking; flashing, twinkling; brilliant (L+S); + coruscus_M_N : N ; -- [ESXFW] :: lightening; (2 Ezra 6:2); + corvinus_A : A ; -- [XAXEO] :: raven-, of/belonging/pertaining to a raven; + corvus_M_N : N ; -- [XWXDO] :: |military engine; grappling iron; surgical instrument; fellator (rude) (L+S); + coryceum_N_N : N ; -- [XXXFO] :: room in a palaestra for exercise with the heavy punching-bag; + corycomachia_F_N : N ; -- [DXXFS] :: exercise of athlete with the corycus (heavy punching-bag); + corycus_M_N : N ; -- [XXXFO] :: heavy punching bag; sand-bag; + corydalus_M_N : N ; -- [DAXFS] :: crested lark; + coryletum_N_N : N ; -- [XAXFO] :: copse of hazel-trees, hazel-thicket; + corylus_F_N : N ; -- [XAXCO] :: hazel-tree; hazel wood; filbert shrub (L+S); + corymbias_M_N : N ; -- [XAXNO] :: species of giant fennel (Ferula); + corymbiatus_A : A ; -- [DAXFS] :: set round with clusters of ivy-berries; + corymbifer_A : A ; -- [XXXFO] :: wearing garlands of clusters of ivy-berries; (epithet of Bacchus); + corymbion_N_N : N ; -- [XXXFO] :: curled wig/hair; (curled in the form of clusters of ivy-berries L+S); + corymbites_M_N : N ; -- [XAXNO] :: kind of spurge; species of the plant tithymalus (L+S); + corymbus_M_N : N ; -- [XAXCO] :: cluster of ivy-berries/flowers/fruit; stern of a ship (pl.); nipple (L+S); + coryphaeus_M_N : N ; -- [XLXFO] :: leader, chief, head; + coryphion_N_N : N ; -- [XAXNO] :: small shell-fish; winkle; whelk; kind of murex/snail yielding purple dye (L+S); + corytos_M_N : N ; -- [XWXDO] :: quiver, case holding arrows; + corytus_M_N : N ; -- [XWXDO] :: quiver, case holding arrows; + coryza_F_N : N ; -- [DBXFS] :: catarrh; cold, runny nose; + cos_F_N : N ; -- [XXXCO] :: flint-stone; whetstone, hone, grinding stone; rocks (pl.); any hard stone (L+S); + cos_N : N ; -- [CLICO] :: consul (the highest elected Roman official); abb. cons./cos.; + coscinomantia_F_N : N ; -- [DEXFS] :: divination by the sieve; + cosentio_V2 : V2 ; -- [XXXIS] :: ||agree, consent; fit/be consistent/in sympathy/unison with; favor; assent to; + cosidero_V2 : V2 ; -- [XXXIO] :: examine/look at/inspect; consider closely, reflect on/contemplate; investigate; + cosigno_V2 : V2 ; -- [XXXIO] :: (fix a) seal; put on record; indicate precisely/establish; attest/authenticate; + cosmeta_M_N : N ; -- [XXXFC] :: woman's valet; slave responsible for the adornment of his mistress; + cosmetes_M_N : N ; -- [XXXFO] :: woman's valet; slave responsible for the adornment of his mistress; + cosmetica_F_N : N ; -- [GXXEK] :: cosmetic; + cosmeticus_A : A ; -- [GXXEK] :: cosmetic; + cosmicos_A : A ; -- [XXXEO] :: of the world; fashionable; cosmopolitan; + cosmicos_M_N : N ; -- [XXXFC] :: citizen of the world; + cosmicum_N_N : N ; -- [DEXFS] :: worldly things (pl.); + cosmicus_A : A ; -- [DXXES] :: of the world; fashionable; cosmopolitan; + cosmitto_V2 : V2 ; -- [AXXCS] :: |engage (battle), set against; begin/start; bring about; commit; incur; forfeit; + cosmogonia_F_N : N ; -- [HSXEK] :: cosmogony; (subject of) generation/creation of existing universe; + cosmographia_F_N : N ; -- [DSXFS] :: description/mapping of the universe; + cosmographicus_A : A ; -- [HSXEK] :: cosmographic; + cosmographus_M_N : N ; -- [DSXFS] :: cosmologist, one who describes the universe; + cosmologia_F_N : N ; -- [HSXEK] :: cosmology; + cosmologicus_A : A ; -- [HSXEK] :: cosmological; + cosmonauta_M_N : N ; -- [GXXEK] :: cosmonaut; + cosmopoliticus_A : A ; -- [GXXEK] :: cosmopolitan; + cosmopolitismus_M_N : N ; -- [GXXEK] :: cosmopolitanism; + cosmos_M_N : N ; -- [XXXEO] :: universe; one of the chief magistrates of Crete; + coss_N : N ; -- [XXXCO] :: consuls (pl.) (highest elected official); abb. conss./coss.; (two of a year); + cossim_Adv : Adv ; -- [DXXES] :: |as to give way/lose ground; bending/turning in; (turned) backwards; obliquely; + cossis_M_N : N ; -- [XAXDO] :: worm or grub found in wood; + cossus_M_N : N ; -- [XAXDO] :: worm or grub found in wood; + costa_F_N : N ; -- [XBXCO] :: rib; side/flank/back; rib with meat; ribs/frame of ship; sides (pl.) of pot; + costabilis_A : A ; -- [DXXFS] :: rib-like; + costamomum_N_N : N ; -- [DAXFS] :: aromatic plant (similar to costum and amomum); + costatus_A : A ; -- [XXXFO] :: ribbed, having ribs; + costos_F_N : N ; -- [XAXCO] :: aromatic plant/its powdered root; (Saussurea lappa); + costum_N_N : N ; -- [XAXCO] :: aromatic plant/its powdered root; (Saussurea lappa); + costus_F_N : N ; -- [XAXCO] :: aromatic plant/its powdered root; (Saussurea lappa); + cotangens_F_N : N ; -- [GSXEK] :: cotangent (math); + cotaria_F_N : N ; -- [XXXFS] :: quarry for whetstones; + cotenea_F_N : N ; -- [XAXNO] :: plant; (perh. comfrey); wallwort (L+S); black briony; + cotes_F_N : N ; -- [XXXBO] :: rough pointed/detached rock, loose stone; rocks (pl.), cliff, crag; reef; + cotho_M_N : N ; -- [XXXEO] :: basin, artificial harbor; (artificial inner harbor at Carthage L+S); + cothurnate_Adv : Adv ; -- [DDXFS] :: loftily, tragically; + cothurnatio_F_N : N ; -- [DDXFS] :: tragic representation; + cothurnatus_A : A ; -- [XDXCO] :: wearing the buskin (Greek actor's boot); in lofty style, of tragic themes; + cothurnus_M_N : N ; -- [XDXCO] :: |elevated/tragic/solemn style; tragic poetry; the tragic stage; + coticula_F_N : N ; -- [XXXNO] :: touchstone (used to test gold); small mortar (medical); test (L+S); + cotidiano_Adv : Adv ; -- [XXXDO] :: every day, daily; + cotidianus_A : A ; -- [XXXBO] :: daily, everyday; usual/habitual, normal/regular; ordinary/common/unremarkable; + cotidie_Adv : Adv ; -- [XXXBO] :: daily, every day; day by day; usually, ordinarily, commonly; + cotidio_Adv : Adv ; -- [XXXEO] :: daily, every day; day by day; usually, ordinarily, commonly; + cotila_F_N : N ; -- [XSXEO] :: small cup; liquid measure (= 6 cyathi/1 hemina/half sextarius/about 1/2 pint); + cotinus_M_N : N ; -- [XAXNO] :: shrub producing purple dye; sumac-tree (Rhus cotinus); + cotio_M_N : N ; -- [XXXDS] :: dealer; broker; + cotoneum_N_N : N ; -- [XAXNO] :: quince; quince tree; + cotoneus_A : A ; -- [XAXCO] :: quince-; (of Cydonia/city in Crete/now Canea); [malum ~ => quince fruit/tree]; + cotonum_N_N : N ; -- [XAQES] :: kind of small fig; (grown in Syria); + cotoria_F_N : N ; -- [XXXFO] :: quarry for whetstones; + cottabus_M_N : N ; -- [XXXFO] :: game in which wine is thrown so as to fall noisily on a mark; blows (humorous); + cottanum_N_N : N ; -- [XAQEO] :: kind of small fig; (grown in Syria); + cottatium_N_N : N ; -- [XXXFO] :: some sort of gold ornament; + cottidiano_Adv : Adv ; -- [XXXDO] :: every day, daily; + cottidianus_A : A ; -- [XXXDO] :: daily, everyday; usual/habitual, normal/regular; ordinary/common/unremarkable; + cottidie_Adv : Adv ; -- [XXXCO] :: daily, every day; day by day; usually, ordinarily, commonly; + cottidio_Adv : Adv ; -- [XXXEO] :: daily, every day; day by day; usually, ordinarily, commonly; + cottonum_N_N : N ; -- [XAQEO] :: kind of small fig; (grown in Syria); + cotula_F_N : N ; -- [XSXEO] :: small cup; liquid measure (= 6 cyathi/1 hemina/half sextarius/about 1/2 pint); + coturnatus_A : A ; -- [XDXCO] :: wearing the buskin (Greek actor's boot); in lofty style, of tragic themes; + coturnix_F_N : N ; -- [XAXCO] :: quail; (also term of endearment); + coturnus_M_N : N ; -- [FDXEZ] :: lofty-style-actor; tragic actor declaiming in lofty style; buskin-clad actor; + cotyla_F_N : N ; -- [XSXES] :: small cup; liquid measure (= 6 cyathi/1 hemina/half sextarius/about 1/2 pint); + cotyledon_F_N : N ; -- [XAXEO] :: plant, navelwort; + coum_N_N : N ; -- [XAXEO] :: hole in middle of yoke in which pole fits; thong used to attach pole to yoke; + coutor_V : V ; -- [DXXFS] :: associate with, have dealings with; + covinnarius_M_N : N ; -- [XWXFO] :: soldier who fought from a war chariot; + covinnus_M_N : N ; -- [XWXEO] :: war-chariot (w/scythes on axle) (Celtic); a traveling-chariot/carriage; + coxa_F_N : N ; -- [XBXCO] :: hip (of human); haunch (of animal); hip bone (L+S); bend inwards; + coxendix_F_N : N ; -- [XBXCO] :: hip; hip bone; + coxim_Adv : Adv ; -- [DXXFS] :: on hips; (at the hip?); + coxo_M_N : N ; -- [DBXFS] :: hobbling; + coxus_A : A ; -- [XBXFO] :: lame; + crabattus_M_N : N ; -- [XXXCO] :: cot, camp bed, pallet; low couch or bed; (usu.) mean/wretched bed/couch; + crabatus_M_N : N ; -- [XXXCO] :: cot, camp bed, pallet; low couch or bed; (usu.) mean/wretched bed/couch; + crabro_M_N : N ; -- [XAXEO] :: hornet; wasp; [irritare crabones => to disturb a hornets'/wasp's nest]; + cracca_F_N : N ; -- [XAXNO] :: kind of wild vetch; + cracens_A : A ; -- [BXXFO] :: slender; neat, graceful (L+S); + cramaculus_M_N : N ; -- [GXXEK] :: trammel (of chimney); + crambe_F_N : N ; -- [XAXEO] :: cabbage; [~ repetita => of stale repetition]; + cramum_N_N : N ; -- [GXXEK] :: cream; + crapula_F_N : N ; -- [XXXCO] :: drunkenness, intoxication; hangover; resin residue used to flavor wine; + crapulanus_A : A ; -- [XXXNO] :: resinous, containing resin; (wine); + crapularius_A : A ; -- [XXXFO] :: good for curing hangovers; pertaining to intoxication (L+S); + crapulatio_F_N : N ; -- [DXXFS] :: intoxication; + crapulatus_A : A ; -- [DXXFS] :: inebriated, intoxicated, drunk; drunken with wine; + crapulentus_A : A ; -- [DXXFS] :: very drunk, very much intoxicated; + crapulosus_A : A ; -- [DXXFS] :: inclined to drunkenness; + cras_Adv : Adv ; -- [XXXBO] :: tomorrow; after today, on the morrow; hereafter, in the future; + crassamen_N_N : N ; -- [XXXFO] :: sediment; dregs (L+S); + crassamentum_N_N : N ; -- [XXXEO] :: thickness (of an object); thick sediment of a liquid, dregs, grounds (L+S); + crassator_M_N : N ; -- [XXXCO] :: vagabond; footpad, highway robber; + crasse_Adv : Adv ; -- [XXXCO] :: dimly/indistinctly, w/out detail; coarsely/inartistically; w/thick layer/thickly + crassendo_F_N : N ; -- [DXXFS] :: thickness; stupidity; + crassesco_V : V ; -- [XXXCO] :: thicken, fatten, become thick/hard/large/fat/dense/solid; condense; set; + crassicula_F_N : N ; -- [GGXEK] :: bold print; + crassificatio_F_N : N ; -- [DXXES] :: thickness; making thick or fat; + crassitas_F_N : N ; -- [XSXFO] :: density; thickness; + crassities_F_N : N ; -- [XXXFO] :: density; thickness; plumpness, fleshiness; + crassitudo_F_N : N ; -- [XSXCO] :: thickness (measure); density/consistency (liquid); richness (soil); sediment; + crassivenius_A : A ; -- [XAXNO] :: having thick veins; (name of type of maple tree); + crasso_V2 : V2 ; -- [XXXFO] :: thicken, condense, make thick; + crassundium_N_N : N ; -- [XXXFO] :: fat pork? (pl.); thick intestines (L+S); + crassus_A : A ; -- [XXXAO] :: |fat/stout; rude, coarse, rough, harsh, heavy, gross; stupid, crass/insensitive; + crastino_Adv : Adv ; -- [XXXEO] :: tomorrow; + crastinum_N_N : N ; -- [XXXFS] :: tomorrow; + crastinus_A : A ; -- [XXXBX] :: of tomorrow/next day/future; [in ~um => for/til tomorrow/following day]; 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 ; - crataegos_M_N : N ; - crataegum_N_N : N ; - crater_M_N : N ; - cratera_F_N : N ; - crateraa_F_N : N ; - craterite_M_N : N ; - crateritis_F_N : N ; - craticius_A : A ; - craticula_F_N : N ; - craticulus_A : A ; - cratio_V2 : V2 ; - cratis_F_N : N ; - cratitio_F_N : N ; - cratitius_A : A ; - creabilis_A : A ; - creagra_F_N : N ; - creamen_N_N : N ; - creatio_F_N : N ; - creativus_A : A ; - creator_M_N : N ; - creatrix_F_N : N ; - creatum_N_N : N ; - creatura_F_N : N ; - creatus_A : A ; - creatus_M_N : N ; - creber_A : A ; - crebesco_V2 : V2 ; - crebo_Adv : Adv ; - crebra_Adv : Adv ; - crebratus_A : A ; - crebre_Adv : Adv ; - crebresco_V2 : V2 ; - crebrinodosus_A : A ; - crebrinodus_A : A ; - crebrisurus_A : A ; - crebritas_F_N : N ; - crebriter_Adv : Adv ; - crebritudo_F_N : N ; - crebro_Adv : Adv ; - credencia_F_N : N ; + crataegis_2_N : N ; -- [XAXNO] :: plant (unidentified); (another name for the plant satyrion L+S); + crataegon_M_N : N ; -- [XAHNO] :: holly; (the Greek name for holly); plant called aquifolia in pure Latin (L+S); + crataegonon_N_N : N ; -- [XAXNO] :: plant; (perh. Polygonum hydropiper); common fleawort (L+S); + crataegonos_F_N : N ; -- [XAXNO] :: plant; (perh. Polygonum persicaria); common fleawort (L+S); + crataegos_M_N : N ; -- [XAHNO] :: holly; (Greek name for holly); plant (called aquifolia in pure Latin L+S); + crataegum_N_N : N ; -- [XAXNO] :: kind of gall which grows on holm-oaks; kernel of fruit of the box-tree (L+S); + crater_M_N : N ; -- [XXXCO] :: mixing bowl; depression, volcano crater, basin of fountain; Cup (constellation); + cratera_F_N : N ; -- [XXXCO] :: mixing bowl; depression, volcano crater, basin of fountain; Cup (constellation); + crateraa_F_N : N ; -- [XXXCS] :: mixing bowl; depression, volcano crater, basin of fountain; Cup (constellation); + craterite_M_N : N ; -- [XXXNO] :: precious stone (unidentified); + crateritis_F_N : N ; -- [XXXNO] :: precious stone (unidentified); + craticius_A : A ; -- [XAXEO] :: made of wattle; (interlaced twigs/wickerwork, may be plastered with mud/clay); + craticula_F_N : N ; -- [XXXEO] :: gridiron; grating, grill; griddle; small gridiron (L+S); fine hurdle-work; + craticulus_A : A ; -- [XXXFS] :: composed of lattice-work; wattled; + cratio_V2 : V2 ; -- [XAXNO] :: bush-harrow; + cratis_F_N : N ; -- [XAXAO] :: wickerwork; bundle of brush, fascine; framework, network, lattice; bush-harrow; + cratitio_F_N : N ; -- [XAXNO] :: action of bush-harrowing; + cratitius_A : A ; -- [XAXES] :: made of wattle; (interlaced twigs/wickerwork, may be plastered with mud/clay); + creabilis_A : A ; -- [DXXEF] :: creatable, that can be made/created; + creagra_F_N : N ; -- [DXXES] :: flesh-hook; + creamen_N_N : N ; -- [DXXFS] :: elements of which created things consist; + creatio_F_N : N ; -- [FEXDF] :: |creation; creating/producing/bringing forth something from nothing/something; + creativus_A : A ; -- [FXXEE] :: creative; + creator_M_N : N ; -- [XXXBO] :: creator (of world); maker, author; founder (city); father; one who appoints; + creatrix_F_N : N ; -- [XXXCO] :: mother, she who brings forth; creator (of the world); authoress, creatress; + creatum_N_N : N ; -- [DXXFS] :: things made (pl.); + creatura_F_N : N ; -- [DXXCS] :: creation; creature, thing created; servant (late Latin); + creatus_A : A ; -- [XXXEO] :: sprung from, begotten by, born of; + creatus_M_N : N ; -- [XXXEO] :: child, offspring; + creber_A : A ; -- [XXXBO] :: thick/crowded/packed/close set; frequent/repeated, constant; numerous/abundant; + crebesco_V2 : V2 ; -- [XXXCS] :: become frequent/widespread, increase, strengthen; spread/be noised abroad (L+S); + crebo_Adv : Adv ; -- [XXXCS] :: repeatedly, often, frequently, many times; closely, close one after another; + crebra_Adv : Adv ; -- [DXXFS] :: repeatedly; + crebratus_A : A ; -- [XXXNO] :: closely woven; thick, close (L+S); + crebre_Adv : Adv ; -- [XXXDO] :: thickly, densely; frequently; closely; compactly (L+S); + crebresco_V2 : V2 ; -- [XXXCO] :: become frequent/widespread, increase, strengthen; spread/be noised abroad (L+S); + crebrinodosus_A : A ; -- [XXXFO] :: having frequent knots; + crebrinodus_A : A ; -- [XXXFO] :: having frequent knots; + crebrisurus_A : A ; -- [XXXFO] :: fortified by closely packed stakes; + crebritas_F_N : N ; -- [XXXCO] :: frequency; closeness in succession/space/of parts/density; thickness (L+S); + crebriter_Adv : Adv ; -- [XXXEO] :: repeatedly; frequently; + crebritudo_F_N : N ; -- [XXXEO] :: frequency; closeness in succession/space; crowding; closeness of parts/density; + crebro_Adv : Adv ; -- [XXXDX] :: frequently/repeatedly/often, one after another, time after time; thickly/densely + credencia_F_N : N ; -- [FXXEZ] :: credence; state of trusting (medieval spelling); credens_F_N : N ; -- [EEXCE] :: believer; the_faithful (pl.); - credens_M_N : N ; - credentarius_M_N : N ; - credentia_F_N : N ; - credibilis_A : A ; - credibiliter_Adv : Adv ; - credito_V2 : V2 ; - creditor_M_N : N ; - creditrix_F_N : N ; - creditum_N_N : N ; - creditus_A : A ; - credo_V2 : V2 ; - credra_F_N : N ; - credulitas_F_N : N ; - credulus_A : A ; - creduo_V : V ; - cremabilis_A : A ; + credens_M_N : N ; -- [EEXCE] :: believer; the_faithful (pl.); + credentarius_M_N : N ; -- [EEXEE] :: server; + credentia_F_N : N ; -- [EEXEE] :: |credence, small table in sanctuary for vessels; + credibilis_A : A ; -- [XXXBO] :: credible/trustworthy/believable/plausible/convincing/likely/probable; + credibiliter_Adv : Adv ; -- [XXXEO] :: credibly; plausibly; so as to be believed (OED); on trustworthy authority; + credito_V2 : V2 ; -- [DXXFS] :: believe strongly; + creditor_M_N : N ; -- [XXXCO] :: lender, creditor; one to whom money is due; (w/GEN of debtor/debt); + creditrix_F_N : N ; -- [XXXEO] :: female lender/creditor; + creditum_N_N : N ; -- [XXXCO] :: loan, debt, what is lent; [in ~ accipere => to receive a loan]; + creditus_A : A ; -- [XXXEO] :: loan; + credo_V2 : V2 ; -- [XXXAO] :: |lend (money) to, make loans/give credit; believe/think/accept as true/be sure; + credra_F_N : N ; -- [XAXFO] :: citrus fruit; + credulitas_F_N : N ; -- [XXXCO] :: credulity, trustfulness; easiness of belief (L+S); + credulus_A : A ; -- [XXXCO] :: credulous, trusting, gullible; prone to believe/trust; full of confidence (L+S); + creduo_V : V ; -- [BXXES] :: believe, confide; commit/consign; suppose; lend; (archaic form of credo); + cremabilis_A : A ; -- [DXXFS] :: combustible; 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 ; - cremialis_A : A ; - cremito_V2 : V2 ; - cremium_N_N : N ; - cremnos_M_N : N ; - cremo_V2 : V2 ; - cremor_M_N : N ; - cremum_N_N : N ; - crena_F_N : N ; - crenum_N_N : N ; - creo_V2 : V2 ; - crepa_F_N : N ; - crepatura_F_N : N ; - crepax_A : A ; - creper_A : A ; - creperum_N_N : N ; - crepiculum_N_N : N ; - crepida_F_N : N ; - crepidarius_A : A ; - crepidarius_M_N : N ; - crepidatus_A : A ; - crepido_F_N : N ; - crepidula_F_N : N ; - crepidulum_N_N : N ; - crepis_F_N : N ; - crepitacillum_N_N : N ; - crepitaculum_N_N : N ; - crepito_V : V ; - crepitulum_N_N : N ; - crepitus_M_N : N ; - crepo_V : V ; - creptio_F_N : N ; - crepulus_A : A ; - crepundium_N_N : N ; - crepusculascens_A : A ; - crepusculum_N_N : N ; - crescentia_F_N : N ; - cresco_V : V ; - cresso_V : V ; - creta_F_N : N ; - cretaceus_A : A ; - cretaria_F_N : N ; - cretarius_A : A ; - cretatus_A : A ; - creterra_F_N : N ; - creteus_A : A ; - crethmos_F_N : N ; - cretifodina_F_N : N ; - cretio_F_N : N ; - cretosus_A : A ; - cretula_F_N : N ; - cretulentum_N_N : N ; - cretura_F_N : N ; - cretus_A : A ; - cribarius_A : A ; - cribello_V2 : V2 ; - cribellum_N_N : N ; - cribrarius_A : A ; - cribrarius_M_N : N ; - cribro_V2 : V2 ; - cribrum_N_N : N ; - cricetus_M_N : N ; - crimen_N_N : N ; - criminalis_A : A ; - criminalitas_F_N : N ; - criminaliter_Adv : Adv ; - criminatio_F_N : N ; - criminator_M_N : N ; - criminatrix_F_N : N ; - crimino_V2 : V2 ; - criminologia_F_N : N ; - criminologus_M_N : N ; - criminor_V : V ; - criminose_Adv : Adv ; - criminosus_A : A ; - criminosus_M_N : N ; - crinale_N_N : N ; - crinalis_A : A ; - criniger_A : A ; - crininus_A : A ; - crinio_V2 : V2 ; - crinis_M_N : N ; - crinitus_A : A ; - crinomenon_N_N : N ; - crinon_N_N : N ; - crinum_N_N : N ; - criobolium_N_N : N ; - cripa_F_N : N ; - crisimus_A : A ; + cremaster_2_N : N ; -- [XBXFO] :: cremaster muscle; (muscle of the spermatic cord by which testicle is suspended); + crematio_F_N : N ; -- [XXXEO] :: burning; consumption by fire (L+S); cremation; + cremator_M_N : N ; -- [DEXEO] :: burner, consumer by fire; (God); + crementum_N_N : N ; -- [XXXEO] :: increase, growth; + cremialis_A : A ; -- [XAXFO] :: suitable for firewood; (trees); + cremito_V2 : V2 ; -- [BXXFO] :: burn; cremate; + cremium_N_N : N ; -- [XXXEO] :: firewood; (singular or collective); dry fire-wood (pl.), brush-wood (L+S); + cremnos_M_N : N ; -- [XAXNO] :: plant (unidentified); + cremo_V2 : V2 ; -- [XXXBO] :: burn (to ash)/cremate; consume/destroy (fire); burn alive; make burnt offering; + cremor_M_N : N ; -- [XXXCO] :: gruel, pap, decoction; thick juice made by boiling grain or animal/vegetables); + cremum_N_N : N ; -- [DXXFS] :: gruel, pap, decoction; thick juice made by boiling grain or animal/vegetables); + crena_F_N : N ; -- [XXXNO] :: notch; serration; slash (Cal); + crenum_N_N : N ; -- [GXXEK] :: gap; + creo_V2 : V2 ; -- [XXXBO] :: ||institute; conjure up; (PASS) be born/spring from; be home/native of; + crepa_F_N : N ; -- [XAXEO] :: she-goat, nanny-goat; [Caprae palus => on Campus Martius/Circus Flaminus site]; + crepatura_F_N : N ; -- [DXXFS] :: fissure, crack; + crepax_A : A ; -- [XXXFO] :: noisy; creaking; + creper_A : A ; -- [XXXCO] :: obscure, doubtful, uncertain; dark, dusky (L+S); wavering; + creperum_N_N : N ; -- [DXXFS] :: darkness; + crepiculum_N_N : N ; -- [XXXFS] :: rattling ornament for the head; + crepida_F_N : N ; -- [XXXCO] :: slipper, sandal; (thick sole attached by straps, Greek, affectation by Romans); + crepidarius_A : A ; -- [XXXEO] :: used in/concerned with making of crepidae (thick soled Greek sandals); + crepidarius_M_N : N ; -- [XXXEO] :: maker of crepidae/sandals; + crepidatus_A : A ; -- [XXXEC] :: wearing crepidae (thick soled Greek sandals); + crepido_F_N : N ; -- [XTXCO] :: pedestal/base/foundation; dam, retaining wall, bank; pier/quay, sidewalk; rim; + crepidula_F_N : N ; -- [XXXEO] :: small boot/sandal; + crepidulum_N_N : N ; -- [XXXFS] :: rattling ornament for the head; + crepis_F_N : N ; -- [XXXNO] :: small boot/sandal; some sort of prickly plant; + crepitacillum_N_N : N ; -- [XXXFO] :: rattle; (child's); small rattle (L+S); + crepitaculum_N_N : N ; -- [XXXEO] :: rattle; instrument for making a loud percussion; the sisteum of Isis; + crepito_V : V ; -- [XXXCO] :: rattle/clatter; rustle/crackle; produce rapid succession of sharp/shrill noises; + crepitulum_N_N : N ; -- [XXXFO] :: rattling ornament for the head; + crepitus_M_N : N ; -- [XXXCO] :: rattling, rustling, crash (thunder); chattering (teeth); snap (fingers); fart; + crepo_V : V ; -- [FXXBE] :: |crack; burst asunder; resound; + creptio_F_N : N ; -- [FXXEN] :: taking by force; seizure; + crepulus_A : A ; -- [DXXES] :: rattling; resounding; crashing; + crepundium_N_N : N ; -- [XXXCO] :: child's rattle/toy (pl.) (for ID); childhood; amulet, religious emblem; cymbals; + crepusculascens_A : A ; -- [DXXFS] :: growing dusk; dusky; + crepusculum_N_N : N ; -- [XXXCO] :: twilight, dusk; darkness (L+S); + crescentia_F_N : N ; -- [XXXFO] :: increase, lengthening; augmentation (L+S); + cresco_V : V ; -- [XXXAO] :: |thrive, increase (size/number/honor), multiply; ascend; attain, be promoted; + cresso_V : V ; -- [XXXDM] :: increase (size/number/honor), multiply; thrive; + creta_F_N : N ; -- [XXXBO] :: clay/clayey soil; chalk; white/fuller's earth; paint/whitening; white goal line; + cretaceus_A : A ; -- [XXXNO] :: resembling chalk or pipe-clay; chalk-like, creataceous (L+S); + cretaria_F_N : N ; -- [XXXFS] :: shop for chalk/Cretan earth; + cretarius_A : A ; -- [XXXEO] :: dealing in chalk or pipe-clay; of/pertaining to chalk/Cretan earth (L+S); + cretatus_A : A ; -- [XXXDX] :: chalked, marked with chalk; in white; whitened with pipe-clay; powdered (woman); + creterra_F_N : N ; -- [XXXDO] :: large bowl for water or wine; + creteus_A : A ; -- [XXXFO] :: made of clay/chalk; + crethmos_F_N : N ; -- [XAXNO] :: plant (sampire) Crethmum maritimum; sea fennel (L+S); + cretifodina_F_N : N ; -- [XXXEO] :: clay or chalk pit; + cretio_F_N : N ; -- [XLXCO] :: declaration of acceptance of an inheritance; (terms of/clause on); heritage; + cretosus_A : A ; -- [XXXCO] :: abounding in chalk or clay; clayey; + cretula_F_N : N ; -- [XXXEO] :: white clay for sealing; + cretulentum_N_N : N ; -- [XXXIO] :: right of fulling garments; + cretura_F_N : N ; -- [DAXFS] :: chaff, siftings of bran; + cretus_A : A ; -- [XXXCS] :: born of; arisen/sprung/descended from; + cribarius_A : A ; -- [XXXNO] :: sifted; + cribello_V2 : V2 ; -- [DXXFS] :: sift, pass through a sieve; + cribellum_N_N : N ; -- [DXXFS] :: small sieve; + cribrarius_A : A ; -- [XXXNS] :: sifted; + cribrarius_M_N : N ; -- [XXXFS] :: sieve maker; + cribro_V2 : V2 ; -- [XXXEO] :: sift, pass through a sieve; + cribrum_N_N : N ; -- [XXXDX] :: sieve; riddle (L+S); [in ~ gerere => carry in a sieve/perform useless task]; + cricetus_M_N : N ; -- [GXXEK] :: hamster; + crimen_N_N : N ; -- [XLXAO] :: |sin/guilt; crime/offense/fault; cause of a crime, criminal (L+S); adultery; + criminalis_A : A ; -- [XLXFO] :: criminal (vs. civil); of/pertaining to crime (L+S); crime-/police- (novel); + criminalitas_F_N : N ; -- [GXXEK] :: criminality; + criminaliter_Adv : Adv ; -- [XLXFO] :: according to criminal procedure; (legal term); criminally (L+S); + criminatio_F_N : N ; -- [XLXCO] :: accusation, complaint, charge, indictment; making of an accusation; + criminator_M_N : N ; -- [XLXEO] :: accuser; slanderer; + criminatrix_F_N : N ; -- [DLXFS] :: accuser (female); slanderer; + crimino_V2 : V2 ; -- [BLXDO] :: accuse, denounce; charge (with); allege with accusation; make accusations; + criminologia_F_N : N ; -- [GXXEK] :: criminology; + criminologus_M_N : N ; -- [GXXEK] :: criminologist; + criminor_V : V ; -- [XLXBO] :: accuse, denounce; charge (with); allege with accusation; make accusations; + criminose_Adv : Adv ; -- [XXXDO] :: reproachfully, abusively, slanderously; manner which invites accusation; + criminosus_A : A ; -- [XXXCO] :: accusatory/reproachful; slanderous/vituperative; shameful/dishonoring/criminal; + criminosus_M_N : N ; -- [DLXFS] :: guilty man; + crinale_N_N : N ; -- [XXXFO] :: ornament for the hair; hair-comb (L+S); + crinalis_A : A ; -- [XXXDO] :: worn in the hair; covered with hair-like filaments; of/pertaining to hair (L+S); + criniger_A : A ; -- [XXXEO] :: long-haired; having long hair; + crininus_A : A ; -- [DAXFS] :: lily-, made of lilies; + crinio_V2 : V2 ; -- [XXXEO] :: deck/cover/provide with hair; + crinis_M_N : N ; -- [XXXBO] :: hair; lock of hair, tress, plait; plume (helmet); tail of a comet; + crinitus_A : A ; -- [XXXDX] :: hairy; having long locks, long haired; hair-like; [stella crinita => comet]; + crinomenon_N_N : N ; -- [XGXFO] :: point at issue in a dispute; + crinon_N_N : N ; -- [XAXEO] :: variety of lily; kind of ointment/unguent (pl.); + crinum_N_N : N ; -- [XAXNS] :: variety of lily; kind of ointment/unguent (pl.); + criobolium_N_N : N ; -- [DEXIS] :: ram (as an offering); + cripa_F_N : N ; -- [XAXFO] :: plant (unidentified); + crisimus_A : A ; -- [DXXEO] :: critical, decisive; [~ dies => day of a crisis in disease]; 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 ; - crispcans_A : A ; - crispicapillus_A : A ; - crispico_V : V ; - crispiculcans_A : A ; - crispitudo_F_N : N ; - crispo_V : V ; - crispulus_A : A ; - crispum_N_N : N ; - crispus_A : A ; - crisso_V : V ; - crista_F_N : N ; - cristatus_A : A ; - cristatus_M_N : N ; - cristula_F_N : N ; - crita_M_N : N ; - criterion_N_N : N ; - criterium_N_N : N ; - crithe_F_N : N ; - crithologia_F_N : N ; - critica_F_N : N ; - criticum_N_N : N ; - criticus_A : A ; - criticus_M_N : N ; - crobylos_M_N : N ; - croca_F_N : N ; - crocallis_F_N : N ; - crocatio_F_N : N ; - crocatus_A : A ; - croccio_V : V ; - crocea_F_N : N ; - croceus_A : A ; - crocia_F_N : N ; - crocias_M_N : N ; - crocidismus_M_N : N ; - crocino_V2 : V2 ; - crocinum_N_N : N ; - crocinus_A : A ; - crocio_V : V ; - crocis_F_N : N ; - crocito_V : V ; - crocitus_M_N : N ; - croco_V2 : V2 ; - crocodes_F_N : N ; - crocodilea_F_N : N ; - crocodileon_N_N : N ; - crocodilion_N_N : N ; - crocodillina_F_N : N ; - crocodillos_M_N : N ; - crocodillus_M_N : N ; - crocodilos_M_N : N ; - crocodilus_M_N : N ; - crocofantia_F_N : N ; - crocomagma_N_N : N ; - crocophantia_F_N : N ; - crocota_F_N : N ; - crocotarius_A : A ; - crocotas_M_N : N ; - crocotillus_A : A ; - crocotta_M_N : N ; - crocotula_F_N : N ; - crocufantia_F_N : N ; - crocum_N_N : N ; - crocus_C_N : N ; - crocus_F_N : N ; - crocus_M_N : N ; - crocuta_M_N : N ; - crocyfantium_N_N : N ; - croma_F_N : N ; - crosmis_F_N : N ; - crotale_N_N : N ; - crotalisso_V : V ; - crotalistria_F_N : N ; - crotalum_N_N : N ; - crotalus_M_N : N ; - crotaphos_M_N : N ; - croto_F_N : N ; - crotolo_V : V ; - croton_F_N : N ; - croysidia_F_N : N ; - crucesignatus_M_N : N ; - cruciabilis_A : A ; - cruciabilitas_F_N : N ; - cruciabiliter_Adv : Adv ; - cruciabundus_A : A ; - cruciamen_N_N : N ; - cruciamentum_N_N : N ; - cruciarius_A : A ; - cruciarius_M_N : N ; - cruciata_F_N : N ; - cruciatio_F_N : N ; - cruciator_M_N : N ; - cruciatorius_A : A ; - cruciatus_M_N : N ; - crucifer_M_N : N ; - crucifigo_V2 : V2 ; - crucifixio_F_N : N ; - crucifixor_M_N : N ; - crucifixum_N_N : N ; - crucifixus_A : A ; - crucifixus_M_N : N ; - crucigramma_N_N : N ; - crucio_V : V ; - crucisignatio_F_N : N ; - cruciverbium_N_N : N ; - crudarius_A : A ; - crudele_Adv : Adv ; - crudelis_A : A ; - crudelitas_F_N : N ; - crudeliter_Adv : Adv ; - crudesco_V : V ; - cruditas_F_N : N ; - cruditatio_F_N : N ; - crudito_V2 : V2 ; - crudus_A : A ; - cruentatio_F_N : N ; - cruentatus_A : A ; - cruente_Adv : Adv ; - cruenter_Adv : Adv ; - cruentifer_A : A ; - cruento_V2 : V2 ; - cruentus_A : A ; - crumena_F_N : N ; - crumilla_F_N : N ; - crumina_F_N : N ; - crumino_V2 : V2 ; - cruor_M_N : N ; - cruppellarius_M_N : N ; - crupta_F_N : N ; - cruralis_A : A ; - cruricrepida_M_N : N ; - crurifragium_N_N : N ; - crurifragius_M_N : N ; - crus_N_N : N ; - crusma_N_N : N ; - crusmaticus_A : A ; - crusta_F_N : N ; - crustallinum_N_N : N ; - crustallinus_A : A ; - crustallos_F_N : N ; - crustallum_N_N : N ; - crustallus_F_N : N ; - crustarius_A : A ; - crustarius_M_N : N ; - crustatum_N_N : N ; - crusto_V2 : V2 ; - crustosus_A : A ; - crustula_F_N : N ; - crustularius_M_N : N ; - crustulum_N_N : N ; - crustum_N_N : N ; - crusulum_N_N : N ; - crux_F_N : N ; - crypta_F_N : N ; - cryptarius_M_N : N ; - crypticus_A : A ; - cryptoporticus_F_N : N ; - crysisceptrum_N_N : N ; - crystallinum_N_N : N ; - crystallinus_A : A ; - crystallion_N_N : N ; - crystallisatio_F_N : N ; - crystallizo_V : V ; - crystalloides_A : A ; - crystallos_F_N : N ; - crystallum_N_N : N ; - crystallus_F_N : N ; - cubans_A : A ; - cubatio_F_N : N ; - cubator_M_N : N ; - cubi_Adv : Adv ; - cubicularis_A : A ; - cubicularius_A : A ; - cubicularius_M_N : N ; - cubiculata_F_N : N ; - cubiculatus_A : A ; - cubiculum_N_N : N ; - cubicus_A : A ; - cubile_N_N : N ; - cubital_N_N : N ; - cubitalis_A : A ; - cubitio_F_N : N ; - cubitissim_Adv : Adv ; - cubito_V : V ; - cubitor_M_N : N ; - cubitorius_A : A ; - cubitum_N_N : N ; - cubitura_F_N : N ; - cubitus_M_N : N ; - cubo_V : V ; - cubus_M_N : N ; - cuccubio_V : V ; - cuccuru_Interj : Interj ; - cuci_N : N ; - cucubalus_F_N : N ; - cucubo_V : V ; - cuculio_M_N : N ; - cuculla_F_N : N ; - cucullatus_A : A ; - cucullio_M_N : N ; - cuculliunculum_N_N : N ; - cucullus_M_N : N ; - cuculo_V : V ; - cuculus_M_N : N ; - cucuma_F_N : N ; - cucumella_F_N : N ; - cucumeraceus_A : A ; - cucumerarium_N_N : N ; - cucumis_M_N : N ; - cucumis_N_N : N ; - cucumula_F_N : N ; - cucurbita_F_N : N ; - cucurbitarius_M_N : N ; - cucurbitatio_F_N : N ; - cucurbitinus_A : A ; - cucurbitivus_A : A ; - cucurbitula_F_N : N ; - cucurbitularis_F_N : N ; - cucurrio_V : V ; - cucurru_Interj : Interj ; - cucus_M_N : N ; - cucutium_N_N : N ; - cudo_M_N : N ; - cudo_V2 : V2 ; - cuferion_N_N : N ; - cuicuimodi_Adv : Adv ; - cuimodi_Adv : Adv ; - cujas_A : A ; - cujatis_A : A ; - cujus_A : A ; - cujuscemodi_Adv : Adv ; - cujuscujusmodi_Adv : Adv ; - cujusdammodi_Adv : Adv ; - cujusmodi_Adv : Adv ; - cujusmodicumque_Adv : Adv ; - cujusquemodi_Adv : Adv ; - culcita_F_N : N ; - culcitarius_M_N : N ; - culcitelia_F_N : N ; - culcitra_F_N : N ; - culcitula_F_N : N ; - culculare_N_N : N ; - culearis_A : A ; - culeus_M_N : N ; - culex_M_N : N ; - culibonia_F_N : N ; - culicare_N_N : N ; - culicellus_M_N : N ; - culiculus_M_N : N ; - culigna_F_N : N ; - culilla_F_N : N ; - culillus_M_N : N ; - culina_F_N : N ; - culinarius_A : A ; - culinarius_M_N : N ; - culiola_F_N : N ; - culix_M_N : N ; - cullearis_A : A ; - cullearius_M_N : N ; - culleum_N_N : N ; - culleus_M_N : N ; - culliolum_N_N : N ; - cullus_M_N : N ; - culmen_N_N : N ; - culmeus_A : A ; - culminalis_A : A ; - culminatio_F_N : N ; - culmosus_A : A ; - culmus_M_N : N ; - culo_V2 : V2 ; - culpa_F_N : N ; - culpabilis_A : A ; - culpabilitas_F_N : N ; - culpabiliter_Adv : Adv ; - culpandum_N_N : N ; - culpatio_F_N : N ; - culpatus_A : A ; - culpito_V2 : V2 ; - culpo_V2 : V2 ; - culposus_A : A ; - culte_Adv : Adv ; - cultellatus_A : A ; - cultello_V2 : V2 ; - cultellulus_M_N : N ; - cultellus_M_N : N ; - culter_M_N : N ; - cultio_F_N : N ; - cultor_M_N : N ; - cultrarius_M_N : N ; - cultratus_A : A ; - cultrix_F_N : N ; - cultualis_A : A ; - cultum_N_N : N ; - cultura_F_N : N ; - culturalis_A : A ; - cultus_A : A ; - cultus_M_N : N ; - cululla_F_N : N ; - culullus_M_N : N ; - culus_M_N : N ; - cum_Abl_Prep : Prep ; - cum_Adv : Adv ; - cuma_F_N : N ; - cuma_N_N : N ; - cumatile_N_N : N ; - cumatilis_A : A ; - cumation_N_N : N ; - cumatium_N_N : N ; - cumba_F_N : N ; - cumbula_F_N : N ; - cumera_F_N : N ; - cumerum_N_N : N ; - cumi_V : V ; - cuminatus_A : A ; - cumininus_A : A ; - cuminum_N_N : N ; - cummagis_Adv : Adv ; - cummaxime_Adv : Adv ; - cummi_N : N ; - cumminosus_A : A ; - cummis_F_N : N ; - cummitio_F_N : N ; - cumprime_Adv : Adv ; - cumprimis_Adv : Adv ; - cumquam_Conj : Conj ; - cumque_Adv : Adv ; - cumulate_Adv : Adv ; - cumulatim_Adv : Adv ; - cumulatio_F_N : N ; - cumulativus_A : A ; - cumulatus_A : A ; - cumulo_V2 : V2 ; - cumulus_M_N : N ; - cuna_F_N : N ; - cunabulum_N_N : N ; - cunaria_F_N : N ; - cunarius_M_N : N ; - cuncta_F_N : N ; - cunctabundus_A : A ; - cunctalis_A : A ; - cunctamen_N_N : N ; - cunctans_A : A ; - cunctanter_Adv : Adv ; - cunctatio_F_N : N ; - cunctator_M_N : N ; - cunctatrix_F_N : N ; - cunctatus_A : A ; - cuncticinus_A : A ; - cunctim_Adv : Adv ; - cunctiparens_M_N : N ; - cunctipotens_A : A ; - cuncto_V : V ; - cunctor_V : V ; - cunctum_N_N : N ; - cunctus_A : A ; - cunctus_M_N : N ; - cuncumque_Conj : Conj ; - cuneatim_Adv : Adv ; - cuneatio_F_N : N ; - cuneatus_A : A ; - cuneiformis_A : A ; - cunela_F_N : N ; - cuneo_V2 : V2 ; - cuneolus_M_N : N ; - cuneus_M_N : N ; - cunica_F_N : N ; - cunicularis_A : A ; - cunicularius_M_N : N ; - cuniculatim_Adv : Adv ; - cuniculator_M_N : N ; - cuniculatus_A : A ; - cuniculosus_A : A ; - cuniculum_N_N : N ; - cuniculus_M_N : N ; - cunila_F_N : N ; - cunilago_F_N : N ; - cunio_V : V ; - cunnilingus_A : A ; - cunnio_M_N : N ; - cunnuliggeter_M_N : N ; - cunnus_M_N : N ; - cunula_F_N : N ; - cupa_F_N : N ; - cuparius_M_N : N ; - cupedia_F_N : N ; - cupedinarius_A : A ; - cupedium_N_N : N ; + crisis_2_N : N ; -- [XXXEO] :: judgment (literary); crisis, critical stage in one's life; decision (L+S); + criso_V : V ; -- [XXXEO] :: move the haunches as in copulation (women); (rude); + crispans_A : A ; -- [XXXNS] :: curled; uneven, wrinkled; trembling (of an earthquake); + crispatorium_N_N : N ; -- [GXXEK] :: roller; + crispcans_A : A ; -- [DXXFS] :: curling, ruffling; (sea); + crispicapillus_A : A ; -- [XXXFS] :: having curled hair; + crispico_V : V ; -- [XXXFS] :: curl (hair); make/appear wavy; ripple; shake/brandish; tremble/quiver; wiggle; + crispiculcans_A : A ; -- [XXXFS] :: wavy, undulating, serpentine; + crispitudo_F_N : N ; -- [DXXFS] :: trembling/vibratory motion; + crispo_V : V ; -- [XXXCO] :: curl (hair); make/appear wavy; ripple; shake/brandish; tremble/quiver; wiggle; + crispulus_A : A ; -- [XXXDO] :: having short curly hair; crisped/crimped; artificial/affected/elaborate (style); + crispum_N_N : N ; -- [GXXEK] :: crepe (cloth); + crispus_A : A ; -- [XXXDX] :: curled/curly; trembling/vibrating; uneven/wrinkled/twisted; elegant (style); + crisso_V : V ; -- [XXXES] :: move the haunches as in copulation (women); (rude); + crista_F_N : N ; -- [XXXCO] :: crest/comb (bird/beast); plume (helmet); plant yellow-rattle; clitoris (L+S); + cristatus_A : A ; -- [XAXCO] :: tufted, crested; having a comb/tuft on head; plumed; [~ ales => cock]; + cristatus_M_N : N ; -- [XXXEO] :: one who wares a plumed helmet; head of penis (rude) (Sex); + cristula_F_N : N ; -- [XAXFO] :: small comb; (on head of a hen); small tuft (L+S); + crita_M_N : N ; -- [DEXFS] :: judges among the Hebrews; + criterion_N_N : N ; -- [GXXEK] :: criterion/criteria, standard; rule; + criterium_N_N : N ; -- [FXXEE] :: criterion/criteria, standard; rule; + crithe_F_N : N ; -- [XBXFO] :: sty, swelling on the eyelid; + crithologia_F_N : N ; -- [DLXES] :: gathering of barley; + critica_F_N : N ; -- [GXXEK] :: critique (of texts); + criticum_N_N : N ; -- [XGXFO] :: literary criticism (pl.); + criticus_A : A ; -- [DXXFS] :: critical; decisive; + criticus_M_N : N ; -- [XGXEO] :: literary critic; + crobylos_M_N : N ; -- [DXXES] :: topknot, roll of hair knotted on the crown of the head; + croca_F_N : N ; -- [XAXNO] :: filament of crocus/saffron stamen; + crocallis_F_N : N ; -- [XXXNO] :: precious stone (unidentified); (cherry-shaped L+S); + crocatio_F_N : N ; -- [XXXFO] :: croaking; (of ravens L+S); + crocatus_A : A ; -- [XXXEO] :: saffron-colored; (yellow); + croccio_V : V ; -- [XAXEO] :: croak/caw (like a raven); + crocea_F_N : N ; -- [EEXEE] :: crozier/crosier, bishop's crook/pastoral staff; long mantle w/cape and sleeves; + croceus_A : A ; -- [XXXCO] :: yellow, golden; saffron-colored; of saffron/its oil, saffron-; scarlet (Ecc); + crocia_F_N : N ; -- [EEXEE] :: crozier/crosier, bishop's crook/pastoral staff; long mantle w/cape and sleeves; + crocias_M_N : N ; -- [XXXNO] :: precious stone (unidentified); (yellow/saffron-colored L+S); + crocidismus_M_N : N ; -- [DXXFS] :: picking off of flocks (of wool); + crocino_V2 : V2 ; -- [DEXFS] :: anoint with saffron-ointment; + crocinum_N_N : N ; -- [XXXNO] :: saffron oil used as a perfume; color of saffron, saffron-yellow (L+S); + crocinus_A : A ; -- [XXXDO] :: of/made from saffron; saffron colored, yellow; + crocio_V : V ; -- [XAXES] :: croak/caw (like a raven); + crocis_F_N : N ; -- [XAXNO] :: plant; (perh. one of the catchflies Silene); + crocito_V : V ; -- [XAXFO] :: croak/caw (like a raven); (loudly L+S); + crocitus_M_N : N ; -- [DAXFS] :: croaking of the raven; + croco_V2 : V2 ; -- [DXXFS] :: dye saffron-yellow; + crocodes_F_N : N ; -- [XBXIO] :: eye-slave made from saffron; (OLD says neuter); + crocodilea_F_N : N ; -- [XBXNO] :: eye-salve (extracted from intestines of crocodile); crocodile excrement (L+S); + crocodileon_N_N : N ; -- [XAXNO] :: prickly sea-shore plant; (so called because of the rough skin of its stalk); + crocodilion_N_N : N ; -- [XAXNS] :: plant; (so called because of rough skin of its stalk); + crocodillina_F_N : N ; -- [XGXFO] :: dialectical puzzle about a crocodile; crocodile-conclusion; + crocodillos_M_N : N ; -- [XAEDO] :: crocodile; land reptile, Nile monitor; + crocodillus_M_N : N ; -- [XAECO] :: crocodile; land reptile, Nile monitor; + crocodilos_M_N : N ; -- [XAEDO] :: crocodile; land reptile, Nile monitor; + crocodilus_M_N : N ; -- [XAECO] :: crocodile; land reptile, Nile monitor; + crocofantia_F_N : N ; -- [DXXFS] :: saffron-colored dress; (worn by women and effeminate men); + crocomagma_N_N : N ; -- [XAXEO] :: residue left after refining saffron oil; + crocophantia_F_N : N ; -- [DXXFS] :: saffron-colored dress; (worn by women and effeminate men); + crocota_F_N : N ; -- [XXXDO] :: saffron-colored dress; (worn by women and effeminate men); + crocotarius_A : A ; -- [XXXFO] :: of/concerned with saffron-colored robes/dresses; (worn by women/effeminate men); + crocotas_M_N : N ; -- [XAANO] :: African animal; (prob. some sort of hyena); + crocotillus_A : A ; -- [XXXFO] :: very thin; + crocotta_M_N : N ; -- [XAAES] :: wild animal of Ethiopia; (unidentified); (perh. hyena); + crocotula_F_N : N ; -- [XXXFO] :: saffron-colored woman's dress/robe; (saffron-colored court robe L+S); + crocufantia_F_N : N ; -- [DXXFS] :: saffron-colored dress; (worn by women and effeminate men); + crocum_N_N : N ; -- [XAXNO] :: |filament of stamen; yellow anther (stamen part containing pollen/medicinal); + crocus_C_N : N ; -- [XAXCO] :: crocus/saffron (Crocus sativus); its oil; saffron-color (L+S); yellow stamens; + crocus_F_N : N ; -- [XAXNO] :: filament of stamen; yellow anther (stamen part containing pollen/medicinal); + crocus_M_N : N ; -- [FXXEK] :: saffron; + crocuta_M_N : N ; -- [XAAES] :: wild animal of Ethiopia; (unidentified); (perh. hyena); + crocyfantium_N_N : N ; -- [XXXFO] :: kind of woven ornament for the head (pl.); + croma_F_N : N ; -- [XTXEO] :: instrument for taking bearings to fix lines of orientation; (surveying); + crosmis_F_N : N ; -- [DAXFS] :: kind of sage; + crotale_N_N : N ; -- [XXXFQ] :: ear-rings (pl.); ear pendants of several loosely hanging/rattling pearls; + crotalisso_V : V ; -- [DDXFS] :: clack/sound/rattle with castanets; + crotalistria_F_N : N ; -- [XDXEO] :: castanet-dancer (female); (applied to stork from the rattling sound it makes); + crotalum_N_N : N ; -- [XDXDO] :: castanet, kind used to accompany (wanton) dance; rattle/clapper/bell; + crotalus_M_N : N ; -- [FXXFE] :: clapper; (used instead of bell); + crotaphos_M_N : N ; -- [DBXFS] :: pain in the temples; + croto_F_N : N ; -- [XAXNO] :: castor-oil tree (Ricinus communis); + crotolo_V : V ; -- [XAXFO] :: clack, make the characteristic sound of the stork; + croton_F_N : N ; -- [XAXNO] :: castor-oil tree (Ricinus communis); + croysidia_F_N : N ; -- [XAXNS] :: another name for plant Minyas; + crucesignatus_M_N : N ; -- [GXXEK] :: crusader; + cruciabilis_A : A ; -- [XXXEO] :: agonizing/painful/tormenting/excruciating, characterized by extreme pain/anguish + cruciabilitas_F_N : N ; -- [XXXFO] :: torment, torture; agony; + cruciabiliter_Adv : Adv ; -- [XXXFO] :: with torture; (excruciatingly?); + cruciabundus_A : A ; -- [DXXFS] :: tormenting, torturing; painful; agonizing; + cruciamen_N_N : N ; -- [DXXFS] :: torture, torment, pain; + cruciamentum_N_N : N ; -- [XXXEO] :: torture, torment; pain; + cruciarius_A : A ; -- [DEXFS] :: of/pertaining to the cross/torture; full of torture (L+S); + cruciarius_M_N : N ; -- [XXXDO] :: crucified person; one deserving crucifixion/fit for the gallows, gallows-bird; + cruciata_F_N : N ; -- [FEXDE] :: crusade; + cruciatio_F_N : N ; -- [DXXFS] :: torturing; torture; + cruciator_M_N : N ; -- [DXXES] :: tormenter, torturer; + cruciatorius_A : A ; -- [DEXFS] :: full of torture; + cruciatus_M_N : N ; -- [XXXDX] :: torture/cruelty; torture form/apparatus; suffering, severe physical/mental pain; + crucifer_M_N : N ; -- [DEXFS] :: cross-bearer; (Christ); + crucifigo_V2 : V2 ; -- [XXXEO] :: crucify; attach to a cross; + crucifixio_F_N : N ; -- [DEXDF] :: crucifixion; (act of putting to death by nailing to a cross); + crucifixor_M_N : N ; -- [DEXES] :: crucifer (attendant who carries a cross in procession), cross-bearer; (Christ); + crucifixum_N_N : N ; -- [EEXDE] :: crucifix; + crucifixus_A : A ; -- [DEXEB] :: crucified; + crucifixus_M_N : N ; -- [EEXCE] :: crucifix; + crucigramma_N_N : N ; -- [GXXEK] :: crossword puzzle; + crucio_V : V ; -- [XXXBO] :: torment, torture; cause grief/anguish; crucify; suffer torture/agony; grieve; + crucisignatio_F_N : N ; -- [EEXDE] :: signing with sign of cross; + cruciverbium_N_N : N ; -- [GXXEK] :: crossword puzzle; + crudarius_A : A ; -- [XXXNO] :: outcropping; (of a vein of silver); vein of silver that lies on surface (L+S); + crudele_Adv : Adv ; -- [DXXES] :: cruelly, harshly, severely, unmercifully, savagely, fiercely; + crudelis_A : A ; -- [XXXBO] :: cruel/hardhearted/unmerciful/severe, bloodthirsty/savage/inhuman; harsh/bitter; + crudelitas_F_N : N ; -- [XXXDX] :: cruelty/barbarity, harshness/severity, savagery/inhumanity; instance of cruelty; + crudeliter_Adv : Adv ; -- [XXXCO] :: cruelly, savagely, relentlessly; with cruel effect; + crudesco_V : V ; -- [XXXCO] :: become fierce/violent/savage/hard (persons/battle/disease); grow worse (L+S); + cruditas_F_N : N ; -- [XBXCO] :: indigestion; inability to digest; too full stomach; undigested food; bitterness; + cruditatio_F_N : N ; -- [DBXFS] :: indigestion, overloading of the stomach; + crudito_V2 : V2 ; -- [DBXES] :: suffer from indigestion; + crudus_A : A ; -- [XXXAO] :: |youthful/hardy/vigorous; fresh/green/immature; undigested; w/undigested food; + cruentatio_F_N : N ; -- [DXXFS] :: staining with blood; + cruentatus_A : A ; -- [XXXCQ] :: bloodstained, besplattered; bloody, bleeding (Ecc); + cruente_Adv : Adv ; -- [XXXEO] :: savagely, bloodthirstily; cruelly, severely (L+S); + cruenter_Adv : Adv ; -- [XXXFO] :: savagely, bloodthirstily; cruelly, severely (L+S); + cruentifer_A : A ; -- [DXXFS] :: bloody; + cruento_V2 : V2 ; -- [XXXCO] :: |make/dye blood-red; soak/besplatter with any liquid; tinge with red (L+S); + cruentus_A : A ; -- [XXXBO] :: |bloodthirsty, insatiably cruel, savage; accompanied by/involving bloodshed; + crumena_F_N : N ; -- [XXXDO] :: pouch, purse; small money-bag; store/supply of money/cash, funds, resources; + crumilla_F_N : N ; -- [XXXFO] :: small/little purse; + crumina_F_N : N ; -- [XXXDO] :: pouch, purse; small money-bag; store/supply of money/cash, funds, resources; + crumino_V2 : V2 ; -- [DXXFS] :: fill like a purse; + cruor_M_N : N ; -- [XXXBO] :: |gore; murder/bloodshed/slaughter; blood (general); stream/flow of blood (L+S); + cruppellarius_M_N : N ; -- [XWXFO] :: fighter encased in armor from head to foot; harnessed Gallic combatants (L+S); + crupta_F_N : N ; -- [XXXDX] :: crypt/underground room for rites; vault, grotto, covered gallery/passage/arcade; + cruralis_A : A ; -- [XXXEO] :: of the shin; belonging to the legs (L+S); [fasciae ~ => puttees/leggings]; + cruricrepida_M_N : N ; -- [XXXFO] :: one who has chains clanking about his legs, rattle-shin; slave fighting name; + crurifragium_N_N : N ; -- [XXXFE] :: breaking legs of crucified felons; + crurifragius_M_N : N ; -- [BXXFS] :: one whose legs/shins are broken; + crus_N_N : N ; -- [XBXBO] :: leg; shank; shin; main stem of shrub, stock; upright support of a bridge; + crusma_N_N : N ; -- [XDXFO] :: tune, musical air; tune played on a stringed instrument (L+S); + crusmaticus_A : A ; -- [DDXFS] :: suitable for playing on a musical instrument; + crusta_F_N : N ; -- [XXXBO] :: |cup holder, embossed work; inlay; plaster/stucco/mosaic work (L+S); + crustallinum_N_N : N ; -- [XXXDO] :: vessel made of crystal; + crustallinus_A : A ; -- [XXXCO] :: made of crystal; resembling crystal in appearance/quality; + crustallos_F_N : N ; -- [XXXCO] :: ice; rock crystal; crystal drinking cup; crystal-ware (pl.); + crustallum_N_N : N ; -- [XXXCO] :: ice; rock crystal; crystal drinking cup; crystal-ware (pl.); crystal-like thing; + crustallus_F_N : N ; -- [XXXCO] :: ice; rock crystal; crystal drinking cup; crystal-ware (pl.); + crustarius_A : A ; -- [XXXEO] :: of/pertaining to/selling encrusted/embossed ware (shops); + crustarius_M_N : N ; -- [XXXNS] :: one who makes embossed/chased figures; + crustatum_N_N : N ; -- [XAXNO] :: crustacean; animal with a hard shell; shellfish (L+S); + crusto_V2 : V2 ; -- [XXXDO] :: encrust/cover w/layer/coating/plaster; emboss/carve/decorate w/relief/embossing; + crustosus_A : A ; -- [XXXNO] :: encrusted, covered with a hard crust/rind; + crustula_F_N : N ; -- [DXXFS] :: little rind/shell/crust; + crustularius_M_N : N ; -- [FXXEK] :: confectioner; + crustulum_N_N : N ; -- [XXXCO] :: small cake/pastry, cookie; confectionery (L+S); + crustum_N_N : N ; -- [XXXEO] :: pastry, cake; anything baked (L+S); + crusulum_N_N : N ; -- [XXXFO] :: small leg/shank; + crux_F_N : N ; -- [XXXBO] :: cross; hanging tree; impaling stake; crucifixion; torture/torment/trouble/misery + crypta_F_N : N ; -- [XXXCO] :: crypt/underground room for rites; vault, grotto, covered gallery/passage/arcade; + cryptarius_M_N : N ; -- [XXXIO] :: crypt-keeper, caretaker of covered gallery where gladiators practiced; + crypticus_A : A ; -- [DXXFS] :: covered, concealed; + cryptoporticus_F_N : N ; -- [XXXFO] :: cloister, covered gallery/passage; vault, hall (L+S); + crysisceptrum_N_N : N ; -- [XAXNS] :: small plant from Rhodes; (also called) diacheton; + crystallinum_N_N : N ; -- [XXXDO] :: vessel made of crystal; + crystallinus_A : A ; -- [XXXCO] :: made of crystal; resembling crystal in appearance/quality; + crystallion_N_N : N ; -- [XAXNO] :: plant; (prob. Plantago psyllium); (also called psyllion L+S); + crystallisatio_F_N : N ; -- [GSXEK] :: crystallization; + crystallizo_V : V ; -- [GSXEK] :: crystallize; + crystalloides_A : A ; -- [XXXFO] :: crystalline; crystal-like (L+S); + crystallos_F_N : N ; -- [XXXCO] :: ice; rock crystal; crystal drinking cup; crystal-ware (pl.); + crystallum_N_N : N ; -- [XXXCO] :: ice; rock crystal; crystal drinking cup; crystal-ware (pl.); crystal-like thing; + crystallus_F_N : N ; -- [XXXCO] :: ice; rock crystal; crystal drinking cup; crystal-ware (pl.); + cubans_A : A ; -- [XXXDO] :: lying, resting on the ground; low lying; sagging, sloping, liable to subside; + cubatio_F_N : N ; -- [XXXFO] :: action of lying down; + cubator_M_N : N ; -- [DXXFS] :: one who lies down; + cubi_Adv : Adv ; -- [XXXEO] :: at any place; on any occasion; [w/ne necubi => lest at any place/occasion]; + cubicularis_A : A ; -- [XXXDO] :: of a bedroom, pertaining to a bedroom; + cubicularius_A : A ; -- [XXXES] :: of a bedroom, pertaining to a bedroom; + cubicularius_M_N : N ; -- [XXXDO] :: valet-de-chambre, bed-chamber servant; chamberlain, head of chamber servants; + cubiculata_F_N : N ; -- [XWXFO] :: ship equipped with sleeping apartments/staterooms; + cubiculatus_A : A ; -- [XWXFS] :: equipped with sleeping apartments/staterooms (ship); + cubiculum_N_N : N ; -- [XXXBO] :: |bed (any sort); any room; Emperor's box; inner shrine of temple; tomb/sepulcher + cubicus_A : A ; -- [XSXFO] :: cubic, cubical; of cubes; + cubile_N_N : N ; -- [XXXBO] :: bed, couch, seat; marriage bed; lair, den, nest, pen, hive of bees; base, bed; + cubital_N_N : N ; -- [XXXFO] :: elbow cushion; cushion for leaning on (L+S); + cubitalis_A : A ; -- [XXXDO] :: cubit long/broad/high; (elbow to finger tip, Roman cubit = 17.4 inches); elbow-; + cubitio_F_N : N ; -- [DXXFS] :: reclining/lying down; + cubitissim_Adv : Adv ; -- [BXXFS] :: lying down?; + cubito_V : V ; -- [XXXCO] :: recline, lie down, take rest, sleep; lie down often; lie/sleep (sexual); + cubitor_M_N : N ; -- [XXXFO] :: one who lies down; (on the job); (of an ox refusing to work); + cubitorius_A : A ; -- [XXXFO] :: suitable for reclining in at dinner; of a reclining posture (L+S); + cubitum_N_N : N ; -- [XXXBO] :: elbow; forearm; ulna; cubit (length - 17.4 inches); elbow bend/pipe; + cubitura_F_N : N ; -- [XXXFO] :: state/action of reclining/lying down/taking rest; bed, couch; + cubitus_M_N : N ; -- [XXXCO] :: state/action of reclining/lying down/taking rest; bed, couch; + cubo_V : V ; -- [XXXBO] :: lie (down/asleep); recline, incline; lie/be in bed, rest/sleep; be sick/dead; + cubus_M_N : N ; -- [XSXDO] :: cube (geometric figure), die/dice; lump; cubic number; + cuccubio_V : V ; -- [XAXFO] :: hoot; (of owls); + cuccuru_Interj : Interj ; -- [XXXFO] :: cock-a-doodle-doo! + cuci_N : N ; -- [XAXNO] :: doum-palm (Hyphanae thebaica); + cucubalus_F_N : N ; -- [XAXNS] :: plant; strychnon; (of the nightshade family); (also called strumus L+S); + cucubo_V : V ; -- [XAXFS] :: hoot; (of the screech owl); + cuculio_M_N : N ; -- [XXXFO] :: hood, kind of headgear; + cuculla_F_N : N ; -- [DXXDS] :: hood, cowl; covering for the head; cap (L+S); conical wrapper/case (goods); + cucullatus_A : A ; -- [DXXFS] :: hooded, having a hood; + cucullio_M_N : N ; -- [XXXFO] :: hood, kind of headgear; + cuculliunculum_N_N : N ; -- [XXXFO] :: small hood; + cucullus_M_N : N ; -- [XAXNO] :: plant; strychnon; (of the nightshade family); + cuculo_V : V ; -- [XAXFO] :: utter the cry of the cuckoo; + cuculus_M_N : N ; -- [XAXBO] :: cuckoo (bird); fool, ninny; cuckold; bastard; + cucuma_F_N : N ; -- [XXXEO] :: large cooking vessel/kettle; (humorously a small bath); + cucumella_F_N : N ; -- [XXXFO] :: small vessel/kettle; + cucumeraceus_A : A ; -- [DAXFS] :: cucumber-like; of a cucumber; + cucumerarium_N_N : N ; -- [DAXFS] :: cucumber field; (translation of the Hebrew); + cucumis_M_N : N ; -- [XAXCS] :: cucumber (plant/fruit); kind of marine animal (sea cucumber?); + cucumis_N_N : N ; -- [FAXEK] :: cucumber; + cucumula_F_N : N ; -- [XXXFO] :: cooking vessel (small); + cucurbita_F_N : N ; -- [XXXDX] :: gourd (plant/fruit) (Cucurbitaceae); dolt/pumpkin-head; cup, cupping-glass; + cucurbitarius_M_N : N ; -- [DAXFS] :: gourd planter; + cucurbitatio_F_N : N ; -- [DBXFS] :: cupping; (medical); + cucurbitinus_A : A ; -- [XAXEO] :: variety of pear or fig, (gourd-pear); gourd-like, gourd-; + cucurbitivus_A : A ; -- [XAXEO] :: variety of pear or fig, gourd-; + cucurbitula_F_N : N ; -- [XXXDO] :: bitter gourd (Cucurbitaceae); courgette; dolt/pumpkinhead; cupping-glass+use; + cucurbitularis_F_N : N ; -- [DAXFS] :: field cypress; (chamaepitys); + cucurrio_V : V ; -- [XAXFO] :: crow; (of cocks); + cucurru_Interj : Interj ; -- [XXXFS] :: cock-a-doodle-doo! + cucus_M_N : N ; -- [BAXFS] :: daw, jackdaw (Corvus monedula?); (might be used of a fool/sluggard/slut); + cucutium_N_N : N ; -- [DXXFS] :: kind of hood; + cudo_M_N : N ; -- [XWXFO] :: helmet; (made of raw skin L+S); + cudo_V2 : V2 ; -- [XXXCO] :: beat/pound/thresh; forge/stamp/hammer (metal); make by beating/striking, coin; + cuferion_N_N : N ; -- [DAXFS] :: nose bleed; (disease of horses); + cuicuimodi_Adv : Adv ; -- [XXXCS] :: of what kind/sort/nature soever; + cuimodi_Adv : Adv ; -- [XXXCS] :: of what kind/sort/nature soever; + cujas_A : A ; -- [XXXCO] :: of what country/town/locality?; whence? (L+S); + cujatis_A : A ; -- [XXXCO] :: of what country/town/locality?; whence? (L+S); + cujus_A : A ; -- [XXXCO] :: of whom?, whose?; (interrogative); of/to whom, whose (relative); + cujuscemodi_Adv : Adv ; -- [DXXFS] :: of what kind/sort/nature soever; + cujuscujusmodi_Adv : Adv ; -- [XXXCS] :: of what kind/sort/nature soever; + cujusdammodi_Adv : Adv ; -- [XXXES] :: of some sort; + cujusmodi_Adv : Adv ; -- [XXXCS] :: of what kind/sort/nature soever; + cujusmodicumque_Adv : Adv ; -- [XXXFS] :: of whatever kind/sort/nature; + cujusquemodi_Adv : Adv ; -- [XXXFS] :: of whatever kind/sort/nature; + culcita_F_N : N ; -- [XXXCO] :: mattress, stuffed (feathers/wool/hair) pillow/cushion for bed/couch; eye patch; + culcitarius_M_N : N ; -- [DXXFS] :: cushion maker; + culcitelia_F_N : N ; -- [XXXES] :: small/little stuffed mattress/cushion (for a bed/couch); + culcitra_F_N : N ; -- [XXXCO] :: stuffed (feathers/wool/hair) mattress/pillow/cushion for a bed/couch; eye patch; + culcitula_F_N : N ; -- [XXXCO] :: small/little stuffed mattress/cushion (for a bed/couch); + culculare_N_N : N ; -- [DAXFS] :: fly-net, mosquito net; screen; + culearis_A : A ; -- [XSXES] :: holding a culleus; (20 amphorae); (120 gallons); + culeus_M_N : N ; -- [XLXCO] :: |leather sack in which parricides were sewn up and drowned; this punishment; + culex_M_N : N ; -- [DAXFS] :: plant (unidentified); + culibonia_F_N : N ; -- [XXXFD] :: prostitute offering anal intercourse; (rude); + culicare_N_N : N ; -- [FXXEK] :: screen; + culicellus_M_N : N ; -- [XAXFO] :: tiny gnat; (or insignificant person); + culiculus_M_N : N ; -- [XAXFS] :: tiny gnat; (or insignificant person); + culigna_F_N : N ; -- [XXXDO] :: small vessel/cup; cupful; + culilla_F_N : N ; -- [XXXEO] :: drinking vessel/beaker/goblet or its contents; (originally sacrificial vessel); + culillus_M_N : N ; -- [XXXEO] :: drinking vessel/beaker/goblet or its contents; (originally sacrificial vessel); + culina_F_N : N ; -- [XXXCO] :: kitchen; portable kitchen; food/fare/board; cooking; place for burnt offerings; + culinarius_A : A ; -- [XXXES] :: of/pertaining to the kitchen, culinary, kitchen-; + culinarius_M_N : N ; -- [XXXFO] :: kitchen servant; + culiola_F_N : N ; -- [XXXFD] :: prostitute offering anal intercourse; (rude); + culix_M_N : N ; -- [XAXNO] :: plant (unidentified); + cullearis_A : A ; -- [XSXEO] :: holding a culleus; (20 amphorae); (120 gallons); + cullearius_M_N : N ; -- [XXXIO] :: maker/seller of leather sacks (cullei); + culleum_N_N : N ; -- [XLXCO] :: |leather sack in which parricides were sewn up and drowned; this punishment; + culleus_M_N : N ; -- [XLXCO] :: |leather sack in which parricides were sewn up and drowned; this punishment; + culliolum_N_N : N ; -- [XXXFO] :: small leather sack?; skin of a green nut/walnut?; + cullus_M_N : N ; -- [XWXFO] :: type of windlass using leather; + culmen_N_N : N ; -- [XXXBO] :: height/peak/top/summit/zenith; roof, gable, ridge-pole; head, chief; "keystone"; + culmeus_A : A ; -- [DAXFS] :: of straw; + culminalis_A : A ; -- [XEXIO] :: of the heights; (perh. of Jupiter); + culminatio_F_N : N ; -- [GSXEK] :: culmination (astronomy); + culmosus_A : A ; -- [DAXFS] :: stalk-like; [~ fratres => stalk-like brothers => sprung from the dragon teeth]; + culmus_M_N : N ; -- [XAXCO] :: stalk, stem (of cereal grass/others); hay; straw; thatch; + culo_V2 : V2 ; -- [XXXFO] :: drive, thrust, shove; (perh. slang); push (one) by/in the culus (Sex rude); + culpa_F_N : N ; -- [XXXAO] :: |offense; error; (sense of) guilt; fault/defect (moral/other); sickness/injury; + culpabilis_A : A ; -- [XXXEO] :: reprehensible, deserving/worthy of censure/blame; guilty/culpable/criminal; + culpabilitas_F_N : N ; -- [EXXEE] :: guilt, culpability; guiltiness; + culpabiliter_Adv : Adv ; -- [DXXFS] :: culpably; criminally; + culpandum_N_N : N ; -- [XXXFS] :: things (pl.) deserving censure; + culpatio_F_N : N ; -- [XXXDO] :: censure, rebuke; reproach, blame (L+S); + culpatus_A : A ; -- [XXXFO] :: reprehensible, deserving of censure; corrupted (L+S); + culpito_V2 : V2 ; -- [XXXFO] :: censure, find fault with; blame/reproach severely/harshly (L+S); + culpo_V2 : V2 ; -- [XXXCO] :: blame, find fault with, censure, reproach, reprove, disapprove; accuse, condemn; + culposus_A : A ; -- [FXXEE] :: reprehensible, deserving/worthy of censure/blame; guilty/culpable/criminal; + culte_Adv : Adv ; -- [XXXDO] :: elegantly, smartly, stylishly; (of oratorical style); with polish/refinement; + cultellatus_A : A ; -- [XXXNO] :: shaped like a small knife; + cultello_V2 : V2 ; -- [XXXDS] :: |make in shape of a knife; level ground by the coulter (vertical blade on plow); + cultellulus_M_N : N ; -- [DXXFS] :: little/small knife; + cultellus_M_N : N ; -- [XXXCO] :: little/small knife; peg/pin; dagger (Bee); + culter_M_N : N ; -- [XXXBO] :: knife; (weapon/sacrificial/hunt); pruner edge; spear point; plowshare (L+S); + cultio_F_N : N ; -- [XAXFS] :: |veneration/reverence + cultor_M_N : N ; -- [XAXBO] :: inhabitant; husbandman/planter/grower; supporter; worshiper; who has interest; + cultrarius_M_N : N ; -- [XEXEO] :: official at sacrifice who wields the knife; slayer of the victim (L+S); + cultratus_A : A ; -- [XXXNO] :: knife-shaped, shaped like a knife; + cultrix_F_N : N ; -- [XXXCO] :: female inhabitant/planter; worshiper/adherent/devotee; she who follows/promotes; + cultualis_A : A ; -- [FEXEE] :: liturgical, of worship/cult; + cultum_N_N : N ; -- [XAXCO] :: cultivated/tilled/farmed lands (pl.); gardens; plantations; standing crops; + cultura_F_N : N ; -- [XXXDX] :: agriculture/cultivation/tilling, care of plants; field; care/upkeep; training; + culturalis_A : A ; -- [FEXEE] :: liturigal, of worship/cult; cultual; + cultus_A : A ; -- [XAXBO] :: cultivated/tilled/farmed (well); ornamented, neat/well groomed; polished/elegant + cultus_M_N : N ; -- [XXXAO] :: ||personal care/maintenance/grooming; style; finery, splendor; neatness/order; + cululla_F_N : N ; -- [XXXEO] :: drinking vessel/beaker/goblet or its contents; (originally sacrificial vessel); + culullus_M_N : N ; -- [XXXEO] :: drinking vessel/beaker/goblet or its contents; (originally sacrificial vessel); + culus_M_N : N ; -- [XBXCO] :: buttocks; posterior; anus; (rude); + cum_Abl_Prep : Prep ; -- [XXXAO] :: |under command/at the head of; having/containing/including; using/by means of; + cum_Adv : Adv ; -- [XXXAO] :: |as soon; while, as (well as); whereas, in that, seeing that; on/during which; + cuma_F_N : N ; -- [XAXCS] :: spring shoots of cabbage/similar; hollow sphere (L+S); spherical layer, stratum; + cuma_N_N : N ; -- [XAXCS] :: spring shoots of cabbage/similar; hollow sphere (L+S); spherical layer, stratum; + cumatile_N_N : N ; -- [BXXFS] :: bluish garment; + cumatilis_A : A ; -- [XXXEO] :: wave/sea colored; water-colored, blue (L+S); of the waves; [deus ~ => Neptune]; + cumation_N_N : N ; -- [XTXDS] :: molding; (esp. echinus of Ionic capital); channel, waved molding on ogee (L+S) + cumatium_N_N : N ; -- [XTXDO] :: molding; (esp. echinus of Ionic capital); channel, waved molding on ogee (L+S) + cumba_F_N : N ; -- [XWXCO] :: skiff, small boat; (esp. that in which Charon ferried the dead across the Styx); + cumbula_F_N : N ; -- [XWXFO] :: small boat; + cumera_F_N : N ; -- [XXXDO] :: box/basket to hold grain; (ritual object in a bridal procession); + cumerum_N_N : N ; -- [XXXDO] :: box/basket to hold grain; (ritual object in a bridal procession); + cumi_V : V ; -- [EEQFE] :: arise; (Aramaic); (Mark 5:41); + cuminatus_A : A ; -- [DXXFS] :: seasoned/mixed with cumin; + cumininus_A : A ; -- [DAXFS] :: of cumin; (oil); + cuminum_N_N : N ; -- [XAXCO] :: cumin (plant/seed); (spice/drug); + cummagis_Adv : Adv ; -- [XXXCO] :: more particularly; + cummaxime_Adv : Adv ; -- [XXXCO] :: at the/this/that very moment; most particularly; + cummi_N : N ; -- [XAXCO] :: gum, vicid secretion from trees; + cumminosus_A : A ; -- [XAXNO] :: gummy, full of gum; + cummis_F_N : N ; -- [XAXCO] :: gum, vicid secretion from trees; + cummitio_F_N : N ; -- [XXXFO] :: application of gum; + cumprime_Adv : Adv ; -- [XXXFO] :: especially, particularly; + cumprimis_Adv : Adv ; -- [XXXDO] :: chiefly, pre-eminently, in the highest degree; first of all; (cum primis); + cumquam_Conj : Conj ; -- [XXXFO] :: ever; [in combination sicumquam => if ever]; + cumque_Adv : Adv ; -- [XXXEO] :: at any time; -ever, -soever; appended to give generalized/indefinite force; + cumulate_Adv : Adv ; -- [XXXCO] :: abundantly, copiously, liberally; in rich abundance; + cumulatim_Adv : Adv ; -- [XXXEO] :: abundantly, in abundance, copiously, liberally; in heaps (L+S); + cumulatio_F_N : N ; -- [FXXEE] :: accumulation; + cumulativus_A : A ; -- [FXXEE] :: cumulative; accruing; + cumulatus_A : A ; -- [XXXCO] :: heaped (up), abounding in; great/abundant/vast; increased/augmented (L+S); full; + cumulo_V2 : V2 ; -- [XXXAO] :: |increase/augment/enhance; perfect/finish up; (PASS) be made/composed of; + cumulus_M_N : N ; -- [XXXBO] :: |finishing touch, consummation, pinnacle, summit, peak, crown; ending of speech; + cuna_F_N : N ; -- [XXXCO] :: cradle (usu. pl.); nest for young birds; one's earliest years; + cunabulum_N_N : N ; -- [XXXBO] :: cradle (pl.); earliest home/years/childhood; hereditary station; nest/hive; + cunaria_F_N : N ; -- [XXXIO] :: baby-sitter, nanny; attendant for infants; + cunarius_M_N : N ; -- [XXXIO] :: baby-sitter, nanny (male); attendant for infants; + cuncta_F_N : N ; -- [XXXCO] :: all (pl.) (F); all with a stated/implied exception; + cunctabundus_A : A ; -- [XXXDO] :: lingering, loitering; slow to action, delaying, hesitating, hesitant; tardy; + cunctalis_A : A ; -- [DXXFS] :: general; + cunctamen_N_N : N ; -- [DXXFS] :: delay, delaying, hesitating, hesitation; + cunctans_A : A ; -- [XXXCO] :: hesitant/delaying/slow to act, tardy; clinging; stubborn, resistant to movement; + cunctanter_Adv : Adv ; -- [XXXCO] :: hesitantly, slowly, with delay/hesitation; tardily; stubbornly; + cunctatio_F_N : N ; -- [XXXCO] :: delay, hesitation; tardiness, inactivity; hesitating about/delaying of (w/GEN); + cunctator_M_N : N ; -- [XXXDX] :: delayer/procrastinator; one prone to delay; considerate/cautious person (L+S); + cunctatrix_F_N : N ; -- [DXXFS] :: procrastinator, she who hesitates; she who acts deliberately/cautiously; + cunctatus_A : A ; -- [XXXFO] :: hesitant; tardy; + cuncticinus_A : A ; -- [DXXFS] :: concordant, harmonious; sounding all together; + cunctim_Adv : Adv ; -- [XXXFO] :: collectively, taken all together; in a body (L+S); + cunctiparens_M_N : N ; -- [DXXFS] :: parent of all; + cunctipotens_A : A ; -- [DEXFS] :: omnipotent, all-powerful; + cuncto_V : V ; -- [XXXDO] :: delay, impede, hold up; hesitate, tarry, linger; be slow to act; dawdle; doubt; + cunctor_V : V ; -- [XXXBO] :: delay, impede, hold up; hesitate, tarry, linger; be slow to act; dawdle; doubt; + cunctum_N_N : N ; -- [XXXCO] :: all (pl.) (N); all with a stated/implied exception; + cunctus_A : A ; -- [XXXAO] :: altogether (usu. pl.), in a body; every, all, entire; total/complete; whole of; + cunctus_M_N : N ; -- [XXXCO] :: all (pl.) (M); all with a stated/implied exception; + cuncumque_Conj : Conj ; -- [XXXFO] :: whenever; + cuneatim_Adv : Adv ; -- [XWXEO] :: in a closely packed/wedge formation; in the form of a wedge, wedge-shaped; + cuneatio_F_N : N ; -- [XXXFO] :: action of making wedge-shaped/tapering; wedge-shaped point (nose) (L+S); + cuneatus_A : A ; -- [XXXDO] :: wedge-shaped, cuneiform; tapering; pointed like a wedge (L+S); + cuneiformis_A : A ; -- [GXXEK] :: cuneiformed; + cunela_F_N : N ; -- [XAXDO] :: plant (genus Cetera, savory); (also called canal and origanum L+S); + cuneo_V2 : V2 ; -- [XXXCO] :: wedge in, secure by wedging; force in like a wedge; form a wedge, taper; mass; + cuneolus_M_N : N ; -- [XXXEO] :: small wedge; pin; small gore/triangular piece (L+S); + cuneus_M_N : N ; -- [XXXBO] :: wedge; wedge-shaped stone/area/rack/block of seats; battalion/etc in a wedge; + cunica_F_N : N ; -- [XTXFO] :: bushing; (fitted round the axle on which millstones revolve); + cunicularis_A : A ; -- [DAXFS] :: of/pertaining to the rabbit, rabbit-; (of an herb); + cunicularius_M_N : N ; -- [DWXES] :: miner; (military slang); (burrows like a rabbit); + cuniculatim_Adv : Adv ; -- [XXXNS] :: in channels; + cuniculator_M_N : N ; -- [DWXFS] :: miner; (burrows like a rabbit); + cuniculatus_A : A ; -- [XXXFS] :: in the form of a channel or tube; + cuniculosus_A : A ; -- [XAXFO] :: abounding in rabbits, full of rabbits; full of/abounding in caves/burrows (L+S); + cuniculum_N_N : N ; -- [XBXFD] :: excrement, filth; (fluxus ventris); (menstrual discharge?); + cuniculus_M_N : N ; -- [XAXBO] :: rabbit; underground tunnel/burrow/hole; mine/excavation; channel; secret device; + cunila_F_N : N ; -- [XAXDO] :: plant (genus Satureia, savory); (also called conila and origanum L+S); + cunilago_F_N : N ; -- [XAXNO] :: plant (variety of genus Satureia, savory); + cunio_V : V ; -- [XXXFO] :: defecate; + cunnilingus_A : A ; -- [XXXEO] :: type of sexual perversion, practicing cunnilingus; + cunnio_M_N : N ; -- [XXXIO] :: type of sexual pervert, one practicing cunnilingus; + cunnuliggeter_M_N : N ; -- [XXXIO] :: type of sexual pervert, one practicing cunnilingus; + cunnus_M_N : N ; -- [XXXDX] :: female pudenda/external genitalia; a female; unchaste woman; (rude); + cunula_F_N : N ; -- [XAXDO] :: plant (genus Satureia, savory); (also called conila and origanum L+S); + cupa_F_N : N ; -- [XXXES] :: dancing-girl; female tavern-keeper and castanet-dancer (L+S); female vintner; + cuparius_M_N : N ; -- [XXXIO] :: maker of casks, cooper; + cupedia_F_N : N ; -- [XXXEO] :: gourmandism; fondness for dainties (L+S); daintiness; delicacies (pl.); + cupedinarius_A : A ; -- [XXXES] :: of/pertaining to dainty dishes/delicacies; [forem ~ => delicacy market in Rome]; + cupedium_N_N : N ; -- [XXXEO] :: delicacy, tidbit; (usu. pl.) delicacies; dainty dishes, tidbits (L+S); 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 ; + cupedo_M_N : N ; -- [XXXEO] :: delicacy; desire; [forem ~ => delicacy market in Rome]; + cupella_F_N : N ; -- [XXXES] :: small vat/cask; + cupes_A : A ; -- [XXXES] :: gluttonous; fond of delicacies (L+S); dainty; + cupide_Adv : Adv ; -- [XXXCO] :: eagerly/zealously/passionately; w/alacrity; hastily/rashly; partially/unfairly; + cupiditas_F_N : N ; -- [XXXBO] :: enthusiasm/eagerness/passion; (carnal) desire; lust; greed/usury/fraud; ambition + cupidium_N_N : N ; -- [XXXEO] :: delicacy, tidbit; (usu. pl.) delicacies; dainty dishes, tidbits (L+S); 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 ; - cupienter_Adv : Adv ; - cupio_V2 : V2 ; - cupisco_V : V ; - cupita_F_N : N ; - cupitor_M_N : N ; - cupitum_N_N : N ; - cupitus_A : A ; - cupitus_M_N : N ; - cupla_F_N : N ; - cupo_M_N : N ; - cupona_F_N : N ; - cuppa_F_N : N ; - cuppedenarius_M_N : N ; - cuppedia_F_N : N ; - cuppedinarius_A : A ; - cuppedinarius_M_N : N ; - cuppedium_N_N : N ; + cupido_M_N : N ; -- [XXXBO] :: desire/love/wish/longing (passionate); lust; greed, appetite; desire for gain; + cupidus_A : A ; -- [XXXBO] :: eager/passionate; longing for/desirous of (with gen.); greedy; wanton/lecherous; + cupiens_A : A ; -- [BXXCO] :: desirous, eager for, longing; anxious; + cupienter_Adv : Adv ; -- [BXXEO] :: eagerly, avidly; earnestly (L+S); + cupio_V2 : V2 ; -- [XXXBO] :: wish/long/be eager for; desire/want, covet; desire as a lover; favor, wish well; + cupisco_V : V ; -- [DXXES] :: wish, desire; + cupita_F_N : N ; -- [XXXDO] :: beloved, loved one; + cupitor_M_N : N ; -- [XXXEO] :: one who desires/wishes; seeker after; + cupitum_N_N : N ; -- [XXXDO] :: one's desire, that which one desires; + cupitus_A : A ; -- [XXXCO] :: much desired/longed for; + cupitus_M_N : N ; -- [XXXDO] :: beloved, loved one; + cupla_F_N : N ; -- [DXXES] :: |friendly/close relationship, bond, intimate connection; (used in grammar); + cupo_M_N : N ; -- [XXXCS] :: shopkeeper, salesman, huckster; innkeeper, keeper of a tavern; + cupona_F_N : N ; -- [DXXCS] :: landlady; (female) shopkeeper, innkeeper; inn, tavern, lodging-house; + cuppa_F_N : N ; -- [XXXCO] :: barrel, cask, tun; niche in a columbarium (for ashes); + cuppedenarius_M_N : N ; -- [XXXEO] :: confectioner; maker/seller of delicacies; + cuppedia_F_N : N ; -- [XXXDX] :: gourmandism; fondness for dainties (L+S); daintiness; delicacies (pl.); + cuppedinarius_A : A ; -- [XXXES] :: of/pertaining to dainty dishes/delicacies; [forem ~ => delicacy market in Rome]; + cuppedinarius_M_N : N ; -- [XXXEO] :: confectioner; maker/seller of delicacies; + cuppedium_N_N : N ; -- [XXXEO] :: delicacy, tidbit; (usu. pl.) delicacies; dainty dishes, tidbits (L+S); cuppedo_F_N : N ; -- [XXXEO] :: |delicacy; desire; [forem ~ => delicacy market in Rome]; - cuppedo_M_N : N ; - cuppes_A : A ; - cuppula_F_N : N ; - cupressetum_N_N : N ; - cupresseus_A : A ; - cupressifer_A : A ; - cupressinus_A : A ; - cupressus_F_N : N ; - cupreus_A : A ; - cuprinus_A : A ; - cupula_F_N : N ; - cur_Adv : Adv ; - cura_F_N : N ; - curabilis_A : A ; - curagendarius_M_N : N ; - curago_V : V ; - curalium_N_N : N ; - curandus_M_N : N ; - curans_M_N : N ; - curara_F_N : N ; - curate_Adv : Adv ; - curatela_F_N : N ; - curatio_F_N : N ; - curator_M_N : N ; - curatoria_F_N : N ; - curatoricius_A : A ; - curatoritius_A : A ; - curatorius_A : A ; - curatrix_F_N : N ; - curatura_F_N : N ; - curatus_A : A ; - curculio_F_N : N ; - curculiunculus_M_N : N ; - curcuma_F_N : N ; - cures_F_N : N ; - curia_F_N : N ; - curialis_A : A ; - curialis_M_N : N ; - curialitas_F_N : N ; - curiatim_Adv : Adv ; - curiatius_A : A ; - curiatus_A : A ; - curilis_A : A ; - curio_A : A ; - curio_M_N : N ; - curionatus_M_N : N ; - curionius_A : A ; - curionus_M_N : N ; - curiose_Adv : Adv ; - curiositas_F_N : N ; - curiosulus_A : A ; - curiosus_A : A ; - curiosus_M_N : N ; - curis_F_N : N ; - curito_V2 : V2 ; - curius_A : A ; - curo_V : V ; - curotrophoe_A : A ; - currax_A : A ; - currens_A : A ; - curriculo_Adv : Adv ; - curriculum_N_N : N ; - currilis_A : A ; - curro_V : V ; - currulis_A : A ; - currus_M_N : N ; - cursatio_F_N : N ; - cursilitas_F_N : N ; - cursim_Adv : Adv ; - cursio_F_N : N ; - cursitatio_F_N : N ; - cursito_V : V ; - cursivus_A : A ; - curso_V : V ; - cursor_M_N : N ; - cursoria_F_N : N ; - cursorium_N_N : N ; - cursorius_A : A ; - cursualis_A : A ; - cursura_F_N : N ; - cursus_M_N : N ; - curtisanus_M_N : N ; - curto_V2 : V2 ; - curtus_A : A ; - curulis_A : A ; - curulis_M_N : N ; - curvabilis_A : A ; - curvamen_N_N : N ; - curvatio_F_N : N ; - curvatura_F_N : N ; - curvatus_A : A ; - curvesco_V : V ; - curvilineus_A : A ; - curvitas_F_N : N ; - curvo_V2 : V2 ; - curvor_M_N : N ; - curvum_N_N : N ; - curvus_A : A ; - cuscolium_N_N : N ; - cusculium_N_N : N ; - cuscussum_N_N : N ; - cusio_F_N : N ; - cuso_V2 : V2 ; - cuspidatim_Adv : Adv ; - cuspido_V2 : V2 ; - cuspis_F_N : N ; - cussiliris_A : A ; - cussinus_M_N : N ; - custodela_F_N : N ; - custodia_F_N : N ; - custodiarium_N_N : N ; - custodiarius_M_N : N ; - custodio_V2 : V2 ; - custodiola_F_N : N ; - custodite_Adv : Adv ; - custoditio_F_N : N ; + cuppedo_M_N : N ; -- [XXXEO] :: |delicacy; desire; [forem ~ => delicacy market in Rome]; + cuppes_A : A ; -- [XXXEO] :: gluttonous; fond of delicacies (L+S); dainty; + cuppula_F_N : N ; -- [XXXEO] :: small barrel/cask/tub; niche in a columbarium (for ashes); small burying vault; + cupressetum_N_N : N ; -- [XAXEO] :: cypress wood/grove/plantation; + cupresseus_A : A ; -- [XAXDO] :: of cypress; of/belonging to cypress trees; made of cypress wood; cypress-; + cupressifer_A : A ; -- [XAXEO] :: cypress-bearing; + cupressinus_A : A ; -- [XAXEO] :: of cypress; of/belonging to cypress trees; made of cypress wood; cypress-; + cupressus_F_N : N ; -- [XAXCO] :: cypress-tree; cypress oil/wood, cypress-wood casket, spear of cypress-wood; + cupreus_A : A ; -- [DXXES] :: copper-. of copper; + cuprinus_A : A ; -- [DXXES] :: copper-. of copper; + cupula_F_N : N ; -- [XXXFS] :: small crooked handle; + cur_Adv : Adv ; -- [XXXAO] :: why, wherefore; for what reason/purpose?; on account of which?; because; + cura_F_N : N ; -- [XXXAO] :: |office/task/responsibility/post; administration, supervision; command (army); + curabilis_A : A ; -- [XBXFO] :: requiring medical treatment; that is to be apprehended/feared (L+S); curable; + curagendarius_M_N : N ; -- [DAXFS] :: manager, overseer; + curago_V : V ; -- [XXXIO] :: manage, take charge; + curalium_N_N : N ; -- [XXXDO] :: coral; (esp. red coral); + curandus_M_N : N ; -- [XBXFS] :: patient; (medical); + curans_M_N : N ; -- [XBXEO] :: one who treats a patient; physician (L+S); + curara_F_N : N ; -- [GXXEK] :: curare; + curate_Adv : Adv ; -- [XXXEO] :: carefully, with care; diligently; elaborately; + curatela_F_N : N ; -- [FXXEE] :: guardianship; + curatio_F_N : N ; -- [XXXBO] :: |administration, management, taking charge; office charged with duties; + curator_M_N : N ; -- [XXXDX] :: manager, superintendent, supervisor, overseer; keeper; guardian (of minor/ward); + curatoria_F_N : N ; -- [DLXES] :: guardian; (of minor/woman/imbecile); trustee; (for absent person); + curatoricius_A : A ; -- [DXXFS] :: of/belonging to an overseer; [equi ~ => horses of the provincial commissary]; + curatoritius_A : A ; -- [DXXFS] :: of/belonging to an overseer; [equi ~ => horses of the provincial commissary]; + curatorius_A : A ; -- [XLXEO] :: of/belonging to a curator/guardian; pertaining to guardianship (L+S); + curatrix_F_N : N ; -- [DLXFS] :: guardian (female); + curatura_F_N : N ; -- [XXXEO] :: treatment/care/attention; office of curator/guardian; management/superintendence + curatus_A : A ; -- [XXXCO] :: well looked after; carefully prepared; anxious, solicitous, earnest; + curculio_F_N : N ; -- [XAXCO] :: grain-worm/weevil; weevil; + curculiunculus_M_N : N ; -- [XAXFO] :: small/little weevil; something trifling/worthless (L+S); + curcuma_F_N : N ; -- [GXXEK] :: curcuma; (spice); + cures_F_N : N ; -- [XWXEO] :: spear; (Sabine word); + curia_F_N : N ; -- [XLIBO] :: senate; meeting house; curia/division of Roman people; court (Papal/royal); + curialis_A : A ; -- [XLIDO] :: of/belonging/pertaining to a curia (district/division of the Roman people); + curialis_M_N : N ; -- [XLIDO] :: member of the same curia (district/division of the Roman people); + curialitas_F_N : N ; -- [FXXFM] :: courtesy; courtliness; + curiatim_Adv : Adv ; -- [XXXDX] :: by curia (the 30 divisions of the Roman people); + curiatius_A : A ; -- [XLIIO] :: of curiae; (w/Comitia) (pl.) assembly in which people voted according to curia; + curiatus_A : A ; -- [XLICO] :: of curiae; (w/Comitia) (pl.) assembly in which people voted according to curia; + curilis_A : A ; -- [DXXFS] :: of/belonging/pertaining to chariots/chariot race; + curio_A : A ; -- [BXXFS] :: lean, emaciated; wasted by sorrow; (pun on curiosus); + curio_M_N : N ; -- [XEIEO] :: priest presiding over a curia; crier/herald; [~ maximus => chief of this sect]; + curionatus_M_N : N ; -- [XEIFO] :: office of curio (priest presiding over a curia); + curionius_A : A ; -- [XEXFS] :: of/pertaining to the priest of a curia; + curionus_M_N : N ; -- [XEIFO] :: priest presiding over a curia; crier/herald; [~ maximus => chief of this sect]; + curiose_Adv : Adv ; -- [XXXCO] :: carefully/attentively, w/care; elaborately; curiously/inquisitively, w/curiosity + curiositas_F_N : N ; -- [XXXDO] :: curiosity, inquisitiveness; excessive eagerness for knowledge; nosiness; + curiosulus_A : A ; -- [XXXFO] :: somewhat inquisitive/curious/nosy; + curiosus_A : A ; -- [XXXBO] :: |labored/elaborate/complicated; eager to know, curious, inquisitive; careworn; + curiosus_M_N : N ; -- [XXXDS] :: spy, one who is prying; scout; informer; class of secret spys; secret police; + curis_F_N : N ; -- [XWXEO] :: spear; (Sabine word); + curito_V2 : V2 ; -- [XXXFO] :: give frequent/abundant attention to; take care of, cherish (L+S); + curius_A : A ; -- [BXXFS] :: grievous; full of sorrow; + curo_V : V ; -- [XXXAO] :: |undertake; procure; regard w/anxiety/interest; take trouble/interest; desire; + curotrophoe_A : A ; -- F + currax_A : A ; -- [XXXEO] :: agile, quick, swift, lively; running fast (L+S); [laqueus ~ => running noose]; + currens_A : A ; -- [XXXDE] :: current; + curriculo_Adv : Adv ; -- [XXXDO] :: on the double, at the run; quickly; + curriculum_N_N : N ; -- [XXXBO] :: act of running; race; lap, track; chariot; course of action/heavenly bodies; + currilis_A : A ; -- [DXXES] :: of/belonging/pertaining to chariots/chariot race; + curro_V : V ; -- [XXXAO] :: run/trot/gallop, hurry/hasten/speed, move/travel/proceed/flow swiftly/quickly; + currulis_A : A ; -- [XXXEO] :: of/belonging/pertaining to chariots/chariot race; + currus_M_N : N ; -- [XXXBO] :: chariot, light horse vehicle; triumphal chariot; triumph; wheels on plow; cart; + cursatio_F_N : N ; -- [DXXFS] :: action of running; a running; + cursilitas_F_N : N ; -- [DXXFS] :: running about (act/action of); + cursim_Adv : Adv ; -- [XXXDX] :: swiftly/rapidly; hastily, without great pain, cursorily; in passing; at the run; + cursio_F_N : N ; -- [XXXFO] :: action of running; + cursitatio_F_N : N ; -- [DXXFS] :: running about to-and-fro/hither-and-thither (act/action of); + cursito_V : V ; -- [XXXCO] :: run about/to-and-fro/habitually; race/run races; resort frequently; be in motion + cursivus_A : A ; -- [GGXEK] :: cursive print, italic print; + curso_V : V ; -- [XXXCO] :: run/rush/hurry to-and-fro/hither-and-thither; run constantly about; run over; + cursor_M_N : N ; -- [GXXEK] :: |cursor (of an instrument); + cursoria_F_N : N ; -- [DWXFS] :: yacht, cutter; + cursorium_N_N : N ; -- [DXXFS] :: mail, public post; + cursorius_A : A ; -- [DXXFS] :: of/pertaining to running/race course; + cursualis_A : A ; -- [DXXDS] :: hasty/speedy; of running/course; post-; postal; [equi ~ => post-horses]; + cursura_F_N : N ; -- [XXXEO] :: running; (esp. in a race); + cursus_M_N : N ; -- [GXXEK] :: ||lesson; + curtisanus_M_N : N ; -- [GXXEK] :: courtier; + curto_V2 : V2 ; -- [XAXCO] :: shorten, cut short, abbreviate; diminish; circumcise; geld; dock (dog's tail); + curtus_A : A ; -- [XAXCO] :: mutilated; incomplete, missing a part; circumcised; castrated, gelded; docked; + curulis_A : A ; -- [DXXFS] :: |of/belonging/pertaining to chariots/chariot race; of ceremonial chariot; + curulis_M_N : N ; -- [XLXDO] :: curule magistrate; (perh. aedile); + curvabilis_A : A ; -- [DXXFS] :: flexible; that may be bent; + curvamen_N_N : N ; -- [XSXCO] :: curvature, curve/bend, bending; curved form/outline; arc (of the sky); vaulting; + curvatio_F_N : N ; -- [XSXEO] :: curvature; bend; + curvatura_F_N : N ; -- [XSXCO] :: curve/bend, curved shape/outline/part; rounding (L+S); vault/arched ceiling; + curvatus_A : A ; -- [XSXDO] :: curved, bent; crooked; swelling; + curvesco_V : V ; -- [DXXDS] :: be crooked/curved; make a curve; + curvilineus_A : A ; -- [GSXEZ] :: curvilinear; in a curved line; + curvitas_F_N : N ; -- [DSXFS] :: crookedness; curvature; + curvo_V2 : V2 ; -- [XXXCO] :: bend/arch, make curved/bent; form a curve; make stoop/bow/yield; influence; + curvor_M_N : N ; -- [XSXFO] :: curvature; crookedness (L+S); + curvum_N_N : N ; -- [XSXDO] :: curve; curved object or line; that which is crooked/wrong (L+S); (morally); + curvus_A : A ; -- [XXXBX] :: curved/bent/arched; crooked; morally wrong; stooped/bowed; winding; w/many bends + cuscolium_N_N : N ; -- [XAXNS] :: excrescence on kind of holm oak used for scarlet dye; berry of the oak (L+S); + cusculium_N_N : N ; -- [XAXNO] :: excrescence on kind of holm oak used for scarlet dye; berry of the oak (L+S); + cuscussum_N_N : N ; -- [GXXEK] :: couscous; (Moroccan food); + cusio_F_N : N ; -- [DLXFS] :: stamping of money; (coining?); + cuso_V2 : V2 ; -- [DLXFS] :: coin/stamp money; + cuspidatim_Adv : Adv ; -- [XXXNO] :: like a spear-point; to a point; with a point (L+S); + cuspido_V2 : V2 ; -- [XXXNO] :: tip, provide with a point; make pointed (L+S); + cuspis_F_N : N ; -- [XWXBO] :: point/tip (spear), pointed end; spit/stake; blade; javelin/spear/lance; sting; + cussiliris_A : A ; -- [BXXFO] :: lazy/idle/sluggish; spiritless; cowardly, faint-hearted; ignoble, mean; useless; + cussinus_M_N : N ; -- [FXXEE] :: cushion; + custodela_F_N : N ; -- [XLXDO] :: custody (of person/thing), charge, keeping; watch. guard, care (L+S); + custodia_F_N : N ; -- [XXXAO] :: |watch/guard/picket; guard post/house; prison; confinement; protective space; + custodiarium_N_N : N ; -- [DXXIS] :: watch/guard house; + custodiarius_M_N : N ; -- [XXXIO] :: jailer, warder; + custodio_V2 : V2 ; -- [XXXAO] :: guard/protect/preserve, watch over, keep safe; take heed/care, observe; restrain + custodiola_F_N : N ; -- [XXXIO] :: place of confinement; (tomb); + custodite_Adv : Adv ; -- [XXXEO] :: cautiously, guardedly; carefully (L+S); + custoditio_F_N : N ; -- [XXXFO] :: protection, guarding; guardianship (L+S); keeping, observance; 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 ; - cutio_M_N : N ; - cutis_F_N : N ; - cutitus_A : A ; - cyamias_F_N : N ; - cyamos_M_N : N ; - cyamus_M_N : N ; - cyanea_F_N : N ; - cyaneus_A : A ; - cyanos_F_N : N ; - cyanus_F_N : N ; - cyathiscus_M_N : N ; - cyathisso_V : V ; - cyathus_M_N : N ; - cyatus_M_N : N ; - cybaea_F_N : N ; - cybaeus_A : A ; - cyberneticus_A : A ; - cybiarius_M_N : N ; - cybicus_A : A ; - cybindis_F_N : N ; - cybion_N_N : N ; - cybium_N_N : N ; - cybus_M_N : N ; - cyceon_M_N : N ; - cychramus_M_N : N ; - cycladatus_A : A ; - cyclaminon_N_N : N ; - cyclaminos_F_N : N ; - cyclaminum_N_N : N ; - cyclas_F_N : N ; - cyclicus_A : A ; - cyclophoreticus_A : A ; - cyclus_M_N : N ; - cycnarium_N_N : N ; - cycneus_A : A ; - cycnion_N_N : N ; - cycnium_N_N : N ; - cycnon_N_N : N ; - cycnus_M_N : N ; - cydarum_N_N : N ; - cydonium_N_N : N ; - cydonius_M_N : N ; - cygnus_M_N : N ; - cyitis_F_N : N ; - cyix_M_N : N ; - cylindratus_A : A ; - cylindricus_A : A ; - cylindrus_M_N : N ; - cylisterium_N_N : N ; - cylix_F_N : N ; - cylon_N_N : N ; - cyma_F_N : N ; - cyma_N_N : N ; - cymatile_N_N : N ; - cymatilis_A : A ; - cymation_N_N : N ; - cymatium_N_N : N ; - cymba_F_N : N ; - cymbalaris_F_N : N ; - cymbalicus_A : A ; - cymbalisso_V : V ; - cymbalista_M_N : N ; - cymbalistes_M_N : N ; - cymbalistria_F_N : N ; - cymbalon_N_N : N ; - cymbalum_N_N : N ; - cymbium_N_N : N ; - cymbula_F_N : N ; - cyminatum_N_N : N ; - cyminatus_A : A ; - cymindis_F_N : N ; - cymininus_A : A ; - cyminum_N_N : N ; - cymosus_A : A ; - cymula_F_N : N ; - cyna_F_N : N ; - cynacantha_F_N : N ; - cynanche_F_N : N ; - cynapanxis_F_N : N ; - cynarium_N_N : N ; + custos_M_N : N ; -- [XXXAO] :: |jailer, warden; poll watcher; spy; garrison; container; replacement vine shoot; + cusuc_N : N ; -- [XXXFO] :: shanty, small hut; + cuticula_F_N : N ; -- [XBXFO] :: skin; cuticle; + cutio_M_N : N ; -- [DAXFS] :: small insect; millipede; + cutis_F_N : N ; -- [XXXBO] :: skin; external appearance, surface; person, body; leather/hide; rind; membrane; + cutitus_A : A ; -- [XXXFO] :: skinned, skinable; (used in sense of having sexual intercourse); + cyamias_F_N : N ; -- [XXXNO] :: precious stone (unidentified); beanstone (L+S); + cyamos_M_N : N ; -- [XAENO] :: Egyptian bean (Nelumbium speciosum); (also called colocasia L+S); + cyamus_M_N : N ; -- [XAENS] :: Egyptian bean (Nelumbium speciosum); (also called colocasia L+S); + cyanea_F_N : N ; -- [FXXES] :: Cyanea; two rocky islands at Pontus Euxinus; + cyaneus_A : A ; -- [XXXNO] :: dark blue; sea blue (L+S); + cyanos_F_N : N ; -- [XXXNO] :: precious stone (like lapis-lazuli); blue cornflower/blue-bottle Centaurea cyanus + cyanus_F_N : N ; -- [XXXNO] :: precious stone (like lapis-lazuli); blue cornflower/blue-bottle Centaurea cyanus + cyathiscus_M_N : N ; -- [XBXFO] :: kind of forceps; + cyathisso_V : V ; -- [XXXFO] :: ladle out wine; fill a cyathus/ladle (L+S); + cyathus_M_N : N ; -- [XSXCO] :: 1/12 sextarius/pint; shot (liquid measure); 10 drachmae (dry measure); + cyatus_M_N : N ; -- [XXXCO] :: |wine-ladle; wine-measure, shot; office of wine-mixer/cup-bearer; + cybaea_F_N : N ; -- [XXXEO] :: merchantman, transport/merchant/cargo ship; (with or without navis); + cybaeus_A : A ; -- [XXXES] :: transport/merchant/cargo (of a ship); + cyberneticus_A : A ; -- [HSXEK] :: cybernetic; + cybiarius_M_N : N ; -- [DXXFS] :: dealer in salt fish; (dubious); + cybicus_A : A ; -- [XSXFO] :: cubic, cubical; of cubes; + cybindis_F_N : N ; -- [XAXNO] :: nocturnal bird of prey; night hawk (L+S); + cybion_N_N : N ; -- [XAXCS] :: young tunny; chopped and salted pieces of young tunnyfish; + cybium_N_N : N ; -- [XAXCO] :: young tunny; chopped and salted pieces of young tunnyfish; + cybus_M_N : N ; -- [XSXDO] :: cube (geometric figure), die/dice; lump; cubic number; + cyceon_M_N : N ; -- [DXXFS] :: drink made with barley-grits and grated goat-cheese and wine; + cychramus_M_N : N ; -- [XAXNO] :: bird accompanying quail on migration; (perh. corncrake/landrail); (ortolan L+S); + cycladatus_A : A ; -- [XXXFO] :: dressing/dressed in a cyclas (light female outer garment with decorated border); + cyclaminon_N_N : N ; -- [XAXES] :: plant cycamen, sowbread; (Cyclamen Europaeum L+S); + cyclaminos_F_N : N ; -- [XAXEO] :: plant cycamen, sowbread; (Cyclamen Europaeum L+S); + cyclaminum_N_N : N ; -- [XAXEO] :: plant cycamen, sowbread; (Cyclamen Europaeum L+S); + cyclas_F_N : N ; -- [XXXEO] :: female's light outer garment with decorative border; state robe of women (L+S); + cyclicus_A : A ; -- [XPXFO] :: cyclic; of Epic cycle (poet); (perh.) conventional, commonplace; encyclopedic; + cyclophoreticus_A : A ; -- [DXXFS] :: circular, moving in a circle; + cyclus_M_N : N ; -- [XXXEE] :: cycle; circle; + cycnarium_N_N : N ; -- [XBXIS] :: kind of eye-salve; + cycneus_A : A ; -- [XAXDO] :: of/pertaining to a swan, swan-like; [vox ~ => swan-song, last utterance]; + cycnion_N_N : N ; -- [XBXEO] :: kind of eye-salve; + cycnium_N_N : N ; -- [XBXEO] :: kind of eye-salve; + cycnon_N_N : N ; -- [XBXEO] :: kind of eye-salve; + cycnus_M_N : N ; -- [XAXBO] :: swan; (favorable omen); (drawing chariot of Venus); + cydarum_N_N : N ; -- [XWXEO] :: kind of small ship; + cydonium_N_N : N ; -- [DAXNS] :: quince wine/juice; quince (pl.); + cydonius_M_N : N ; -- [DAXFS] :: quince tree; + cygnus_M_N : N ; -- [XAXCO] :: swan; (favorable omen); (drawing chariot of Venus); + cyitis_F_N : N ; -- [XXXNO] :: precious stone (unidentified); + cyix_M_N : N ; -- [XAXNO] :: bulbous plant; + cylindratus_A : A ; -- [XSXNO] :: cylindrical, shaped like a cylinder; + cylindricus_A : A ; -- [GXXEK] :: cylindrical; + cylindrus_M_N : N ; -- [XSXCO] :: cylinder; stone roller (for leveling the ground); gem cut in cylindrical form; + cylisterium_N_N : N ; -- [XXXIO] :: kind of exercise room in a bathing establishment; + cylix_F_N : N ; -- [XXXFO] :: cup; + cylon_N_N : N ; -- [XXXNO] :: kind of azurite; (blue carbonate of copper, valuable ore); + cyma_F_N : N ; -- [XAXCO] :: spring shoots of cabbage/similar; hollow sphere (L+S); spherical layer, stratum; + cyma_N_N : N ; -- [XAXCO] :: spring shoots of cabbage/similar; hollow sphere (L+S); spherical layer, stratum; + cymatile_N_N : N ; -- [BXXFS] :: bluish garment; + cymatilis_A : A ; -- [XXXES] :: wave/sea colored; water-colored, blue (L+S); of the waves; [deus ~ => Neptune]; + cymation_N_N : N ; -- [XTXDS] :: molding; (esp. echinus of Ionic capital); channel, waved molding on ogee (L+S) + cymatium_N_N : N ; -- [XTXDO] :: molding; (esp. echinus of Ionic capital); channel, waved molding on ogee (L+S) + cymba_F_N : N ; -- [XWXCO] :: skiff, small boat; (esp. that in which Charon ferried the dead across the Styx); + cymbalaris_F_N : N ; -- [DAXFS] :: plant; (also called cotyedon); + cymbalicus_A : A ; -- [DDXFS] :: of/pertaining to a cymbal; + cymbalisso_V : V ; -- [XDXFO] :: play/strike the cymbals; + cymbalista_M_N : N ; -- [XDXES] :: cymbal-player; + cymbalistes_M_N : N ; -- [XDXEO] :: cymbal-player; + cymbalistria_F_N : N ; -- [XDXEO] :: cymbal-player (female); + cymbalon_N_N : N ; -- [XDXCO] :: cymbal; (term for tedious/stupid speaker); cymbals (usu. pl.); valve; + cymbalum_N_N : N ; -- [XDXCO] :: cymbal; (term for tedious/stupid speaker); cymbals (usu. pl.); valve; + cymbium_N_N : N ; -- [XXXCO] :: small cup/bowl/drinking vessel; (especially for wine); lamp in same form (L+S); + cymbula_F_N : N ; -- [XWXFS] :: small boat; + cyminatum_N_N : N ; -- [XXXFS] :: cummin/cumin spice; + cyminatus_A : A ; -- [DXXFS] :: seasoned/mixed with cummin/cumin; + cymindis_F_N : N ; -- [XAXNS] :: nocturnal bird of prey; night hawk (L+S); + cymininus_A : A ; -- [DAXFS] :: of cummin/cumin; (oil); + cyminum_N_N : N ; -- [XAXCO] :: cummin/cumin (plant/seed); (spice/drug); + cymosus_A : A ; -- [XAXFO] :: full of/abounding in young sprouts; + cymula_F_N : N ; -- [XTXFO] :: small molding; tender sprout (L+S); + cyna_F_N : N ; -- [XAQNS] :: tree in Arabia that produced cotton; + cynacantha_F_N : N ; -- [XAXNO] :: kind of thorn; (perh. dog-rose); + cynanche_F_N : N ; -- [DBXFS] :: inflammation of the throat (which caused the tongue to be thrust out); + cynapanxis_F_N : N ; -- [XAXNO] :: kind of rose; + cynarium_N_N : N ; -- [XBXIO] :: remedy for eye trouble; cynas_1_N : N ; -- [XAQNO] :: Arabian tree; - cynas_2_N : N ; - cynegiolum_N_N : N ; - cynice_Adv : Adv ; - cynicus_A : A ; - cynifes_F_N : N ; - cyniola_F_N : N ; - cyniphs_F_N : N ; - cynismus_M_N : N ; - cynocardamon_N_N : N ; - cynocauma_N_N : N ; - cynocephalea_F_N : N ; - cynocephalia_F_N : N ; - cynocephalion_N_N : N ; - cynocephalus_M_N : N ; - cynodon_A : A ; - cynoglossos_F_N : N ; - cynoides_N_N : N ; - cynomazon_N_N : N ; - cynomia_F_N : N ; - cynomorium_N_N : N ; - cynomyia_F_N : N ; - cynon_N_N : N ; - cynophanis_M_N : N ; - cynops_M_N : N ; - cynorrhoda_F_N : N ; - cynorrhodon_N_N : N ; - cynorrhodum_N_N : N ; - cynorroda_F_N : N ; - cynorrodon_N_N : N ; - cynorrodum_N_N : N ; - cynosbatos_F_N : N ; - cynosdexia_F_N : N ; - cynosorchis_F_N : N ; - cynospastos_F_N : N ; - cynosurus_A : A ; - cynozolon_N_N : N ; - cyparissias_M_N : N ; - cyparissifer_A : A ; - cyparissos_F_N : N ; - cyparissus_F_N : N ; - cyparittias_M_N : N ; - cyperis_F_N : N ; - cyperon_N_N : N ; + cynas_2_N : N ; -- [XAQNO] :: Arabian tree; + cynegiolum_N_N : N ; -- [XAXIO] :: group of hunters; + cynice_Adv : Adv ; -- [XXXFO] :: after the manner of the Cynics; + cynicus_A : A ; -- [XSXCO] :: of/pertaining to Cynic philosophy; [spasticus ~ => who has facial paralysis]; + cynifes_F_N : N ; -- [DAHES] :: kind of stinging insects; very small flies, gnats; lice/flies/others (OLD); + cyniola_F_N : N ; -- [DAXFS] :: kind of lettuce; + cyniphs_F_N : N ; -- [DAHES] :: kind of stinging insects; very small flies, gnats; lice/flies/others (OLD); + cynismus_M_N : N ; -- [DSXFS] :: Cynical philosophy or conduct; + cynocardamon_N_N : N ; -- [DAXFS] :: kind of nasturtium; + cynocauma_N_N : N ; -- [XXXNO] :: heat of the dog-days; + cynocephalea_F_N : N ; -- [DAXFD] :: plant; (kind of snapdragon Misopates orontium); dog's-head, magic plant (L+S); + cynocephalia_F_N : N ; -- [XAXNO] :: plant; (kind of snapdragon Misopates orontium); dog's-head, magic plant (L+S); + cynocephalion_N_N : N ; -- [DAXFS] :: plant; (kind of snapdragon Misopates orontium); dog's-head, magic plant (L+S); + cynocephalus_M_N : N ; -- [XXXEC] :: dog-faced baboon; (prob. Simia hamadryas); Anubis (L+S); kind of wild man; + cynodon_A : A ; -- [DBXFS] :: having pairs of projecting teeth; + cynoglossos_F_N : N ; -- [XAXNO] :: plant, hound's-tongue; another plant producing small burs (L+S); + cynoides_N_N : N ; -- [XAXNO] :: plant; (prob. Plantago psyllium); + cynomazon_N_N : N ; -- [DAXFS] :: plant, dog-bread; + cynomia_F_N : N ; -- [EAXFW] :: bitting fly (Vulgate); dog-fly (Souter); + cynomorium_N_N : N ; -- [XAXNO] :: parasitic plant, dodder; broom-rape (also called orobanche) (L+S); + cynomyia_F_N : N ; -- [XAXNO] :: plant; (prob. Plantago psyllium); herb fleabane (L+S); dog-fly (Souter); + cynon_N_N : N ; -- [XBXIO] :: kind of eye-salve; + cynophanis_M_N : N ; -- [DYXFS] :: men (pl.) with dog's heads; + cynops_M_N : N ; -- [XAXNO] :: marine animal (unidentified); plant dog's eye (L+S); + cynorrhoda_F_N : N ; -- [XAXNO] :: dog-rose; kind of lily; blossom of the red lily (L+S); + cynorrhodon_N_N : N ; -- [XAXNO] :: dog-rose; kind of lily; blossom of the red lily (L+S); + cynorrhodum_N_N : N ; -- [XAXNO] :: dog-rose; kind of lily; blossom of the red lily (L+S); + cynorroda_F_N : N ; -- [XAXNS] :: dog-rose; kind of lily; blossom of the red lily (L+S); + cynorrodon_N_N : N ; -- [XAXNS] :: dog-rose; kind of lily; blossom of the red lily (L+S); + cynorrodum_N_N : N ; -- [XAXNS] :: dog-rose; kind of lily; blossom of the red lily (L+S); + cynosbatos_F_N : N ; -- [XAXNO] :: kind of rose; caper (plant/fruit); dog-rose (L+S); wild-briar; black current; + cynosdexia_F_N : N ; -- [XAXNO] :: marine animal (unidentified); sea-polypus (L+S); + cynosorchis_F_N : N ; -- [XAXNO] :: kind of orchid; plant, hound's-cod (L+S); + cynospastos_F_N : N ; -- [XAXNS] :: kind of rose; caper (plant/fruit); dog-rose (L+S); wild-briar; black current; + cynosurus_A : A ; -- [XBXNO] :: addled; (of eggs); + cynozolon_N_N : N ; -- [XAXNO] :: plant; thistle; (also called chamaeleon/ulophonon, prob. Chamaeleon niger L+S); + cyparissias_M_N : N ; -- [XAXNS] :: species of tithymatus/spurge; + cyparissifer_A : A ; -- [DAXFS] :: cypress-bearing; + cyparissos_F_N : N ; -- [DAXFS] :: plant (unidentified); + cyparissus_F_N : N ; -- [XAXES] :: cypress-tree; cypress oil/wood, cypress-wood casket, spear of cypress-wood; + cyparittias_M_N : N ; -- [XAXNO] :: species of spurge; + cyperis_F_N : N ; -- [XAXNS] :: root of the plant cyperos (kind of rush); + cyperon_N_N : N ; -- [XAXDO] :: plant, galingale; preparation of its aromatic root; 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 ; + cyperos_M_N : N ; -- [XAXDO] :: plant, galingale; preparation of its aromatic root; + cyperum_N_N : N ; -- [XAXDO] :: plant, galingale; preparation of its aromatic root; + cyperus_C_N : N ; -- [XAXDO] :: plant, galingale; preparation of its aromatic root; + cyphi_N_N : N ; -- [DXEES] :: Egyptian perfuming powder; + cyphus_M_N : N ; -- [FXXCL] :: bowl, goblet, cup; communion cup; + cypira_F_N : N ; -- [XAJNO] :: Indian plant; (prob. turmeris Curcuma longa); cypiros_F_N : N ; -- [XAXNO] :: one/several sorts of gladiolus; (confused with cyperos); - cypiros_M_N : N ; - cypirus_C_N : N ; - cypressinus_A : A ; - cypressus_F_N : N ; - cypreus_A : A ; - cyprinum_N_N : N ; - cyprinus_A : A ; - cyprinus_M_N : N ; - cypros_F_N : N ; - cyprum_N_N : N ; - cyprus_A : A ; - cyprus_F_N : N ; - cypselus_M_N : N ; - cysthos_M_N : N ; - cytinus_M_N : N ; - cytis_F_N : N ; - cytisum_N_N : N ; - cytisus_C_N : N ; - cytoplasma_N_N : N ; - cytropus_M_N : N ; - d_A : A ; + cypiros_M_N : N ; -- [XAXNO] :: one/several sorts of gladiolus; (confused with cyperos); + cypirus_C_N : N ; -- [XAXNO] :: one/several sorts of gladiolus; (confused with cyperos); + cypressinus_A : A ; -- [XAXES] :: of cypress; of/belonging to cypress trees; made of cypress wood; cypress-; + cypressus_F_N : N ; -- [DAXCS] :: cypress-tree; cypress oil/wood, cypress-wood casket, spear of cypress-wood; + cypreus_A : A ; -- [XXXEO] :: henna; copper-. of copper (L+S); [oleum ~ => henna oil]; + cyprinum_N_N : N ; -- [XXXNO] :: precious stone (unidentified); + cyprinus_A : A ; -- [XXXEO] :: of the henna tree Lawsonia inermis; henna oil; copper-. of copper (L+S); + cyprinus_M_N : N ; -- [XAXNO] :: carp; henna oil; cyprus oil/ointment; + cypros_F_N : N ; -- [XAXNO] :: henna-tree, Egyptian privet Lawsonia inermis; tree which yielded cyprium (L+S); + cyprum_N_N : N ; -- [XXXNO] :: henna oil; + cyprus_A : A ; -- [AXXES] :: good; (Sabine for bonus); + cyprus_F_N : N ; -- [XAXNO] :: henna-tree, Egyptian privet Lawsonia inermis; tree which yielded cyprium (L+S); + cypselus_M_N : N ; -- [XAXNO] :: bird; (perh. swift); + cysthos_M_N : N ; -- [DBXFS] :: female pudenda/exterior genitalia; + cytinus_M_N : N ; -- [XAXNO] :: undeveloped flower/calyx of the pomegranate; + cytis_F_N : N ; -- [XAXNO] :: precious stone (unidentified); + cytisum_N_N : N ; -- [XAXCO] :: fodder plant, tree-medick Medicago arborea; wood of this; scrubby snail-clover; + cytisus_C_N : N ; -- [XAXCO] :: fodder plant, tree-medick Medicago arborea; wood of this; scrubby snail-clover; + cytoplasma_N_N : N ; -- [HTXEK] :: cytoplasm; + cytropus_M_N : N ; -- [EXXFS] :: chafing dish/pot with feet (for cooking directly over coals on the ground); + d_A : A ; -- [XLXIO] :: obliged; bound (to pay), condemned to pay; sentenced; (abb. d. in inscription); 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 ; - dactyliotheca_F_N : N ; - dactylis_F_N : N ; - dactylogramma_N_N : N ; - dactylus_M_N : N ; - daduchus_M_N : N ; - daedale_Adv : Adv ; - daedalus_A : A ; - daemon_M_N : N ; - daemoniacus_A : A ; - daemoniacus_M_N : N ; - daemonicola_M_N : N ; - daemonicus_A : A ; - daemonion_N_N : N ; - daemonium_N_N : N ; - dagnades_F_N : N ; - daleth_N : N ; - dalia_F_N : N ; - dalmatia_F_N : N ; - dalmatica_F_N : N ; - dama_F_N : N ; - damalio_M_N : N ; - damasonion_N_N : N ; - damasonium_N_N : N ; - damium_N_N : N ; - damiurgus_M_N : N ; - damma_F_N : N ; - dammula_F_N : N ; - damnabilis_A : A ; - damnabiliter_Adv : Adv ; - damnas_A : A ; - damnaticius_A : A ; - damnatio_F_N : N ; - damnatitius_A : A ; - damnator_M_N : N ; - damnatorius_A : A ; - damnatus_A : A ; - damnaustra_N : N ; - damnifico_V2 : V2 ; - damnificus_A : A ; - damnigerulus_A : A ; - damno_V2 : V2 ; - damnose_Adv : Adv ; - damnosus_A : A ; - damnula_F_N : N ; - damnum_N_N : N ; - dampnaticius_A : A ; - dampnatio_F_N : N ; - dampnatitius_A : A ; - dampnatus_A : A ; - dampno_V2 : V2 ; - dampnum_N_N : N ; - damula_F_N : N ; - danista_M_N : N ; - danisticus_A : A ; - dannaustra_N : N ; - dapalis_A : A ; - dapatice_Adv : Adv ; - dapaticus_A : A ; - daphine_F_N : N ; - daphne_F_N : N ; - daphneas_F_N : N ; - daphnias_F_N : N ; - daphnitis_F_N : N ; - daphnoides_A : A ; + d_M_N : N ; -- [XXXCS] :: diem, abb. d; in calendar expression a. d. = ante diem = before the day; + dablas_F_N : N ; -- [XAQNO] :: kind of Arabian palm; (bears delicious fruit L+S); + dacrima_F_N : N ; -- [AXXBS] :: |juice; exuded gum/sap from plant; quicksilver from ore; dirge; + dactylicus_A : A ; -- [XPXEO] :: dactylic; of/characterized by dactyls (metric foot long-short-short); + dactyliotheca_F_N : N ; -- [XXXEO] :: box/case/casket for rings; (and its contents); + dactylis_F_N : N ; -- [XAXFS] :: kind of grape; (long like a finger); + dactylogramma_N_N : N ; -- [HTXEK] :: digital print; + dactylus_M_N : N ; -- [XPXCO] :: dactyl (metrical foot long-short-short); long (finger-like) grape/date/mollusk; + daduchus_M_N : N ; -- [XEXFO] :: priest carrying torch (who guided initiates to-be at the Eleusinian mysteries); + daedale_Adv : Adv ; -- [XXXFS] :: artistically, skillfully; + daedalus_A : A ; -- [XXXCS] :: |artificial, artificially contrived; variously adorned, ornamented; variegated; + daemon_M_N : N ; -- [CEXEO] :: spirit, supernatural being, intermediary between man and god; evil demon/devil; + daemoniacus_A : A ; -- [DEXDS] :: demonic, devilish; pertaining to an evil spirit; + daemoniacus_M_N : N ; -- [DEXES] :: demonic, one possessed by evil spirits; + daemonicola_M_N : N ; -- [DEXFS] :: heathen; worshipper of devils; + daemonicus_A : A ; -- [DEXDS] :: demonic, devilish; belonging to an evil spirit; + daemonion_N_N : N ; -- [CSXFO] :: spirit; Socrates' indwelling genius; familiar; little spirit (L+S); demon/devil; + daemonium_N_N : N ; -- [CSXFO] :: spirit; Socrates' indwelling genius; familiar; little spirit (L+S); demon/devil; + dagnades_F_N : N ; -- [XAEFS] :: kind of bird in Egypt; + daleth_N : N ; -- [DEQEE] :: dalet/daleth; (4th letter of Hebrew alphabet); (transliterate as D); + dalia_F_N : N ; -- [GXXEK] :: dahlia; + dalmatia_F_N : N ; -- [XXKES] :: Dalmatia; + dalmatica_F_N : N ; -- [EEXFE] :: dalmitic, vestment of deacon; + dama_F_N : N ; -- [XAXCO] :: fallow/red-deer; small member of deer family; gazelle/antelope; doe; slave name; + damalio_M_N : N ; -- [DAXFO] :: calf; + damasonion_N_N : N ; -- [XAXNO] :: water plantain; + damasonium_N_N : N ; -- [XAXNO] :: water plantain; + damium_N_N : N ; -- [XEXFO] :: sacrifice made in secret in honor of the Bonae Deae; + damiurgus_M_N : N ; -- [XLHEO] :: magistrate in various Greek states; play by Turpilus; + damma_F_N : N ; -- [XAXCO] :: fallow/red-deer; small member of deer family; gazelle/antelope; doe; + dammula_F_N : N ; -- [XAXFO] :: little deer (as a small and harmless animal); little fallow deer (L+S); + damnabilis_A : A ; -- [DXXDS] :: damnable, worthy of condemnation/damnation; + damnabiliter_Adv : Adv ; -- [DXXFS] :: culpably; + damnas_A : A ; -- [XLXCO] :: obliged; bound (to pay), condemned to pay; sentenced; (abb. d. in inscription); + damnaticius_A : A ; -- [DLXES] :: condemned; sentenced; + damnatio_F_N : N ; -- [EEXCE] :: |damnation; [~ memoriae => erasing all record/images of defeated rivals]; + damnatitius_A : A ; -- [DLXES] :: condemned; sentenced; + damnator_M_N : N ; -- [DXXDS] :: one who condemns; + damnatorius_A : A ; -- [XLXEO] :: condemnatory; that involves/indicates condemnation; + damnatus_A : A ; -- [XLXFO] :: condemned; found guilty; reprobate (L+S); criminal; hateful, wretched; damned; + damnaustra_N : N ; -- [XEXFS] :: Damnaustra!; (word of charm to cure dislocated joint); + damnifico_V2 : V2 ; -- [DEXES] :: injure; fine; + damnificus_A : A ; -- [XXXEO] :: injurious, hurtful, pernicious; that causes loss; + damnigerulus_A : A ; -- [BXXFS] :: injurious, hurtful, pernicious; + damno_V2 : V2 ; -- [XXXAO] :: |discredit; seek/secure condemnation of; find fault; bind/oblige under a will; + damnose_Adv : Adv ; -- [XXXFO] :: ruinously, so as to cause loss; to the injury of (L+S); excessively; + damnosus_A : A ; -- [XXXDX] :: harmful/detrimental/ruinous; prodigal/spendthrift; that causes financial loss; + damnula_F_N : N ; -- [DAXFS] :: little deer (as a small and harmless animal); little fallow deer (L+S); + damnum_N_N : N ; -- [XXXAO] :: financial/property/physical loss/damage/injury; forfeiture/fine; lost possession + dampnaticius_A : A ; -- [DLXES] :: condemned; sentenced; + dampnatio_F_N : N ; -- [XLXCO] :: condemnation (in a court of law); obligation under a will; adverse judgment; + dampnatitius_A : A ; -- [DLXES] :: condemned; sentenced; + dampnatus_A : A ; -- [XLXFO] :: condemned; found guilty; reprobate (L+S); criminal; hateful, wretched; + dampno_V2 : V2 ; -- [DXXDS] :: |discredit; seek/secure condemnation of; find fault; bind/oblige under a will; + dampnum_N_N : N ; -- [XXXCO] :: financial/property/physical loss/damage/injury; forfeiture/fine; lost possession + damula_F_N : N ; -- [FAXEE] :: doe; gazelle; + danista_M_N : N ; -- [XXXEO] :: money-lender; usurer; + danisticus_A : A ; -- [XXXFO] :: of/pertaining to money-lenders or usury; money-lending, usurious (L+S); + dannaustra_N : N ; -- [XEXFS] :: Damnaustra!; (word of charm to cure dislocated joint); + dapalis_A : A ; -- [XEXEO] :: sacrificial; of/pertaining to a sacrificial feast; + dapatice_Adv : Adv ; -- [BXXFS] :: splendidly, in fine/lordly manner/language; superbly; proudly/boastfully; + dapaticus_A : A ; -- [BXXFS] :: splendid/excellent; sumptuous/magnificent/stately; noble/eminent; proud/boastful + daphine_F_N : N ; -- [XAXIS] :: laurel-tree; bay-tree; daughter of river-god Peneus changed into laurel-tree; + daphne_F_N : N ; -- [XAXES] :: laurel-tree; bay-tree; daughter of river-god Peneus changed into laurel-tree; + daphneas_F_N : N ; -- [XXXNO] :: precious stone (unidentified); + daphnias_F_N : N ; -- [XXXNS] :: precious stone (unidentified); + daphnitis_F_N : N ; -- [XAXFO] :: kind of casia/cinnamon resembling bay; + daphnoides_A : A ; -- [XAXNO] :: epithet of spurge laurel Daphne laureola; kind of clematis (or cassia L+S); daphnon_1_N : N ; -- [XAXEO] :: grove of laurels; - daphnon_2_N : N ; - dapifer_M_N : N ; - dapifex_M_N : N ; - dapino_V2 : V2 ; - dapis_F_N : N ; - daps_F_N : N ; - dapsile_Adv : Adv ; - dapsilis_A : A ; - dapsiliter_Adv : Adv ; - dardanarius_M_N : N ; - dartos_A : A ; - dasea_F_N : N ; - dasia_F_N : N ; - dasypus_M_N : N ; - dataim_Adv : Adv ; - datarius_A : A ; - dathiathum_N_N : N ; - datio_F_N : N ; - dativus_A : A ; - dativus_M_N : N ; - dato_V2 : V2 ; - dator_M_N : N ; - datum_N_N : N ; - datus_M_N : N ; - daucon_N_N : N ; - daucos_F_N : N ; - daucum_N_N : N ; - dautium_N_N : N ; - de_Abl_Prep : Prep ; - dea_F_N : N ; - deacinatus_A : A ; - deacino_V2 : V2 ; - deaconus_M_N : N ; - deactio_F_N : N ; - deaduoco_V : V ; - deago_V2 : V2 ; - dealbamentum_N_N : N ; - dealbatio_F_N : N ; - dealbator_M_N : N ; - dealbatus_A : A ; - dealbo_V2 : V2 ; - deambulacrum_N_N : N ; - deambulatio_F_N : N ; - deambulatorium_N_N : N ; - deambulo_V : V ; - deamo_V2 : V2 ; - deargento_V2 : V2 ; - deargumentor_V : V ; - dearmo_V2 : V2 ; - deartuo_V2 : V2 ; - deasceo_V2 : V2 ; - deascio_V2 : V2 ; - deaurator_M_N : N ; - deauratus_A : A ; - deauro_V : V ; - debacchatio_F_N : N ; - debacchor_V : V ; - debattuo_V2 : V2 ; - debatuo_V2 : V2 ; - debellator_M_N : N ; - debellatrix_F_N : N ; - debello_V : V ; - debeo_V : V ; - debibo_V2 : V2 ; - debilis_A : A ; - debilitas_F_N : N ; - debilitatio_F_N : N ; - debiliter_Adv : Adv ; - debilito_V2 : V2 ; - debitio_F_N : N ; - debitor_M_N : N ; - debitrix_F_N : N ; - debitum_N_N : N ; - debitus_A : A ; - deblatero_V : V ; - debrio_V : V ; - debuccino_V2 : V2 ; - debucino_V2 : V2 ; - decachinno_V2 : V2 ; - decachordum_N_N : N ; - decachordus_A : A ; - decacordum_N_N : N ; - decacordus_A : A ; - decacro_V2 : V2 ; - decacuminatio_F_N : N ; - decacumino_V2 : V2 ; - decalautico_V2 : V2 ; - decalcificatio_F_N : N ; - decalco_V2 : V2 ; - decalesco_V : V ; - decalicator_M_N : N ; - decalicatum_N_N : N ; - decalicatus_A : A ; - decalifacio_V2 : V2 ; - decalifio_V : V ; - decalvatio_F_N : N ; - decalvatus_A : A ; - decalvo_V2 : V2 ; - decametrum_N_N : N ; - decanatus_M_N : N ; - decanicum_N_N : N ; - decanium_N_N : N ; - decano_V2 : V2 ; - decantatio_F_N : N ; - decanto_V : V ; - decanto_V2 : V2 ; - decantus_M_N : N ; - decanus_M_N : N ; - decapito_V : V ; - decaprotia_F_N : N ; - decaprotus_M_N : N ; - decargyrum_N_N : N ; - decarmino_V2 : V2 ; - decarno_V2 : V2 ; - decarpo_V2 : V2 ; - decas_F_N : N ; - decastylos_A : A ; - decatressis_M_N : N ; - decaulesco_V : V ; - dececro_V2 : V2 ; - decedo_V : V ; - decello_V2 : V2 ; - decemjugis_A : A ; - decemmestris_A : A ; - decemmodia_F_N : N ; - decemmodius_A : A ; - decempeda_F_N : N ; - decempedalis_A : A ; - decempedator_M_N : N ; - decemplex_A : A ; - decemplicatus_A : A ; - decemplico_V2 : V2 ; - decemprimus_M_N : N ; - decemremis_A : A ; - decemremis_F_N : N ; - decemscalmus_A : A ; - decemvir_M_N : N ; - decemviralis_A : A ; - decemviraliter_Adv : Adv ; - decemviratus_M_N : N ; - decendium_N_N : N ; - decennal_N_N : N ; - decennalis_A : A ; - decennis_A : A ; - decennium_N_N : N ; - decennius_A : A ; - decennovalis_A : A ; - decens_A : A ; - decenter_Adv : Adv ; - decentia_F_N : N ; - deceptio_F_N : N ; - deceptor_M_N : N ; - deceptorius_A : A ; - deceptrix_A : A ; - deceptrix_F_N : N ; - deceptus_M_N : N ; - deceris_A : A ; - deceris_F_N : N ; - decerminum_N_N : N ; - decerno_V2 : V2 ; - decerpo_V2 : V2 ; - decerptor_M_N : N ; - decertatio_F_N : N ; - decertator_M_N : N ; - decerto_V : V ; - decervicatus_A : A ; - decessio_F_N : N ; - decessor_M_N : N ; - decessus_M_N : N ; - decet_V0 : V ; - decetero_Adv : Adv ; - decharmido_V2 : V2 ; - decidens_A : A ; - decidiculum_N_N : N ; - decido_V : V ; - decido_V2 : V2 ; - deciduus_A : A ; - decima_F_N : N ; - decimalis_A : A ; - decimana_F_N : N ; - decimanus_A : A ; - decimanus_M_N : N ; - decimarius_A : A ; - decimatio_F_N : N ; - decimatrus_M_N : N ; - decimetrum_N_N : N ; - decimo_V2 : V2 ; - decimum_Adv : Adv ; - decineratus_A : A ; - decineresco_V : V ; - decipio_V2 : V2 ; - decipula_F_N : N ; - decipulum_N_N : N ; - decircino_V2 : V2 ; - decisio_F_N : N ; - decisivus_A : A ; - decisorius_A : A ; - decitans_A : A ; - declamatio_F_N : N ; - declamatiuncula_F_N : N ; - declamator_M_N : N ; - declamatorie_Adv : Adv ; - declamatorius_A : A ; - declamito_V : V ; - declamo_V : V ; - declaratio_F_N : N ; - declarative_Adv : Adv ; - declarativus_A : A ; - declarator_M_N : N ; - declaratorius_A : A ; - declaro_V2 : V2 ; - declinabilis_A : A ; - declinatio_F_N : N ; - declinatus_M_N : N ; - declinis_A : A ; - declino_V : V ; - declino_V2 : V2 ; - declive_N_N : N ; - declivis_A : A ; - declivitas_F_N : N ; - decliviter_Adv : Adv ; - decludo_V2 : V2 ; - decoco_V2 : V2 ; - decocta_F_N : N ; - decoctio_F_N : N ; - decoctor_M_N : N ; - decoctum_N_N : N ; - decoctus_A : A ; - decoctus_M_N : N ; - decollatio_F_N : N ; - decollo_V : V ; - decollo_V2 : V2 ; - decolo_V : V ; - decolor_A : A ; - decolorate_Adv : Adv ; - decoloratio_F_N : N ; - decoloro_V2 : V2 ; - decompositus_A : A ; - deconcilio_V2 : V2 ; - deconctor_V : V ; - decondo_V2 : V2 ; - decontor_V : V ; - decontra_Adv : Adv ; - decoquo_V2 : V2 ; - decor_A : A ; - decor_M_N : N ; - decoramen_N_N : N ; - decoratio_F_N : N ; - decorativus_A : A ; - decore_Adv : Adv ; - decorio_V2 : V2 ; - decoris_A : A ; - decoriter_Adv : Adv ; - decoro_V : V ; - decorticatio_F_N : N ; - decortico_V2 : V2 ; - decorum_N_N : N ; - decorus_A : A ; - decotes_F_N : N ; - decrementum_N_N : N ; - decremo_V2 : V2 ; - decrepitus_A : A ; - decrescentia_F_N : N ; - decresco_V2 : V2 ; - decretale_N_N : N ; - decretalis_A : A ; - decretalista_M_N : N ; - decretarius_A : A ; - decretio_F_N : N ; - decretista_M_N : N ; - decretorius_A : A ; - decretum_N_N : N ; - decrimino_V2 : V2 ; - decrusto_V2 : V2 ; - decubo_V : V ; - deculco_V2 : V2 ; - deculpatus_A : A ; - deculto_V2 : V2 ; - decuma_F_N : N ; - decumana_F_N : N ; - decumanus_A : A ; - decumanus_M_N : N ; - decumas_A : A ; - decumbo_V : V ; - decumo_V2 : V2 ; - decuncis_M_N : N ; - decunctor_V : V ; - decunx_M_N : N ; - decuplatus_A : A ; - decuplus_A : A ; - decuria_F_N : N ; - decurialis_A : A ; - decurialis_M_N : N ; - decuriat_F_N : N ; - decuriatim_Adv : Adv ; - decuriatio_F_N : N ; - decurio_M_N : N ; - decurio_V2 : V2 ; - decurionalis_A : A ; - decurionatis_A : A ; - decurionatus_A : A ; - decurionus_M_N : N ; - decuris_M_N : N ; - decurro_V2 : V2 ; - decursio_F_N : N ; - decursus_M_N : N ; - decurtatio_F_N : N ; - decurtatus_A : A ; - decurto_V2 : V2 ; - decurvatus_A : A ; - decus_N_N : N ; - decusatim_Adv : Adv ; - decusatio_F_N : N ; - decusis_M_N : N ; - decussatim_Adv : Adv ; - decussatio_F_N : N ; - decussio_F_N : N ; - decussis_M_N : N ; - decussissexis_M_N : N ; - decusso_V2 : V2 ; - decutio_V2 : V2 ; - dedecens_A : A ; - dedecor_A : A ; - dedecoramentum_N_N : N ; - dedecoratio_F_N : N ; - dedecorator_M_N : N ; - dedecoro_V2 : V2 ; - dedecorose_Adv : Adv ; - dedecorosus_A : A ; - dedecorus_A : A ; - dedect_V0 : V ; - dedecus_N_N : N ; - dedicatio_F_N : N ; - dedicative_Adv : Adv ; - dedicativus_A : A ; - dedicator_M_N : N ; - dedicatorius_A : A ; - dedicatus_A : A ; - dedico_V2 : V2 ; - dedignatio_F_N : N ; - dedigno_V2 : V2 ; - dedignor_V : V ; - dediscalus_M_N : N ; - dedisco_V2 : V2 ; - dediticius_A : A ; - dediticius_M_N : N ; - deditio_F_N : N ; - dedititius_A : A ; - dedititius_M_N : N ; - deditus_A : A ; - dedo_V2 : V2 ; - dedoceo_V2 : V2 ; - dedolentia_F_N : N ; - dedoleo_V : V ; - dedolo_V2 : V2 ; - dedomo_V2 : V2 ; - deducibilis_A : A ; - deduco_V2 : V2 ; - deducticius_A : A ; - deductio_F_N : N ; - deductivus_A : A ; - deductor_M_N : N ; - deductorium_N_N : N ; - deductorius_A : A ; - deductus_A : A ; - deductus_M_N : N ; - dedux_A : A ; - deebriatus_A : A ; - deerro_V : V ; - defaecabilis_A : A ; - defaecatio_F_N : N ; - defaecatus_A : A ; - defaeco_V2 : V2 ; - defaenero_V2 : V2 ; - defalta_F_N : N ; - defamatus_A : A ; - defamis_A : A ; - defanatus_A : A ; - defarinatus_A : A ; - defatigatio_F_N : N ; - defatigo_V2 : V2 ; - defatiscor_V : V ; - defecabilis_A : A ; - defecatio_F_N : N ; - defeco_V2 : V2 ; - defectibilis_A : A ; - defectibilitas_F_N : N ; - defectio_F_N : N ; - defectivus_A : A ; - defector_M_N : N ; - defectrix_A : A ; - defectus_A : A ; - defectus_M_N : N ; - defendito_V2 : V2 ; - defendo_V2 : V2 ; - defeneratus_A : A ; - defenero_V2 : V2 ; - defensa_F_N : N ; - defensabilis_A : A ; - defensator_M_N : N ; - defensatrix_F_N : N ; - defensibilis_A : A ; - defensibiliter_Adv : Adv ; - defensio_F_N : N ; - defenso_V2 : V2 ; - defensor_M_N : N ; - defensorius_A : A ; - defenstrix_F_N : N ; - defensum_N_N : N ; - defero_V : V ; - defervefacio_V2 : V2 ; - defervefactus_A : A ; - defervefio_V : V ; - deferveo_V : V ; - defervesco_V : V ; - defessus_A : A ; - defetigatio_F_N : N ; - defetigo_V2 : V2 ; - defetiscentia_F_N : N ; - defetiscor_V : V ; - deficientia_F_N : N ; - deficio_V : V ; - deficio_V2 : V2 ; - defico_V2 : V2 ; - defigo_V2 : V2 ; - defigurstus_A : A ; - defindo_V2 : V2 ; - defingo_V2 : V2 ; - definienter_Adv : Adv ; - definio_V2 : V2 ; - definite_Adv : Adv ; - definitio_F_N : N ; - definitive_Adv : Adv ; - definitivus_A : A ; - definitor_M_N : N ; - definitus_A : A ; - defio_V : V ; - defioculus_M_N : N ; - defixio_F_N : N ; - defixus_A : A ; - deflaglo_V : V ; - deflaglo_V2 : V2 ; - deflagratio_F_N : N ; - deflagro_V : V ; - deflagro_V2 : V2 ; - deflammo_V2 : V2 ; - deflecto_V : V ; - deflecto_V2 : V2 ; - defleo_V : V ; - defleo_V2 : V2 ; - defletio_F_N : N ; - deflexio_F_N : N ; - deflexus_M_N : N ; - deflo_V2 : V2 ; - defloccatus_A : A ; - deflocco_V2 : V2 ; - defloratio_F_N : N ; - defloreo_V : V ; - defloresco_V : V ; - deflorio_V : V ; - defloro_V2 : V2 ; - defluo_V : V ; - defluus_A : A ; - defluvium_N_N : N ; - defluxio_F_N : N ; - defluxus_M_N : N ; - defodio_V2 : V2 ; - defoedo_V2 : V2 ; - deforcians_A : A ; - deforcio_V : V ; - deforis_Adv : Adv ; - deformatio_F_N : N ; - deforme_N_N : N ; - deformis_A : A ; - deformitas_F_N : N ; - deformiter_Adv : Adv ; - deformo_V2 : V2 ; - deformus_A : A ; - defossum_N_N : N ; - defossus_M_N : N ; - defraudatio_F_N : N ; - defraudator_M_N : N ; - defraudatrix_F_N : N ; - defraudo_V2 : V2 ; - defremo_V : V ; - defrenatus_A : A ; - defretum_N_N : N ; - defricate_Adv : Adv ; - defricatio_F_N : N ; - defrico_V2 : V2 ; - defrigesco_V : V ; - defringo_V2 : V2 ; - defrudo_V2 : V2 ; - defrugo_V2 : V2 ; - defruor_V : V ; - defrusto_V2 : V2 ; - defrustror_V : V ; - defrutarium_N_N : N ; - defrutarius_A : A ; - defruto_V2 : V2 ; - defrutum_N_N : N ; - defuga_M_N : N ; - defugio_V : V ; - defugio_V2 : V2 ; - defugo_V2 : V2 ; - defulguro_V2 : V2 ; - defuncta_F_N : N ; - defunctio_F_N : N ; - defunctorie_Adv : Adv ; - defunctorius_A : A ; - defunctum_N_N : N ; - defunctus_A : A ; - defunctus_C_N : N ; - defunctus_M_N : N ; - defundo_V2 : V2 ; - defungor_V : V ; - defusio_F_N : N ; - defutuo_V2 : V2 ; - defututus_A : A ; - degener_A : A ; - degeneratio_F_N : N ; - degenero_V : V ; - degenero_V2 : V2 ; - degero_V2 : V2 ; - deglabro_V2 : V2 ; - deglubo_V2 : V2 ; - deglutino_V2 : V2 ; - deglutio_V2 : V2 ; - degluttio_V2 : V2 ; - dego_V : V ; - dego_V2 : V2 ; - degradatio_F_N : N ; - degrado_V2 : V2 ; - degrandinat_V0 : V ; - degrassor_V : V ; - degravo_V2 : V2 ; - degredior_V : V ; - degrumo_V2 : V2 ; - degrumor_V : V ; - degrunnio_V : V ; - degulator_M_N : N ; - degulo_V2 : V2 ; - deguno_V2 : V2 ; - degustatio_F_N : N ; - degusto_V2 : V2 ; - dehabeo_V2 : V2 ; - dehaurio_V2 : V2 ; - dehibeo_V : V ; - dehinc_Adv : Adv ; - dehisco_V : V ; - dehonestamentum_N_N : N ; - dehonestatio_F_N : N ; - dehonesto_V2 : V2 ; - dehonestus_A : A ; - dehonoro_V2 : V2 ; - dehorio_V2 : V2 ; - dehortatio_F_N : N ; - dehortativus_A : A ; - dehortator_M_N : N ; - dehortatorius_A : A ; - dehortor_V : V ; - deicida_M_N : N ; - deicio_V2 : V2 ; - deifer_A : A ; - deiferus_A : A ; - deifico_V2 : V2 ; - deificus_A : A ; - deiformis_A : A ; - dein_Adv : Adv ; - deinceps_A : A ; - deinceps_Adv : Adv ; - deinde_Adv : Adv ; - deinsuper_Adv : Adv ; - deintegro_V2 : V2 ; - deintus_Adv : Adv ; - deisatus_A : A ; - deitas_F_N : N ; - dejecte_Adv : Adv ; - dejectio_F_N : N ; - dejectiuncula_F_N : N ; - dejecto_V2 : V2 ; - dejector_M_N : N ; - dejectus_A : A ; - dejectus_M_N : N ; - dejeratio_F_N : N ; - dejero_V : V ; - dejicio_V2 : V2 ; - dejudico_V2 : V2 ; - dejugis_A : A ; - dejugo_V2 : V2 ; - dejunctus_A : A ; - dejungo_V2 : V2 ; - dejuratio_F_N : N ; - dejurium_N_N : N ; - dejuro_V : V ; - dejuvo_V : V ; - delabor_V : V ; - delaboro_V : V ; - delacero_V2 : V2 ; - delachrimatorius_A : A ; - delacrimatio_F_N : N ; - delacrimatorius_A : A ; - delacrimo_V : V ; - delacrumo_V : V ; - delaevo_V2 : V2 ; - delambo_V2 : V2 ; - delamentor_V : V ; - delapido_V2 : V2 ; - delapsus_M_N : N ; - delargior_V : V ; - delassabilis_A : A ; - delasso_V2 : V2 ; - delatio_F_N : N ; - delator_M_N : N ; - delatorius_A : A ; - delatura_F_N : N ; - delavo_V2 : V2 ; - delebilis_A : A ; - delectabilis_A : A ; - delectabiliter_Adv : Adv ; - delectamentum_N_N : N ; - delectatio_F_N : N ; - delectatiuncula_F_N : N ; - delectio_F_N : N ; - delecto_V2 : V2 ; - delector_M_N : N ; - delector_V : V ; - delectus_A : A ; - delectus_M_N : N ; - delegatio_F_N : N ; - delegator_M_N : N ; - delegatus_M_N : N ; - delego_V2 : V2 ; - delenificus_A : A ; - delenimentum_N_N : N ; - delenio_V2 : V2 ; - delenitor_M_N : N ; - delenitorius_A : A ; - deleo_V2 : V2 ; - deleramentum_N_N : N ; - deleritas_F_N : N ; - delero_V : V ; - deleth_N : N ; - deleticius_A : A ; - deletilis_A : A ; - deletio_F_N : N ; - deletitius_A : A ; - deletrix_A : A ; - deletrix_F_N : N ; - deletus_M_N : N ; - delevo_V2 : V2 ; - delibamentum_N_N : N ; - delibatio_F_N : N ; - deliberabundus_A : A ; - deliberamentum_N_N : N ; - deliberatio_F_N : N ; - deliberativus_A : A ; - deliberator_M_N : N ; - deliberatus_A : A ; - delibero_V : V ; - delibo_V : V ; - delibro_V2 : V2 ; - delibuo_V2 : V2 ; - delibutus_A : A ; - delicata_F_N : N ; - delicate_Adv : Adv ; - delicatus_A : A ; - delicatus_M_N : N ; - delicia_F_N : N ; - deliciaris_A : A ; - deliciatus_A : A ; - delicio_V2 : V2 ; - deliciola_F_N : N ; - deliciolum_N_N : N ; - deliciosus_A : A ; - delicium_N_N : N ; - delicius_M_N : N ; - delico_V2 : V2 ; - delictor_M_N : N ; - delictum_N_N : N ; - deliculus_A : A ; - delicus_A : A ; - delicuus_A : A ; - deligo_V2 : V2 ; - delimator_M_N : N ; - delimitatio_F_N : N ; - delimito_V2 : V2 ; - delimitus_A : A ; - delimo_V2 : V2 ; - delineatio_F_N : N ; - delineo_V2 : V2 ; - delingo_V2 : V2 ; - delinguo_V2 : V2 ; - delinificus_A : A ; - delinimentum_N_N : N ; - delinio_V2 : V2 ; - delinitor_M_N : N ; - delinitorius_A : A ; - delino_V2 : V2 ; - delinquentia_F_N : N ; - delinquio_F_N : N ; - delinquo_V2 : V2 ; - deliquatitudo_F_N : N ; - deliquesco_V : V ; - deliquia_F_N : N ; - deliquio_F_N : N ; - deliquium_N_N : N ; - deliquo_V2 : V2 ; - deliquus_A : A ; - deliramentum_N_N : N ; - deliratio_F_N : N ; - deliritas_F_N : N ; - delirium_N_N : N ; - deliro_V : V ; - delirus_A : A ; - delitesco_V : V ; - delitigo_V : V ; - delitisco_V : V ; - delito_V : V ; - delitor_M_N : N ; - delocatio_F_N : N ; - delonge_Adv : Adv ; - delotus_A : A ; - delphin_M_N : N ; - delphinus_M_N : N ; + daphnon_2_N : N ; -- [XAXEO] :: grove of laurels; + dapifer_M_N : N ; -- [XXXIS] :: servant who waited at tables; + dapifex_M_N : N ; -- [XXXIS] :: servant who prepared food; + dapino_V2 : V2 ; -- [XXXFO] :: provide for; meet the cost of; serve up (as food) (L+S); + dapis_F_N : N ; -- [DXXES] :: sacrificial feast/meal; feast, banquet; food composing it; food/meal of animals; + daps_F_N : N ; -- [XXXBO] :: sacrificial feast/meal; feast, banquet; food composing it; food/meal of animals; + dapsile_Adv : Adv ; -- [XXXEO] :: plentifully, copiously, abundantly; sumptuously, bountifully (L+S); + dapsilis_A : A ; -- [XXXCO] :: sumptuous, plentiful, abundant; richly provided with everything (L+S); + dapsiliter_Adv : Adv ; -- [XXXFO] :: plentifully, copiously, abundantly; sumptuously, bountifully (L+S); + dardanarius_M_N : N ; -- [XXXEO] :: speculator; (in grain); forestaller (buys up goods before they reach market); + dartos_A : A ; -- [XBXFO] :: name of membrane enclosing the testicles; + dasea_F_N : N ; -- [DBXES] :: rough-breathing; + dasia_F_N : N ; -- [DBXES] :: rough-breathing; + dasypus_M_N : N ; -- [XAXNO] :: kind of hare; sort of rabbit (L+S); + dataim_Adv : Adv ; -- [XXXDO] :: by giving in turn/reciprocally/hand-to-hand/from one to another; (sex metaphor); + datarius_A : A ; -- [XXXEO] :: concerned with giving away; that is given away; be given away (L+S); + dathiathum_N_N : N ; -- [XXXNO] :: kind of incense; (reddish L+S); + datio_F_N : N ; -- [XXXCO] :: giving/assigning/allotting/handing over (act), transfer; donation/gift; payment; + dativus_A : A ; -- [XLXCO] :: assigned (guardian); pertaining to giving; given, appointed (L+S); + dativus_M_N : N ; -- [XGXDO] :: |dative; (grammatical case); + dato_V2 : V2 ; -- [XXXDO] :: be in habit of giving; make a practice of giving; give away, administer (L+S); + dator_M_N : N ; -- [XXXDO] :: giver, donor, patron; slave who hands the ball to the player (L+S); + datum_N_N : N ; -- [XXXCO] :: present/gift; that which is given; debit; [~ dandis => w/all supplied]; + datus_M_N : N ; -- [BXXFO] :: act of giving; + daucon_N_N : N ; -- [XAXES] :: name of various plants; (prob. Athamanta cretensis); like parsnip/carrot (L+S); + daucos_F_N : N ; -- [XAXEO] :: name of various plants; (prob. Athamanta cretensis); like parsnip/carrot (L+S); + daucum_N_N : N ; -- [XAXEO] :: name of various plants; (prob. Athamanta cretensis); like parsnip/carrot (L+S); + dautium_N_N : N ; -- [ALXEO] :: entertainment provided for foreign guests of the state of Rome; state banquet; + de_Abl_Prep : Prep ; -- [XXXAO] :: down/away from, from, off; about, of, concerning; according to; with regard to; + dea_F_N : N ; -- [XEXCO] :: goddess; + deacinatus_A : A ; -- [BAXFS] :: cleared from the grapes; (skins OLD); + deacino_V2 : V2 ; -- [XXXFO] :: cleanse of grape-skins/etc.; + deaconus_M_N : N ; -- [FEXDM] :: deacon; cleric of minor orders (first/highest level); + deactio_F_N : N ; -- [XXXFO] :: conclusion?; finishing (L+S); + deaduoco_V : V ; -- [FLXFJ] :: dis-avow; + deago_V2 : V2 ; -- [XXXFO] :: remove, take off; + dealbamentum_N_N : N ; -- [XXXIO] :: whitewash; + dealbatio_F_N : N ; -- [DXXFS] :: whitewashing; + dealbator_M_N : N ; -- [XXXIO] :: whitewasher; plasterer (L+S); pargeter; one who whitens over; + dealbatus_A : A ; -- [DXXDS] :: whitewashed; plastered; + dealbo_V2 : V2 ; -- [XXXCO] :: whitewash; whiten (over); plaster, parget (L+S); purify, cleanse (eccl.); + deambulacrum_N_N : N ; -- [DXXES] :: promenade, walk, place to walk in; + deambulatio_F_N : N ; -- [XXXEO] :: walk; action of walking; place for walking; walking abroad, promenading (L+S); + deambulatorium_N_N : N ; -- [DXXFS] :: gallery for walking; + deambulo_V : V ; -- [XXXCO] :: take a walk, go for a walk; walk abroad (L+S); walk much; promenade; + deamo_V2 : V2 ; -- [XXXCO] :: love dearly; be passionately/desperately in love with; be delighted with/obliged + deargento_V2 : V2 ; -- [XXXFO] :: take/deprive/strip of silver/money; (late) silver/plate over (L+S); + deargumentor_V : V ; -- [DLXFS] :: decide finally; + dearmo_V2 : V2 ; -- [DXXES] :: disarm; deprive of power; blunt; + deartuo_V2 : V2 ; -- [BXXFO] :: dismember; rend limb from limb (L+S); ruin; + deasceo_V2 : V2 ; -- [XXXEO] :: cut/shape smoothly; efface by cutting, rub out; get the better of; hew/cut w/ax; + deascio_V2 : V2 ; -- [XXXEO] :: cut/shape smoothly; efface by cutting, rub out; get the better of; hew/cut w/ax; + deaurator_M_N : N ; -- [DXXFS] :: gilder; (one who covers with gold leaf of plate); + deauratus_A : A ; -- [DXXFE] :: gilded; (covered with gold leaf/plate); + deauro_V : V ; -- [XXXCS] :: gild, gild over; (cover with gold leaf or plate); + debacchatio_F_N : N ; -- [DXXFS] :: fury; passionate raving; + debacchor_V : V ; -- [XXXEO] :: rage; rave; (like Bacchantes); revel wildly (L+S); rage without control; + debattuo_V2 : V2 ; -- [XXXFO] :: belabor/batter/beat, thump hard; bang; (of sexual intercourse, usu. adulterous); + debatuo_V2 : V2 ; -- [XXXFS] :: belabor/batter/beat, thump hard; bang; (of sexual intercourse, usu. adulterous); + debellator_M_N : N ; -- [XWXEO] :: conqueror; subduer; + debellatrix_F_N : N ; -- [DXXES] :: conqueress; she who conquers; + debello_V : V ; -- [XWXCO] :: fight out/to a finish; bring a battle/war to an end; vanquish, subdue; + debeo_V : V ; -- [XXXAO] :: owe; be indebted/responsible for/obliged/bound/destined; ought, must, should; + debibo_V2 : V2 ; -- [DXXFS] :: drink of; + debilis_A : A ; -- [XXXBO] :: weak/feeble/frail; crippled/disabled; wanting/deprived (competence); ineffective + debilitas_F_N : N ; -- [XXXCO] :: weakness, infirmity, debility, lameness; feebleness (intellectual/moral); + debilitatio_F_N : N ; -- [XXXEO] :: mutilation; act/process of disabling/maiming/laming; enfeeblement (of the mind); + debiliter_Adv : Adv ; -- [XXXFO] :: impotently; with weakness, feebly; lamely, infirmly (L+S); + debilito_V2 : V2 ; -- [XXXCO] :: weaken/disable/incapacitate/impair/maim/lame/cripple; deprive of power (to act); + debitio_F_N : N ; -- [XXXEO] :: indebtedness; state/fact of owing; the debt (L+S); + debitor_M_N : N ; -- [XXXCO] :: debtor, one who owes; one under obligation to pay; one indebted (for service); + debitrix_F_N : N ; -- [XXXEO] :: debtor (female); one under obligation to pay; one indebted (for service); + debitum_N_N : N ; -- [XXXCO] :: debt/what is owed; (his) due; duty; that due/ought to occur; [w/voli => by vow]; + debitus_A : A ; -- [XXXDX] :: due, owed; owing; appropriate, becoming; doomed, destined, fated; + deblatero_V : V ; -- [XXXDO] :: babble, utter in a foolish manner; blab out (L+S); + debrio_V : V ; -- [FXXEM] :: intoxicate; + debuccino_V2 : V2 ; -- [DEXFS] :: trumpet forth; + debucino_V2 : V2 ; -- [DEXFS] :: trumpet forth; + decachinno_V2 : V2 ; -- [DEXFS] :: deride, laugh to scorn; + decachordum_N_N : N ; -- [DDXFS] :: musical instrument of ten strings; + decachordus_A : A ; -- [DDXFS] :: ten-stringed; + decacordum_N_N : N ; -- [DDXFS] :: musical instrument of ten strings; + decacordus_A : A ; -- [DDXFS] :: ten-stringed; + decacro_V2 : V2 ; -- [XXXEO] :: consecrate, dedicate; assign/devote (to purpose/function); deify (person) (L+S); + decacuminatio_F_N : N ; -- [XAXNO] :: topping of tree; removal by lopping of the crown of a tree; + decacumino_V2 : V2 ; -- [XAXEO] :: top a tree; remove the crown of a tree by lopping; + decalautico_V2 : V2 ; -- [XXXFO] :: remove/relieve/deprive of a calautica (shoulder-length woman's headdress/hood); + decalcificatio_F_N : N ; -- [GXXEK] :: decalcification; + decalco_V2 : V2 ; -- [DXXFS] :: plaster with lime; coat thoroughly with whitewash; + decalesco_V : V ; -- [DXXFS] :: become warm; + decalicator_M_N : N ; -- [XXXFS] :: hard drinker; (who is plastered/stiff?); + decalicatum_N_N : N ; -- [XXXFO] :: thing plastered/coated thoroughly with whitewash/lime; + decalicatus_A : A ; -- [XXXFO] :: coated thoroughly with whitewash; plastered with lime; + decalifacio_V2 : V2 ; -- [DXXFS] :: warm thoroughly; warm through-and-through; + decalifio_V : V ; -- [DXXFS] :: be/become warmed thoroughly/through-and-through; (decalifacio PASS); + decalvatio_F_N : N ; -- [DXXFS] :: making bald; shaving/cutting/removing the hair; + decalvatus_A : A ; -- [DXXFS] :: shorn; (of hair); (Sampson); + decalvo_V2 : V2 ; -- [DXXDS] :: make bald, remove the hair; cut/shear off the hair; + decametrum_N_N : N ; -- [GXXEK] :: decameter/decametre; linear measure of ten meters; + decanatus_M_N : N ; -- [GEXEK] :: function of dean; + decanicum_N_N : N ; -- [DEXFS] :: building belonging to the church; + decanium_N_N : N ; -- [XSXFS] :: divisions/thirds (pl.) of the Zodiac; (for astrology); + decano_V2 : V2 ; -- [DEXFS] :: celebrate by singing; + decantatio_F_N : N ; -- [DXXFS] :: talkativeness; + decanto_V : V ; -- [GXXEK] :: decant; + decanto_V2 : V2 ; -- [XXXBO] :: chant, recite singing; reel off, repeat often/harp on; prattle; bewitch/enchant; + decantus_M_N : N ; -- [FXXFE] :: deanery; deanship, office of dean; + decanus_M_N : N ; -- [DLXCS] :: dean; chief of ten, one set over ten persons/soldiers/monks; imperial officer; + decapito_V : V ; -- [FXXEM] :: decapitate; behead; + decaprotia_F_N : N ; -- [DLXFS] :: office/dignity of the decaproti; (ten chief men/magistrates in municipia); + decaprotus_M_N : N ; -- [XLXFO] :: municipal finance committee (pl.); ten chief men/magistrates in municipia; + decargyrum_N_N : N ; -- [DLHFS] :: large silver coin; + decarmino_V2 : V2 ; -- [DPXFS] :: make prose of verse; disarrange the order of words (in a verse); + decarno_V2 : V2 ; -- [DXXDS] :: take off the flesh; + decarpo_V2 : V2 ; -- [XXXEO] :: pluck, pull/tear/snip off, pick; cull; reap/procure/gather; catch/snatch; remove + decas_F_N : N ; -- [DSXES] :: decade; + decastylos_A : A ; -- [XTXFO] :: decastyle, having ten columns; + decatressis_M_N : N ; -- [XXXIO] :: members (pl.) of collegium at Puteoli which held reunions on 13th of the month; + decaulesco_V : V ; -- [XAXNO] :: form a stem; run to stalk; + dececro_V2 : V2 ; -- [XXXEO] :: consecrate, dedicate; assign/devote (to purpose/function); deify (person) (L+S); + decedo_V : V ; -- [XXXAO] :: |stray/digress; pass away/depart life, die; subside/cease (feelings); disappear; + decello_V2 : V2 ; -- [DXXES] :: deviate, turn aside; + decemjugis_A : A ; -- [XAXEO] :: ten-horse (chariot/wagon); ten-yoked; equipped for yoking ten draught animals; + decemmestris_A : A ; -- [DXXFS] :: of ten months; + decemmodia_F_N : N ; -- [XSXFO] :: basket holding ten modii; (total 2.5 bushels); + decemmodius_A : A ; -- [XSXFS] :: containing ten modii; (total 2.5 bushels); + decempeda_F_N : N ; -- [XAXCO] :: ten-foot measuring rod; a ten foot pole; length of ten feet; + decempedalis_A : A ; -- [DSXFS] :: ten feet long; + decempedator_M_N : N ; -- [XAXFO] :: land-surveyor/measurer; (uses a decempeda/ten-foot measuring pole); + decemplex_A : A ; -- [XSXEO] :: ten-fold; + decemplicatus_A : A ; -- [XSXES] :: ten times over; multiplied by ten; + decemplico_V2 : V2 ; -- [XSXFO] :: multiply by ten; + decemprimus_M_N : N ; -- [XLXDO] :: one of 10 seniors of the senate/priesthood in municipium/colonia; abb. xprimus; + decemremis_A : A ; -- [XWXNS] :: ten-oared; having ten banks of oars?; + decemremis_F_N : N ; -- [XWXNO] :: large warship; (precise arrangement of oars not determined); ten-oared (L+S); + decemscalmus_A : A ; -- [XWXFO] :: ten-oared; having ten rows/banks of oars; + decemvir_M_N : N ; -- [XLXCO] :: decemvir, one of ten men; (commission of ten, board with consular powers); + decemviralis_A : A ; -- [XLXCO] :: of/belonging to a decemvirate (office of decemvir); abb. xviralis; + decemviraliter_Adv : Adv ; -- [DLXFS] :: in the manner of the decemviri; + decemviratus_M_N : N ; -- [XXXDO] :: office of decemvir; abb. xviratus; + decendium_N_N : N ; -- [XXXFE] :: period of ten days; + decennal_N_N : N ; -- [XLXEO] :: festival (pl.); (originally every 10th anniversary of an emperor's accession); + decennalis_A : A ; -- [XXXEO] :: recurring every tenth year; + decennis_A : A ; -- [XXXDO] :: of ten years; lasting ten years; ten years old; + decennium_N_N : N ; -- [DLXES] :: period of ten years; festival (pl.) (every 10th anniversary of emperor); + decennius_A : A ; -- [DXXFE] :: of ten years (pl.); + decennovalis_A : A ; -- [DXXFS] :: of nineteen years; + decens_A : A ; -- [XXXBO] :: appropriate, decent/seemly/becoming, in approved standard; pleasing/graceful; + decenter_Adv : Adv ; -- [XXXCO] :: appropriately/decently, with good taste; becomingly, pleasingly, gracefully; + decentia_F_N : N ; -- [XXXFO] :: propriety, decency; comeliness, becomingness; + deceptio_F_N : N ; -- [DXXDS] :: deception, deceit; deceitfulness; + deceptor_M_N : N ; -- [XXXEO] :: deceiver, betrayer (of); one who plays false (to); + deceptorius_A : A ; -- [XXXFO] :: deceptive; deceitful; + deceptrix_A : A ; -- [XXXFO] :: that betrays or deceives; (feminine adjective); + deceptrix_F_N : N ; -- [DXXFS] :: she who betrays or deceives; (female); + deceptus_M_N : N ; -- [DXXES] :: deception; + deceris_A : A ; -- [XWXFO] :: having ten banks of oars or with oars/rowers grouped in tens in some way; + deceris_F_N : N ; -- [XWXES] :: ship having ten banks of oars or with oars/rowers grouped in tens in some way; + decerminum_N_N : N ; -- [XAXEO] :: trimmings (pl.), prunings; leaves and boughs plucked off (L+S); beggars, refuse; + decerno_V2 : V2 ; -- [XXXAO] :: decide/settle/determine/resolve; decree/declare/ordain; judge; vote for/contend; + decerpo_V2 : V2 ; -- [XXXBO] :: pluck, pull/tear/snip off, pick; cull; reap/procure/gather; catch/snatch; remove + decerptor_M_N : N ; -- [XXXFS] :: one who plucks/excerpts/extracts/quotes; + decertatio_F_N : N ; -- [XXXFO] :: action of fighting out an issue; decision of a dispute (L+S); decisive conflict; + decertator_M_N : N ; -- [DXXFS] :: champion; he who goes through a decisive contest; + decerto_V : V ; -- [XXXBO] :: fight (issue out/to the finish); contend/dispute/argue; struggle/compete over; + decervicatus_A : A ; -- [DXXFS] :: beheaded, decapitated, decollated; + decessio_F_N : N ; -- [DGXFS] :: |transition/transferring (of words from primary to derivative meaning); + decessor_M_N : N ; -- [XXXEO] :: magistrate retiring from his post (in the Roman provincial administration); + decessus_M_N : N ; -- [XXXCO] :: departure; retirement (provincial magistrate); passing/death; decline/fall/ebb; + decet_V0 : V ; -- [XXXBO] :: it is fitting/right/seemly/suitable/proper; it ought; become/adorn/grace; + decetero_Adv : Adv ; -- [FXXFM] :: henceforth; + decharmido_V2 : V2 ; -- [BDXFS] :: de-Charmidize, destroy identity as Charmides (character in Plautus' Trinummus); + decidens_A : A ; -- [XXXBE] :: fading; falling; + decidiculum_N_N : N ; -- [HTXEK] :: parachute; + decido_V : V ; -- [XXXBO] :: fall/drop/hang/flow down/off/over; sink/drop; fail, fall in ruin; end up; die; + decido_V2 : V2 ; -- [XXXBO] :: |make explicit; put an end to, bring to conclusion, settle/decide/agree (on); + deciduus_A : A ; -- [XXXCO] :: falling (down/off); hanging down; tending to be dropped, cast; deciduous (L+S); + decima_F_N : N ; -- [XLXDO] :: tithe; tenth part; (offering/tax/largesse); tax/right to collect 10%; 10th hour; + decimalis_A : A ; -- [GXXEK] :: decimal; + decimana_F_N : N ; -- [XXXFS] :: female/wife of tax-farmer/who buys right to tithe; + decimanus_A : A ; -- [XWXCO] :: of the tenth (legion); huge/outsize; of tithe; [w/porta => rear gate of camp]; + decimanus_M_N : N ; -- [XWICO] :: man of tenth legion; tax-farmer/who buys right to tithe; line bounding 10 actus; + decimarius_A : A ; -- [DLXES] :: pertaining to tithes; paying tithes; subject to tithes; + decimatio_F_N : N ; -- [DLXDS] :: decimation, taking every tenth man for punishment; taking a tenth; tithing; + decimatrus_M_N : N ; -- [ALIFS] :: holiday of the Falisci (of Etruscan culture) ten days after the ides; + decimetrum_N_N : N ; -- [GXXEK] :: decimeter/decimetre; tenth of a meter; + decimo_V2 : V2 ; -- [XWXDO] :: choose by lot every tenth man (for punishment); make tithe offering (to a god); + decimum_Adv : Adv ; -- [XXXEO] :: for the tenth time; + decineratus_A : A ; -- [DXXFS] :: wholly/completely reduced/turned to ashes; + decineresco_V : V ; -- [DXXFS] :: be wholly/completely reduced to ashes; + decipio_V2 : V2 ; -- [XXXBO] :: cheat/deceive/mislead/dupe/trap; elude/escape notice; disappoint/frustrate/foil; + decipula_F_N : N ; -- [DXXDO] :: trap, snare; device serving to deceive; + decipulum_N_N : N ; -- [XXXDO] :: trap, snare; device serving to deceive; + decircino_V2 : V2 ; -- [XXXEO] :: round off, make rounded/circular; + decisio_F_N : N ; -- [XXXDO] :: settlement, agreement, decision; curtailment, diminishment; + decisivus_A : A ; -- [EXXFE] :: decisive; deciding; + decisorius_A : A ; -- [EXXFE] :: decisive; deciding; + decitans_A : A ; -- [DXXFS] :: causing to glide down; + declamatio_F_N : N ; -- [XGXDX] :: delivering set speech; declamation; school exercise speech; using rhetoric; + declamatiuncula_F_N : N ; -- [XGXFO] :: short argument as oratorical exercise; subject for declamation(L+S); bawling; + declamator_M_N : N ; -- [XGXCO] :: one who composes/delivers speeches as oratorical exercise; rhetorical declaimer; + declamatorie_Adv : Adv ; -- [DGXFS] :: in a rhetorical manner; + declamatorius_A : A ; -- [XGXDO] :: rhetorical, of declamation/exercise of speaking; of/belonging to a rhetorician; + declamito_V : V ; -- [XGXCO] :: declaim (oratoric exercise) continually/habitually; practice rhetoric; bluster; + declamo_V : V ; -- [XGXCO] :: declaim, make speeches (usu. as an oratorical exercise); bluster/bawl (L+S); + declaratio_F_N : N ; -- [XXXEO] :: revelation, disclosure, announcement; act of making known/clear/evident; + declarative_Adv : Adv ; -- [DXXFS] :: by way of explanation; + declarativus_A : A ; -- [DXXES] :: explanatory, serving for explanation; + declarator_M_N : N ; -- [XXXFO] :: announcer; one who declares/makes known (L+S); + declaratorius_A : A ; -- [XXXFE] :: declaratory; + declaro_V2 : V2 ; -- [XXXBO] :: declare/announce/make known; indicate, reveal, testify, show/prove; mean (word); + declinabilis_A : A ; -- [DGXFS] :: declinable, that can be (grammatically) inflected; + declinatio_F_N : N ; -- [XGXBO] :: |turning aside, swerve; avoidance; divergence/variation/digression; inflection; + declinatus_M_N : N ; -- [XGXEO] :: inflection, manner of inflecting/declining/modifying words; inflected form; + declinis_A : A ; -- [XXXCO] :: moving/bending/drooping down; declining/ebbing; turning/bending; skewed/averted; + declino_V : V ; -- [XXXAO] :: |avoid/stray; vary/be different; bend/sink down, subside/decline; lower/descend; + declino_V2 : V2 ; -- [DGXCO] :: decline/conjugate/inflect (in the same manner/like); change word form, modify; + declive_N_N : N ; -- [XXXCO] :: slope, declivity; surface sloping downwards; [per decline => downwards]; + declivis_A : A ; -- [XXXCO] :: sloping, descending, sloping downwards; shelving; tending down; falling (stars); + declivitas_F_N : N ; -- [XXXFO] :: declivity, slope, descent; tendency to slope down; falling gradient; + decliviter_Adv : Adv ; -- [DXXFS] :: in a sloping manner; + decludo_V2 : V2 ; -- [XXXFO] :: unclose; + decoco_V2 : V2 ; -- [XXXBO] :: |ruin; (cause to) waste away; shrivel; squander; suffer loss, become bankrupt; + decocta_F_N : N ; -- [XXXEO] :: drink made by raising water to boiling then plunging into snow to cool; + decoctio_F_N : N ; -- [DXXCS] :: decoction; boiling down; mixture; + decoctor_M_N : N ; -- [XLXDO] :: insolvent person, defaulting debtor; ruined spendthrift (L+S); + decoctum_N_N : N ; -- [XBXNO] :: decoction, potion made by boiling; (usu. medicine); medicinal drink (L+S); + decoctus_A : A ; -- [XXXEO] :: over-ripe (fruit); luscious (literary/rhetoric style); mature/ripe (good sense); + decoctus_M_N : N ; -- [XXXNO] :: process of boiling (in); seething (L+S); + decollatio_F_N : N ; -- [DXXFS] :: beheading, decapitation, decollation; + decollo_V : V ; -- [XXXEO] :: trickle/drain away/from/through; drain (of); come to naught, fail (L+S); + decollo_V2 : V2 ; -- [XXXCO] :: behead, cause to be beheaded; remove from the neck (according to Nonius); rob; + decolo_V : V ; -- [XXXDO] :: trickle/drain away/from/through; drain (of); come to naught, fail (L+S); + decolor_A : A ; -- [XXXCO] :: discolored; not normal color; (dark people); stained/faded; degenerate/depraved; + decolorate_Adv : Adv ; -- [DXXES] :: degenerately; + decoloratio_F_N : N ; -- [XXXFO] :: discoloration; discoloring; change of color; + decoloro_V2 : V2 ; -- [XXXCO] :: discolor/stain/deface, alter normal color of; disgrace, bring shame on; corrupt; + decompositus_A : A ; -- [DGXFS] :: formed/derived from a compound word; + deconcilio_V2 : V2 ; -- [XXXFO] :: extricate from trouble; deprive of, take away (L+S); + deconctor_V : V ; -- [XXXEO] :: hesitate, delay (over), take one's time; + decondo_V2 : V2 ; -- [XXXFO] :: stow away; hide deep down; secrete (by burying) (L+S); + decontor_V : V ; -- [DXXFS] :: hesitate; be at a loss; + decontra_Adv : Adv ; -- [XXXFO] :: facing; from a position opposite; + decoquo_V2 : V2 ; -- [XXXBO] :: |ruin; (cause to) waste away; shrivel; squander; suffer loss, become bankrupt; + decor_A : A ; -- [XXXEO] :: beautiful; pleasing to the senses; + decor_M_N : N ; -- [XXXBO] :: beauty/good looks, decent appearance; ornament; grace/elegance/charm; propriety; + decoramen_N_N : N ; -- [XXXFO] :: adornment; ornament, decoration (L+S); + decoratio_F_N : N ; -- [XXXEE] :: decoration; adornment; + decorativus_A : A ; -- [GXXEK] :: decorative; + decore_Adv : Adv ; -- [XXXCO] :: beautifully, in a pleasing manner; properly/suitably, in correct/seemly manner; + decorio_V2 : V2 ; -- [DXXES] :: skin, peel; deprive of skin or outer coating; + decoris_A : A ; -- [XXXEO] :: beautiful; pleasing to the senses; + decoriter_Adv : Adv ; -- [XXXFO] :: gracefully, in a pleasing manner; + decoro_V : V ; -- [XXXBO] :: adorn/grace, embellish/add beauty to; glorify, honor/add honor to; do credit to; + decorticatio_F_N : N ; -- [XXXNO] :: act/process of stripping off bark; peeling (L+S); + decortico_V2 : V2 ; -- [XAXNO] :: strip away the bark/rind; peel; scrape off (outer skin); + decorum_N_N : N ; -- [XXXCS] :: decorum, that which is suitable/seemly, propriety; + decorus_A : A ; -- [XXXBO] :: |honorable, noble; glorious, decorated; decorous, proper, decent, fitting; + decotes_F_N : N ; -- [XXXFO] :: worn/threadbare toga; + decrementum_N_N : N ; -- [XXXFO] :: shrinkage; diminution; decrease; + decremo_V2 : V2 ; -- [DXXFS] :: burn up; consume by fire; + decrepitus_A : A ; -- [XXXCO] :: worn out (with age), feeble, decrepit; infirm; very old (L+S); (noiseless); + decrescentia_F_N : N ; -- [XXXFO] :: decrease; waning (L+S); + decresco_V2 : V2 ; -- [XXXBO] :: |lose vigor/intensity, decline/weaken/fade influence/reputation; grow shorter; + decretale_N_N : N ; -- [FEXFE] :: decretals (pl.); (letter w/papal ruling/decision/response); + decretalis_A : A ; -- [XLXFO] :: of decree; depending for validity on ruling of magistrate/judge's decision; + decretalista_M_N : N ; -- [FEXFE] :: decretalist, scholar of decretals (letter w/papal ruling/decision/response); + decretarius_A : A ; -- [XLXIO] :: appointed by a resolution of the civic authority; + decretio_F_N : N ; -- [DLXFS] :: decision, decree; + decretista_M_N : N ; -- [FEXFE] :: decretist, scholar of legal tradition of Decretum of Gratian; + decretorius_A : A ; -- [XXXDO] :: decisive, critical; leading/belonging to a decision/definitive sentence (L+S); + decretum_N_N : N ; -- [XXXBO] :: |decree, ordinance; legal decision, verdict, order (judge), sentence; vote; + decrimino_V2 : V2 ; -- [XXXFO] :: defame; + decrusto_V2 : V2 ; -- [DXXFS] :: peel/split off; disintegrate; + decubo_V : V ; -- [XXXFO] :: get down; (from a bed); lie away from/out of (one's bed) (L+S); + deculco_V2 : V2 ; -- [XXXEO] :: tread down, crush with the feet; trample upon (L+S); + deculpatus_A : A ; -- [XXXFO] :: faulty, blameworthy; censurable (L+S); + deculto_V2 : V2 ; -- [DXXFS] :: hide deeply, conceal vigorously; + decuma_F_N : N ; -- [XLXDO] :: tenth part/tithe; (offering/tax/largesse); tax/right to collect 10%; 10th hour; + decumana_F_N : N ; -- [XXXFS] :: female/wife of tax-farmer/who buys right to tithe; + decumanus_A : A ; -- [XWXCO] :: of the tenth (legion); huge/outsize; of tithe; [w/porta => rear gate of camp]; + decumanus_M_N : N ; -- [XWICO] :: man of tenth legion; tax-farmer/who buys right to tithe; line bounding 10 actus; + decumas_A : A ; -- [XAFFO] :: land divided into groups (pl.) of ten districts or the like; relating to tithes; + decumbo_V : V ; -- [XXXCO] :: to lie down, recline; take to bed; lie ill, die; fall (in a fight), fall down; + decumo_V2 : V2 ; -- [XWXDO] :: choose by lot every tenth man (for punishment); make tithe offering (to a god); + decuncis_M_N : N ; -- [XSXFS] :: measure/weight of ten unciae (ten ounces); (ten-twelfths of a unit); + decunctor_V : V ; -- [XXXEO] :: hesitate, delay (over), take one's time; + decunx_M_N : N ; -- [XSXFS] :: measure/weight of ten unciae (ten ounces); (ten-twelfths of a unit); + decuplatus_A : A ; -- [DSXFS] :: tenfold; + decuplus_A : A ; -- [DSXFS] :: tenfold; + decuria_F_N : N ; -- [XXXBO] :: group/division of ten; class, social club; gang; cavalry squad; ten judges/feet; + decurialis_A : A ; -- [XXXIO] :: enrolled in a decuria (club of ten); appropriate to a decuria; + decurialis_M_N : N ; -- [XXXIO] :: member of a decuria (club of ten); + decuriat_F_N : N ; -- [XLIFO] :: dividing into decuriae; (groups of ten); + decuriatim_Adv : Adv ; -- [DXXFS] :: by decuria (club of ten); + decuriatio_F_N : N ; -- [XLIFO] :: dividing into decuriae; [~ tribulium => voters - for corruption/intimidation]; + decurio_M_N : N ; -- [XXXCO] :: |member of municipal senate/governing committee of decuria; councillor; + decurio_V2 : V2 ; -- [XWXCO] :: make (cavalry) squads of ten; organize in military fashion; enroll in decuria; + decurionalis_A : A ; -- [XLXIO] :: of/belonging to a (municipal) decurion (member of municipal senate/councillor); + decurionatis_A : A ; -- [XWXDO] :: office/rank of military/municipal decurio; (squad commander/municipal senator); + decurionatus_A : A ; -- [EXXES] :: of a decurion; + decurionus_M_N : N ; -- [XXXES] :: |member of municipal senate/governing committee of decuria; councillor; + decuris_M_N : N ; -- [XXXFO] :: member of municipal senate/governing committee of decuria; councillor; + decurro_V2 : V2 ; -- [XWXAO] :: |run a race (over course); make for; turn (to); exercise/drill/maneuver (army); + decursio_F_N : N ; -- [XWXCO] :: attack from high ground, decent; raid, inroad; military pageant; flowing down; + decursus_M_N : N ; -- [XXXBO] :: |running race/course; finish; flow (verse); coming to land; watercourse/channel; + decurtatio_F_N : N ; -- [DBXFS] :: mutilation; + decurtatus_A : A ; -- [XGXEO] :: mutilated, deprived of limbs/extremities; cut short; (also of style); + decurto_V2 : V2 ; -- [XXXDS] :: cut off/short, curtail; mutilate; + decurvatus_A : A ; -- [DXXFS] :: bent/curved back; + decus_N_N : N ; -- [XXXAO] :: glory/splendor; honor/distinction; deeds; dignity/virtue; decorum; grace/beauty; + decusatim_Adv : Adv ; -- [XXXEO] :: so as to make an X/produce shape of an X (for ten); crosswise; in form of X; + decusatio_F_N : N ; -- [XXXFO] :: intersection/crossing (of lines); + decusis_M_N : N ; -- [XLXCO] :: coin (10 asses); number ten; decade; intersection/cross of two lines, X-mark; + decussatim_Adv : Adv ; -- [XXXEO] :: so as to make an X/produce shape of an X (for ten); crosswise; in form of X; + decussatio_F_N : N ; -- [XXXFO] :: intersection/crossing (of lines); + decussio_F_N : N ; -- [DXXFS] :: rejection; shaking off; + decussis_M_N : N ; -- [XLXCO] :: coin (10 asses); number ten; decade; intersection/cross of two lines, X-mark; + decussissexis_M_N : N ; -- [XXXFS] :: number sixteen; + decusso_V2 : V2 ; -- [XXXDO] :: arrange crosswise; mark with a cross; divide crosswise (in form of X) (L+S); + decutio_V2 : V2 ; -- [DXXFS] :: flay, skin; deprive of skin; + dedecens_A : A ; -- [XXXEE] :: unbecoming; unsuitable; + dedecor_A : A ; -- [XXXEO] :: dishonorable, shameful; unseemly, unbecoming (L+S); + dedecoramentum_N_N : N ; -- [XXXFO] :: source of disgrace; disgrace, dishonor (L+S); + dedecoratio_F_N : N ; -- [XXXFS] :: disgrace, dishonor; + dedecorator_M_N : N ; -- [DXXFS] :: reviler; blasphemer; one who dishonors; + dedecoro_V2 : V2 ; -- [XXXCO] :: disgrace, dishonor; bring discredit/shame on; disfigure; + dedecorose_Adv : Adv ; -- [DXXFS] :: disgracefully; shamefully, dishonorably; + dedecorosus_A : A ; -- [XXXES] :: dishonorable, disgraceful, discreditable; + dedecorus_A : A ; -- [XXXEO] :: dishonorable/disgraceful/discreditable/shameful; dishonoring; causing disgrace; + dedect_V0 : V ; -- [XXXCO] :: be unsuitable/unbecoming to; bring disgrace/dishonor upon; (also TRANS); + dedecus_N_N : N ; -- [XXXBO] :: |shameful/repulsive appearance; blot, blemish (L+S); vicious act, shameful deed; + dedicatio_F_N : N ; -- [XXXCO] :: dedication, consecration, ceremonial opening; act/rite conferring sanctity; + dedicative_Adv : Adv ; -- [DSXFS] :: affirmatively; + dedicativus_A : A ; -- [DSXES] :: affirmative; + dedicator_M_N : N ; -- [XXXIO] :: dedicator, one who dedicates; founder, author (L+S); + dedicatorius_A : A ; -- [GXXEK] :: dedicatory; + dedicatus_A : A ; -- [XXXEO] :: devoted; dedicated; + dedico_V2 : V2 ; -- [FXXEM] :: deny, refuse; contradict; + dedignatio_F_N : N ; -- [XXXEO] :: contempt; feeling of disdain; disdaining, refusal (L+S); + dedigno_V2 : V2 ; -- [DXXFS] :: disdain; refuse (scornfully), reject with scorn, spurn; feel contempt for; + dedignor_V : V ; -- [XXXCO] :: disdain; refuse (scornfully), reject with scorn, spurn; feel contempt for; + dediscalus_M_N : N ; -- [FGXFM] :: teacher; + dedisco_V2 : V2 ; -- [XXXCO] :: unlearn, forget, put out of one's mind; lose the habit of, forget (how to); + dediticius_A : A ; -- [XWXCO] :: surrendered; having surrendered; (later civil status); of surrender/capitulation + dediticius_M_N : N ; -- [XXXDX] :: prisoners of war, captives (the surrendered); + deditio_F_N : N ; -- [XWXCO] :: surrender (of combatants/town/possessions); cession of right/title; + dedititius_A : A ; -- [DWXCS] :: surrendered; having surrendered; (later civil status); of surrender/capitulation + dedititius_M_N : N ; -- [DXXCS] :: prisoners of war, captives (the surrendered); + deditus_A : A ; -- [XXXCO] :: devoted/attached to, fond of; devoted/directed/given over (to) (activity); + dedo_V2 : V2 ; -- [XXXBO] :: give up/in, surrender; abandon/consign/devote (to); yield, hand/deliver over; + dedoceo_V2 : V2 ; -- [XXXCO] :: cause (person) to unlearn/discard previous teaching; reeducate; teach opposite; + dedolentia_F_N : N ; -- [XXXFS] :: abandonment of grief, ceasing to lament; + dedoleo_V : V ; -- [XXXFO] :: cease to grieve; put an end to one's sorrows; + dedolo_V2 : V2 ; -- [XXXCO] :: cut down; hew smooth/away/to shape; beat/cudgel badly; (of sexual intercourse); + dedomo_V2 : V2 ; -- [DXXFS] :: tame; (of horses); + deducibilis_A : A ; -- [GXXEK] :: deductible; + deduco_V2 : V2 ; -- [XXXAO] :: |launch/bring downstream (ship); remove (force); entice; found/settle (colony); + deducticius_A : A ; -- [XXXIO] :: colonial, having the status of a settler in a colony; + deductio_F_N : N ; -- [XXXCO] :: |colonizing/settling; billeting (army); escorting; transportation, delivery; + deductivus_A : A ; -- [DXXFS] :: derivative; + deductor_M_N : N ; -- [XXXEO] :: escort, one who acts as an escort; guide, teacher (late Latin L+S); attendant; + deductorium_N_N : N ; -- [DXXFS] :: drain; + deductorius_A : A ; -- [DXXES] :: of/for drawing/draining off; purgative; laxative/aperient; + deductus_A : A ; -- [XXXDO] :: drawn down; bent in; attenuated/slender, weak, soft (voice); fine-spun (style); + deductus_M_N : N ; -- [XXXFO] :: downward pull; drawing/dragging down (L+S); + dedux_A : A ; -- [DXXES] :: derived; descended; + deebriatus_A : A ; -- [DXXES] :: inebriated, drunk; made drunk; + deerro_V : V ; -- [XXXCO] :: go astray, wander off; miss, stray from target/goal; err/make a mistake/go wrong + defaecabilis_A : A ; -- [DXXFS] :: that may be easily cleaned; + defaecatio_F_N : N ; -- [DXXFS] :: cleansing, purifying; + defaecatus_A : A ; -- [DXXFS] :: refined; + defaeco_V2 : V2 ; -- [XSXCO] :: strain/clear; cleanse, remove dregs/impurities from; defecate (L+S); set at ease + defaenero_V2 : V2 ; -- [XXXEO] :: exhaust, bring ruin; (by the extortion of usury); + defalta_F_N : N ; -- [FLXFJ] :: default; + defamatus_A : A ; -- [XXXFO] :: infamous, having a bad reputation; + defamis_A : A ; -- [XXXFO] :: disgraceful, shameful; + defanatus_A : A ; -- [DEXES] :: profaned, desecrated, unholy; + defarinatus_A : A ; -- [DAXFS] :: pulverized, reduced to flour; + defatigatio_F_N : N ; -- [XXXCO] :: weariness, fatigue; physical/mental exhaustion; state of being worn out; + defatigo_V2 : V2 ; -- [XXXCO] :: tire (out), exhaust; break force of; (PASS) lose heart, weary, be discouraged; + defatiscor_V : V ; -- [XXXEO] :: become exhausted/suffer exhaustion, grow weary/faint/weak, flag; lose heart; + defecabilis_A : A ; -- [DXXFS] :: that may be easily cleaned; + defecatio_F_N : N ; -- [DXXFS] :: cleansing, purifying; + defeco_V2 : V2 ; -- [XSXFS] :: strain/clear; cleanse, remove dregs/impurities; defecate (L+S); set at ease; + defectibilis_A : A ; -- [EXXFP] :: failing easily; + defectibilitas_F_N : N ; -- [FSXEM] :: imperfection; + defectio_F_N : N ; -- [XXXCO] :: |weakness/faintness/despondency; swoon/faint, exhaustion (L+S); disappearance; + defectivus_A : A ; -- [DXXDS] :: defective/imperfect; intermittent (fever); defective/lacking forms (grammar); + defector_M_N : N ; -- [XXXEO] :: rebel, renegade; one who revolts (from); + defectrix_A : A ; -- [DXXFS] :: defective, imperfect; (feminine); + defectus_A : A ; -- [XXXCO] :: tired, enfeebled, worn out; faulty, defective; reduced in size, smaller; + defectus_M_N : N ; -- [XXXBO] :: |diminution, growing less, becoming ineffective, cessation; eclipse; fading; + defendito_V2 : V2 ; -- [XXXEO] :: make practice of defending (legal cases); defend often/habitually (contentions); + defendo_V2 : V2 ; -- [XXXAO] :: |repel, fend/ward off, avert/prevent; support/preserve/maintain; defend (right); + defeneratus_A : A ; -- [DLXES] :: overwhelmed by debt; exhausted by usury; + defenero_V2 : V2 ; -- [XXXEO] :: exhaust, bring ruin; (by extortion of usury); involve in debt; + defensa_F_N : N ; -- [DXXFS] :: defense; + defensabilis_A : A ; -- [DXXFS] :: defensible; + defensator_M_N : N ; -- [DXXFS] :: defender; + defensatrix_F_N : N ; -- [DXXFS] :: defender (female), she who defends; + defensibilis_A : A ; -- [DXXES] :: easily defended; + defensibiliter_Adv : Adv ; -- [DXXFS] :: defensibly; + defensio_F_N : N ; -- [XXXBS] :: |legal maintenance of a right; legal prosecution, punishment; + defenso_V2 : V2 ; -- [XXXCO] :: defend/guard/protect against; act in defense against; ward off; avert constantly + defensor_M_N : N ; -- [XXXBO] :: defender/protector; supporter/champion/apologist; defendant; defense advocate; + defensorius_A : A ; -- [DXXES] :: defense, pertaining to defense; + defenstrix_F_N : N ; -- [XXXFO] :: defender/protector (female); supporter/apologist; defendant; defense advocate; + defensum_N_N : N ; -- [FXBEM] :: defense; enclosure; + defero_V : V ; -- [FXXFY] :: ||||honor; export (medieval usage); + defervefacio_V2 : V2 ; -- [XXXDO] :: boil thoroughly (liquids/solids); seethe, cause to boil (L+S); + defervefactus_A : A ; -- [DXXFS] :: heated; + defervefio_V : V ; -- [XXXDO] :: be boiled thoroughly (liquids/solids); (defervefacio PASS); + deferveo_V : V ; -- [XXXDS] :: |boil thoroughly; ferment completely (wine); effervesce (lime); subside; + defervesco_V : V ; -- [XSXCO] :: come to full boil; cease boiling, cool off (fermentation); calm down, subside; + defessus_A : A ; -- [XXXCL] :: worn out, weary, exhausted, tired; weakened (L+S); + defetigatio_F_N : N ; -- [XXXCO] :: weariness, fatigue; physical/mental exhaustion; state of being worn out; + defetigo_V2 : V2 ; -- [XXXCO] :: tire (out), exhaust; break force of; (PASS) lose heart, weary, be discouraged; + defetiscentia_F_N : N ; -- [DXXFS] :: weariness; + defetiscor_V : V ; -- [XXXCO] :: become exhausted/suffer exhaustion, grow weary/faint/tired/weak; lose heart; + deficientia_F_N : N ; -- [DXXFS] :: want, wanting; + deficio_V : V ; -- [XXXAO] :: |pass away; become extinct, die/fade out; subside/sink; suffer eclipse, wane; + deficio_V2 : V2 ; -- [XXXCO] :: |(PASS) be left without/wanting, lack; have shortcomings; L:come to nothing; + defico_V2 : V2 ; -- [XSXEO] :: strain/clear/cleanse, remove dregs/impurities from; defecate (L+S); set at ease; + defigo_V2 : V2 ; -- [XXXBO] :: |focus (thoughts/eyes); dumbfound, astonish/stupefy, fix w/glance; censure; + defigurstus_A : A ; -- [DGXFS] :: declined; derived; + defindo_V2 : V2 ; -- [BXXFO] :: split down the whole length; + defingo_V2 : V2 ; -- [BXXEO] :: mold into shape; fashion, form (L+S); + definienter_Adv : Adv ; -- [DXXFS] :: distinctly; + definio_V2 : V2 ; -- [XXXBO] :: |finish off/put an end/end the life; determine, settle; specify, sum up; assert; + definite_Adv : Adv ; -- [XXXCO] :: precisely, definitely, distinctly, clearly; expressly, in particular instances; + definitio_F_N : N ; -- [XXXCS] :: ||ending/boundary/limit (L+S); limiting; explanation; which is decreed/decided; + definitive_Adv : Adv ; -- [DXXES] :: definitively, plainly, distinctly; + definitivus_A : A ; -- [XXXEO] :: definitive, explanatory; involving definition; definite, distinct, plain (L+S); + definitor_M_N : N ; -- [XGXFO] :: he who makes grammatical pronouncement/ruling; who determines/settles/appoints; + definitus_A : A ; -- [XXXCO] :: definite/precise/limited/finite; limited in number; concerned with particulars; + defio_V : V ; -- [XXXCO] :: lack, be lacking; be in short supply; run short; grow less, subside; + defioculus_M_N : N ; -- [DXXFS] :: one-eye, he who lacks an eye; (used humorously); + defixio_F_N : N ; -- [DXXFS] :: enchantment; + defixus_A : A ; -- [XXXFO] :: motionless, still; + deflaglo_V : V ; -- [XXXFO] :: be burnt down/destroyed by fire; perish; be (emotionally/physically) burnt out; + deflaglo_V2 : V2 ; -- [XXXFO] :: burn down/up/destroy by fire/utterly; parch (sun); die down/abate, burn out; + deflagratio_F_N : N ; -- [XXXEO] :: destruction by fire; conflagration (L+S); consuming by fire; destruction; + deflagro_V : V ; -- [XXXCO] :: be burnt down/destroyed by fire; perish; be (emotionally/physically) burnt out; + deflagro_V2 : V2 ; -- [XXXCO] :: burn down/up/destroy by fire/utterly; parch (sun); die down/abate, burn out; + deflammo_V2 : V2 ; -- [XXXFO] :: extinguish, put out (the flame of); deprive of flame (L+S); + deflecto_V : V ; -- [XXXCO] :: bend/turn aside/off; deviate/change one's course; digress (speech); alter pitch; + deflecto_V2 : V2 ; -- [XXXBO] :: |divert, distract; turn one's eyes; modify/twist (words/ideas); round (point); + defleo_V : V ; -- [XXXDO] :: cry bitterly; give oneself up to tears; weep much/violently/to exhaustion (L+S); + defleo_V2 : V2 ; -- [XXXCO] :: weep (abundantly) for; mourn loss of; express/feel sorrow about; lament/bewail; + defletio_F_N : N ; -- [DXXFS] :: violent weeping; + deflexio_F_N : N ; -- [DXXES] :: turning/bending aside, deflection; + deflexus_M_N : N ; -- [XXXEO] :: bend (in a line); deviation (behavior); transition; bending/turning aside (L+S); + deflo_V2 : V2 ; -- [XXXEO] :: blow away, blow on (for purpose of cleansing); brush/blow aside/off; + defloccatus_A : A ; -- [BXXFS] :: bald; shorn of locks; + deflocco_V2 : V2 ; -- [XXXEO] :: rub the nap of (cloth); strip of possessions, fleece; + defloratio_F_N : N ; -- [DXXFS] :: plucking of flowers; deflowering/dishonoring (of a virgin); + defloreo_V : V ; -- [XXXEO] :: drop/shed blossoms/petals (before bearing fruit); + defloresco_V : V ; -- [XAXCO] :: drop/shed blossoms/petals (before bearing fruit); fade, wither, decay, decline; + deflorio_V : V ; -- [EXXFP] :: cease to flourish; drop/shed blossoms/petals (before bearing fruit)?; + defloro_V2 : V2 ; -- [DXXES] :: pluck flowers; deflower/dishonor/ravish/seduce (virgin); cull/excerpt; + defluo_V : V ; -- [XXXAO] :: |flow/drain/die/melt/slip away, fade/disappear; originate/stem, be derived from; + defluus_A : A ; -- [XXXEO] :: flowing/moving down; traveling downstream; emitting a flow (of a container); + defluvium_N_N : N ; -- [XXXNO] :: loss by flowing or falling away; flowing down/off (L+S); falling off/out; + defluxio_F_N : N ; -- [DXXES] :: flowing off; discharge; diarrhea; + defluxus_M_N : N ; -- [XXXFO] :: downward flow or falling (of liquids); flowing/running off (L+S); + defodio_V2 : V2 ; -- [XXXBO] :: |make fast/set up in ground (part burying); embed; hide; dig up; excavate; dig; + defoedo_V2 : V2 ; -- [DEXFS] :: defile; + deforcians_A : A ; -- [FXXFJ] :: deforciant; one who wrongfully keeps another from possession of an estate; + deforcio_V : V ; -- [FLXFJ] :: deforce; keep by force/violence; withhold wrongfully; + deforis_Adv : Adv ; -- [DXXDS] :: outside, from outside; out of doors; abroad; + deformatio_F_N : N ; -- [DXXDS] :: |representation; delineation; deforming, disfiguring, defacing; + deforme_N_N : N ; -- [XXXEO] :: disgrace; shameful thing/deed; + deformis_A : A ; -- [XXXBO] :: |inappropriate/unseemly/offending good taste; shapeless/lacking definite shape; + deformitas_F_N : N ; -- [XXXBO] :: |inelegance, impropriety, lack of good taste (speech/writing); shapelessness; + deformiter_Adv : Adv ; -- [XXXDO] :: hideously; shamefully; unbecomingly; in an ugly/disgraceful/inelegant manner; + deformo_V2 : V2 ; -- [XXXBO] :: |transform (into something less beautiful); lay out, arrange (plan of action); + deformus_A : A ; -- [DXXCS] :: |inappropriate/unseemly/offending good taste; shapeless/lacking definite shape; + defossum_N_N : N ; -- [XXXDO] :: underground chamber, place dug out; + defossus_M_N : N ; -- [XXXNS] :: digging deeply; + defraudatio_F_N : N ; -- [DXXFS] :: deficiency; defrauding; + defraudator_M_N : N ; -- [DXXFS] :: defrauder, one who defrauds; + defraudatrix_F_N : N ; -- [DXXFS] :: defrauder (female), she who defrauds; + defraudo_V2 : V2 ; -- [XXXCO] :: cheat, defraud, deceive; rob (of); [w/se => deny oneself, self-sacrifice]; + defremo_V : V ; -- [XXXFO] :: quiet down, finish/end making noise; (public indignation); cease raging/roaring; + defrenatus_A : A ; -- [XXXFO] :: unbridled, unrestrained; + defretum_N_N : N ; -- [XAXCO] :: grape juice (new wine) boiled down into a syrup; + defricate_Adv : Adv ; -- [XXXFO] :: sharply, keenly; (of speech); with biting sarcasm (L+S); + defricatio_F_N : N ; -- [DXXES] :: rubbing; + defrico_V2 : V2 ; -- [XXXCO] :: rub hard/thoroughly; (ointment); rub down (person/beast); scour/rub off; + defrigesco_V : V ; -- [XXXFO] :: cool off; grow cold (L+S); + defringo_V2 : V2 ; -- [XXXCO] :: break off; remove by breaking; break to pieces (L+S); destroy; + defrudo_V2 : V2 ; -- [XXXCO] :: cheat, defraud, deceive; rob (of); [w/se => deny oneself, self-sacrifice]; + defrugo_V2 : V2 ; -- [XAXES] :: rob of grain; sow too little grain; + defruor_V : V ; -- [XXXFS] :: use up; consume by enjoying; + defrusto_V2 : V2 ; -- [DXXES] :: divide into pieces, dismember; + defrustror_V : V ; -- [XXXFO] :: foil/thwart completely/thoroughly; + defrutarium_N_N : N ; -- [XAXFO] :: cauldron used for making defrutum (boiled down grape juice); + defrutarius_A : A ; -- [XAXFO] :: used for making defrutum (boiled down grape juice); of defrutum (L+S); + defruto_V2 : V2 ; -- [XAXEO] :: boil down (grape juice) into defrutum/syrup; + defrutum_N_N : N ; -- [XAXCO] :: grape juice (must/new wine) boiled down into a syrup; + defuga_M_N : N ; -- [DXXES] :: runaway; deserter; + defugio_V : V ; -- [XXXCO] :: escape from/make one's escape/flee; keep clear of (responsibility/liability); + defugio_V2 : V2 ; -- [XXXCO] :: flee, escape, run/move away (from), make one's escape from; avoid (strongly); + defugo_V2 : V2 ; -- [DXXFS] :: drive away; remove; + defulguro_V2 : V2 ; -- [DXXFS] :: flash away; + defuncta_F_N : N ; -- [XXXEO] :: dead person (female); + defunctio_F_N : N ; -- [DEXES] :: execution, performance; death; + defunctorie_Adv : Adv ; -- [XXXEO] :: perfunctorily, cursorily; in a spirit which acts for form's sake only; + defunctorius_A : A ; -- [XXXFO] :: perfunctory; routine; quickly dispatched (L+S); slight, cursory; + defunctum_N_N : N ; -- [XXXEO] :: things (pl.) which are dead and gone; + defunctus_A : A ; -- [EXXDX] :: dead, deceased; defunct; + defunctus_C_N : N ; -- [XXXDO] :: dead person; (usu. male); the dead (pl.) (L+S); + defunctus_M_N : N ; -- [DXXFS] :: death; + defundo_V2 : V2 ; -- [XXXCO] :: pour out/away/off/down; discharge; shed; empty/pour out; wet by pouring; + defungor_V : V ; -- [XXXBO] :: |settle a case (for so much); make do; discharge; die; (PERF) to have died; + defusio_F_N : N ; -- [XXXFO] :: pouring out (of a liquid); (into vessels L+S); + defutuo_V2 : V2 ; -- [XXXFD] :: indulge in promiscuous sexual intercourse with (woman); copulate freely (rude); + defututus_A : A ; -- [XXXFO] :: worn out by excessive sexual intercourse; exhausted by sensuality (L+S); + degener_A : A ; -- [XXXBO] :: |low-born, of/belonging to inferior stock/breed/variety; soft/weak; softened; + degeneratio_F_N : N ; -- [XXXDE] :: degeneration; + degenero_V : V ; -- [XXXBO] :: |sink (to); fall away from/below the level; degenerate/revert (breeding); + degenero_V2 : V2 ; -- [XXXDO] :: be unworthy (of), fall short of the standard set by; cause deterioration in; + degero_V2 : V2 ; -- [XXXEO] :: remove; carry off/away (to a destination); + deglabro_V2 : V2 ; -- [XXXFO] :: make smooth; (remove bark from trees/logs); smooth off (L+S); + deglubo_V2 : V2 ; -- [XXXDO] :: skin, flay; strip (w/ABL) (of a coating); peel/skin/husk (L+S); + deglutino_V2 : V2 ; -- [XXXNO] :: unglue; separate by moistening (L+S); + deglutio_V2 : V2 ; -- [DXXCS] :: swallow down; overwhelm, abolish (L+S); + degluttio_V2 : V2 ; -- [XXXCO] :: swallow down; overwhelm, abolish (L+S); + dego_V : V ; -- [XXXCO] :: spend/bide one's time in; wait; remain alive, live on, endure; continue; + dego_V2 : V2 ; -- [XXXCO] :: spend/pass (time); spend/bide one's time in; carry on, wage; conduct away?; + degradatio_F_N : N ; -- [FEXDE] :: degradation; deprivation; rank reduction; penalty for cleric/reduction to lay; + degrado_V2 : V2 ; -- [EEXEE] :: reduce in rank; deprive of office; degrade; + degrandinat_V0 : V ; -- [XXXFO] :: it goes on hailing; it hails violently, or (perhaps) it ceases to hail (Cas); + degrassor_V : V ; -- [XXXEO] :: sink (w/ACC); descend upon; rush down (L+S); attack fiercely; revile; + degravo_V2 : V2 ; -- [XXXCO] :: weigh/press/drag down; rest heavily on; overpower, overwhelm; burden; + degredior_V : V ; -- [XXXBO] :: march/go/come/flow down, descend; dismount; move off/depart; turn aside/deviate; + degrumo_V2 : V2 ; -- [BTXEO] :: lay out with a surveying instrument, survey; + degrumor_V : V ; -- [XTXDO] :: straighten; level off; + degrunnio_V : V ; -- [XXXFO] :: give a performance of grunting; grunt hard (L+S); + degulator_M_N : N ; -- [XXXFO] :: glutton; one who devours; + degulo_V2 : V2 ; -- [XXXEO] :: devour, swallow down; consume (L+S); + deguno_V2 : V2 ; -- [DXXFS] :: taste; + degustatio_F_N : N ; -- [XXXFO] :: act of tasting; a tasting (L+S); + degusto_V2 : V2 ; -- [XXXCO] :: taste; taste/try/eat/drink a little of; glance at; graze; sip; test; judge; + dehabeo_V2 : V2 ; -- [DXXFS] :: lack, not to have; + dehaurio_V2 : V2 ; -- [XXXFO] :: drain off; skim off (L+S); (late) swallow, swallow down; + dehibeo_V : V ; -- [XXXAO] :: owe; be indebted/responsible for/obliged/bound/destined; ought, must, should; + dehinc_Adv : Adv ; -- [XXXBO] :: |then, after that, thereupon; at a later stage; for the rest; next (in order); + dehisco_V : V ; -- [XXXCO] :: gape/yawn/split open; part/divide, develop/leave a gap/leak; be/become apart; + dehonestamentum_N_N : N ; -- [XXXCO] :: source/act inflicting disgrace/dishonor; degradation; disfigurement, blemish; + dehonestatio_F_N : N ; -- [DXXFS] :: disgrace, dishonor; + dehonesto_V2 : V2 ; -- [XXXCO] :: dishonor, discredit, disgrace; disparage (L+S); + dehonestus_A : A ; -- [XXXFO] :: vulgar, low-class; unbecoming, improper (L+S); + dehonoro_V2 : V2 ; -- [DXXES] :: dishonor; + dehorio_V2 : V2 ; -- [DXXFS] :: drain off; skim off (L+S); (late) swallow, swallow down; + dehortatio_F_N : N ; -- [DXXFS] :: dissuading; + dehortativus_A : A ; -- [DXXES] :: fit for dissuading, likely to dissuade; + dehortator_M_N : N ; -- [DXXFE] :: dissuader; + dehortatorius_A : A ; -- [DXXFS] :: dissuasive, dehortatory; + dehortor_V : V ; -- [XXXCO] :: dissuade; advise (person) against an action; deter, have restraining influence; + deicida_M_N : N ; -- [DEXFS] :: killer/slayer of God; (Judas); + deicio_V2 : V2 ; -- [XXXAO] :: |unhorse; let fall; shed; purge/evacuate bowel; dislodge/rout; drive/throw out; + deifer_A : A ; -- [FEXFE] :: God-bearing, bearing a god in one's self; + deiferus_A : A ; -- [DEXFS] :: God-bearing, bearing a god in one's self; + deifico_V2 : V2 ; -- [XEXES] :: deify; make one a god + deificus_A : A ; -- [FEXFE] :: rendering god-like, making divine, deific; + deiformis_A : A ; -- [FEXFM] :: God-like; + dein_Adv : Adv ; -- [XXXBO] :: then/next/afterward; thereon/henceforth/from there/then; in next position/place; + deinceps_A : A ; -- [XXXEO] :: following, next in succession; + deinceps_Adv : Adv ; -- [FXXBB] :: |hereafter; thereafter; + deinde_Adv : Adv ; -- [XXXAO] :: then/next/afterward; thereon/henceforth/from there/then; in next position/place; + deinsuper_Adv : Adv ; -- [DXXFS] :: from above; + deintegro_V2 : V2 ; -- [BXXFO] :: impair; deprive of integrity; destroy (L+S); + deintus_Adv : Adv ; -- [DXXDS] :: from within; + deisatus_A : A ; -- [XXXIO] :: having divine ancestor, of divine lineage; descended from a god; + deitas_F_N : N ; -- [DEXES] :: deity; divine nature; + dejecte_Adv : Adv ; -- [DXXFS] :: low; + dejectio_F_N : N ; -- [XBXCO] :: ejection (from land); purging bowels; diarrhea; degradation; casting out/down; + dejectiuncula_F_N : N ; -- [XBXFO] :: slight attack of diarrhea; slight purging (L+S); + dejecto_V2 : V2 ; -- [DXXFS] :: hurl down violently; (intensive verb); + dejector_M_N : N ; -- [XXXFO] :: one who throws/casts (things) down; + dejectus_A : A ; -- [XXXCO] :: downcast/dismayed/subdued/dejected; drooping/hanging/sunk/cast down; low lying; + dejectus_M_N : N ; -- [XXXCO] :: slope, sloping surface, declivity; act of throwing/causing to fall/felling; + dejeratio_F_N : N ; -- [XLXIO] :: oath; + dejero_V : V ; -- [XLXCO] :: swear, take an oath; + dejicio_V2 : V2 ; -- [XXXAS] :: |unhorse; let fall; shed; purge/evacuate (bowel); dislodge/rout; drive/throw out + dejudico_V2 : V2 ; -- [XXXFO] :: give final judgment on (question); + dejugis_A : A ; -- [DXXFS] :: sloping; + dejugo_V2 : V2 ; -- [XXXFO] :: disconnect; disunite; separate (L+S); sever; + dejunctus_A : A ; -- [XGXEO] :: disconnected, lacking a common term; (grammar); + dejungo_V2 : V2 ; -- [XXXDO] :: separate, unyoke; release (from activity); + dejuratio_F_N : N ; -- [DLXDO] :: oath; + dejurium_N_N : N ; -- [XLXFO] :: oath; + dejuro_V : V ; -- [XLXCO] :: swear, take an oath; + dejuvo_V : V ; -- [BXXFS] :: withhold assistance; leave off helping; + delabor_V : V ; -- [XXXAO] :: |drop, descend; sink; fall/fail/lose strength; flow down; be carried downstream; + delaboro_V : V ; -- [XXXFO] :: work hard; overwork (L+S); + delacero_V2 : V2 ; -- [XXXFO] :: tear to shreds/pieces; destroy, frustrate (L+S); + delachrimatorius_A : A ; -- [XBXIO] :: producing watering/running of the eyes; for/belonging to weeping (L+S); + delacrimatio_F_N : N ; -- [XBXEO] :: watering/tearing/weeping/running of the eyes; (as symptom of disease L+S); + delacrimatorius_A : A ; -- [XBXIO] :: producing watering/running of the eyes; for/belonging to weeping (L+S); + delacrimo_V : V ; -- [XXXFO] :: shed tears; leek sap (trees); weep (L+S); + delacrumo_V : V ; -- [XXXFS] :: shed tears; leek sap (trees); weep (L+S); + delaevo_V2 : V2 ; -- [XXXFS] :: smooth down/off; make smooth (L+S); + delambo_V2 : V2 ; -- [XXXFO] :: lick all over; lick off (L+S); lick; + delamentor_V : V ; -- [XXXFO] :: give oneself up to mourning for; lament, bewail (L+S); + delapido_V2 : V2 ; -- [XXXEO] :: pave over/lay with stones; remove stones from; clear from stones (L+S); + delapsus_M_N : N ; -- [XTXFO] :: outfall (for drainage); flowing off, discharge (L+S); falling off, decent; + delargior_V : V ; -- [XXXFO] :: lavish; give away freely; give/bestow liberally/profusely/recklessly; + delassabilis_A : A ; -- [XXXFO] :: capable of fatigue; that can be worn/wearied out (L+S); + delasso_V2 : V2 ; -- [XXXDO] :: tire out, weary, exhaust; exhaust by experiencing; + delatio_F_N : N ; -- [XLXCO] :: accusation/denunciation; laying charge; indicting; informing; offering an oath; + delator_M_N : N ; -- [XXXCO] :: informer, who gives information/reports; accuser/denouncer/who accuses of crime; + delatorius_A : A ; -- [XLXEO] :: of/belonging to an informer; tell-tale; denunciatory (L+S); + delatura_F_N : N ; -- [DXXES] :: accusation, denunciation; information (about someone); + delavo_V2 : V2 ; -- [DXXES] :: wash off; wash clean; + delebilis_A : A ; -- [XXXFO] :: capable of/susceptible to being obliterated/blotted out/destroyed; effaceable; + delectabilis_A : A ; -- [XXXCS] :: enjoyable, delectable, delightful, agreeable; delicious (taste) (OLD); + delectabiliter_Adv : Adv ; -- [XXXES] :: delightfully; + delectamentum_N_N : N ; -- [XXXEO] :: delight, amusement; instrument/cause of delight/amusement/enjoyment; + delectatio_F_N : N ; -- [DBXES] :: |straining/effort/tenesmus; inclination/futile straining to void bowels/bladder; + delectatiuncula_F_N : N ; -- [XXXFO] :: little/trifling pleasure; petty delight (L+S); + delectio_F_N : N ; -- [DXXDS] :: choice; choosing; + delecto_V2 : V2 ; -- [XXXBO] :: |(PASS) be delighted/glad, take pleasure; (w/INF) enjoy (being/doing); + delector_M_N : N ; -- [XWXFS] :: one who draws out/selects/levies/recruits; + delector_V : V ; -- [XXXDO] :: |(PASS) be delighted/glad, take pleasure; (w/INF) enjoy (being/doing); + delectus_A : A ; -- [XXXCO] :: picked, chosen, select; (for attaining high standard); + delectus_M_N : N ; -- [XXXEO] :: |selection/choosing; choice (between possibilities), discrimination/distinction; + delegatio_F_N : N ; -- [XLXCO] :: assignment/delegation to third party of creditor's interest/debtor's liability; + delegator_M_N : N ; -- [DLXFS] :: assignor, one who makes an assignment/delegation (of obligation to another); + delegatus_M_N : N ; -- [XLXEO] :: assignment/delegation to third party of creditor's interest/debtor's liability; + delego_V2 : V2 ; -- [XXXBO] :: assign/appoint; delegate/entrust (to); consign; transfer/pass; refer/attribute; + delenificus_A : A ; -- [XXXEO] :: ingratiating; cajoling; soothing/mollifying; flattering, enchanting (L+S); + delenimentum_N_N : N ; -- [XXXCO] :: blandishment/enticement/charm; ingratiating/soothing action/quality; consolation + delenio_V2 : V2 ; -- [XXXCO] :: mitigate, mollify, smooth down, soothe; soften, cajole; bewitch, charm, entice; + delenitor_M_N : N ; -- [XXXFO] :: appeaser; soother, one who mollifies/wins over; + delenitorius_A : A ; -- [DXXFS] :: pertaining to/serving for softening/smoothing; + deleo_V2 : V2 ; -- [XXXBO] :: |destroy completely, demolish/obliterate/crush; ruin; overthrow; nullify/annul; + deleramentum_N_N : N ; -- [XXXDO] :: delusion, nonsense; product of a deranged mind; absurdity (L+S); + deleritas_F_N : N ; -- [XXXFO] :: insanity; + delero_V : V ; -- [XXXCO] :: be mad/deranged/silly; dote; speak deliriously, rave; deviate from balks (plow); + deleth_N : N ; -- [DEQEW] :: dalet/daleth; (4th letter of Hebrew alphabet); (transliterate as D); + deleticius_A : A ; -- [XGXFO] :: palimpsest, from which (anything/writing) has been erased/effaced/blotted out; + deletilis_A : A ; -- [XGXFO] :: that expunges/erases; that wipes/blots out (L+S); + deletio_F_N : N ; -- [XXXFO] :: destruction, annihilation; + deletitius_A : A ; -- [DGXFS] :: palimpsest, from which (anything/writing) has been erased/effaced/blotted out; + deletrix_A : A ; -- [XXXFO] :: causing the destruction (of); (feminine adjective); + deletrix_F_N : N ; -- [XXXFS] :: she who annihilates/destroys; + deletus_M_N : N ; -- [DXXFS] :: annihilation; + delevo_V2 : V2 ; -- [XXXFO] :: smooth down/off; make smooth (L+S); + delibamentum_N_N : N ; -- [XXXFO] :: libation; wine poured out to the gods (L+S); + delibatio_F_N : N ; -- [DXXDS] :: diminishing, taking away from; first fruit, sample, representative portion; + deliberabundus_A : A ; -- [XXXEO] :: pondering/reflecting; deep in thought/deliberating; weighing carefully (L+S); + deliberamentum_N_N : N ; -- [DXXFS] :: deliberation; + deliberatio_F_N : N ; -- [XXXCO] :: deliberation/consultation (w/others), consideration; deliberative style speech; + deliberativus_A : A ; -- [XXXEO] :: concerned with/relating to discussion/deliberation (future acts); deliberative; + deliberator_M_N : N ; -- [XXXFO] :: one who deliberates; + deliberatus_A : A ; -- [XXXEO] :: determined; worked out; resolved upon; certain (L+S); + delibero_V : V ; -- [XXXBO] :: weigh/consider/deliberate/consult (oracle); ponder/think over; resolve/decide on + delibo_V : V ; -- [XXXBO] :: |take a little, wear away, nibble at; taste (of), touch on (subject) lightly; + delibro_V2 : V2 ; -- [XAXEO] :: peel, remove/strip the bark (from); strip/take off (bark); (rind L+S); + delibuo_V2 : V2 ; -- [XXXCS] :: besmear; anoint with a liquid; + delibutus_A : A ; -- [XXXCO] :: thickly smeared/stained; steeped (in a condition), deeply imbued (with feeling); + delicata_F_N : N ; -- [XXXEO] :: paramour, favorite; voluptuary (L+S); one addicted to pleasure; + delicate_Adv : Adv ; -- [XXXCO] :: delicately/tenderly/gently; luxuriously; frivolously; fastidiously; effeminately + delicatus_A : A ; -- [XXXBO] :: |skittish/frisky/frivolous; fastidious/squeamish; delicate/dainty/pretty/fine; + delicatus_M_N : N ; -- [XXXEO] :: paramour, favorite; voluptuary (L+S); one addicted to pleasure; + delicia_F_N : N ; -- [XTXEO] :: ||||corner beam supporting a section of an outward-sloping roof; gutter (L+S); + deliciaris_A : A ; -- [XTXFO] :: fitting an outward-sloping roof; pertaining to a gutter (L+S); + deliciatus_A : A ; -- [XTXFO] :: outward-sloping (roof); with a gutter (L+S); + delicio_V2 : V2 ; -- [XXXFO] :: entice/lure (from one's preoccupations); allure (from the right way L+S); + deliciola_F_N : N ; -- [XXXFO] :: darling, little sweetheart (pl.); + deliciolum_N_N : N ; -- [XXXFO] :: darling, little sweetheart; + deliciosus_A : A ; -- [DXXCS] :: delicious; delicate; + delicium_N_N : N ; -- [XXXCO] :: darling, person one is fond of; pet (animal); delight, source/thing of joy; + delicius_M_N : N ; -- [XXXIS] :: pleasure/delight/fun, activity affording enjoyment; curiosities of art; + delico_V2 : V2 ; -- [XXXEO] :: reveal, disclose; make clear, clarify, explain; + delictor_M_N : N ; -- [DXXFS] :: delinquent; offender; + delictum_N_N : N ; -- [XXXDX] :: fault/offense/misdeed/crime/transgression; sin; act short of standard; defect; + deliculus_A : A ; -- [DXXFO] :: blemished; having a (small) defect; defective (L+S); + delicus_A : A ; -- [XXXFS] :: weaned; put away (from the breast); + delicuus_A : A ; -- [DXXEO] :: lacking, wanting; missing; + deligo_V2 : V2 ; -- [XXXBO] :: pick/pluck off, cull; choose, select, levy (soldiers), enroll; conduct a levy; + delimator_M_N : N ; -- [DXXFS] :: filer, one who files; (rasp); + delimitatio_F_N : N ; -- [DXXFS] :: marking out, limiting; + delimito_V2 : V2 ; -- [XXXFO] :: delimit, mark out the boundaries of; + delimitus_A : A ; -- [XXXNS] :: filed off; + delimo_V2 : V2 ; -- [XXXEO] :: file down; produce by filing; + delineatio_F_N : N ; -- [DXXFS] :: sketch; delineation; + delineo_V2 : V2 ; -- [XXXDO] :: delineate; trace the outline of; (sketch out L+S); + delingo_V2 : V2 ; -- [XXXDO] :: lick; lick up; lick off; + delinguo_V2 : V2 ; -- [XXXFO] :: lick; lick up; lick off; + delinificus_A : A ; -- [XXXES] :: ingratiating; cajoling; soothing/mollifying; flattering, enchanting (L+S); + delinimentum_N_N : N ; -- [XXXCS] :: blandishment/enticement/charm; ingratiating/soothing action/quality; consolation + delinio_V2 : V2 ; -- [XXXCO] :: mitigate, mollify, smooth down, soothe; soften, cajole; bewitch, charm, entice; + delinitor_M_N : N ; -- [XXXFS] :: appeaser; soother, one who mollifies/wins over; + delinitorius_A : A ; -- [DXXFS] :: pertaining to/serving for softening/smoothing; + delino_V2 : V2 ; -- [XXXCO] :: smear/daub/anoint (with); obliterate, smudge/blot out; daub w/owner mark (pig); + delinquentia_F_N : N ; -- [DXXFS] :: fault; crime; delinquency; + delinquio_F_N : N ; -- [XXXES] :: failure, lack, want; eclipse (of a heavenly body); + delinquo_V2 : V2 ; -- [XXXBO] :: fail (duty), be wanting/lacking, fall short; offend/do wrong/err/commit offense; + deliquatitudo_F_N : N ; -- [DXXFS] :: melting; dropping; + deliquesco_V : V ; -- [XXXEO] :: melt away, dissolve, melt; dissipate one's energy; vanish, disappear (L+S); + deliquia_F_N : N ; -- [XTXEO] :: corner beam supporting a section of an outward-sloping roof; gutter (L+S); + deliquio_F_N : N ; -- [XXXEO] :: failure, lack, want; eclipse (of a heavenly body); + deliquium_N_N : N ; -- [XXXEO] :: eclipse (of a heavenly body); want, defect (L+S); flowing/dropping down; + deliquo_V2 : V2 ; -- [XXXEO] :: strain (liquid to clear); strain off (solid matter); make clear; clarify/explain + deliquus_A : A ; -- [DXXEO] :: lacking, wanting; missing; + deliramentum_N_N : N ; -- [XXXDO] :: delusion, nonsense; product of a deranged mind; absurdity (L+S); + deliratio_F_N : N ; -- [XXXCO] :: going off the balks (harrowing); delirium/madness; folly/silliness/dotage; + deliritas_F_N : N ; -- [XXXFO] :: insanity; + delirium_N_N : N ; -- [XXXEO] :: delirium, frenzy; derangement of the mental facilities; madness (L+S); + deliro_V : V ; -- [XXXCO] :: be mad/crazy/deranged/silly; speak deliriously, rave; deviate from balks (plow); + delirus_A : A ; -- [XXXCO] :: crazy, insane, mad; senseless, silly; + delitesco_V : V ; -- [XXXCO] :: hide, go in hiding/seclusion; withdraw; vanish/be concealed; take refuge/shelter + delitigo_V : V ; -- [XXXFO] :: dispute wholeheartedly; have it out; scold, rail angrily (L+S); + delitisco_V : V ; -- [XXXBO] :: hide, go in hiding/seclusion; withdraw; vanish/be concealed; take refuge/shelter + delito_V : V ; -- [XXXDV] :: hide; hide oneself, go into hiding; seek safety; take refuge/shelter; + delitor_M_N : N ; -- [XXXFO] :: avenger, one who wipes out/extracts vengeance for; (w/GEN); obliterator (L+S); + delocatio_F_N : N ; -- [DBXFS] :: dislocation; (of a joint); + delonge_Adv : Adv ; -- [DXXES] :: from afar; (de longe); + delotus_A : A ; -- [DXXFS] :: washed; + delphin_M_N : N ; -- [XAXDO] :: dolphin; ornament shaped like a dolphin; (part of water organ); constellation; + delphinus_M_N : N ; -- [XAXCO] :: dolphin; ornament shaped like a dolphin; (part of water organ); constellation; 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 ; - delucto_V2 : V2 ; - deluctor_V : V ; - deludifico_V2 : V2 ; - deludificor_V : V ; - deludo_V2 : V2 ; - delumbis_A : A ; - delumbo_V2 : V2 ; - deluo_V2 : V2 ; - delusio_F_N : N ; - delusor_M_N : N ; - delustro_V2 : V2 ; - deluto_V2 : V2 ; + delphis_2_N : N ; -- [XAXFS] :: dolphin; ornament shaped like a dolphin; (part of water organ); constellation; + delta_N : N ; -- [XXHDO] :: Greek letter delta; delta of the Nile; + delubrum_N_N : N ; -- [XXXDX] :: shrine; temple; sanctuary (L+S); + deluctio_F_N : N ; -- [DXXFS] :: struggle, combat; wrestling; + delucto_V2 : V2 ; -- [XXXEO] :: wrestle; fight it out (with); struggle (L+S); + deluctor_V : V ; -- [XXXEO] :: wrestle; fight it out (with); struggle (L+S); + deludifico_V2 : V2 ; -- [XXXEO] :: dupe, make a complete fool of; mock (L+S); make sport of; banter; + deludificor_V : V ; -- [XXXEO] :: dupe, make a complete fool of; + deludo_V2 : V2 ; -- [XXXCO] :: deceive/dupe; play false/mock/make sport; play through, complete a performance; + delumbis_A : A ; -- [XBXEO] :: lame; suffering from injury/lameness in the lumbar region; (in the loins L+S); + delumbo_V2 : V2 ; -- [XBXCO] :: injure (by dislocating hip); bring down on haunches; lame, weaken; bend/curve; + deluo_V2 : V2 ; -- [XXXFO] :: wash away; wash out/off, cleanse (L+S); + delusio_F_N : N ; -- [DXXFS] :: deceiving, deluding; + delusor_M_N : N ; -- [DXXFS] :: deceiver; + delustro_V2 : V2 ; -- [DXXFS] :: disenchant, free from an evil charm/spell/enchantment; + deluto_V2 : V2 ; -- [DTXFO] :: plaster/daub with (preparation of) clay; 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 ; - demagogus_M_N : N ; - demandatio_F_N : N ; - demando_V2 : V2 ; - demano_V : V ; - demarcesco_V : V ; - demarchia_F_N : N ; - demarchisas_A : A ; - demarchus_M_N : N ; - dematricatus_A : A ; - demeaculum_N_N : N ; - demelior_V : V ; - demens_A : A ; - demensio_F_N : N ; - demensum_N_N : N ; - demensus_A : A ; - dementer_Adv : Adv ; - dementia_F_N : N ; - dementio_V : V ; - demento_V : V ; - demeo_V : V ; - demereo_V2 : V2 ; - demereor_V : V ; - demergo_V2 : V2 ; - demeritum_N_N : N ; - demersio_F_N : N ; - demersus_A : A ; - demersus_M_N : N ; - demetior_V : V ; - demeto_V2 : V2 ; - demetor_V : V ; - demigratio_F_N : N ; - demigro_V : V ; - deminoratio_F_N : N ; - deminoro_V2 : V2 ; - deminuo_V2 : V2 ; - deminutio_F_N : N ; - deminutive_Adv : Adv ; - deminutivus_A : A ; - deminutus_A : A ; - demiror_V : V ; - demisse_Adv : Adv ; - demissicius_A : A ; - demissio_F_N : N ; - demissitius_A : A ; - demissus_A : A ; - demitigo_V2 : V2 ; - demitto_V2 : V2 ; - demiurgus_M_N : N ; - demo_V2 : V2 ; - democrata_M_N : N ; - democratia_F_N : N ; - democraticus_A : A ; - democratizatio_F_N : N ; - demogrammateus_M_N : N ; - demographia_F_N : N ; - demographicus_A : A ; - demographus_M_N : N ; - demolio_V2 : V2 ; - demolior_V : V ; - demolitio_F_N : N ; - demolitor_M_N : N ; - demonstrabilis_A : A ; - demonstratio_F_N : N ; - demonstrativa_F_N : N ; - demonstrative_Adv : Adv ; - demonstrativus_A : A ; - demonstrator_M_N : N ; - demonstratorius_A : A ; - demonstro_V2 : V2 ; - demoratio_F_N : N ; - demordeo_V2 : V2 ; - demorior_V : V ; - demoror_V : V ; - demorsico_V2 : V2 ; - demorsito_V2 : V2 ; - demortuus_A : A ; - demoscopia_F_N : N ; - demoscopicus_A : A ; - demoveo_V2 : V2 ; - demptio_F_N : N ; - demugio_V2 : V2 ; - demugitus_A : A ; - demulcatus_A : A ; - demulceo_V2 : V2 ; - demum_Adv : Adv ; - demuneror_V : V ; - demurmuro_V2 : V2 ; - demus_Adv : Adv ; - demussatus_A : A ; - demusso_V2 : V2 ; - demutabilis_A : A ; - demutatio_F_N : N ; - demutator_M_N : N ; - demutilo_V2 : V2 ; - demuto_V : V ; - demuttio_V : V ; - denariarius_A : A ; - denarismus_M_N : N ; - denarium_N_N : N ; - denarius_A : A ; - denarius_M_N : N ; - denarro_V2 : V2 ; - denascor_V : V ; - denaso_V2 : V2 ; - denato_V : V ; - denavigo_V : V ; - denditio_F_N : N ; - dendrachates_F_N : N ; - dendritis_F_N : N ; - dendroforus_M_N : N ; - dendroides_A : A ; - dendroides_M_N : N ; - dendrophorus_M_N : N ; - denecalis_A : A ; - denegatio_F_N : N ; - denego_V2 : V2 ; - denicalis_A : A ; - denigratio_F_N : N ; - denigro_V2 : V2 ; - denique_Adv : Adv ; - denixe_Adv : Adv ; - denominatio_F_N : N ; - denominative_Adv : Adv ; - denominativus_A : A ; - denominator_M_N : N ; - denomino_V2 : V2 ; - denormo_V2 : V2 ; - denotatio_F_N : N ; - denotatus_A : A ; - denotatus_M_N : N ; - denoto_V2 : V2 ; - dens_M_N : N ; - densabilis_A : A ; - densatio_F_N : N ; - densativus_A : A ; - dense_Adv : Adv ; - denseo_V2 : V2 ; - densitas_F_N : N ; - denso_V2 : V2 ; - densus_A : A ; - dentale_N_N : N ; - dentaneus_A : A ; - dentarius_A : A ; - dentarpaga_F_N : N ; - dentatus_A : A ; - dentefaber_A : A ; - dentex_M_N : N ; - dentharpaga_F_N : N ; - denticulatum_N_N : N ; - denticulatus_A : A ; - denticulus_M_N : N ; - dentiducum_N_N : N ; - dentifrangibulum_N_N : N ; - dentifrangibulus_A : A ; - dentifrangibulus_M_N : N ; - dentifricium_N_N : N ; - dentilegus_M_N : N ; - dentio_V : V ; - dentiscalpium_N_N : N ; - dentista_M_N : N ; - dentitio_F_N : N ; - dentix_M_N : N ; - dentrix_M_N : N ; - denubo_V : V ; - denudatio_F_N : N ; - denudator_M_N : N ; - denudo_V2 : V2 ; - denumeratio_F_N : N ; - denumero_V2 : V2 ; - denunciatio_F_N : N ; - denuntiatio_F_N : N ; - denuntiativus_A : A ; - denuntiator_M_N : N ; - denuntio_V : V ; - denuo_Adv : Adv ; - deocco_V2 : V2 ; - deonero_V2 : V2 ; - deontologia_F_N : N ; - deoperio_V2 : V2 ; - deopto_V2 : V2 ; - deoratus_A : A ; - deordinatio_F_N : N ; - deorio_V2 : V2 ; - deorsom_Adv : Adv ; - deorsum_Adv : Adv ; - deorsus_Adv : Adv ; - deosculor_V : V ; - deosum_Adv : Adv ; - depaciscor_V : V ; - depalator_M_N : N ; - depalmo_V2 : V2 ; - depalo_V2 : V2 ; - depango_V2 : V2 ; - depansum_N_N : N ; - deparcus_A : A ; - depasco_V2 : V2 ; - depascor_V : V ; - depastio_F_N : N ; - depauperatio_F_N : N ; - depauperatus_A : A ; - depaupero_V : V ; - depavitus_A : A ; - depeciscor_V : V ; - depectio_F_N : N ; - depecto_V2 : V2 ; - depector_M_N : N ; - depectulatus_M_N : N ; - depeculator_M_N : N ; - depeculo_V2 : V2 ; - depeculor_V : V ; - depello_V2 : V2 ; - dependentia_F_N : N ; - dependeo_V : V ; - dependo_V2 : V2 ; - dependulus_A : A ; - depennatus_A : A ; - depensio_F_N : N ; - deperditio_F_N : N ; - deperditum_N_N : N ; - deperditus_A : A ; - deperdo_V2 : V2 ; - depereo_1_V2 : V2 ; - depereo_2_V2 : V2 ; - depetigo_F_N : N ; - depictio_F_N : N ; - depilatio_F_N : N ; - depilatorium_N_N : N ; - depilatus_A : A ; - depilis_A : A ; - depilo_V2 : V2 ; - depingo_V2 : V2 ; - depinnatus_A : A ; - deplaco_V2 : V2 ; - deplango_V2 : V2 ; - deplano_V2 : V2 ; - deplanto_V2 : V2 ; - deplatio_F_N : N ; - deplector_V : V ; - depleo_V2 : V2 ; - depletura_F_N : N ; - deplexus_A : A ; - deplois_F_N : N ; - deplorabundus_A : A ; - deploratio_F_N : N ; - deploratus_A : A ; - deploro_V : V ; - deplumis_A : A ; - depluo_V : V ; - depoclo_V2 : V2 ; - depoculo_V2 : V2 ; - depolio_V2 : V2 ; - depolitio_F_N : N ; - depompatio_F_N : N ; - depompo_V2 : V2 ; - depondero_V : V ; - deponefacio_V2 : V2 ; - deponefio_V : V ; - deponens_A : A ; - deponens_M_N : N ; - depono_V2 : V2 ; - depontanus_A : A ; - deponto_V2 : V2 ; - depopulatio_F_N : N ; - depopulator_M_N : N ; - depopulatrix_F_N : N ; - depopulo_V2 : V2 ; - depopulor_V : V ; - deportatio_F_N : N ; - deportatorius_A : A ; - deportio_F_N : N ; - deporto_V : V ; - deposco_V2 : V2 ; - depositarius_M_N : N ; - depositio_F_N : N ; - depositivus_A : A ; - depositor_M_N : N ; - depositum_N_N : N ; - depositus_A : A ; - depostulator_M_N : N ; - depostulo_V2 : V2 ; - depraedatio_F_N : N ; - depraedator_M_N : N ; - depraedico_V : V ; - depraedo_V2 : V2 ; - depraedor_V : V ; - depraesentiarum_Adv : Adv ; - deprandis_A : A ; - deprans_A : A ; - depravate_Adv : Adv ; - depravatio_F_N : N ; - depravo_V2 : V2 ; - deprecabilis_A : A ; - deprecabundus_A : A ; - deprecaneus_A : A ; - deprecatio_F_N : N ; - deprecatiuncula_F_N : N ; - deprecativus_A : A ; - deprecator_M_N : N ; - deprecatorius_A : A ; - deprecatrix_F_N : N ; - depreciator_M_N : N ; - deprecio_V2 : V2 ; - depreco_V : V ; - deprecor_V : V ; - deprehendo_V2 : V2 ; - deprehensio_F_N : N ; - deprendo_V2 : V2 ; - deprensa_F_N : N ; - depresse_Adv : Adv ; - depressio_F_N : N ; - depressivus_A : A ; - depressus_A : A ; - depretiator_M_N : N ; - depretio_V2 : V2 ; - deprimo_V2 : V2 ; - deproelians_A : A ; - deproelior_V : V ; - depromo_V2 : V2 ; - depropero_V : V ; - deproperus_A : A ; - depso_V2 : V2 ; - depsticius_A : A ; - depstitius_A : A ; - depubes_A : A ; - depudesco_V : V ; - depudico_V2 : V2 ; - depudt_V0 : V ; - depugis_A : A ; - depugnatio_F_N : N ; - depugno_V : V ; - depuio_V2 : V2 ; - depulpo_V : V ; - depulsio_F_N : N ; - depulso_V2 : V2 ; - depulsor_M_N : N ; - depulsorium_N_N : N ; - depulsorius_A : A ; - depungo_V2 : V2 ; - depuratio_F_N : N ; - depuratus_A : A ; - depurgatio_F_N : N ; - depurgo_V2 : V2 ; - depuro_V2 : V2 ; - deputatio_F_N : N ; - deputatus_M_N : N ; - deputo_V2 : V2 ; - depuvio_V2 : V2 ; - depygis_A : A ; - deque_Adv : Adv ; - dequeror_V : V ; - dequestus_A : A ; - derado_V2 : V2 ; - deraino_V2 : V2 ; - deratio_F_N : N ; - derationo_V : V ; - derbiosus_A : A ; - dercea_F_N : N ; - derecta_Adv : Adv ; - derectarius_M_N : N ; - derecte_Adv : Adv ; - derectiangulus_A : A ; - derectilineus_A : A ; - derectim_Adv : Adv ; - derectio_F_N : N ; - derectitudo_F_N : N ; - derectivum_N_N : N ; - derectivus_A : A ; - derecto_Adv : Adv ; - derector_M_N : N ; - derectorium_N_N : N ; - derectorius_A : A ; - derectum_N_N : N ; - derectura_F_N : N ; - derectus_A : A ; - derectus_M_N : N ; - derelictio_F_N : N ; - derelictor_M_N : N ; - derelictum_N_N : N ; - derelictus_A : A ; - derelictus_M_N : N ; - derelinquo_V2 : V2 ; - derepente_Adv : Adv ; - derepo_V2 : V2 ; - derideo_V2 : V2 ; - deridiculum_N_N : N ; - deridiculus_A : A ; - derigeo_V2 : V2 ; - derigesco_V : V ; - derigo_V2 : V2 ; - deripio_V2 : V2 ; - derisio_F_N : N ; - derisor_M_N : N ; - derisorius_A : A ; - derisus_A : A ; - derisus_M_N : N ; - derivatio_F_N : N ; - derivativum_N_N : N ; - derivativus_A : A ; - derivo_V2 : V2 ; - derodo_V2 : V2 ; - derogatio_F_N : N ; - derogator_M_N : N ; - derogatorius_A : A ; - derogito_V2 : V2 ; - derogo_V : V ; - derosus_A : A ; - deruncino_V2 : V2 ; - deruo_V2 : V2 ; - derupio_V2 : V2 ; - deruptum_N_N : N ; - deruptus_A : A ; - desacrifico_V2 : V2 ; - desaevio_V : V ; - desalto_V2 : V2 ; + dem_2_N : N ; -- [XXHEO] :: community, a people; administrative district (in Attica); tract of land (L+S); + demadesco_V : V ; -- [XXXFS] :: become thoroughly wet; become humid/moist (L+S); + demagis_Adv : Adv ; -- [XXXFS] :: furthermore, moreover; very much (L+S); + demagogicus_A : A ; -- [GXXEK] :: demagogic; + demagogus_M_N : N ; -- [GXXEK] :: demagogue; + demandatio_F_N : N ; -- [DXXFS] :: delivering with commendation; commending; + demando_V2 : V2 ; -- [XXXCO] :: entrust, hand over (to), commit; lay (duty on a person), charge (that); + demano_V : V ; -- [XXXEO] :: run/flow down; percolate; flow different ways (L+S); descend; descend from; + demarcesco_V : V ; -- [DXXFS] :: wither, fade away; + demarchia_F_N : N ; -- [BLHIO] :: office and dignity of a demarch (magistrate of a Greek deme/township); + demarchisas_A : A ; -- [BLHIO] :: having served as demarch (magistrate of a Greek deme/township); + demarchus_M_N : N ; -- [BLHFO] :: demarch (magistrate of a Greek deme/township); president of a demos (L+S); + dematricatus_A : A ; -- [DBXFS] :: bled from the vena matricalis in the neck; + demeaculum_N_N : N ; -- [XXXFO] :: decent underground; passage underground (L+S); + demelior_V : V ; -- [FXXEE] :: consume, destroy, demolish, lay waste; + demens_A : A ; -- [XXXCO] :: out of one's mind/senses; demented, mad, wild, raving; reckless, foolish; + demensio_F_N : N ; -- [DSXFS] :: measuring; (measurement?); + demensum_N_N : N ; -- [XXXES] :: measured allowance; ration; (of slaves); + demensus_A : A ; -- [XXXFO] :: regular; measured; + dementer_Adv : Adv ; -- [XXXDO] :: madly, crazily; foolishly (L+S); + dementia_F_N : N ; -- [XBXCO] :: madness, insanity; derangement of the mind; distraction, folly; + dementio_V : V ; -- [XXXEO] :: become deranged; lose one's reason; be mad, rave; + demento_V : V ; -- [DXXDS] :: drive mad/crazy; bewitch; delude; rave, be out of one's mind; + demeo_V : V ; -- [XXXEO] :: descend, go down; + demereo_V2 : V2 ; -- [XXXCO] :: oblige, please, win the favor of; earn, merit, deserve (well of); + demereor_V : V ; -- [XXXCO] :: oblige/please, win favor of; earn/merit, deserve (well of); lay under obligation + demergo_V2 : V2 ; -- [XXXBO] :: submerge/sink; plunge/dip/immerse; set; retract; conceal; bury; overwhelm/engulf + demeritum_N_N : N ; -- [FXXEE] :: defect; demerit; + demersio_F_N : N ; -- [DXXES] :: sinking, being sunk down; + demersus_A : A ; -- [DXXES] :: depressed; + demersus_M_N : N ; -- [XXXFO] :: action of sinking/submerging; a sinking (L+S); + demetior_V : V ; -- [XSXCO] :: weigh out, measure by weight; measure out/off; (space/time/words); lay out; + demeto_V2 : V2 ; -- [XAXCO] :: reap, cut, mow; cut off/down (body); pick (fruit); gather; take (honey); shear; + demetor_V : V ; -- [XSXFO] :: measure, mark out; + demigratio_F_N : N ; -- [XXXFO] :: emigration, action of going out as colonists; + demigro_V : V ; -- [XXXCO] :: emigrate; migrate; depart/remove/withdraw/go away (from situation/local/thing); + deminoratio_F_N : N ; -- [DXXFS] :: degradation; injury; + deminoro_V2 : V2 ; -- [DXXFS] :: lessen, diminish; (in honor/rank); + deminuo_V2 : V2 ; -- [XXXBO] :: |weaken; curtail; impair; understate; make diminutive; take away/deduct/deprive; + deminutio_F_N : N ; -- [XXXBO] :: |understatement; formation of diminutive; [capitis ~ => loss of civil rights]; + deminutive_Adv : Adv ; -- [DGXES] :: as diminutive (noun); (grammar); + deminutivus_A : A ; -- [DGXES] :: diminutive; (grammar); [w/nomen => diminutive noun]; + deminutus_A : A ; -- [DXXFS] :: diminished; small, diminutive; + demiror_V : V ; -- [XXXCO] :: wonder (I wonder how/why); be amazed/utterly astonished at, at loss to imagine; + demisse_Adv : Adv ; -- [XXXCO] :: dejectedly, in a despondent manner; low/humbly/meekly/modestly; at low altitude; + demissicius_A : A ; -- [XXXFO] :: reaching to the ground; (of clothes); hanging down, flowing, long (L+S); + demissio_F_N : N ; -- [XXXEO] :: letting/lowering down; extension downward; sinking; dejection/lowering of spirit + demissitius_A : A ; -- [XXXFS] :: reaching to the ground; (of clothes); hanging down, flowing, long (L+S); + demissus_A : A ; -- [XXXBO] :: |lowly/degraded/abject; downhearted/low/downcast/dejected/discouraged/despondent + demitigo_V2 : V2 ; -- [XXXFO] :: calm (person) down; (PASS) become milder/more lenient (L+S); + demitto_V2 : V2 ; -- [XXXAO] :: |descend by race/birth; leave (will); let issue rest (on evidence); fell (tree); + demiurgus_M_N : N ; -- [XLHEO] :: magistrate in various Greek states; play by Turpilus; + demo_V2 : V2 ; -- [XXXBO] :: take/cut away/off, remove, withdraw; subtract; take away from; + democrata_M_N : N ; -- [GXXEK] :: democrat; + democratia_F_N : N ; -- [HXXEZ] :: democracy; + democraticus_A : A ; -- [GXXEK] :: democratic; + democratizatio_F_N : N ; -- [GXXEK] :: democratization; + demogrammateus_M_N : N ; -- [DLXFS] :: public scribe; + demographia_F_N : N ; -- [GXXEK] :: demography; + demographicus_A : A ; -- [HSXFE] :: demographic; + demographus_M_N : N ; -- [GXXEK] :: demographer; + demolio_V2 : V2 ; -- [XXXCO] :: throw/cast off, remove; pull/tear down, demolish/destroy/lay waste; abolish; + demolior_V : V ; -- [XXXCO] :: throw/cast off, remove; pull/tear down, demolish/destroy/lay waste; abolish; + demolitio_F_N : N ; -- [XXXDO] :: demolition; act of demolishing, pulling/tearing down; undermining (L+S); + demolitor_M_N : N ; -- [XXXFO] :: demolisher, agent/instrument of demolition; that which breaks down (L+S); + demonstrabilis_A : A ; -- [DGXFS] :: demonstrable; + demonstratio_F_N : N ; -- [XXXBO] :: |indication; identification; act of pointing out/showing; (boundary of estate); + demonstrativa_F_N : N ; -- [XGXEO] :: demonstrative oratory (esp. vituperation); display/showing off; + demonstrative_Adv : Adv ; -- [DGXFS] :: demonstratively; + demonstrativus_A : A ; -- [XGXDO] :: demonstrative; (oratory esp. vituperation); for display/show off; designating; + demonstrator_M_N : N ; -- [XGXEO] :: indicator, one who points out/indicates; exhibitor (L+S); + demonstratorius_A : A ; -- [XXXFO] :: concerned with definition or specification; pointing out, indicating (L+S); + demonstro_V2 : V2 ; -- [XXXBO] :: |reveal, mention, refer to; allege; prove, demonstrate; represent; recommend; + demoratio_F_N : N ; -- [DXXFS] :: lingering, abiding, remaining; + demordeo_V2 : V2 ; -- [XXXNO] :: bite off; + demorior_V : V ; -- [XXXCO] :: die; die off/out (group/class), become extinct; be gone; long for much (w/ACC); + demoror_V : V ; -- [XXXCO] :: detain, cause delay, keep waiting/back, hold up; keep (from); delay/linger/stay; + demorsico_V2 : V2 ; -- [XXXFO] :: bite pieces off; nibble at; bite off; + demorsito_V2 : V2 ; -- [DXXFS] :: bite pieces off; nibble at; bite off; + demortuus_A : A ; -- [BXXFS] :: obsolete; + demoscopia_F_N : N ; -- [GXXEK] :: opinion-poll; + demoscopicus_A : A ; -- [GXXEK] :: poll-, of poll/polls; + demoveo_V2 : V2 ; -- [XXXCO] :: |dislodge; turn aside; remove/get rid of; depose/oust; banish; dissociate; + demptio_F_N : N ; -- [XXXFO] :: removal, action of taking away; + demugio_V2 : V2 ; -- [XAXFO] :: fill with the sound of lowing/bellowing; + demugitus_A : A ; -- [XXXFO] :: filled with the sound of lowing/bellowing; + demulcatus_A : A ; -- [DXXFS] :: beaten/cudgeled soundly; + demulceo_V2 : V2 ; -- [XXXDO] :: stroke, stroke down, rub/stroke caressingly/soothingly; soothe/entrance/charm; + demum_Adv : Adv ; -- [XXXBO] :: |other possibilities being dismissed; only/alone, and no other/nowhere else; + demuneror_V : V ; -- [DLXFS] :: reward; remunerate, pay the fee (to/for); + demurmuro_V2 : V2 ; -- [XXXFO] :: mutter (set of words) through; mutter over (L+S); + demus_Adv : Adv ; -- [XXXEO] :: |other possibilities being dismissed; only/alone, and no other/nowhere else; + demussatus_A : A ; -- [DXXES] :: borne silently; + demusso_V2 : V2 ; -- [XXXFO] :: swallow/bear/endure in silence; + demutabilis_A : A ; -- [DEXES] :: changeable; + demutatio_F_N : N ; -- [XXXFO] :: transformation; change, alteration (esp. for the worse Cas); + demutator_M_N : N ; -- [DXXFS] :: changer, transmuter; + demutilo_V2 : V2 ; -- [XXXFO] :: lop off; + demuto_V : V ; -- [XXXCO] :: change/alter/transform; deviate from way/goal, fail; depart/be different from; + demuttio_V : V ; -- [DXXFS] :: speak very softly; + denariarius_A : A ; -- [XLXFO] :: related to the denarius (Roman silver coin); + denarismus_M_N : N ; -- [DLXFS] :: kind of tax; + denarium_N_N : N ; -- [XLXDO] :: denarius (silver coin=10/16/18 asses); (~ aureus=25 silver ~); drachma weight; + denarius_A : A ; -- [XLXCO] :: containing/related to the number ten; worth a denarius (Roman silver coin); + denarius_M_N : N ; -- [XLXBO] :: denarius (silver coin=10/16/18 asses); (~ aureus=25 silver ~); drachma weight; + denarro_V2 : V2 ; -- [XXXDO] :: tell/relate fully/in full; give a full account of; recount, narrate (L+S); + denascor_V : V ; -- [XXXDO] :: dwindle, go back in growth; lose vigor; perish, die (L+S); + denaso_V2 : V2 ; -- [BXXFO] :: remove the nose (from a person's face); deprive of the nose (L+S); + denato_V : V ; -- [XXXFO] :: swim downstream; swim down (L+S); + denavigo_V : V ; -- [XXXIO] :: sail down; + denditio_F_N : N ; -- [XBXFS] :: teething (of young); + dendrachates_F_N : N ; -- [XXXNO] :: kind of agate; + dendritis_F_N : N ; -- [XXXNO] :: precious stone (unidentified); + dendroforus_M_N : N ; -- [XEXIO] :: tree-bearer; (timber workers associated with Cybele/Attis); Silvanus; carpenter; + dendroides_A : A ; -- [XAXNO] :: tree-like; (defining a botanical species); + dendroides_M_N : N ; -- [XAXNS] :: spurge (tithymalus); sea-spurge (tithymalis); + dendrophorus_M_N : N ; -- [XEXIO] :: tree-bearer; (timber workers associated with Cybele/Attis); Silvanus; carpenter; + denecalis_A : A ; -- [XEXEO] :: releasing from death; (days set aside for purification of family of deceased); + denegatio_F_N : N ; -- [XXXEE] :: denial; rejection; refusal; + denego_V2 : V2 ; -- [XXXCO] :: deny (fact/allegation); say that ... not; deny/refuse (favor/request); + denicalis_A : A ; -- [XEXEO] :: releasing from death; (days set aside for purification of family of deceased); + denigratio_F_N : N ; -- [DXXFS] :: blackening; + denigro_V2 : V2 ; -- [XXXDO] :: blacken, make black; color very black, blacken utterly (L+S); asperse, defame; + denique_Adv : Adv ; -- [XXXAO] :: finally, in the end; and then; at worst; in short, to sum up; in fact, indeed; + denixe_Adv : Adv ; -- [BXXFS] :: earnestly, assiduously, with strenuous efforts; + denominatio_F_N : N ; -- [XGXFO] :: metonymy; derivation; substitution of name of object for another related; + denominative_Adv : Adv ; -- [XGXFS] :: by derivation; + denominativus_A : A ; -- [XGXFS] :: derived, formed by derivation; pertaining to derivation; + denominator_M_N : N ; -- [GSXEK] :: denominator (math.); + denomino_V2 : V2 ; -- [XGXCO] :: denominate, designate; give a name to (usu. from source expressed/implied); + denormo_V2 : V2 ; -- [XXXFO] :: put out of shape; make crooked/irregular; disfigure (L+S); + denotatio_F_N : N ; -- [XGXFO] :: censure; disparagement; marking, pointing out (L+S); + denotatus_A : A ; -- [DXXFS] :: conspicuous, marked; marked out; + denotatus_M_N : N ; -- [DGXFS] :: marking, pointing out; + denoto_V2 : V2 ; -- [XXXCO] :: mark (down); lay on (color); observe; indicate/point out; imply; brand; censure; + dens_M_N : N ; -- [XBXBO] :: tooth; tusk; ivory; tooth-like thing, spike; destructive power, envy, ill will; + densabilis_A : A ; -- [DXXES] :: astringent, binding; + densatio_F_N : N ; -- [XXXFO] :: thickening; condensation; + densativus_A : A ; -- [DXXES] :: astringent, binding; + dense_Adv : Adv ; -- [XXXCO] :: closely, thickly, close together; compactly; concisely; often, frequently; + denseo_V2 : V2 ; -- [XXXCO] :: thicken/condense, press/crowd together; multiply; cause to come thick and fast; + densitas_F_N : N ; -- [XXXCO] :: thickness; density; multitude, abundance; crowding together; (of style); + denso_V2 : V2 ; -- [XXXCO] :: thicken/condense/concentrate/compress/coagulate; press/pack/crowd together; + densus_A : A ; -- [XXXBO] :: |frequent, recurring; terse/concise (style); harsh/horse/thick (sound/voice); + dentale_N_N : N ; -- [XAXDO] :: sharebeam/sole of a plowshare; plowshare (L+S); (pl. classical); + dentaneus_A : A ; -- [DXXFS] :: threatening; + dentarius_A : A ; -- [DBXFS] :: pertaining to the teeth; that cures toothache (w/herba); + dentarpaga_F_N : N ; -- [DBXFS] :: instrument for pulling/extraction of teeth; + dentatus_A : A ; -- [XBXCO] :: toothed; w/(prominent/displayed) teeth; w/spikes/teeth/gears; polished w/tooth; + dentefaber_A : A ; -- [XTXFO] :: toothed; spiked; + dentex_M_N : N ; -- [XAXFO] :: kind of bream; + dentharpaga_F_N : N ; -- [XBXFO] :: instrument for pulling/extraction of teeth; + denticulatum_N_N : N ; -- [FXXEE] :: lace; + denticulatus_A : A ; -- [XXXDO] :: finely toothed, serrated/denticulated, furnished with small teeth/projections; + denticulus_M_N : N ; -- [XXXES] :: little/small tooth/fang/cog; farm tool w/teeth; modillion; dental ornament; + dentiducum_N_N : N ; -- [DBXFS] :: instrument for pulling/extraction of teeth; + dentifrangibulum_N_N : N ; -- [BXXFS] :: fist (which knocks out teeth); tooth breaker; + dentifrangibulus_A : A ; -- [XXXFO] :: that/who breaks teeth; + dentifrangibulus_M_N : N ; -- [BXXFS] :: tough, goon, one who knocks out teeth; tooth breaker; + dentifricium_N_N : N ; -- [XBXEO] :: dentifrice, tooth powder, toothpaste; + dentilegus_M_N : N ; -- [BXXFO] :: one who collects teeth (that were knocked out); (factious); tooth-gatherer; + dentio_V : V ; -- [XXXEO] :: teethe, cut teeth; (of teeth) grow longer (for lack of food to eat); + dentiscalpium_N_N : N ; -- [XXXFO] :: toothpick; + dentista_M_N : N ; -- [GXXEK] :: dentist; + dentitio_F_N : N ; -- [XBXNO] :: teething, dentation; + dentix_M_N : N ; -- [XAXFS] :: kind of sea fish; + dentrix_M_N : N ; -- [XAXFS] :: kind of sea fish; + denubo_V : V ; -- [XXXCO] :: marry; marry off; (from paternal home) (of a woman); marry beneath station; + denudatio_F_N : N ; -- [EXXFS] :: uncovering, laying bare; + denudator_M_N : N ; -- [XXXIO] :: stripper; (gymnasium attendant/valet); + denudo_V2 : V2 ; -- [XXXCO] :: strip, denude, lay bare, uncover; reveal/disclose; expose; rob/plunder/despoil; + denumeratio_F_N : N ; -- [XSXDO] :: action/process of counting/reckoning, calculation; enumeration of points; + denumero_V2 : V2 ; -- [XXXEO] :: pay (money) in full; pay down (loan); + denunciatio_F_N : N ; -- [DXXES] :: |declaration (war); injunction; admonition; summons, formal legal notice; + denuntiatio_F_N : N ; -- [XXXCO] :: |declaration (war); injunction; admonition; summons, formal legal notice; + denuntiativus_A : A ; -- [DXXFS] :: admonitory, conveying a warning, serving to admonish; indicatory; + denuntiator_M_N : N ; -- [DLXIO] :: |police officer; police inspector; + denuntio_V : V ; -- [XXXAO] :: |announce, give official information; declare; summon (witness)/deliver summons; + denuo_Adv : Adv ; -- [XXXCO] :: anew, over again, from a fresh beginning; for a second time, once more; in turn; + deocco_V2 : V2 ; -- [XAXNO] :: harrow, run the harrows over (crop to remove weeds and ventilate the soil); + deonero_V2 : V2 ; -- [XXXFO] :: unload, unburden, remove (burden); + deontologia_F_N : N ; -- [GXXEK] :: dentistry; + deoperio_V2 : V2 ; -- [XXXNO] :: uncover, lay bare; open up; disclose (L+S); + deopto_V2 : V2 ; -- [XXXFO] :: choose, select; + deoratus_A : A ; -- [XXXFO] :: pleaded; pleading; + deordinatio_F_N : N ; -- [FXXEE] :: disorder; + deorio_V2 : V2 ; -- [XXXFO] :: drain off; skim off (L+S); (late) swallow, swallow down; + deorsom_Adv : Adv ; -- [XXXFO] :: down, downwards, beneath, below; (motion/direction/order); in lower situation; + deorsum_Adv : Adv ; -- [XXXCO] :: down, downwards, beneath, below; (motion/direction/order); in lower situation; + deorsus_Adv : Adv ; -- [XXXCO] :: down, downwards, beneath, below; (motion/direction/order); in lower situation; + deosculor_V : V ; -- [XXXEO] :: kiss warmly/affectionately; praise/laud highly (L+S); + deosum_Adv : Adv ; -- [XXXIO] :: down, downwards, beneath, below; (motion/direction/order); in lower situation; + depaciscor_V : V ; -- [XXXEO] :: bargain for; make a bargain for or about, agree (upon); come to terms; + depalator_M_N : N ; -- [DXXFS] :: one who marks out the bounds; founder; + depalmo_V2 : V2 ; -- [XXXFO] :: slap, strike with the open hand; box on the ear (L+S); + depalo_V2 : V2 ; -- [DXXFS] :: disclose, reveal; + depango_V2 : V2 ; -- [XXXDO] :: drive down (into); fix into the ground (L+S); + depansum_N_N : N ; -- [XXXEO] :: payment; expenditure; [actio ~ => action for double expense incurred]; + deparcus_A : A ; -- [XXXFO] :: miserly, thoroughly mean/stingy; niggardly, excessively sparing (L+S); + depasco_V2 : V2 ; -- [XXXBO] :: graze/feed/pasture (cattle); devour/eat up; waste/consume (w/fire); lay waste; + depascor_V : V ; -- [XXXDS] :: |cull, select; prune away, remove; destroy, waste; lay waste; + depastio_F_N : N ; -- [XAXNO] :: action of grazing down or stripping the food from; feeding (L+S); + depauperatio_F_N : N ; -- [FXXEM] :: impoverishment; + depauperatus_A : A ; -- [FXXEB] :: impoverished; + depaupero_V : V ; -- [FXXEM] :: impoverish; + depavitus_A : A ; -- [DXXFS] :: beaten/trampled down; + depeciscor_V : V ; -- [XXXCO] :: bargain for; make a bargain for or about, agree (upon); come to terms; + depectio_F_N : N ; -- [DLXFS] :: contract, bargain, agreement; + depecto_V2 : V2 ; -- [XXXDO] :: comb out; comb thoroughly; comb off/away; + depector_M_N : N ; -- [XLXFO] :: one who settles/arranges discreditably; embezzler; fraud; + depectulatus_M_N : N ; -- [XLXEO] :: fraud, act of defrauding/plundering + depeculator_M_N : N ; -- [XLXEO] :: fraud; plunderer, embezzler (Cas); + depeculo_V2 : V2 ; -- [XXXEO] :: defraud/embezzle, deprive by fraud; steal/rob/plunder/despoil/rifle; diminish; + depeculor_V : V ; -- [XXXCO] :: defraud/embezzle, deprive by fraud; steal/rob/plunder/despoil/rifle; diminish; + depello_V2 : V2 ; -- [XXXAO] :: |dislodge; avert; rebut; veer away; force to withdraw/desist; turn out/dismiss; + dependentia_F_N : N ; -- [FXXEE] :: dependence; + dependeo_V : V ; -- [XXXCO] :: hang on/from/down (from); depend; depend upon/on; proceed/be derived from; + dependo_V2 : V2 ; -- [XXXCO] :: pay over/down; pay (penalty); expend (time/labor); spend, lay out; bestow; + dependulus_A : A ; -- [XXXFO] :: hanging down (from); + depennatus_A : A ; -- [DXXFS] :: winged; + depensio_F_N : N ; -- [DLXFS] :: expenditure; outlay; + deperditio_F_N : N ; -- [EXXEE] :: loss; + deperditum_N_N : N ; -- [XXXEO] :: that which is permanently lost; + deperditus_A : A ; -- [XXXEO] :: corrupt, abandoned; + deperdo_V2 : V2 ; -- [XXXCO] :: lose permanently/utterly (destruction); be deprived/desperate; destroy, ruin; + depereo_1_V : V ; -- [XXXCO] :: perish/die; be lost/totally destroyed; be much in love with/love to distraction; + depereo_2_V : V ; -- [XXXCO] :: perish/die; be lost/totally destroyed; be much in love with/love to distraction; + depetigo_F_N : N ; -- [XBXEO] :: kind of skin eruption; leprosy, scab (L+S); + depictio_F_N : N ; -- [DXXES] :: description, delineation; characterization; + depilatio_F_N : N ; -- [GXXEK] :: depilation; + depilatorium_N_N : N ; -- [GXXEK] :: depilatorium; place where hair is removed; + depilatus_A : A ; -- [XXXEO] :: having one's hair/plumage plucked; swindled, plucked, fleeced; + depilis_A : A ; -- [XBXEO] :: hairless; without hair; plucked; + depilo_V2 : V2 ; -- [XXXEC] :: strip hair/feathers; pull out hair; pluck feathers; peel skin; plunder, cheat; + depingo_V2 : V2 ; -- [XXXCO] :: paint, depict, portray; describe; decorate/color w/paint; embroider; + depinnatus_A : A ; -- [DXXFS] :: winged; + deplaco_V2 : V2 ; -- [DXXES] :: appease, propitiate; + deplango_V2 : V2 ; -- [XXXEO] :: mourn by beating the breast; bewail, lament (L+S); + deplano_V2 : V2 ; -- [DTXES] :: level off, make level/even; + deplanto_V2 : V2 ; -- [XAXCO] :: sever/break off (twig/branch/shoot); plant/set in the ground (L+S); + deplatio_F_N : N ; -- [XXXIO] :: marking off with stakes/palings; marking time by shadows of stakes (L+S); + deplector_V : V ; -- [XXXFO] :: claw down, pull down in one's grasp; + depleo_V2 : V2 ; -- [XBXCO] :: drain/draw off, empty out; bleed/let (blood); relieve (of); exhaust; subtract; + depletura_F_N : N ; -- [DBXFS] :: bleeding, blood-letting; + deplexus_A : A ; -- [DXXES] :: clasping; grasping; + deplois_F_N : N ; -- [EXXFW] :: robe; cloak; double robe wrapped around body; double wrapping; layer (Souter); + deplorabundus_A : A ; -- [XXXFO] :: complaining/weeping bitterly; + deploratio_F_N : N ; -- [XXXFO] :: lamenting, bewailing, action of lamenting/complaining; + deploratus_A : A ; -- [XXXDO] :: miserable; mournful; hopeless, incurable (disease/patient); + deploro_V : V ; -- [XXXCO] :: weep/lament/mourn for/cry over; deplore, complain of; lose; despair/give up on; + deplumis_A : A ; -- [XAXNO] :: moulted; denuded of feathers; without feathers (L+S); featherless; + depluo_V : V ; -- [XXXEO] :: rain down; [depluta terra => drenched (L+S)]; + depoclo_V2 : V2 ; -- [XXXFO] :: ruin by expenditure on cups/drinking; + depoculo_V2 : V2 ; -- [XXXFO] :: ruin by expenditure on cups/drinking; + depolio_V2 : V2 ; -- [XXXEO] :: polish thoroughly; smooth, polish off (L+S); + depolitio_F_N : N ; -- [XAXFO] :: careful/thorough cultivation/polish; perfection, finished/perfect thing (L+S); + depompatio_F_N : N ; -- [DXXFS] :: dishonoring; depriving of ornament; + depompo_V2 : V2 ; -- [DXXFS] :: dishonor; deprive of ornament; + depondero_V : V ; -- [DXXFS] :: weigh down, press down by its weight; + deponefacio_V2 : V2 ; -- [XXXFO] :: deposit, put down; + deponefio_V : V ; -- [XXXFO] :: be deposited/put down; (deponefacio PASS); + deponens_A : A ; -- [DGXES] :: deponent; of a verb which in passive has active meaning; + deponens_M_N : N ; -- [DGXES] :: deponent; a verb which in passive has active meaning; + depono_V2 : V2 ; -- [XXXAO] :: ||pull down, demolish; plant (seedlings); set up, place; lay to rest; fire; + depontanus_A : A ; -- [XXXFO] :: thrown off bridge; (old men, 60, who were thrown off bridge?); + deponto_V2 : V2 ; -- [XXXFO] :: throw from a bridge; + depopulatio_F_N : N ; -- [XWXFO] :: plundering/pillaging/sacking/marauding/ravaging/laying waste; + depopulator_M_N : N ; -- [XWXEO] :: plunderer, pillager, ravager; one who sacks; marauder; + depopulatrix_F_N : N ; -- [DWXFS] :: she who spoils/destroys; plunderer/pillager/ravager (female); + depopulo_V2 : V2 ; -- [XWXDO] :: sack/plunder/pillage/rob/despoil; ravage/devastate/destroy/lay waste; overgraze; + depopulor_V : V ; -- [XWXCO] :: sack/plunder/pillage/rob/despoil; ravage/devastate/destroy/lay waste; overgraze; + deportatio_F_N : N ; -- [XXXDO] :: deportation, conveyance to exile; taking/carrying home/away; transportation; + deportatorius_A : A ; -- [DXXFS] :: transportation-, belonging to removal/transportation; + deportio_F_N : N ; -- [EXXEW] :: carrying, conveying; conveyance; transportation; + deporto_V : V ; -- [XXXBO] :: bring, convey (to); carry along/down (current); transport; take/bring home; + deposco_V2 : V2 ; -- [XXXCO] :: demand peremptorily; ask for earnestly; require; request earnestly; challenge; + depositarius_M_N : N ; -- [XXXEO] :: person in whose care property is deposited; depositor; trustee; depositary; + depositio_F_N : N ; -- [DXXCS] :: ||laying down/aside, putting off; burying/depositing in earth; parting from; + depositivus_A : A ; -- [DXXFS] :: deposit-, of/belonging to a deposit; + depositor_M_N : N ; -- [XXXEO] :: depositor, one who deposits (money); who gives up (position)/disowns/disclaims; + depositum_N_N : N ; -- [XLXDO] :: deposit, trust; money placed on deposit/safe keeping; contract on trust money; + depositus_A : A ; -- [XXXDO] :: despaired of/given up; deposited (L+S); of money placed on deposit/safe keeping; + depostulator_M_N : N ; -- [DEXFS] :: one who demands; (person for punishment/torture); + depostulo_V2 : V2 ; -- [XXXFO] :: demand, press for; require earnestly (L+S); + depraedatio_F_N : N ; -- [DWXES] :: plundering, pillaging; + depraedator_M_N : N ; -- [DWXES] :: plunderer/pillager; + depraedico_V : V ; -- [FXXFM] :: preach against; + depraedo_V2 : V2 ; -- [DWXFS] :: exhaust by plundering/pillaging; plunder, pillage (L+S); + depraedor_V : V ; -- [XWXEO] :: exhaust by plundering/pillaging; plunder, pillage (L+S); + depraesentiarum_Adv : Adv ; -- [XXXFO] :: here and now; now, at the present (L+S); + deprandis_A : A ; -- [DXXFS] :: fasting; + deprans_A : A ; -- [XXXFO] :: fasting; + depravate_Adv : Adv ; -- [XXXFO] :: perversely, wrongly; + depravatio_F_N : N ; -- [XXXCO] :: abnormality/deformity, deviation in appearance/behavior; perversity/perversion; + depravo_V2 : V2 ; -- [XXXCO] :: distort/deform/twist, make crooked; mislead/pervert; deprave, corrupt; + deprecabilis_A : A ; -- [EEXFS] :: exorable; that may be entreated; accessible to entreaty/begging/prayer; + deprecabundus_A : A ; -- [XXXFO] :: entreating earnestly; + deprecaneus_A : A ; -- [DEXFS] :: exorable; that may be entreated; accessible to entreaty/begging/prayer; + deprecatio_F_N : N ; -- [XEXCO] :: prayer to avert/ward off; invocation; supplication/entreaty/plea; extenuation; + deprecatiuncula_F_N : N ; -- [DXXFS] :: little deprecation/plea for mercy; trifling plea for pardon; + deprecativus_A : A ; -- [DXXES] :: deprecative; praying for deliverance from evil; + deprecator_M_N : N ; -- [XXXCO] :: intercessor, one pleading for mercy; go-between; champion/advocate; mediator; + deprecatorius_A : A ; -- [EEXFS] :: deprecatory; that prays for deliverance; expressing hope something be averted; + deprecatrix_F_N : N ; -- [DXXFS] :: intercessor (female), one pleading for mercy; go-between; advocate; mediator; + depreciator_M_N : N ; -- [DXXFS] :: depreciator, one who depreciates/lowers value/undervalues; + deprecio_V2 : V2 ; -- [DXXES] :: depreciate, lower the value of; + depreco_V : V ; -- [EXXFW] :: avert by prayer; entreat/pray/beg; intercede/beg pardon/mercy/relief/exemption; + deprecor_V : V ; -- [XXXAO] :: avert by prayer; entreat/pray/beg; intercede/beg pardon/mercy/relief/exemption; + deprehendo_V2 : V2 ; -- [XXXAO] :: |discover, discern, recognize; detect; indicate, reveal; embarrass; + deprehensio_F_N : N ; -- [XXXEO] :: detection, act of coming upon and catching; surprising (L+S); seizing; + deprendo_V2 : V2 ; -- [XPXAO] :: |discover, discern, recognize; detect; indicate, reveal; embarrass; + deprensa_F_N : N ; -- [DWXFS] :: species of military punishment; (more than castigatio, less than ignominia); + depresse_Adv : Adv ; -- [XXXFO] :: deeply; deep/way down; + depressio_F_N : N ; -- [XXXEO] :: lowering, sinking down (action of); depression (L+S); nervous breakdown (Cal); + depressivus_A : A ; -- [GXXEK] :: depressive; + depressus_A : A ; -- [XXXCO] :: |reaching/sloping down; base/mean, pedestrian, lacking moral/style; depressed; + depretiator_M_N : N ; -- [DXXFS] :: depreciator, one who depreciates/lowers value/undervalues; + depretio_V2 : V2 ; -- [XXXEO] :: depreciate, lower the value of; + deprimo_V2 : V2 ; -- [XXXAO] :: |humble, reduce position/fortune/value; lower pitch (sound)/brightness (color); + deproelians_A : A ; -- [XXXFC] :: struggling violently; + deproelior_V : V ; -- [XWXFO] :: fight/struggle/war fiercely/violently, battle; + depromo_V2 : V2 ; -- [XXXCO] :: bring/draw out, fetch, produce (from container/store); bring/utter (info); + depropero_V : V ; -- [XXXDO] :: hurry/hasten/make haste to complete/finish (w/INF); prepare hastily (L+S); + deproperus_A : A ; -- [DXXFS] :: hastening/hurrying, making great haste; + depso_V2 : V2 ; -- [XXXFS] :: |dishonor; have improper sex; (rude); + depsticius_A : A ; -- [XXXFO] :: kneaded, made by kneading; + depstitius_A : A ; -- [BXXFS] :: kneaded, made by kneading; + depubes_A : A ; -- [XXXFS] :: immature, not a full age; + depudesco_V : V ; -- [XXXEO] :: put off all shame; become shameless (L+S); + depudico_V2 : V2 ; -- [DXXFS] :: violate, dishonor; deflower, deprive of virginity (Sex); + depudt_V0 : V ; -- [XXXFO] :: make/be utterly/greatly ashamed (W/INF); not to be ashamed. be shameless (L+S); + depugis_A : A ; -- [XBXFO] :: having meager/skinny/thin buttocks; + depugnatio_F_N : N ; -- [XWXFO] :: method of fighting a battle; violent fighting (L+S); eager contest; + depugno_V : V ; -- [XWXCO] :: fight hard/it out, do battle; fight against and kill (in arena); stop fighting; + depuio_V2 : V2 ; -- [XXXFO] :: beat thoroughly; strike, beat; + depulpo_V : V ; -- [DBXFS] :: grow lean/thin; lose flesh; + depulsio_F_N : N ; -- [XXXCO] :: thrusting down; averting/lowering/repelling/warding off; rebuttal/rejoinder; + depulso_V2 : V2 ; -- [XXXFO] :: push/thrust away; push aside (L+S); + depulsor_M_N : N ; -- [XXXEO] :: one who repels/averts/removes/drives away; (of Jupiter as averter of evil); + depulsorium_N_N : N ; -- [XXXEO] :: spells (pl.) to avert evil; + depulsorius_A : A ; -- [XXXEO] :: that averts evil; serving to avert (L+S); + depungo_V2 : V2 ; -- [XLXFO] :: indicate by pricking (in accounts); mark off (L+S); designate; + depuratio_F_N : N ; -- [GXXEK] :: refinement; + depuratus_A : A ; -- [FEXEF] :: purified, made/become free of impurities; + depurgatio_F_N : N ; -- [DBXFS] :: cleaning by purgatives; purging; + depurgo_V2 : V2 ; -- [XXXCO] :: clean out/away (impurities), remove dirt/offal from; rid (things of); purge; + depuro_V2 : V2 ; -- [FXXCM] :: purify; refine; clear, discharge (of debt); + deputatio_F_N : N ; -- [FXXDE] :: deputation; assignment, appointment; + deputatus_M_N : N ; -- [GXXEK] :: deputy; + deputo_V2 : V2 ; -- [XXXCO] :: prune/cut away/back; regard/esteem; define as/assign to/classify; post/second; + depuvio_V2 : V2 ; -- [XXXEO] :: beat thoroughly; strike, beat; + depygis_A : A ; -- [XBXFS] :: having meager/skinny/thin buttocks; + deque_Adv : Adv ; -- [XXXFS] :: downwards; + dequeror_V : V ; -- [XXXEO] :: bewail; complain of; + dequestus_A : A ; -- [XXXES] :: having deeply deplored. bitterly complained of; + derado_V2 : V2 ; -- [XXXCO] :: scrape/rub/smooth off/away (surface of); graze; shave/cut off (hair/head); + deraino_V2 : V2 ; -- [FLXEM] :: deraign; establish title; vindicate; + deratio_F_N : N ; -- [FLXFY] :: deraignment; disarrangement; E:discharge (from monastic order); + derationo_V : V ; -- [FLXEY] :: prove; establish; deraign; disarrange; E:be discharged (from monastic order); + derbiosus_A : A ; -- [DBXFS] :: scabby; + dercea_F_N : N ; -- [DAXFS] :: plant; species of solanum; (also called herba Apollinaris); + derecta_Adv : Adv ; -- [XXXFS] :: perpendicularly; straight down; + derectarius_M_N : N ; -- [XLXFS] :: burglar; sneak-thief; one who secretly enters a home to steal; + derecte_Adv : Adv ; -- [XXXEO] :: in straight line; in straightforward order (of words); directly (L+S); straight; + derectiangulus_A : A ; -- [DSXFS] :: rectangular, right-angled; + derectilineus_A : A ; -- [DSXFS] :: rectilinear; in a straight line; + derectim_Adv : Adv ; -- [XXXFO] :: in a regular manner; directly, straightaway (L+S); + derectio_F_N : N ; -- [EXXDP] :: |sending (to place); right living; righteousness; fairness/justice; correction; + derectitudo_F_N : N ; -- [DXXFS] :: rightness, correctness; fairness; + derectivum_N_N : N ; -- [GXXEK] :: directive; guideline; + derectivus_A : A ; -- [FXXEE] :: directive; helpful, positive; directing (Cal); guiding; + derecto_Adv : Adv ; -- [XXXDO] :: straight, in straight line; directly, immediately, without intervening action; + derector_M_N : N ; -- [FXXDE] :: director; + derectorium_N_N : N ; -- [FXXFE] :: directory; the Ordo (guide for celebrating Mass and liturgy of daily hours); + derectorius_A : A ; -- [EXXFS] :: that directs or sends in any direction; + derectum_N_N : N ; -- [XSXEE] :: straight line; + derectura_F_N : N ; -- [XTXFO] :: level, uniform horizontal surface; leveling of a surface; + derectus_A : A ; -- [XXXBO] :: ||sheer/steep (L+S); level; open/straightforward (Ecc); proper, helpful/guiding; + derectus_M_N : N ; -- [XLXFO] :: person given rights by direct procedure; + derelictio_F_N : N ; -- [XXXFO] :: neglect, disregard; abandoning; + derelictor_M_N : N ; -- [DXXFS] :: one who abandons; + derelictum_N_N : N ; -- [XLXDO] :: that which has been given up/abandoned; (legal); + derelictus_A : A ; -- [XXXEO] :: abandoned, derelict (places/sites); + derelictus_M_N : N ; -- [XXXFO] :: neglect; + derelinquo_V2 : V2 ; -- [XXXBO] :: leave behind/abandon/discard; forsake/desert; neglect; leave derelict; bequeath; + derepente_Adv : Adv ; -- [XXXCO] :: suddenly; + derepo_V2 : V2 ; -- [XXXDO] :: crawl/creep/sneak down; + derideo_V2 : V2 ; -- [XXXCO] :: mock/deride/laugh at/make fun of; be able to laugh, escape, get off scot free; + deridiculum_N_N : N ; -- [XXXCO] :: laughing-stock; absurdity, ridiculous thing; ridiculousness; ridicule (L+S); + deridiculus_A : A ; -- [XXXEO] :: very/utterly laughable; ridiculous, absurd, ludicrous; + derigeo_V2 : V2 ; -- [DXXFS] :: soften, remove hardness; + derigesco_V : V ; -- [XXXCO] :: freeze, become/grow stiff/rigid (through fear); grow quite/very still; + derigo_V2 : V2 ; -- [XXXAO] :: |||direct (course/steps), turn/steer/guide; propel/direct (missiles/blows); + deripio_V2 : V2 ; -- [XXXBO] :: seize/grab/snatch/take away; tear/pull off/down; remove (violently); + derisio_F_N : N ; -- [DXXES] :: mockery, scorn, derision; + derisor_M_N : N ; -- [XXXCO] :: scoffer, mocker; cynic; satirical person; + derisorius_A : A ; -- [XXXEO] :: derisory, characterized by mockery; ridiculous, serving for laughter (L+S); + derisus_A : A ; -- [XXXFO] :: absurd, laughable; scorned (L+S); + derisus_M_N : N ; -- [XXXCO] :: mockery; scorn, derision; + derivatio_F_N : N ; -- [XXXCO] :: heading/turning off/away, diversion (into another channel); derivation (words); + derivativum_N_N : N ; -- [XGXFO] :: derivative, word formed from another word; derivation (L+S); + derivativus_A : A ; -- [DGXFS] :: derivative; (grammar); + derivo_V2 : V2 ; -- [XXXCO] :: draw/lead off (river/fluid), divert/turn aside; derive/draw on; form derivative; + derodo_V2 : V2 ; -- [XXXNO] :: gnaw/nibble away; + derogatio_F_N : N ; -- [XLXFO] :: derogation, partial abrogation of a law; + derogator_M_N : N ; -- [DXXFS] :: detractor, depreciator; + derogatorius_A : A ; -- [XXXFO] :: modifying; belonging to a derogation/partial repeal of a law (L+S); + derogito_V2 : V2 ; -- [BXXFS] :: ask urgently; + derogo_V : V ; -- [XXXCO] :: subtract/remove/diminish/detract; disparage; repeal/set aside/modify (law); + derosus_A : A ; -- [XXXEC] :: gnawed away; nibbled (L+S); + deruncino_V2 : V2 ; -- [XXXEO] :: plane off, shave; cheat, fleece; deceive; + deruo_V2 : V2 ; -- [XXXEO] :: fall down/off; cause to fall/collapse; throw/cast down (L+S); detract/take away; + derupio_V2 : V2 ; -- [XXXDS] :: seize/grab/snatch/take away; tear/pull off/down; remove (violently); + deruptum_N_N : N ; -- [XXXES] :: precipices (pl.); + deruptus_A : A ; -- [XXXDO] :: steep, precipitous; craggy; broken; + desacrifico_V2 : V2 ; -- [XEXIO] :: dedicate as a sacrificial victim; + desaevio_V : V ; -- [XXXCO] :: rage, rave furiously; work off/vent one's rage; + desalto_V2 : V2 ; -- [XXXFO] :: dance through; perform w/dance; represent in dance (L+S); dance the part of; descendens_F_N : N ; -- [XXXFS] :: descendant; (pl.) posterity, descendants; - descendens_M_N : N ; - descendo_V : V ; - descensio_F_N : N ; - descensorius_A : A ; - descensus_M_N : N ; - descindo_V2 : V2 ; - descisco_V : V ; - descobino_V2 : V2 ; - describo_V2 : V2 ; - descripte_Adv : Adv ; - descriptio_F_N : N ; - descriptiuncula_F_N : N ; - descriptivus_A : A ; - descriptor_M_N : N ; - descriptum_N_N : N ; - descriptus_A : A ; - descrobo_V2 : V2 ; - desculpo_V2 : V2 ; - desecatio_F_N : N ; - deseco_V2 : V2 ; - desectio_F_N : N ; - desenesco_V : V ; - deseps_A : A ; - desero_V2 : V2 ; - deserpo_V2 : V2 ; - desersum_Adv : Adv ; - deserta_F_N : N ; - desertio_F_N : N ; - desertor_M_N : N ; - desertrix_F_N : N ; - desertum_N_N : N ; - desertus_A : A ; - deservio_V2 : V2 ; - deses_A : A ; - desicco_V2 : V2 ; - desico_V2 : V2 ; - desicut_Adv : Adv ; - desideo_V : V ; - desiderabilis_A : A ; - desiderans_A : A ; - desideranter_Adv : Adv ; - desideratio_F_N : N ; - desiderativus_A : A ; - desideratus_A : A ; - desiderium_N_N : N ; - desidero_V2 : V2 ; - desidia_F_N : N ; - desidiabulum_N_N : N ; - desidies_F_N : N ; - desidiose_Adv : Adv ; - desidiosus_A : A ; - desido_V2 : V2 ; - desiduo_Adv : Adv ; - designate_Adv : Adv ; - designatio_F_N : N ; - designator_M_N : N ; - designatus_A : A ; - designo_V2 : 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_V2 : V2 ; - desitus_A : A ; - desitus_M_N : N ; - desolatio_F_N : N ; - desolator_M_N : N ; - desolatorius_A : A ; - desolatus_A : A ; - desolo_V2 : V2 ; - desolvo_V2 : V2 ; - desommis_A : A ; - desonans_A : A ; - desorbeo_V2 : V2 ; - desparatus_A : A ; - despectatio_F_N : N ; - despectator_M_N : N ; - despectio_F_N : N ; - despecto_V2 : V2 ; - despector_M_N : N ; - despectrix_F_N : N ; - despectus_A : A ; - despectus_M_N : N ; - despeculo_V2 : V2 ; - desperabilis_A : A ; - desperanter_Adv : Adv ; - desperate_Adv : Adv ; - desperatio_F_N : N ; - desperatus_A : A ; - desperno_V2 : V2 ; - despero_V : V ; - despicabilis_A : A ; - despicans_A : A ; - despicatio_F_N : N ; - despicatus_A : A ; - despicatus_M_N : N ; - despicientia_F_N : N ; - despicio_V2 : V2 ; - despicor_V : V ; - despicus_A : A ; - desplendesco_V : V ; - despolator_M_N : N ; - despoliatio_F_N : N ; - despoliator_M_N : N ; - despolio_V2 : V2 ; - despolior_V : V ; - despondeo_V2 : V2 ; - desponsatio_F_N : N ; - desponsatus_A : A ; - desponsio_F_N : N ; - desponso_V2 : V2 ; - desponsor_M_N : N ; - desposco_V2 : V2 ; - despotice_Adv : Adv ; - despumatio_F_N : N ; - despumo_V : V ; - despuo_V : V ; - desputamentum_N_N : N ; - desputum_N_N : N ; - desquamatum_N_N : N ; - desquamo_V2 : V2 ; - dessico_V2 : V2 ; - dessidens_A : A ; - dessignatio_F_N : N ; - dessignator_M_N : N ; - dessignatus_A : A ; - desterno_V2 : V2 ; - desterto_V : V ; - destico_V : V ; - destillatio_F_N : N ; - destillo_V : V ; - destimulo_V2 : V2 ; - destina_F_N : N ; - destinata_F_N : N ; - destinatarius_M_N : N ; - destinate_Adv : Adv ; - destinatio_F_N : N ; - destinato_Adv : Adv ; - destinator_M_N : N ; - destinatum_N_N : N ; - destinatus_A : A ; - destino_V2 : V2 ; - destitor_M_N : N ; - destituo_V2 : V2 ; - destitutio_F_N : N ; - destitutor_M_N : N ; - destitutus_A : A ; - destrangulo_V2 : V2 ; - destrictarium_N_N : N ; - destricte_Adv : Adv ; - destrictivus_A : A ; - destrictus_A : A ; - destringo_V2 : V2 ; - destructibilis_A : A ; - destructilis_A : A ; - destructio_F_N : N ; - destructivus_A : A ; - destructor_M_N : N ; - destruo_V2 : V2 ; - desub_Abl_Prep : Prep ; - desubito_Adv : Adv ; - desubulo_V2 : V2 ; - desudasco_V : V ; - desudatio_F_N : N ; - desudo_V : V ; - desuefacio_V2 : V2 ; - desuefio_V : V ; - desuesco_V2 : V2 ; - desuetudo_F_N : N ; - desuetus_A : A ; - desugo_V2 : V2 ; - desulco_V2 : V2 ; - desulto_V : V ; - desultor_M_N : N ; - desultorium_N_N : N ; - desultorius_A : A ; - desultrix_A : A ; - desultura_F_N : N ; - desum_V : V ; - desumo_V2 : V2 ; - desuo_V2 : V2 ; - desuper_Acc_Prep : Prep ; - desuper_Adv : Adv ; - desuperne_Adv : Adv ; - desurgo_V : V ; - desurgo_V2 : V2 ; - desurrectio_F_N : N ; - desursum_Adv : Adv ; - detectio_F_N : N ; - detector_M_N : N ; - detego_V2 : V2 ; - detendo_V2 : V2 ; - detenso_V2 : V2 ; - detentatio_F_N : N ; - detentator_M_N : N ; - detentio_F_N : N ; - detento_V2 : V2 ; - detentus_M_N : N ; - detepesco_V : V ; - detergeo_V2 : V2 ; - deterior_A : A ; - deterioro_V : V ; - deterioro_V2 : V2 ; - deterius_Adv : Adv ; - determinabilis_A : A ; - determinatio_F_N : N ; - determinator_M_N : N ; - determinismus_M_N : N ; - determinista_M_N : N ; - determino_V2 : V2 ; - detero_V2 : V2 ; - deterreo_V2 : V2 ; - detersio_F_N : N ; - detestabilis_A : A ; - detestabiliter_Adv : Adv ; - detestatio_F_N : N ; - detestator_M_N : N ; - detesto_V2 : V2 ; - detestor_M_N : N ; - detestor_V : V ; - detexo_V2 : V2 ; - detineo_V2 : V2 ; - detondeo_V2 : V2 ; - detono_V : V ; - detonsio_F_N : N ; - detonso_V2 : V2 ; - detorno_V2 : V2 ; - detorqueo_V2 : V2 ; - detorreo_V2 : V2 ; - detorso_V2 : V2 ; - detractatio_F_N : N ; - detractator_M_N : N ; - detractatus_M_N : N ; - detractio_F_N : N ; - detracto_V2 : V2 ; - detractor_M_N : N ; - detractorium_N_N : N ; - detractorius_A : A ; - detractus_M_N : N ; - detraho_V2 : V2 ; - detrectatio_F_N : N ; - detrectator_M_N : N ; - detrectio_F_N : N ; - detrecto_V2 : V2 ; - detrector_M_N : N ; - detrimentosus_A : A ; - detrimentum_N_N : N ; - detritus_A : A ; - detritus_M_N : N ; - detriumpho_V2 : V2 ; - detrudo_V2 : V2 ; - detruncatio_F_N : N ; - detrunco_V2 : V2 ; - detrusio_F_N : N ; - detumesco_V : V ; - detundo_V2 : V2 ; - deturbator_M_N : N ; - deturbo_V2 : V2 ; - deturpo_V2 : V2 ; - deunx_M_N : N ; - deuro_V2 : V2 ; - deurode_Interj : Interj ; - deuterius_A : A ; - deuteros_M_N : N ; - deuterus_M_N : N ; - deutor_V : V ; - devagor_V : V ; - devastatio_F_N : N ; - devastator_M_N : N ; - devasto_V2 : V2 ; - devecto_V2 : V2 ; - deveho_V2 : V2 ; - devello_V2 : V2 ; - develo_V2 : V2 ; - deveneror_V : V ; - devenio_V : V ; - devenusto_V2 : V2 ; - deverbero_V2 : V2 ; - deverbium_N_N : N ; - devergo_V : V ; - deverro_V2 : V2 ; - deversito_V : V ; - deversitor_M_N : N ; - deversor_M_N : N ; - deversor_V : V ; - deversoriolum_N_N : N ; - deversorium_N_N : N ; - deversorius_A : A ; - deversus_Adv : Adv ; - deverticulum_N_N : N ; - deverto_V2 : V2 ; - devescor_V : V ; - devestio_V2 : V2 ; - devestivus_A : A ; - devexitas_F_N : N ; - devexo_V2 : V2 ; - devexum_N_N : N ; - devexus_A : A ; - deviatio_F_N : N ; - deviator_M_N : N ; - devictio_F_N : N ; - devigeo_V : V ; - devigesco_V : V ; - devincio_V2 : V2 ; - devinco_V2 : V2 ; - devinctio_F_N : N ; - devinctus_A : A ; - devio_V : V ; - devirginatio_F_N : N ; - devirginator_M_N : N ; - devirgino_V2 : V2 ; - devito_V : V ; - devium_N_N : N ; - devius_A : A ; - devocator_M_N : N ; - devoco_V2 : V2 ; - devolo_V : V ; - devolutivus_A : A ; - devolvo_V2 : V2 ; - devolvor_V : V ; - devomo_V2 : V2 ; - devorabilis_A : A ; - devoratio_F_N : N ; - devorator_M_N : N ; - devoratorium_N_N : N ; - devoratorius_A : A ; - devoratrix_F_N : N ; - devoro_V2 : V2 ; - devorsor_M_N : N ; - devorsorium_N_N : N ; - devorticulum_N_N : N ; - devortium_N_N : N ; - devorto_V2 : V2 ; - devotamentum_N_N : N ; - devotatio_F_N : N ; - devote_Adv : Adv ; - devotio_F_N : N ; - devoto_V2 : V2 ; - devotor_M_N : N ; - devotrix_F_N : N ; - devotus_A : A ; - devoveo_V2 : V2 ; - devus_M_N : N ; - dextans_M_N : N ; - dextella_F_N : N ; - dexter_A : A ; - dextera_Adv : Adv ; - dextera_F_N : N ; - dexteratio_F_N : N ; - dexteratus_A : A ; - dextere_Adv : Adv ; - dexteritas_F_N : N ; - dexterum_N_N : N ; - dextra_Acc_Prep : Prep ; - dextra_Adv : Adv ; - dextra_F_N : N ; - dextrale_N_N : N ; - dextraliolum_N_N : N ; - dextralis_F_N : N ; - dextrator_M_N : N ; - dextratus_A : A ; - dextre_Adv : Adv ; - dextrinum_N_N : N ; - dextrocherium_N_N : N ; - dextrorsum_Adv : Adv ; - dextrorsus_Adv : Adv ; - dextroversum_Adv : Adv ; - dextroversus_Adv : Adv ; - dextrovorsum_Adv : Adv ; - dextrovorsus_Adv : Adv ; - dextrum_N_N : N ; - dia_F_N : N ; - diabatharius_M_N : N ; - diabathrum_N_N : N ; - diabetes_M_N : N ; - diabeticus_A : A ; - diabeticus_M_N : N ; - diabole_F_N : N ; - diabolicus_A : A ; - diabolus_M_N : N ; - diabulus_M_N : N ; - diacatochia_F_N : N ; - diacatochus_M_N : N ; - diacecaumeme_F_N : N ; - diacheton_N_N : N ; - diachylon_N_N : N ; - diachyton_N_N : N ; - diacisson_N_N : N ; - diacodion_N_N : N ; - diacon_M_N : N ; - diaconalis_A : A ; - diaconandus_M_N : N ; - diaconatus_M_N : N ; - diaconia_F_N : N ; - diaconicum_N_N : N ; - diaconicus_A : A ; - diaconissa_F_N : N ; - diaconissatus_M_N : N ; - diaconium_N_N : N ; - diaconus_M_N : N ; - diacope_F_N : N ; - diacopus_M_N : N ; - diadata_F_N : N ; - diadema_F_N : N ; - diadema_N_N : N ; - diademalis_A : A ; - diadematus_A : A ; - diadiapason_N_N : N ; - diadoche_F_N : N ; - diadochos_M_N : N ; - diadochus_M_N : N ; - diadumenos_A : A ; - diadumenus_A : A ; - diaeresis_F_N : N ; - diaeta_F_N : N ; - diaetarcha_F_N : N ; - diaetarchus_M_N : N ; - diaetarius_M_N : N ; - diaeteta_M_N : N ; - diaetetica_F_N : N ; - diaetetice_F_N : N ; - diaeteticus_A : A ; - diaeteticus_M_N : N ; - diaglaucion_N_N : N ; - diaglaucium_N_N : N ; - diagnosis_F_N : N ; - diagon_M_N : N ; - diagonalis_A : A ; - diagonios_A : A ; - diagonium_N_N : N ; - diagonus_M_N : N ; - diagramma_N_N : N ; - diagrydium_N_N : N ; - diaiteon_N_N : N ; - dialectica_F_N : N ; - dialectice_Adv : Adv ; - dialectice_F_N : N ; - dialecticos_A : A ; - dialecticum_N_N : N ; - dialecticus_A : A ; - dialecticus_M_N : N ; - dialectos_F_N : N ; - dialectus_F_N : N ; - dialepidos_F_N : N ; - dialeucos_A : A ; - dialibanum_N_N : N ; - dialion_N_N : N ; - dialogismos_M_N : N ; - dialogista_M_N : N ; - dialogus_M_N : N ; - dialutensis_A : A ; - dialysis_F_N : N ; - dialyton_N_N : N ; - diamastigosis_F_N : N ; - diameliloton_N_N : N ; - diameliton_N_N : N ; - diameter_M_N : N ; - diametralis_A : A ; - diametricalis_A : A ; - diametros_A : A ; - diametros_F_N : N ; - diametrum_N_N : N ; - diamisyos_F_N : N ; - diamoron_N_N : N ; - dianoea_F_N : N ; - dianome_F_N : N ; - diapanton_Adv : Adv ; - diapasma_N_N : N ; - diapason_N_N : N ; - diapente_N : N ; - diaphonia_F_N : N ; - diaphora_F_N : N ; - diaphoresis_F_N : N ; - diaphoreticus_A : A ; - diaphragma_N_N : N ; - diaporesis_F_N : N ; - diapsalma_N_N : N ; - diapsoricum_N_N : N ; - diarium_N_N : N ; - diarius_A : A ; - diarrhoea_F_N : N ; - diartymaton_N_N : N ; - diasostes_M_N : N ; - diaspermaton_N_N : N ; - diastema_N_N : N ; - diastematicus_A : A ; - diastole_F_N : N ; - diastoleus_M_N : N ; - diastylos_A : A ; - diasyrmos_M_N : N ; - diasyrtice_Adv : Adv ; - diasyrticus_A : A ; - diataxis_F_N : N ; - diatessaron_N_N : N ; - diathesis_F_N : N ; - diathyrum_N_N : N ; - diatoichum_N_N : N ; - diatonicon_N_N : N ; - diatonicus_A : A ; - diatonon_N_N : N ; - diatonos_A : A ; - diatonum_N_N : N ; - diatonus_A : A ; - diatretarius_M_N : N ; - diatretum_N_N : N ; - diatretus_A : A ; - diatriba_F_N : N ; - diatritaeus_A : A ; - diatritus_F_N : N ; - diatyposis_F_N : N ; - diaulos_M_N : N ; - diaxylon_N_N : N ; - diazeugmenon_N_N : N ; - diazeuxis_F_N : N ; - diazoma_N_N : N ; - dibalo_V2 : V2 ; - dibapha_F_N : N ; - dibaphus_A : A ; - dibrachysos_F_N : N ; - dibucino_V : V ; - dica_F_N : N ; - dicabulum_N_N : N ; - dicacitas_F_N : N ; - dicacule_Adv : Adv ; - dicaculus_A : A ; - dicaeologia_F_N : N ; - dicanicium_N_N : N ; - dicasterium_N_N : N ; - dicatio_F_N : N ; - dicator_M_N : N ; - dicatus_A : A ; - dicax_A : A ; - dicentetum_N_N : N ; - dichalcum_N_N : N ; - dichomenion_N_N : N ; - dichoneutus_A : A ; - dichoreus_M_N : N ; - dichotomia_F_N : N ; - dichotomos_A : A ; - dichronus_A : A ; - dicibulum_N_N : N ; - dicimonium_N_N : N ; - dicio_F_N : N ; - dicis_F_N : N ; - dico_V2 : V2 ; - dicrota_F_N : N ; - dicrotum_N_N : N ; - dictabolarium_N_N : N ; - dictamen_N_N : N ; - dictamnos_F_N : N ; - dictamnum_N_N : N ; - dictamnus_F_N : N ; - dictatio_F_N : N ; - dictatiuncula_F_N : N ; - dictator_M_N : N ; - dictatorius_A : A ; - dictatorius_M_N : N ; - dictatrix_F_N : N ; - dictatum_N_N : N ; - dictatura_F_N : N ; - dicterium_N_N : N ; - dicticos_A : A ; - dictio_F_N : N ; - dictionarium_N_N : N ; - dictiosus_A : A ; - dictito_V2 : V2 ; - dicto_V2 : V2 ; - dictophonum_N_N : N ; - dictor_M_N : N ; - dictum_N_N : N ; - dicturio_V2 : V2 ; - dictus_M_N : N ; - didacticus_A : A ; - didascalicus_A : A ; - didascalus_M_N : N ; - didascolus_M_N : N ; - didasculatus_M_N : N ; - didasculo_V2 : V2 ; - didasculus_M_N : N ; - dido_V2 : V2 ; - didrachm_N_N : N ; - didrachma_F_N : N ; - didrachmon_N_N : N ; - didragma_F_N : N ; - didragmon_N_N : N ; - diduco_V2 : V2 ; - diductio_F_N : N ; - diecula_F_N : N ; - dierectus_A : A ; + descendens_M_N : N ; -- [XXXFS] :: descendant; (pl.) posterity, descendants; + descendo_V : V ; -- [XXXAO] :: |stoop; demean; drop/become lower (pitch); be reduced; trace descent/come down; + descensio_F_N : N ; -- [XXXEO] :: descent, action of going down; sailing down; (sunken) bath; + descensorius_A : A ; -- [DXXFS] :: descent, descending, coming down; + descensus_M_N : N ; -- [XXXCO] :: decent, climbing/getting down; action/means/way of descent; lying down (rude); + descindo_V2 : V2 ; -- [XXXFO] :: cut/slit down; divide (L+S), divide into two parties; + descisco_V : V ; -- [XXXBO] :: desert/defect/revolt; deviate/abandon standard/principle; degenerate; fall away; + descobino_V2 : V2 ; -- [XXXEO] :: scrape, graze; scrape/rasp/file off/away; + describo_V2 : V2 ; -- [XXXBO] :: describe/draw, mark/trace out; copy/transcribe/write; establish (law/right) + descripte_Adv : Adv ; -- [XXXFO] :: exactly; in a clearly defined manner; distinctly, precisely (L+S); + descriptio_F_N : N ; -- [XXXCO] :: description/descriptive story; drawing of diagram/plan; indictment; transcript; + descriptiuncula_F_N : N ; -- [XGXFO] :: delineation, short description; short passage of description (in speech/etc.); + descriptivus_A : A ; -- [XXXFS] :: descriptive, containing an exact description; + descriptor_M_N : N ; -- [DXXFS] :: describer, delineator; + descriptum_N_N : N ; -- [XXXFS] :: diary, journal; things (pl.) recorded, writings; + descriptus_A : A ; -- [XXXFO] :: organized, arranged; precisely ordered (L+S); + descrobo_V2 : V2 ; -- [DTXFS] :: set (jewel in setting); enchase, deeply engrave; ornament; + desculpo_V2 : V2 ; -- [DXXFS] :: carve out, sculpt; copy by carving/graving; + desecatio_F_N : N ; -- [DXXFS] :: cutting off; + deseco_V2 : V2 ; -- [XAXCO] :: sever; cut off (limb/boundary); cut/carve from/out/away; cut/reap/mow (crop); + desectio_F_N : N ; -- [XAXFO] :: mowing, action of mowing; cutting off (L+S); + desenesco_V : V ; -- [XXXFO] :: die away; lose force with the passage of time; diminish by age (L+S); + deseps_A : A ; -- [XXXFS] :: insane; out of one's mind; + desero_V2 : V2 ; -- [XAXFS] :: plant, sow; + deserpo_V2 : V2 ; -- [XXXEO] :: creep over; spread over; creep down (L+S); + desersum_Adv : Adv ; -- [FXXFE] :: from above; + deserta_F_N : N ; -- [XXXFS] :: abandoned/deserted wife; + desertio_F_N : N ; -- [XWXEO] :: desertion; deserting (from army); forsaking (L+S); desolation (4 Ezra 3:2); + desertor_M_N : N ; -- [XWXCO] :: deserter; one who abandons/forsakes (duty); fugitive; turncoat (L+S); runaway; + desertrix_F_N : N ; -- [DXXFS] :: deserter (female); she who abandons/forsakes/neglects; + desertum_N_N : N ; -- [XXXDX] :: desert; wilderness (pl.); unfrequented places; desert places, wastes (L+S); + desertus_A : A ; -- [XXXDX] :: deserted, uninhabited, without people; solitary/lonely; forsaken; desert/waste; + deservio_V2 : V2 ; -- [XXXCO] :: serve; devote oneself to (interest/job); be subject to; be of service/use to; + deses_A : A ; -- [XXXEC] :: idle, lazy, indolent; inactive, sluggish; slacking off (from); + desicco_V2 : V2 ; -- [XXXFO] :: dry (up), drain dry; desiccate (L+S); + desico_V2 : V2 ; -- [XAXEO] :: sever; cut off (limb/boundary); cut/carve from/out/away; cut/reap/mow (crop); + desicut_Adv : Adv ; -- [FLXFJ] :: since; + desideo_V : V ; -- [XXXCO] :: |settle (sediment); defecate; deteriorate, degenerate; remain inactive (L+S); + desiderabilis_A : A ; -- [XXXDO] :: wanted, desirable, that is to be wished for; missed (dead people); regretted; + desiderans_A : A ; -- [XXXEO] :: greatly desired or missed; (SUPER of absent/dead persons); + desideranter_Adv : Adv ; -- [XXXEO] :: longingly, with yearning; eagerly, with ardent desire (L+S); + desideratio_F_N : N ; -- [XXXFO] :: desire, longing; want, requirement; question to be examined (L+S); + desiderativus_A : A ; -- [DGXFS] :: desiderative; (of verbs constructed from other indicating desire for that act); + desideratus_A : A ; -- [XXXEO] :: desired, longed for, sought after; missed (the dead), regretted; + desiderium_N_N : N ; -- [XXXBO] :: |favorite, object of desire; pleasure, that desired/needed; petition, request; + desidero_V2 : V2 ; -- [XXXBO] :: |want to know; investigate/examine/discuss (L+S); raise the question; + desidia_F_N : N ; -- [XXXEO] :: |ebbing; subsiding; (process of); retiring (L+S); + desidiabulum_N_N : N ; -- [XXXFO] :: place for lounging/wasting time in; + desidies_F_N : N ; -- [DXXFS] :: idleness; + desidiose_Adv : Adv ; -- [XXXFO] :: idly; indolently; slothfully; + desidiosus_A : A ; -- [XXXCO] :: idle, indolent, lazy; slothful; causing idleness, making lazy (L+S); + desido_V2 : V2 ; -- [XXXEO] :: sink/settle down, subside; sit down; defecate; be depressed; deteriorate; + desiduo_Adv : Adv ; -- [XXXFO] :: for a long time; a long time (L+S); + designate_Adv : Adv ; -- [DXXIS] :: distinctly; + designatio_F_N : N ; -- [XXXCO] :: |demarcation, marking out; figure, diagram; specification; describing (L+S); + designator_M_N : N ; -- [XXXCS] :: arranger; assigner of theater seats; undertaker/master of ceremonies (funeral); + designatus_A : A ; -- [XLXCO] :: designate/elect; appointed (but not yet installed magistrate); expected (baby); + designo_V2 : V2 ; -- [XXXBO] :: |earmark/choose; appoint, elect (magistrate); order/plan; scheme. perpetrate; + desilio_V2 : V2 ; -- [BXXFS] :: leap/jump down, dismount, alight; (chariot); jump headlong, venture heedlessly; + desinentia_F_N : N ; -- [GGXEK] :: inflection; + desino_V : V ; -- [DXXFS] :: stop/end/finish, abandon/leave/break off, desist/cease; come to/at end/close; + desino_V2 : V2 ; -- [XXXBO] :: stop/end/finish, abandon/leave/break off, desist/cease; come to/at end/close; + desioculus_M_N : N ; -- [DBXFS] :: one who has lost an eye; + desipiens_A : A ; -- [XXXEO] :: stupid, witless, lacking intelligence; foolish, silly (L+S); + desipientia_F_N : N ; -- [XXXFO] :: loss of reason; want of understanding (L+S); foolishness; + desipio_V : V ; -- [XXXCO] :: act/be foolish; be out of one's mind/lose one's reason/lack rational thought; + desisto_V2 : V2 ; -- [XXXBO] :: stop/cease/desist (from); give up, leave/stand off; dissociate oneself; + desitus_A : A ; -- [XAXFS] :: sown/planted deep; + desitus_M_N : N ; -- [DXXFS] :: ceasing, stopping; + desolatio_F_N : N ; -- [EEXCS] :: desolation; desert; abandonment (Souter); solitude; + desolator_M_N : N ; -- [EEXES] :: that makes lonely/desolate; waster (L+S); that/who abandons (Souter); + desolatorius_A : A ; -- [EXXES] :: that makes lonely/desolate; + desolatus_A : A ; -- [EXXEE] :: desolate; empty; + desolo_V2 : V2 ; -- [XXXCO] :: forsake/abandon/desert; leave alone/without; empty of people; deprive/rob; + desolvo_V2 : V2 ; -- [XXXFO] :: disperse, pay out (sum of money); + desommis_A : A ; -- [XBXFO] :: deprived of sleep; sleepless (L+S); + desonans_A : A ; -- [XXXFO] :: echoing downwards; + desorbeo_V2 : V2 ; -- [DBXES] :: swallow down; + desparatus_A : A ; -- [FXXEN] :: given up on; desperate; + despectatio_F_N : N ; -- [XXXFO] :: view/looking downwards; prospect (L+S); + despectator_M_N : N ; -- [DXXFS] :: despiser; one who looks down on; + despectio_F_N : N ; -- [XXXFO] :: disdain (for); act of looking down on; (w/GEN); despising, contempt (L+S); + despecto_V2 : V2 ; -- [XXXCO] :: look over/down at, survey; overlook; rise above, overtop; despise/look down on; + despector_M_N : N ; -- [DXXFS] :: despiser; one who despises/looks down on; + despectrix_F_N : N ; -- [DXXFS] :: despiser (female); she who despises/looks down on; + despectus_A : A ; -- [XXXDO] :: despicable; suffering contempt; insignificant; contemptible (L+S); + despectus_M_N : N ; -- [XXXCO] :: view down/from above; prospect/panorama; spectacle; (object of) contempt/scorn; + despeculo_V2 : V2 ; -- [XXXFO] :: steal/rob of a mirror; + desperabilis_A : A ; -- [EXXFS] :: desperate; incurable; + desperanter_Adv : Adv ; -- [XXXFO] :: despairingly; in a despairing manner; + desperate_Adv : Adv ; -- [XXXEO] :: desperately, hopelessly; tremendously, very; + desperatio_F_N : N ; -- [XXXCO] :: desperation; desperate action/conduct/health; despair/hopelessness (of w/GEN); + desperatus_A : A ; -- [XXXCO] :: desperate/hopeless; despairing/lacking hope; desperately ill/situated; reckless; + desperno_V2 : V2 ; -- [XXXEO] :: despise utterly/greatly/completely; disdain (L+S); + despero_V : V ; -- [XXXBO] :: despair (of); have no/give up hope (of/that); give up as hopeless (of cure); + despicabilis_A : A ; -- [DXXES] :: despicable, contemptible; + despicans_A : A ; -- [XXXFO] :: contemptuous, scornful (of); + despicatio_F_N : N ; -- [XXXFO] :: scorn; contempt; + despicatus_A : A ; -- [XXXDO] :: despicable, contemptible; that is an object of contempt; despised (L+S); + despicatus_M_N : N ; -- [XXXEO] :: scorn; contempt; (only DAT L+S); + despicientia_F_N : N ; -- [XXXEO] :: contempt (for); indifference (to); despising (L+S); + despicio_V2 : V2 ; -- [XXXBO] :: look down on/over; relax attention; disdain, despise; express contempt for; + despicor_V : V ; -- [XXXEO] :: despise; scorn, disdain; + despicus_A : A ; -- [XXXFO] :: looking down; despised, disdained (L+S); + desplendesco_V : V ; -- [DXXFS] :: dim; go out; cease to shine; lose its brightness; + despolator_M_N : N ; -- [XXXFO] :: robber; plunderer; despoiler; + despoliatio_F_N : N ; -- [DXXES] :: robbery; despoiling; + despoliator_M_N : N ; -- [XXXFZ] :: robber; plunderer; despoiler; (Bianchi); + despolio_V2 : V2 ; -- [XXXCO] :: rob/plunder; despoil (of); strip, deprive of clothing/covering; (for flogging); + despolior_V : V ; -- [XXXFS] :: rob/plunder; despoil (of); strip, deprive of clothing/covering; (for flogging); + despondeo_V2 : V2 ; -- [BXXES] :: betroth, promise (woman) in marriage; pledge, promise; despair/yield/give up; + desponsatio_F_N : N ; -- [DXXFS] :: betrothal; betrothing; engagement; + desponsatus_A : A ; -- [DXXFE] :: betrothed; engaged; + desponsio_F_N : N ; -- [DXXFS] :: despairing, desponding; + desponso_V2 : V2 ; -- [XXXEO] :: betroth, promise in marriage; + desponsor_M_N : N ; -- [XXXFO] :: pledger, one who betroths/pledges; + desposco_V2 : V2 ; -- [FXXEN] :: demand; + despotice_Adv : Adv ; -- [EXXFE] :: despotically; + despumatio_F_N : N ; -- [DXXFS] :: skimming off; + despumo_V : V ; -- [XXXCO] :: skim, remove/draw froth/foam/scum (from); stop foaming, settle; deposit foam; + despuo_V : V ; -- [XXXCO] :: spit (out/down/upon), spurn/reject, abhor; spit on ground (avert evil/disease); + desputamentum_N_N : N ; -- [DXXFS] :: spit, spittle; + desputum_N_N : N ; -- [DXXFS] :: spit, spittle; + desquamatum_N_N : N ; -- [XBXES] :: excoriated parts; parts of the body from which the skin has been rubbed off; + desquamo_V2 : V2 ; -- [XXXCO] :: scale, remove scales/skin/surface from; peel/rub/scour/clean/scrape/shake off; + dessico_V2 : V2 ; -- [EXXFP] :: divide; penetrate through; open by force; dismember, dissect; + dessidens_A : A ; -- [XXXDS] :: dissenting; inimical; discordant, at variance; + dessignatio_F_N : N ; -- [XXXCS] :: |demarcation, marking out; figure, diagram; specification; describing (L+S); + dessignator_M_N : N ; -- [XXXCS] :: arranger; assigner of theater seats; undertaker/master of ceremonies (funeral); + dessignatus_A : A ; -- [XLXCS] :: designate/elect; appointed (but not yet installed magistrate); expected (baby); + desterno_V2 : V2 ; -- [EXXFS] :: unsaddle; ungird; free from its covering; + desterto_V : V ; -- [XXXFO] :: snore off; (finish dreaming that one is); cease snoring (L+S); + destico_V : V ; -- [DAXFS] :: squeak; (of the noise made by the shrew-mouse); + destillatio_F_N : N ; -- [XBXDO] :: cold/rheum/catarrh; runny nose/eyes; bodily fluid; abscess; distillation (Cal); + destillo_V : V ; -- [XXXCO] :: drip/trickle down; wet/sprinkle; distill; have dripping off; fall bit by bit; + destimulo_V2 : V2 ; -- [XXXFO] :: goad hard/on; stimulate (L+S); + destina_F_N : N ; -- [XXXFO] :: prop, support, stay; + destinata_F_N : N ; -- [XXXES] :: betrothed female; bride; + destinatarius_M_N : N ; -- [GXXEK] :: recipient; + destinate_Adv : Adv ; -- [DXXFS] :: resolutely; obstinately; + destinatio_F_N : N ; -- [XXXCO] :: designation (of end), specification/design; resolution/determination/obstinacy; + destinato_Adv : Adv ; -- [XXXFO] :: according to a previously determined plan; + destinator_M_N : N ; -- [DXXFS] :: designer, he who determines/designs; + destinatum_N_N : N ; -- [XXXCO] :: mark/target/goal, object aimed at; purpose/intention/design; [ex ~ => by plan]; + destinatus_A : A ; -- [XXXCO] :: stubborn/obstinate; determined/resolved/resolute/firm; destined (L+S); fixed; + destino_V2 : V2 ; -- [XXXAO] :: |determine/intend; settle on, arrange; design; send, address, dedicate (Bee); + destitor_M_N : N ; -- [XXXFS] :: he who withdraws from a thing; + destituo_V2 : V2 ; -- [XXXAO] :: |desert/leave/abandon/forsake/leave in lurch; disappoint/let down; fail/give up; + destitutio_F_N : N ; -- [XXXEO] :: desertion; letting down; betrayal; forsaking (L+S); failure; letting down; + destitutor_M_N : N ; -- [XXXFO] :: one who disappoints/deceives/forsakes/fails; + destitutus_A : A ; -- [XXXDO] :: destitute, devoid of; childless; + destrangulo_V2 : V2 ; -- [XXXFS] :: choke, strangle; destroy; + destrictarium_N_N : N ; -- [XXXIO] :: place in the baths for rubbing the body down after exercise; + destricte_Adv : Adv ; -- [XXXDO] :: severely, strictly; unreservedly; + destrictivus_A : A ; -- [DXXFS] :: dissolving; loosening up; + destrictus_A : A ; -- [XXXEO] :: strict, severe; uncompromising; unreserved; rigid (L+S); censorious; + destringo_V2 : V2 ; -- [XXXBO] :: |scour (bowels); draw (sword); graze; touch lightly; censure/criticize/satirize; + destructibilis_A : A ; -- [DXXFS] :: destructible; + destructilis_A : A ; -- [DXXFS] :: destructible; + destructio_F_N : N ; -- [XXXEO] :: destruction, demolishing, pulling down; refutation; + destructivus_A : A ; -- [DXXFS] :: destructive; + destructor_M_N : N ; -- [DXXDS] :: destroyer, one who pulls down; + destruo_V2 : V2 ; -- [XXXCO] :: demolish, pull/tear down; destroy, ruin; demolish/refute (arguments/evidence); + desub_Abl_Prep : Prep ; -- [XXXFO] :: below, under; beneath; + desubito_Adv : Adv ; -- [XXXDO] :: suddenly; + desubulo_V2 : V2 ; -- [XXXEO] :: make by piercing; bore in deeply (L+S); + desudasco_V : V ; -- [XXXFO] :: sweat away; perspire freely/greatly; + desudatio_F_N : N ; -- [XBXFO] :: free/thorough perspiration/sweating; exertion, painstaking (L+S); + desudo_V : V ; -- [XBXCO] :: sweat/perspire/exude (freely); sweat, exert oneself (physical/mental effort); + desuefacio_V : V ; -- [XXXEO] :: be disaccustomed; bring out of use (L+S); + desuefio_V : V ; -- [XXXEO] :: be disaccustomed; bring out of use (L+S); + desuesco_V2 : V2 ; -- [XXXDO] :: forget/unlearn; become/be unaccustomed to; disaccustom; lay aside custom/habit; + desuetudo_F_N : N ; -- [XXXCO] :: disuse, discontinuance, desuetude; discontinuance of practice/habit (L+S); + desuetus_A : A ; -- [XXXCO] :: disaccustomed; that has fallen out of use or become unfamiliar; + desugo_V2 : V2 ; -- [DXXFS] :: suck away from; suck in; + desulco_V2 : V2 ; -- [XXXFO] :: plow up; furrow through (L+S); + desulto_V : V ; -- [DXXFS] :: leap down (into/onto); + desultor_M_N : N ; -- [XDXCO] :: vaulter/leaper (between horses), circus trick rider; fickle person/lover (L+S); + desultorium_N_N : N ; -- [GXXEK] :: trampoline; + desultorius_A : A ; -- [XDXEO] :: of/belonging to a desultor (circus trick rider); desultory (L+S); superficial; + desultrix_A : A ; -- [DXXFS] :: inconstant; (of a lover); + desultura_F_N : N ; -- [XXXFO] :: jumping/leaping down, dismounting; action of jumping down; (from a horse); + desum_V : V ; -- [BPXDO] :: be wanting/lacking; fail/miss; abandon/desert, neglect; be away/absent/missing; + desumo_V2 : V2 ; -- [XXXCO] :: choose, pick out, select, take; pick (fight); take for/upon one's self (L+S); + desuo_V2 : V2 ; -- [BXXFS] :: fasten; + desuper_Acc_Prep : Prep ; -- [XXXEO] :: over, above; + desuper_Adv : Adv ; -- [XXXCO] :: from above, from overhead; up above; + desuperne_Adv : Adv ; -- [DXXFS] :: from above, from overhead; + desurgo_V : V ; -- [XXXEO] :: rise, get up (from table); go to stool, defecate (euphemism); + desurgo_V2 : V2 ; -- [XXXFS] :: rise; rise from; + desurrectio_F_N : N ; -- [XXXFS] :: defecation (euphemism), going to stool; + desursum_Adv : Adv ; -- [DXXCS] :: from above, from overhead; up above; + detectio_F_N : N ; -- [XXXFO] :: disclosure; uncovering, revealing (L+S); + detector_M_N : N ; -- [DXXES] :: revealer; uncoverer; discloser; + detego_V2 : V2 ; -- [XXXCO] :: uncover/disclose/reveal; expose, lay bare; fleece; unsheathe; remove; unroof; + detendo_V2 : V2 ; -- [XXXEO] :: unstretch, loosen, relax; strike (tent); let down; + detenso_V2 : V2 ; -- [DXXFS] :: shear off; + detentatio_F_N : N ; -- [XXXFO] :: detention; detaining, keeping back; (temporary) control/possession; + detentator_M_N : N ; -- [EXXES] :: detainer; one who holds/keeps back; + detentio_F_N : N ; -- [XXXFO] :: detention; detaining, keeping back; (temporary) control/possession; + detento_V2 : V2 ; -- [DXXES] :: hold/keep back; + detentus_M_N : N ; -- [DXXFS] :: holding/keeping back; retention; detention; + detepesco_V : V ; -- [DXXFS] :: grow cool, cease to be lukewarm; + detergeo_V2 : V2 ; -- [XXXDS] :: |remove, take away; break to pieces; have swept off; + deterior_A : A ; -- [XXXBO] :: low/bad/inferior; poor/mean; unfavorable; weak; degenerate/wicked; + deterioro_V : V ; -- [EXXES] :: make worse; deteriorate; + deterioro_V2 : V2 ; -- [EXXFS] :: deteriorate, make worse; + deterius_Adv : Adv ; -- [XXXDO] :: bad, worse, less; unfavorably; in less desirable manner; less/least favorably; + determinabilis_A : A ; -- [DXXFS] :: finite, that has an end; bounded, limited; + determinatio_F_N : N ; -- [FXXDE] :: boundary; marking off boundary; time limitation; end/conclusion; determination + determinator_M_N : N ; -- [DXXFS] :: determinator, one who determines/prescribes; + determinismus_M_N : N ; -- [FXXFE] :: determinism; theory of determinism; + determinista_M_N : N ; -- [GXXEK] :: determinist; + determino_V2 : V2 ; -- [XXXCO] :: |define; designate, mark out; determine linear extent of; conclude/end/settle; + detero_V2 : V2 ; -- [XXXCO] :: |thresh (grain); pound; grind; chafe; impair/lessen/weaken; detract from; prune; + deterreo_V2 : V2 ; -- [XXXBO] :: deter; frighten away; discourage (from), put/keep off, avert; frighten/terrify; + detersio_F_N : N ; -- [DXXFS] :: cleansing; + detestabilis_A : A ; -- [XXXCO] :: detestable, execrable, abominable; subject to detestatio/curse; + detestabiliter_Adv : Adv ; -- [XXXFS] :: abominably, detestably, execrably; + detestatio_F_N : N ; -- [XXXCO] :: solemn curse/execration; expression of hate; averting w/sacrifice; renunciation; + detestator_M_N : N ; -- [EEXFS] :: curser; one who detests/execrates/curses; + detesto_V2 : V2 ; -- [DXXFS] :: call down solemn curse on, execrate; detest/loathe; avert, ward off by entreaty; + detestor_M_N : N ; -- [EEXEE] :: curser; one who detests; + detestor_V : V ; -- [XXXBO] :: call down solemn curse on, execrate; detest/loathe; avert, ward off by entreaty; + detexo_V2 : V2 ; -- [XXXCO] :: weave, finish weaving, weave completely; complete/finish; plait (L+S); explain; + detineo_V2 : V2 ; -- [XXXAO] :: |hold/keep back (from use); keep, cause to remain; reserve; delay end, protract; + detondeo_V2 : V2 ; -- [XXXFO] :: clip/shear, crop/prune; shear (wool)/strip (leaf); cut off/short; lay waste; + detono_V : V ; -- [XXXES] :: |cease thundering/raging; + detonsio_F_N : N ; -- [DXXFS] :: shearing off; + detonso_V2 : V2 ; -- [XXXFO] :: clip, shear, crop/prune; shear off (wool), strip off (foliage), cut off/short; + detorno_V2 : V2 ; -- [XXXEO] :: turn, make by turning on lathe; + detorqueo_V2 : V2 ; -- [XXXBO] :: |distort, bend out of shape; pervert, misrepresent, twist sense of, alter form; + detorreo_V2 : V2 ; -- [DXXFS] :: scorch, burn; + detorso_V2 : V2 ; -- [DXXFS] :: shear off; + detractatio_F_N : N ; -- [XXXCO] :: refusal (of a task), evasion, declining; renunciation; disparagement/detraction; + detractator_M_N : N ; -- [XXXEO] :: refuser, evader, shirker; one who disparages/belittles; + detractatus_M_N : N ; -- [DXXFS] :: treatise; + detractio_F_N : N ; -- [XXXCO] :: removal, withdrawal; omission (words); blood-letting; purge; slander (Plater); + detracto_V2 : V2 ; -- [XXXBO] :: |disparage/belittle, speak/write slightingly of; reduce/depreciate/detract from; + detractor_M_N : N ; -- [XXXFO] :: detractor, defamer; disparager/belittler/diminisher; decliner/refuser (L+S); + detractorium_N_N : N ; -- [DXXFS] :: slander (pl.); + detractorius_A : A ; -- [DXXFS] :: slanderous; disparaging; + detractus_M_N : N ; -- [XXXFO] :: omission, taking away; rejection (L+S); + detraho_V2 : V2 ; -- [XXXAO] :: |||draw off (blood); promote discharge of; force down, induce to come down; + detrectatio_F_N : N ; -- [XXXCO] :: refusal (of a task), evasion, declining; renunciation; disparagement/detraction; + detrectator_M_N : N ; -- [XXXEO] :: refuser, evader, shirker; one who disparages/belittles; + detrectio_F_N : N ; -- [XXXCO] :: removal, withdrawal; omission (words); blood-letting; purge; slander (Plater); + detrecto_V2 : V2 ; -- [XXXBO] :: |disparage/belittle, speak/write slightingly of; reduce/depreciate/detract from; + detrector_M_N : N ; -- [XXXFO] :: detractor, defamer; who disparages/belittles/diminisher; decliner/refuser (L+S); + detrimentosus_A : A ; -- [XXXFO] :: harmful, detrimental, hurtful; + detrimentum_N_N : N ; -- [XWXBS] :: |defeat, loss of battle; overthrow; + detritus_A : A ; -- [XXXFS] :: worn out; trite, hackneyed; + detritus_M_N : N ; -- [XXXFO] :: process of rubbing away; + detriumpho_V2 : V2 ; -- [DWXFS] :: conquer; triumph over; + detrudo_V2 : V2 ; -- [XXXBO] :: push/thrust/drive/force off/away/aside/from/down; expel; dispossess; postpone; + detruncatio_F_N : N ; -- [XAXNO] :: lopping (branches off tree); + detrunco_V2 : V2 ; -- [XXXCO] :: mutilate, cut pieces from; lop off, cut off; remove branches from; maim; behead; + detrusio_F_N : N ; -- [DXXFS] :: thrusting down; + detumesco_V : V ; -- [XXXEO] :: subside, become less swollen; (of passions); settle down (L+S); cease swelling; + detundo_V2 : V2 ; -- [XBXFO] :: bruise severely; beat (L+S); + deturbator_M_N : N ; -- [FXXFE] :: dispossessor; disturber of property; + deturbo_V2 : V2 ; -- [XWXCO] :: |drive/pull/knock/cast/thrust/strike down/off; deprive of; + deturpo_V2 : V2 ; -- [XXXEO] :: disfigure, ruin appearance of; discredit; disparage; defile; + deunx_M_N : N ; -- [XSXDO] :: eleven-twelfths (of a unit/as); eleven parts; eleven percent (interest); + deuro_V2 : V2 ; -- [XXXCO] :: burn down/up/thoroughly, consume; destroy/wither/blast (of cold/serpent breath); + deurode_Interj : Interj ; -- [XXXFO] :: come hither!; (deuro de); (applied to a catamite); + deuterius_A : A ; -- [XAXNO] :: secondary; derived from second pressing + deuteros_M_N : N ; -- [FDXEZ] :: second note; + deuterus_M_N : N ; -- [FDXEZ] :: second note; + deutor_V : V ; -- [XXXFO] :: misuse; use wrongly/wrongfully; (w/ABL); pervert; abuse (L+S); ill-treat (Cas); + devagor_V : V ; -- [DXXES] :: wander; stray from; digress; + devastatio_F_N : N ; -- [XWXFM] :: devastation; + devastator_M_N : N ; -- [XWXFS] :: devastator, he who devastates; + devasto_V2 : V2 ; -- [XWXCO] :: devastate, lay waste (territory/people); ravage; slaughter; + devecto_V2 : V2 ; -- [DXXFS] :: carry away; + deveho_V2 : V2 ; -- [XXXDS] :: |descend, go down (PASS); go away; + devello_V2 : V2 ; -- [XXXDO] :: pull hair from; pluck feathers; pick flowers; pluck bare, depilate; tear off; + develo_V2 : V2 ; -- [XXXFO] :: uncover; unveil (L+S); + deveneror_V : V ; -- [XEXFO] :: exorcise; ward off by religious rite, avert by prayers; reverence/worship (L+S); + devenio_V : V ; -- [XXXBO] :: come to, arrive/turn up (at); go (to see/stay); reach; land; turn to; extend to; + devenusto_V2 : V2 ; -- [XXXFO] :: disfigure; mar the beauty of; deform (L+S); + deverbero_V2 : V2 ; -- [XXXFO] :: thrash; flog/whip soundly; cudgel/beat soundly (L+S); + deverbium_N_N : N ; -- [XDXFO] :: spoken part of play (unaccompanied by music); + devergo_V : V ; -- [XXXFO] :: incline/tend downwards; sink; + deverro_V2 : V2 ; -- [XXXEO] :: sweep away; sweep out (L+S); + deversito_V : V ; -- [XXXFO] :: turn aside and linger (over); put up at an inn (L+S); dwell upon; + deversitor_M_N : N ; -- [XXXFO] :: lodger, guest, inhabitant of a rooming house; inn/lodging-house keeper; + deversor_M_N : N ; -- [XXXFO] :: lodger, guest; inmate (L+S); + deversor_V : V ; -- [XXXDX] :: lodge, stay, have lodgings; put up at an inn; + deversoriolum_N_N : N ; -- [XXXEO] :: small lodging place; rooming house; small place to stay; + deversorium_N_N : N ; -- [FXXEK] :: hotel; + deversorius_A : A ; -- [XXXEO] :: of an inn/lodging house; fit to lodge/stay in (L+S); [taberna ~=> inn]; + deversus_Adv : Adv ; -- [XXXFO] :: downward; + deverticulum_N_N : N ; -- [XXXBO] :: |circumlocution/evasion; loophole; deviation/diversion/digression; port of call; + deverto_V2 : V2 ; -- [XXXBO] :: divert, turn away/aside/in/off; detour/digress/branch off; lodge/put up; + devescor_V : V ; -- [XXXFO] :: devour, eat up; + devestio_V2 : V2 ; -- [XXXFO] :: undress (w/ABL); change/take off clothes; strip (off); + devestivus_A : A ; -- [XXXFO] :: undressed; + devexitas_F_N : N ; -- [XXXNO] :: declivity; downward slope/incline; sloping; + devexo_V2 : V2 ; -- [XXXCS] :: |ravage/plunder; tear/rend/pull/rip apart/asunder, destroy (L+S); + devexum_N_N : N ; -- [XXXDO] :: slope; inclined surface (L+S); downhill, easy; + devexus_A : A ; -- [XXXBO] :: sloping/inclining downwards/downhill/away; steep; shelving; declining/sinking; + deviatio_F_N : N ; -- [XXXFO] :: evasion, avoidance; deviation (Latham); straying; + deviator_M_N : N ; -- [DXXFS] :: forsaker, one who leaves the way; deserter, defector; + devictio_F_N : N ; -- [DXXFS] :: conquering; + devigeo_V : V ; -- [XXXFO] :: lose the power (to); + devigesco_V : V ; -- [XXXFS] :: lose one's vigor; slow down; weaken/age; become enfeebled/exhausted/drained; + devincio_V2 : V2 ; -- [XXXBO] :: tie/bind up, hold/fix fast; subjugate; obligate/oblige/constrain; unite closely; + devinco_V2 : V2 ; -- [XXXCO] :: subdue; defeat decisively, conquer/overcome entirely; + devinctio_F_N : N ; -- [DXXFS] :: ensnaring, trapping; binding; [magicae ~ => enchantments]: + devinctus_A : A ; -- [XXXDO] :: attached; tied (to a person); devoted, greatly attached to (L+S); + devio_V : V ; -- [FXXDE] :: detour; stray; depart; + devirginatio_F_N : N ; -- [XXXFO] :: deflowering, loss of virginity; ravishing, debauching; seduction; + devirginator_M_N : N ; -- [DXXFS] :: deflowerer; ravisher, despoiler, violator; seducer; + devirgino_V2 : V2 ; -- [XXXEO] :: deflower, deprive of virginity; violate, ravish; grow up, quit youth (PASS L+S); + devito_V : V ; -- [XXXCO] :: avoid; get/keep clear of; shun (L+S); go out of the way of; dodge/duck/evade; + devium_N_N : N ; -- [XXXDO] :: remote/secluded/lonely/unfrequented/out-of-way parts/places (pl.); + devius_A : A ; -- [XXXBO] :: |erratic/inconsistent, devious; deviating/straying/wandering; foolish (L+S); + devocator_M_N : N ; -- [EXXDM] :: challenger; + devoco_V2 : V2 ; -- [XLXDM] :: |call; sue; impede; disavow, deny; + devolo_V : V ; -- [XXXDX] :: fly/swoop/drop down (on to); hurry/rush/hasten/fly down/away (to); + devolutivus_A : A ; -- [FXXEE] :: devolving to; + devolvo_V2 : V2 ; -- [XXXCO] :: roll/fall/tumble down; roll off; fall/sink back; fall into; + devolvor_V : V ; -- [FXXDE] :: roll/fall down; roll off; sink back; fall into; hand over, transfer; deprive; + devomo_V2 : V2 ; -- [XXXFO] :: vomit out/forth; vomit up; + devorabilis_A : A ; -- [DXXFS] :: devourable, which can be devoured, capable of being devoured; consumable; + devoratio_F_N : N ; -- [EXXES] :: devouring; gobbling up; (w/GEN); + devorator_M_N : N ; -- [EXXES] :: devourer; glutton; one who eats greedily/voraciously; who gobbles/swallows up; + devoratorium_N_N : N ; -- [XXXFS] :: devouring maw; + devoratorius_A : A ; -- [XXXFS] :: devouring; destructive to; + devoratrix_F_N : N ; -- [EXXFS] :: devouress; glutton; she who eats greedily/voraciously; who gobbles/swallows up; + devoro_V2 : V2 ; -- [XXXBO] :: |use up; waste; swallow, endure, put up with; repress/suppress, check (emotion); + devorsor_M_N : N ; -- [XXXFO] :: lodger, guest; inmate (L+S); + devorsorium_N_N : N ; -- [XXXCO] :: inn, lodging house; + devorticulum_N_N : N ; -- [XXXBO] :: |circumlocution/evasion; loophole; deviation/diversion/digression; port of call; + devortium_N_N : N ; -- [DXXFS] :: by-way, by-path; + devorto_V2 : V2 ; -- [XXXCE] :: divert, turn away/aside/in; digress; separate, oppose; resort to; lodge; + devotamentum_N_N : N ; -- [DXXFS] :: cursing; anathema; + devotatio_F_N : N ; -- [EEXES] :: consecration, making of vows; curse (Douay); + devote_Adv : Adv ; -- [XXXCS] :: devotedly, faithfully; devoutly; + devotio_F_N : N ; -- [XXXBS] :: |devoting/consecrating; fealty/allegiance; piety; prayer; zeal; consideration; + devoto_V2 : V2 ; -- [XXXFO] :: bewitch; put a spell on; curse; + devotor_M_N : N ; -- [EEXFS] :: devotee, votary, one faithful; one who prays or calls down curses; + devotrix_F_N : N ; -- [EEXFS] :: devotee (female), votary, one faithful; she who prays or calls down curses; + devotus_A : A ; -- [XXXDO] :: devoted, zealously attached, faithful; devout; pious; accursed, execrable; + devoveo_V2 : V2 ; -- [XXXBO] :: |dedicate to infernal gods (general/army); destine, doom; bewitch, enchant; + devus_M_N : N ; -- [XEXIO] :: god; + dextans_M_N : N ; -- [XSXEO] :: ten-twelfths (of a unit); measure/weight of ten unciae (ten ounces); + dextella_F_N : N ; -- [XXXFO] :: little right hand; + dexter_A : A ; -- [XXXBO] :: |favorable/fortunate/pretentious; opportune (L+S); proper/fitting/suitable; + dextera_Adv : Adv ; -- [XXXCO] :: on the right; on the right-hand side (of); + dextera_F_N : N ; -- [XXXBO] :: |pledge/contract; metal model of hand as token of agreement; + dexteratio_F_N : N ; -- [DEXFS] :: movement towards the right (in religious ceremonial); + dexteratus_A : A ; -- [DXXFS] :: lying to the right; + dextere_Adv : Adv ; -- [XXXEO] :: skillfully; dexterously; + dexteritas_F_N : N ; -- [XXXEO] :: readiness to help/oblige; dexterity (L+S); aptness/skill; prosperity; + dexterum_N_N : N ; -- [XXXDO] :: right hand; right-hand side; + dextra_Acc_Prep : Prep ; -- [DXXES] :: on the right of; on the right-hand side of; + dextra_Adv : Adv ; -- [XXXCO] :: on the right; on the right-hand side (of); + dextra_F_N : N ; -- [XXXBO] :: |pledge/contract; metal model of hand as token of agreement; + dextrale_N_N : N ; -- [EXXFS] :: bracelet; armlet (Ecc); + dextraliolum_N_N : N ; -- [EXXFS] :: little/small bracelet; + dextralis_F_N : N ; -- [EXXFS] :: hatchet; + dextrator_M_N : N ; -- [XWXIO] :: soldier (of a particular unknown kind); + dextratus_A : A ; -- [XTXEO] :: lying to right of survey line; honorific title (position in unknown rite?); + dextre_Adv : Adv ; -- [XXXFS] :: skillfully; dexterously; + dextrinum_N_N : N ; -- [GXXEK] :: dextrin, British gum, leiocome; (starch modified by high temperature OED); + dextrocherium_N_N : N ; -- [EXXFS] :: bracelet; (may be medical); + dextrorsum_Adv : Adv ; -- [XXXDO] :: towards the right; on/to the right-hand side; + dextrorsus_Adv : Adv ; -- [XXXDO] :: towards the right; on/to the right-hand side; + dextroversum_Adv : Adv ; -- [XXXDS] :: towards the right; on/to the right-hand side; + dextroversus_Adv : Adv ; -- [XXXDS] :: towards the right; on/to the right-hand side; + dextrovorsum_Adv : Adv ; -- [XXXDS] :: towards the right; on/to the right-hand side; + dextrovorsus_Adv : Adv ; -- [XXXDS] :: towards the right; on/to the right-hand side; + dextrum_N_N : N ; -- [XXXDO] :: right hand; right-hand side; + dia_F_N : N ; -- [DEXFS] :: goddess; + diabatharius_M_N : N ; -- [XXXFO] :: slipper-maker; maker of diabathri (particular kind of slipper); shoemaker; + diabathrum_N_N : N ; -- [XXXFO] :: slipper (of a particular kind); + diabetes_M_N : N ; -- [XXXDS] :: siphon; tube for sucking/blowing liquid, straw; fire-engine device; liquid jet; + diabeticus_A : A ; -- [FBXDM] :: diabetic; having diabetes; (medical condition); + diabeticus_M_N : N ; -- [FBXDM] :: diabetic; one having diabetes; (medical condition); + diabole_F_N : N ; -- [ELXFS] :: slander; false accusation; + diabolicus_A : A ; -- [EEXCS] :: devilish/diabolic; characteristic of/proceeding/derived from the devil; + diabolus_M_N : N ; -- [EEXBM] :: devil; The Devil, Satan, Prince of Evil/Darkness; evil one; + diabulus_M_N : N ; -- [FEXCM] :: devil; The Devil, Satan, Prince of Evil/Darkness; evil one; + diacatochia_F_N : N ; -- [ELXFS] :: possession; + diacatochus_M_N : N ; -- [ELXFS] :: possessor; + diacecaumeme_F_N : N ; -- [DXXES] :: torrid zone; + diacheton_N_N : N ; -- [XAXNS] :: small plant from Rhodes; (also called) crysisceptrum; + diachylon_N_N : N ; -- [XBXFS] :: medicine (composed of juices OED); + diachyton_N_N : N ; -- [XXXNO] :: wine (particular kind); sweet wine (variety of, L+S); + diacisson_N_N : N ; -- [DBXFS] :: ointment (kind of); + diacodion_N_N : N ; -- [XBXES] :: medicine (prepared from poppy juice); opiate; diacodione/diacode (OED); + diacon_M_N : N ; -- [EEXDV] :: deacon; cleric of minor orders (first/highest level); + diaconalis_A : A ; -- [EEXEE] :: deaconal/diaconal, of/pertaining to a deacon/deconate/deaconship; + diaconandus_M_N : N ; -- [EEXFE] :: deacon-elect, one who is to be made a deacon; + diaconatus_M_N : N ; -- [EEXES] :: deaconate, office/position of deacon, deaconship; deaconry (Latham); + diaconia_F_N : N ; -- [EEXEE] :: deaconate, office/position of deaconship; service, ministry; hospice; + diaconicum_N_N : N ; -- [FEXFE] :: sacristy; place for sorting vessels of the alter (L+S); + diaconicus_A : A ; -- [EEXES] :: of/pertaining to a deacon/deconate/deaconship; + diaconissa_F_N : N ; -- [EEXFS] :: deaconess; + diaconissatus_M_N : N ; -- [EEXFE] :: order of deaconesses; + diaconium_N_N : N ; -- [EEXES] :: deaconate, office/position of deacon, deaconship; + diaconus_M_N : N ; -- [EEXDS] :: deacon; cleric of minor orders (first/highest level); + diacope_F_N : N ; -- [DGXFS] :: tmesis; (separation of a compound word by interposition of another word OED); + diacopus_M_N : N ; -- [XXXFO] :: breach in an embankment; spillway/sluice/opening/channel in dam to drain water; + diadata_F_N : N ; -- [ELXFS] :: distribution; + diadema_F_N : N ; -- [XXXDO] :: diadem/crown; ornamental headband; (sign of sovereignty); dominion; preeminence; + diadema_N_N : N ; -- [XXXCO] :: diadem/crown; ornamental headband; (sign of sovereignty); dominion; preeminence; + diademalis_A : A ; -- [XLXFS] :: wearing a diadem; pertaining to diadem; + diadematus_A : A ; -- [XLXEO] :: crowned; wearing a diadem; adorned w/diadem (L+S); + diadiapason_N_N : N ; -- [XDHFO] :: double octave; (music); (indecl.?); + diadoche_F_N : N ; -- [XLXIO] :: succession (in office); + diadochos_M_N : N ; -- [XLXIO] :: successor, one who holds office by right of succession; + diadochus_M_N : N ; -- [XLXIO] :: successor, one who holds office by right of succession; + diadumenos_A : A ; -- [XXXEO] :: engaged in tying one's hair in a band; + diadumenus_A : A ; -- [XXXEO] :: engaged in tying one's hair in a band; wearing a diadem (L+S); + diaeresis_F_N : N ; -- [XGXFO] :: distribution, separating diphthong/syllable in two pronounced connectively; + diaeta_F_N : N ; -- [XBXFO] :: |diet, regimen; course of treatment, way/mode of living prescribed by physician; + diaetarcha_F_N : N ; -- [XXXIO] :: servant (female) in charge of the rooms in a house; maid; + diaetarchus_M_N : N ; -- [XXXIO] :: servant in charge of the rooms in a house; valet de chambre; + diaetarius_M_N : N ; -- [XXXDO] :: servant in charge of the rooms; cabin steward (on ship); valet de chambre (L+S); + diaeteta_M_N : N ; -- [DXXFS] :: umpire; judge, arbiter; + diaetetica_F_N : N ; -- [XBXFO] :: art of medicine; + diaetetice_F_N : N ; -- [DBXFS] :: dietetics; nutritional medicine; treating with diet; + diaeteticus_A : A ; -- [XBXFS] :: of diet; treating through diet; + diaeteticus_M_N : N ; -- [XBXFO] :: physician (as opposed to surgeon); doctor who treats with diet (L+S); + diaglaucion_N_N : N ; -- [XBXES] :: salve made of herbs; + diaglaucium_N_N : N ; -- [XBXES] :: salve made of herbs; + diagnosis_F_N : N ; -- [GBXEK] :: diagnosis; + diagon_M_N : N ; -- [XSXEO] :: diagonal line, line from one angle to an opposite; (geometry); + diagonalis_A : A ; -- [XSXFO] :: diagonal, from one angle to an opposite; (geometry); + diagonios_A : A ; -- [XSXFO] :: diagonal, from one angle to an opposite; (geometry); + diagonium_N_N : N ; -- [XSXFS] :: diagonal line, line from one angle to an opposite; (geometry); + diagonus_M_N : N ; -- [XSXEO] :: diagonal line, line from one angle to an opposite; (geometry); + diagramma_N_N : N ; -- [XXXFO] :: diagram, figure; D:scale, gamut, range (music L+S); + diagrydium_N_N : N ; -- [DAXFS] :: juice of the plant scammones (Convolvulus Scammonia); (used as purgative); + diaiteon_N_N : N ; -- [DBXFS] :: salve made of juice of willow; + dialectica_F_N : N ; -- [XGXCO] :: dialectics, logic; art of logic/reasoning; + dialectice_Adv : Adv ; -- [XGXEO] :: dialectically; logically; according to the dialectical method; + dialectice_F_N : N ; -- [XGXCS] :: dialectics, logic; art of logic/reasoning; + dialecticos_A : A ; -- [XGXCO] :: dialectical, logical; reasoning (creatures); (dialectical method of Academy); + dialecticum_N_N : N ; -- [XGXCO] :: dialectics (pl.), logic; art of logic/reasoning; logic questions (L+S); + dialecticus_A : A ; -- [XGXCO] :: dialectical, logical; reasoning (creatures); (dialectical method of Academy); + dialecticus_M_N : N ; -- [XGXCO] :: dialectician, logician; Academic philosopher; one who studies logic; + dialectos_F_N : N ; -- [XGXEO] :: dialect; form of speech; + dialectus_F_N : N ; -- [XGXFS] :: dialect; form of speech; + dialepidos_F_N : N ; -- [DBXFS] :: unguent made with scales that fly from metal in hammering; + dialeucos_A : A ; -- [XXXNO] :: partially white; intermixed with white (L+S); whitish; + dialibanum_N_N : N ; -- [DBXFS] :: salve made with frankincense; + dialion_N_N : N ; -- [DAXFS] :: heliotrope (plant); + dialogismos_M_N : N ; -- [XGXFS] :: consideration; (in logical argument); + dialogista_M_N : N ; -- [EGXFS] :: able disputant; good arguer/reasoner; + dialogus_M_N : N ; -- [XGXDO] :: discussion, philosophical conversation; dispute; composition in dialog form; + dialutensis_A : A ; -- [XAXNO] :: that lives partly in mud; (like a mussel); + dialysis_F_N : N ; -- [XGXFO] :: resolution/dialysis (of diphthong); making two short syllables from long one; + dialyton_N_N : N ; -- [DGXFO] :: resolution/dialysis (of diphthong); making two short syllables from long one; + diamastigosis_F_N : N ; -- [XXXFS] :: severe scourging; + diameliloton_N_N : N ; -- [DBXFS] :: salve made of meliloton (kind of clover); + diameliton_N_N : N ; -- [DBXFS] :: salve made of honey; + diameter_M_N : N ; -- [FSXEM] :: diameter; (geometry); + diametralis_A : A ; -- [FSXEM] :: diametrical, diametric; (geometry); + diametricalis_A : A ; -- [FSXFM] :: diametrical, diametric; (geometry); + diametros_A : A ; -- [XSXFO] :: diametral, of/related to diameter; diametric, diametrical (Whitaker); + diametros_F_N : N ; -- [XSXEO] :: diameter; + diametrum_N_N : N ; -- [XDXES] :: loss; want of; that is wanting to the measure; + diamisyos_F_N : N ; -- [DBXFS] :: salve made of misy (copper ore/pyrite); + diamoron_N_N : N ; -- [DBXES] :: medicine made of juice of black mulberries and honey; + dianoea_F_N : N ; -- [XGXFS] :: dianoetic, display of fact (instead of conception); + dianome_F_N : N ; -- [XLXFS] :: distribution of money (in canvassing for office); buying votes; + diapanton_Adv : Adv ; -- [XXXIO] :: pre-eminently; out of all the number; universally (L+S); + diapasma_N_N : N ; -- [XXXEO] :: scented (body) powder; + diapason_N_N : N ; -- [XDHFO] :: whole octave; (music); (indecl.?); + diapente_N : N ; -- [XDHFO] :: interval of a fifth; (music); + diaphonia_F_N : N ; -- [DDXFS] :: disharmony; discord; + diaphora_F_N : N ; -- [DGXFS] :: distinction, repetition of word w/different meanings; uncertainty; + diaphoresis_F_N : N ; -- [DBXES] :: sweat; exhaustion; + diaphoreticus_A : A ; -- [DBXFS] :: inducing/promoting/producing perspiration/sweat, diaphoretic, sudorfic; + diaphragma_N_N : N ; -- [DBHDS] :: diaphragm; septum, partition; midriff; diaphragm (optics/audio/cervical); + diaporesis_F_N : N ; -- [DGXES] :: perplexity, doubting; sweating it out?; (not pure sweat in classical); + diapsalma_N_N : N ; -- [DDXFS] :: pause in music; + diapsoricum_N_N : N ; -- [DBXFS] :: eye-salve; + diarium_N_N : N ; -- [XXXDO] :: diary, daily record, journal; daily allowance/ration; newspaper (Cal); + diarius_A : A ; -- [FXXDE] :: daily; + diarrhoea_F_N : N ; -- [DBXFS] :: diarrhea/diarrhoea; the flux; + diartymaton_N_N : N ; -- [DBXFS] :: salve (of a particular kind); + diasostes_M_N : N ; -- [XLXFS] :: policeman (sort of); + diaspermaton_N_N : N ; -- [DBXES] :: drug made from seeds; + diastema_N_N : N ; -- [XXXEO] :: space; distance; interval (L+S); space between; D:interval (in music); + diastematicus_A : A ; -- [XXXES] :: having pauses/spaces/intervals; + diastole_F_N : N ; -- [DGXES] :: distole, mark indicating separation or words; comma; + diastoleus_M_N : N ; -- [DLXFS] :: auditor of accounts; + diastylos_A : A ; -- [XTXFO] :: diastyle, having columns at wide intervals; (intervals of 3-4 diameters OED); + diasyrmos_M_N : N ; -- [DXXFS] :: mocking; reviling; disparagement, ridicule (as rhetorical ploy); + diasyrtice_Adv : Adv ; -- [DXXFS] :: mockingly; disparagingly; + diasyrticus_A : A ; -- [DXXFS] :: mocking; reviling; disparaging, ridiculing; + diataxis_F_N : N ; -- [XLXFO] :: instrument of disposition; + diatessaron_N_N : N ; -- [DBXES] :: |medicine made of four ingredients; + diathesis_F_N : N ; -- [XBHIO] :: disease; morbid condition; + diathyrum_N_N : N ; -- [DXHFS] :: foyer (pl.); enclosure before door of Greek house; (Roman) prothyrum; + diatoichum_N_N : N ; -- [XXXFS] :: brick-work (sort of); + diatonicon_N_N : N ; -- [XTXNS] :: masonry filled in with rubble; (band-stone wall binding); + diatonicus_A : A ; -- [DDXFS] :: diatonic; (music); + diatonon_N_N : N ; -- [XDXEO] :: diatonic scale; natural/diatonic series of notes without break (L+S); + diatonos_A : A ; -- [XDXFO] :: diatonic; (music scale); + diatonum_N_N : N ; -- [XDXES] :: diatonic scale; natural/diatonic series of notes without break (L+S); + diatonus_A : A ; -- [XTXES] :: band-stones (w/lateres, stones/bricks which run through to bind wall); + diatretarius_M_N : N ; -- [XXXFS] :: carver; turner; one doing open-work/filigree decoration or chasing/embossing; + diatretum_N_N : N ; -- [XXXFO] :: vessels (pl.) w/pierced/open-work/filigree decoration or chasing/embossing; + diatretus_A : A ; -- [XXXFO] :: carved; having open-work/filigree decoration or embossing; pierced w/holes; + diatriba_F_N : N ; -- [XGXEO] :: school for rhetoric/philosophy; learned discussion (L+S); + diatritaeus_A : A ; -- [DXXFS] :: three-day, of the space of three days; + diatritus_F_N : N ; -- [DBXFS] :: return of fever on third day; + diatyposis_F_N : N ; -- [DLXFS] :: description; representation; + diaulos_M_N : N ; -- [XXXFO] :: double course; course/race of two laps; (racing); race out and back (L+S); + diaxylon_N_N : N ; -- [XAXNO] :: plant, aspalathus or camel thorn; plant from Rhodes, crysisceptrum (L+S); + diazeugmenon_N_N : N ; -- [DGXFS] :: separation; disjunction; + diazeuxis_F_N : N ; -- [XGXFS] :: separation; + diazoma_N_N : N ; -- [XDXFO] :: semi-circular gangway/ramp in theater; space between seats in theater (L+S); + dibalo_V2 : V2 ; -- [XXXFO] :: blab; bleat out; + dibapha_F_N : N ; -- [XXXNO] :: twice-dyed robe; scarlet striped w/purple robe (of high magistrate L+S); + dibaphus_A : A ; -- [XXXNO] :: twice-dyed; (like robe of magistrater); scarlet striped w/purple (L+S); + dibrachysos_F_N : N ; -- [XPXEO] :: dibrach, pyrrhic, metrical foot consisting of two short syllables; + dibucino_V : V ; -- [XXXES] :: trumpet forth; trumpet in different direction; + dica_F_N : N ; -- [XLXEO] :: lawsuit; legal action; judicial process (L+S); + dicabulum_N_N : N ; -- [DXXES] :: chatter (pl.); idle talk; + dicacitas_F_N : N ; -- [XXXEO] :: biting/mordant/caustic/incisive wit/raillery/banter/ridicule; + dicacule_Adv : Adv ; -- [XXXFO] :: banteringly; caustically; facetiously (L+S); keenly; satirically; + dicaculus_A : A ; -- [XXXFS] :: talkative/loquacious; glib; spirited/lively (speech); witty (L+S); facetious; + dicaeologia_F_N : N ; -- [XLXFS] :: plea; defense; + dicanicium_N_N : N ; -- [FWXEE] :: mace; + dicasterium_N_N : N ; -- [FXXEE] :: office; bureau; + dicatio_F_N : N ; -- [XXXFO] :: attachment as citizen to another state; declaring intent to become citizen; + dicator_M_N : N ; -- [XXXIO] :: dedicator; + dicatus_A : A ; -- [XXXDE] :: dedicated; hallowed; + dicax_A : A ; -- [XXXCO] :: witty; sarcastic; w/ready tongue; given to mocking another; satirical (L+S); + dicentetum_N_N : N ; -- [XBXIO] :: eyesalve, (name of) salve for eyes; + dichalcum_N_N : N ; -- [XLHFO] :: coin; (1/4 or 1/5 obolus); + dichomenion_N_N : N ; -- [DAXFS] :: plant (of some kind); + dichoneutus_A : A ; -- [DLXFS] :: adulterated; recast; + dichoreus_M_N : N ; -- [XPXFO] :: double trochee/choree, metrical foot of two chorees/trochees (_U_U); + dichotomia_F_N : N ; -- [FXXEM] :: dichotomy; + dichotomos_A : A ; -- [DXXES] :: halved; cut in two; + dichronus_A : A ; -- [XSXFO] :: common in quantity; common (of two quantities L+S); + dicibulum_N_N : N ; -- [DXXES] :: chatter (pl.); idle talk; + dicimonium_N_N : N ; -- [BGXFS] :: oratory; speaking; + dicio_F_N : N ; -- [XXXCO] :: authority, power, control; rule, domain, sway; + dicis_F_N : N ; -- [XXXDO] :: form; [~ causa/gratia (only) => for the sake of appearance or judicial form]; + dico_V2 : V2 ; -- [XXXAO] :: ||name/call; appoint, fix/set (date); designate, declare intention of giving; + dicrota_F_N : N ; -- [XWXFS] :: light galley; (perhaps propelled by two banks of oars); bireme; + dicrotum_N_N : N ; -- [XWXFO] :: light galley; (perhaps propelled by two banks of oars); bireme; + dictabolarium_N_N : N ; -- [XXXFO] :: joke (pl.); (nonce-word indicating verbal joke); satirical saying (L+S); + dictamen_N_N : N ; -- [DGXFS] :: saying/maxim; (late of dictum.); order (Ecc); prescription; command; precept; + dictamnos_F_N : N ; -- [XAXDO] :: dittany (an herb); (also) pennyroyal; (another unidentified); + dictamnum_N_N : N ; -- [XAXDO] :: dittany (an herb); (also) pennyroyal; (another unidentified); + dictamnus_F_N : N ; -- [XAXDO] :: dittany (an herb); (also) pennyroyal; (another unidentified); + dictatio_F_N : N ; -- [XXXFO] :: dictated draft; dictation; + dictatiuncula_F_N : N ; -- [DXXFS] :: short dictation; + dictator_M_N : N ; -- [XLICO] :: dictator; (Roman magistrate having plenary power, appointed in emergency); + dictatorius_A : A ; -- [XLXEO] :: dictatorial; of a dictator; + dictatorius_M_N : N ; -- [XLXDO] :: dictator; (Italian municipal officer); Carthaginian military commander; + dictatrix_F_N : N ; -- [XLXCO] :: dictatress, dictatrix, female dictator; (facetious); mistress (Cas); + dictatum_N_N : N ; -- [XXXCS] :: things dictated (pl.); dictated lessons or exercises; lessons; precepts/rules; + dictatura_F_N : N ; -- [XLXDO] :: dictatorship, office of dictator; + dicterium_N_N : N ; -- [XXXEO] :: joke, witticism; witty saying (L+S); bon mot; + dicticos_A : A ; -- [DXXES] :: pointing; demonstrative; + dictio_F_N : N ; -- [XXXBO] :: |public speaking; method/style/form of speaking; inflection; delivery/speech; + dictionarium_N_N : N ; -- [GXXEK] :: dictionary; + dictiosus_A : A ; -- [XXXFO] :: witty; facetious (L+S); satirical; + dictito_V2 : V2 ; -- [XXXCO] :: repeat; persist in saying, keep on saying/speaking of; say/plead/call often; + dicto_V2 : V2 ; -- [XXXBO] :: |say/declare/assert repeatedly/habitually/often/frequently; reiterate; recite; + dictophonum_N_N : N ; -- [GXXEK] :: Dictaphone; + dictor_M_N : N ; -- [XXXEE] :: speaker; orator; + dictum_N_N : N ; -- [XXXCO] :: words/utterance/remark; one's word/promise; saying/maxim; bon mot, witticism; + dicturio_V2 : V2 ; -- [DXXFS] :: long/want/wish to say/tell; + dictus_M_N : N ; -- [XXXEO] :: speech; speaking, saying (action); word (Ecc); command; + didacticus_A : A ; -- [XGXEE] :: teaching; didactic; intellectual; + didascalicus_A : A ; -- [XGXFS] :: of instruction/teaching; teaching, giving instruction; didactic; instructive; + didascalus_M_N : N ; -- [FGXDM] :: teacher; + didascolus_M_N : N ; -- [FGXDM] :: teacher; + didasculatus_M_N : N ; -- [EGXFM] :: office of teacher; + didasculo_V2 : V2 ; -- [FGXFM] :: teach, instruct + didasculus_M_N : N ; -- [FGXDM] :: teacher; + dido_V2 : V2 ; -- [XXXCO] :: distribute, deal out, disseminate; spread, diffuse; spread abroad (L+S); + didrachm_N_N : N ; -- [XLHFE] :: double drachma; Greek silver coin; half shekel; (1/3000 talent); (half dollar); + didrachma_F_N : N ; -- [XLHFE] :: double drachma; Greek silver coin; half shekel; (1/3000 talent); (half dollar); + didrachmon_N_N : N ; -- [XLHFE] :: double drachma; Greek silver coin; half shekel; (1/3000 talent); (half dollar); + didragma_F_N : N ; -- [XLHFW] :: double drachma; Greek silver coin; half shekel; (1/3000 talent); (half dollar); + didragmon_N_N : N ; -- [XLHFW] :: double drachma; Greek silver coin; half shekel; (1/3000 talent); (half dollar); + diduco_V2 : V2 ; -- [XXXBO] :: |draw/lead/pull apart/aside; spread/open/space out; deploy/disperse (forces); + diductio_F_N : N ; -- [XXXEO] :: distribution; separation/dividing into parts; expansion, (act of) spreading out; + diecula_F_N : N ; -- [XXXEO] :: brief day, short time; (of respite); short space of a day (L+S); little while; + dierectus_A : A ; -- [BXXES] :: crucified; hanged; (go and be hanged! w/hinc); (sense of peremptory dismissal) 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 ; + dies_M_N : N ; -- [XXXAO] :: |specific day; day in question; date of letter; festival; lifetime, age; time; + diesis_F_N : N ; -- [XDXEO] :: quarter tone; first audible note of instrument (L+S); + dieteris_F_N : N ; -- [XXXFS] :: period of two years; + dietim_Adv : Adv ; -- [XXXDE] :: daily; day-by-day; + diezeugmenon_N_N : N ; -- [DDXES] :: separation of equals/equal circumstances; two tetrachords (pl.) forming a scale; + diezeugmenos_A : A ; -- [XDXFO] :: disjunct; separate; 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 ; - diffamo_V2 : V2 ; - diffarreatio_F_N : N ; - diffensus_A : A ; - differens_A : A ; - differens_N_N : N ; - differenter_Adv : Adv ; - differentia_F_N : N ; - differentialis_A : A ; - differitas_F_N : N ; - differo_V : V ; - differtus_A : A ; - diffibulo_V2 : V2 ; - difficile_Adv : Adv ; - difficilis_A : A ; - difficiliter_Adv : Adv ; - difficultas_F_N : N ; - difficulter_Adv : Adv ; - diffidens_A : A ; - diffidenter_Adv : Adv ; - diffidentia_F_N : N ; - diffido_V : V ; - diffindo_V2 : V2 ; - diffingo_V2 : V2 ; - diffinio_V2 : V2 ; - diffinitio_F_N : N ; - diffissio_F_N : N ; - diffiteor_V : V ; - difflagito_V2 : V2 ; - difflatus_A : A ; - diffleo_V2 : V2 ; - diffletus_A : A ; - difflo_V2 : V2 ; - diffluo_V : V ; - diffluus_A : A ; - diffluvio_V : V ; - diffluxio_F_N : N ; - difformatas_F_N : N ; - diffors_A : A ; - diffringo_V2 : V2 ; - diffugio_V : V ; - diffugium_N_N : N ; - diffugo_V2 : V2 ; - diffulguro_V2 : V2 ; - diffulmino_V2 : V2 ; - diffumigo_V2 : V2 ; - diffundito_V2 : V2 ; - diffundo_V2 : V2 ; - diffuse_Adv : Adv ; - diffusilis_A : A ; - diffusio_F_N : N ; - diffusor_M_N : N ; - diffusus_A : A ; - diffutuo_V2 : V2 ; - diffututus_A : A ; - difringo_V2 : V2 ; - digamia_F_N : N ; - digamma_N_N : N ; - digammon_N_N : N ; - digammos_F_N : N ; - digammus_F_N : N ; - digamus_A : A ; - digeries_F_N : N ; - digero_V2 : V2 ; - digestibilis_A : A ; - digestilis_A : A ; - digestim_Adv : Adv ; - digestio_F_N : N ; - digestivus_A : A ; - digestorius_A : A ; - digestum_N_N : N ; - digestus_A : A ; - digestus_M_N : N ; - digitabulum_N_N : N ; - digitalis_A : A ; - digitatus_A : A ; - digitellum_N_N : N ; - digitellus_M_N : N ; - digitillum_N_N : N ; - digitillus_M_N : N ; - digitulus_M_N : N ; - digitus_M_N : N ; - digladiabilis_A : A ; - digladior_V : V ; - diglossos_F_N : N ; - digma_N_N : N ; - dignabilis_A : A ; - dignans_A : A ; - dignanter_Adv : Adv ; - dignatio_F_N : N ; - digne_Adv : Adv ; - dignitas_F_N : N ; - dignitos_A : A ; - dignitoss_A : A ; - digno_Adv : Adv ; - digno_V2 : V2 ; - dignor_V : V ; - dignoro_V2 : V2 ; - dignoscentia_F_N : N ; - dignosco_V2 : V2 ; - dignum_N_N : N ; - dignus_A : A ; - digrassor_V : V ; - digredior_V : V ; - digressio_F_N : N ; - digressivus_A : A ; - digressus_M_N : N ; - digrunnio_V : V ; - dihesis_F_N : N ; - diiambus_M_N : N ; - dijudicatio_F_N : N ; - dijudicatrix_F_N : N ; - dijudico_V : V ; - dijugatio_F_N : N ; - dijugo_V2 : V2 ; - dijuncte_Adv : Adv ; - dijunctim_Adv : Adv ; - dijunctio_F_N : N ; - dijunctivus_A : A ; - dijunctus_A : A ; - dijungo_V2 : V2 ; - dikerion_N_N : N ; - dikerium_N_N : N ; - dilabidus_A : A ; - dilabor_V : V ; - dilaceratio_F_N : N ; - dilacero_V2 : V2 ; - dilamino_V2 : V2 ; - dilancinatus_A : A ; - dilanio_V2 : V2 ; - dilapidatio_F_N : N ; - dilapidator_M_N : N ; - dilapido_V2 : V2 ; - dilapsio_F_N : N ; - dilargio_V2 : V2 ; - dilargior_V : V ; - dilargitor_M_N : N ; - dilargus_A : A ; - dilatatio_F_N : N ; - dilatator_M_N : N ; - dilatatus_A : A ; - dilatio_F_N : N ; - dilato_V2 : V2 ; - dilator_M_N : N ; - dilatorius_A : A ; - dilatura_F_N : N ; - dilaudo_V2 : V2 ; - dilaxo_V : V ; - dilectator_M_N : N ; - dilectio_F_N : N ; - dilector_M_N : N ; - dilectus_A : A ; - dilectus_M_N : N ; - dilemma_N_N : N ; - dilexio_F_N : N ; - dilibuo_V2 : V2 ; - dilibutus_A : A ; - diliculum_N_N : N ; - dilido_V2 : V2 ; - diligens_A : A ; - diligenter_Adv : Adv ; - diligentia_F_N : N ; - diligibilis_A : A ; - diligo_V2 : V2 ; - dilinio_V2 : V2 ; - dilitatio_F_N : N ; - dilogia_F_N : N ; - dilorico_V2 : V2 ; - diloris_A : A ; - diluceo_V : V ; - dilucesco_V : V ; - dilucidatio_F_N : N ; - dilucide_Adv : Adv ; - dilucidus_A : A ; - diluculat_V0 : V ; - diluculo_Adv : Adv ; - diluculum_N_N : N ; - diludium_N_N : N ; - diluo_V2 : V2 ; - dilute_Adv : Adv ; - dilutum_N_N : N ; - dilutus_A : A ; - diluvialis_A : A ; - diluvies_F_N : N ; - diluvio_F_N : N ; - diluvio_V2 : V2 ; - diluvium_N_N : N ; - dimacha_M_N : N ; - dimachaerus_A : A ; - dimachaerus_M_N : N ; - dimadesco_V : V ; - dimano_V : V ; - dimensio_F_N : N ; - dimensus_A : A ; - dimeter_A : A ; - dimeterus_M_N : N ; - dimetiens_M_N : N ; - dimetior_V : V ; - dimeto_V2 : V2 ; - dimetor_V : V ; - dimetr_A : A ; - dimetria_F_N : N ; - dimetros_M_N : N ; - dimicatio_F_N : N ; - dimico_V : V ; - dimidia_F_N : N ; - dimidiatio_F_N : N ; - dimidiatus_A : A ; - dimidietas_F_N : N ; - dimidio_V2 : V2 ; - dimidium_N_N : N ; - dimidius_A : A ; - diminuo_V2 : V2 ; - diminutio_F_N : N ; - diminutivum_N_N : N ; - dimissio_F_N : N ; - dimissor_M_N : N ; - dimissorialis_A : A ; - dimissorius_A : A ; - dimissus_M_N : N ; - dimitto_V2 : V2 ; - dimminuo_V2 : V2 ; - dimolio_V2 : V2 ; - dimolior_V : V ; - dimoveo_V2 : V2 ; - dine_F_N : N ; - dinosaurus_M_N : N ; - dinosco_V2 : V2 ; - dinoto_V2 : V2 ; - dinumerabilis_A : A ; - dinumeratio_F_N : N ; - dinumerator_M_N : N ; - dinumero_V2 : V2 ; - dinummium_N_N : N ; - dinuptila_F_N : N ; - dinus_A : A ; - diobolaris_A : A ; + diezeuxis_2_N : N ; -- [FDXFZ] :: diezeuxis note; note equal to nete-diezeugmenon; + diffamatio_F_N : N ; -- [XXXES] :: promulgation, publication; defamation (Ecc); + diffamatus_A : A ; -- [XXXEO] :: notorious; widely known; defamed/maligned (Bee), given a bad name; spread about; + diffamia_F_N : N ; -- [DXXFS] :: defamation; + diffamo_V2 : V2 ; -- [XXXDO] :: defame, slander; spread news of, publish abroad/widely, publish/divulge (L+S); + diffarreatio_F_N : N ; -- [XXXEO] :: ceremony of divorce; ancient form of Roman divorce (L+S); + diffensus_A : A ; -- [XXXES] :: deferred; protracted; + differens_A : A ; -- [XXXES] :: different; superior; excellent; + differens_N_N : N ; -- [XXXFO] :: difference/distinction; differentiating/distinguishing characteristic; + differenter_Adv : Adv ; -- [XXXFS] :: differently; + differentia_F_N : N ; -- [XXXCO] :: difference/diversity/distinction; distinguishing characteristic; different kind; + differentialis_A : A ; -- [GXXEK] :: differential; + differitas_F_N : N ; -- [XXXFO] :: difference; + differo_V : V ; -- [XXXAO] :: |spread abroad; scatter/disperse; separate; defame; confound/bewilder, distract; + differtus_A : A ; -- [XXXES] :: full, filled/stuffed; stuffed full; filled/stretched out with stuffing; crowded; + diffibulo_V2 : V2 ; -- [XXXFO] :: unfasten; unbuckle (L+S); unclasp; + difficile_Adv : Adv ; -- [XXXEO] :: with difficulty; + difficilis_A : A ; -- [XXXBO] :: |obstinate (person), intractable; inflexible; morose/surly; labored; + difficiliter_Adv : Adv ; -- [XXXCO] :: with difficulty; reluctantly; + difficultas_F_N : N ; -- [XXXCO] :: difficulty; trouble; hardship/want/distress/poverty (L+S); obstinacy; + difficulter_Adv : Adv ; -- [XXXCO] :: with difficulty; reluctantly; + diffidens_A : A ; -- [XXXEO] :: distrustful; lacking in confidence; without self-confidence (L+S); anxious; + diffidenter_Adv : Adv ; -- [XXXEO] :: diffidently; without self-confidence (L+S); anxious; + diffidentia_F_N : N ; -- [XXXCO] :: distrust, mistrust; unbelief; want of faith (Ecc); suspicion; disobedience; + diffido_V : V ; -- [XXXBO] :: distrust; despair; (w/DAT) lack confidence (in), despair (of); expect not; + diffindo_V2 : V2 ; -- [XXXCO] :: divide (usu. on length); split/cut/break off/open; defer/put off; refute/deny; + diffingo_V2 : V2 ; -- [XXXFO] :: reshape/remold, mold/forge into different shape; remodel, transform, make anew; + diffinio_V2 : V2 ; -- [FXXFO] :: define/bound/fix/limit/mark; restrict/confine; assign, ordain; lay down (rule); + diffinitio_F_N : N ; -- [XXXES] :: ||ending/boundary/limit (L+S); limiting; explanation; which is decreed/decided; + diffissio_F_N : N ; -- [XLXFO] :: postponement (of a trial); continuance; delay, deferral; putting off; + diffiteor_V : V ; -- [XXXCO] :: disavow, deny; + difflagito_V2 : V2 ; -- [XXXFO] :: importune, pester; dun, press, beset; + difflatus_A : A ; -- [XXXFS] :: blowing in an opposite direction; + diffleo_V2 : V2 ; -- [XXXFO] :: cry/weep away (one's eyes); + diffletus_A : A ; -- [XXXES] :: wept/cried out, drained with weeping/crying; + difflo_V2 : V2 ; -- [XXXEO] :: blow away, scatter/disperse by blowing; blow apart (L+S); + diffluo_V : V ; -- [XXXBO] :: flow away; waste/wear/melt away; dissolve/disappear; pass out; ramble (speaker); + diffluus_A : A ; -- [XXXFO] :: exuding liquid freely; seeping; overflowing (L+S); flowing asunder; + diffluvio_V : V ; -- [XXXFO] :: divide and spread out; split (L+S); divide/branch (into two streams); + diffluxio_F_N : N ; -- [DXXFS] :: discharge; flowing off; + difformatas_F_N : N ; -- [FXXEE] :: disagreement; lack of conformity; + diffors_A : A ; -- [DLXFS] :: justified, mitigating; defense that admits act but justifies; + diffringo_V2 : V2 ; -- [XXXDO] :: shatter; break up/apart/in pieces; + diffugio_V : V ; -- [XXXCO] :: scatter, disperse, dispel; flee/run away in different/several directions; + diffugium_N_N : N ; -- [XXXFO] :: scattering, flight in all directions; running away; dispersion (L+S); + diffugo_V2 : V2 ; -- [XXXES] :: scatter, disperse, dispel; put to flight; rout; + diffulguro_V2 : V2 ; -- [XXXFO] :: scatter lightning/thunderbolts around/abroad; + diffulmino_V2 : V2 ; -- [DXXFO] :: scatter (as) with a thunderbolt/lightning; + diffumigo_V2 : V2 ; -- [XXXFS] :: fumigate; + diffundito_V2 : V2 ; -- [XXXFO] :: dissipate; squander, waste, throw away; + diffundo_V2 : V2 ; -- [XXXBO] :: |expand/enlarge; spread/extend over area/time; relax/cheer up/free of restraint; + diffuse_Adv : Adv ; -- [XXXEO] :: amply/liberally; expansively; widely/everywhere; copiously (L+S); scattered way; + diffusilis_A : A ; -- [XXXFO] :: diffusive; capable of spreading, elastic (Cas); + diffusio_F_N : N ; -- [EXXEP] :: |pouring out (liquids); watering of the eyes; wide stretch, extent; abundance; + diffusor_M_N : N ; -- [XXXIO] :: bottler, one who draws off into smaller vessels; drawer-off of liquids (L+S); + diffusus_A : A ; -- [XXXCO] :: spread out; wide; extending/covering widely; extensive/expansive (writing); + diffutuo_V2 : V2 ; -- [XXXEO] :: indulge in promiscuous sexual intercourse with (woman); copulate freely (rude); + diffututus_A : A ; -- [XXXFS] :: existed by (sexual) indulgence; + difringo_V2 : V2 ; -- [XXXEO] :: shatter; break up/apart/in pieces; + digamia_F_N : N ; -- [XLXFS] :: remarriage, second marriage (after death/divorce); digamy; (usu. not bigamy); + digamma_N_N : N ; -- [XGHEO] :: digamma; (archaic Greek letter); Aeolic double gamma; (in Latin use F or V); + digammon_N_N : N ; -- [XGHEO] :: digamma; (archaic Greek letter); Aeolic double gamma; (in Latin use F or V); + digammos_F_N : N ; -- [XGHEO] :: digamma; (archaic Greek letter); Aeolic double gamma; (in Latin use F or V); + digammus_F_N : N ; -- [XGHEO] :: digamma; (archaic Greek letter); Aeolic double gamma; (in Latin use F or V); + digamus_A : A ; -- [XLXES] :: twice-married, remarried, that has been married twice; (usu. not) bigamist; + digeries_F_N : N ; -- [XXXES] :: disposition, arrangement; L:digestion; + digero_V2 : V2 ; -- [XBXBO] :: ||dissolve, dissipate morbid matter; exercise (for health); consider maturely; + digestibilis_A : A ; -- [DBXES] :: of digestion; digestible, easy to digest; promoting digestion; + digestilis_A : A ; -- [DBXFS] :: promoting digestion; + digestim_Adv : Adv ; -- [DXXFS] :: in order; + digestio_F_N : N ; -- [XAXDO] :: |digestion; dissolving of food; distribution of assimilated food in body (OLD); + digestivus_A : A ; -- [XBXFS] :: digestive; of digestion; + digestorius_A : A ; -- [DBXFS] :: promoting digestion; + digestum_N_N : N ; -- [XLXFO] :: digest of laws (pl.); abstract of body of law arranged systematically; + digestus_A : A ; -- [XBXFS] :: that has good digestion; + digestus_M_N : N ; -- [XLXFO] :: administration; arrangement and disposal; distribution (L+S); management; + digitabulum_N_N : N ; -- [XXXFO] :: finger-stall/protector/guard; glove worn picking olives (L+S); glove (Cal); + digitalis_A : A ; -- [XXXNO] :: measuring a finger's breadth; of/belonging to a finger (L+S); digital (Cal); + digitatus_A : A ; -- [XXXNO] :: having toes; having fingers or toes (L+S); + digitellum_N_N : N ; -- [XAXEO] :: houseleek; (plant Sempervivum tectorum); + digitellus_M_N : N ; -- [XAXEO] :: houseleek; (plant Sempervivum tectorum); + digitillum_N_N : N ; -- [XAXEO] :: houseleek; (plant Sempervivum tectorum); + digitillus_M_N : N ; -- [XAXEO] :: houseleek; (plant Sempervivum tectorum); + digitulus_M_N : N ; -- [XXXDO] :: little finger; little toe; the touch of a finger; claw (crab/bird L+S); + digitus_M_N : N ; -- [XXXAX] :: finger; toe; finger's breadth, inch; (1/16 of a pes); twig; + digladiabilis_A : A ; -- [DXXFS] :: fierce; contentious; + digladior_V : V ; -- [XWXEO] :: fight (gladiatorial); fight/struggle fiercely; contend; flourish sword (Cas); + diglossos_F_N : N ; -- [DAXFS] :: plant (sedum alum); (diglossia, using two forms of language is modern 1960); + digma_N_N : N ; -- [DSXFS] :: specimen; + dignabilis_A : A ; -- [DXXFS] :: worthy, deserving, meriting; + dignans_A : A ; -- [FXXEZ] :: dignified?; + dignanter_Adv : Adv ; -- [DXXES] :: courteously; with complaisance; worthily (Ecc); properly; + dignatio_F_N : N ; -- [XXXCO] :: esteem/regard/respect (for); repute/reputation, honor/dignity; rank/status; + digne_Adv : Adv ; -- [XXXCO] :: worthily; appropriately/suitably; in a fitting manner; becomingly (L+S); + dignitas_F_N : N ; -- [XXXBO] :: |rank/status; merit; dignity; position/authority/office; dignitaries (pl.); + dignitos_A : A ; -- [XXXFO] :: dignified, having dignified status/position; respectable (L+S); + dignitoss_A : A ; -- [XXXFO] :: dignified, having dignified status/position; respectable (L+S); + digno_Adv : Adv ; -- [EXXFP] :: worthily; appropriately/suitably; in a fitting manner; becomingly (L+S); + digno_V2 : V2 ; -- [XXXAO] :: deem/consider/think worthy/becoming/deserving/fit (to); deign, condescend; + dignor_V : V ; -- [XXXDO] :: deem/consider/think worthy/becoming/deserving/fit (to); deign, condescend; + dignoro_V2 : V2 ; -- [XXXFO] :: distinguish; know apart, make distinction, separate; + dignoscentia_F_N : N ; -- [XXXFS] :: knowledge; power of distinguishing; + dignosco_V2 : V2 ; -- [BXXCO] :: discern/distinguish/separate, recognize as distinct; make distinction; + dignum_N_N : N ; -- [XXXCO] :: appropriate/suitable thing; worthy act; worth; + dignus_A : A ; -- [XXXAO] :: appropriate/suitable; worthy, deserving, meriting; worth (w/ABL/GEN); + digrassor_V : V ; -- [EXXFP] :: rove around/about; + digredior_V : V ; -- [XXXCO] :: depart; come/go away; part/separate/deviate; divorce; G:digress/leave (topic); + digressio_F_N : N ; -- [EXXEP] :: |place of retirement/holiday; + digressivus_A : A ; -- [DGXFS] :: digressive, of/pertaining to a digression; contained in digression (Souter); + digressus_M_N : N ; -- [EXXDP] :: |place of retirement; death; + digrunnio_V : V ; -- [XXXFS] :: grunt hard; give a performance of grunting; + dihesis_F_N : N ; -- [XDXEO] :: quarter tone; first audible note of instrument (L+S); + diiambus_M_N : N ; -- [XPXFO] :: diiamb, double iamb, metrical foot of two iambs (U_U_); + dijudicatio_F_N : N ; -- [XXXFO] :: judication, action/faculty of deciding/judging/determining (between things); + dijudicatrix_F_N : N ; -- [XXXFO] :: arbitress; adjudicator/judicator/umpire/decider/judge (female); + dijudico_V : V ; -- [XLXCO] :: decide, settle (conflict); adjudicate/judge; distinguish (between), discern; + dijugatio_F_N : N ; -- [DXXFS] :: separation; + dijugo_V2 : V2 ; -- [DXXFS] :: separate; + dijuncte_Adv : Adv ; -- [XGXEO] :: separately; disjunctively, in form of disjunctive proposition; + dijunctim_Adv : Adv ; -- [XXXFO] :: separately; + dijunctio_F_N : N ; -- [XXXCO] :: separation (from person); rupture (relationship); disjunctive proposition; + dijunctivus_A : A ; -- [XGXEO] :: disjunctive, separative; disconnecting, making discontinuous (surveying); + dijunctus_A : A ; -- [XXXCO] :: separated/distant/disconnected/set apart; different/distinct/individual; + dijungo_V2 : V2 ; -- [XXXBO] :: unyoke; disunite, sever, divide, separate, part, estrange; put asunder (Ecc); + dikerion_N_N : N ; -- [EEHFE] :: double candlestick used by Greek bishops; + dikerium_N_N : N ; -- [EEHFE] :: double candlestick used by Greek bishops; + dilabidus_A : A ; -- [XXXFO] :: that disintegrates, that falls/goes to pieces; + dilabor_V : V ; -- [XXXBS] :: ||flee/escape; scatter, fall into confusion; be lost; go to ruin; pass (time); + dilaceratio_F_N : N ; -- [DXXES] :: tearing to pieces, tearing in pieces; tearing apart; shredding; + dilacero_V2 : V2 ; -- [XXXDO] :: tear to pieces, tear in pieces; tear apart; + dilamino_V2 : V2 ; -- [XXXFO] :: split in two (?); + dilancinatus_A : A ; -- [DXXDS] :: torn apart; torn to pieces; shredded; rent asunder; + dilanio_V2 : V2 ; -- [XXXDO] :: tear to pieces; shred; rend/pull asunder; + dilapidatio_F_N : N ; -- [EXXES] :: squandering; wasting; + dilapidator_M_N : N ; -- [EXXFP] :: squanderer; + dilapido_V2 : V2 ; -- [XXXES] :: |squander; throw away; scatter like stones; consume; destroy; + dilapsio_F_N : N ; -- [DXXFS] :: decay; destruction; + dilargio_V2 : V2 ; -- [FXXEE] :: lavish; give away freely; give/bestow liberally/profusely/recklessly; + dilargior_V : V ; -- [XXXDO] :: lavish; give away freely; give/bestow liberally/profusely/recklessly; + dilargitor_M_N : N ; -- [EXXFP] :: lavish giver; generous donor; + dilargus_A : A ; -- [EXXEM] :: extravagant; lavish; + dilatatio_F_N : N ; -- [XXXFO] :: increase/enlargement; expansion/extension; dilation; diffusion/propagation; + dilatator_M_N : N ; -- [DXXFS] :: propagator, he who propagates (the Latin language, for instance); + dilatatus_A : A ; -- [XXXEO] :: dilated; widened out; + dilatio_F_N : N ; -- [XLXCO] :: adjournment; postponement, delay; deferral; interval (of space); + dilato_V2 : V2 ; -- [XXXBO] :: |exaggerate, magnify; fill out; express more fully; pronounce more broadly; + dilator_M_N : N ; -- [XXXFO] :: procrastinator; delayer; dilatory person (L+S); + dilatorius_A : A ; -- [XXXEO] :: dilatory, delaying; concerned with deferment; + dilatura_F_N : N ; -- [XXXFS] :: postponement, delay; deferral; + dilaudo_V2 : V2 ; -- [XXXFO] :: praise expansively/widly/highly/much/in all respects; be grateful to (Ecc); + dilaxo_V : V ; -- [XXXFS] :: stretch apart; + dilectator_M_N : N ; -- [XWXIO] :: recruiter; recruiting officer; + dilectio_F_N : N ; -- [EEXFS] :: love; delight, pleasure (Bee); goodwill; + dilector_M_N : N ; -- [XXXFO] :: lover; one who loves or has affection (for); + dilectus_A : A ; -- [XXXCO] :: beloved, dear; loved (L+S); + dilectus_M_N : N ; -- [XXXBO] :: |selection/choosing; choice (between possibilities), discrimination/distinction; + dilemma_N_N : N ; -- [DGXFS] :: dilemma, double proposition; argument putting foe between two difficulties; + dilexio_F_N : N ; -- [EXXDM] :: beloved, love; amiability (address or title); favor; + dilibuo_V2 : V2 ; -- [XXXCS] :: besmear; anoint with a liquid; + dilibutus_A : A ; -- [XXXCO] :: thickly smeared/stained; steeped (in a condition), deeply imbued (with feeling); + diliculum_N_N : N ; -- [EXXDE] :: dawn, daybreak; + dilido_V2 : V2 ; -- [XXXFO] :: batter to pieces; + diligens_A : A ; -- [XXXBO] :: |thrifty, economical, frugal; attentive, fond (of), devoted (to); + diligenter_Adv : Adv ; -- [XXXCO] :: carefully; attentively; diligently; scrupulously; thoroughly/completely/well; + diligentia_F_N : N ; -- [XXXBO] :: diligence/care/attentiveness; economy/frugality/thrift; industry; love (Souter); + diligibilis_A : A ; -- [DXXFS] :: amiable; estimable; lovable (Souter); + diligo_V2 : V2 ; -- [XXXBO] :: love, hold dear; value/esteem/favor; have special regard for; (milder than amo); + dilinio_V2 : V2 ; -- [FXXEE] :: disturb, harass; torment mentally; + dilitatio_F_N : N ; -- [FXXEM] :: delay; enlargement (Nelson); + dilogia_F_N : N ; -- [XGXFS] :: ambiguity; + dilorico_V2 : V2 ; -- [XXXEO] :: tear/pull apart/open; (of garment covering breast); + diloris_A : A ; -- [DXXFS] :: two-striped; (garment); + diluceo_V : V ; -- [XXXDO] :: be clear; be evident; be light enough to distinguish objects (L+S); + dilucesco_V : V ; -- [XXXDO] :: dawn, become/grow light; begin to shine (L+S); shine (PERF); + dilucidatio_F_N : N ; -- [DXXFS] :: explaining; distinctness; capability of being clearly perceived/understood; + dilucide_Adv : Adv ; -- [XXXDO] :: plainly, clearly, distinctly, evidently, lucidly; brightly, clearly; + dilucidus_A : A ; -- [XXXDO] :: plain, clear, distinct, evident; lucid; clear, bright; transparent; + diluculat_V0 : V ; -- [XXXFO] :: it dawns, it becomes/grows light; + diluculo_Adv : Adv ; -- [XXXEO] :: at dawn/daybreak/first light; early; + diluculum_N_N : N ; -- [XXXEO] :: dawn, daybreak, first light; break of day; + diludium_N_N : N ; -- [XXXEO] :: interval; intermission in games/plays; half-time; breathing-space; resting time; + diluo_V2 : V2 ; -- [XXXBO] :: ||rebut/refute, explain away, make clear, explain, clear up (charge); diminish; + dilute_Adv : Adv ; -- [XXXFS] :: slightly; weakly; faintly; + dilutum_N_N : N ; -- [XXXFO] :: dilute solution; solution, liquid in which something has been dissolved (L+S); + dilutus_A : A ; -- [XXXCO] :: diluted, mixed w/water; thin, watery; pale; faint; feeble, lacking force; soft; + diluvialis_A : A ; -- [DXXFS] :: of a deluge/flood; + diluvies_F_N : N ; -- [XXXEO] :: flood, inundation; deluge (L+S); destruction (by water); + diluvio_F_N : N ; -- [XXXES] :: flood, inundation; deluge (L+S); destruction (by water); + diluvio_V2 : V2 ; -- [XXXFO] :: flood, inundate; deluge (L+S); + diluvium_N_N : N ; -- [XXXDO] :: flood, inundation; deluge (L+S); destruction (by water); + dimacha_M_N : N ; -- [XWXFO] :: soldiers (pl.) who fight on foot or horseback; dismounted cavalry; dragoons; + dimachaerus_A : A ; -- [XWXIS] :: fighting with two swords; + dimachaerus_M_N : N ; -- [XWXIO] :: gladiator who fights with two swords; + dimadesco_V : V ; -- [XXXFO] :: melt away; + dimano_V : V ; -- [XXXES] :: run/flow down; percolate; flow different ways (L+S); descend; descend from; + dimensio_F_N : N ; -- [FXXEE] :: |reasoning; judgment; extent (L+S); + dimensus_A : A ; -- [XXXFO] :: regular; measured; + dimeter_A : A ; -- [XPXFS] :: of two measures or two/four metric feet; + dimeterus_M_N : N ; -- [XPXFO] :: dimeter; verse of two measures or two/four metric feet; + dimetiens_M_N : N ; -- [XSXNO] :: diameter; + dimetior_V : V ; -- [XSXCO] :: measure out/off; (space/time/words); weigh out, measure by weight; lay out; + dimeto_V2 : V2 ; -- [XSXFS] :: measure out; mark out; fix the limits; + dimetor_V : V ; -- [XSXEO] :: measure out; mark out; fix the limits; + dimetr_A : A ; -- [XPXFS] :: of two measures or two/four metric feet; + dimetria_F_N : N ; -- [XPXFS] :: poem consisting of iambic dimeters (two measures or metric feet); + dimetros_M_N : N ; -- [XPXFO] :: dimeter; verse of two measures or two/four metric feet; + dimicatio_F_N : N ; -- [XWXCO] :: fight; instance of a battle/engagement; combat; struggle, conflict; contest; + dimico_V : V ; -- [XWXEO] :: fight, battle; struggle/contend/strive; brandish weapons; be in conflict/peril; + dimidia_F_N : N ; -- [XXXNS] :: half; + dimidiatio_F_N : N ; -- [DXXFS] :: halving; dividing into halves; + dimidiatus_A : A ; -- [XXXCO] :: halved, divided in half; incomplete, imperfect, half; + dimidietas_F_N : N ; -- [XXXFS] :: half; + dimidio_V2 : V2 ; -- [XXXCS] :: halve, divide in half/two; divide into two equal parts (L+S); + dimidium_N_N : N ; -- [XXXCO] :: half; [dimidio w/COMP ADJ ~ => twice as ~]; + dimidius_A : A ; -- [XXXCO] :: half; incomplete, mutilated; [parte ~a auctus => twice as large, doubled]; + diminuo_V2 : V2 ; -- [XXXDO] :: shatter; break; dash to pieces (L+S); violate/outrage; lessen/diminish (Ecc); + diminutio_F_N : N ; -- [XXXBO] :: |understatement; formation of diminutive; [capitis ~ => loss of civil rights]; + diminutivum_N_N : N ; -- [XGXEO] :: form of the diminutive; diminutive (noun L+S); (grammar); + dimissio_F_N : N ; -- [XXXDS] :: |sending out/forth/ in different directions; remission (of pain/fever); + dimissor_M_N : N ; -- [EEXFS] :: forgiver; pardoner; + dimissorialis_A : A ; -- [ELXFE] :: of/pertaining to dismissal/discharge/release/firing, dimissorial; + dimissorius_A : A ; -- [XLXFS] :: of/pertaining to dismissal/discharge/release/firing; B:relaxing/improving; + dimissus_M_N : N ; -- [FWXEM] :: surrender; handing over; demise; + dimitto_V2 : V2 ; -- [XXXAO] :: |||discontinue, renounce, abandon/forsake, forgo, give up (activity); dispatch; + dimminuo_V2 : V2 ; -- [XXXDO] :: shatter; break; dash to pieces (L+S); violate/outrage; lessen/diminish (Ecc); + dimolio_V2 : V2 ; -- [XXXCO] :: throw/cast off, remove; pull/tear down, demolish/destroy/lay waste; abolish; + dimolior_V : V ; -- [XXXCO] :: throw/cast off, remove; pull/tear down, demolish/destroy/lay waste; abolish; + dimoveo_V2 : V2 ; -- [XXXBO] :: |separate/divide; cleave; make a parting in/between;, part; disperse; + dine_F_N : N ; -- [XXXFS] :: whirlwind; vortex; + dinosaurus_M_N : N ; -- [GXXEK] :: dinosaur; + dinosco_V2 : V2 ; -- [XXXCO] :: discern/distinguish/separate, recognize as distinct; make distinction; + dinoto_V2 : V2 ; -- [XXXFO] :: mark with a distinctive label; + dinumerabilis_A : A ; -- [DSXFS] :: calculable; that may be numbered; enumerable, countable; + dinumeratio_F_N : N ; -- [XSXCO] :: counting/reckoning (action/process); calculation; enumeration of points; + dinumerator_M_N : N ; -- [XSXFS] :: counter, reckoner; enumerator; + dinumero_V2 : V2 ; -- [XXXCO] :: count, calculate (number of); enumerate; reckon; count/pay out (money); + dinummium_N_N : N ; -- [DLXFS] :: tax of two nummi; + dinuptila_F_N : N ; -- [DAXFS] :: plant, bryony; + dinus_A : A ; -- [XEXIO] :: divine; godlike; (divinus in inscription); + diobolaris_A : A ; -- [XXHEO] :: two obol-; priced at/costs/is worth two obols, very cheap; (a dime); 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 ; + dioces_2_N : N ; -- [EEXDM] :: diocese, province; Roman provincial district; (later) bishop's jurisdiction; + diocesanus_A : A ; -- [EEXEM] :: diocesan; of bishop's jurisdiction; + diocesis_F_N : N ; -- [EEXDM] :: diocese, province; Roman provincial district; (later) bishop's jurisdiction; 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 ; + dioeces_2_N : N ; -- [DLXDS] :: diocese, province; Roman provincial district; (later) bishop's jurisdiction; + dioecesanus_A : A ; -- [EEXEM] :: diocesan; of bishop's jurisdiction; + dioecesis_F_N : N ; -- [DLXDS] :: diocese, province; Roman provincial district; (later) bishop's jurisdiction; + dioecetes_M_N : N ; -- [XLXFO] :: officer controlling expenditure; revenue official/overseer, Royal treasurer; + diogmita_M_N : N ; -- [DWXFS] :: border guards (pl.); light-armed frontier troops for the pursuit of robbers; + dionymus_A : A ; -- [XXXFS] :: with/having a double name; 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 ; - dioptrica_F_N : N ; - dioryx_F_N : N ; - dioryz_F_N : N ; - diota_F_N : N ; - diox_M_N : N ; - diphryges_A : A ; - diphryges_F_N : N ; - diphthongus_F_N : N ; - diphyes_F_N : N ; - diplangium_N_N : N ; - diplasius_A : A ; - diplinthius_A : A ; - diplois_F_N : N ; - diploma_N_N : N ; - diplomarius_A : A ; - diplomarius_M_N : N ; - diplomatibus_M_N : N ; - diplomatice_Adv : Adv ; - diplomaticus_A : A ; - dipondiarius_A : A ; - dipondiarius_M_N : N ; - dipondius_M_N : N ; - dipsacos_F_N : N ; - dipsas_F_N : N ; - dipteros_A : A ; - dipteros_F_N : N ; - diptherias_M_N : N ; - dipthongus_F_N : N ; - diptotum_N_N : N ; - diptychon_N_N : N ; - diptychum_N_N : N ; - dipyrus_A : A ; - dira_F_N : N ; - dirado_V2 : V2 ; - diraro_V2 : V2 ; - diratio_F_N : N ; - dirationo_V2 : V2 ; - dircium_N_N : N ; - directa_Adv : Adv ; - directarius_M_N : N ; - directe_Adv : Adv ; - directiangulus_A : A ; - directilineus_A : A ; - directim_Adv : Adv ; - directio_F_N : N ; - directitudo_F_N : N ; - directivum_N_N : N ; - directivus_A : A ; - directo_Adv : Adv ; - director_M_N : N ; - directorium_N_N : N ; - directorius_A : A ; - directum_N_N : N ; - directura_F_N : N ; - directus_A : A ; - directus_M_N : N ; - diremptio_F_N : N ; - diremptus_M_N : N ; - direptio_F_N : N ; - direptor_M_N : N ; - diribeo_V2 : V2 ; - diribitio_F_N : N ; - diribitor_M_N : N ; - diribitorium_N_N : N ; - dirigismus_M_N : N ; - dirigo_V2 : V2 ; - dirimens_A : A ; - dirimo_V2 : V2 ; - diripio_V2 : V2 ; - diritas_F_N : N ; - dirivatio_F_N : N ; - dirivo_V2 : V2 ; - dirrumpo_V2 : V2 ; - dirum_N_N : N ; - dirumpo_V2 : V2 ; - diruo_V2 : V2 ; - diruptio_F_N : N ; - dirus_A : A ; - dirutio_F_N : N ; - dis_A : A ; - disamo_V2 : V2 ; - discalceatus_A : A ; - discantus_M_N : N ; - discapedino_V2 : V2 ; - discaveo_V : V ; - discedo_V2 : V2 ; - disceptatio_F_N : N ; - disceptator_M_N : N ; - disceptio_F_N : N ; - discepto_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_V2 : V2 ; - disciplina_F_N : N ; - disciplinabilis_A : A ; - disciplinaris_A : A ; - disciplinatus_A : A ; - discipula_F_N : N ; - discipulatus_M_N : N ; - discipulus_M_N : N ; - discissus_A : A ; - discludo_V2 : V2 ; - disco_V2 : V2 ; - discographia_F_N : N ; - discolor_A : A ; - discolus_A : A ; - discomputus_M_N : N ; - disconvenio_V : V ; - discooperio_V2 : V2 ; - discoperio_V2 : V2 ; - discophonum_N_N : N ; - discoquo_V2 : V2 ; - discordia_F_N : N ; - discordiosus_A : A ; - discorditer_Adv : Adv ; - discordium_N_N : N ; - discordo_V : V ; - discors_A : A ; - discotheca_F_N : N ; - discrepantia_F_N : N ; - discrepat_V0 : V ; - discrepo_V : V ; - discretio_F_N : N ; - discretor_M_N : N ; - discretus_A : A ; - discribo_V2 : V2 ; - discrimen_N_N : N ; - discriminale_N_N : N ; - discriminalis_A : A ; - discriminatio_F_N : N ; - discrimino_V : V ; - discriptio_F_N : N ; - discrucio_V : V ; - discubitus_M_N : N ; - disculcio_V2 : V2 ; - discumbens_M_N : N ; - discumbo_V2 : V2 ; - discurro_V : V ; - discursus_M_N : N ; - discus_M_N : N ; - discutio_V2 : V2 ; - discuto_V : V ; - disdiapason_N_N : N ; - disdo_V2 : V2 ; - diselianus_A : A ; - diserte_Adv : Adv ; - disertitudo_F_N : N ; - disertus_A : A ; - disgratia_F_N : N ; - disgregatio_F_N : N ; - disgregativus_A : A ; - disgrego_V2 : V2 ; - disicio_V2 : V2 ; - disidium_N_N : N ; - disilio_V : V ; - disjicio_V2 : V2 ; - disjugata_F_N : N ; - disjugo_V2 : V2 ; - disjuncte_Adv : Adv ; - disjunctim_Adv : Adv ; - disjunctio_F_N : N ; - disjunctivus_A : A ; - disjunctus_A : A ; - disjungo_V2 : V2 ; - dismembratio_F_N : N ; - dismembratus_A : A ; - dismembro_V2 : V2 ; - dispando_V : V ; - dispar_A : A ; - dispareo_V : V ; - disparitas_F_N : N ; - disparitio_F_N : N ; - disparo_V : V ; - dispartio_V2 : V2 ; - dispartior_V : V ; - dispector_M_N : N ; - dispello_V2 : V2 ; - dispendiose_Adv : Adv ; - dispendium_N_N : N ; - dispendo_V : V ; - dispensatio_F_N : N ; - dispensator_M_N : N ; - dispensatorius_A : A ; - dispenso_V : V ; - disperdo_V2 : V2 ; - dispereo_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_V2 : V2 ; - dispicio_V2 : V2 ; - displiceo_V : V ; - displodeo_V : V ; - displodo_V2 : V2 ; - displosio_F_N : N ; - dispolio_V2 : V2 ; - dispono_V2 : V2 ; - disponsatio_F_N : N ; - disponso_V : V ; - dispositio_F_N : N ; - dispositivus_A : A ; - dispositor_M_N : N ; - disproportio_F_N : N ; - dispunctio_F_N : N ; - dispungo_V2 : V2 ; - disputatio_F_N : N ; - disputo_V : V ; - disquiro_V : V ; - disquisitio_F_N : N ; - disraro_V2 : V2 ; - disratio_F_N : N ; - disrationo_V : V ; - disrumpo_V2 : V2 ; - dissaepio_V2 : V2 ; - disseco_V : V ; - disseco_V2 : V2 ; - dissectio_F_N : N ; - disseisina_F_N : N ; - 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_V2 : V2 ; - disserenat_V0 : V ; - dissero_V2 : V2 ; - disserto_V : V ; - dissicio_V2 : V2 ; - dissico_V2 : V2 ; - dissideo_V : V ; - dissidium_N_N : N ; - dissignatio_F_N : N ; - dissignator_M_N : N ; - dissigno_V2 : V2 ; - dissilio_V2 : V2 ; - dissilo_V : V ; - dissimilis_A : A ; - dissimilitudo_F_N : N ; - dissimulanter_Adv : Adv ; - dissimulatio_F_N : N ; - dissimulator_M_N : N ; - dissimulo_V : V ; - dissipatio_F_N : N ; - dissipo_V : V ; - dissitus_A : A ; - dissociabilis_A : A ; - dissociatus_A : A ; - dissocio_V : V ; - dissolutio_F_N : N ; - dissolutus_A : A ; - dissolvo_V2 : V2 ; - dissonanter_Adv : Adv ; - dissonantia_F_N : N ; - dissonantium_N_N : N ; - dissonus_A : A ; - dissors_A : A ; - dissuadeo_V : V ; - dissuasio_F_N : N ; - dissuasor_M_N : N ; - dissuasorius_A : A ; - dissuesco_V2 : V2 ; - dissulto_V : V ; - dissuo_V2 : V2 ; - dissupo_V : V ; - distabesco_V : V ; - distans_A : A ; - distantia_F_N : N ; - distendo_V2 : V2 ; - distenno_V : V ; - distentio_F_N : N ; - distentus_A : A ; - distermino_V2 : V2 ; - distichon_N_N : N ; - distichos_A : A ; - distichus_A : A ; - distillatio_F_N : N ; - distillo_V : V ; - distimulo_V2 : V2 ; - distinctio_F_N : N ; - distinctus_A : A ; - distineo_V : V ; - distinguo_V2 : V2 ; - disto_V : V ; - distorqueo_V : V ; - distortus_A : A ; - distractio_F_N : N ; - distractus_A : A ; - distraho_V2 : V2 ; - distribuo_V2 : V2 ; - distributio_F_N : N ; - distributivus_A : A ; - distributor_M_N : N ; - districte_Adv : Adv ; - districtim_Adv : Adv ; - districtio_F_N : N ; - districtus_A : A ; - distrinctio_F_N : N ; - distringo_V2 : V2 ; - disturbium_N_N : N ; - disturbo_V : V ; - disyllaba_F_N : N ; - disyllabum_N_N : N ; - disyllabus_A : A ; - ditator_M_N : N ; - ditesco_V : V ; - dithalassus_A : A ; - dithyrambicus_A : A ; - dithyrambus_M_N : N ; - ditio_F_N : N ; - ditius_Adv : Adv ; - dito_V : V ; - ditonica_F_N : N ; - ditonicus_A : A ; - ditonum_N_N : N ; - ditonus_M_N : N ; - ditrochaeus_M_N : N ; - ditto_V2 : V2 ; - diu_Adv : Adv ; - dium_N_N : N ; - diurnale_N_N : N ; - diurnalismus_M_N : N ; - diurnarius_A : A ; - diurnarius_M_N : N ; - diurnitas_F_N : N ; - diurnum_N_N : N ; - diurnus_A : A ; - dius_A : A ; - dius_Adv : Adv ; - dius_M_N : N ; - diutinus_A : A ; - diutule_Adv : Adv ; - diuturnitas_F_N : N ; - diuturnus_A : A ; - diva_F_N : N ; - divaliis_A : A ; - divarico_V2 : V2 ; - divello_V2 : V2 ; - divendo_V : V ; - diverbero_V : V ; - diverbium_N_N : N ; - divergentia_F_N : N ; - divergeo_V : V ; - diverro_V2 : V2 ; - diversifico_V : V ; - diversimodus_M_N : N ; - diversitas_F_N : N ; - diverso_V : V ; - diversorium_N_N : N ; - diversorius_A : A ; - diversus_A : A ; - diverto_V2 : V2 ; - dives_A : A ; - dives_M_N : N ; - divexo_V2 : V2 ; - dividendus_A : A ; - divido_V2 : V2 ; - dividuus_A : A ; - divinatio_F_N : N ; - divinitas_F_N : N ; - divinitus_Adv : Adv ; - divino_V : V ; - divinus_A : A ; - divinus_M_N : N ; - divise_Adv : Adv ; - divisibilis_A : A ; - divisim_Adv : Adv ; - divisio_F_N : N ; - divisor_M_N : N ; - divisus_M_N : N ; - divitia_F_N : N ; - divortium_N_N : N ; - divorto_V2 : V2 ; - divulgamen_N_N : N ; - divulgatio_F_N : N ; - divulgo_V : V ; - divum_N_N : N ; - divus_A : A ; - divus_M_N : N ; - do_V2 : V2 ; - doceo_V : V ; - dochmius_M_N : N ; - docibilis_A : A ; - docilis_A : A ; - docilitas_F_N : N ; - dociliter_Adv : Adv ; - doctiloquus_A : A ; - doctor_M_N : N ; - doctoralis_A : A ; - doctoratus_M_N : N ; - doctrina_F_N : N ; - doctrinalis_A : A ; - doctrix_F_N : N ; - doctus_A : A ; - documen_N_N : N ; - documentalis_A : A ; - documentarius_A : A ; - documentatio_F_N : N ; - documentum_N_N : N ; - dodecaedrum_N_N : N ; - dodrans_M_N : N ; - doga_F_N : N ; - dogma_N_N : N ; - dogmatice_Adv : Adv ; - dogmaticus_A : A ; - dogmatizo_V : V ; - dolabra_F_N : N ; - dolenter_Adv : Adv ; - doleo_V : V ; - doliolum_N_N : N ; - dolium_N_N : N ; - dollarium_N_N : N ; - dolo_V2 : V2 ; - dolor_M_N : N ; - dolorosus_A : A ; - dolose_Adv : Adv ; - dolositas_F_N : N ; - dolosus_A : A ; - dolus_M_N : N ; - doma_N_N : N ; - domabilis_A : A ; - domesticatus_M_N : N ; - domesticus_A : A ; - domesticus_M_N : N ; - domicellaris_M_N : N ; - domicilium_N_N : N ; - domigena_C_N : N ; - domina_F_N : N ; - dominatio_F_N : N ; - dominativus_A : A ; - dominator_M_N : N ; - dominatrix_F_N : N ; - dominatus_M_N : N ; - dominicale_N_N : N ; - dominicalis_A : A ; - dominicum_N_N : N ; - dominicus_A : A ; - dominium_N_N : N ; - domino_V : V ; - dominor_V : V ; - dominus_M_N : N ; - domiporta_F_N : N ; - domito_V : V ; - domitor_M_N : N ; - domna_F_N : N ; - domne_N : N ; - domnus_M_N : N ; - domo_V : V ; - domuncula_F_N : N ; - domus_F_N : N ; - donarium_N_N : N ; - donatarius_M_N : N ; - donatio_F_N : N ; - donativum_N_N : N ; - donator_M_N : N ; - donatrix_F_N : N ; - donatus_M_N : N ; - donec_Conj : Conj ; - dono_V : V ; - donum_N_N : N ; + dionysonymphas_2_N : N ; -- [XAHNO] :: plant (unknown); (first y long); (also called casignete); + diopetes_A : A ; -- [XXHNO] :: fallen from the sky/heaven; [~ rana => rain-frog]; + diopetes_M_N : N ; -- [XXHNS] :: something fallen from the sky/heaven; + dioptra_F_N : N ; -- [XTXEO] :: surveying/optical instrument (used for measuring levels/heights); + dioptrica_F_N : N ; -- [GXXEK] :: dioptric; diopter; (lens) focal length one meter; (2 ~ -> half meter); + dioryx_F_N : N ; -- [XXHFS] :: channel; trench; canal; + dioryz_F_N : N ; -- [XXHFO] :: channel; trench; canal; + diota_F_N : N ; -- [XXXFO] :: two-handled (wine) jar/vessel; wine-jar (L+S); + diox_M_N : N ; -- [XAHFO] :: fish; (from Black Sea); + diphryges_A : A ; -- [XTXNO] :: designation of a slag formed in copper smelting; + diphryges_F_N : N ; -- [XTXES] :: copper-smelting furnace slag; + diphthongus_F_N : N ; -- [XGXFO] :: diphthong; + diphyes_F_N : N ; -- [XXXNO] :: precious stone (unknown); + diplangium_N_N : N ; -- [DXHFS] :: double vessel; (duplex vas); + diplasius_A : A ; -- [DXXFS] :: duplicate; twofold; + diplinthius_A : A ; -- [XXXFO] :: two bricks thick, having thickness of two bricks, as thick as two bricks; + diplois_F_N : N ; -- [XXXEO] :: cloak, robe; double robe wrapped around body; double wrapping; layer (Souter); + diploma_N_N : N ; -- [XLXCO] :: |certificate; letter folded double (L+S); diploma (Ecc); charter; + diplomarius_A : A ; -- [XLXIO] :: having permit to travel by Imperial post; + diplomarius_M_N : N ; -- [XLXIS] :: Imperial officer employed to issue diplomata (Imperial post travel permits); + diplomatibus_M_N : N ; -- [XLXFO] :: Imperial officer employed to issue diplomata (Imperial post travel permits); + diplomatice_Adv : Adv ; -- [GXXEK] :: diplomatically; + diplomaticus_A : A ; -- [GXXEK] :: diplomatic; + dipondiarius_A : A ; -- [XLXEO] :: worth two asses (money, two cents); worthless; weighing two pounds; + dipondiarius_M_N : N ; -- [XLXFO] :: two as piece/coin (money); (two cents); + dipondius_M_N : N ; -- [XXXDO] :: two asses (weight/money); (two pounds); two feet (linear measure); need/want; + dipsacos_F_N : N ; -- [XAXNO] :: plant of teasel family; (of genus Dipsacus); + dipsas_F_N : N ; -- [XAXDO] :: snake (whose bite provokes thirst); (as name "thirsty woman"); + dipteros_A : A ; -- [XTHFO] :: having double row of columns all around; with two wings (L+S); + dipteros_F_N : N ; -- [XTHFO] :: having double row of columns all around; with two wings (L+S); + diptherias_M_N : N ; -- [XXHFO] :: tough skin, goatskin; old man; + dipthongus_F_N : N ; -- [XGXFO] :: diphthong; + diptotum_N_N : N ; -- [DGXES] :: nouns (usu. pl.) having only two cases; + diptychon_N_N : N ; -- [FXHEE] :: diptych; list of commemorations, register of those commemorated by Church;. + diptychum_N_N : N ; -- [DXHES] :: writing tablet of two leaves (pl.); double shell of oyster; + dipyrus_A : A ; -- [XXXFO] :: twice burnt; twice fired; (applied to encaustic painting); + dira_F_N : N ; -- [XEXCO] :: curses, imprecations (pl.); bad omens, presages of evil; The Furies; Harpies; + dirado_V2 : V2 ; -- [DXXFS] :: scratch slightly; + diraro_V2 : V2 ; -- [XXXFO] :: thin out (vegetation); chop, hoe;; + diratio_F_N : N ; -- [FLXEM] :: deraignment, proof; establishment of title; + dirationo_V2 : V2 ; -- [FLXEM] :: deraign; establish title; vindicate; decide/adjudge; [~ me => clear oneself]; + dircium_N_N : N ; -- [DAXFS] :: plant; (also known as Apollinaris herba); kind of solanum (nightshade family); + directa_Adv : Adv ; -- [XXXFS] :: perpendicularly; straight down; + directarius_M_N : N ; -- [XLXFS] :: burglar; sneak-thief; one who secretly enters a home to steal; + directe_Adv : Adv ; -- [XXXEO] :: in straight line; in straightforward order (of words); directly (L+S); straight; + directiangulus_A : A ; -- [DSXFS] :: rectangular, right-angled; + directilineus_A : A ; -- [DSXFS] :: rectilinear; in a straight line; + directim_Adv : Adv ; -- [XXXFO] :: in a regular manner; directly, straightaway (L+S); + directio_F_N : N ; -- [EXXDP] :: |sending (to place); right living; righteousness; fairness/justice; correction; + directitudo_F_N : N ; -- [DXXFS] :: rightness, correctness; fairness; + directivum_N_N : N ; -- [GXXEK] :: directive; guideline; + directivus_A : A ; -- [FXXEE] :: directive; helpful, positive; directing (Cal); guiding; + directo_Adv : Adv ; -- [XXXDO] :: straight, in straight line; directly, immediately, without intervening action; + director_M_N : N ; -- [FXXDE] :: director; + directorium_N_N : N ; -- [FXXFE] :: directory; the Ordo (guide for celebrating Mass and liturgy of daily hours); + directorius_A : A ; -- [EXXFS] :: that directs or sends in any direction; + directum_N_N : N ; -- [XSXEE] :: straight line; + directura_F_N : N ; -- [XTXFO] :: level, uniform horizontal surface; leveling of a surface; + directus_A : A ; -- [XXXBO] :: ||steep (L+S); level; open/straightforward (Ecc); proper, helpful/guiding; + directus_M_N : N ; -- [XLXFO] :: person given rights by direct procedure; + diremptio_F_N : N ; -- [XXXFO] :: estrangement: break up/off (relations w/person); separation (L+S); + diremptus_M_N : N ; -- [XXXFO] :: separation; process of taking apart; break up; + direptio_F_N : N ; -- [XWXDO] :: plundering/pillage/sacking; struggle for share; scramble; stealing (L+S); rape; + direptor_M_N : N ; -- [XWXEO] :: plunderer; pillager; robber; + diribeo_V2 : V2 ; -- [XLXDO] :: sort/separate voting tablets/ballots from ballot-box; distribute, dispense; + diribitio_F_N : N ; -- [XLXFO] :: sorting/dividing of votes/voting tablets from ballot-box; + diribitor_M_N : N ; -- [XLXEO] :: officer who sorts voting tablets; election official; distributor (food); waiter; + diribitorium_N_N : N ; -- [XLXEO] :: |ticket booth at public baths (perh.), place for issuing tickets in baths; + dirigismus_M_N : N ; -- [GXXFK] :: interventionism; + dirigo_V2 : V2 ; -- [XXXAO] :: |||direct (course/steps), turn/steer/guide; propel/direct (missiles/blows); + dirimens_A : A ; -- [EXXFE] :: invalidating, nullifying; E:diriment (diriment impediment annuls marriage); + dirimo_V2 : V2 ; -- [XXXBO] :: ||cause to diverge;; draw a line/boundary; settle, impose decision on (dispute); + diripio_V2 : V2 ; -- [XXXBO] :: ||plunder, pillage, spoil, lay waste; seize and divide; steal/rob; distress; + diritas_F_N : N ; -- [XXXDO] :: frightfulness, quality inspiring fear; dire event; misfortune (L+S); cruelty; + dirivatio_F_N : N ; -- [FXXEZ] :: heading off/away (into another channel); derivation; + dirivo_V2 : V2 ; -- [XXXCO] :: draw/lead off (river/fluid), divert/turn aside; derive/draw on; form derivative; + dirrumpo_V2 : V2 ; -- [XXXCO] :: cause to break apart/shatter/burst/split/rupture/disrupt; (PASS) burst/break; + dirum_N_N : N ; -- [XEXES] :: fearful things; ill-boding events; + dirumpo_V2 : V2 ; -- [XXXCO] :: cause to break apart/shatter/burst/split/rupture/disrupt; (PASS) burst/break; + diruo_V2 : V2 ; -- [XWXCO] :: |have one's pay stopped/docked (of soldier); scatter, drive asunder (L+S); + diruptio_F_N : N ; -- [XXXFO] :: explosion; process of bursting; tearing asunder/to pieces (L+S); + dirus_A : A ; -- [XEXBO] :: awful/dire/dreadful (omen); ominous/frightful/terrible/horrible; skillful (L+S); + dirutio_F_N : N ; -- [DXXIO] :: process of falling into ruin; destruction (L+S); + dis_A : A ; -- [XXXCO] :: rich/wealthy; richly adorned; fertile/productive (land); profitable; sumptuous; + disamo_V2 : V2 ; -- [XXXFO] :: love dearly; + discalceatus_A : A ; -- [FXXEO] :: barefoot, unshod, discalced; shoeless (Ecc); (of Friars); + discantus_M_N : N ; -- [FDXFE] :: descant, upper voice in part singing; + discapedino_V2 : V2 ; -- [XXXFO] :: separate (the hands so as to use independently); hold hands apart (L+S); + discaveo_V : V ; -- [BXXFS] :: beware of; be on one's guard against; keep away from; + discedo_V2 : V2 ; -- [XXXAX] :: go/march off, depart, withdraw; scatter, dissipate; abandon; lay down (arms); + disceptatio_F_N : N ; -- [XXXCE] :: debate; dispute; discussion; judgment, judicial award; + disceptator_M_N : N ; -- [XXXDX] :: arbitrator; + disceptio_F_N : N ; -- [XXXCE] :: debate; dispute; discussion; judgment, judicial award; + discepto_V : V ; -- [XXXDX] :: dispute; debate; arbitrate; + discerno_V2 : V2 ; -- [XXXDX] :: see, discern; distinguish, separate; + discerpo_V2 : V2 ; -- [XXXDX] :: pluck or tear in pieces; rend, mutilate, mangle; + discessio_F_N : N ; -- [XXXDX] :: withdrawal, dispersal; + discessus_M_N : N ; -- [XXXDX] :: going apart; separation departure, marching off; + discidium_N_N : N ; -- [XXXDE] :: separation, divorce, discord; disagreement, quarrel; tearing apart; + discido_V2 : V2 ; -- [XXXEC] :: cut in pieces; + discinctus_A : A ; -- [XXXDX] :: wearing loose clothes; easy-going; + discindo_V2 : V2 ; -- [XXXDX] :: cut in two, divide; + disciplina_F_N : N ; -- [XXXBX] :: teaching, instruction, education; training; discipline; method, science, study; + disciplinabilis_A : A ; -- [XXXES] :: learned by teaching; + disciplinaris_A : A ; -- [FXXEE] :: disciplinary; + disciplinatus_A : A ; -- [EXXDS] :: disciplined; instructed/trained/learned/skillful; ordered; of good character; + discipula_F_N : N ; -- [XXXDX] :: female pupil; + discipulatus_M_N : N ; -- [DXXFE] :: discipleship; + discipulus_M_N : N ; -- [XXXBX] :: student, pupil, trainee; follower, disciple; + discissus_A : A ; -- [XXXEE] :: torn, rent; + discludo_V2 : V2 ; -- [XXXDX] :: divide, separate, keep apart; shut off; + disco_V2 : V2 ; -- [XXXAO] :: learn; hear, get to know, become acquainted with; acquire knowledge/skill of/in; + discographia_F_N : N ; -- [HXXEK] :: discography; + discolor_A : A ; -- [XXXDX] :: another color, not of the same color; of different/party colors; variegated; + discolus_A : A ; -- [XXXEE] :: deformed; + discomputus_M_N : N ; -- [GXXEK] :: discount; + disconvenio_V : V ; -- [XXXDX] :: be inconsistent, be different; + discooperio_V2 : V2 ; -- [EXXDS] :: expose, bare, lay bare, uncover; disclose; put/take off, remove; + discoperio_V2 : V2 ; -- [EXXDP] :: expose, bare, lay bare, uncover; disclose; put/take off, remove; + discophonum_N_N : N ; -- [HTXEK] :: CD/compact disk reader; + discoquo_V2 : V2 ; -- [XXXFS] :: cook thoroughly; + discordia_F_N : N ; -- [XXXBX] :: disagreement, discord; + discordiosus_A : A ; -- [XXXEC] :: full of discord, mutinous; + discorditer_Adv : Adv ; -- [XXXFE] :: disproportionally; + discordium_N_N : N ; -- [XXXDX] :: discord, dissension; + discordo_V : V ; -- [XXXDX] :: be at variance, quarrel; be different; + discors_A : A ; -- [XXXDX] :: warring, disagreeing, inharmonious; discordant, at variance; inconsistent; + discotheca_F_N : N ; -- [HDXEK] :: disco; + discrepantia_F_N : N ; -- [XXXEE] :: discrepancy; discordance; dissimilarity; + discrepat_V0 : V ; -- [XXXDO] :: it is undecided/disputed/a matter of dispute; there is a difference of opinion; + discrepo_V : V ; -- [XXXBO] :: |be out of tune; differ in sound; be out of harmony/inconsistent with; + discretio_F_N : N ; -- [XXXDE] :: separation; discretion, discrimination, power of distinguishing, discernment; + discretor_M_N : N ; -- [XXXDE] :: judge; discerner; + discretus_A : A ; -- [XXXCO] :: separate, situated/put apart; distinguished/differentiated; discreet/wise (Bee); + discribo_V2 : V2 ; -- [XXXDX] :: divide, assign, distribute; + discrimen_N_N : N ; -- [XXXBX] :: crisis, separating line, division; distinction, difference; + discriminale_N_N : N ; -- [XXXFO] :: hair-pin/ornament used to preserve part; bodkin/hair pin (Douay); headdress; + discriminalis_A : A ; -- [XXXEE] :: divider, which serves to divide/separate; + discriminatio_F_N : N ; -- [XXXEE] :: discrimination; wise judgment; + discrimino_V : V ; -- [XXXDX] :: divide up, separate; + discriptio_F_N : N ; -- [XXXDX] :: assignment, division; + discrucio_V : V ; -- [XXXDX] :: torture; + discubitus_M_N : N ; -- [EXXFR] :: seat; dining couch; place at the table (Ecc); + disculcio_V2 : V2 ; -- [DXXFS] :: unshoe; remove the shoe from; + discumbens_M_N : N ; -- [XXXEE] :: guest; + discumbo_V2 : V2 ; -- [XXXBX] :: sit (to eat), recline at table; lie down; go to bed; + discurro_V : V ; -- [XXXBO] :: run off in different directions; run/dash around/about; wander; roam; + discursus_M_N : N ; -- [XXXDX] :: running about; separate lion, dispersal; + discus_M_N : N ; -- [FXXCE] :: |paten (Greek rite); high table (Latham); measure (grain/salt/ale/ore); tray; + discutio_V2 : V2 ; -- [XXXCE] :: strike down; shatter, shake violently; dissipate, bring to naught; plead case; + discuto_V : V ; -- [FXXDE] :: examine, inquire into; discuss; + disdiapason_N_N : N ; -- [XDXFO] :: double octave; + disdo_V2 : V2 ; -- [XXXCS] :: distribute, deal out, disseminate; spread, diffuse; spread abroad (L+S); + diselianus_A : A ; -- [GXXEK] :: diesel-; + diserte_Adv : Adv ; -- [XXXDE] :: eloquently; expressly; distinctly, clearly; + disertitudo_F_N : N ; -- [EXXES] :: eloquence; skillfully expression; + disertus_A : A ; -- [XXXDX] :: eloquent; skillfully expressed; + disgratia_F_N : N ; -- [GXXEK] :: disgrace; + disgregatio_F_N : N ; -- [FXXFF] :: dispersal; separation, putting apart, disunion; disgregation, disintegration; + disgregativus_A : A ; -- [FXXFF] :: dispersing; separating, putting apart; + disgrego_V2 : V2 ; -- [EXXES] :: separate; divide; disperse, scatter, divide; rend asunder; break up; + disicio_V2 : V2 ; -- [XXXBO] :: |ruin; destroy; rout; disperse; squander; frustrate; dispel, end; + disidium_N_N : N ; -- [XXXDE] :: separation, divorce, discord; disagreement, quarrel; tearing apart; + disilio_V : V ; -- [FXXEE] :: leap from one place to another; + disjicio_V2 : V2 ; -- [XXXCS] :: |ruin; destroy; rout; disperse; squander; frustrate; dispel, end; + disjugata_F_N : N ; -- [FXXFM] :: unmarried woman; + disjugo_V2 : V2 ; -- [DXXFS] :: separate; + disjuncte_Adv : Adv ; -- [XGXEO] :: separately; disjunctively, in form of disjunctive proposition; + disjunctim_Adv : Adv ; -- [XXXEO] :: separately; + disjunctio_F_N : N ; -- [XXXCO] :: separation (from person); rupture (relationship); disjunctive proposition; + disjunctivus_A : A ; -- [XGXEO] :: disjunctive, separative; disconnecting, making discontinuous (surveying); + disjunctus_A : A ; -- [XXXCO] :: separated/distant/disconnected/set apart; different/distinct/individual; + disjungo_V2 : V2 ; -- [XXXBO] :: unyoke; disunite, sever, divide, separate, part, estrange; put asunder (Ecc); + dismembratio_F_N : N ; -- [FXXEE] :: dismemberment; separation; + dismembratus_A : A ; -- [FXXEE] :: dismembered; + dismembro_V2 : V2 ; -- [FXXDE] :: dismember; separate, break up; distribute; + dispando_V : V ; -- [XXXDO] :: open/spread out; expatiate, walk/roam at large/will, roam freely; + dispar_A : A ; -- [XXXDX] :: unequal, disparate, unlike; + dispareo_V : V ; -- [FXXCF] :: disappear, vanish, vanish out of sight; + disparitas_F_N : N ; -- [FXXDE] :: difference; discrepancy; inequality; [~ cultus => in marriage w/non=Catholic]; + disparitio_F_N : N ; -- [GXXEK] :: disappearance; + disparo_V : V ; -- [XXXDX] :: separate, divide; + dispartio_V2 : V2 ; -- [XXXDO] :: divide (up); distribute; assign; separate into lots/groups; + dispartior_V : V ; -- [XXXEO] :: divide (up); distribute; assign; separate into lots/groups; + dispector_M_N : N ; -- [FXXEE] :: examiner; searcher; + dispello_V2 : V2 ; -- [XXXDX] :: drive apart or away; disperse; + dispendiose_Adv : Adv ; -- [GXXEK] :: big-expensed; + dispendium_N_N : N ; -- [XXXDX] :: expense, cost; loss; + dispendo_V : V ; -- [XXXDO] :: |dispense, weigh out; pay out; + dispensatio_F_N : N ; -- [XXXDX] :: management; stewardship; dispensation, relaxation of law (Ecc); + dispensator_M_N : N ; -- [XXXDX] :: steward; attendant; treasurer; dispenser; + dispensatorius_A : A ; -- [XXXEE] :: dispensing; administering; + dispenso_V : V ; -- [XXXDX] :: manage; dispense, distribute; pay out; arrange; + disperdo_V2 : V2 ; -- [XXXCO] :: destroy/ruin utterly; ruin (property/fortunes/persons); + dispereo_V : V ; -- [XXXCO] :: perish/die; be destroyed; be ruined/lost/undone (completely) (L+S); disappear; + dispergo_V2 : V2 ; -- [XXXBX] :: scatter (about), disperse; + disperse_Adv : Adv ; -- [XXXEO] :: sporadically; here and there; + dispersim_Adv : Adv ; -- [XXXEO] :: sporadically; here and there; + dispersio_F_N : N ; -- [DXXCS] :: dispersion/scattering; destruction; confusion; those scattered/dispersed (pl.); + dispertio_V2 : V2 ; -- [XXXCO] :: divide (up); distribute; assign; separate into lots/groups; + dispertior_V : V ; -- [XXXEO] :: divide (up); distribute; assign; separate into lots/groups; + dispertitivus_A : A ; -- [EGXEP] :: distributive; + dispesco_V2 : V2 ; -- [XXXFS] :: separate; take from pasture; + dispicio_V2 : V2 ; -- [XXXDX] :: look about (for), discover espy, consider; + displiceo_V : V ; -- [XXXDX] :: displease; + displodeo_V : V ; -- [GWXEK] :: explode; + displodo_V2 : V2 ; -- [XXXDX] :: burst apart; + displosio_F_N : N ; -- [GWXEK] :: explosion; + dispolio_V2 : V2 ; -- [XXXDO] :: rob/plunder; despoil (of); strip, deprive of clothing/covering; (for flogging); + dispono_V2 : V2 ; -- [XXXBO] :: |appoint, post, station; allot, assign; arrange, ordain, prescribe; regulate; + disponsatio_F_N : N ; -- [EXXFW] :: marriage; espousal (in the sense of marriage) (Douay/KJames); + disponso_V : V ; -- [FEXFM] :: give in marriage; (desponso); + dispositio_F_N : N ; -- [XXXCO] :: layout; orderly arrangement/disposition of arguments/words/time/activities; + dispositivus_A : A ; -- [XXXEE] :: arranging, disposing; + dispositor_M_N : N ; -- [XXXFE] :: disposer; who arranges/manages/dispenses; + disproportio_F_N : N ; -- [GXXEK] :: disproportion; + dispunctio_F_N : N ; -- [EXXES] :: setting-up; investigation; + dispungo_V2 : V2 ; -- [EXXES] :: check-off (accounts); examine; balance (accounts); + disputatio_F_N : N ; -- [XXXDX] :: discussion, debate, dispute, argument; + disputo_V : V ; -- [XXXDX] :: discuss, debate, argue; + disquiro_V : V ; -- [XXXEC] :: inquire into, investigate; + disquisitio_F_N : N ; -- [XXXDX] :: inquiry; + disraro_V2 : V2 ; -- [XXXFO] :: thin out (vegetation); chop, hoe;; + disratio_F_N : N ; -- [FLXFJ] :: deraignment; disarrangement; discharge from monastic order; + disrationo_V : V ; -- [FLXFJ] :: deraign; put into disorder; disarrange; be discharged from order (eccles.); + disrumpo_V2 : V2 ; -- [XXXCO] :: cause to break apart/off, shatter/burst/split, disrupt/sever; (PASS) get broken; + dissaepio_V2 : V2 ; -- [XXXDX] :: separate, divide; + disseco_V : V ; -- [GSXEK] :: dissect; + disseco_V2 : V2 ; -- [EXXFP] :: divide; penetrate through; open by force; dismember, dissect; + dissectio_F_N : N ; -- [GSXEK] :: dissection; + disseisina_F_N : N ; -- [FLXFJ] :: disseisin; dispossession of freehold; + disseisio_V2 : V2 ; -- [FLXFJ] :: disseise; dispossess; put out of seisin/possession (usu. wrongfully); oust; + disseisitor_M_N : N ; -- [FLXFJ] :: disseisor; dispossessor of freehold; + dissemino_V : V ; -- [XXXDX] :: broadcast, disseminate; + dissensio_F_N : N ; -- [XXXDX] :: disagreement, quarrel; dissension, conflict; + dissensus_A : A ; -- [XXXEE] :: different; differing; + dissensus_M_N : N ; -- [XXXEE] :: disagreement, quarrel; dissension, conflict; + dissentaneus_A : A ; -- [XXXEC] :: disagreeing, different; + dissentio_V2 : V2 ; -- [XXXDX] :: dissent, disagree; differ; + disserenat_V0 : V ; -- [XXXEC] :: it is clearing up all round; (of the weather); + dissero_V2 : V2 ; -- [XAXDS] :: plant/sow at intervals; scatter/distribute, plant here/there; separate/part; + disserto_V : V ; -- [XXXDX] :: discuss; + dissicio_V2 : V2 ; -- [XXXCO] :: |ruin; destroy; rout; disperse; squander; frustrate; dispel, end; + dissico_V2 : V2 ; -- [XXXDO] :: cut apart; cut in pieces; dismember, dissect; + dissideo_V : V ; -- [XXXDX] :: disagree, be at variance; be separated; + dissidium_N_N : N ; -- [EXXCE] :: separation, divorce, discord; disagreement, quarrel; tearing apart; + dissignatio_F_N : N ; -- [XXXEC] :: arrangement; + dissignator_M_N : N ; -- [XXXEC] :: one that arranges, a supervisor; + dissigno_V2 : V2 ; -- [XXXDO] :: |earmark/choose; appoint, elect (magistrate); order/plan; scheme. perpetrate; + dissilio_V2 : V2 ; -- [XXXDX] :: fly/leap/burst apart; break up; be broken up; burst; split; + dissilo_V : V ; -- [FXXEE] :: be torn apart; + dissimilis_A : A ; -- [XXXDX] :: unlike, different, dissimilar; + dissimilitudo_F_N : N ; -- [XXXDX] :: unlikeness, difference; + dissimulanter_Adv : Adv ; -- [XXXDX] :: dissemblingly; + dissimulatio_F_N : N ; -- [XXXDX] :: dissimulation dissembling; + dissimulator_M_N : N ; -- [XXXDX] :: dissembler; + dissimulo_V : V ; -- [XXXBX] :: conceal, dissemble, disguise, hide; ignore; + dissipatio_F_N : N ; -- [XXXDX] :: squandering; scattering; + dissipo_V : V ; -- [XXXDX] :: scatter, disperse, dissipate, squander; destroy completely; circulate; + dissitus_A : A ; -- [FXXEE] :: widely scattered; + dissociabilis_A : A ; -- [XXXDX] :: incompatible; discordant; separating, dividing; + dissociatus_A : A ; -- [XXXDX] :: disjoined, separated, split into factions, at variance with; + dissocio_V : V ; -- [XXXDX] :: be/set at variance with, split into factions, separate, part; + dissolutio_F_N : N ; -- [XXXDX] :: disintegration, dissolution; destruction; disconnection; refutation; + dissolutus_A : A ; -- [XXXDX] :: loose; lax; negligent, dissolute; + dissolvo_V2 : V2 ; -- [XXXDX] :: unloose; dissolve, destroy; melt; pay; refute; annul; + dissonanter_Adv : Adv ; -- [DDXFS] :: inharmoniously; inconsistently; + dissonantia_F_N : N ; -- [DDXES] :: dissonance; discrepancy; + dissonantium_N_N : N ; -- [XXXEE] :: discord, differences; + dissonus_A : A ; -- [XXXDX] :: dissonant, discordant, different; + dissors_A : A ; -- [XXXEC] :: having different lot or fate; + dissuadeo_V : V ; -- [XXXDX] :: dissuade, advise against; + dissuasio_F_N : N ; -- [XXXEE] :: dissuasion; advising to the contrary; + dissuasor_M_N : N ; -- [XXXDX] :: discourager, one who advises against; + dissuasorius_A : A ; -- [GXXEK] :: dissuasive; + dissuesco_V2 : V2 ; -- [XXXFO] :: forget, unlearn, become disaccustomed to; disaccustom (person); + dissulto_V : V ; -- [XXXDX] :: fly or burst apart; bounce off; + dissuo_V2 : V2 ; -- [XXXEO] :: unstitch, undo the stitches of; rip apart, sever; + dissupo_V : V ; -- [XXXFS] :: scatter, squander; destroy completely; circulate; (alt. form of dissipo); + distabesco_V : V ; -- [XXXEE] :: waste away; + distans_A : A ; -- [XXXEE] :: distant; separate; + distantia_F_N : N ; -- [XXXDX] :: distance; difference; + distendo_V2 : V2 ; -- [XXXDX] :: stretch (apart); spread out; distend; extend; rack; detract, perplex; + distenno_V : V ; -- [XXXDX] :: stretch (apart); spread out; distend; extend; rack; detract, perplex; + distentio_F_N : N ; -- [XBXEO] :: spasm; distortion; + distentus_A : A ; -- [XXXEE] :: full, filled up; distended; occupied, busy; + distermino_V2 : V2 ; -- [XXXCO] :: divide from, serve as boundary; divide up; mark off w/boundary; separate from; + distichon_N_N : N ; -- [XPXEO] :: couplet, two line poem/verse; + distichos_A : A ; -- [XPXEO] :: consisting of two lines (verse); having two longitudinal rows of grain; + distichus_A : A ; -- [XPXFO] :: consisting of two lines (verse); having two longitudinal rows of grain; + distillatio_F_N : N ; -- [XBXDO] :: cold/rheum/catarrh; runny nose/eyes; bodily fluid; abcess; distillation (Cal); + distillo_V : V ; -- [XXXCO] :: drip/trickle down; wet/sprinkle; distill; have dripping off; fall bit by bit; + distimulo_V2 : V2 ; -- [DXXFS] :: goad hard/on; stimulate (L+S); + distinctio_F_N : N ; -- [XXXDX] :: distinction; difference; + distinctus_A : A ; -- [XXXDX] :: separate, distinct; definite, lucid; + distineo_V : V ; -- [XXXDX] :: keep apart, separate; prevent, hold up; distract; + distinguo_V2 : V2 ; -- [XXXDX] :: distinguish, separate, divide, part; adorn, decorate; + disto_V : V ; -- [XXXDX] :: stand apart, be distant; be different; + distorqueo_V : V ; -- [XXXDX] :: twist this way and that; + distortus_A : A ; -- [FXXEE] :: misshapen; + distractio_F_N : N ; -- [GXXEK] :: distraction; + distractus_A : A ; -- [GXXEK] :: absent-minded; + distraho_V2 : V2 ; -- [XXXDX] :: draw/pull/tear apart, wrench, separate, (sub)divide; sell in parcels; distract; + distribuo_V2 : V2 ; -- [XXXDX] :: divide, distribute, assign; + distributio_F_N : N ; -- [XXXDX] :: division, distribution; + distributivus_A : A ; -- [FXXFE] :: distributive; + distributor_M_N : N ; -- [XXXDE] :: distributor; + districte_Adv : Adv ; -- [XXXFO] :: strictly; severely; + districtim_Adv : Adv ; -- [FXXFE] :: strictly; severely; + districtio_F_N : N ; -- [XXXDE] :: severity, strictness; + districtus_A : A ; -- [XXXCO] :: busy; having many claims on one's attention; pulled in different directions; + distrinctio_F_N : N ; -- [XXXIO] :: distraction; condition of having one's attention elsewhere; + distringo_V2 : V2 ; -- [XXXCO] :: stretch out/apart; detain; distract; pull in different directions; + disturbium_N_N : N ; -- [FXXFM] :: disturbance; + disturbo_V : V ; -- [XXXDX] :: disturb, demolish, upset; + disyllaba_F_N : N ; -- [XDXES] :: di-syllable; + disyllabum_N_N : N ; -- [XDXES] :: di-syllable; + disyllabus_A : A ; -- [XGXES] :: di-syllabic; + ditator_M_N : N ; -- [XXXFE] :: enricher; + ditesco_V : V ; -- [XXXDX] :: grow rich; + dithalassus_A : A ; -- [XXXFE] :: open to two seas; + dithyrambicus_A : A ; -- [XPXEC] :: dithyrambic; of/like dithyramb (Greek choric hymn), vehement/wild/Bacchanalian; + dithyrambus_M_N : N ; -- [XXXDX] :: form of verse used especially choral singing; + ditio_F_N : N ; -- [FXXEE] :: power; sovereignty, dominion, authority; + ditius_Adv : Adv ; -- [XXXEO] :: richly; in a sumptuous manner; + dito_V : V ; -- [XXXDX] :: enrich; + ditonica_F_N : N ; -- [FDXFM] :: diatonic melody; + ditonicus_A : A ; -- [FDXEM] :: diatonic; double toned; + ditonum_N_N : N ; -- [EDXEP] :: ditone, interval containing two whole tones; major third; + ditonus_M_N : N ; -- [EDXEM] :: major third; ditone, interval containing two whole notes/tones; + ditrochaeus_M_N : N ; -- [XPXFS] :: ditrochee; long-short-long-short; + ditto_V2 : V2 ; -- [FXXDE] :: repeat; declare; + diu_Adv : Adv ; -- [XXXAO] :: |still further/longer (COMP); any longer/further/more (w/negative); + dium_N_N : N ; -- [XXXDO] :: open sky; [sub dio => in the open air]]: + diurnale_N_N : N ; -- [FEXEE] :: Book of Hours; book containing Lauds to Compline; + diurnalismus_M_N : N ; -- [GXXEK] :: journalism; + diurnarius_A : A ; -- [GXXEK] :: journalistic; of a journalist; + diurnarius_M_N : N ; -- [DLXES] :: journalist; journal/diary keeper; slave who copies acta diurna (daily records); + diurnitas_F_N : N ; -- [FXXEM] :: lapse of time; long duration; + diurnum_N_N : N ; -- [FEXEE] :: Book of Hors; + diurnus_A : A ; -- [XXXDX] :: by day, of the day; daily; + dius_A : A ; -- [XXXEO] :: |daylit; charged with brightness of day/daylight; + dius_Adv : Adv ; -- [BXXDO] :: by day; (usu. used w/noctu); + dius_M_N : N ; -- [DEXFS] :: god; + diutinus_A : A ; -- [XXXDX] :: long lasting, long; + diutule_Adv : Adv ; -- [XXXEO] :: for a short while; + diuturnitas_F_N : N ; -- [XXXDX] :: long duration; + diuturnus_A : A ; -- [XXXDX] :: lasting, lasting long; + diva_F_N : N ; -- [XXXDX] :: goddess; + divaliis_A : A ; -- [XLXFS] :: imperial(legal); divine; + divarico_V2 : V2 ; -- [XXXEC] :: stretch apart, spread out; + divello_V2 : V2 ; -- [XXXBO] :: |tear away/open/apart, tear to pieces/in two; break up, sunder/disrupt; divide; + divendo_V : V ; -- [XXXDX] :: sell in small lots/retail; sell out; + diverbero_V : V ; -- [XXXDX] :: split; strike violently; + diverbium_N_N : N ; -- [XDXFO] :: spoken part of play (unaccompanied by music); dialogue on the stage; + divergentia_F_N : N ; -- [XXXFO] :: declivity; downward slope; downwards incline (L+S); + divergeo_V : V ; -- [GXXEK] :: diverge; + diverro_V2 : V2 ; -- [XXXES] :: sweep away; sweep out (L+S); + diversifico_V : V ; -- [FXXEE] :: vary, be different; diversify; + diversimodus_M_N : N ; -- [FXXEZ] :: diverse-mode; + diversitas_F_N : N ; -- [XXXDX] :: difference; + diverso_V : V ; -- [FXXEZ] :: turn around; diversify; + diversorium_N_N : N ; -- [XXXCO] :: inn, lodging house, stopping place; public/private accommodation; quarters; + diversorius_A : A ; -- [XXXEO] :: of an inn/lodging house; fit to lodge/stay in (L+S); [taberna ~ => inn]; + diversus_A : A ; -- [XXXAX] :: opposite; separate, apart; diverse, unlike, different; hostile; + diverto_V2 : V2 ; -- [XXXCO] :: separate; divert, turn away/in; digress; oppose; divorce/leave marriage; + dives_A : A ; -- [XXXBO] :: rich/wealthy; costly; fertile/productive (land); talented, well endowed; + dives_M_N : N ; -- [XXXDO] :: rich man; + divexo_V2 : V2 ; -- [XXXCS] :: |ravage/plunder; tear/rend/pull/rip apart/asunder, destroy (L+S); + dividendus_A : A ; -- [GSXEK] :: dividing (math.); + divido_V2 : V2 ; -- [XXXAX] :: divide; separate, break up; share, distribute; distinguish; + dividuus_A : A ; -- [XXXDX] :: divisible; divided, separated; half; parted; + divinatio_F_N : N ; -- [XXXDX] :: predicting; divination; prophecy; prognostication; + divinitas_F_N : N ; -- [XEXCO] :: divinity, quality/nature of God; divine excellence/power/being; divining; + divinitus_Adv : Adv ; -- [XXXDX] :: from heaven, by a god, by divine influence/inspiration; divinely, admirable; + divino_V : V ; -- [XXXDX] :: divine; prophesy; guess; + divinus_A : A ; -- [XXXAX] :: divine, of a deity/god, godlike; sacred; divinely inspired, prophetic; natural; + divinus_M_N : N ; -- [XXXDX] :: prophet; + divise_Adv : Adv ; -- [DXXES] :: separately, distinctly; + divisibilis_A : A ; -- [XSXEE] :: divisible; + divisim_Adv : Adv ; -- [DXXFS] :: separately, apart; + divisio_F_N : N ; -- [XXXDX] :: division; distribution; + divisor_M_N : N ; -- [GSXEK] :: divider (math.); + divisus_M_N : N ; -- [XXXDX] :: division; + divitia_F_N : N ; -- [XXXAX] :: riches (pl.), wealth; + divortium_N_N : N ; -- [XXXDX] :: separation; divorce; point of separation; watershed; + divorto_V2 : V2 ; -- [BXXCO] :: separate; divert, turn away/in; digress; oppose; divorce/leave marriage; + divulgamen_N_N : N ; -- [FXXEN] :: fame; + divulgatio_F_N : N ; -- [XXXDE] :: publishing; spreading around; + divulgo_V : V ; -- [XXXDX] :: publish, disseminate news of; + divum_N_N : N ; -- [XXXDX] :: sky, open air; [sub divo => in the open air]; + divus_A : A ; -- [DEXES] :: divine; blessed, saint (Latham); + divus_M_N : N ; -- [XXXAX] :: god; + do_V2 : V2 ; -- [XXXAO] :: |surrender/give over; send to die; ascribe/attribute; give birth/produce; utter; + doceo_V : V ; -- [XXXAX] :: teach, show, point out; + dochmius_M_N : N ; -- [XDXEC] :: metrical foot, the dochmiac; pentasyllabic foot (typically U_U-); + docibilis_A : A ; -- [XXXEE] :: teachable; + docilis_A : A ; -- [XXXDX] :: easily taught, teachable, responsive; docile; + docilitas_F_N : N ; -- [XXXDX] :: aptitude; docility; + dociliter_Adv : Adv ; -- [XXXFE] :: attentively; docilely; + doctiloquus_A : A ; -- [FXXEM] :: learnedly-speaking; + doctor_M_N : N ; -- [XXXBX] :: teacher; instructor; trainer; doctor; (academic title); + doctoralis_A : A ; -- [XXXEE] :: doctoral, pertaining to degree of doctor; + doctoratus_M_N : N ; -- [GXXEK] :: doctorate; + doctrina_F_N : N ; -- [XXXBX] :: education; learning; science; teaching; instruction; principle; doctrine; + doctrinalis_A : A ; -- [XXXEE] :: doctrinal; theoretical; + doctrix_F_N : N ; -- [XXXEE] :: teacher (female); instructor; trainer; doctor; + doctus_A : A ; -- [XXXBO] :: learned, wise; skilled, experienced, expert; trained; clever, cunning, shrewd; + documen_N_N : N ; -- [XXXEC] :: example, pattern, warning, proof; + documentalis_A : A ; -- [XXXEE] :: documentary; + documentarius_A : A ; -- [GXXEK] :: documentary; + documentatio_F_N : N ; -- [XXXCE] :: documentation, proof; reminder; + documentum_N_N : N ; -- [XXXDX] :: lesson, instruction; warning, example; document; proof; + dodecaedrum_N_N : N ; -- [FSXFM] :: dodecahedron; + dodrans_M_N : N ; -- [XXXDX] :: three-fourths; + doga_F_N : N ; -- [DXXFS] :: vat; vessel; + dogma_N_N : N ; -- [XXXDX] :: doctrine, defined doctrine; philosophic tenet; dogma, teaching; decision; edit; + dogmatice_Adv : Adv ; -- [EXXEE] :: dogmatically; doctrinally; + dogmaticus_A : A ; -- [EXXCE] :: dogmatic; doctrinal, relating to doctrine or dogma; + dogmatizo_V : V ; -- [EEXFS] :: propound a dogma; dogmatize(Latham); + dolabra_F_N : N ; -- [XXXEC] :: pick-axe; + dolenter_Adv : Adv ; -- [XXXDO] :: with sorrow; with pain, painfully (L+S); + doleo_V : V ; -- [XXXBO] :: hurt; feel/suffer pain; grieve; be afflicted/pained/sorry; cause pain/grief; + doliolum_N_N : N ; -- [XAXES] :: calyx; small cask/keg; + dolium_N_N : N ; -- [XXXCO] :: large earthenware vessel (~60 gal. wine/grain); hogshead (Cas); tun/cask; + dollarium_N_N : N ; -- [GXXEK] :: dollar; + dolo_V2 : V2 ; -- [XXXCO] :: hew/chop into shape, fashion/devise; inflict blows, batter/cudgel soundly, drub; + dolor_M_N : N ; -- [XXXAX] :: pain, anguish, grief, sorrow, suffering; resentment, indignation; + dolorosus_A : A ; -- [EEXDX] :: sorrowful; + dolose_Adv : Adv ; -- [XXXDX] :: craftily, cunningly; deceitfully; + dolositas_F_N : N ; -- [FXXDM] :: guile; deceit; deceitfulness; + dolosus_A : A ; -- [XXXDX] :: crafty, cunning; deceitful; + dolus_M_N : N ; -- [XXXBX] :: trick, device, deceit, treachery, trickery, cunning, fraud; + doma_N_N : N ; -- [XXXEE] :: roof; dwelling, house; + domabilis_A : A ; -- [XXXDX] :: able to be tamed; + domesticatus_M_N : N ; -- [XXXFS] :: office of princeps; + domesticus_A : A ; -- [XXXBX] :: domestic, of the house; familiar, native; civil, private, personal; + domesticus_M_N : N ; -- [XXXES] :: household member; + domicellaris_M_N : N ; -- [FEXEE] :: candidate for prebend; + domicilium_N_N : N ; -- [XXXCW] :: residence, home, dwelling, abode; + domigena_C_N : N ; -- [FXXEN] :: resident of a household; household retinue (pl.); + domina_F_N : N ; -- [XXXBX] :: mistress of a family, wife; lady, lady-love; owner; + dominatio_F_N : N ; -- [XXXDX] :: mastery, power; domination; domain; despotism; + dominativus_A : A ; -- [XXXEE] :: ruling, governing; dominating; + dominator_M_N : N ; -- [XXXDE] :: ruler; lord; + dominatrix_F_N : N ; -- [XXXFS] :: mistress; female ruler; + dominatus_M_N : N ; -- [XXXDX] :: rule, mastery, domain; tyranny; + dominicale_N_N : N ; -- [EEXFE] :: small linen closet in which the faithful received Holy Communion; + dominicalis_A : A ; -- [EEXCE] :: of Sunday (Lord's day); of the Lord; divine (Latham); + dominicum_N_N : N ; -- [EEXDE] :: church with all its possessions; + dominicus_A : A ; -- [XXXBX] :: of/belonging to master/owner; belonging to the Roman Emperor; the Lord's; + dominium_N_N : N ; -- [XLXCO] :: rule, dominion; ownership; banquet, feast; + domino_V : V ; -- [EXXEW] :: be master/despot/in control, rule over, exercise sovereignty; rule/dominate; + dominor_V : V ; -- [XXXBO] :: be master/despot/in control, rule over, exercise sovereignty; rule/dominate; + dominus_M_N : N ; -- [XXXAX] :: owner, lord, master; the Lord; title for ecclesiastics/gentlemen; + domiporta_F_N : N ; -- [XXXEC] :: one with her house on her back, the snail; + domito_V : V ; -- [XXXDX] :: tame, break in; + domitor_M_N : N ; -- [XXXDX] :: tamer, breaker; subduer, vanquisher, conqueror; + domna_F_N : N ; -- [FLXEM] :: lady, mistress; (shortened form of domina); + domne_N : N ; -- [FXXEE] :: sir; lord, master; (vocative of domnus); + domnus_M_N : N ; -- [FEXEB] :: lord, master; the Lord; ecclesiastic/gentleman; (shortened form of dominus); + domo_V : V ; -- [XXXBX] :: subdue, master, tame; conquer; + domuncula_F_N : N ; -- [XXXDO] :: small house, cottage, lodge; + domus_F_N : N ; -- [XXXAX] :: house, building; home, household; (N 4 1, older N 2 1); [domu => at home]; + donarium_N_N : N ; -- [XXXDX] :: part of temple where votive offerings were received/stored; treasure chamber; + donatarius_M_N : N ; -- [FLXFJ] :: donee, recipient of gift; + donatio_F_N : N ; -- [XXXDX] :: donation, gift; + donativum_N_N : N ; -- [XXXDX] :: gratuity; + donator_M_N : N ; -- [XXXEE] :: giver, donor; + donatrix_F_N : N ; -- [XXXES] :: female donor; + donatus_M_N : N ; -- [FXXEE] :: gift, present; + donec_Conj : Conj ; -- [XXXAX] :: while, as long as, until; + dono_V : V ; -- [XXXAX] :: present, grant; forgive; give (gifts), bestow; + donum_N_N : N ; -- [XXXAX] :: gift, present; offering; dorcas_1_N : N ; -- [XAXEC] :: gazelle, antelope; - dorcas_2_N : N ; - dorcus_C_N : N ; - dormeo_V : V ; - dormio_V : V ; - dormitatio_F_N : N ; - dormitio_F_N : N ; - dormito_V : V ; - dormitorius_A : A ; - dorsuale_N_N : N ; - dorsualis_A : A ; - dorsum_Adv : Adv ; - dorsum_N_N : N ; - dorycnion_N_N : N ; - dos_F_N : N ; - dosis_F_N : N ; - dotalicium_N_N : N ; - dotalis_A : A ; - dotatio_F_N : N ; - dotatus_A : A ; - doto_V : V ; - doxa_F_N : N ; - doxologia_F_N : N ; - drachma_F_N : N ; - drachuma_F_N : N ; - draco_M_N : N ; - draconarius_M_N : N ; - draconigena_C_N : N ; - dracontia_F_N : N ; - dracontium_N_N : N ; - dracunculus_M_N : N ; - dragagantum_N_N : N ; - dragma_F_N : N ; - drama_N_N : N ; - dramaticus_A : A ; - drapeta_M_N : N ; - drappus_M_N : N ; - dromadarius_M_N : N ; + dorcas_2_N : N ; -- [XAXEC] :: gazelle, antelope; + dorcus_C_N : N ; -- [XAXFS] :: gazelle; antelope; + dormeo_V : V ; -- [XXXEO] :: sleep, rest; go to sleep, be/fall asleep; be idle, do nothing; (form for FUT); + dormio_V : V ; -- [XXXBO] :: sleep, rest; be/fall asleep; behave as if asleep; be idle, do nothing; + dormitatio_F_N : N ; -- [FXXEE] :: slumber, sleep; + dormitio_F_N : N ; -- [XXXFO] :: sleep, act of sleeping; + dormito_V : V ; -- [XXXDX] :: feel sleepy, drowsy; do nothing; + dormitorius_A : A ; -- [XXXEC] :: for sleeping; + dorsuale_N_N : N ; -- [EEXEE] :: back of chair; curtain around back of altar; + dorsualis_A : A ; -- [XXXEO] :: back-; at the back; situated on (animal's) back; + dorsum_Adv : Adv ; -- [XXXIO] :: down, downwards, beneath, below; (motion/direction/order); in lower situation; + dorsum_N_N : N ; -- [XXXDX] :: back, range, ridge; slope of a hill; + dorycnion_N_N : N ; -- [XAXFS] :: poisonous plant (Pliny); + dos_F_N : N ; -- [XXXBX] :: dowry, dower; talent, quality; + dosis_F_N : N ; -- [GXXEK] :: dose; + dotalicium_N_N : N ; -- [FXXFM] :: widower's dower; + dotalis_A : A ; -- [XXXDX] :: forming part of a dowry; relating to a dowry; + dotatio_F_N : N ; -- [FEXEE] :: endowment; + dotatus_A : A ; -- [XXXEC] :: richly endowed; + doto_V : V ; -- [XXXEC] :: provide with a dowry, endow; + doxa_F_N : N ; -- [FXXEM] :: glory; adornment; + doxologia_F_N : N ; -- [EEXEE] :: doxology; (hymn of praise to God); + drachma_F_N : N ; -- [XLHCO] :: drachma; Greek silver coin; (1/6000 talent); (quarter?); weight (4.5-6 grams); + drachuma_F_N : N ; -- [XLHCO] :: drachma; Greek silver coin; (1/6000 talent); (quarter?); weight (4.5-6 grams); + draco_M_N : N ; -- [XXXBX] :: dragon; snake; + draconarius_M_N : N ; -- [FXXFE] :: flag bearer; + draconigena_C_N : N ; -- [XXXEC] :: dragon-born; + dracontia_F_N : N ; -- [XAXFS] :: precious stone; + dracontium_N_N : N ; -- [XAXFS] :: dragon wort; + dracunculus_M_N : N ; -- [GXXEK] :: tarragon; + dragagantum_N_N : N ; -- [XAXFS] :: gum-tragacinth; (alt. form of tragacanthum); + dragma_F_N : N ; -- [ELXCW] :: Greek silver coin; (1/6000 talent) (quarter); Greek weight (4.5-6 grams); + drama_N_N : N ; -- [XDXFS] :: drama; play; + dramaticus_A : A ; -- [XDXFS] :: dramatic; + drapeta_M_N : N ; -- [XXXEC] :: runaway slave; + drappus_M_N : N ; -- [FXXEK] :: cloth; + dromadarius_M_N : N ; -- [XWXES] :: camel soldier, soldier serving in unit mounted on dromedaries; dromas_1_N : N ; -- [XAXEO] :: dromedary; - dromas_2_N : N ; - dromedaria_F_N : N ; - dromedarius_M_N : N ; - dromo_F_N : N ; - dubietas_F_N : N ; - dubitanter_Adv : Adv ; - dubitatio_F_N : N ; - dubito_V : V ; - dubium_N_N : N ; - dubius_A : A ; - ducamen_N_N : N ; - ducatus_M_N : N ; - ducenarius_A : A ; - ducianus_A : A ; - ducianus_M_N : N ; - duciloquus_A : A ; - ducissa_F_N : N ; - duco_V2 : V2 ; - ductilis_A : A ; - ductilitas_F_N : N ; - ductim_Adv : Adv ; - ductio_F_N : N ; - ducto_V : V ; - ductor_M_N : N ; - ductus_M_N : N ; - dudum_Adv : Adv ; - duellator_M_N : N ; - duellatorus_A : A ; - duellicosus_A : A ; - duellicus_A : A ; - duellio_F_N : N ; - duello_V : V ; - duellum_N_N : N ; - duis_Adv : Adv ; - dulce_N_N : N ; - dulcedo_F_N : N ; - dulcesco_V : V ; - dulciarius_M_N : N ; - dulcicanus_A : A ; - dulciculus_A : A ; - dulcidine_Adv : Adv ; - dulciolum_N_N : N ; - dulcis_A : A ; - dulcisonus_A : A ; - dulciter_Adv : Adv ; - dulcitudo_F_N : N ; - dulco_V2 : V2 ; - dulcor_M_N : N ; - dulcoratus_A : A ; - dulcoro_V2 : V2 ; - dulia_F_N : N ; - dum_Conj : Conj ; - dumetum_N_N : N ; - dummodo_Conj : Conj ; - dumosus_A : A ; - dumtaxat_Adv : Adv ; - dumus_M_N : N ; - duntaxat_Adv : Adv ; - duodenarius_A : A ; - duoetvicesimanus_M_N : N ; - duonus_A : A ; - duovir_M_N : N ; - duplaris_A : A ; - duplatio_F_N : N ; - dupleitas_F_N : N ; - duplex_A : A ; - duplicarius_M_N : N ; - duplicatio_F_N : N ; - duplicatum_N_N : N ; - duplicatus_A : A ; - duplicitas_F_N : N ; - dupliciter_Adv : Adv ; - duplico_V : V ; - duplo_Adv : Adv ; - duplum_N_N : N ; - duplus_A : A ; - dupondiarius_A : A ; - dupondiarius_M_N : N ; - dupondius_M_N : N ; - dupundius_M_N : N ; - duramen_N_N : N ; - duratio_F_N : N ; - duricordia_F_N : N ; - duritia_F_N : N ; - durities_F_N : N ; - duriusculus_A : A ; - duro_V : V ; - durum_N_N : N ; - durus_A : A ; - duumvir_M_N : N ; - duumviralis_A : A ; - duumviralis_M_N : N ; - duumviralitas_F_N : N ; - duumviratus_M_N : N ; - dux_M_N : N ; - dynamica_F_N : N ; - dynamicus_A : A ; - dynamismus_M_N : N ; - dynastes_M_N : N ; - dynastia_F_N : N ; - dyscolus_A : A ; - dysenteria_F_N : N ; - dysentericus_M_N : N ; - dysfunctio_F_N : N ; - dysinteria_F_N : N ; - dysintericus_M_N : N ; - dyspepsia_F_N : N ; - dyspnoea_F_N : N ; - dyspnoicus_M_N : N ; - e_Abl_Prep : Prep ; - eadem_Adv : Adv ; - eatenus_Adv : Adv ; - ebenum_N_N : N ; - ebenus_C_N : N ; - ebibo_V2 : V2 ; - ebiscum_N_N : N ; - eblandior_V : V ; - eborarius_A : A ; - eborarius_M_N : N ; - eboratus_A : A ; - eboreus_A : A ; - ebriacus_A : A ; - ebrietas_F_N : N ; - ebriolus_A : A ; - ebriosus_A : A ; - ebrius_A : A ; - ebullio_V2 : V2 ; - ebullo_V : V ; - ebulum_N_N : N ; - ebulus_F_N : N ; - ebur_N_N : N ; - eburarius_A : A ; - eburarius_M_N : N ; - eburatus_A : A ; - ebureus_A : A ; - eburneolus_A : A ; - eburneus_A : A ; - eburnus_A : A ; - ecastor_Interj : Interj ; - ecbasis_F_N : N ; - ecca_Interj : Interj ; - eccam_Interj : Interj ; - eccas_Interj : Interj ; - ecce_Interj : Interj ; - eccere_Interj : Interj ; - eccillam_Interj : Interj ; - eccillud_Interj : Interj ; - eccillum_Interj : Interj ; - eccistam_Interj : Interj ; - ecclesia_F_N : N ; - ecclesialis_A : A ; - ecclesiasticum_N_N : N ; - ecclesiasticus_A : A ; - ecclesiasticus_M_N : N ; - ecclesiola_F_N : N ; - eccum_Interj : Interj ; - ecdicus_M_N : N ; - ecfatum_N_N : N ; - ecfatus_A : A ; - ecfatus_M_N : N ; - ecfio_V : V ; - ecflictim_Adv : Adv ; - ecfloresco_V : V ; - ecfloro_V : V ; - ecfo_V2 : V2 ; - ecfor_V : V ; - ecfugio_V2 : V2 ; - ecfundo_V2 : V2 ; - echeneis_F_N : N ; - echidna_F_N : N ; - echinus_M_N : N ; - echographia_F_N : N ; - echoos_F_N : N ; - eclecticismus_M_N : N ; - eclectismus_M_N : N ; - ecligma_N_N : N ; - eclipsis_F_N : N ; - ecliptica_F_N : N ; - eclipticus_A : A ; - ecloga_F_N : N ; - eclogarius_M_N : N ; - ecnephias_M_N : N ; - econtra_Adv : Adv ; - ecquid_Adv : Adv ; - ecstasia_F_N : N ; - ecstasis_F_N : N ; - ecstaticus_A : A ; - ectenia_F_N : N ; - ectheta_F_N : N ; - ectypus_A : A ; - eculeus_M_N : N ; - edax_A : A ; - edentulus_A : A ; - edepol_Interj : Interj ; - edibilis_A : A ; - edico_V2 : V2 ; - edictalis_A : A ; - edictum_N_N : N ; - edisco_V2 : V2 ; - edissero_V2 : V2 ; - edisserto_V : V ; - editicius_A : A ; - editio_F_N : N ; - editor_M_N : N ; - editus_A : A ; - edius_A : A ; - edo_V2 : V2 ; - edoceo_V : V ; - edolo_V2 : V2 ; - edomo_V2 : V2 ; - 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 ; - edurus_A : A ; - edus_M_N : N ; - effarcio_V : V ; - effascinatio_F_N : N ; - effatha_V2 : V2 ; - effatum_N_N : N ; - effatus_A : A ; - effatus_M_N : N ; - effecte_Adv : Adv ; - effectio_F_N : N ; - effective_Adv : Adv ; - effectivus_A : A ; - effector_M_N : N ; - effectrix_F_N : N ; - effectus_M_N : N ; - effeminatus_A : A ; - effemino_V : V ; - efferatus_A : A ; - effercio_V : V ; - effero_V : V ; - effertus_A : A ; - efferus_A : A ; - effervescentia_F_N : N ; - effervesco_V2 : V2 ; - effervo_V : V ; - effetha_V2 : V2 ; - effetus_A : A ; - efficacia_F_N : N ; - efficacitas_F_N : N ; - efficaciter_Adv : Adv ; - efficax_A : A ; - efficiens_A : A ; - efficienter_Adv : Adv ; - efficientia_F_N : N ; - efficio_V2 : V2 ; - effigia_F_N : N ; - effigies_F_N : N ; - effigio_V : V ; - effingo_V2 : V2 ; - effio_V : V ; - efflagitatio_F_N : N ; - efflagito_V : V ; - efflictim_Adv : Adv ; - effligo_V2 : V2 ; - efflo_V : V ; - effloresco_V : V ; - effloro_V : V ; - effluo_V2 : V2 ; - effluvium_N_N : N ; - effluxus_A : A ; - effo_V2 : V2 ; - effodio_V2 : V2 ; - effor_V : V ; - efformatio_F_N : N ; - efformo_V2 : V2 ; - effractura_F_N : N ; - effrenatus_A : A ; - effreno_V : V ; - effrenus_A : A ; - effringo_V2 : V2 ; - effrons_A : A ; - effugatio_F_N : N ; - effugio_V2 : V2 ; - effugium_N_N : N ; - effugo_V2 : V2 ; - effulgeo_V : V ; - effultus_A : A ; - effundo_V2 : V2 ; - effuse_Adv : Adv ; - effusio_F_N : N ; - effusus_A : A ; - effutio_V2 : V2 ; - effuttio_V2 : V2 ; - effutuo_V2 : V2 ; - egelidus_A : A ; - egens_A : A ; - egenus_A : A ; - egeo_V : V ; - egero_V2 : V2 ; - egestas_F_N : N ; - egloga_F_N : N ; - egoismus_M_N : N ; - egoista_M_N : N ; - egoisticus_A : A ; - egredior_V : V ; - egregie_Adv : Adv ; - egregius_A : A ; - egressio_F_N : N ; - egressus_M_N : N ; - egritudo_F_N : N ; - ehem_Interj : Interj ; - eheu_Interj : Interj ; - ehoi_Interj : Interj ; - ei_Interj : Interj ; - eia_Interj : Interj ; - eicio_V2 : V2 ; - eiero_V : V ; - eileton_N_N : N ; - einlatus_M_N : N ; - ejaculor_V : V ; - ejectamentum_N_N : N ; - ejectio_F_N : N ; - ejecto_V : V ; - ejectus_M_N : N ; - ejicio_V2 : V2 ; - ejulabundus_A : A ; - ejulatio_F_N : N ; - ejulatus_M_N : N ; - ejulo_V : V ; - ejuro_V : V ; - ejusmodi_Adv : Adv ; - ektheta_F_N : N ; - elabor_V : V ; - elaboratio_F_N : N ; - elaboro_V : V ; - elamentabilis_A : A ; - elanguens_A : A ; - elanguesco_V2 : V2 ; - elapsus_M_N : N ; - elargio_V2 : V2 ; - elasticitas_F_N : N ; - elasticus_A : A ; - elata_F_N : N ; - elate_Adv : Adv ; - elater_N_N : N ; - elaterium_N_N : N ; - elatio_F_N : N ; - elatus_A : A ; - electa_F_N : N ; - electarium_N_N : N ; - electio_F_N : N ; - electissimus_M_N : N ; - electivus_A : A ; - elector_M_N : N ; - electricitas_F_N : N ; - electricus_A : A ; - electrificatio_F_N : N ; - electrificina_F_N : N ; - electrifico_V : V ; - electrinus_A : A ; - electrisatio_F_N : N ; - electriso_V : V ; - electrochemia_F_N : N ; - electrochemicus_A : A ; - electroconvulsio_F_N : N ; - electroda_F_N : N ; - electrodus_F_N : N ; - electrolysis_F_N : N ; - electrolyticus_A : A ; - electrolytum_N_N : N ; - electromagneticus_A : A ; - electromagnetismus_M_N : N ; - electrometrum_N_N : N ; - electronica_F_N : N ; - electronicus_A : A ; - electroscopium_N_N : N ; - electrostaticus_A : A ; - electrotechnica_F_N : N ; - electrotechnicus_M_N : N ; - electrotherapia_F_N : N ; - electrum_N_N : N ; - electuarium_N_N : N ; - electum_N_N : N ; - electus_A : A ; - eleemosyna_F_N : N ; - elefantus_M_N : N ; - elegans_A : A ; - eleganter_Adv : Adv ; - elegantia_F_N : N ; - elegeia_F_N : N ; - elegia_F_N : N ; - elegus_M_N : N ; - eleison_V : V ; - elelisphacos_M_N : N ; - elementaris_A : A ; - elementarius_A : A ; - elementum_N_N : N ; - elemosina_F_N : N ; - elemosyna_F_N : N ; - elenchus_M_N : N ; - elephans_M_N : N ; - elephantus_M_N : N ; - elephas_M_N : N ; - elevatio_F_N : N ; - elevo_V : V ; - eleyson_V : V ; - elicio_V2 : V2 ; - elido_V2 : V2 ; - eligibilis_A : A ; - eligo_V2 : V2 ; - elimate_Adv : Adv ; - eliminator_M_N : N ; - elimino_V : V ; - elimo_V2 : V2 ; - elingo_V2 : V2 ; - elinguis_A : A ; - eliquatorius_A : A ; - eliquo_V : V ; - elitismus_M_N : N ; - elix_M_N : N ; - elixus_A : A ; - elleborum_N_N : N ; - elleborus_M_N : N ; - ellipsois_F_N : N ; - ellipticus_A : A ; - elluor_V : V ; - elocutio_F_N : N ; - elocutus_A : A ; - elogium_N_N : N ; - elonginquo_V : V ; - elongo_V : V ; - elopsellops_M_N : N ; - eloquens_A : A ; - eloquenter_Adv : Adv ; - eloquentia_F_N : N ; - eloquium_N_N : N ; - eloquor_V : V ; - eluceo_V : V ; - elucesco_V : V ; - elucido_V2 : V2 ; - eluctor_V : V ; - elucubro_V : V ; - elucubror_V : V ; - eludo_V2 : V2 ; - elul_N : N ; - elumbis_A : A ; - eluo_V2 : V2 ; - elutorius_A : A ; - eluvies_F_N : N ; - eluvio_F_N : N ; - elytrum_N_N : N ; - em_Interj : Interj ; - emaculo_V2 : V2 ; - emanatio_F_N : N ; - emancipatio_F_N : N ; - emancipatus_A : A ; - emancipo_V : V ; - emaneo_V : V ; - emano_V : V ; - emarceo_V : V ; - emarcesco_V : V ; - emax_A : A ; - embamma_N_N : N ; - emblem_N_N : N ; - emblema_N_N : N ; - emblematicus_A : A ; - emboliaria_F_N : N ; - embolismus_M_N : N ; - embolium_N_N : N ; - embolum_N_N : N ; - embolus_M_N : N ; - embryo_M_N : N ; - embryotomia_F_N : N ; - embryulcia_F_N : N ; - embryulcus_M_N : N ; - emendatio_F_N : N ; - emendico_V2 : V2 ; - emendo_V : V ; - ementior_V : V ; - emercor_V : V ; - emereo_V : V ; - emereor_V : V ; - emergo_V2 : V2 ; - emerita_F_N : N ; - emeritum_N_N : N ; - emeritus_A : A ; - emeritus_M_N : N ; - emetior_V : V ; - emico_V : V ; - emigro_V : V ; - eminens_A : A ; - eminenter_Adv : Adv ; - eminentia_F_N : N ; - eminentissimus_A : A ; - emineo_V : V ; - eminulus_A : A ; - eminus_Adv : Adv ; - emiror_V : V ; - emissarium_N_N : N ; - emissarius_M_N : N ; - emissicius_A : A ; - emissio_F_N : N ; - emissorium_N_N : N ; - emissorius_A : A ; - emistrum_N_N : N ; - emitto_V2 : V2 ; - emo_V2 : V2 ; - emoderor_V : V ; - emodulor_V : V ; - emolior_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 ; + dromas_2_N : N ; -- [XAXEO] :: dromedary; + dromedaria_F_N : N ; -- [EAXFW] :: dromedary; + dromedarius_M_N : N ; -- [EAXES] :: dromedary; + dromo_F_N : N ; -- [FXXFM] :: dromond; galley; L:Dromo (Roman name); very large medieval long ship; + dubietas_F_N : N ; -- [FXXDE] :: doubt, irresolution, uncertainty; wavering, hesitation; questioning; + dubitanter_Adv : Adv ; -- [XXXDX] :: doubtingly; hesitatingly; with doubt/hesitation; + dubitatio_F_N : N ; -- [XXXBO] :: doubt, irresolution, uncertainty; wavering, hesitation; questioning; + dubito_V : V ; -- [XXXDX] :: doubt; deliberate; hesitate (over); be uncertain/irresolute; + dubium_N_N : N ; -- [XXXDX] :: doubt; question; + dubius_A : A ; -- [XXXAX] :: doubtful, dubious, uncertain; variable, dangerous; critical; + ducamen_N_N : N ; -- [FXXEM] :: guidance; duchy; ducal dignity (Nelson); molding; + ducatus_M_N : N ; -- [CWIDO] :: leadership; position/function of a leader; generalship; + ducenarius_A : A ; -- [XXXCO] :: of/concerning two hundred; weighing 200 pounds; paid/owing 200,000 sesterces; + ducianus_A : A ; -- [XXXES] :: leader-; of a leader; + ducianus_M_N : N ; -- [XXXES] :: commander's servant; + duciloquus_A : A ; -- [FXXEE] :: sweetly speaking; sweet talking; + ducissa_F_N : N ; -- [FLXDE] :: duchess; + duco_V : V ; -- [XXXDX] :: lead, command; think, consider, regard; prolong; + duco_V2 : V2 ; -- [XXXAX] :: lead, command; think, consider, regard; prolong; + ductilis_A : A ; -- [XXXEO] :: ductile/malleable (metals); that is led along a course; + ductilitas_F_N : N ; -- [GXXEK] :: malleability; + ductim_Adv : Adv ; -- [XXXEC] :: by drawing; in a stream; + ductio_F_N : N ; -- [XXXFS] :: leading-away; + ducto_V : V ; -- [XXXDX] :: lead; + ductor_M_N : N ; -- [XXXBX] :: leader, commander; + ductus_M_N : N ; -- [XXXDX] :: conducting; generalship; + dudum_Adv : Adv ; -- [XXXBX] :: little while ago; formerly; [tam dudum => long ago]; + duellator_M_N : N ; -- [BWXDX] :: warrior, fighter; (old form and poetic replacement for bellator); + duellatorus_A : A ; -- [XWXCS] :: war-like, martial; (old form and poetic replacement for bellatorus); + duellicosus_A : A ; -- [XWXDX] :: warlike, fierce; fond of war; (old form and poetic replacement for bellicosus); + duellicus_A : A ; -- [XWXDX] :: of war, military; warlike; (old form and poetic replacement for bellator); + duellio_F_N : N ; -- [FWXFM] :: war; strife; L:judicial combat; (also duellum); + duello_V : V ; -- [FXXEE] :: duel; + duellum_N_N : N ; -- [BWXEX] :: war, warfare; battle, combat, fight; duel; military force, arms; + duis_Adv : Adv ; -- [BXXFO] :: twice, at 2 times/occasions; doubly, twofold, in 2 ways; [~ mille => 2000]; + dulce_N_N : N ; -- [XXXDX] :: sweet drink; sweets (pl.); + dulcedo_F_N : N ; -- [XXXBX] :: sweetness, agreeableness; charm; + dulcesco_V : V ; -- [XXXEC] :: become sweet; + dulciarius_M_N : N ; -- [FXXEK] :: confectioner; + dulcicanus_A : A ; -- [FXXEM] :: sweetly; + dulciculus_A : A ; -- [XXXEC] :: somewhat sweet; + dulcidine_Adv : Adv ; -- [FXXEN] :: sweetly, pleasantly, charmingly; + dulciolum_N_N : N ; -- [GXXEK] :: confection; sweet; + dulcis_A : A ; -- [XXXAX] :: pleasant, charming; sweet; kind, dear; soft, flattering, delightful; + dulcisonus_A : A ; -- [FXXEE] :: harmonious; sweet sounding; + dulciter_Adv : Adv ; -- [XXXCO] :: sweetly; + dulcitudo_F_N : N ; -- [XXXDO] :: sweetness (perceived by senses); desirability; affectionateness; + dulco_V2 : V2 ; -- [EXXES] :: sweeten; + dulcor_M_N : N ; -- [DXXES] :: sweetness; + dulcoratus_A : A ; -- [XXXFS] :: sweetened; + dulcoro_V2 : V2 ; -- [EXXES] :: sweeten; + dulia_F_N : N ; -- [FEXFE] :: religious veneration given to a creature; + dum_Conj : Conj ; -- [XXXAX] :: while, as long as, until; provided that; + dumetum_N_N : N ; -- [XXXDX] :: thicket; + dummodo_Conj : Conj ; -- [XXXDX] :: provided (that) (+ subj); + dumosus_A : A ; -- [XXXDX] :: overgrown with thorn, briar or the like; + dumtaxat_Adv : Adv ; -- [XXXBO] :: to this extent, no more than; as long as; only, precisely; merely; at any rate; + dumus_M_N : N ; -- [XXXDX] :: thorn or briar bush; + duntaxat_Adv : Adv ; -- [EXXES] :: to this extent, no more than; as long as; only, precisely; merely; at any rate; + duodenarius_A : A ; -- [XXXEO] :: containing/consisting of 12; of order of 12; (water pipe w/diameter 12 digits); + duoetvicesimanus_M_N : N ; -- [XWXEC] :: soldiers of the 22nd legion; + duonus_A : A ; -- [AXXFS] :: good; (archaic form of bonus); + duovir_M_N : N ; -- [XLICO] :: |special criminal court; keepers of Sibylline books; colony chief magistrates; + duplaris_A : A ; -- [EXXES] :: containing double; two-fold; + duplatio_F_N : N ; -- [XSXEM] :: doubling (in number/amount); plea by defendant in reply to replication; + dupleitas_F_N : N ; -- [FXXEM] :: doubleness; being double; duplicity; ambiguity; + duplex_A : A ; -- [XXXBX] :: twofold, double; divided; two-faced; + duplicarius_M_N : N ; -- [XWXIS] :: double-paid soldier; soldier who receives double pay as reward; + duplicatio_F_N : N ; -- [XXXEZ] :: doubling; duplication(?); + duplicatum_N_N : N ; -- [GXXEK] :: duplicate; + duplicatus_A : A ; -- [FXXEE] :: double; + duplicitas_F_N : N ; -- [DXXES] :: doubleness; being double; duplicity, deceit; ambiguity; + dupliciter_Adv : Adv ; -- [XXXCO] :: doubly, twice over, in two ways/a twofold manner, into two parts/categories; + duplico_V : V ; -- [XXXDX] :: double, bend double; duplicate; enlarge; + duplo_Adv : Adv ; -- [FXXFE] :: doubly; in a double sense; + duplum_N_N : N ; -- [XXXEC] :: double; (esp. double penalty); + duplus_A : A ; -- [XXXEC] :: twice as much, double; + dupondiarius_A : A ; -- [XLXEO] :: worth two asses (money, two cents); worthless; weighing two pounds; + dupondiarius_M_N : N ; -- [XLXFO] :: two as piece/coin (money); (two cents); + dupondius_M_N : N ; -- [XXXDO] :: two asses (weight/money); (two pounds); two feet (linear measure); need/want; + dupundius_M_N : N ; -- [XXXDO] :: two asses (weight/money); (two pounds); two feet (linear measure); need/want; + duramen_N_N : N ; -- [XXXEC] :: hardness; + duratio_F_N : N ; -- [FXXEE] :: duration; + duricordia_F_N : N ; -- [FXXEE] :: hard-heartedness; + duritia_F_N : N ; -- [XXXDX] :: hardness, insensibility; hardship, oppressiveness; strictness, rigor; + durities_F_N : N ; -- [XXXDX] :: hardness, insensibility; hardship, oppressiveness; strictness, rigor; + duriusculus_A : A ; -- [XXXEO] :: harsher; somewhat harsh; + duro_V : V ; -- [XXXBX] :: harden, make hard; become hard/stern; bear, last, remain, continue; endure; + durum_N_N : N ; -- [FXXFE] :: hardships (pl.); + durus_A : A ; -- [XXXAX] :: hard, stern; harsh, rough, vigorous; cruel, unfeeling, inflexible; durable; + duumvir_M_N : N ; -- [XLXEO] :: |special criminal court; keepers of Sibylline books; colony chief magistrates; + duumviralis_A : A ; -- [XLIFS] :: duumviral; of a duumvir (commission of two men); + duumviralis_M_N : N ; -- [XLIFS] :: ex-duumvir; (member of commission of two men); + duumviralitas_F_N : N ; -- [XLXFS] :: duumvir's rank; (of commission of two men); + duumviratus_M_N : N ; -- [XLXFS] :: duumvir's rank; (of commission of two men); + dux_M_N : N ; -- [XXXAX] :: leader, guide; commander, general; Duke (medieval, Bee); + dynamica_F_N : N ; -- [GXXEK] :: dynamic; + dynamicus_A : A ; -- [FXXDE] :: dynamic, forceful; aggressive; + dynamismus_M_N : N ; -- [FXXEE] :: dynamism; strong force/power; + dynastes_M_N : N ; -- [XXXDX] :: ruler, prince (esp. oriental); + dynastia_F_N : N ; -- [GXXEK] :: dynasty; + dyscolus_A : A ; -- [FXXEE] :: impudent; harsh, severe; peevish, irritable; + dysenteria_F_N : N ; -- [XBXEO] :: dysentery; (other similar conditions?); + dysentericus_M_N : N ; -- [XBXEO] :: sufferer/patient with dysentery/(similar conditions?); + dysfunctio_F_N : N ; -- [GXXEK] :: dysfunction; + dysinteria_F_N : N ; -- [XBXEO] :: dysentery; (other similar conditions?); + dysintericus_M_N : N ; -- [XBXEO] :: sufferer/patient with dysentery/(similar conditions?); + dyspepsia_F_N : N ; -- [XBXFO] :: indigestion, dyspepsia; + dyspnoea_F_N : N ; -- [XBXNO] :: difficulty in breathing; + dyspnoicus_M_N : N ; -- [XBXNO] :: asthmatic; person suffering from difficulty in breathing; + e_Abl_Prep : Prep ; -- [XXXAX] :: out of, from; by reason of; according to; because of, as a result of; + eadem_Adv : Adv ; -- [XXXDX] :: by the same route; at the same time; likewise; same (NOM S F/ABL S F/NOM P N); + eatenus_Adv : Adv ; -- [XXXEC] :: so far; + ebenum_N_N : N ; -- [XXXFO] :: ebony (wood or tree of genus Diospyrus); + ebenus_C_N : N ; -- [XXXDO] :: ebony (wood or tree of genus Diospyrus); + ebibo_V2 : V2 ; -- [XXXDX] :: drink up, drain; absorb; squander; + ebiscum_N_N : N ; -- [XAXEO] :: marsh mallow; (Althea officinalis); (shrubby herb, grows near salt marshes); + eblandior_V : V ; -- [XXXDX] :: obtain by flattery; + eborarius_A : A ; -- [XXXIO] :: working/dealing in ivory; + eborarius_M_N : N ; -- [XXXIO] :: worker/dealer in ivory; + eboratus_A : A ; -- [XXXIO] :: adorned with ivory; inlaid with ivory; + eboreus_A : A ; -- [XXXDO] :: ivory-, made of ivory; pertaining to/derived from ivory; + ebriacus_A : A ; -- [XXXFO] :: drunk, drunken, intoxicated; + ebrietas_F_N : N ; -- [XXXDX] :: drunkenness, intoxication; + ebriolus_A : A ; -- [XXXEC] :: tipsy; + ebriosus_A : A ; -- [XXXDX] :: addicted to drink; + ebrius_A : A ; -- [XXXCO] :: drunk, intoxicated; riotous; like a drunk, exhilarated, distraught; soaked in; + ebullio_V2 : V2 ; -- [XXXDO] :: |bubble; boil-up; produce in abundance; + ebullo_V : V ; -- [DXXFS] :: |bubble; boil-up; produce in abundance; + ebulum_N_N : N ; -- [XXXDX] :: danewort, dwarf elder; + ebulus_F_N : N ; -- [XXXDX] :: danewort, dwarf elder; + ebur_N_N : N ; -- [XXXCO] :: ivory; object/statue of ivory; curule chair (of magistrate); elephant/tusk; + eburarius_A : A ; -- [XXXIO] :: working/dealing in ivory; + eburarius_M_N : N ; -- [XXXIO] :: worker/dealer in ivory; + eburatus_A : A ; -- [XXXIO] :: adorned with ivory; inlaid with ivory; + ebureus_A : A ; -- [XXXDO] :: ivory-, made of ivory; pertaining to/derived from ivory; + eburneolus_A : A ; -- [XXXFO] :: made of ivory; + eburneus_A : A ; -- [XXXCO] :: ivory, of ivory; white as ivory, ivory-colored; [dens ~ => elephant tusk]; + eburnus_A : A ; -- [XXXCO] :: made of ivory; decorated with/made partially out of ivory; white as ivory; + ecastor_Interj : Interj ; -- [XXXDX] :: by Castor (interjection used by women); + ecbasis_F_N : N ; -- [XGXFS] :: digression; + ecca_Interj : Interj ; -- [XXXFO] :: Here they (neuter) are!; Behold!, Observe!, Lo!; + eccam_Interj : Interj ; -- [XXXDO] :: Here she/it is!; Behold!, Observe!, Lo!; + eccas_Interj : Interj ; -- [XXXEO] :: Here they (feminine) are!; Behold!, Observe!, Lo!; + ecce_Interj : Interj ; -- [XXXAX] :: behold! see! look! there! here! [ecce eum => here he is]; + eccere_Interj : Interj ; -- [XXXDO] :: Here she/it is!; Behold!, Observe!, Lo!; There you are!; + eccillam_Interj : Interj ; -- [XXXEO] :: There she/it is!; Behold!, Observe!, Lo!; + eccillud_Interj : Interj ; -- [XXXFO] :: There it is!; Behold!, Observe!, Lo!; + eccillum_Interj : Interj ; -- [XXXEO] :: There he/it is!; Behold!, Observe!, Lo!; + eccistam_Interj : Interj ; -- [XXXFO] :: There she is!; Behold!, Observe!, Lo!; + ecclesia_F_N : N ; -- [XEXAO] :: church; assembly, meeting of the assembly (Greek); (Universal) Church (Dif); + ecclesialis_A : A ; -- [EEXEE] :: ecclesial, ecclesiastical; of/pertaining to church/clergyman; + ecclesiasticum_N_N : N ; -- [EEXEP] :: Church rites (pl.); + ecclesiasticus_A : A ; -- [EEXCP] :: ecclesiastic, canonical, of/belonging to the Church; of book of Sirach; + ecclesiasticus_M_N : N ; -- [EEXDP] :: churchman, ecclesiastic; church member; one of the Aeons; book of Sirach; + ecclesiola_F_N : N ; -- [FEXEM] :: chapel, small church; + eccum_Interj : Interj ; -- [XXXFO] :: Here he/it is!; Behold!, Observe!, Lo!; + ecdicus_M_N : N ; -- [XXXEC] :: solicitor for a community; + ecfatum_N_N : N ; -- [XXXDO] :: pronouncement (by seer), prediction; announcement; assertion/proposition/axiom; + ecfatus_A : A ; -- [FXXDE] :: pronounced, designated; determined; established; proclaimed; + ecfatus_M_N : N ; -- [XXXEO] :: utterance; + ecfio_V : V ; -- [XXXDS] :: be accomplished/completed/made/executed/done; come to pass; (efficio PASS); + ecflictim_Adv : Adv ; -- [XXXDO] :: passionately, desperately, to distraction; + ecfloresco_V : V ; -- [XXXCO] :: blossom forth; burst into flower; bloom (Ecc); flourish; + ecfloro_V : V ; -- [XXXCO] :: blossom forth; burst into flower; bloom (Ecc); flourish; + ecfo_V2 : V2 ; -- [XEXDO] :: demarcate in words areas/boundaries for augury signs might be observed (PASS); + ecfor_V : V ; -- [XXXCO] :: utter, say (solemn words); declare, announce, make known; speak, express; + ecfugio_V2 : V2 ; -- [XXXAO] :: flee/escape; run/slip/keep away (from), eschew/avoid; baffle, escape notice; + ecfundo_V2 : V2 ; -- [XXXAO] :: |||stretch/spread out, extend; spread (sail); loosen/slacken/fling, give rein; + echeneis_F_N : N ; -- [XAXEC] :: sucking fish, the remora; + echidna_F_N : N ; -- [XXXDX] :: serpent, viper; + echinus_M_N : N ; -- [XXXEC] :: edible sea-urchin; copper dish; + echographia_F_N : N ; -- [HSXEK] :: scan; + echoos_F_N : N ; -- [XXXBO] :: echo; (nymph); repeating words/phrases; same phrase at start and end of speech; + eclecticismus_M_N : N ; -- [GXXEK] :: eclecticism; + eclectismus_M_N : N ; -- [GXXEK] :: eclecticism; + ecligma_N_N : N ; -- [DBXNS] :: melt-in-mouth medicine, electuary, paste of powder+honey held in mouth; + eclipsis_F_N : N ; -- [EXXES] :: eclipse; + ecliptica_F_N : N ; -- [GXXEK] :: ecliptic; + eclipticus_A : A ; -- [XLXFS] :: ecliptic; in which moon is eclipsed (astrological signs); of eclipse; + ecloga_F_N : N ; -- [XXXDX] :: short poem (esp. pastoral); short passage selected from longer work, excerpt; + eclogarius_M_N : N ; -- [XGXEC] :: select passages (pl.) or extracts; + ecnephias_M_N : N ; -- [XXXFS] :: hurricane; (Pliny-allegedly formed by blasts from two clouds); + econtra_Adv : Adv ; -- [DXXES] :: the_contrary; the_reverse; + ecquid_Adv : Adv ; -- [XXXDX] :: at all? (interog.); + ecstasia_F_N : N ; -- [FEXEM] :: rapture; ecstasy; trance; + ecstasis_F_N : N ; -- [FEXDM] :: rapture; ecstasy; trance; + ecstaticus_A : A ; -- [FEXEM] :: ecstatic; exalted; [Doctor Ecstaticus => Denis the Carthusian]; + ectenia_F_N : N ; -- [EEHFE] :: ectene; (prayer in Greek liturgy); + ectheta_F_N : N ; -- [ETXFP] :: balcony; gallery (Douay); + ectypus_A : A ; -- [FXXEK] :: in relief; + eculeus_M_N : N ; -- [XXXCO] :: little horse, colt; rack, instrument of torture; + edax_A : A ; -- [XXXDX] :: greedy, rapacious, voracious, gluttonous; devouring, consuming, destructive; + edentulus_A : A ; -- [XXXFS] :: toothless; matured; + edepol_Interj : Interj ; -- [XXXDX] :: by Pollux!; + edibilis_A : A ; -- [GXXEK] :: edible; + edico_V2 : V2 ; -- [XXXDX] :: proclaim, declare; appoint; + edictalis_A : A ; -- [XLXEO] :: by/according to (praetorian) edict; + edictum_N_N : N ; -- [XXXDX] :: proclamation; edict; + edisco_V2 : V2 ; -- [XXXDX] :: learn by heart; commit to memory; study; get to know; + edissero_V2 : V2 ; -- [XXXDX] :: set forth in full, relate at length, dwell upon; unfold, explain, tell; + edisserto_V : V ; -- [XXXDX] :: relate, expound; explain; + editicius_A : A ; -- [XXXEC] :: announced, proposed; [w/iudices => jurors chosen by a plaintiff]; + editio_F_N : N ; -- [XXXDX] :: publishing; edition; statement; + editor_M_N : N ; -- [GXXEE] :: |editor; producer, publisher; + editus_A : A ; -- [XXXDX] :: high, elevated; rising; + edius_A : A ; -- [XXXDX] :: high, lofty; + edo_V2 : V2 ; -- [XXXCO] :: eat/consume/devour; eat away (fire/water/disease); destroy; spend money on food; + edoceo_V : V ; -- [XXXDX] :: teach or inform thoroughly; + edolo_V2 : V2 ; -- [XXXEO] :: hack, hew, hew out; form by hacking; plane (Ecc); + edomo_V2 : V2 ; -- [XXXCO] :: |master (vices); overcome (difficulties); bring (land /plants)under cultivation; + edormio_V2 : V2 ; -- [XXXDX] :: sleep, sleep off; + edormisco_V : V ; -- [XXXEC] :: sleep away/through/off; sleep one's fill; + educatio_F_N : N ; -- [XXXDX] :: bringing up; rearing; + educativus_A : A ; -- [FGXEE] :: educational; + educator_M_N : N ; -- [XXXDX] :: bringer up, tutor; foster-father; + educatrix_F_N : N ; -- [XXXDO] :: nurse; foster-mother; she who nurtures/brings up; tutor/teacher (Ecc); + educo_V : V ; -- [XXXBX] :: bring up; train; educate; rear; + educo_V2 : V2 ; -- [XXXDX] :: lead out; draw up; bring up; rear; + edulcoro_V : V ; -- [GXXEK] :: sweeten; + edulis_A : A ; -- [XXXEO] :: edible, eatable; + edulium_N_N : N ; -- [XXXCO] :: edibles (pl.), eatables; foodstuffs; food (L+S); + edurus_A : A ; -- [XXXDX] :: very hard; + edus_M_N : N ; -- [XAXFO] :: kid, young goat; two stars in constellation Auriga (Charioteer), "The Kid"; + effarcio_V : V ; -- [XXXEC] :: stuff full; + effascinatio_F_N : N ; -- [XXXES] :: bewitching; + effatha_V2 : V2 ; -- [EEQFE] :: be thou opened; (Mark 7:34); (Aramaic); + effatum_N_N : N ; -- [XXXDO] :: pronouncement (by seer), prediction; announcement; assertion/proposition/axiom; + effatus_A : A ; -- [FXXDE] :: pronounced, designated; determined; established; proclaimed; + effatus_M_N : N ; -- [XXXEO] :: utterance; + effecte_Adv : Adv ; -- [XXXEO] :: consummately, in accomplished style; in practical way; productively; + effectio_F_N : N ; -- [XXXEO] :: achievement, accomplishment (of aim); efficient cause; doing/performing (Ecc); + effective_Adv : Adv ; -- [EXXEE] :: effectively; productively; + effectivus_A : A ; -- [XXXEO] :: creative, involving product; of practical implementation; effective/productive; + effector_M_N : N ; -- [XXXDO] :: author, originator, one who creates/causes; maker (Ecc); doer; + effectrix_F_N : N ; -- [XXXDO] :: author/originator (feminine), she who creates/causes/effects; maker/doer (Ecc); + effectus_M_N : N ; -- [XXXDX] :: execution, performance; effect; + effeminatus_A : A ; -- [XXXDX] :: womanish, effeminate; + effemino_V : V ; -- [XXXDX] :: weaken, enervate, make effeminate, emasculate, unman; + efferatus_A : A ; -- [XXXDO] :: wild, savage, bestial, fierce, raging; resembling/typical of wild animal; + effercio_V : V ; -- [XXXEC] :: stuff full; + effero_V : V ; -- [XXXDX] :: carry out; bring out; carry out for burial; raise; + effertus_A : A ; -- [XXXEC] :: stuffed; + efferus_A : A ; -- [XXXDX] :: savage, cruel, barbarous; + effervescentia_F_N : N ; -- [GXXEK] :: effervescence; + effervesco_V2 : V2 ; -- [XXXDX] :: boil up, seethe; effervesce; become greatly excited; + effervo_V : V ; -- [XXXEC] :: boil up or over; swarm forth; + effetha_V2 : V2 ; -- [EEQFE] :: be thou opened; (Mark 7:34); (Aramaic); + effetus_A : A ; -- [XXXDX] :: exhausted, worn out; + efficacia_F_N : N ; -- [XXXEO] :: effectiveness; efficiency; accomplishment (Ecc); power, influence; efficacy; + efficacitas_F_N : N ; -- [XXXEO] :: effectiveness; efficiency; accomplishment (Ecc); power, influence; efficacy; + efficaciter_Adv : Adv ; -- [XXXCO] :: effectually; to good effect; so as to take effect in law; + efficax_A : A ; -- [XXXDX] :: effective, capable of filling some function; (person/medicine); legally valid; + efficiens_A : A ; -- [XXXDM] :: efficient, effective; that gives rise to something; capable of acting/active; + efficienter_Adv : Adv ; -- [XXXCO] :: effectively; so as to produce an effect; efficiently (L+S); + efficientia_F_N : N ; -- [XXXEO] :: efficient power, influence; + efficio_V2 : V2 ; -- [XXXAX] :: bring about; effect, execute, cause; accomplish; make, produce; prove; + effigia_F_N : N ; -- [XXXEC] :: image, likeness, effigy; a shade, ghost; an ideal; + effigies_F_N : N ; -- [XXXBX] :: copy, image, likeness, portrait; effigy, statue; ghost; + effigio_V : V ; -- [EXXFM] :: form; fashion; portray; + effingo_V2 : V2 ; -- [XXXDX] :: fashion, form, mold; represent, portray, depict; copy; wipe away; + effio_V : V ; -- [XXXDS] :: be accomplished/completed/made/executed/done; come to pass; (efficio PASS); + efflagitatio_F_N : N ; -- [XXXDX] :: urgent demand; + efflagito_V : V ; -- [XXXDX] :: request, demand, insist, ask urgently; + efflictim_Adv : Adv ; -- [XXXDO] :: passionately, desperately, to distraction; + effligo_V2 : V2 ; -- [XXXEC] :: destroy; + efflo_V : V ; -- [XXXDX] :: blow or breathe out; breathe one's last; + effloresco_V : V ; -- [XXXCO] :: blossom forth; burst into flower; bloom (Ecc); flourish; + effloro_V : V ; -- [XXXCO] :: blossom forth; burst into flower; bloom (Ecc); flourish; + effluo_V2 : V2 ; -- [XXXDX] :: flow out, flow forth; disappear, vanish, escape; be forgotten; + effluvium_N_N : N ; -- [XXXEC] :: flowing out, outlet; + effluxus_A : A ; -- [FXXFM] :: lapsed; past (time); + effo_V2 : V2 ; -- [XEXDO] :: demarcate in words areas/boundaries for augury signs might be observed (PASS); + effodio_V2 : V2 ; -- [XXXDX] :: dig out, excavate; gouge out; + effor_V : V ; -- [XXXCO] :: utter, say (solemn words); declare, announce, make known; speak, express; + efformatio_F_N : N ; -- [FXXEM] :: formation; shape; + efformo_V2 : V2 ; -- [FXXEE] :: form, shape, fashion; + effractura_F_N : N ; -- [FXXEK] :: break-in; + effrenatus_A : A ; -- [XXXDX] :: unbridled; unrestrained, unruly, headstrong, violent; freed from/not subject t; + effreno_V : V ; -- [XXXDX] :: unbridle, let loose; remove or slacken the reins of a horse; + effrenus_A : A ; -- [XXXDX] :: unbridled; unrestrained, unruly, headstrong, violent; freed from/not subject t; + effringo_V2 : V2 ; -- [XXXDX] :: break open; smash; break in; + effrons_A : A ; -- [FXXDE] :: shameless, brazen; bold; insulting; + effugatio_F_N : N ; -- [XXXEE] :: driving away; putting to flight; driving into exile; + effugio_V2 : V2 ; -- [XXXAO] :: flee/escape; run/slip/keep away (from), eschew/avoid; baffle, escape notice; + effugium_N_N : N ; -- [XXXDX] :: flight; way of escape; + effugo_V2 : V2 ; -- [XXXEE] :: drive away (from); frighten off, deter; drive/send into exile; + effulgeo_V : V ; -- [XXXDX] :: shine forth, glitter; be or become conspicuous; + effultus_A : A ; -- [XXXDX] :: propped up, supported (by); + effundo_V2 : V2 ; -- [XXXAO] :: |||stretch/spread out, extend; spread (sail); loosen/slacken/fling, give rein; + effuse_Adv : Adv ; -- [XXXDX] :: over a wide area, extensively; freely, in a disorderly manner; lavishly; + effusio_F_N : N ; -- [XXXDX] :: outpouring, shedding; profusion, lavishness, extravagance, excess; + effusus_A : A ; -- [XXXDX] :: vast, wide, sprawling; disheveled, loose (hair/reins); disorderly; extravagant; + effutio_V2 : V2 ; -- [XXXCO] :: blurt out; blab, babble, prate, chatter; utter foolishly/irresponsibly; + effuttio_V2 : V2 ; -- [XXXCO] :: blurt out; blab, babble, prate, chatter; utter foolishly/irresponsibly; + effutuo_V2 : V2 ; -- [XXXDX] :: wear out with sexual intercourse; squander on debauchery; + egelidus_A : A ; -- [XXXDX] :: lukewarm, tepid; + egens_A : A ; -- [XXXDX] :: needy, poor, in want of; very poor, destitute (of); + egenus_A : A ; -- [XXXDX] :: in want of, destitute of; + egeo_V : V ; -- [XXXBX] :: need (w/GEN/ABL), lack, want; require, be without; + egero_V2 : V2 ; -- [XXXDX] :: carry or bear out, discharge, utter; + egestas_F_N : N ; -- [XXXBX] :: need, poverty, extreme poverty; lack, want; + egloga_F_N : N ; -- [XXXDX] :: short poem (esp. pastoral); short passage selected from longer work, excerpt; + egoismus_M_N : N ; -- [GXXEK] :: selfishness; + egoista_M_N : N ; -- [GXXEK] :: egoist; + egoisticus_A : A ; -- [FXXEE] :: egotistical; selfish; + egredior_V : V ; -- [XXXAX] :: go/march/come out; set sail; land, disembark; surpass, go beyond; + egregie_Adv : Adv ; -- [XXXCO] :: excellently, admirably well; signally/remarkably, to outstanding degree; + egregius_A : A ; -- [XXXBX] :: singular; distinguished; exceptional; extraordinary; eminent; excellent; + egressio_F_N : N ; -- [XXXEO] :: digression (rhetoric); action of going out; + egressus_M_N : N ; -- [XXXDX] :: landing place; egress; departure; flight; landing; mouth (of a river); + egritudo_F_N : N ; -- [FBXEM] :: sickness; disease; mental illness; [~ regis => king's evil/scrofula]; + ehem_Interj : Interj ; -- [XXXEC] :: oho! well well!; + eheu_Interj : Interj ; -- [XXXDX] :: alas! (exclamation of grief/pain/fear); + ehoi_Interj : Interj ; -- [XXXEZ] :: hurrah! (exclamation of happiness); + ei_Interj : Interj ; -- [XXXDX] :: Ah! Woe!, oh dear, alas; (of grief or fear); + eia_Interj : Interj ; -- [XXXBX] :: how now!, Ha, Good, see! (of joy); see!, Quick! (of urgency/astonishment); + eicio_V2 : V2 ; -- [XXXDX] :: cast/throw/fling/drive out/up, extract, expel, discharge, vomit; out (tongue); + eiero_V : V ; -- [XXXDX] :: refuse upon/reject by oath; abjure, resign, abdicate, renounce; + eileton_N_N : N ; -- [FEHFE] :: corporal (in Greek rite); + einlatus_M_N : N ; -- [XXXDX] :: wailing, shrieking; + ejaculor_V : V ; -- [XXXDX] :: shoot forth, spout forth, discharge; + ejectamentum_N_N : N ; -- [XXXEC] :: ejecta, that which is thrown/cast up/out; + ejectio_F_N : N ; -- [XXXEO] :: banishment/exile, expulsion from one's country; spitting (of blood); ejection; + ejecto_V : V ; -- [XXXDX] :: cast out; + ejectus_M_N : N ; -- [XXXFO] :: expulsion, driving out; banishment/exile (Ecc); + ejicio_V2 : V2 ; -- [XXXCS] :: cast/throw/fling/drive out/up, extract, expel, discharge, vomit; out (tongue); + ejulabundus_A : A ; -- [DXXFS] :: abandoned to wailing/lamentation; + ejulatio_F_N : N ; -- [XXXEC] :: wailing, lamentation; + ejulatus_M_N : N ; -- [XXXEC] :: wailing, lamentation; + ejulo_V : V ; -- [XXXEC] :: wail, lament; + ejuro_V : V ; -- [XXXDX] :: abjure; resign; reject on oath (of a judge); forswear, disown; + ejusmodi_Adv : Adv ; -- [XXXEE] :: of this sort; of such kind; [et ~ => and the like]; + ektheta_F_N : N ; -- [ETXFP] :: balcony; gallery (Douay); + elabor_V : V ; -- [XXXBX] :: slip away; escape; elapse; + elaboratio_F_N : N ; -- [XXXFO] :: painstaking/persevering effort; elaboration (Ecc); + elaboro_V : V ; -- [XXXDX] :: take pains, exert oneself; bestow care on; + elamentabilis_A : A ; -- [XXXEC] :: very lamentable; + elanguens_A : A ; -- [XXXEE] :: growing weak; drooping, flagging; slackening, relaxing; + elanguesco_V2 : V2 ; -- [XXXDX] :: begin to lose one's vigor, droop, flag; slacken, relax; + elapsus_M_N : N ; -- [FXXEE] :: lapse; + elargio_V2 : V2 ; -- [XXXFE] :: bestow freely upon; give out, distribute (Ecc); + elasticitas_F_N : N ; -- [GXXEK] :: elasticity; springiness; + elasticus_A : A ; -- [GXXEK] :: elastic; + elata_F_N : N ; -- [FXXEE] :: spray; + elate_Adv : Adv ; -- [XXXCO] :: haughtily, proudly; insolently; in a grand/lofty style of speech/writing; + elater_N_N : N ; -- [GXXEK] :: spring; + elaterium_N_N : N ; -- [XAXFS] :: cucumber juice; medicine from wild cucumber; + elatio_F_N : N ; -- [XXXCO] :: glorification/extolling/lifting; (ceremonial) carrying out; ecstasy; exaltation; + elatus_A : A ; -- [XXXCO] :: raised, reaching high level; head high, proudly erect; sublime/exalted/grand; + electa_F_N : N ; -- [FLXEE] :: candidate, one chosen; + electarium_N_N : N ; -- [EBXFQ] :: melt-in-mouth medicine, electuary, paste of powder+honey held in mouth (OED); + electio_F_N : N ; -- [XXXDX] :: choice, selection; election; E:election to salvation (Ecc); + electissimus_M_N : N ; -- [GXXEK] :: elite; + electivus_A : A ; -- [XLXEE] :: elective; + elector_M_N : N ; -- [FLXDE] :: elector; + electricitas_F_N : N ; -- [HXXEK] :: electricity; + electricus_A : A ; -- [GSXDE] :: electric; + electrificatio_F_N : N ; -- [HXXEK] :: electrification; + electrificina_F_N : N ; -- [HXXEK] :: powerhouse; + electrifico_V : V ; -- [HXXEK] :: electrify; + electrinus_A : A ; -- [GXXEK] :: amber-colored; + electrisatio_F_N : N ; -- [HXXEK] :: electrification; + electriso_V : V ; -- [HXXEK] :: charge; + electrochemia_F_N : N ; -- [HSXEK] :: electrochemistry; + electrochemicus_A : A ; -- [GSXEK] :: electro-chemical; + electroconvulsio_F_N : N ; -- [HBXEK] :: electroshock; + electroda_F_N : N ; -- [GTXEK] :: electrode; + electrodus_F_N : N ; -- [GTXEK] :: electrode; + electrolysis_F_N : N ; -- [GSXEK] :: electrolysis; + electrolyticus_A : A ; -- [GSXEK] :: electrolytic; + electrolytum_N_N : N ; -- [GSXEK] :: electrolyte; + electromagneticus_A : A ; -- [HSXEK] :: electromagnetic; + electromagnetismus_M_N : N ; -- [HSXEK] :: electromagnetism; + electrometrum_N_N : N ; -- [GXXEK] :: electricity meter; + electronica_F_N : N ; -- [HXXEK] :: electronic; + electronicus_A : A ; -- [HSXEK] :: electronic; + electroscopium_N_N : N ; -- [HTXEK] :: electroscope; + electrostaticus_A : A ; -- [HSXEK] :: electrostatic; + electrotechnica_F_N : N ; -- [HSXEK] :: electrotechnique; + electrotechnicus_M_N : N ; -- [HSXEK] :: electrician; + electrotherapia_F_N : N ; -- [HBXEK] :: electrotherapy; + electrum_N_N : N ; -- [XXXCO] :: electrum (alloy of gold and silver); amber; electron (Cal); + electuarium_N_N : N ; -- [EBXFQ] :: melt-in-mouth medicine, electuary, paste of powder+honey held in mouth (OED); + electum_N_N : N ; -- [FXXEE] :: dainties (pl.), choice bits; + electus_A : A ; -- [XXXDX] :: chosen, select, picked; choice; + eleemosyna_F_N : N ; -- [FEXEE] :: alms, almshouse; gift to a church, religious foundation; pity; (act of) mercy; + elefantus_M_N : N ; -- [XXXCO] :: elephant; ivory; large variety of lobster, large sea creature; elephantiasis; + elegans_A : A ; -- [XXXBX] :: elegant, fine, handsome; tasteful; fastidious, critical; discriminating, polite; + eleganter_Adv : Adv ; -- [XXXCO] :: elegantly, attractively; properly/rightly, w/correct taste/conduct; neatly; + elegantia_F_N : N ; -- [XXXDX] :: elegance; niceness; taste; politeness; + elegeia_F_N : N ; -- [XXXDX] :: elegy; + elegia_F_N : N ; -- [XXXDX] :: elegy; + elegus_M_N : N ; -- [XXXDX] :: elegiac verses (pl.), elegy; + eleison_V : V ; -- [EEHDE] :: have mercy (upon us); (Greek imperative); + elelisphacos_M_N : N ; -- [DAXNS] :: sage (Pliny); + elementaris_A : A ; -- [XXXFO] :: elementary, rudimentary; engaged in learning rudiments; + elementarius_A : A ; -- [XXXFO] :: elementary, rudimentary; engaged in learning rudiments; + elementum_N_N : N ; -- [XXXBX] :: |element, origin; first principle; + elemosina_F_N : N ; -- [EEXEB] :: alms, almshouse; gift to a church, religious foundation; pity; (act of) mercy; + elemosyna_F_N : N ; -- [DEXEW] :: alms, almshouse; gift to a church, religious foundation; pity; (act of) mercy; + elenchus_M_N : N ; -- [XXXEC] :: pearl pendant worn as an earring; + elephans_M_N : N ; -- [XXXEO] :: elephant; ivory; large variety of lobster, large sea creature; elephantiasis; + elephantus_M_N : N ; -- [XXXBO] :: elephant; ivory; large variety of lobster, large sea creature; elephantiasis; + elephas_M_N : N ; -- [XXXFO] :: elephant; ivory; large variety of lobster, large sea creature; elephantiasis; + elevatio_F_N : N ; -- [EXXDX] :: raising, lifting up; + elevo_V : V ; -- [XXXDX] :: lift up, raise; alleviate; lessen; make light of; + eleyson_V : V ; -- [EEHDX] :: have mercy (upon us); (Greek imperative); + elicio_V2 : V2 ; -- [XXXDX] :: draw/pull out/forth, entice, elicit, coax; + elido_V2 : V2 ; -- [XXXDX] :: strike or dash out; expel; shatter; crush out; strangle; destroy; + eligibilis_A : A ; -- [FXXFM] :: desirable; eligible; + eligo_V2 : V2 ; -- [XXXAX] :: pick out, choose; + elimate_Adv : Adv ; -- [FXXEE] :: clearly, exactly; + eliminator_M_N : N ; -- [EEXEE] :: purifier, cleanser; + elimino_V : V ; -- [XXXEC] :: carry out of doors; [w/dicta => to blab]; + elimo_V2 : V2 ; -- [XXXDO] :: make/remove by filing; polish w/file; file off; produce/write w/care/polish; + elingo_V2 : V2 ; -- [XXXFO] :: lick clean; lick up (Ecc); + elinguis_A : A ; -- [XGXEC] :: speechless or without eloquence; + eliquatorius_A : A ; -- [GXXEK] :: elegant; refined; + eliquo_V : V ; -- [GXXEK] :: refine (an industrial product); + elitismus_M_N : N ; -- [GXXEK] :: elitism; + elix_M_N : N ; -- [XAXCO] :: furrow in grainfield for draining off water (usu. pl.), trench, drain, ditch; + elixus_A : A ; -- [XXXCO] :: boiled; (of meat); + elleborum_N_N : N ; -- [XAXEC] :: hellebore (plant); (considered a remedy for madness); + elleborus_M_N : N ; -- [XAXEC] :: hellebore (plant); (considered a remedy for madness); + ellipsois_F_N : N ; -- [GXXEK] :: ellipsoid; + ellipticus_A : A ; -- [GXXEK] :: elliptic; + elluor_V : V ; -- [XXXDO] :: spend immoderately (eating/luxuries); be a glutton/gormandize; squander; + elocutio_F_N : N ; -- [XGXEC] :: oratorical delivery, elocution; + elocutus_A : A ; -- [XXXFS] :: declared, uttered; out spoken; + elogium_N_N : N ; -- [XLXCO] :: clause added to will/codicil; written particulars on prisoner; inscription; + elonginquo_V : V ; -- [EXXFS] :: remove; + elongo_V : V ; -- [EXXCS] :: withdraw, depart; remove; keep aloof; + elopsellops_M_N : N ; -- [XAXEC] :: fish (perhaps sturgeon); + eloquens_A : A ; -- [XXXCO] :: eloquent, expressing thoughts fluently/forcefully; articulate, able in speech;; + eloquenter_Adv : Adv ; -- [XXXEO] :: eloquently; + eloquentia_F_N : N ; -- [XXXBX] :: eloquence; + eloquium_N_N : N ; -- [XGXCO] :: eloquence; speech, utterance/word; manner of speaking, diction; pronouncement; + eloquor_V : V ; -- [XXXBX] :: speak out, utter; + eluceo_V : V ; -- [XXXDX] :: shine forth; show itself; be manifest; + elucesco_V : V ; -- [EXXEE] :: begin to be light; shine forth (Erasmus); + elucido_V2 : V2 ; -- [EXXFS] :: light; enlighten; + eluctor_V : V ; -- [XXXDX] :: force a way through; surmount a difficulty; + elucubro_V : V ; -- [XXXDX] :: compose at night; burn the midnight oil over, spend the night working; + elucubror_V : V ; -- [XXXDX] :: compose at night; burn the midnight oil over, spend the night working; + eludo_V2 : V2 ; -- [XXXDX] :: elude, escape from; parry; baffle; cheat; frustrate; mock, make fun of; + elul_N : N ; -- [EXQEW] :: Elul; sixth month of the Jewish ecclesiastical year; + elumbis_A : A ; -- [XXXEC] :: weak, feeble; + eluo_V2 : V2 ; -- [XXXDX] :: wash clean; wash away, clear oneself (of); + elutorius_A : A ; -- [GXXEK] :: washing; + eluvies_F_N : N ; -- [XXXEC] :: flowing out, discharge; a flowing over, flood; + eluvio_F_N : N ; -- [XXXEC] :: inundation; + elytrum_N_N : N ; -- [GXXEK] :: elytron; outer wing; + em_Interj : Interj ; -- [XXXDX] :: there! (of wonder); here!; + emaculo_V2 : V2 ; -- [XXXEO] :: cleanse of stains/spots, make clean; heal; correct/clear from faults (Erasmus); + emanatio_F_N : N ; -- [FEXEE] :: emanation; + emancipatio_F_N : N ; -- [XLXCO] :: emancipation; release from patria potestas; conveyance/transfer of property; + emancipatus_A : A ; -- [XLXEE] :: emancipated, freed; + emancipo_V : V ; -- [XXXDX] :: emancipate (son from his father's authority); alienate; make subservient; + emaneo_V : V ; -- [XXXEO] :: stay away (from); stay out/beyond; absent oneself; + emano_V : V ; -- [XXXDX] :: flow out; arise, emanate from, become known; + emarceo_V : V ; -- [XXXEE] :: decay, wither; + emarcesco_V : V ; -- [XXXEO] :: shrink/decay/wither/dwindle/pine away; disappear (L+S); [~ cor meum => fainted]; + emax_A : A ; -- [XXXDX] :: fond/overfond of buying; + embamma_N_N : N ; -- [FXXEK] :: sauce; + emblem_N_N : N ; -- [XTXEC] :: inlaid or mosaic work; + emblema_N_N : N ; -- [FXXEK] :: |marquetry; + emblematicus_A : A ; -- [FXXEE] :: of emblems; checky, with checks (heraldry) (Latham); + emboliaria_F_N : N ; -- [XDXES] :: interlude actress; + embolismus_M_N : N ; -- [FXXEE] :: insertion; (in literary work); + embolium_N_N : N ; -- [XDXEO] :: dramatic interlude, entr'acte; insertion (in literary work); episode (Ecc); + embolum_N_N : N ; -- [XWXFO] :: beak of ship; ram; + embolus_M_N : N ; -- [XXXFO] :: piston; + embryo_M_N : N ; -- [GBXEK] :: embryo; + embryotomia_F_N : N ; -- [EBHFP] :: cutting up fetus (in womb); + embryulcia_F_N : N ; -- [EBHFP] :: extraction of fetus; (abortion); + embryulcus_M_N : N ; -- [EBHFP] :: forceps, instrument for extracting fetus; + emendatio_F_N : N ; -- [XXXCO] :: correction, removal of errors; amendment; criticism; improvement; amends; + emendico_V2 : V2 ; -- [XXXFO] :: beg, solicit, obtain by begging; + emendo_V : V ; -- [XXXBX] :: correct, emend, repair; improve, free from errors; + ementior_V : V ; -- [XXXDX] :: lie, feign, falsify, invent; + emercor_V : V ; -- [XXXCO] :: bribe; win (over) by bribing; win/buy up/procure favors by bribes; + emereo_V : V ; -- [XXXBO] :: earn, obtain by service, merit, deserve; emerge; complete/serve out one's time; + emereor_V : V ; -- [XXXBO] :: earn, obtain by service, merit, deserve; emerge; complete/serve out one's time; + emergo_V2 : V2 ; -- [XXXDX] :: rise up out of the water, emerge; escape; appear; arrive; + emerita_F_N : N ; -- [XXXEE] :: retired woman; + emeritum_N_N : N ; -- [XXXFO] :: pension; pension given to discharged soldiers; veteran's reward; + emeritus_A : A ; -- [XXXCS] :: past service, worn/burnt out, unfit; veteran; that has finished work; deserving; + emeritus_M_N : N ; -- [XXXES] :: discharged veteran, soldier who has completed his service, exempt; retired man; + emetior_V : V ; -- [XXXDX] :: measure out; pass through; + emico_V : V ; -- [XXXBO] :: |appear suddenly/quickly; make sudden movement up/out; give a jump; stand out; + emigro_V : V ; -- [XXXDX] :: move out; depart; + eminens_A : A ; -- [XXXBO] :: eminent/distinguished/notable; lofty/towering; prominent/projecting; foreground; + eminenter_Adv : Adv ; -- [DXXES] :: highly; eminently; of higher/noble birth; + eminentia_F_N : N ; -- [FEXEE] :: |eminence, excellence, standing out; title of a cardinal; + eminentissimus_A : A ; -- [XLXEO] :: most eminent; [~ vir, abb. E.V. => honorific title of praetorian perfects]; + emineo_V : V ; -- [XXXBX] :: stand out; be prominent/preeminent, excel; project; + eminulus_A : A ; -- [XXXES] :: slightly projecting (eg. teeth); + eminus_Adv : Adv ; -- [XXXDX] :: at/from a distance/long range/afar; beyond sword reach, a spear's throw off; + emiror_V : V ; -- [XXXFO] :: wonder greatly at; + emissarium_N_N : N ; -- [GXXEK] :: exhaust pipe; + emissarius_M_N : N ; -- [XXXEO] :: emissary. agent, person sent on particular mission; side-shoot left (vine); + emissicius_A : A ; -- [XXXEO] :: sent out as emissary or spy; + emissio_F_N : N ; -- [FEXEE] :: |making religious profession; sending out; letting go; [in ~ => in exile]; + emissorium_N_N : N ; -- [GTXEK] :: emitter; + emissorius_A : A ; -- [GTXEK] :: emitting; + emistrum_N_N : N ; -- [GTXEK] :: emitter; + emitto_V2 : V2 ; -- [XXXBX] :: hurl; let go; utter; send out; drive; force; cast; discharge; expel; publish; + emo_V : V ; -- [XXXDX] :: buy; gain, acquire, obtain; + emo_V2 : V2 ; -- [XXXBX] :: buy; gain, acquire, obtain; + emoderor_V : V ; -- [XXXFO] :: soothe, restrain; (passion); + emodulor_V : V ; -- [XPXFO] :: set (poetry) to a certain rhythm; + emolior_V : V ; -- [XXXDO] :: achieve, carry through (hard task); remove w/effort; force/heave out/up; + emollio_V2 : V2 ; -- [XXXDX] :: soften; enervate, mellow; + emolumentum_N_N : N ; -- [XXXDX] :: advantage, benefit; + emoneo_V2 : V2 ; -- [XXXFO] :: exhort; admonish earnestly; warn (Ecc); + emorior_V : V ; -- [XXXDX] :: die, die off, perish; die out; decease, pass away; + emortualis_A : A ; -- [XXXFO] :: pertaining to death; [dies ~ => day of one's death; campana ~ => death knell]; + emoveo_V : V ; -- [XXXDX] :: move away, remove, dislodge; + empathia_F_N : N ; -- [GXXEK] :: empathy; emphasis_1_N : N ; -- [XGXES] :: emphasis; stress; - emphasis_2_N : N ; - emphatice_Adv : Adv ; - emphaticus_A : A ; + emphasis_2_N : N ; -- [XGXES] :: emphasis; stress; + emphatice_Adv : Adv ; -- [GXXEK] :: emphatically; bombastically; + emphaticus_A : A ; -- [FXXEE] :: emphatic; grandiloquent; 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 ; + emphyteusis_2_N : N ; -- [DLXES] :: emphyteusis (permanent land tenure for farming/rent); E:lease on church goods; + emphyteuta_F_N : N ; -- [EEXFE] :: lessee; (of church goods); + emphyteuta_M_N : N ; -- [ELXES] :: permanent land tenant; lessee in tenure of emphytensis; + emphyteuticus_A : A ; -- [DLXFS] :: pertaining to emphyteusis (tenure for farming/rent or lease on church goods); emphyteutis_1_N : N ; -- [ELXES] :: permanent land tenure; - emphyteutis_2_N : N ; - empiricus_A : A ; - empiricus_M_N : N ; - empirismus_M_N : N ; - emplastra_F_N : N ; - emplastro_V2 : V2 ; - emplastrum_N_N : N ; - emporeticus_A : A ; - emporium_N_N : N ; - empticius_A : A ; - emptio_F_N : N ; - emptor_M_N : N ; - empyreus_A : A ; - empyrius_A : A ; - emulsio_F_N : N ; - emuncte_Adv : Adv ; - emunctio_F_N : N ; - emunctorium_N_N : N ; - emundatio_F_N : N ; - emundo_V2 : V2 ; - emungo_V2 : V2 ; - emunio_V2 : V2 ; - en_Interj : Interj ; - enarmonicon_N_N : N ; - enarmonicus_A : A ; - enarmonion_N_N : N ; - enarmonius_A : A ; - enarrabilis_A : A ; - enarratio_F_N : N ; - enarro_V : V ; - enascor_V : V ; - enato_V : V ; - enavigo_V : V ; - encaenio_V : V ; - encaenium_Adv : Adv ; - encaenium_N_N : N ; - encephalitis_F_N : N ; - encephalopathia_F_N : N ; - enchiridion_N_N : N ; - encolpismus_M_N : N ; - encolpium_N_N : N ; - encomboma_N_N : N ; - encyclicus_A : A ; - encyclopaedia_F_N : N ; - endivia_F_N : N ; - endromis_F_N : N ; - eneco_V2 : V2 ; - enema_N_N : N ; - energia_F_N : N ; - energumenus_A : A ; - enervis_A : A ; - enerviter_Adv : Adv ; - enervo_V2 : V2 ; - enervus_A : A ; - enharmonicon_N_N : N ; - enharmonicos_M_N : N ; - enharmonicus_A : A ; - enharmonios_M_N : N ; - enharmonius_A : A ; - enhydris_F_N : N ; - enico_V2 : V2 ; - enigma_N_N : N ; - enim_Conj : Conj ; - enimvero_Conj : Conj ; - eniteo_V : V ; - enitesco_V2 : V2 ; - enitor_V : V ; - enixe_Adv : Adv ; - eno_V : V ; - enodate_Adv : Adv ; - enodatio_F_N : N ; - enodis_A : A ; - enodo_V2 : V2 ; - enormis_A : A ; - enormiter_Adv : Adv ; - ens_N_N : N ; - ensicula_M_N : N ; - ensifer_A : A ; - ensiger_A : A ; - ensis_M_N : N ; - entheca_F_N : N ; - enthusiasmus_M_N : N ; - enthusiasticus_A : A ; - enthymema_N_N : N ; - entitas_F_N : N ; - entitativus_A : A ; - entomologia_F_N : N ; - entomologus_M_N : N ; - enubilo_V2 : V2 ; - enubo_V2 : V2 ; - enucleatio_F_N : N ; - enucleatus_A : A ; - enucleo_V2 : V2 ; - enumeratio_F_N : N ; - enumero_V : V ; - enuntiabilis_A : A ; - enuntiatio_F_N : N ; - enuntio_V : V ; - enuntio_V2 : V2 ; - enutrio_V2 : V2 ; - enzymum_N_N : N ; - eo_Adv : Adv ; - eo_1_V : V ; - eo_2_V : V ; - eodem_Adv : Adv ; - eparchia_F_N : N ; - epastus_A : A ; - ephebeum_N_N : N ; - ephebia_F_N : N ; - ephebiceus_A : A ; - ephebus_M_N : N ; - ephemeris_F_N : N ; - ephi_N : N ; - ephippiatus_A : A ; - ephippium_N_N : N ; - ephod_N : N ; - ephoebias_M_N : N ; - ephoebus_M_N : N ; - ephorus_M_N : N ; - ephphatha_V2 : V2 ; - ephpheta_V2 : V2 ; - epibaticus_A : A ; - epichirema_N_N : N ; - epicinium_N_N : N ; - epiclesis_F_N : N ; - epicopus_A : A ; - epicrocus_A : A ; - epicus_A : A ; - epicyclus_M_N : N ; - epidemia_F_N : N ; - epidicticus_A : A ; - epidipnis_F_N : N ; - epigonation_N_N : N ; + emphyteutis_2_N : N ; -- [ELXES] :: permanent land tenure; + empiricus_A : A ; -- [GXXEK] :: empirical; + empiricus_M_N : N ; -- [XXXEC] :: unscientific physician, empiric; + empirismus_M_N : N ; -- [GXXEK] :: empiricism; + emplastra_F_N : N ; -- [XBXDO] :: plaster/bandage; piece of bark used in budding, "shield"/"scutcheon"; + emplastro_V2 : V2 ; -- [XAXFO] :: bud (trees); + emplastrum_N_N : N ; -- [XBXCO] :: plaster/bandage; piece of bark used in budding, "shield"/"scutcheon"; + emporeticus_A : A ; -- [GXXEK] :: wrapping; enclosing; + emporium_N_N : N ; -- [XXXDX] :: center/place of trade, market town; market, mart; + empticius_A : A ; -- [XXXDO] :: purchased, bought, obtained by purchase; + emptio_F_N : N ; -- [XXXCO] :: purchase/acquisition, thing bought; deed of purchase; act of buying/purchasing; + emptor_M_N : N ; -- [XXXDX] :: buyer, purchaser; + empyreus_A : A ; -- [DXXFS] :: fiery; + empyrius_A : A ; -- [DXXFS] :: fiery; + emulsio_F_N : N ; -- [GXXEK] :: emulsion; + emuncte_Adv : Adv ; -- [GXXEK] :: subtly; finely; + emunctio_F_N : N ; -- [XXXFO] :: wiping of the nose; + emunctorium_N_N : N ; -- [XXXEE] :: snuffer (for trimming candles and lamps); + emundatio_F_N : N ; -- [XXXES] :: cleansing, cleaning; + emundo_V2 : V2 ; -- [XXXCO] :: clean thoroughly, free of dirt/impurity; make quite clean (L+S); cleanse/purify; + emungo_V2 : V2 ; -- [XXXDX] :: wipe the nose; trick, swindle; + emunio_V2 : V2 ; -- [XXXDX] :: fortify; make roads through; + en_Interj : Interj ; -- [XXXBX] :: behold! see! lo! here! hey! look at this!; + enarmonicon_N_N : N ; -- [DDHES] :: enharmonic; (kind of melody in Greek music); + enarmonicus_A : A ; -- [DDHES] :: enharmonic; (of kind of melody in Greek music); + enarmonion_N_N : N ; -- [DDHES] :: enharmonic; (kind of melody in Greek music); + enarmonius_A : A ; -- [DDHES] :: enharmonic; (of kind of melody in Greek music); + enarrabilis_A : A ; -- [XXXDX] :: that may be described or explained; + enarratio_F_N : N ; -- [XXXFS] :: |detailed-exposition; reckoning; G:scanning; + enarro_V : V ; -- [XXXDX] :: describe; explain/relate in detail; + enascor_V : V ; -- [XXXCO] :: sprout/spring forth, arise/be born out of something by natural growth; (day); + enato_V : V ; -- [XXXDX] :: escape by swimming; + enavigo_V : V ; -- [XWXDO] :: sail forth/away, put out to sea; sail clear (of obstacles) sail across; swim; + encaenio_V : V ; -- [FEXEE] :: consecrate; put on something new; + encaenium_Adv : Adv ; -- [FXXFY] :: by mistake; + encaenium_N_N : N ; -- [FEXEF] :: consecration; dedication; festival; + encephalitis_F_N : N ; -- [HBXEK] :: encephalitis; + encephalopathia_F_N : N ; -- [HBXEK] :: encephalopathy; disease of the brain in general; + enchiridion_N_N : N ; -- [FXXEE] :: manual; handbook; + encolpismus_M_N : N ; -- [EBXFP] :: vaginal douche; clyster, enema; + encolpium_N_N : N ; -- [FEXFE] :: medal (worn on neck); + encomboma_N_N : N ; -- [FXXEK] :: apron; + encyclicus_A : A ; -- [FEXEE] :: general/universal; circular; [~ epistula => encyclical letter/Papal doctrine]; + encyclopaedia_F_N : N ; -- [GXXEK] :: encyclopedia; + endivia_F_N : N ; -- [GXXEK] :: endive; + endromis_F_N : N ; -- [XXXEC] :: rough cloak worn after exercise; + eneco_V2 : V2 ; -- [XXXCO] :: kill/slay; deprive of life; kill off; exhaust/wear out, plague/torture to death; + enema_N_N : N ; -- [XBXEP] :: enema, clyster; injection; + energia_F_N : N ; -- [FXXEE] :: energy; efficiency; + energumenus_A : A ; -- [FEXEE] :: possessed by a devil; + enervis_A : A ; -- [XXXCO] :: powerless, weak; nerveless, feeble, languid; limp/slack/not taut (objects); + enerviter_Adv : Adv ; -- [XXXEE] :: weakly, feebly; limply, languidly; + enervo_V2 : V2 ; -- [XXXCO] :: weaken, enervate; make effeminate; deprive of vigor; cut/remove sinews from; + enervus_A : A ; -- [XXXEO] :: powerless, weak; nerveless, feeble, languid; limp/slack/not taut (objects); + enharmonicon_N_N : N ; -- [DDHES] :: enharmonic; (kind of melody in Greek music); + enharmonicos_M_N : N ; -- [FDHFZ] :: enharmonic; (of kind of melody in Greek music); + enharmonicus_A : A ; -- [DDHES] :: enharmonic; (of kind of melody in Greek music); + enharmonios_M_N : N ; -- [FDHFZ] :: enharmonic; (of kind of melody in Greek music); + enharmonius_A : A ; -- [DDHES] :: enharmonic; (of kind of melody in Greek music); + enhydris_F_N : N ; -- [DAXNS] :: water-snake (Pliny); + enico_V2 : V2 ; -- [XXXCO] :: kill/slay; deprive of life; kill off; exhaust/wear out, plague/torture to death; + enigma_N_N : N ; -- [FXXCE] :: puzzle, enigma, riddle, obscure expression/saying; + enim_Conj : Conj ; -- [XXXAX] :: namely (postpos.); indeed; in fact; for; I mean, for instance, that is to say; + enimvero_Conj : Conj ; -- [XXXBO] :: to be sure, certainly; well, upon by word; but, on the other hand; what is more; + eniteo_V : V ; -- [XXXDX] :: shine forth/out; be outstanding/conspicuous; + enitesco_V2 : V2 ; -- [XXXDX] :: become bright, gleam; stand out; + enitor_V : V ; -- [XXXDX] :: bring forth, bear, give birth to; struggle upwards, mount, climb, strive; + enixe_Adv : Adv ; -- [XXXCO] :: earnestly, assiduously, with strenuous efforts; + eno_V : V ; -- [XXXDX] :: swim out; + enodate_Adv : Adv ; -- [XXXFS] :: clearly; plainly; + enodatio_F_N : N ; -- [XXXEC] :: untying; explanation; + enodis_A : A ; -- [XXXDX] :: without knots; smooth; + enodo_V2 : V2 ; -- [FXXDE] :: make clear; + enormis_A : A ; -- [XXXCO] :: irregular; ill-fitting, shapeless; immense, huge, enormous; unusually large; + enormiter_Adv : Adv ; -- [XXXEO] :: irregularly; unsymmetrically; enormously (Ecc); immoderately; unusually; + ens_N_N : N ; -- [FEXDF] :: being; something having esse/existence; (basic concept of St. Thomas Aquinas); + ensicula_M_N : N ; -- [GXXEK] :: opener; [ensiculus chartorum => letter opener); + ensifer_A : A ; -- [XXXDV] :: sword-bearing; + ensiger_A : A ; -- [XXXDV] :: sword-bearing; + ensis_M_N : N ; -- [XXXBX] :: sword; + entheca_F_N : N ; -- [XXXES] :: hoard; store; magazine; + enthusiasmus_M_N : N ; -- [GXXEK] :: enthusiasm; + enthusiasticus_A : A ; -- [GXXEK] :: enthusiastic; + enthymema_N_N : N ; -- [XGXEC] :: thought, line of thought, argument; kind of syllogism; + entitas_F_N : N ; -- [FXXFM] :: |entity; existence; + entitativus_A : A ; -- [FEXEE] :: of nature/character of a being; + entomologia_F_N : N ; -- [GSXEK] :: entomology; + entomologus_M_N : N ; -- [GSXEK] :: entomologist; + enubilo_V2 : V2 ; -- [FXXEE] :: make clear; + enubo_V2 : V2 ; -- [XXXDX] :: marry out of ones rank/outside one's community (women); marry and leave home; + enucleatio_F_N : N ; -- [FXXFM] :: elucidation; + enucleatus_A : A ; -- [XXXEC] :: straightforward, simple, clear, plain; + enucleo_V2 : V2 ; -- [XXXEC] :: take out the kernel/nut, shell; explain in detail; + enumeratio_F_N : N ; -- [XXXCO] :: enumeration, act of listing; recapitulation/summing up; argument by elimination; + enumero_V : V ; -- [XXXDX] :: count up, pay out; specify, enumerate; + enuntiabilis_A : A ; -- [FXXFM] :: utterable; + enuntiatio_F_N : N ; -- [XXXEZ] :: proposition (Collins); + enuntio_V : V ; -- [XXXDX] :: reveal; say; disclose; report; speak out, express, declare; + enuntio_V2 : V2 ; -- [XXXCO] :: reveal/divulge/make known/disclose; speak out, express/state/assert; articulate; + enutrio_V2 : V2 ; -- [XXXCO] :: nurture, rear (offspring); + enzymum_N_N : N ; -- [GSXEK] :: enzyme; + eo_1_V : V ; -- [XXXAX] :: go, walk; march, advance; pass; flow; pass (time); ride; sail; + eo_2_V : V ; -- [XXXAX] :: go, walk; march, advance; pass; flow; pass (time); ride; sail; + eo_Adv : Adv ; -- [XXXBO] :: |there, to/toward that place; in that direction; to that object/point/stage; + eo_V : V ; -- [FXXFZ] :: go, walk; march, advance; pass; flow; pass (time); ride; be in the middle; + eodem_Adv : Adv ; -- [XXXDX] :: to the same place/purpose; + eparchia_F_N : N ; -- [EEHFE] :: eparchy, diocese (in Eastern Church); + epastus_A : A ; -- [XXXEC] :: eaten up; + ephebeum_N_N : N ; -- [XXXFO] :: hall in gymnasium for the use of adolescents/teens; school (Ecc); college; + ephebia_F_N : N ; -- [EGXEE] :: school for youth; + ephebiceus_A : A ; -- [XXXFO] :: suitable for adolescent/teen boy(s); + ephebus_M_N : N ; -- [XXHCO] :: boy (Greek) at age of puberty; youth; adolescent (age 18-20 by Athenian law); + ephemeris_F_N : N ; -- [XXXEC] :: journal, diary; newspaper (Cal); + ephi_N : N ; -- [EEQFE] :: ephah, Jewish dry measure; (ten gomor, over twenty bushels); + ephippiatus_A : A ; -- [XXXDX] :: riding with a saddle; + ephippium_N_N : N ; -- [XXXDX] :: pad saddle, horse blanket (to ride on); + ephod_N : N ; -- [DEQES] :: part of clothing of a Jewish priest; + ephoebias_M_N : N ; -- [EXXFW] :: body of youth; group of adolescent boys; + ephoebus_M_N : N ; -- [EXXFW] :: boy (Greek) at age of puberty; youth; adolescent (age 18-20 by Athenian law); + ephorus_M_N : N ; -- [XLHEC] :: ephor, a Spartan magistrate; + ephphatha_V2 : V2 ; -- [EEQFE] :: be thou opened; (Mark 7:34); (Aramaic); + ephpheta_V2 : V2 ; -- [EEQFE] :: be thou opened; (Mark 7:34); (Aramaic); + epibaticus_A : A ; -- [GXXEK] :: of travelers; + epichirema_N_N : N ; -- [XGXFS] :: type of argument; + epicinium_N_N : N ; -- [EXXFW] :: aftermath, afterwards; (victory); + epiclesis_F_N : N ; -- [EXXFE] :: invocation; calling down; summoning; + epicopus_A : A ; -- [XWXEC] :: provided with oars; + epicrocus_A : A ; -- [XXXEC] :: transparent, fine; + epicus_A : A ; -- [XXXEC] :: epic; + epicyclus_M_N : N ; -- [EXXES] :: epicycle; small circle centered on perimeter of larger circle; + epidemia_F_N : N ; -- [GXXEK] :: epidemic; + epidicticus_A : A ; -- [XXXEC] :: for display; + epidipnis_F_N : N ; -- [XXXEC] :: dessert; + epigonation_N_N : N ; -- [FEHFE] :: ornament on bishop's cincture in Greek rite; 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 ; - epigraphicus_A : A ; - epigraphista_M_N : N ; - epilempsia_F_N : N ; - epilempsis_F_N : N ; - epilempticus_A : A ; - epilepsia_F_N : N ; - epilepticus_A : A ; - epilogus_M_N : N ; - epimanikon_N_N : N ; - epimedion_N_N : N ; - epimenium_N_N : N ; - epinicion_N_N : N ; - epinicium_N_N : N ; - epinikion_N_N : N ; - epiphonus_M_N : N ; - epiphora_F_N : N ; - epiredium_N_N : N ; - episcopalis_A : A ; - episcopaliter_Adv : Adv ; - episcopatus_M_N : N ; - episcopium_N_N : N ; - episcopus_M_N : N ; - episema_N_N : N ; - epistola_F_N : N ; - epistolaris_A : A ; - epistolella_F_N : N ; - epistolium_N_N : N ; - epistula_F_N : N ; - epistularis_A : A ; - epistylium_N_N : N ; - epitaphium_N_N : N ; - epithalamium_N_N : N ; - epitheca_F_N : N ; - epitheton_N_N : N ; - epitoma_F_N : N ; - epitome_F_N : N ; - epitomo_V : V ; - epitonium_N_N : N ; - epitrachelion_N_N : N ; - epitritos_A : A ; - epitritos_M_N : N ; - epitritus_A : A ; - epitropous_M_N : N ; - epizootia_F_N : N ; - epogdoos_A : A ; - epogdous_A : A ; - epops_M_N : N ; - epos_N_N : N ; - epoto_V : V ; - epotus_A : A ; - eppheta_V : V ; - eptheca_F_N : N ; - epula_F_N : N ; - epulor_V : V ; - epulum_N_N : N ; - eq_N : N ; - equa_F_N : N ; - eques_M_N : N ; - equester_A : A ; - equester_M_N : N ; - equestr_A : A ; - equestre_N_N : N ; - equidem_Adv : Adv ; - equile_N_N : N ; - equinus_A : A ; - equipollenter_Adv : Adv ; - equiso_M_N : N ; - equitatio_F_N : N ; - equitatus_M_N : N ; - equito_V : V ; - equivalenter_Adv : Adv ; - equuleus_M_N : N ; - equus_M_N : N ; - era_F_N : N ; - eradico_V : V ; - erado_V2 : V2 ; - ercisco_V2 : V2 ; - erectio_F_N : N ; - erectus_A : A ; - eremita_M_N : N ; - eremiticus_A : A ; - eremitis_A : A ; - eremus_A : A ; - eremus_M_N : N ; - ereptio_F_N : N ; - erga_Acc_Prep : Prep ; - ergastilus_M_N : N ; - ergastulum_N_N : N ; - ergo_Adv : Adv ; - erica_F_N : N ; - ericius_M_N : N ; - erigo_V2 : V2 ; - erilis_A : A ; - erinaceus_M_N : N ; - erinacius_M_N : N ; - eripio_V2 : V2 ; - eris_M_N : N ; - erithacus_M_N : N ; - ermellineus_A : A ; - ero_M_N : N ; - erodio_F_N : N ; - erogatio_F_N : N ; - erogo_V : V ; - eroticus_A : A ; - errabundus_A : A ; - erraticus_A : A ; - erratum_N_N : N ; - erraum_N_N : N ; - erro_M_N : N ; - erro_V : V ; - erronee_Adv : Adv ; - erroneus_A : A ; - error_M_N : N ; - erubesco_V2 : V2 ; - eruca_F_N : N ; - eructo_V : V ; - eructuo_V : V ; - erudero_V : V ; - erudio_V2 : V2 ; - eruditio_F_N : N ; - eruditus_A : A ; - erugo_V2 : V2 ; - erumpnus_A : A ; - erumpo_V2 : V2 ; - erungion_N_N : N ; - erungium_N_N : N ; - eruo_V2 : V2 ; - eruptio_F_N : N ; - erus_M_N : N ; - erutor_M_N : N ; - ervilia_F_N : N ; - ervum_N_N : N ; - erynge_F_N : N ; - eryngion_N_N : N ; - eryngium_N_N : N ; - erysimon_N_N : N ; - erysimum_N_N : N ; - erysisceptrum_N_N : N ; - erythinus_M_N : N ; - esca_F_N : N ; - escarius_A : A ; - escendo_V2 : V2 ; - eschaeta_F_N : N ; - eschatologia_F_N : N ; - eschatologicus_A : A ; - esculentus_A : A ; - esecutio_F_N : N ; - esicia_F_N : N ; - esotericismus_M_N : N ; - esotericus_A : A ; - esperantista_M_N : N ; - essedarius_A : A ; - essedarius_M_N : N ; - essedum_N_N : N ; - essendio_V2 : V2 ; - essendum_N_N : N ; - essentia_F_N : N ; - essential_N_N : N ; - essentialis_A : A ; - essentialiter_Adv : Adv ; - essentificatio_F_N : N ; - essentifico_V2 : V2 ; - essentio_V2 : V2 ; - essoniator_M_N : N ; - essonio_V2 : V2 ; - essonium_N_N : N ; - essuriens_A : A ; + epigramma_2_N : N ; -- [XPXDO] :: inscription/epitaph; short poem/epigram; mark tattooed on criminal; + epigramma_N_N : N ; -- [XXXCO] :: inscription/epitaph; short poem/epigram; mark tattooed on criminal; + epigrammatum_N_N : N ; -- [XXXFO] :: inscription/epitaph; short poem/epigram; mark tattooed on criminal; (DAT/ABL P); + epigraphia_F_N : N ; -- [GXXEK] :: epigraphy; + epigraphicus_A : A ; -- [GXXEK] :: epigraphic; + epigraphista_M_N : N ; -- [GXXEK] :: epigraphist; + epilempsia_F_N : N ; -- [EBXEP] :: epilepsy; + epilempsis_F_N : N ; -- [EBXEP] :: epilepsy; + epilempticus_A : A ; -- [EBXEP] :: epileptic, suffering from epilepsy; of/pertaining to epilepsy; + epilepsia_F_N : N ; -- [EBXEP] :: epilepsy; + epilepticus_A : A ; -- [EBXEP] :: epileptic, suffering from epilepsy; of/pertaining to epilepsy; + epilogus_M_N : N ; -- [XXXEC] :: conclusion, peroration, epilogue; + epimanikon_N_N : N ; -- [EEHFE] :: maniple in Greek rite; a Eucharistic vestment; + epimedion_N_N : N ; -- [GXXEK] :: staircase-rail; + epimenium_N_N : N ; -- [XXXEC] :: month's rations (pl.); + epinicion_N_N : N ; -- [XXXFO] :: song of victory; + epinicium_N_N : N ; -- [XXXFO] :: song of victory; + epinikion_N_N : N ; -- [EXXFW] :: song of victory; + epiphonus_M_N : N ; -- [EDXFE] :: second of two musical notes and smaller than first; + epiphora_F_N : N ; -- [XBXES] :: flowing, afflux; running down/defluxion of humors; repetition; + epiredium_N_N : N ; -- [XXXEC] :: strap by which a horse was fastened to a vehicle; a trace; + episcopalis_A : A ; -- [EEXDX] :: episcopal, of a bishop; + episcopaliter_Adv : Adv ; -- [EEXEE] :: in episcopal fashion; + episcopatus_M_N : N ; -- [EEXCE] :: bishopric; episcopate; bishop's office/dignity/see; overseer; post of authority; + episcopium_N_N : N ; -- [EEXDE] :: bishop's see; bishop's residence; + episcopus_M_N : N ; -- [EEXAE] :: bishop; patriarch; [~ castrensis => military bishop; ~ chori => choir director]; + episema_N_N : N ; -- [FDXFE] :: tail on note in music to show prolongation; + epistola_F_N : N ; -- [XXXCO] :: letter/dispatch/written communication; imperial rescript; epistle; preface; + epistolaris_A : A ; -- [XXXEO] :: of/concerned with letter/letters; epistulary; + epistolella_F_N : N ; -- [EEXEE] :: short epistle; + epistolium_N_N : N ; -- [XXXEO] :: note, short letter; + epistula_F_N : N ; -- [XXXCO] :: letter/dispatch/written communication; imperial rescript; epistle; preface; + epistularis_A : A ; -- [XXXEO] :: of/concerned with letter/letters; epistulary; + epistylium_N_N : N ; -- [XTXDO] :: architrave, crossbeam on/between columns; architrave+frieze+cornice; capital; + epitaphium_N_N : N ; -- [XXXEC] :: funeral oration; + epithalamium_N_N : N ; -- [XXXEC] :: nuptial song; + epitheca_F_N : N ; -- [XXXEC] :: addition; + epitheton_N_N : N ; -- [XGXES] :: epithet; adjective; + epitoma_F_N : N ; -- [XXXDX] :: epitome, abridgement; + epitome_F_N : N ; -- [XXXDX] :: epitome, abridgement; + epitomo_V : V ; -- [DXXES] :: abridge, epitomize; + epitonium_N_N : N ; -- [FXXEK] :: faucet; + epitrachelion_N_N : N ; -- [EEXFE] :: stole; + epitritos_A : A ; -- [XPXEO] :: four-thirds, having ratio 4:3; + epitritos_M_N : N ; -- [XPXEO] :: epitrite, metrical foot with one short and three longs; + epitritus_A : A ; -- [FPXEZ] :: four-thirds, having ratio 4:3; + epitropous_M_N : N ; -- [XSXES] :: factor; steward; + epizootia_F_N : N ; -- [GXXEK] :: epizootic disease, one temporarily prevalent among animals; (cattle plague); + epogdoos_A : A ; -- [DDXES] :: nine-eighths; (music); whole and eighth; + epogdous_A : A ; -- [DDXES] :: nine-eighths; (music); whole and eighth; + epops_M_N : N ; -- [XXXEC] :: hoopoe, bird of family Upupidae; + epos_N_N : N ; -- [XXXDX] :: epic poem (only in NOM and ACC S); + epoto_V : V ; -- [XXXCO] :: drink down/up, quaff, drain; absorb; swallow/suck up; empty (vessel); engulf; + epotus_A : A ; -- [XXXDX] :: drunk up/down, drained; exhausted; absorbed, swallowed up; + eppheta_V : V ; -- [EEQFW] :: be thou opened (Mark 7:34); (Aramaic); + eptheca_F_N : N ; -- [FXXEN] :: addition; + epula_F_N : N ; -- [XXXBX] :: courses (pl.), food, dishes of food; dinner; banquet; feast for the eyes; + epulor_V : V ; -- [XXXDX] :: dine sumptuously, feast; + epulum_N_N : N ; -- [XXXDX] :: feast; solemn or public banquet; entertainment; + eq_N : N ; -- [XXXDX] :: knight (eques); abb. eq.; member of the equestrian order; + equa_F_N : N ; -- [XXXDX] :: mare; + eques_M_N : N ; -- [XXXBO] :: |knight (abb. eq.); (wealthy enough to own his own horse); horse (Bee); + equester_A : A ; -- [XXXBO] :: equestrian, mounted on horse; of/belonging to/consisting of horseman/cavalry; + equester_M_N : N ; -- [XXXDO] :: knight; one of equestrian order/class (in Rome > 67 BC w/400_000 sesterces); + equestr_A : A ; -- [XXXDO] :: equestrian, mounted on horse; of/belonging to/consisting of horseman/cavalry; + equestre_N_N : N ; -- [XXXDO] :: seats (pl.) in theater reserved for members of equestrian order/class; + equidem_Adv : Adv ; -- [XXXBX] :: truly, indeed; for my part; + equile_N_N : N ; -- [XAXES] :: horse-stable; + equinus_A : A ; -- [XXXDX] :: concerning horses; + equipollenter_Adv : Adv ; -- [FXXEE] :: equivalently; + equiso_M_N : N ; -- [XXXDO] :: groom, stable-boy; person in charge of horses; + equitatio_F_N : N ; -- [XXXEO] :: horsemanship, equitation, riding; + equitatus_M_N : N ; -- [XXXEO] :: |horsemanship, equitation, riding; creature in heat (mare) (L+S); + equito_V : V ; -- [XXXDX] :: ride (horseback); + equivalenter_Adv : Adv ; -- [FXXEE] :: equivalently; + equuleus_M_N : N ; -- [XXXCO] :: little horse, colt; rack, instrument of torture; + equus_M_N : N ; -- [XXXAX] :: horse; steed; + era_F_N : N ; -- [XXXDX] :: mistress; lady of the house; woman in relation to her servants; Lady; + eradico_V : V ; -- [XXXDX] :: root out,eradicate; + erado_V2 : V2 ; -- [XXXCO] :: scrape away/clean/smooth, pare; erase/delete; erase/strike (name in disgrace); + ercisco_V2 : V2 ; -- [XLXEC] :: divide an inheritance; + erectio_F_N : N ; -- [XXXEO] :: erection, lifting p; act of placing in upright position; permit to travel; + erectus_A : A ; -- [XXXBO] :: upright, erect; perpendicular; confident/bold/assured; noble; attentive/alert; + eremita_M_N : N ; -- [DEXFS] :: hermit, eremite; anchorite; recluse; + eremiticus_A : A ; -- [FEXFF] :: hermit-like, pertaining to/living like hermit; solitary, secluded, reclusive; + eremitis_A : A ; -- [DEXFS] :: solitary, secluded, recluse; pertaining to/living like hermit; + eremus_A : A ; -- [DXXCS] :: waste, desert; + eremus_M_N : N ; -- [DXXCS] :: wilderness, wasteland, desert; + ereptio_F_N : N ; -- [XXXDS] :: seizure; forcible taking; + erga_Acc_Prep : Prep ; -- [XXXBX] :: towards, opposite (friendly); + ergastilus_M_N : N ; -- [XXXDX] :: jailer in a ergastulum/workhouse/penitentiary; + ergastulum_N_N : N ; -- [XXXDX] :: prison; prison on estate where refractory slaves worked in chains; workhouse; + ergo_Adv : Adv ; -- [XXXAX] :: therefore; well, then, now; + erica_F_N : N ; -- [GXXEK] :: heather; + ericius_M_N : N ; -- [XAXEO] :: hedgehog; beam thickly studded with iron spikes as a military barrier; + erigo_V2 : V2 ; -- [XXXBX] :: raise, erect, build; rouse, excite, stimulate; + erilis_A : A ; -- [XXXDX] :: of a master or mistress; + erinaceus_M_N : N ; -- [XAXEO] :: hedgehog; + erinacius_M_N : N ; -- [EAXEW] :: hedgehog (of genus Erinaceus); porcupine (of genus Hystrix) (Ecc); + eripio_V2 : V2 ; -- [XXXAX] :: snatch away, take by force; rescue; + eris_M_N : N ; -- [XAXFO] :: hedgehog; + erithacus_M_N : N ; -- [FXXEK] :: robin; + ermellineus_A : A ; -- [FXXFE] :: of ermine; + ero_M_N : N ; -- [XXXFS] :: kind of basket made with plaited reeds; hamper; (aero); + erodio_F_N : N ; -- [EAXFW] :: heron; (pure Latin - ardea); hamper; (aero); + erogatio_F_N : N ; -- [XXXDX] :: paying out, distribution; + erogo_V : V ; -- [XXXDX] :: pay out, expend; + eroticus_A : A ; -- [XXXEO] :: erotic; amatory, concerned with love; + errabundus_A : A ; -- [XXXDX] :: wandering; + erraticus_A : A ; -- [XXXDX] :: roving, erratic; wild; + erratum_N_N : N ; -- [XXXCO] :: error, mistake (in thought/action); moral error, lapse; + erraum_N_N : N ; -- [XXXDX] :: error, mistake; lapse; + erro_M_N : N ; -- [XXXDX] :: truant; vagabond, wanderer; + erro_V : V ; -- [XXXBX] :: wander, go astray; make a mistake, err; vacillate; + erronee_Adv : Adv ; -- [GXXEK] :: erroneously; + erroneus_A : A ; -- [XXXEO] :: wandering (planets); straying; vagrant; wrong, erroneous (Ecc); + error_M_N : N ; -- [XXXDX] :: wandering; error; winding, maze; uncertainty; deception; + erubesco_V2 : V2 ; -- [XXXBX] :: redden, blush, blush at; blush for shame, be ashamed of; + eruca_F_N : N ; -- [XXXEO] :: rocket (rocquette), cruciformous herb (Eruca sativa); (salad/aphrodisiac); + eructo_V : V ; -- [XXXDX] :: bring up noisily; discharge violently; + eructuo_V : V ; -- [FXXFM] :: gush forth; + erudero_V : V ; -- [XXXFS] :: clear from rubbish; + erudio_V2 : V2 ; -- [XXXBX] :: educate, teach, instruct; + eruditio_F_N : N ; -- [XGXCO] :: instruction/teaching/education; learning/erudition; taught knowledge; culture; + eruditus_A : A ; -- [XXXDX] :: learned, skilled; + erugo_V2 : V2 ; -- [XXXEO] :: disgorge noisily (food/drink); + erumpnus_A : A ; -- [FXXFM] :: distressful; + erumpo_V2 : V2 ; -- [XXXAO] :: |break out (of); burst/sally/spring/issue forth/out/on; sprout; erupt; + erungion_N_N : N ; -- [XAXNO] :: sea holly; genus of prickly plants; (Eryngium maritimum and allies); + erungium_N_N : N ; -- [XAXNO] :: sea holly; genus of prickly plants; (Eryngium maritimum and allies); + eruo_V2 : V2 ; -- [XXXDX] :: pluck/dig/root up, overthrow, destroy; elicit; + eruptio_F_N : N ; -- [XXXDX] :: sortie, rush, sally, sudden rush of troops from a position; + erus_M_N : N ; -- [XXXDX] :: master, owner; + erutor_M_N : N ; -- [FXXEE] :: rescuer; + ervilia_F_N : N ; -- [XAXES] :: kind of vetch; (Lathyrus sativus/cicera); bitter-vetch (L+S); kind of pulse; + ervum_N_N : N ; -- [XXXDO] :: kind of cultivated vetch; (Vicia/Ervum ervilia); its seeds; + erynge_F_N : N ; -- [XAXNO] :: sea holly; genus of prickly plants; (Eryngium maritimum and allies); + eryngion_N_N : N ; -- [XAXNO] :: sea holly; genus of prickly plants; (Eryngium maritimum and allies); + eryngium_N_N : N ; -- [XAXNO] :: sea holly; genus of prickly plants; (Eryngium maritimum and allies); + erysimon_N_N : N ; -- [XAXNO] :: plant; (prob.) species of hedge-mustard; (also irio); a grain (L+S); + erysimum_N_N : N ; -- [XAXNO] :: plant; (prob.) species of hedge-mustard; (also irio); a grain (L+S); + erysisceptrum_N_N : N ; -- [XXXES] :: low thorny scrub; + erythinus_M_N : N ; -- [DAXNS] :: red sea-mullet (Pliny); + esca_F_N : N ; -- [XXXBX] :: food, meat; a dish prepared for the table; victuals; bait (for fish/animals); + escarius_A : A ; -- [XXXEC] :: relating to food or bait; + escendo_V2 : V2 ; -- [XXXDX] :: ascend, go up, mount; + eschaeta_F_N : N ; -- [FLXFJ] :: escheat; property lapsed to lord(if owner dies without heir); + eschatologia_F_N : N ; -- [FSXFE] :: eschatology, study of final things; study of end of world; + eschatologicus_A : A ; -- [FSXFE] :: eschatological, pertaining to end (of world); + esculentus_A : A ; -- [XXXEC] :: edible, eatable, esculent; fit for food, fit to be eaten; + esecutio_F_N : N ; -- [XXXCS] :: performance, carrying out; enforcement (law), act to right wrong; discussion; + esicia_F_N : N ; -- [FAXFM] :: salmon; a fish; + esotericismus_M_N : N ; -- [FSXFE] :: theory of esotericism/esoterism; holding esoteric doctrines; + esotericus_A : A ; -- [GXXEK] :: esoteric; designed for/appropriate to an inner circle of privileged disciples; + esperantista_M_N : N ; -- [GGXEK] :: Esperantist, one versed in Esperanto (European-based artificial language); + essedarius_A : A ; -- [XXXDX] :: of or belonging to a war chariot; + essedarius_M_N : N ; -- [XXXDX] :: gladiator, soldier fighting from a chariot; + essedum_N_N : N ; -- [XXXDX] :: war chariot (two wheeled); light traveling carriage; + essendio_V2 : V2 ; -- [DEXEZ] :: make real; endow with essence; + essendum_N_N : N ; -- [EEXEE] :: being; (gerund of esse); [essendi/essendo => of/in being]; + essentia_F_N : N ; -- [XSXCO] :: essence, substance, being, actuality, essential thing; existing entity, whole; + essential_N_N : N ; -- [ESXEM] :: essential qualities (pl.); + essentialis_A : A ; -- [EXXCM] :: essential; + essentialiter_Adv : Adv ; -- [DXXES] :: essentially; + essentificatio_F_N : N ; -- [EEXEM] :: realization, making real; + essentifico_V2 : V2 ; -- [DEXEM] :: make real; endow with essence; + essentio_V2 : V2 ; -- [DEXEM] :: make real; endow with essence; + essoniator_M_N : N ; -- [FLXFJ] :: one who essoins, one who excuses court absence; + essonio_V2 : V2 ; -- [FLXFJ] :: essoin, excuse court absence; + essonium_N_N : N ; -- [FLXFJ] :: essoin, excuse for court absence; + essuriens_A : A ; -- [XXXDO] :: hungry; ravenous, starving; essuriens_F_N : N ; -- [XXXEE] :: hungry person; - essuriens_M_N : N ; - essurienter_Adv : Adv ; - estimatio_F_N : N ; - estimo_V : V ; - estoverium_N_N : N ; - estuans_A : A ; - estuanter_Adv : Adv ; - esuriens_A : A ; + essuriens_M_N : N ; -- [XXXEE] :: hungry person; + essurienter_Adv : Adv ; -- [XXXFO] :: hungrily, ravenously; + estimatio_F_N : N ; -- [FLXFM] :: valuation; + estimo_V : V ; -- [FLXFM] :: value; estimate; + estoverium_N_N : N ; -- [FLXFJ] :: estovers, necessities allowed (to tenant) by law (espec. of wood); + estuans_A : A ; -- [FXXEM] :: passionate?; + estuanter_Adv : Adv ; -- [FXXEM] :: passionately; + esuriens_A : A ; -- [XXXDO] :: hungry; ravenous, starving; esuriens_F_N : N ; -- [XXXEE] :: hungry person; - esuriens_M_N : N ; - esurienter_Adv : Adv ; - esuries_F_N : N ; - esurio_M_N : N ; - esurio_V2 : V2 ; - esuritio_F_N : N ; - esuritor_M_N : N ; - esus_M_N : N ; - et_Conj : Conj ; - etas_F_N : N ; - etc_N : N ; - etenim_Conj : Conj ; - eternus_A : A ; - etesia_M_N : N ; - etheca_F_N : N ; - ethica_F_N : N ; - ethice_F_N : N ; - ethicum_N_N : N ; - ethicus_A : A ; - ethnicus_A : A ; - ethnicus_M_N : N ; - ethnographia_F_N : N ; - ethnographicus_A : A ; - ethnologia_F_N : N ; - ethnologicus_A : A ; - ethnologus_M_N : N ; - ethologia_F_N : N ; - ethologicus_A : A ; - ethologus_M_N : N ; - etiam_Conj : Conj ; - etiamnum_Adv : Adv ; - etiamnunc_Adv : Adv ; - etiamsi_Conj : Conj ; - etiamtum_Conj : Conj ; - etsi_Conj : Conj ; - etymologia_F_N : N ; - eu_Interj : Interj ; - eucharis_A : A ; - eucharistia_F_N : N ; - eucharistial_N_N : N ; - eucharistialus_A : A ; - eucharisticon_N_N : N ; - eucharisticus_A : A ; - eucharistium_N_N : N ; - euchelaion_N_N : N ; - euchologion_N_N : N ; - eugae_Interj : Interj ; - euge_Interj : Interj ; - eugeneus_A : A ; - eugenicus_A : A ; - eugepae_Interj : Interj ; - euhans_A : A ; - euhoe_Interj : Interj ; - eukaristia_F_N : N ; - eulogia_F_N : N ; - eunuchus_M_N : N ; - euoeeuhoe_Interj : Interj ; - euphonia_F_N : N ; - euphonus_A : A ; - euphoria_F_N : N ; - euresilogus_M_N : N ; - euripus_M_N : N ; - eurisilogus_M_N : N ; - euro_M_N : N ; - euroaquilo_M_N : N ; - eurocrata_M_N : N ; - euronotus_M_N : N ; - euronummus_M_N : N ; - euronus_M_N : N ; - eurous_A : A ; - eurus_M_N : N ; - euthanasia_F_N : N ; - eutyches_A : A ; - euus_M_N : N ; - evacuo_V2 : V2 ; - evado_V2 : V2 ; - evagino_V2 : V2 ; - evagor_V : V ; - evalesco_V2 : V2 ; - evanesco_V : V ; - evangeliarum_N_N : N ; - evangelicus_A : A ; - evangelista_M_N : N ; - evangelistarium_N_N : N ; - evangelium_N_N : N ; - evangelizatio_F_N : N ; - evangelizator_M_N : N ; - evangelizo_V : V ; - evanidus_A : A ; - evanno_V2 : V2 ; - evans_A : A ; - evanuo_V : V ; - evaporatio_F_N : N ; - evasio_F_N : N ; - evasto_V : V ; - evectio_F_N : N ; - eveho_V2 : V2 ; - evello_V2 : V2 ; - evenio_V2 : V2 ; - evenit_V0 : V ; - eventilatus_A : A ; - eventilo_V2 : V2 ; - eventum_N_N : N ; - eventus_M_N : N ; - everbero_V : V ; - everriculum_N_N : N ; - everro_V2 : V2 ; - eversio_F_N : N ; - eversor_M_N : N ; - everto_V2 : V2 ; - evestigatus_A : A ; - evictio_F_N : N ; - evidens_A : A ; - evidenter_Adv : Adv ; - evidentia_F_N : N ; - evigilatio_F_N : N ; - evigilo_V : V ; - evilesco_V : V ; - evincio_V2 : V2 ; - evinco_V2 : V2 ; - eviratus_A : A ; - eviro_V : V ; - eviscero_V : V ; - evitabilis_A : A ; - evitandus_A : A ; - evito_V : V ; - evocatio_F_N : N ; - evocator_M_N : N ; - evocatus_M_N : N ; - evoco_V : V ; - evolo_V : V ; - evolutio_F_N : N ; - evolutivus_A : A ; - evolvo_V2 : V2 ; - evomo_V2 : V2 ; - evovae_N : N ; - evulgatio_F_N : N ; - evulgo_V : V ; - evulsio_F_N : N ; - ex_Abl_Prep : Prep ; - exacerbatio_F_N : N ; - exacerbesco_V : V ; - exacerbo_V2 : V2 ; - exactio_F_N : N ; - exactitudo_F_N : N ; - exactor_M_N : N ; - exactus_A : A ; - exacuo_V2 : V2 ; - exacutio_F_N : N ; - exacutus_A : A ; - exadversum_Adv : Adv ; - exadversus_Adv : Adv ; - exaedifico_V : V ; - exaequo_V : V ; - exaestuo_V : V ; - exaggero_V : V ; - exagito_V : V ; - exaltatio_F_N : N ; - exalto_V2 : V2 ; - examen_N_N : N ; - examinator_M_N : N ; - examinatus_A : A ; - examino_V : V ; - examussim_Adv : Adv ; - exanimalis_A : A ; - exanimis_A : A ; - exanimo_V : V ; - exanimus_A : A ; + esuriens_M_N : N ; -- [XXXEE] :: hungry person; + esurienter_Adv : Adv ; -- [XXXFO] :: hungrily, ravenously; + esuries_F_N : N ; -- [EXXES] :: hunger; + esurio_M_N : N ; -- [XXXEO] :: hungry man/person; + esurio_V2 : V2 ; -- [XXXDX] :: be hungry, hunger; want to eat, desire food; desire eagerly; + esuritio_F_N : N ; -- [XXXDO] :: hunger; state of hunger; hungering (L+S); + esuritor_M_N : N ; -- [XXXFO] :: hungry man/person; one suffering from hunger; + esus_M_N : N ; -- [XXXEO] :: eating, taking of food; + et_Conj : Conj ; -- [XXXAX] :: and, and even; also, even; (et ... et = both ... and); + etas_F_N : N ; -- [EXXAO] :: lifetime, age, generation; period; stage, period of life, time, era; + etc_N : N ; -- [GXXBZ] :: etcetra, and so forth; abb. etc.; (in use in modern Latin texts if not before); + etenim_Conj : Conj ; -- [XXXBX] :: and indeed, because, since, as a matter of fact (independent reason, emphasis); + eternus_A : A ; -- [EXXAO] :: eternal, everlasting, imperishable; perpetual; having no beginning/end; + etesia_M_N : N ; -- [XXXDX] :: etesian winds (pl.), NW winds blowing during dog days in Eastern Mediterranean; + etheca_F_N : N ; -- [FEXEE] :: portico (pl.); gallery; + ethica_F_N : N ; -- [XXXFE] :: ethics; moral philosophy; science of right and wrong; + ethice_F_N : N ; -- [XXXEO] :: ethics; moral philosophy; science of right and wrong; + ethicum_N_N : N ; -- [FXXEF] :: ethics (pl.); moral philosophy; science of right and wrong; + ethicus_A : A ; -- [XXXEO] :: ethical, of/belonging to ethics/morals; of character; psychological; + ethnicus_A : A ; -- [EEXES] :: heathen; pagan; + ethnicus_M_N : N ; -- [EEXES] :: heathen; pagan; + ethnographia_F_N : N ; -- [GXXEK] :: ethnography; + ethnographicus_A : A ; -- [GXXEK] :: ethnographic; + ethnologia_F_N : N ; -- [GXXEK] :: ethnology; + ethnologicus_A : A ; -- [GXXEK] :: ethnological; + ethnologus_M_N : N ; -- [GXXEK] :: ethnologist; + ethologia_F_N : N ; -- [XGXEO] :: characterization, delineation of character; character sketch; ethnology (Ecc); + ethologicus_A : A ; -- [GXXEE] :: ethnological, of ethnology; + ethologus_M_N : N ; -- [XDXEO] :: mimic, one who portrays character with gestures; + etiam_Conj : Conj ; -- [XXXAO] :: |now too, as yet, still, even now; yet again; likewise; (particle); (et-iam); + etiamnum_Adv : Adv ; -- [XXXDX] :: even now, still, yet; + etiamnunc_Adv : Adv ; -- [XXXDX] :: even now, still, yet; + etiamsi_Conj : Conj ; -- [XXXDX] :: even if, although; + etiamtum_Conj : Conj ; -- [XXXDX] :: even then; yet; + etsi_Conj : Conj ; -- [XXXBX] :: although, though, even if; albeit; I know that but; + etymologia_F_N : N ; -- [XGXEC] :: etymology; + eu_Interj : Interj ; -- [XXXDX] :: well done! bravo!; splendid! (sometimes ironic); + eucharis_A : A ; -- [EXXEP] :: gracious; + eucharistia_F_N : N ; -- [EEXDP] :: Eucharist/Communion; (elements of); any consecrated offering; thanksgiving; + eucharistial_N_N : N ; -- [EEXEE] :: vessel for preserving the Holy Eucharist; + eucharistialus_A : A ; -- [EEXCE] :: Eucharistic, pertaining to Holy Eucharist; + eucharisticon_N_N : N ; -- [XXHFO] :: thanksgiving; Eucharist/Communion; + eucharisticus_A : A ; -- [EEXCE] :: Eucharistic/pertaining to Holy Eucharist; [Doctor ~ => St. John of Chrystostom]; + eucharistium_N_N : N ; -- [EEXDP] :: consecrated elements (pl.) of the Eucharist/Communion; + euchelaion_N_N : N ; -- [EEHFE] :: holy oil; sacrament of anointing in Greek rite; + euchologion_N_N : N ; -- [FEHEE] :: euchologion, book of liturgies/prayers for administration of Orthodox sacraments + eugae_Interj : Interj ; -- [XXXDX] :: oh, good! fine! well done! (delight/pleasure/surprise, sometimes ironic); + euge_Interj : Interj ; -- [XXXDX] :: oh, good! fine! well done! (delight/pleasure/surprise, sometimes ironic); + eugeneus_A : A ; -- [XXXES] :: well-born; noble; generous; + eugenicus_A : A ; -- [GXXEK] :: eugenic; + eugepae_Interj : Interj ; -- [XXXEC] :: well done!; (sometimes ironic); + euhans_A : A ; -- [XXXDX] :: uttering the name/cry Euhan (Bacchus); + euhoe_Interj : Interj ; -- [XXXDX] :: cry of joy used by the votaries of Bacchus; + eukaristia_F_N : N ; -- [EEXFS] :: Eucharist/Communion; (elements thereof); consecrated offering; + eulogia_F_N : N ; -- [EEXFE] :: present/gift/blessing; name for Holy Eucharist/consecrated bread; fine language; + eunuchus_M_N : N ; -- [XXXBX] :: eunuch; + euoeeuhoe_Interj : Interj ; -- [XXXEC] :: shout of the Bacchantes; + euphonia_F_N : N ; -- [DDXFS] :: euphony; quality of having pleasant sound; + euphonus_A : A ; -- [XXXEO] :: sonorous, resonant; (applied to virile man vs. eunuch); pleasant (sound); + euphoria_F_N : N ; -- [GXXEK] :: euphoria; + euresilogus_M_N : N ; -- [FSXEP] :: sophist, sophistical person; + euripus_M_N : N ; -- [XXXDX] :: channel, canal; + eurisilogus_M_N : N ; -- [FSXEP] :: sophist, sophistical person; + euro_M_N : N ; -- [GXXEK] :: euro (currency); + euroaquilo_M_N : N ; -- [XSXIO] :: north-east wind; + eurocrata_M_N : N ; -- [GXXEK] :: Eurocrat; + euronotus_M_N : N ; -- [XSXEO] :: south-east wind; + euronummus_M_N : N ; -- [GXXEK] :: Euro (currency); + euronus_M_N : N ; -- [GXXEK] :: Euro (currency); + eurous_A : A ; -- [XXXDX] :: eastern; + eurus_M_N : N ; -- [XXXDX] :: east (or south east) wind; the east; + euthanasia_F_N : N ; -- [GBXFE] :: euthanasia; + eutyches_A : A ; -- [FXXFM] :: fortunate; + euus_M_N : N ; -- [XXXDO] :: eating; taking of food; + evacuo_V2 : V2 ; -- [XXXEO] :: empty (vessel); purge, evacuate (bowels); + evado_V2 : V2 ; -- [XXXBX] :: evade, escape; avoid; + evagino_V2 : V2 ; -- [FXXDB] :: unsheathe; + evagor_V : V ; -- [XXXDX] :: wander off/out/forth/to and fro, stray; maneuver; spread, overstep; + evalesco_V2 : V2 ; -- [XXXDX] :: increase in strength; prevail, have sufficient strength (to); + evanesco_V : V ; -- [XXXCO] :: vanish/disappear; pass/fade/die (away/out); lapse; become weak/void/forgotten; + evangeliarum_N_N : N ; -- [EEXFE] :: book of Gospels; + evangelicus_A : A ; -- [EEXES] :: evangelical; of/pertaining to the Gospel; + evangelista_M_N : N ; -- [EEXES] :: preacher (of the Gospel); evangelist; + evangelistarium_N_N : N ; -- [EEXFE] :: book of Gospels; + evangelium_N_N : N ; -- [XEXES] :: Good news; Gospel; + evangelizatio_F_N : N ; -- [EEXEE] :: evangelization, preaching the Gospel + evangelizator_M_N : N ; -- [EEXES] :: preacher (of the Gospel); evangelist; + evangelizo_V : V ; -- [EEXCS] :: preach/declare/proclaim (the Gospel); evangelize, win to Gospel by preaching; + evanidus_A : A ; -- [XXXDX] :: vanishing, passing away; + evanno_V2 : V2 ; -- [XAXFO] :: winnow out; cast out (the chaff from fan leaving the grain); + evans_A : A ; -- [XEXES] :: crying Euhan!; (surname of Bacchus); + evanuo_V : V ; -- [FXXEE] :: become vain/empty/foolish; + evaporatio_F_N : N ; -- [XSXFS] :: evaporation; + evasio_F_N : N ; -- [XXXEE] :: escape; deliverance; going out; evasion; + evasto_V : V ; -- [XXXDX] :: devastate; + evectio_F_N : N ; -- [XLXES] :: ascension, flight, soaring aloft; permit to travel by public post; + eveho_V2 : V2 ; -- [XXXBX] :: carry away, convey out; carry up; exalt; jut out, project; + evello_V2 : V2 ; -- [XXXDX] :: pull/pluck/tear/root out; + evenio_V2 : V2 ; -- [XXXAX] :: come out/about/forth; happen; turn out; + evenit_V0 : V ; -- [XXXDX] :: it happens, it turns out; come out, come forth; + eventilatus_A : A ; -- [DXXFS] :: scattered; dissipated; + eventilo_V2 : V2 ; -- [XXXEO] :: winnow thoroughly; fan away; fan (L+S); set in motion (air); + eventum_N_N : N ; -- [XXXDX] :: occurrence, event; issue, outcome; + eventus_M_N : N ; -- [XXXDX] :: outcome, result, success; event, occurrence; chance, fate, accident; + everbero_V : V ; -- [XXXDX] :: beat violently; + everriculum_N_N : N ; -- [XXXEO] :: fishing-net, drag-net; clean sweep; brush (Cal); + everro_V2 : V2 ; -- [XXXCO] :: sweep/clean out (room/litter); sweep (sea) with dragnet; net (by dragging); + eversio_F_N : N ; -- [XXXCO] :: destruction; overturning/upsetting; expulsion/turning out; revolution (Cal); + eversor_M_N : N ; -- [XXXDX] :: one who destroys or overthrows; + everto_V2 : V2 ; -- [XXXBX] :: overturn, turn upside down; overthrow, destroy, ruin; + evestigatus_A : A ; -- [XXXEC] :: tracked out, discovered; + evictio_F_N : N ; -- [XXXCO] :: eviction; recovery at law in virtue of superior title; + evidens_A : A ; -- [XXXDX] :: apparent, evident; + evidenter_Adv : Adv ; -- [XXXCO] :: clearly, obviously/manifestly/evidently; vividly, giving realistic impression; + evidentia_F_N : N ; -- [XXXCO] :: evidence; obviousness; vividness; quality of being manifest/evident; + evigilatio_F_N : N ; -- [XXXEE] :: awakening; + evigilo_V : V ; -- [XXXDX] :: be wakeful; watch throughout the night; devise or study with careful attention; + evilesco_V : V ; -- [XXXDO] :: become vile/worthless/despicable; cheapen; + evincio_V2 : V2 ; -- [XXXDX] :: bind, bind up/around; wind around; wreathe round; + evinco_V2 : V2 ; -- [XXXDX] :: overcome, conquer, subdue, overwhelm, defeat utterly; prevail, bring to pass; + eviratus_A : A ; -- [XXXES] :: effeminate; + eviro_V : V ; -- [XXXES] :: deprive of virility; weaken; + eviscero_V : V ; -- [XXXDX] :: disembowel; eviscerate; + evitabilis_A : A ; -- [XXXDX] :: avoidable; + evitandus_A : A ; -- [XXXEE] :: that which must be avoided; + evito_V : V ; -- [XXXDX] :: shun, avoid; + evocatio_F_N : N ; -- [XXXEO] :: summoning/evocation; calling/ordering out the troops; calling up dead spirits; + evocator_M_N : N ; -- [XXXDX] :: one who orders out troops; + evocatus_M_N : N ; -- [XXXDX] :: veteran; volunteer; veterans again called to service (pl.); + evoco_V : V ; -- [XXXDX] :: call forth; lure/entice out; summon, evoke; + evolo_V : V ; -- [XXXDX] :: fly away, fly up/out/forth; rush out/forth; + evolutio_F_N : N ; -- [XXXEO] :: development, unfolding; action of reading through; evolution (Ecc); + evolutivus_A : A ; -- [GXXEE] :: evolutionary; + evolvo_V2 : V2 ; -- [XXXDX] :: roll out, unroll; disclose, unfold; extricate; pursue; explain; + evomo_V2 : V2 ; -- [XXXDX] :: vomit out; + evovae_N : N ; -- [FDXFE] :: evovae; (meaningless word used in choral books to show some vowel sounds); + evulgatio_F_N : N ; -- [XXXEE] :: publication, making known, divulging; + evulgo_V : V ; -- [XXXDX] :: make public, divulge; + evulsio_F_N : N ; -- [DXXES] :: pulling out; eradication, utter destruction; extinction (Souter); + ex_Abl_Prep : Prep ; -- [XXXAX] :: out of, from; by reason of; according to; because of, as a result of; + exacerbatio_F_N : N ; -- [EXXES] :: provocation; exasperation; + exacerbesco_V : V ; -- [XXXFO] :: become irritated/exasperated/angry; + exacerbo_V2 : V2 ; -- [XXXCO] :: irritate/exasperate, enrage/provoke; aggravate/make worse; grieve, afflict; + exactio_F_N : N ; -- [XLXCO] :: |expulsion; supervision, enforcement; precise execution; extraction (tax/debt); + exactitudo_F_N : N ; -- [GXXEK] :: accuracy; + exactor_M_N : N ; -- [XXXDX] :: expeller; exactor; collector of taxes; + exactus_A : A ; -- [XXXBX] :: exact, accurate; + exacuo_V2 : V2 ; -- [XXXDX] :: make sharp or pointed; stimulate; + exacutio_F_N : N ; -- [XXXFO] :: action of sharpening to a point; + exacutus_A : A ; -- [XXXEE] :: sharpened; stimulated; + exadversum_Adv : Adv ; -- [XXXEC] :: opposite; + exadversus_Adv : Adv ; -- [XXXEC] :: opposite; + exaedifico_V : V ; -- [XXXDX] :: complete the building of, construct; + exaequo_V : V ; -- [XXXDX] :: equalize, make equal; regard as equal; be equal (to); + exaestuo_V : V ; -- [XXXDX] :: boil up; seethe, rage; + exaggero_V : V ; -- [XXXDX] :: heap up, accumulate; magnify; + exagito_V : V ; -- [XXXDX] :: drive out; stir up, disturb continually, harass; attack, scold, discuss; + exaltatio_F_N : N ; -- [DEXDS] :: exaltation, elevation; pride, haughtiness; + exalto_V2 : V2 ; -- [DEXCS] :: exalt, elevate, raise; praise; deepen; + examen_N_N : N ; -- [XXXCO] :: |swarm (bees); crowd; agony; + examinator_M_N : N ; -- [XXXEE] :: examiner; arbitrator; + examinatus_A : A ; -- [XXXEE] :: careful, scrupulous; exact; + examino_V : V ; -- [XXXDX] :: weigh, examine, consider; + examussim_Adv : Adv ; -- [XXXFS] :: according to rule, exactly, quite; + exanimalis_A : A ; -- [XXXEO] :: dead, lifeless; deadly, destructive of life; + exanimis_A : A ; -- [XXXDX] :: dead; lifeless; breathless, terrified, dismayed; + exanimo_V : V ; -- [XXXDX] :: kill, deprive of life; scare, alarm greatly; tire, exhaust; be out of breath; + exanimus_A : A ; -- [XXXDX] :: dead; lifeless; 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_V2 : V2 ; - exarmo_V2 : V2 ; - exaro_V : V ; - exasperatio_F_N : N ; - exasperator_M_N : N ; - exasperatrix_F_N : N ; - exaspero_V : V ; - exatio_V : V ; - exauctoro_V : V ; - exaudibilis_A : A ; - exaudiens_A : A ; - exaudio_V2 : V2 ; - exauditio_F_N : N ; - exauditor_M_N : N ; - exauguratio_F_N : N ; - excaeco_V2 : V2 ; - excalceatus_A : A ; - excalceo_V2 : V2 ; - excalceor_V : V ; - excalcio_V2 : V2 ; - excalfactorius_A : A ; - excambium_N_N : N ; - excandescentia_F_N : N ; - excandesco_V : V ; - excardinatio_F_N : N ; - excardino_V2 : V2 ; - excarnifico_V2 : V2 ; - excarpus_M_N : N ; - excavo_V2 : V2 ; - excedo_V2 : V2 ; - excellens_A : A ; - excellenter_Adv : Adv ; - excellentia_F_N : N ; - excello_V : V ; - excelsa_F_N : N ; - excelse_Adv : Adv ; - excelsitas_F_N : N ; - excelsum_N_N : N ; - excelsus_A : A ; - excentricitas_F_N : N ; - excentricus_M_N : N ; - exceptio_F_N : N ; - exceptionalis_A : A ; - excepto_V : V ; - exceptorium_N_N : N ; - exceptus_A : A ; - excerebro_V2 : V2 ; - 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_V2 : V2 ; - excieo_V : V ; - excindo_V2 : V2 ; - excio_V2 : V2 ; - excipio_V2 : V2 ; - excipulum_N_N : N ; - excisus_M_N : N ; - excito_V : V ; - excitor_M_N : N ; - exclamatio_F_N : N ; - exclamo_V : V ; - exclaustratio_F_N : N ; - exclaustratus_A : A ; - 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_V2 : V2 ; - excommunicatio_F_N : N ; - excommunico_V2 : V2 ; - excoquo_V2 : V2 ; - excorio_V2 : V2 ; - excors_A : A ; - excrementum_N_N : N ; - excresco_V2 : V2 ; - excrucio_V : V ; - excubia_F_N : N ; - excubitor_M_N : N ; - excubo_V : V ; - excudo_V2 : V2 ; - exculco_V : V ; - exculpo_V2 : V2 ; - excuratus_A : A ; - excurro_V2 : V2 ; - excursatio_F_N : N ; - excursio_F_N : N ; - excursus_M_N : N ; - excusabilis_A : A ; - excusamentum_N_N : N ; - excusatio_F_N : N ; - excuso_V2 : V2 ; - excussio_F_N : N ; - excusso_V2 : V2 ; - excussus_A : A ; - excutio_V2 : V2 ; - execo_V2 : V2 ; - execrabilis_A : A ; - execramentum_N_N : N ; - execratio_F_N : N ; - execribilis_A : A ; - execror_V : V ; - executio_F_N : N ; - executo_V2 : V2 ; - executor_M_N : N ; - executorius_A : A ; - executrix_F_N : N ; - exedo_1_V2 : V2 ; - exedo_2_V2 : V2 ; - exedra_F_N : N ; - exeges_F_N : N ; - exegeta_C_N : N ; - exemplabilis_A : A ; - exemplar_N_N : N ; - exemplare_N_N : N ; - exemplaris_A : A ; - exemplaris_M_N : N ; - exemplaritas_F_N : N ; - exemplator_M_N : N ; - exemplo_V2 : V2 ; - exemplum_N_N : N ; - exempoator_M_N : N ; - exemptio_F_N : N ; - exemptus_A : A ; - exemptus_M_N : N ; - exenium_Adv : Adv ; - exentero_V : V ; - exeo_V : V ; - exequia_F_N : N ; - exequiale_N_N : N ; - exequialis_A : A ; - exequior_V : V ; - exequor_V : V ; + exanthema_2_N : N ; -- [XXXFO] :: pustule; pimple, zit; eruption on the skin; + exantlo_V : V ; -- [EXXEE] :: exhaust; endure; bar; suffer much from toil; + exaperio_V2 : V2 ; -- [XXXEE] :: disclose; explain; disentangle; + exarchia_F_N : N ; -- [EEHFE] :: exarchy; (Eastern Church people not in eparchy, committed to exarch bishop); + exarchus_M_N : N ; -- [EEHFE] :: exarch; (Eastern Church bishop governing exarchy); + exardesco_V : V ; -- [XXXDX] :: flare/blaze up; break out; glow; rage; be provoked, enraged; be exasperated; + exardo_V : V ; -- [XXXCE] :: kindle; inflame; break out; + exaresco_V2 : V2 ; -- [XXXDX] :: dry up; + exarmo_V2 : V2 ; -- [XWXCO] :: |dismantle/remove ship's tackle; deprive beasts of their natural weapons; + exaro_V : V ; -- [XXXDX] :: plow or dig up; plow; note down (by scratching the wax on the tablets); + exasperatio_F_N : N ; -- [XXXEO] :: irritation; exasperation (Ecc); bitterness; + exasperator_M_N : N ; -- [EXXEE] :: provoker, one who provokes/irritates; + exasperatrix_F_N : N ; -- [EXXEE] :: provoker (female), she who provokes/irritates; + exaspero_V : V ; -- [XXXDX] :: roughen; irritate; + exatio_V : V ; -- [XXXDX] :: satisfy, satiate; glut; + exauctoro_V : V ; -- [XXXDX] :: release or dismiss from military service; + exaudibilis_A : A ; -- [XXXEE] :: worthy of being heard; + exaudiens_A : A ; -- [XXXIO] :: that listens to or heeds (prayers/supplication); understanding, listening; + exaudio_V2 : V2 ; -- [XXXBX] :: hear clearly; comply with, heed; hear from afar; understand; + exauditio_F_N : N ; -- [XXXEE] :: favorable answer to prayer; + exauditor_M_N : N ; -- [XEXIO] :: one who listens (favorably/graciously) to prayer; + exauguratio_F_N : N ; -- [XXXEC] :: profanation, desecration; + excaeco_V2 : V2 ; -- [XXXCO] :: blind (completely), confuse/hide/obscure; dull/dim; block channel; de-eye plant; + excalceatus_A : A ; -- [XXXEO] :: barefoot; unshod; + excalceo_V2 : V2 ; -- [XXXEO] :: remove the shoes from; + excalceor_V : V ; -- [XXXFO] :: remove the shoes from; + excalcio_V2 : V2 ; -- [XXXEO] :: remove the shoes from; + excalfactorius_A : A ; -- [XXXES] :: warming; heating (Pliny); + excambium_N_N : N ; -- [FLXFJ] :: excambion; exchange/barter (espec. of land); + excandescentia_F_N : N ; -- [XXXEC] :: heat, irascibility; + excandesco_V : V ; -- [XXXCO] :: catch fire, burst into flame; blaze (w/light); flare up, burn w/rage/anger; + excardinatio_F_N : N ; -- [FEXFE] :: excardination; (transfer of cleric to another diocese/consecrated life); + excardino_V2 : V2 ; -- [FEXFE] :: excardinate; (transfer of cleric to another diocese/consecrated life); + excarnifico_V2 : V2 ; -- [XXXCO] :: torture, punish; torment/torture mentally; hack/cut/tear to pieces (L+S); + excarpus_M_N : N ; -- [FGXFY] :: abstract; + excavo_V2 : V2 ; -- [XXXCO] :: hollow/scoop out, make hollow; produce/make/form by excavation/hollowing out; + excedo_V2 : V2 ; -- [XXXBX] :: pass, withdraw, exceed; go away/out/beyond; die; + excellens_A : A ; -- [XXXBX] :: distinguished, excellent; + excellenter_Adv : Adv ; -- [XXXDX] :: excellently; + excellentia_F_N : N ; -- [XXXDX] :: excellence, superiority; merit; + excello_V : V ; -- [XXXDX] :: be eminent/preeminent; excel; + excelsa_F_N : N ; -- [EEXEP] :: citadel; + excelse_Adv : Adv ; -- [XXXDO] :: preeminently, outstandingly; in elevated/sublime manner; at/to high elevation; + excelsitas_F_N : N ; -- [XXXEO] :: loftiness; height; preeminence; sublimity; + excelsum_N_N : N ; -- [EEXCP] :: |altar, temple (pl.); citadel; [in ~is/in ~o => in the highest/on high]; + excelsus_A : A ; -- [EDXDP] :: high pitched (sound/note); + excentricitas_F_N : N ; -- [GSXEK] :: eccentricity (geometry); + excentricus_M_N : N ; -- [FSXFM] :: eccentric orbit; + exceptio_F_N : N ; -- [XXXDX] :: exception, qualification; + exceptionalis_A : A ; -- [EXXEE] :: exceptional; + excepto_V : V ; -- [XXXDX] :: take out, take up; inhale, take (to oneself); + exceptorium_N_N : N ; -- [XXXIO] :: receptacle (for water), tank, cistern; reservoir (Ecc); + exceptus_A : A ; -- [FXXEE] :: only; excepted; + excerebro_V2 : V2 ; -- [EXXFS] :: brain, bash the head in; deprive of brains; make senseless; stupefy; + excerpo_V2 : V2 ; -- [XXXDX] :: pick out; select; + excerptio_F_N : N ; -- [XXXFO] :: extract, excerpt; + excerptum_N_N : N ; -- [XXXFO] :: extract, excerpt; + excessivus_A : A ; -- [GXXEK] :: excessive; + excessus_M_N : N ; -- [XXXCO] :: departure; death; digression; departure from standard; B:protuberance; excess; + excetra_F_N : N ; -- [XXXEC] :: snake, viper; + excidium_N_N : N ; -- [XXXCO] :: military destruction (of towns/armies); ruin/demolition; subversion/overthrow; + excido_V2 : V2 ; -- [XXXDX] :: cut out/off/down; raze, destroy; + excieo_V : V ; -- [XXXDX] :: rouse; call out send for; summon; evoke; + excindo_V2 : V2 ; -- [XXXCO] :: demolish/destroy, raze to ground (town/building); exterminate/destroy (people); + excio_V2 : V2 ; -- [XXXDX] :: rouse; call out send for; summon; evoke; + excipio_V2 : V2 ; -- [XXXAX] :: take out; remove; follow; receive; ward off, relieve; + excipulum_N_N : N ; -- [GXXEK] :: bin; + excisus_M_N : N ; -- [FXXEE] :: cut, cutting, slip, piece; + excito_V : V ; -- [XXXBX] :: wake up, stir up; cause; raise, erect; incite; excite, arouse; + excitor_M_N : N ; -- [FEXEE] :: awakener; [Excitor mentium => Christ, awakener of souls]; + exclamatio_F_N : N ; -- [XXXDX] :: exclamation, saying; + exclamo_V : V ; -- [XXXBX] :: exclaim, shout; cry out, call out; + exclaustratio_F_N : N ; -- [FEXFE] :: exclaustration; (permission to remain outside cloister for definite period); + exclaustratus_A : A ; -- [FEXFE] :: exclaustrated; (being outside cloister with permission); + excludo_V2 : V2 ; -- [XXXBX] :: shut out, shut off; remove; exclude; hinder, prevent; + exclusa_F_N : N ; -- [GXXEK] :: sluice; + exclusio_F_N : N ; -- [XXXEO] :: exclusion, keeping out; shutting out; debarring; + exclusive_Adv : Adv ; -- [FXXEE] :: exclusively; + exclusivus_A : A ; -- [FXXEE] :: exclusive; + excogitatio_F_N : N ; -- [XXXEO] :: thinking out, conniving, devising; invention (Ecc); + excogito_V : V ; -- [XXXDX] :: think out; devise, invent, contrive; + excolo_V2 : V2 ; -- [XXXDX] :: improve; develop, honor; + excommunicatio_F_N : N ; -- [EEXDE] :: excommunication; censure excluding from Church/community/communion w/faithful); + excommunico_V2 : V2 ; -- [EEXDE] :: excommunicate; (exclude Catholic from communion w/faithful); + excoquo_V2 : V2 ; -- [XXXDX] :: boil; temper (by heat); boil away; dry up, parch; + excorio_V2 : V2 ; -- [DXXCS] :: strip of skin/covering; flay, skin, strip; + excors_A : A ; -- [XXXDX] :: silly, stupid; + excrementum_N_N : N ; -- [XXXDX] :: excrement; spittle, mucus; + excresco_V2 : V2 ; -- [XXXDX] :: grow out or up; grow up; grow; + excrucio_V : V ; -- [XXXDX] :: torture; torment; + excubia_F_N : N ; -- [XXXCO] :: watching (pl.); keeping of a watch/guard/vigil; the watch, soldiers on guard; + excubitor_M_N : N ; -- [XXXDX] :: sentinel; watchman; + excubo_V : V ; -- [XXXDX] :: sleep/lie in the open/out of doors; keep watch; be attentive; + excudo_V2 : V2 ; -- [XXXDX] :: strike out; forge; fashion; print (Erasmus); + exculco_V : V ; -- [XXXDX] :: trample down; + exculpo_V2 : V2 ; -- [XXXEM] :: carve out; erase; (see exsculpo; source Latham, but pre-dates medieval times); + excuratus_A : A ; -- [XXXEC] :: carefully seen to; + excurro_V2 : V2 ; -- [XXXDX] :: run out; make an excursion; sally; extend; project; + excursatio_F_N : N ; -- [DXXES] :: sally; onset; attack, charge (Sax); incursion; + excursio_F_N : N ; -- [XXXDX] :: running forth; sally; + excursus_M_N : N ; -- [XXXDX] :: running forth, onset, charge, excursion, sally, sudden raid; + excusabilis_A : A ; -- [XXXDX] :: excusable; + excusamentum_N_N : N ; -- [DXXFS] :: excuse; + excusatio_F_N : N ; -- [XXXDX] :: excuse; + excuso_V2 : V2 ; -- [XXXAO] :: excuse/justify/explain; make excuse for/plead as excuse; allege; absolve/exempt; + excussio_F_N : N ; -- [EXXEE] :: interrogation, examination; act of shaking (down); + excusso_V2 : V2 ; -- [FXXAE] :: excuse/justify/explain; make excuse for/plead as excuse; allege; absolve/exempt; + excussus_A : A ; -- [FEXEE] :: cast out; thrown down/out; + excutio_V2 : V2 ; -- [XXXBX] :: shake out or off; cast out; search, examine; + execo_V2 : V2 ; -- [XXXCO] :: cut out/off; remove/make (hole) by cutting; cut, make cut in; castrate; + execrabilis_A : A ; -- [FXXEE] :: detestable; accursed; + execramentum_N_N : N ; -- [EEXEE] :: accursed thing; increase, excess (Latham); excrement; [~ auri => gold fillings]; + execratio_F_N : N ; -- [XXXDX] :: imprecation, curse; + execribilis_A : A ; -- [XXXCO] :: accursed, detestable; of/belonging to cursing; + execror_V : V ; -- [XXXDX] :: curse; detest; + executio_F_N : N ; -- [XXXCO] :: performance, carrying out; enforcement (law), act to right wrong; discussion; + executo_V2 : V2 ; -- [FXXEW] :: |execute, carry out (duty); go through, rehearse; pursue; develop (topic); + executor_M_N : N ; -- [XXXDO] :: executor, one who carries out task; performer; avenger; + executorius_A : A ; -- [XXXEE] :: executive; + executrix_F_N : N ; -- [XXXDE] :: executor (female), one who carries out task; performer; avenger; + exedo_V : V ; -- [XXXDX] :: eat up, consume; hollow; + exedo_V2 : V2 ; -- [XXXDX] :: eat up, consume; hollow; + exedra_F_N : N ; -- [XXXEC] :: hall for conversation or debate; + exeges_F_N : N ; -- [GGXFM] :: exposition; exegesis (16th C); + exegeta_C_N : N ; -- [FEXEE] :: exegete, interpreter/expounder of Scripture/difficult passages; + exemplabilis_A : A ; -- [FXXFM] :: pattern-formed; + exemplar_N_N : N ; -- [XXXBO] :: model, pattern, example, original, ideal; copy/reproduction; typical instance; + exemplare_N_N : N ; -- [XXXFO] :: model, pattern, example, original, ideal; copy/reproduction; typical instance; + exemplaris_A : A ; -- [XXXEO] :: exemplary, serving as example/pattern; + exemplaris_M_N : N ; -- [XXXEO] :: copy; transcript; + exemplaritas_F_N : N ; -- [FSXEM] :: model, exemplar; archetypical quality; + exemplator_M_N : N ; -- [FXXEM] :: copyist; + exemplo_V2 : V2 ; -- [FSXDF] :: adduce/serve as example/model/pattern; form after a pattern; + exemplum_N_N : N ; -- [XXXAO] :: |pattern, model; parallel, analogy; archetype; copy/reproduction, transcription; + exempoator_M_N : N ; -- [FXXEN] :: model, example; + exemptio_F_N : N ; -- [XLXEO] :: removal, taking out; preventing person's court appearance; exemption (Ecc); + exemptus_A : A ; -- [XXXEE] :: exempt; + exemptus_M_N : N ; -- [XXXFO] :: removal, action of removing/taking out; + exenium_Adv : Adv ; -- [FXXFY] :: by mistake; + exentero_V : V ; -- [XXXDX] :: disembowel; + exeo_V : V ; -- [XXXAO] :: |discharge (fluid); rise (river); become visible; issue/emerge/escape; sprout; + exequia_F_N : N ; -- [XEXCO] :: funeral procession/rites/services (pl.), obsequies; [~ ire => attend funeral]; + exequiale_N_N : N ; -- [XXXEO] :: funeral rites (pl.); + exequialis_A : A ; -- [XXXEO] :: funeral-, of/related to funeral, of/belonging to funeral rites; + exequior_V : V ; -- [XXXFO] :: follow in funeral procession to the grave; attend at the grave; + exequor_V : V ; -- [XXXBO] :: |persist in; execute, carry out; rehearse; attain, arrive at, accomplish; exercens_F_N : N ; -- [XXXEE] :: operator; worker; doer, performer; - exercens_M_N : N ; - exerceo_V : V ; - exercitatio_F_N : N ; - exercitatus_A : A ; - exercitium_N_N : N ; - exercito_V : V ; - exercitor_M_N : N ; - exercitorius_A : A ; - exercitrix_A : A ; - exercitualis_A : A ; - exercitus_M_N : N ; - exero_V2 : V2 ; - exerro_V : V ; - exerto_V : V ; - exfornicatus_A : A ; - exfugio_V2 : V2 ; - exhalo_V : V ; - exhaurio_V2 : V2 ; - exhaustus_A : A ; - exhedra_F_N : N ; - exheredatio_F_N : N ; - exheredito_V : V ; - exheredo_V2 : V2 ; - exheres_A : A ; - exhibeo_V : V ; - exhibitio_F_N : N ; - exhibitorius_A : A ; - exhilaro_V2 : V2 ; - exhonoratio_F_N : N ; - exhonoro_V2 : V2 ; - exhorreo_V : V ; - exhorresco_V2 : V2 ; - exhortatio_F_N : N ; - exhortativus_A : A ; - exhorto_V : V ; - exhortor_V : V ; - exicco_V : V ; - exico_V2 : V2 ; - exide_Adv : Adv ; - exigentia_F_N : N ; - exigo_V2 : V2 ; - exiguitas_F_N : N ; - exiguus_A : A ; - exilio_V : V ; - exilis_A : A ; - exilitas_F_N : N ; - exiliter_Adv : Adv ; - exilium_N_N : N ; - exim_Adv : Adv ; - eximietas_F_N : N ; - eximius_A : A ; - eximo_V2 : V2 ; - exin_Adv : Adv ; - exinanio_V2 : V2 ; - exinanitio_F_N : N ; - exinde_Adv : Adv ; - existentia_F_N : N ; - existentialis_A : A ; - existentialismus_M_N : N ; - existimatio_F_N : N ; - existimator_M_N : N ; - existimo_V2 : V2 ; - existo_V2 : V2 ; - existumatio_F_N : N ; - existumator_M_N : N ; - existumo_V2 : V2 ; - exitabiliter_Adv : Adv ; - exitiabilis_A : A ; - exitialis_A : A ; - exitiosus_A : A ; - exitium_N_N : N ; - exitus_M_N : N ; - exlex_A : A ; - exoculo_V2 : V2 ; - exolesco_V : V ; - exoletus_M_N : N ; - exolvo_V2 : V2 ; - exomologesis_F_N : N ; - exonero_V : V ; - exopto_V : V ; - exorabilis_A : A ; - exoratio_F_N : N ; - exorbito_V : V ; - exorcismus_M_N : N ; - exorcista_M_N : N ; - exorcistatus_M_N : N ; - exorcistus_M_N : N ; - exorcizo_V2 : V2 ; - exordior_V : V ; - exordium_N_N : N ; - exorior_V : V ; - exornatio_F_N : N ; - exornatulus_A : A ; - exornatus_A : A ; - exorno_V : V ; - exoro_V2 : V2 ; - exors_A : A ; - exos_A : A ; - exosculo_V2 : V2 ; - exosculor_V : V ; - exosso_V2 : V2 ; - exostra_F_N : N ; - exosus_A : A ; - exotericus_A : A ; - exoticus_A : A ; - expallesco_V2 : V2 ; - expallidus_A : A ; - expalpo_V2 : V2 ; - expando_V2 : V2 ; - expansio_F_N : N ; - expatior_V : V ; - expavesco_V2 : V2 ; - expectatio_F_N : N ; - expecto_V : V ; - expectoro_V : V ; - expedio_V2 : V2 ; - expeditio_F_N : N ; - expeditus_A : A ; - expeditus_M_N : N ; - expedius_A : A ; - expello_V2 : V2 ; - expendiendus_A : A ; - expendo_V2 : V2 ; - expensa_F_N : N ; - expensio_F_N : N ; - expensum_N_N : N ; - expensus_A : A ; - expergefacio_V2 : V2 ; - expergefio_V : V ; - expergiscor_V : V ; - experiens_A : A ; - experientia_F_N : N ; - experimentalis_A : A ; - experimentum_N_N : N ; - experior_V : V ; - expers_A : A ; - experta_F_N : N ; - expertus_A : A ; - expertus_M_N : N ; - expes_A : A ; - expetesso_V2 : V2 ; - expeto_V2 : V2 ; - expiatio_F_N : N ; - expiatorius_A : A ; - expilo_V : V ; - expio_V : V ; - expiro_V : V ; - expiscor_V : V ; - explanatio_F_N : N ; - explano_V : V ; - explanto_V2 : V2 ; - explaudo_V2 : V2 ; - explementum_N_N : N ; - expleo_V : V ; - expletio_F_N : N ; - expletium_N_N : N ; - expletivus_A : A ; - explicatio_F_N : N ; - explicativus_A : A ; - explicite_Adv : Adv ; - explicitus_A : A ; - explico_V : V ; - explodeo_V : V ; - explodo_V2 : V2 ; - exploratio_F_N : N ; - exploratior_A : A ; - explorator_M_N : N ; - exploro_V : V ; - 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_V2 : V2 ; - exporrigo_V2 : V2 ; - exportaticius_A : A ; - exportator_M_N : N ; - exporto_V : V ; - exposco_V2 : V2 ; - expositio_F_N : N ; - expostulatio_F_N : N ; - expostulo_V : V ; - expresse_Adv : Adv ; - expressim_Adv : Adv ; - expressio_F_N : N ; - expressus_A : A ; - exprimo_V2 : V2 ; - exprobrabilis_A : A ; - exprobratio_F_N : N ; - exprobro_V2 : V2 ; - expromo_V2 : V2 ; - expropriatio_F_N : N ; - expugnabilis_A : A ; - expugnatio_F_N : N ; - expugnator_M_N : N ; - expugnax_A : A ; - expugno_V : V ; - expulsio_F_N : N ; - expultrix_F_N : N ; - 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_V2 : V2 ; - exquisitio_F_N : N ; - exquisitor_M_N : N ; - exsanguis_A : A ; - exsatio_V : V ; - exsaturabilis_A : A ; - exsaturatus_A : A ; - exsaturo_V : V ; - exscidium_N_N : N ; - exscindo_V2 : V2 ; - exscreo_V2 : V2 ; - exscribo_V2 : V2 ; - exsculpo_V2 : V2 ; - exseco_V2 : V2 ; - exsecrabilis_A : A ; - exsecramentum_N_N : N ; - exsecrandus_A : A ; - exsecratio_F_N : N ; - exsecribilis_A : A ; - exsecror_V : V ; - exsectio_F_N : N ; - exsecutio_F_N : N ; - exsecutivus_A : A ; - exsecuto_V2 : V2 ; - exsecutor_M_N : N ; - exsecutrix_F_N : N ; - exsequia_F_N : N ; - exsequiale_N_N : N ; - exsequialis_A : A ; - exsequior_V : V ; - exsequor_V : V ; - exsero_V2 : V2 ; - exserto_V : V ; - exsicco_V : V ; - exsico_V2 : V2 ; - exsilio_V : V ; - exsilium_N_N : N ; - exsistentia_F_N : N ; - exsistimatio_F_N : N ; - exsisto_V2 : V2 ; - exsolvo_V2 : V2 ; - exsomnis_A : A ; - exsors_A : A ; - exspatior_V : V ; - exspectatio_F_N : N ; - exspecto_V : V ; - exspergo_V2 : V2 ; - exspes_A : A ; - exspiro_V : V ; - exsplendesco_V2 : V2 ; - exspolio_V : V ; - exspuo_V2 : V2 ; - exstasia_F_N : N ; + exercens_M_N : N ; -- [XXXEE] :: operator; worker; doer, performer; + exerceo_V : V ; -- [XXXAX] :: exercise, train, drill, practice; enforce, administer; cultivate; + exercitatio_F_N : N ; -- [XXXDX] :: exercise, training, practice; discipline; + exercitatus_A : A ; -- [XXXDX] :: trained, practiced, skilled; disciplined; troubled; + exercitium_N_N : N ; -- [XXXCO] :: exercise; training; practice; proficiency/skill; written exercises (pl.); + exercito_V : V ; -- [XXXDX] :: practice, exercise, train hard, keep at work; + exercitor_M_N : N ; -- [XXXEO] :: trainer; exerciser; sports trainer (Cal); + exercitorius_A : A ; -- [XXXEO] :: concerning operator of business; + exercitrix_A : A ; -- [XXXFO] :: exercise-, that exercises (body); + exercitualis_A : A ; -- [FWXFS] :: belonging to an army; army-derived; + exercitus_M_N : N ; -- [XXXAX] :: army, infantry; swarm, flock; + exero_V2 : V2 ; -- [XXXDX] :: stretch forth; thrust out (of land); put out (plant); lay bare, uncover (body); + exerro_V : V ; -- [XXXFO] :: wander off (from one's course); + exerto_V : V ; -- [XXXES] :: stretch out; uncover; + exfornicatus_A : A ; -- [FXXEE] :: given to fornication; + exfugio_V2 : V2 ; -- [XXXAO] :: flee/escape; run/slip/keep away (from), eschew/avoid; baffle, escape notice; + exhalo_V : V ; -- [XXXDX] :: breathe out; evaporate; die; + exhaurio_V2 : V2 ; -- [XXXDX] :: draw out; drain, drink up, empty; exhaust, impoverish; remove; end; + exhaustus_A : A ; -- [FXXEE] :: exhausted; + exhedra_F_N : N ; -- [FXXFX] :: conversation-hall; hall with seats; (exedra); + exheredatio_F_N : N ; -- [XXXEO] :: disinheritance; act of disinheriting; + exheredito_V : V ; -- [ELXFS] :: disinherit; + exheredo_V2 : V2 ; -- [XLXEC] :: disinherit; + exheres_A : A ; -- [XLXEC] :: disinherited; + exhibeo_V : V ; -- [XXXBX] :: present; furnish; exhibit; produce; + exhibitio_F_N : N ; -- [FXXEE] :: display, exhibition; example; + exhibitorius_A : A ; -- [XLXEO] :: exibitory, of/connected with production in curt; of handing over/giving up; + exhilaro_V2 : V2 ; -- [XXXCO] :: gladden, cheer; brighten, spruce up, enhance appearance; + exhonoratio_F_N : N ; -- [FXXEE] :: shame; + exhonoro_V2 : V2 ; -- [EXXES] :: dishonor; despise; + exhorreo_V : V ; -- [XXXFO] :: shudder; be terrified; + exhorresco_V2 : V2 ; -- [XXXDX] :: shudder; be terrified, tremble at; + exhortatio_F_N : N ; -- [XXXCO] :: exhortation, action of admonishing/encouraging; inducement; + exhortativus_A : A ; -- [XXXEC] :: of exhortation; + exhorto_V : V ; -- [XXXDX] :: encourage; + exhortor_V : V ; -- [XXXDX] :: exhort, encourage, incite; + exicco_V : V ; -- [XXXDX] :: dry up; empty (vessel); + exico_V2 : V2 ; -- [XXXCO] :: cut out/off; remove/make (hole) by cutting; cut, make cut in; castrate; + exide_Adv : Adv ; -- [EXXDX] :: from then on; + exigentia_F_N : N ; -- [FXXEE] :: urgency, exigency; emergency; + exigo_V2 : V2 ; -- [XXXBX] :: drive out, expel; finish; examine, weigh; + exiguitas_F_N : N ; -- [XXXDX] :: smallness, paucity; shortness; scarcity; + exiguus_A : A ; -- [XXXBX] :: small; meager; dreary; a little, a bit of; scanty, petty, short, poor; + exilio_V : V ; -- [XXXBO] :: spring/leap/burst forth/out, leap up, start up, bound; emerge into existence; + exilis_A : A ; -- [XXXDX] :: small, thin; poor; + exilitas_F_N : N ; -- [XXXCO] :: thinness/leanness/narrowness; meager/poorness; small/shortness; dryness (style); + exiliter_Adv : Adv ; -- [XXXEZ] :: feebly (Collins); + exilium_N_N : N ; -- [XXXCO] :: exile, banishment; place of exile/retreat (L+S); exiles (pl.), those exiled; + exim_Adv : Adv ; -- [XXXBO] :: thence; after that, next in order, thereafter, then; furthermore; by that cause; + eximietas_F_N : N ; -- [FXXEM] :: excellence(title); uncommonness (Nelson); + eximius_A : A ; -- [XXXCO] :: |outstanding/exceptional/remarkable; distinct; selected/choice (best victim); + eximo_V2 : V2 ; -- [XXXBO] :: remove/extract, take/lift out/off/away; banish, get rid of; free/save/release; + exin_Adv : Adv ; -- [XXXBO] :: thence; after that, next in order, thereafter, then; furthermore; by that cause; + exinanio_V2 : V2 ; -- [XXXCO] :: empty, remove contents of; strip; despoil; drain, dry, pour out; weaken/exhaust; + exinanitio_F_N : N ; -- [XXXEO] :: purging, emptying out; weakening process; emptiness (Ecc); + exinde_Adv : Adv ; -- [XXXBO] :: thence; after that, next in order, thereafter, then; furthermore; by that cause; + existentia_F_N : N ; -- [FXXEF] :: existence; that by which essence becomes actual; + existentialis_A : A ; -- [GXXEK] :: existential; + existentialismus_M_N : N ; -- [FEXFE] :: existentialism (doctrine of); + existimatio_F_N : N ; -- [XXXBO] :: opinion (good); reputation/name; esteem; judgment/view/estimation; credit; + existimator_M_N : N ; -- [XXXDO] :: judge; critic, one who forms an opinion; + existimo_V2 : V2 ; -- [XXXBO] :: value/esteem; form/hold opinion/view; think/suppose; estimate; judge/consider; + existo_V2 : V2 ; -- [XXXDX] :: step forth, appear; arise; become; prove to be; be (Bee); + existumatio_F_N : N ; -- [XXXBO] :: opinion (good/public); reputation/name; (forming of) judgment/view; credit; + existumator_M_N : N ; -- [XXXDO] :: judge; critic, one who forms an opinion; + existumo_V2 : V2 ; -- [XXXBO] :: value/esteem; form/hold opinion/view; think/suppose; estimate; judge/consider; + exitabiliter_Adv : Adv ; -- [FXXFE] :: ruinously; perniciously; + exitiabilis_A : A ; -- [XXXDX] :: destructive, deadly; + exitialis_A : A ; -- [XXXDX] :: destructive, deadly; + exitiosus_A : A ; -- [XXXDX] :: destructive, pernicious, deadly; + exitium_N_N : N ; -- [XXXBX] :: destruction, ruin; death; mischief; + exitus_M_N : N ; -- [XXXBX] :: exit, departure; end, solution; death; outlet, mouth (of river); + exlex_A : A ; -- [XXXEC] :: bound by no law, lawless, reckless; + exoculo_V2 : V2 ; -- [XXXEO] :: blind, put out/deprive of eyes/sight; + exolesco_V : V ; -- [XXXCO] :: grow up, become adult; grow stale, deteriorate; die out/fade away; be forgotten; + exoletus_M_N : N ; -- [XXXEO] :: male prostitute; + exolvo_V2 : V2 ; -- [XXXBO] :: |set free, release; end, do away with; pay; award; release; perform/discharge; + exomologesis_F_N : N ; -- [FEXEE] :: confession of sin; + exonero_V : V ; -- [XXXDX] :: unload, disburden, discharge; + exopto_V : V ; -- [XXXDX] :: long for; + exorabilis_A : A ; -- [XXXDX] :: capable of being moved by entreaty; + exoratio_F_N : N ; -- [EEXDE] :: prayer; petition; mercy; + exorbito_V : V ; -- [GXXEK] :: derail; + exorcismus_M_N : N ; -- [XEXES] :: exorcism; + exorcista_M_N : N ; -- [EEXCV] :: exorcist; cleric of minor orders (second level from top/deacon); + exorcistatus_M_N : N ; -- [FEXFE] :: exorcist, third of four lesser orders of Catholic Church; (no longer exists); + exorcistus_M_N : N ; -- [EEXCV] :: exorcist; cleric of minor orders (second level from top/deacon); + exorcizo_V2 : V2 ; -- [FEXEE] :: exorcise; + exordior_V : V ; -- [XXXDX] :: begin, commence; + exordium_N_N : N ; -- [XXXDX] :: beginning; introduction, preface; + exorior_V : V ; -- [XXXBX] :: come out, come forth; bring; appear; rise, begin, spring up; cheer up; + exornatio_F_N : N ; -- [XXXEZ] :: embellishment (Collins); + exornatulus_A : A ; -- [XXXFO] :: prettily dressed; + exornatus_A : A ; -- [XXXFO] :: ornamented; embellished; + exorno_V : V ; -- [XXXDX] :: furnish with, adorn, embellish; + exoro_V2 : V2 ; -- [XXXBO] :: persuade, obtain/win over by entreaty, prevail upon; beg, plead, entreat; + exors_A : A ; -- [XXXDX] :: without share in; exempt from lottery; + exos_A : A ; -- [XXXEC] :: boneless, without bones; + exosculo_V2 : V2 ; -- [FXXEE] :: kiss; + exosculor_V : V ; -- [XXXCO] :: kiss fondly; express fondness for; admire greatly; + exosso_V2 : V2 ; -- [XXXEC] :: bone/de-bone, take out the bones, filet; + exostra_F_N : N ; -- [XDXEC] :: theatrical machine (revealing the inside of house to spectators); + exosus_A : A ; -- [XXXDX] :: hating; + exotericus_A : A ; -- [XXXFS] :: external; exoteric; + exoticus_A : A ; -- [XXXEC] :: foreign, outlandish, exotic; + expallesco_V2 : V2 ; -- [XXXDX] :: turn pale, turn very pale; go white as a ghost; + expallidus_A : A ; -- [XXXFO] :: very/exceedingly pale/wan; + expalpo_V2 : V2 ; -- [XXXEC] :: coax out; + expando_V2 : V2 ; -- [XXXAX] :: spread out, expand; expound; + expansio_F_N : N ; -- [XXXEE] :: expansion; spreading out; + expatior_V : V ; -- [XXXDX] :: wander from the course; spread out; + expavesco_V2 : V2 ; -- [XXXDX] :: become frightened; + expectatio_F_N : N ; -- [XXXDX] :: expectation; suspense; + expecto_V : V ; -- [XXXDX] :: await, expect; anticipate; hope for; + expectoro_V : V ; -- [BXXFS] :: banish from mind; + expedio_V2 : V2 ; -- [XXXBX] :: disengage, loose, set free; be expedient; procure, obtain, make ready; + expeditio_F_N : N ; -- [XXXDX] :: expedition, campaign; rapid march; account; proof by elimination; + expeditus_A : A ; -- [XXXDX] :: unencumbered; without baggage; light armed; + expeditus_M_N : N ; -- [XXXDX] :: light armed soldier; + expedius_A : A ; -- [XXXDX] :: free, easy; ready; ready for action; without baggage; unencumbered; + expello_V2 : V2 ; -- [XXXBX] :: drive out, expel, banish; disown, reject; + expendiendus_A : A ; -- [FXXFE] :: settled; disentangled; + expendo_V2 : V2 ; -- [XXXDX] :: pay; pay out; weigh, judge; pay a penalty; + expensa_F_N : N ; -- [XXXCO] :: expenditure, money paid out; (assume pecunia); expenses (Bee); + expensio_F_N : N ; -- [XXXEE] :: expense; expenditure; + expensum_N_N : N ; -- [XXXCO] :: expenditure, money paid out; expenses (Bee); + expensus_A : A ; -- [XXXCO] :: paid out (money); entered into one's account as paid; + expergefacio_V2 : V2 ; -- [XXXCO] :: awaken/wake up (from sleep); rouse/arouse (from inactivity); excite/stir up; + expergefio_V : V ; -- [XXXCO] :: be awakened/aroused/excited; (expergefacio PASS); + expergiscor_V : V ; -- [XXXDX] :: awake; bestir oneself; + experiens_A : A ; -- [XXXDX] :: active, enterprising (w/GEN); + experientia_F_N : N ; -- [XXXDX] :: trial, experiment; experience; + experimentalis_A : A ; -- [GXXEK] :: experimental; + experimentum_N_N : N ; -- [XXXDX] :: trial, experiment, experience; + experior_V : V ; -- [XXXDX] :: test, put to the test; find out; attempt, try; prove, experience; + expers_A : A ; -- [XXXDX] :: free from (w/GEN); without; lacking experience; immune from; + experta_F_N : N ; -- [XXXFE] :: expert, she who has experience; + expertus_A : A ; -- [XXXEO] :: well-proved, tested; shown to be true; + expertus_M_N : N ; -- [XXXFE] :: expert, one who has experience; + expes_A : A ; -- [XXXDX] :: hopeless (only NOM S); without hope; + expetesso_V2 : V2 ; -- [XXXEC] :: desire, wish for; + expeto_V2 : V2 ; -- [XXXDX] :: ask for; desire; aspire to; demand; happen; fall on (person); + expiatio_F_N : N ; -- [XXXCO] :: atonement, expiation, purification; + expiatorius_A : A ; -- [EXXEE] :: satisfactory; expiatory, expiating; + expilo_V : V ; -- [XXXDX] :: plunder, rob, despoil; + expio_V : V ; -- [XXXDX] :: expiate, atone for; avert by expiatory rites; + expiro_V : V ; -- [XXXDX] :: breathe out; exhale; expire; die; cease; + expiscor_V : V ; -- [XXXEO] :: angle/fish for (information); search/fish/find out; inquire; (slang?); + explanatio_F_N : N ; -- [XXXDO] :: exposition, setting out/enunciating clearly in words; explanation (Ecc); + explano_V : V ; -- [XXXDX] :: explain; + explanto_V2 : V2 ; -- [XXXEO] :: uproot, pull up/out/off (plant/shoot); cast out (Ecc); + explaudo_V2 : V2 ; -- [XDXCO] :: drive (actor) off stage by clapping; scare off; reject (claim); eject/cast out; + explementum_N_N : N ; -- [XXXEC] :: filling, stuffing; + expleo_V : V ; -- [XXXBX] :: fill out; fill, fill up, complete, finish; satisfy, satiate; + expletio_F_N : N ; -- [XXXFO] :: fulfillment; process of perfecting; completion; satisfaction; obedience (to); + expletium_N_N : N ; -- [FLXFJ] :: issue; + expletivus_A : A ; -- [EXXFE] :: expletive, serving to fill out, introduced to occupy space or make up number; + explicatio_F_N : N ; -- [XXXCO] :: |planning (buildings, etc.), laying out; uncoiling; method/style of exposition; + explicativus_A : A ; -- [XXXEE] :: explanatory; + explicite_Adv : Adv ; -- [XXXFO] :: clearly, without ambiguity; plainly, explicitly (Ecc); + explicitus_A : A ; -- [XXXEO] :: clear, straightforward, explicit, plain; + explico_V : V ; -- [XXXDX] :: unfold, extend; set forth, explain; + explodeo_V : V ; -- [GWXEK] :: explode; + explodo_V2 : V2 ; -- [XDXCO] :: drive (actor) off stage by clapping; scare off; reject (claim); eject/cast out; + exploratio_F_N : N ; -- [XXXDO] :: investigation, searching out; examination, exploration; reconnaissance unit; + exploratior_A : A ; -- [XXXEZ] :: explored; + explorator_M_N : N ; -- [XXXCO] :: investigator, one who searches out; scout, spy; + exploro_V : V ; -- [XXXBX] :: search out, explore; test, try out; reconnoiter, investigate; + explosio_F_N : N ; -- [GWXEK] :: explosion; + explosivus_A : A ; -- [GWXEK] :: exploding; + expolio_V : V ; -- [XXXDX] :: plunder; + expolio_V2 : V2 ; -- [XXXDX] :: polish; refine; + expolitor_M_N : N ; -- [XXXEE] :: polisher; + exponens_M_N : N ; -- [GSXEK] :: exponent (math.); + exponentialis_A : A ; -- [GXXEK] :: exponential; + expono_V2 : V2 ; -- [XXXBX] :: set/put forth/out; abandon, expose; publish; explain, relate; disembark; + exporrigo_V2 : V2 ; -- [XXXCO] :: stretch/spread out; smooth (brow); extend; expand, widen scope of (idea); + exportaticius_A : A ; -- [GXXEK] :: of export; + exportator_M_N : N ; -- [GXXEK] :: exporter; + exporto_V : V ; -- [XXXDX] :: export, carry out; + exposco_V2 : V2 ; -- [XXXDX] :: request, ask for, demand; demand the surrender of; + expositio_F_N : N ; -- [GXXEK] :: |exhibition (of art, of objects); + expostulatio_F_N : N ; -- [XXXDX] :: complaint, protest; + expostulo_V : V ; -- [XXXDX] :: demand, call for, remonstrate, complain about; + expresse_Adv : Adv ; -- [XXXDO] :: expressly, for express purpose; clearly, distinctly; pointedly; w/precision; + expressim_Adv : Adv ; -- [XXXFO] :: explicitly; clearly; expressly; + expressio_F_N : N ; -- [XXXEO] :: expulsion/forcing out; elevating section (watermain); molding; expression (Ecc) + expressus_A : A ; -- [XXXDO] :: distinct/clear/plain/visible/prominent, clearly defined; closely modeled on; + exprimo_V2 : V2 ; -- [XXXBX] :: squeeze, squeeze/press out; imitate, copy; portray; pronounce, express; + exprobrabilis_A : A ; -- [EXXEE] :: worthy of reproach; + exprobratio_F_N : N ; -- [XXXDX] :: reproaching, reproach; + exprobro_V2 : V2 ; -- [XXXCO] :: reproach, upbraid, reprove; bring up as reproach (against person DAT); + expromo_V2 : V2 ; -- [XXXCO] :: bring/take out (from store), put out; put to use, put in play; disclose, reveal; + expropriatio_F_N : N ; -- [FLXFM] :: renunciation; deprivation (of property); + expugnabilis_A : A ; -- [XXXDX] :: open to assault; + expugnatio_F_N : N ; -- [XXXDX] :: storming, taking by storm; assault; + expugnator_M_N : N ; -- [XXXDX] :: conqueror; + expugnax_A : A ; -- [XXXDX] :: effectual in overcoming resistance; + expugno_V : V ; -- [XXXDX] :: assault, storm; conquer, plunder; accomplish; persuade; + expulsio_F_N : N ; -- [XXXDS] :: driving-out; expulsion; + expultrix_F_N : N ; -- [XXXEC] :: one who drives out; + expuo_V2 : V2 ; -- [XXXDX] :: spit out; eject; rid oneself of; + expurgatio_F_N : N ; -- [XXXEO] :: justification, vindication; excuse; action of cleaning; + expurgatus_A : A ; -- [XXXEE] :: expurgated; purified, cleaned up; + expurgo_V : V ; -- [XXXDX] :: cleanse, purify; exculpate; + expurigatio_F_N : N ; -- [XXXFO] :: justification, vindication; excuse; action of cleaning; + exquaesitio_F_N : N ; -- [EXXES] :: research, inquiry, investigation; seeking for; desiring; + exquaesitor_M_N : N ; -- [XXXFO] :: searcher; investigator, researcher; + exquiro_V2 : V2 ; -- [XXXDX] :: seek out, search for, hunt up; inquire into; + exquisitio_F_N : N ; -- [XXXEE] :: research, inquiry, investigation; + exquisitor_M_N : N ; -- [DXXES] :: searcher; investigator, researcher; + exsanguis_A : A ; -- [XXXDX] :: bloodless, pale, wan, feeble; frightened; + exsatio_V : V ; -- [XXXDX] :: satisfy, satiate; glut; + exsaturabilis_A : A ; -- [XXXDX] :: capable of being satiated; + exsaturatus_A : A ; -- [XXXEE] :: filled, satisfied, sated, having enough; + exsaturo_V : V ; -- [XXXDX] :: satisfy, sate, glut; + exscidium_N_N : N ; -- [XXXCS] :: military destruction (of towns/armies); ruin/demolition; subversion/overthrow; + exscindo_V2 : V2 ; -- [XXXCO] :: demolish/destroy, raze to ground (town/building); exterminate/destroy (people); + exscreo_V2 : V2 ; -- [XXXEC] :: cough out/up; + exscribo_V2 : V2 ; -- [XXXDX] :: copy, write out; + exsculpo_V2 : V2 ; -- [XXXES] :: carve out; erase; + exseco_V2 : V2 ; -- [XXXCO] :: cut out/off; remove/make (hole) by cutting; cut, make cut in; castrate; + exsecrabilis_A : A ; -- [XXXDX] :: detestable; accursed; + exsecramentum_N_N : N ; -- [EEXEE] :: accursed thing; increase, excess (Latham); excrement; [~ auri => gold fillings]; + exsecrandus_A : A ; -- [FXXEE] :: detestable; + exsecratio_F_N : N ; -- [XXXDX] :: imprecation, curse; + exsecribilis_A : A ; -- [XXXCO] :: accursed, detestable; of/belonging to cursing; + exsecror_V : V ; -- [XXXDX] :: curse; detest; + exsectio_F_N : N ; -- [XXXEC] :: cutting out; + exsecutio_F_N : N ; -- [XXXCO] :: performance, carrying out; enforcement (law), act to right wrong; discussion; + exsecutivus_A : A ; -- [FXXDE] :: executive; ministerial (Cal); + exsecuto_V2 : V2 ; -- [FXXEW] :: |execute, carry out (duty); go through, rehearse; pursue; develop (topic); + exsecutor_M_N : N ; -- [XXXDO] :: executor, one who carries out task; performer; avenger; + exsecutrix_F_N : N ; -- [XXXDE] :: executor (female), one who carries out task; performer; avenger; + exsequia_F_N : N ; -- [XEXCO] :: funeral procession/rites (pl.), obsequies; [~as ire => attend funeral]; + exsequiale_N_N : N ; -- [XXXEO] :: funeral rites (pl.); + exsequialis_A : A ; -- [XXXEO] :: funeral-, of/related to a funeral or funeral rites; + exsequior_V : V ; -- [XXXFO] :: follow in funeral procession to the grave; attend at the grave; + exsequor_V : V ; -- [XXXBO] :: |persist in; execute, carry out; rehearse; attain, arrive at, accomplish; + exsero_V2 : V2 ; -- [XXXDX] :: stretch forth; thrust out (of land); put out (plants); lay bare, uncover (body); + exserto_V : V ; -- [XXXES] :: stretch out; uncover; + exsicco_V : V ; -- [XXXDX] :: dry up; empty (vessel); + exsico_V2 : V2 ; -- [XXXCO] :: cut out/off; remove/make (hole) by cutting; cut, make cut in; castrate; + exsilio_V : V ; -- [XXXBO] :: spring/leap/burst forth/out, leap up, start up, bound; emerge into existence; + exsilium_N_N : N ; -- [XXXBO] :: exile, banishment; place of exile/retreat (L+S); exiles (pl.), those exiled; + exsistentia_F_N : N ; -- [FXXEF] :: existence; that by which essence becomes actual; + exsistimatio_F_N : N ; -- [XXXBO] :: opinion (good); reputation/name; esteem; judgment/view/estimation; credit; + exsisto_V2 : V2 ; -- [XXXAX] :: step out, come forth, emerge, appear, stand out, project; arise; come to light; + exsolvo_V2 : V2 ; -- [XXXBO] :: |set free, release; end, do away with; pay; award; release; perform/discharge; + exsomnis_A : A ; -- [XXXEC] :: sleepless, wakeful; + exsors_A : A ; -- [XXXDX] :: without share in exempt from lottery; + exspatior_V : V ; -- [XXXDX] :: digress, go from the course, wander from the way, spread, extend; + exspectatio_F_N : N ; -- [XXXDX] :: expectation; suspense; + exspecto_V : V ; -- [XXXAX] :: lookout for, await; expect, anticipate, hope for; + exspergo_V2 : V2 ; -- [XXXEC] :: sprinkle, scatter; + exspes_A : A ; -- [XXXDX] :: hopeless (only NOM S); + exspiro_V : V ; -- [XXXDX] :: breathe out, exhale; expire; cease, die; + exsplendesco_V2 : V2 ; -- [XXXDX] :: glitter; shine; become conspicuous; + exspolio_V : V ; -- [XXXDX] :: pillage, rob, plunder; + exspuo_V2 : V2 ; -- [XXXDX] :: spit out; eject; rid oneself of; + exstasia_F_N : N ; -- [FEXEF] :: rapture; ecstasy; trance; exstasis_1_N : N ; -- [DXXES] :: terror; amazement; ecstasy; - exstasis_2_N : N ; - exstasis_F_N : N ; - exstaticus_A : A ; - exsterno_V : V ; - exstimulo_V : V ; - exstinctio_F_N : N ; - exstinctivus_A : A ; - exstinctor_M_N : N ; - exstinguo_V2 : V2 ; - exstirpo_V2 : V2 ; - exsto_V : V ; - exstructio_F_N : N ; - exstruo_V2 : V2 ; - exsudo_V : V ; - exsuffatio_F_N : N ; - exsufflator_M_N : N ; - exsufflo_V2 : V2 ; - exsuflatora_M_N : N ; - exsuflo_V2 : V2 ; + exstasis_2_N : N ; -- [DXXES] :: terror; amazement; ecstasy; + exstasis_F_N : N ; -- [FEXDF] :: rapture; ecstasy; trance; + exstaticus_A : A ; -- [FEXEM] :: ecstatic; + exsterno_V : V ; -- [XXXDX] :: terrify greatly, frighten; madden; + exstimulo_V : V ; -- [XXXDX] :: goad; stimulate; + exstinctio_F_N : N ; -- [XWXEE] :: annihilation, slaughter; extinction; dissolution; + exstinctivus_A : A ; -- [XXXEE] :: extinguishing, annihilating; + exstinctor_M_N : N ; -- [XWXEE] :: destroyer, annihilator; + exstinguo_V2 : V2 ; -- [XXXBX] :: put out, extinguish, quench; kill, destroy; + exstirpo_V2 : V2 ; -- [XXXEC] :: root out, extirpate; pull/pluck out/up by roots; eradicate root and branch; + exsto_V : V ; -- [XXXBX] :: stand forth/out; exist; be extant/visible; be on record; + exstructio_F_N : N ; -- [XXXFS] :: building-up; erection; adorning; + exstruo_V2 : V2 ; -- [XXXBX] :: pile/build up, raise, build, construct; + exsudo_V : V ; -- [XXXDX] :: exude; sweat out; + exsuffatio_F_N : N ; -- [XXXEE] :: act of blowing; + exsufflator_M_N : N ; -- [DXXFS] :: one who blows at/upon; mocker; despiser; + exsufflo_V2 : V2 ; -- [DXXCS] :: blow at/upon; blow away; + exsuflatora_M_N : N ; -- [DXXFS] :: one who blows at/upon; mocker; despiser; (exsufflator with 1 f - Whitaker); + exsuflo_V2 : V2 ; -- [EXXCS] :: blow at/upon; blow away; (exsufflo with 1 f - Whitaker); exsul_F_N : N ; -- [XXXBX] :: exile (M/F), banished person; wanderer; - exsul_M_N : N ; - exsulo_V : V ; - exsultabilis_A : A ; - exsultatio_F_N : N ; - exsultim_Adv : Adv ; - exsulto_V : V ; - exsuperabilis_A : A ; - exsupero_V : V ; - exsurdo_V : V ; - exsurgo_V : V ; - exsurrectio_F_N : N ; - exsuscito_V : V ; - extasia_F_N : N ; + exsul_M_N : N ; -- [XXXBX] :: exile (M/F), banished person; wanderer; + exsulo_V : V ; -- [XXXDX] :: be exile, live in exile; be banished; be a stranger; + exsultabilis_A : A ; -- [XXXEE] :: joyful; + exsultatio_F_N : N ; -- [XXXDX] :: exultation, joy; + exsultim_Adv : Adv ; -- [XXXEC] :: friskily; + exsulto_V : V ; -- [XXXBX] :: rejoice; boast; exalt; jump about, let oneself go; + exsuperabilis_A : A ; -- [XXXDX] :: able to be overcome; + exsupero_V : V ; -- [XXXDX] :: excel; overtop; surpass; overpower; + exsurdo_V : V ; -- [XXXEC] :: deafen; make dull or blunt (taste); + exsurgo_V : V ; -- [XXXBO] :: |rise (to one's feet/from bed/moon/in revolt); stand/rear/get up; come to being; + exsurrectio_F_N : N ; -- [EXXFS] :: arising; + exsuscito_V : V ; -- [XXXDX] :: awaken; kindle; stir up, excite; + extasia_F_N : N ; -- [FEXEF] :: rapture; ecstasy; trance; extasis_1_N : N ; -- [DXXES] :: terror; amazement; ecstasy; - extasis_2_N : N ; - extasis_F_N : N ; - extaticus_A : A ; - extemplo_Adv : Adv ; - extemporalis_A : A ; - extemporalitas_F_N : N ; - extemporaliter_Adv : Adv ; - extendo_V2 : V2 ; - extensio_F_N : N ; - extensor_M_N : N ; - extensus_A : A ; - extensus_M_N : N ; - extentero_V2 : V2 ; - extenuo_V : V ; - exter_A : A ; - extera_F_N : N ; - extergeo_V2 : V2 ; - extergo_V2 : V2 ; - exteritio_F_N : N ; - exterius_Adv : Adv ; - exterminator_M_N : N ; - exterminium_N_N : N ; - extermino_V : V ; - externo_V : V ; - externus_A : A ; - exterreo_V : V ; - exterus_A : A ; - exterus_M_N : N ; - extimesco_V2 : V2 ; - extimulo_V : V ; - extimum_N_N : N ; - extimus_A : A ; - extinctio_F_N : N ; - extinctorium_N_N : N ; - extinguo_V2 : V2 ; - extispex_M_N : N ; - extispicio_V2 : V2 ; - extispicum_N_N : N ; - extispicus_M_N : N ; - exto_V : V ; - extollentia_F_N : N ; - extollo_V : V ; - extorqueo_V : V ; - extorris_A : A ; - extra_Acc_Prep : Prep ; - extra_Adv : Adv ; - extractio_F_N : N ; - extractum_N_N : N ; - extraculum_N_N : N ; - extradiocesanus_A : A ; - extraho_V2 : V2 ; - extrajudicialis_A : A ; - extrajudicialiter_Adv : Adv ; - extramuranus_A : A ; - extranea_F_N : N ; - extraneus_A : A ; - extraneus_M_N : N ; - extraordinarius_A : A ; - extrapolatio_F_N : N ; - extrarius_A : A ; - extrasacramentalis_A : A ; - extremismus_M_N : N ; - extremista_M_N : N ; - extremitas_F_N : N ; - extremum_N_N : N ; - extremus_M_N : N ; - extrico_V : V ; - extrinsecus_A : A ; - extrinsecus_Adv : Adv ; - extritio_F_N : N ; - extructio_F_N : N ; - extrudo_V2 : V2 ; - extruo_V2 : V2 ; - extum_N_N : N ; - extumum_N_N : N ; - extumus_A : A ; - extundo_V2 : V2 ; - exturbo_V : V ; - exubero_V : V ; - exudo_V : V ; + extasis_2_N : N ; -- [DXXES] :: terror; amazement; ecstasy; + extasis_F_N : N ; -- [FEXDF] :: rapture; ecstasy; trance; + extaticus_A : A ; -- [FEXEM] :: ecstatic; + extemplo_Adv : Adv ; -- [XXXDX] :: immediately, forthwith; + extemporalis_A : A ; -- [XXXEO] :: unpremeditated, extempore, ad-lib; of a person speaking off the cuff; + extemporalitas_F_N : N ; -- [XGXFO] :: ability to speak/compose extemporaneously; + extemporaliter_Adv : Adv ; -- [DGXFS] :: unpremeditatedly, extemporaneously; off the cuff; at the moment; + extendo_V2 : V2 ; -- [XXXAO] :: |make even/straight/smooth; stretch out in death, (PASS) lie full length; + extensio_F_N : N ; -- [XXXFO] :: span, hand-elbow; extension/stretching/spreading (L+S); swelling/tumor; strain; + extensor_M_N : N ; -- [DXXES] :: stretcher; one who stretches/extends; torturer (using rack); + extensus_A : A ; -- [XXXFX] :: lengthened (vowel); wide, extended, extensive (L+S); prolonged, drawn out; + extensus_M_N : N ; -- [XXXFO] :: extent; stretch; (of eagle's wings); + extentero_V2 : V2 ; -- [EXXFW] :: cut open; + extenuo_V : V ; -- [XXXDX] :: make thin; diminish; + exter_A : A ; -- [XXXCO] :: outer/external; outward; on outside, far; of another country, foreign; strange; + extera_F_N : N ; -- [XXXEE] :: foreigner (female); + extergeo_V2 : V2 ; -- [XXXEE] :: wipe; wipe dry; wipe away; + extergo_V2 : V2 ; -- [FXXEE] :: wipe; wipe dry; wipe away; + exteritio_F_N : N ; -- [EXXEP] :: corruption; destruction (Vulgate 4 Ezra 15:39); + exterius_Adv : Adv ; -- [EXXEE] :: outwardly; externally; + exterminator_M_N : N ; -- [XXXEE] :: destroyer; exterminator; + exterminium_N_N : N ; -- [EXXEE] :: extermination, utter destruction; + extermino_V : V ; -- [XXXDX] :: banish, expel; dismiss; + externo_V : V ; -- [XXXDX] :: terrify greatly, frighten; madden; + externus_A : A ; -- [XXXBX] :: outward, external; foreign, strange; + exterreo_V : V ; -- [XXXDX] :: strike with terror, scare; + exterus_A : A ; -- [DXXES] :: outer/external; outward; on outside, far; of another country, foreign; strange; + exterus_M_N : N ; -- [XXXEE] :: foreigner (male); + extimesco_V2 : V2 ; -- [XXXDX] :: take fright, be alarmed, dread; + extimulo_V : V ; -- [XXXDX] :: goad; stimulate; + extimum_N_N : N ; -- [XXXEO] :: outside; end; + extimus_A : A ; -- [XXXCO] :: outermost; farthest; end/utmost edge of; + extinctio_F_N : N ; -- [FXXFM] :: |quenching (esp. of lime, Latham); L:debt-discharge; + extinctorium_N_N : N ; -- [EXXEE] :: candlesnuffer; extinguisher; + extinguo_V2 : V2 ; -- [XWXDX] :: quench, extinguish; kill; destroy; + extispex_M_N : N ; -- [XEXFO] :: soothsayer who practices divination by observation of entrails of victim; + extispicio_V2 : V2 ; -- [XEXFW] :: examination of entrails or sacrificial victims as means of divination; + extispicum_N_N : N ; -- [XEXEO] :: examination of entrails or sacrificial victims as means of divination; + extispicus_M_N : N ; -- [XEXIO] :: one who practices divination by observation of entrails; + exto_V : V ; -- [XXXDX] :: stand out or forth, project be visible, exist, be on record; + extollentia_F_N : N ; -- [FXXEE] :: insolence; haughtiness; pride; + extollo_V : V ; -- [XXXBX] :: raise; lift up; extol, advance; erect (building); + extorqueo_V : V ; -- [XXXBX] :: extort; tear away, twist away; twist/wrench out; + extorris_A : A ; -- [XXXDX] :: exiled; + extra_Acc_Prep : Prep ; -- [XXXAX] :: outside of, beyond, without, beside; except; + extra_Adv : Adv ; -- [XXXDX] :: outside; + extractio_F_N : N ; -- [GXXEK] :: extraction; + extractum_N_N : N ; -- [GSXEK] :: extract (chemistry); + extraculum_N_N : N ; -- [GXXEK] :: corkscrew; + extradiocesanus_A : A ; -- [FEXFE] :: extradiocesan, outside diocese; + extraho_V2 : V2 ; -- [XXXBX] :: drag out; prolong; rescue, extract; remove; + extrajudicialis_A : A ; -- [ELXEE] :: extrajudicial; outside court; outside course of law; not legally authorized; + extrajudicialiter_Adv : Adv ; -- [ELXFE] :: extrajudicially; outside court/law; + extramuranus_A : A ; -- [XXXEE] :: beyond (city) walls; without walls; + extranea_F_N : N ; -- [XXXEE] :: foreigner (female); + extraneus_A : A ; -- [XXXDX] :: external, extraneous, foreign; not belonging to one's family or household; + extraneus_M_N : N ; -- [XXXEE] :: foreigner (male); + extraordinarius_A : A ; -- [XXXDX] :: supplementary; special; immoderate; + extrapolatio_F_N : N ; -- [GXXEK] :: extrapolation; + extrarius_A : A ; -- [XXXCO] :: external; strange, not of one's household; not directly connected; extraneous; + extrasacramentalis_A : A ; -- [FEXFE] :: extrasacramental; + extremismus_M_N : N ; -- [GXXEK] :: extremism; + extremista_M_N : N ; -- [GXXEK] :: extremist; + extremitas_F_N : N ; -- [XXXCO] :: border/outline/perimeter; end/extremity; ending/suffix; extreme condition/case; + extremum_N_N : N ; -- [XXXDX] :: limit, outside; end; + extremus_M_N : N ; -- [XXXAX] :: rear (pl.); + extrico_V : V ; -- [XXXDX] :: disentangle, extricate, free; + extrinsecus_A : A ; -- [XXXCE] :: outer; outside, external; extrinsic; unessential; extraneous; + extrinsecus_Adv : Adv ; -- [XXXCO] :: from without/outside; externally; from extraneous source; w/no inside knowledge; + extritio_F_N : N ; -- [EXXFP] :: destruction; exhausting wear; misery (Vulgate); + extructio_F_N : N ; -- [XXXFS] :: building-up; erection; adorning; + extrudo_V2 : V2 ; -- [XXXDX] :: thrust out; draw out; + extruo_V2 : V2 ; -- [XXXDX] :: pile up; build up, raise; + extum_N_N : N ; -- [XXXDX] :: bowels (pl.); entrails of animals (esp. heart, lungs, liver) for divination; + extumum_N_N : N ; -- [XXXEO] :: outside; the end; + extumus_A : A ; -- [XXXCO] :: outermost; farthest; end/utmost edge of; + extundo_V2 : V2 ; -- [XXXDX] :: beat or strike out produce with effort; + exturbo_V : V ; -- [XXXDX] :: drive away, put away a wife; + exubero_V : V ; -- [XXXDX] :: surge or gush up; be abundant, be fruitful; + exudo_V : V ; -- [XXXDX] :: exude; sweat out; exul_F_N : N ; -- [XXXDX] :: exile (M/F), banished person; wanderer; - exul_M_N : N ; - exulceratio_F_N : N ; - exulo_V : V ; - exultatio_F_N : N ; - exulto_V : V ; - exululo_V : V ; - exundo_V : V ; - exuo_V2 : V2 ; - exuperabilis_A : A ; - exupero_V : V ; - exurgeo_V2 : V2 ; - exurgo_V : V ; - exuro_V2 : V2 ; - exuvia_F_N : N ; + exul_M_N : N ; -- [XXXDX] :: exile (M/F), banished person; wanderer; + exulceratio_F_N : N ; -- [XBXDO] :: ulceration, condition of being raw/unhealed; irritation, that which exasperates; + exulo_V : V ; -- [XXXDX] :: be exile, live in exile; be banished; be a stranger; + exultatio_F_N : N ; -- [XXXDX] :: exultation, joy; + exulto_V : V ; -- [XXXDX] :: jump about; let oneself go; exult; + exululo_V : V ; -- [XXXDX] :: invoke with howls; + exundo_V : V ; -- [XXXDX] :: gush forth; overflow with; + exuo_V2 : V2 ; -- [XXXBX] :: pull off; undress, take off; strip, deprive of; lay aside, cast off; + exuperabilis_A : A ; -- [XXXDX] :: able to be overcome; + exupero_V : V ; -- [XXXDX] :: excel; overtop; surpass; overpower; + exurgeo_V2 : V2 ; -- [XXXEO] :: squeeze out; + exurgo_V : V ; -- [XXXBO] :: |rise (to one's feet/from bed/moon/in revolt); stand/rear/get up; come to being; + exuro_V2 : V2 ; -- [XXXBO] :: burn (up/out/completely); destroy/devastate by fire; dry up, parch; scald; + exuvia_F_N : N ; -- [XXXDX] :: things stripped off (pl.); spoils, booty; memento, something of another's; 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 ; - faber_M_N : N ; - fabre_Adv : Adv ; - fabrefacio_V2 : V2 ; - fabrefio_V : V ; - fabrica_F_N : N ; - fabricatio_F_N : N ; - fabricator_M_N : N ; - fabricensis_M_N : N ; - fabrico_V2 : V2 ; - fabricor_V : V ; - fabrile_N_N : N ; - fabrilis_A : A ; - fabriliter_Adv : Adv ; - fabula_F_N : N ; - fabulatio_F_N : N ; - fabulator_M_N : N ; - fabulo_V : V ; - fabulor_V : V ; - fabulositas_F_N : N ; - fabulosus_A : A ; - facesso_V2 : V2 ; - facetia_F_N : N ; - facetus_A : A ; - fachirus_M_N : N ; - facialis_A : A ; - facies_F_N : N ; - facile_Adv : Adv ; - facilis_A : A ; - facilitas_F_N : N ; - faciliter_Adv : Adv ; - facilumed_Adv : Adv ; - facinarose_Adv : Adv ; - facinarosus_A : A ; - facinerosus_A : A ; - facinorose_Adv : Adv ; - facinorosus_A : A ; - facinus_N_N : N ; - facio_V2 : V2 ; - facticius_A : A ; - factio_F_N : N ; - factiosus_A : A ; - factispecies_F_N : N ; - factitator_M_N : N ; - factitius_A : A ; - factito_V : V ; - factor_M_N : N ; - factum_N_N : N ; - factura_F_N : N ; - facula_F_N : N ; - facultas_F_N : N ; - facultativus_A : A ; - facunde_Adv : Adv ; - facundia_F_N : N ; - facunditas_F_N : N ; - facundus_A : A ; - faecatus_A : A ; - faecula_F_N : N ; - faeculentia_F_N : N ; - faeculentus_A : A ; - faedus_M_N : N ; - faeles_F_N : N ; - faenebris_A : A ; - faeneratio_F_N : N ; - faenerator_M_N : N ; - faenero_V : V ; - faeneror_V : V ; - faeneus_A : A ; - faeniculum_N_N : N ; - faenile_N_N : N ; - faeniseca_M_N : N ; - faenisecium_N_N : N ; - faenisicia_F_N : N ; - faenisicium_N_N : N ; - faenum_N_N : N ; - faenus_N_N : N ; - faeteo_V : V ; - faetidus_A : A ; - faetor_M_N : N ; - faetulentus_A : A ; - faetutina_F_N : N ; - faex_F_N : N ; - fagineus_A : A ; - faginus_A : A ; - fagottum_N_N : N ; - fagus_F_N : N ; - fala_F_N : N ; - falarica_F_N : N ; - falcanus_M_N : N ; - falcarius_M_N : N ; - falcatus_A : A ; - falcifer_A : A ; - falcitas_F_N : N ; - falda_F_N : N ; - faldistorium_N_N : N ; - falere_N_N : N ; - falisca_F_N : N ; - fallacia_F_N : N ; - fallacies_F_N : N ; - fallaciloquus_A : A ; - fallaciosus_A : A ; - fallacitas_F_N : N ; - fallaciter_Adv : Adv ; - fallax_A : A ; - fallo_V2 : V2 ; - falsarius_M_N : N ; - falsidicus_A : A ; - falsificatio_F_N : N ; - falsifico_V : V ; - falsiloquus_A : A ; - falsitas_F_N : N ; - falso_Adv : Adv ; - falso_V2 : V2 ; - falsum_N_N : N ; - falsus_A : A ; - falx_F_N : N ; - fama_F_N : N ; - famelicus_A : A ; - famen_N_N : N ; - fames_F_N : N ; - famigerabilis_A : A ; - famigerator_M_N : N ; - familia_F_N : N ; - familialis_A : A ; - familiaris_A : A ; + f_M_N : N ; -- [XXXDX] :: son/daughter; filius/filia, abb. f.; + faba_F_N : N ; -- [XXXCO] :: bean (plant/seed); bead, pellet (resembling bean); + fabella_F_N : N ; -- [XXXDX] :: story, fable; play; + faber_A : A ; -- [XXXDX] :: skillful; ingenious; of craftsman/workman/artisan or his work; + faber_M_N : N ; -- [XXXDX] :: workman, artisan; smith; carpenter; + fabre_Adv : Adv ; -- [XXXES] :: skillfully; ingeniously; in workmanlike manner; + fabrefacio_V2 : V2 ; -- [XXXEC] :: make or fashion skillfully; + fabrefio_V : V ; -- [DXXEC] :: be made or fashioned skillfully; (fabrefacio PASS); + fabrica_F_N : N ; -- [XXXBO] :: |workshop, factory; workmanship; plan, device; trick; + fabricatio_F_N : N ; -- [XXXEE] :: structure; something made; act of making; factory-mark (Cal); + fabricator_M_N : N ; -- [XXXDX] :: builder, maker, fashioner; + fabricensis_M_N : N ; -- [EXXES] :: armorer; + fabrico_V2 : V2 ; -- [XXXBO] :: build/construct/fashion/forge/shape; train; get ready (meal); invent/devise; + fabricor_V : V ; -- [XXXCO] :: build/construct/fashion/forge/shape; train; get ready (meal); invent/devise; + fabrile_N_N : N ; -- [XXXEE] :: carpenter's tools (pl.); work done by carpenter; + fabrilis_A : A ; -- [XXXDX] :: of/belonging to a workman; of a metal-worker/carpenter/builder; + fabriliter_Adv : Adv ; -- [XXXEE] :: skillfully; in workmanlike manner; + fabula_F_N : N ; -- [XXXAX] :: story, tale, fable; play, drama; [fabulae! => rubbish!, nonsense!]; + fabulatio_F_N : N ; -- [XXXEE] :: fable; idle talk; lie; gossip; + fabulator_M_N : N ; -- [XXXDX] :: storyteller, story-teller; + fabulo_V : V ; -- [FXXEE] :: talk (familiarly), chat, converse; invent a story, make up a fable; + fabulor_V : V ; -- [XXXCO] :: talk (familiarly), chat, converse; invent a story, make up a fable; + fabulositas_F_N : N ; -- [EXXFS] :: fabulous invention (Pliny); + fabulosus_A : A ; -- [XXXDX] :: storied, fabulous; celebrated in story; + facesso_V2 : V2 ; -- [XXXDX] :: do; perpetrate; go away; + facetia_F_N : N ; -- [XXXDX] :: wit (pl.), joke; + facetus_A : A ; -- [XXXDX] :: witty, humorous; clever, adept; + fachirus_M_N : N ; -- [GXXEK] :: fakir; + facialis_A : A ; -- [GXXEK] :: facial; + facies_F_N : N ; -- [XXXAX] :: shape, face, look; presence, appearance; beauty; achievement; + facile_Adv : Adv ; -- [XXXBO] :: easily, readily, without difficulty; generally, often; willingly; heedlessly; + facilis_A : A ; -- [XXXAX] :: easy, easy to do, without difficulty, ready, quick, good natured, courteous; + facilitas_F_N : N ; -- [XXXDX] :: facility; readiness; good nature; levity; courteousness; + faciliter_Adv : Adv ; -- [XXXFO] :: easily; (cited as example of pedantry by Quintilianus); + facilumed_Adv : Adv ; -- [XXXIO] :: easily, readily, without difficulty; generally, often; willingly; heedlessly; + facinarose_Adv : Adv ; -- [XXXFS] :: viciously; scandalously; + facinarosus_A : A ; -- [XXXES] :: wicked, criminal; villainous; vicious; + facinerosus_A : A ; -- [XXXES] :: wicked, criminal; villainous; vicious; (facinosus); + facinorose_Adv : Adv ; -- [FXXEN] :: viciously; scandalously; (from facinosus); + facinorosus_A : A ; -- [XXXEC] :: wicked, criminal; vicious; + facinus_N_N : N ; -- [XXXBX] :: deed; crime; outrage; + facio_V : V ; -- [XXXBX] :: do, make; create; acquire; cause, bring about, fashion; compose; accomplish; + facio_V2 : V2 ; -- [XXXAO] :: |||compose/write; classify; provide; do/perform; commit crime; suppose/imagine; + facticius_A : A ; -- [FXXEM] :: artificial; skillfully-made; + factio_F_N : N ; -- [XXXDX] :: party, faction; partisanship; + factiosus_A : A ; -- [XXXDX] :: factious, seditious, turbulent; + factispecies_F_N : N ; -- [ELXEE] :: specific details; facts of case; + factitator_M_N : N ; -- [EXXEE] :: maker; doer; perpetrator; + factitius_A : A ; -- [FXXEE] :: artificial; + factito_V : V ; -- [XXXDX] :: do frequently, practice; + factor_M_N : N ; -- [XXXCO] :: maker; perpetrator (of a crime); player (in a ballgame); + factum_N_N : N ; -- [XXXDX] :: fact, deed, act; achievement; + factura_F_N : N ; -- [XXXEE] :: creation; work; deed; performance; handiwork; + facula_F_N : N ; -- [XXXEC] :: little torch; + facultas_F_N : N ; -- [XXXBX] :: means; ability, skill; opportunity, chance; resources (pl.), supplies; + facultativus_A : A ; -- [EXXEE] :: optional; + facunde_Adv : Adv ; -- [XXXDX] :: eloquently; fluently; + facundia_F_N : N ; -- [XXXDX] :: eloquence; + facunditas_F_N : N ; -- [FBXEM] :: fertility; G:readiness of speech; (=f(a)(e)cunditas); + facundus_A : A ; -- [XXXBX] :: eloquent; fluent; able to express eloquently/fluently (speech/written); + faecatus_A : A ; -- [XXXES] :: made-from-dregs; + faecula_F_N : N ; -- [XXXDX] :: lees/dregs of wine (used as a condiment or medicine); + faeculentia_F_N : N ; -- [EXXES] :: dregs; filth; + faeculentus_A : A ; -- [XXXES] :: full of dregs/sediment; worthless; thick; impure, filthy; + faedus_M_N : N ; -- [BAXEO] :: kid, young goat; two stars in constellation Auriga (Charioteer), "The Kid"; + faeles_F_N : N ; -- [XAXDO] :: cat; marten/ferret/polecat/wild cat; mouser; inveigler, seducer, tom-cat; thief; + faenebris_A : A ; -- [XXXDX] :: pertaining to usury; lent at interest; + faeneratio_F_N : N ; -- [XXXDX] :: usury, money-lending; + faenerator_M_N : N ; -- [XXXDX] :: usurer, money-lender; + faenero_V : V ; -- [XXXCO] :: lend money at interest; make interest/profit; invest/finance/supply; borrow; + faeneror_V : V ; -- [XXXDO] :: lend money at interest; make interest/profit; invest/finance/supply; borrow; + faeneus_A : A ; -- [XAXEC] :: of hay; [w/homines => men of straw]; + faeniculum_N_N : N ; -- [XAXES] :: fennel; + faenile_N_N : N ; -- [XXXDX] :: hayloft (pl.), place for storing hay; barn; + faeniseca_M_N : N ; -- [XAXEC] :: mower; a country-man; + faenisecium_N_N : N ; -- [XAXDO] :: mowing, cutting of hay; mown grass, hay; + faenisicia_F_N : N ; -- [XAXEO] :: mowing, cutting of hay; mown grass, hay; + faenisicium_N_N : N ; -- [XAXDO] :: mowing, cutting of hay; mown grass, hay; + faenum_N_N : N ; -- [XXXCO] :: hay; [~ Graecum => fenugreek]; + faenus_N_N : N ; -- [XXXDX] :: interest (on capital), usury; profit, gain; advantage; + faeteo_V : V ; -- [XXXDO] :: stink; have a bad/offensive smell/odor; + faetidus_A : A ; -- [XXXCO] :: stinking; foul-smelling; having a bad smell/odor; + faetor_M_N : N ; -- [XXXDO] :: stench; bad/foul smell, stink; foulness, noisomeness (L+S); + faetulentus_A : A ; -- [XXXFO] :: stinking; foul-smelling; fetulent (L+S); + faetutina_F_N : N ; -- [XXXEO] :: stinking/noisome place, cesspool, midden; + faex_F_N : N ; -- [XXXDX] :: dregs, grounds; sediment, lees; deposits; dregs of society; + fagineus_A : A ; -- [XXXDX] :: of the beech tree; of beech-wood, beechen; + faginus_A : A ; -- [XXXDX] :: of the beech tree; of beech-wood, beechen; + fagottum_N_N : N ; -- [GDXEK] :: bassoon; + fagus_F_N : N ; -- [XXXDX] :: beech tree; + fala_F_N : N ; -- [XXXEC] :: wooden tower or pillar; + falarica_F_N : N ; -- [XXXDX] :: heavy missile (orig. by siege tower catapult w/tow+pitch+fire); like hand spear; + falcanus_M_N : N ; -- [XXXDX] :: sickle-maker, scythe-maker; + falcarius_M_N : N ; -- [XAXEC] :: sickle-maker, scythe-maker; + falcatus_A : A ; -- [XXXDX] :: armed with scythes; sickle-shaped, curved, hooked; + falcifer_A : A ; -- [XXXDX] :: carrying a scythe; scythed; + falcitas_F_N : N ; -- [FXXEE] :: falseness; + falda_F_N : N ; -- [FEXEE] :: falda; (garment of white silk worn by Pope on solemn occasions); + faldistorium_N_N : N ; -- [EXXFE] :: faldstool; (chair with armrest but no back); (used by bishop not in his church); + falere_N_N : N ; -- [XAXFO] :: platform (in a pen for birds); + falisca_F_N : N ; -- [BXXFS] :: rack in a manger; + fallacia_F_N : N ; -- [XXXCO] :: deceit, trick, stratagem; deceptive behavior or an instance of this; + fallacies_F_N : N ; -- [XXXFO] :: deceit, trick, stratagem; deceptive behavior or an instance of this; + fallaciloquus_A : A ; -- [XXXFO] :: of deceptive/deceitful speech; speaking deceitfully/falsely (L+S); + fallaciosus_A : A ; -- [XXXEO] :: full of deception/deceit; deceitful, deceptive, fallacious (L+S); + fallacitas_F_N : N ; -- [XXXFO] :: deceptiveness; untrustworthiness; deceit, artifice (L+S); + fallaciter_Adv : Adv ; -- [XXXDO] :: deceptively/deceitfully, with intent to deceive; falsely, in misleading manner; + fallax_A : A ; -- [XXXBO] :: deceitful, treacherous; misleading, deceptive; false, fallacious; spurious; + fallo_V2 : V2 ; -- [XXXAX] :: deceive; slip by; disappoint; be mistaken, beguile, drive away; fail; cheat; + falsarius_M_N : N ; -- [XXXEE] :: forger; + falsidicus_A : A ; -- [XXXEC] :: lying; + falsificatio_F_N : N ; -- [GXXEK] :: falsification; + falsifico_V : V ; -- [GXXEK] :: falsify; + falsiloquus_A : A ; -- [XXXEC] :: lying; + falsitas_F_N : N ; -- [DXXCS] :: falsehood, untruth, fraud, deceit; (sometimes pl.); + falso_Adv : Adv ; -- [FXXEE] :: falsely; deceptively; spuriously; + falso_V2 : V2 ; -- [XXXEE] :: falsify; + falsum_N_N : N ; -- [XXXDX] :: falsehood, untruth, fraud, deceit; + falsus_A : A ; -- [XXXAX] :: wrong, lying, fictitious, spurious, false, deceiving, feigned, deceptive; + falx_F_N : N ; -- [XXXBX] :: sickle. scythe; pruning knife; curved blade; hook for tearing down walls; + fama_F_N : N ; -- [XXXAX] :: rumor; reputation; tradition; fame, public opinion, ill repute; report, news; + famelicus_A : A ; -- [XXXCO] :: famished, starved; hungry; + famen_N_N : N ; -- [FXXEM] :: utterance, articulation; word (Nelson); + fames_F_N : N ; -- [XXXAX] :: hunger; famine; want; craving; + famigerabilis_A : A ; -- [XXXES] :: famous, celebrated; + famigerator_M_N : N ; -- [XXXEC] :: rumor-monger; + familia_F_N : N ; -- [XXXBX] :: household; household of slaves; family; clan; religious community (Ecc); + familialis_A : A ; -- [FXXEE] :: of/relating to family; + familiaris_A : A ; -- [XXXBX] :: domestic; of family; intimate; [familiaris res => one's property or fortune]; 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 ; - familicus_A : A ; - famosus_A : A ; - famula_F_N : N ; - famulamen_N_N : N ; - famularis_A : A ; - famulatus_M_N : N ; - famulitium_N_N : N ; - famulor_V : V ; - famulus_A : A ; - famulus_M_N : N ; - fanale_N_N : N ; - fanaticus_A : A ; - fanatismus_M_N : N ; - fandus_A : A ; - fano_M_N : N ; - fano_V2 : V2 ; - fantasia_F_N : N ; - fanulum_N_N : N ; - fanum_N_N : N ; - fanus_N_N : N ; - far_N_N : N ; - farciatura_F_N : N ; - farcimen_N_N : N ; - farcio_V2 : V2 ; - farina_F_N : N ; - farinatus_A : A ; - farinula_F_N : N ; - farrago_F_N : N ; - farratus_A : A ; - farreus_A : A ; - fars_F_N : N ; - farsia_F_N : N ; - fas_N : N ; - fascea_F_N : N ; - fascia_F_N : N ; - fasciculus_M_N : N ; - fascinatio_F_N : N ; - fascinator_M_N : N ; - fascino_V : V ; - fasciola_F_N : N ; - fascis_M_N : N ; - fascismus_M_N : N ; - fascista_M_N : N ; - fascisticus_A : A ; - faseolus_M_N : N ; - fasianus_A : A ; - fastidio_V2 : V2 ; - fastidiosus_A : A ; - fastidium_N_N : N ; - fastigatus_A : A ; - fastigium_N_N : N ; - fastigo_V : V ; - fastigo_V2 : V2 ; - fastosus_A : A ; - fastuosus_A : A ; - fastus_A : A ; - fastus_M_N : N ; - fatale_N_N : N ; - fatalis_A : A ; - fatalismus_M_N : N ; - fataliter_Adv : Adv ; - fateor_V : V ; - faticanus_A : A ; - faticinus_A : A ; - fatidicus_A : A ; - fatifer_A : A ; - fatigatio_F_N : N ; - fatigatus_A : A ; - fatigo_V : V ; - fatiloqua_F_N : N ; - fatisco_V : V ; - fatiscor_V : V ; - fatua_F_N : N ; - fatue_Adv : Adv ; - fatuitas_F_N : N ; - fatum_N_N : N ; - fatuus_A : A ; - fatuus_M_N : N ; - faucitas_F_N : N ; - fauna_F_N : N ; - faustus_A : A ; - fautor_M_N : N ; - fautrix_F_N : N ; - faux_F_N : N ; - faveo_V : V ; - favilla_F_N : N ; - favillesco_V : V ; - favisor_M_N : N ; - favitor_M_N : N ; - favonius_M_N : N ; - favor_M_N : N ; - favorabilis_A : A ; - favorabiliter_Adv : Adv ; - favus_M_N : N ; - fax_F_N : N ; - fe_N : N ; - febricito_V : V ; - febricula_F_N : N ; - febris_F_N : N ; - februum_N_N : N ; - feclinditas_F_N : N ; - feculentia_F_N : N ; - fecundatio_F_N : N ; - fecunditas_F_N : N ; - fecundo_V2 : V2 ; - fecundus_A : A ; - feditas_F_N : N ; - fedus_M_N : N ; - fefello_V : V ; - feficius_A : A ; - fel_A : A ; - fel_N_N : N ; - feles_F_N : N ; - felicitas_F_N : N ; - feliciter_Adv : Adv ; - felio_V : V ; - felis_F_N : N ; - felix_A : A ; - fellato_V : V ; - fellator_M_N : N ; - fellatrix_F_N : N ; - fellico_V : V ; - fellito_V : V ; - fello_V : V ; - felo_M_N : N ; - felo_V : V ; - felonia_F_N : N ; - femella_F_N : N ; - femen_N_N : N ; - femina_F_N : N ; - feminal_N_N : N ; - feminalum_N_N : N ; - femineus_A : A ; - femininus_A : A ; - feminismus_M_N : N ; - feministria_F_N : N ; - feminus_A : A ; - femoralum_N_N : N ; - femur_N_N : N ; - fenero_V : V ; - feneror_V : V ; - fenestella_F_N : N ; - fenestra_F_N : N ; - feniculum_N_N : N ; - fenisecium_N_N : N ; - fenisicia_F_N : N ; - fenisicium_N_N : N ; - fenum_N_N : N ; - fenus_N_N : N ; - feodalis_M_N : N ; - feoffamentum_N_N : N ; - feoffator_M_N : N ; - feoffatus_M_N : N ; - feoffo_V : V ; - fer_N : N ; - fera_F_N : N ; - feralis_A : A ; - feraliter_Adv : Adv ; - feramentus_A : A ; - ferax_A : A ; - ferctum_N_N : N ; - fercuium_N_N : N ; - ferculum_N_N : N ; - fere_Adv : Adv ; - ferentarius_M_N : N ; - feretrum_N_N : N ; - feria_F_N : N ; - ferialis_A : A ; - feriatio_F_N : N ; - feriatus_A : A ; - feriatus_M_N : N ; - fericulum_N_N : N ; - ferina_F_N : N ; - ferinus_A : A ; - ferio_V : V ; - ferior_V : V ; - feritas_F_N : N ; - ferito_V : V ; - ferme_Adv : Adv ; - fermentaceus_M_N : N ; - fermentatus_A : A ; - fermento_V2 : V2 ; - fermentum_N_N : N ; - fero_V : V ; - ferocia_F_N : N ; - ferocio_V : V ; - ferocitas_F_N : N ; - ferociter_Adv : Adv ; - ferox_A : A ; - ferraiola_F_N : N ; - ferramentum_N_N : N ; - ferraria_F_N : N ; - ferrarius_A : A ; - ferrarius_M_N : N ; - ferratilis_A : A ; - ferratus_A : A ; - ferratus_M_N : N ; - ferraus_A : A ; - ferreus_A : A ; - ferrivia_F_N : N ; - ferriviarius_A : A ; - ferrogriseus_A : A ; - ferrous_A : A ; - ferrugineus_A : A ; - ferruginus_A : A ; - ferrugo_F_N : N ; - ferrum_N_N : N ; - ferrumen_N_N : N ; - ferrumino_V : V ; - fertilis_A : A ; - fertilisatio_F_N : N ; - fertilitas_F_N : N ; - fertum_N_N : N ; - ferula_F_N : N ; - ferumino_V : V ; - ferus_A : A ; - ferus_C_N : N ; - fervefacio_V2 : V2 ; - fervens_A : A ; - ferveo_V : V ; - fervesco_V : V ; - fervidus_A : A ; - fervo_V : V ; - fervor_M_N : N ; - fessus_A : A ; - festinanter_Adv : Adv ; - festinantia_F_N : N ; - festinatim_Adv : Adv ; - festinatio_F_N : N ; - festinato_Adv : Adv ; - festino_V : V ; - festinus_A : A ; - festive_Adv : Adv ; - festivitas_F_N : N ; - festiviter_Adv : Adv ; - festivus_A : A ; - festuca_F_N : N ; - festucula_F_N : N ; - festum_N_N : N ; - festus_A : A ; - feteo_V : V ; - fetialis_A : A ; - fetialis_M_N : N ; - fetidus_A : A ; - fetifer_A : A ; - fetifico_V : V ; - fetificus_A : A ; - feto_V : V ; - fetor_M_N : N ; - fetosus_A : A ; - fetulentus_A : A ; - fetuosus_A : A ; - fetura_F_N : N ; - feturatus_A : A ; - fetus_A : A ; - fetus_M_N : N ; - fetutina_F_N : N ; - feudum_N_N : N ; - fiala_F_N : N ; - fiber_M_N : N ; - fibiculaa_F_N : N ; - fibra_F_N : N ; - fibroma_N_N : N ; - fibula_F_N : N ; - fibulo_V2 : V2 ; - ficatum_N_N : N ; - ficedula_F_N : N ; - ficetum_N_N : N ; - ficte_Adv : Adv ; - fictice_Adv : Adv ; - ficticius_A : A ; - fictile_N_N : N ; - fictilis_A : A ; - fictio_F_N : N ; - fictitius_A : A ; - fictor_M_N : N ; - fictus_A : A ; - ficulneus_A : A ; - ficulnus_A : A ; - ficus_C_N : N ; - ficus_M_N : N ; - fideicommissarius_A : A ; - fideicommissarius_M_N : N ; - fideicommissum_N_N : N ; - fideicommissus_A : A ; - fideicommitto_V2 : V2 ; - fideiubeo_V2 : V2 ; - fideiussor_M_N : N ; - fidejussorius_A : A ; - fidelia_F_N : N ; - fidelis_A : A ; - fidelitas_F_N : N ; - fideliter_Adv : Adv ; - fidens_A : A ; - fides_F_N : N ; - fidicen_M_N : N ; - fidicina_F_N : N ; - fidicinus_A : A ; - fidicula_F_N : N ; - fidis_F_N : N ; - fido_1_V2 : V2 ; - fido_2_V2 : V2 ; - fiducia_F_N : N ; - fiducialiter_Adv : Adv ; - fiduciarius_A : A ; - fidus_A : A ; - figilina_F_N : N ; - figlina_F_N : N ; - figmentum_N_N : N ; - figo_V2 : V2 ; - figulina_F_N : N ; - figulus_M_N : N ; - figura_F_N : N ; - figuraliter_Adv : Adv ; - figuratio_F_N : N ; - figuro_V : V ; - filetum_N_N : N ; - filia_F_N : N ; - filiatio_F_N : N ; - filicatus_A : A ; - filiformis_A : A ; - filiola_F_N : N ; - filiolus_M_N : N ; - filius_M_N : N ; - filix_F_N : N ; - filtrum_N_N : N ; - filum_N_N : N ; - fimbria_F_N : N ; - fimbriatus_A : A ; - fimum_N_N : N ; - fimus_M_N : N ; - finalis_A : A ; - finalitas_F_N : N ; - finaliter_Adv : Adv ; - finalus_A : A ; - finctus_A : A ; - findo_V2 : V2 ; - fine_Abl_Prep : Prep ; - fingo_V2 : V2 ; - fini_Abl_Prep : Prep ; - finio_V2 : V2 ; + familiaris_M_N : N ; -- [XXXCO] :: member of household (family/servant/esp. slave); familiar acquaintance/friend; + familiaritas_F_N : N ; -- [XXXDX] :: intimacy; close friendship; familiarity; + familiariter_Adv : Adv ; -- [XXXDX] :: on friendly terms; + familicus_A : A ; -- [FXXDE] :: famished, starved; hungry; + famosus_A : A ; -- [XXXCO] :: famous, noted, renowned; talked of; infamous, notorious; slanderous, libelous; + famula_F_N : N ; -- [XXXDX] :: slave (female), maid, handmaiden, maid-servant; temple attendant; + famulamen_N_N : N ; -- [FXXFM] :: servanthood; + famularis_A : A ; -- [XXXDX] :: of slaves, servile; + famulatus_M_N : N ; -- [XXXEE] :: service; obedience; slavery; + famulitium_N_N : N ; -- [XXXES] :: servitude, slavery; the servants of a house; + famulor_V : V ; -- [XXXDX] :: be a servant, attend; + famulus_A : A ; -- [XXXDX] :: serving; serviceable; servile; subject; + famulus_M_N : N ; -- [XXXAX] :: slave (male), servant; attendant; + fanale_N_N : N ; -- [XXXEE] :: torch; candle; + fanaticus_A : A ; -- [XXXDX] :: fanatic, frantic; belonging to a temple; + fanatismus_M_N : N ; -- [GXXEK] :: fanaticism; + fandus_A : A ; -- [XXXDX] :: that may be spoken; proper, lawful; + fano_M_N : N ; -- [FEXEE] :: maniple, striped amice worn by Pope; + fano_V2 : V2 ; -- [EEXEE] :: dedicate; consecrate; + fantasia_F_N : N ; -- [ESXEP] :: phase; (of the moon); + fanulum_N_N : N ; -- [XEXEE] :: small temple; shrine; + fanum_N_N : N ; -- [XXXDX] :: sanctuary, temple; + fanus_N_N : N ; -- [XXXDX] :: that which is produced; interest on money/capital, usury, profit, gain; + far_N_N : N ; -- [XXXDX] :: husked wheat; grain, spelt; coarse meal, grits; sacrificial meal; dog's bread; + farciatura_F_N : N ; -- [FXXEE] :: insertion; + farcimen_N_N : N ; -- [XXXDX] :: sausage; + farcio_V2 : V2 ; -- [XXXDX] :: stuff, fill up/completely; gorge oneself; insert as stuffing, cram (into); + farina_F_N : N ; -- [XXXDX] :: flour/meal (for dough/pastry); stuff persons made of; dust/powder (grinding); + farinatus_A : A ; -- [GXXEK] :: powdery; flour-like; + farinula_F_N : N ; -- [EXXEE] :: fine flour; small amount of flour; + farrago_F_N : N ; -- [XXXDX] :: mixed fodder, mash; mixture, medley; a hodgepodge; trifle; + farratus_A : A ; -- [XXXEC] :: provided with grain; made of grain; + farreus_A : A ; -- [XXXDX] :: made of spelt or wheat ("corn") or meal; + fars_F_N : N ; -- [XXXEO] :: stuffing; minced meat; + farsia_F_N : N ; -- [EEXFE] :: insertion into parts of Mass; + fas_N : N ; -- [XXXBX] :: divine/heaven's law/will/command; that which is right/lawful/moral/allowed; + fascea_F_N : N ; -- [XXXBO] :: band/strip; ribbon; B:bandage; streak/band of cloud; headband/filet; sash (Ecc); + fascia_F_N : N ; -- [XXXBO] :: band/strip; ribbon; B:bandage; streak/band of cloud; headband/filet; sash (Ecc); + fasciculus_M_N : N ; -- [XXXDX] :: little bundle/packet; bunch (of flowers); + fascinatio_F_N : N ; -- [XXXEE] :: fascination; bewitching; + fascinator_M_N : N ; -- [XXXEE] :: charmer; enchanter; + fascino_V : V ; -- [XXXDX] :: cast a spell on, bewitch; + fasciola_F_N : N ; -- [XXXEC] :: little bandage; + fascis_M_N : N ; -- [XLIBO] :: |power/office of magistrate; bundle (esp. sticks/books); faggot; burden/load; + fascismus_M_N : N ; -- [GXXEK] :: fascism; + fascista_M_N : N ; -- [GXXEK] :: fascist; + fascisticus_A : A ; -- [GXXEK] :: fascist; + faseolus_M_N : N ; -- [XAXES] :: kidney-bean; (see also phaseolus); + fasianus_A : A ; -- [XAXES] :: pheasant; (phasianus); + fastidio_V2 : V2 ; -- [XXXDX] :: disdain; be scornful; feel aversion to, be squeamish; + fastidiosus_A : A ; -- [XXXDX] :: squeamish; exacting; disdainful; nauseating; + fastidium_N_N : N ; -- [XXXDX] :: loathing, disgust; squeamishness; scornful contempt, pride; fastidiousness; + fastigatus_A : A ; -- [XXXDX] :: pointed, sharp; wedge shaped; sloping, descending; + fastigium_N_N : N ; -- [XXXDX] :: peak, summit, top; slope, declivity, descent; gable, roof; sharp point, tip; + fastigo_V : V ; -- [XXXES] :: make pointed; slope to point; exalt to high; + fastigo_V2 : V2 ; -- [XXXEE] :: |exhaust; intoxicate; + fastosus_A : A ; -- [XXXDO] :: haughty, disdainful; proud, full of pride (L+S); + fastuosus_A : A ; -- [DXXES] :: haughty, disdainful; proud, full of pride (L+S); + fastus_A : A ; -- [XXXDX] :: not forbidden; [~ dies => day on which praetor's court was open, judicial day]; + fastus_M_N : N ; -- [XXXDX] :: scornful contempt, destain, haughtiness, arrogance, pride; + fatale_N_N : N ; -- [ELXEE] :: deadline (pl.); time limit; [fatalia legis=> time limit of law; legal deadline]; + fatalis_A : A ; -- [XXXBX] :: fated, destined; fatal, deadly; + fatalismus_M_N : N ; -- [GXXEK] :: fatalism; + fataliter_Adv : Adv ; -- [XXXCO] :: by destiny; by decree of fate; + fateor_V : V ; -- [XXXAX] :: admit, confess (w/ACC); disclose; acknowledge; praise (w/DAT); + faticanus_A : A ; -- [XXXEC] :: prophetic; + faticinus_A : A ; -- [XXXEC] :: prophetic; + fatidicus_A : A ; -- [XXXDX] :: prophetic; + fatifer_A : A ; -- [XXXDX] :: deadly, fatal; + fatigatio_F_N : N ; -- [XXXCO] :: fatigue, weariness; exhaustion; (also of land); + fatigatus_A : A ; -- [XXXEE] :: weary; + fatigo_V : V ; -- [XXXBX] :: weary, tire, fatigue; harass; importune; overcome; + fatiloqua_F_N : N ; -- [XXXEC] :: prophetess; + fatisco_V : V ; -- [XXXDX] :: gape, crack; crack open, part asunder; grow weak or exhausted, droop; + fatiscor_V : V ; -- [XXXDX] :: gape, crack; crack open, part asunder; grow weak or exhausted, droop; + fatua_F_N : N ; -- [XXXEE] :: fool (female); + fatue_Adv : Adv ; -- [XXXEE] :: foolishly; + fatuitas_F_N : N ; -- [FXXEM] :: foolishness; folly; + fatum_N_N : N ; -- [XPXAX] :: utterance, oracle; fate, destiny; natural term of life; doom, death, calamity; + fatuus_A : A ; -- [XXXDX] :: foolish, silly; idiotic; + fatuus_M_N : N ; -- [XXXEE] :: fool; + faucitas_F_N : N ; -- [FEXEE] :: prosperity; + fauna_F_N : N ; -- [GXXEK] :: fauna; + faustus_A : A ; -- [XXXDX] :: favorable; auspicious; lucky, prosperous; + fautor_M_N : N ; -- [XXXCO] :: patron, protector; admirer; supporter, partisan; who promotes/fosters interests; + fautrix_F_N : N ; -- [XXXDO] :: patroness/protector; admirer/supporter/partisan; she promotes/fosters interests; + faux_F_N : N ; -- [XXXAO] :: pharynx (usu pl.), gullet/throat/neck/jaws/maw; narrow pass/shaft/strait; chasm; + faveo_V : V ; -- [XXXDX] :: favor (w/DAT), befriend, support, back up; + favilla_F_N : N ; -- [XXXBX] :: glowing ashes, embers; spark; ashes; + favillesco_V : V ; -- [EXXES] :: be reduced to ashes; + favisor_M_N : N ; -- [XXXEO] :: patron, protector; admirer; supporter, partisan; + favitor_M_N : N ; -- [XXXCS] :: patron, protector; admirer; supporter, partisan; + favonius_M_N : N ; -- [GXXEK] :: hair dryer; + favor_M_N : N ; -- [XXXDX] :: favor, goodwill; bias; applause; + favorabilis_A : A ; -- [XXXBO] :: popular, treated/regarded with favor, favored; win favor, conciliatory; + favorabiliter_Adv : Adv ; -- [XLXCO] :: so as to win favor; stretching a point to favor one side, indulgently; + favus_M_N : N ; -- [XXXDX] :: honeycomb; + fax_F_N : N ; -- [XPXAX] :: torch, firebrand, fire; flame of love; torment; + fe_N : N ; -- [DEQEW] :: pe; (17th letter of Hebrew alphabet); (transliterate as P or F); + febricito_V : V ; -- [XBXDO] :: have fever, be feverish, be ill of a fever; + febricula_F_N : N ; -- [XXXEC] :: slight fever, feverishness; + febris_F_N : N ; -- [XXXDX] :: fever, attack of fever; + februum_N_N : N ; -- [XXXEC] :: religious purification; Roman feast (pl.) of purification; + feclinditas_F_N : N ; -- [XXXDX] :: fertility fecundity; + feculentia_F_N : N ; -- [FXXEN] :: dregs, lees; impurities, filth; + fecundatio_F_N : N ; -- [XXXEE] :: fertilization; act of making fertile/fruitful/productive; + fecunditas_F_N : N ; -- [XXXFE] :: fruitfulness; + fecundo_V2 : V2 ; -- [XXXEO] :: make fertile/fruitful; + fecundus_A : A ; -- [XXXBO] :: fertile, fruitful; productive (of offspring), prolific; abundant; imaginative; + feditas_F_N : N ; -- [FXXFM] :: filthy object; nuisance; + fedus_M_N : N ; -- [BAXEO] :: kid, young goat; two stars in constellation Auriga (Charioteer), "The Kid"; + fefello_V : V ; -- [FXXEN] :: be failed(by); be disappointed(with); + feficius_A : A ; -- [DEXDS] :: deifies, who makes one a god; consecrated, sacred; [lues ~ => epilepsy]; + fel_A : A ; -- [FEXEE] :: happy; [fel. (felis) mem. (memoriae)/rec. (recordationis) => of happy memory]; + fel_N_N : N ; -- [XBXCC] :: gall, bile; poison; bitterness, venom; gall bladder; + feles_F_N : N ; -- [XAXCO] :: cat; marten/ferret/polecat/wild cat; mouser; inveigler, seducer, tom-cat; thief; + felicitas_F_N : N ; -- [XXXDX] :: luck, good fortune; happiness; + feliciter_Adv : Adv ; -- [XXXDX] :: happily; + felio_V : V ; -- [XAXFO] :: roar/cry (expressing the cry of a leopard); + felis_F_N : N ; -- [XAXEO] :: cat; marten/ferret/polecat/wild cat; mouser; inveigler, seducer, tom-cat; thief; + felix_A : A ; -- [XXXAX] :: happy; blessed; fertile; favorable; lucky; successful, fruitful; + fellato_V : V ; -- [FXXFQ] :: suck (milk) (from); fellate, practice fellatio; (active participant); + fellator_M_N : N ; -- [XXXEO] :: fellator, one who practices fellatio; + fellatrix_F_N : N ; -- [XXXIO] :: fellatrix, she who practices fellatio; + fellico_V : V ; -- [EXXDE] :: suck (milk) (from); fellate, practice fellatio; (active participant); + fellito_V : V ; -- [EXXDE] :: suck (milk) (from); fellate, practice fellatio; (active participant); + fello_V : V ; -- [XXXDO] :: suck (milk) (from); fellate, practice fellatio; (active participant); + felo_M_N : N ; -- [FLXFJ] :: felon; + felo_V : V ; -- [XXXFO] :: suck (milk) (from); fellate, practice fellatio; (active participant); + felonia_F_N : N ; -- [FLXFJ] :: felony; + femella_F_N : N ; -- [XXXEC] :: young woman, girl; + femen_N_N : N ; -- [XBXCO] :: thigh (human/animal); flat vertical band on triglyph; [~ bubulum => plant]; + femina_F_N : N ; -- [XXXAX] :: woman; female; + feminal_N_N : N ; -- [XBXEO] :: female external genitalia/private parts; thigh coverings (pl.); breeches (Ecc); + feminalum_N_N : N ; -- [XXXEO] :: female external genitalia/private parts; thigh coverings (pl.), breech-cloth; + femineus_A : A ; -- [XXXBO] :: woman's; female, feminine; proper to/typical of a woman; effeminate, cowardly; + femininus_A : A ; -- [XXXCO] :: woman's; female, feminine; proper to/typical of a woman; + feminismus_M_N : N ; -- [GXXEK] :: feminism; + feministria_F_N : N ; -- [GXXEK] :: feminist; + feminus_A : A ; -- [XXXEE] :: female; + femoralum_N_N : N ; -- [FXXEE] :: female external genitalia/private parts; breeches (pl.), breech-cloth; + femur_N_N : N ; -- [XBXBO] :: thigh (human/animal); flat vertical band on triglyph; [~ bubulum => plant]; + fenero_V : V ; -- [XXXDO] :: lend money at interest; make interest/profit; invest/finance/supply; borrow; + feneror_V : V ; -- [XXXEO] :: lend money at interest; make interest/profit; invest/finance/supply; borrow; + fenestella_F_N : N ; -- [XXXES] :: little window; small window, opening for light; niche (Ecc); + fenestra_F_N : N ; -- [XXXDX] :: window, opening for light; loophole, breach; orifice; inlet; opportunity; + feniculum_N_N : N ; -- [FXXEK] :: dill; + fenisecium_N_N : N ; -- [XAXDO] :: mowing, cutting of hay; mown grass, hay; + fenisicia_F_N : N ; -- [XAXEO] :: mowing, cutting of hay; mown grass, hay; + fenisicium_N_N : N ; -- [XAXDO] :: mowing, cutting of hay; mown grass, hay; + fenum_N_N : N ; -- [XXXCO] :: hay; [~ Graecum => fenugreek]; + fenus_N_N : N ; -- [XXXDX] :: interest, usury, profit on capital; investments; advantage, profit, gain; + feodalis_M_N : N ; -- [GXXEK] :: vassal; + feoffamentum_N_N : N ; -- [FLXFJ] :: enfoeffment, infeftment (Scot.); investment of person with fief or fee; + feoffator_M_N : N ; -- [FLXFJ] :: enfeoffor; one who settles land under feudal system; + feoffatus_M_N : N ; -- [FLXFJ] :: enfeofee; land recipient by fief under feudal system; + feoffo_V : V ; -- [FLXFJ] :: enfeoff, infeft (Scot.); invest with fief; put in legal possession; + fer_N : N ; -- [FXXEE] :: weekday; abb. of feria; [(w/ordinals) quintus feria => fifth day/Thursday]; + fera_F_N : N ; -- [XXXDX] :: wild beast/animal; + feralis_A : A ; -- [XXXDX] :: funereal; deadly, fatal; + feraliter_Adv : Adv ; -- [XXXEE] :: in savage manner; + feramentus_A : A ; -- [XXXEE] :: fermented; + ferax_A : A ; -- [XXXDX] :: fruitful, fertile. prolific; + ferctum_N_N : N ; -- [XEXEC] :: sacrificial cake; + fercuium_N_N : N ; -- [XXXDX] :: frame or stretcher for carrying things; dish; course (at dinner); + ferculum_N_N : N ; -- [XXXBE] :: food tray; dish, course; food; bread; bier (Ecc); litter; + fere_Adv : Adv ; -- [XXXAX] :: almost; about, nearly; generally, in general; (w/negatives) hardly ever; + ferentarius_M_N : N ; -- [XXXDX] :: light-armed soldier skirmisher; + feretrum_N_N : N ; -- [XXXDX] :: bier; + feria_F_N : N ; -- [FXXDF] :: weekday; abb. fer.; [(w/ordinals) quintus feria => fifth day/Thursday]; + ferialis_A : A ; -- [XXXFE] :: ferial, of/pertaining to feria/weekday; + feriatio_F_N : N ; -- [XXXFE] :: feast; celebration of feast; + feriatus_A : A ; -- [XXXDX] :: keeping holiday, at leisure; + feriatus_M_N : N ; -- [GXXEK] :: vacationer; + fericulum_N_N : N ; -- [XXXBE] :: food tray; dish, course; food; bread; bier (Ecc); litter; + ferina_F_N : N ; -- [XXXDX] :: game, flesh of wild animals; + ferinus_A : A ; -- [XXXDX] :: of wild beasts; + ferio_V : V ; -- [XXXBX] :: hit, strike; strike a bargain; kill, slay; + ferior_V : V ; -- [EXXDE] :: rest from work/labor; keep/celebrate holiday; + feritas_F_N : N ; -- [XXXBO] :: wildness, barbaric/savage/uncultivated state; savagery, ferocity; brutality; + ferito_V : V ; -- [FXXFY] :: strike, deal blows; fight; + ferme_Adv : Adv ; -- [XXXBX] :: nearly, almost, about; (with negatives) hardly ever; + fermentaceus_M_N : N ; -- [EEXFE] :: person who uses unleavened bread; + fermentatus_A : A ; -- [EXXEE] :: fermented; loose; soft, spoiled, corrupted; + fermento_V2 : V2 ; -- [XAXCO] :: leaven; cause fermentation in; aerate (soil); + fermentum_N_N : N ; -- [XXXCO] :: fermentation, leavening (process/cause); yeast; ferment/passion; sour/spoil; + fero_V : V ; -- [XXXAX] :: bring, bear; tell/speak of; consider; carry off, win, receive, produce; get; + ferocia_F_N : N ; -- [XXXDX] :: fierceness, ferocity; insolence; + ferocio_V : V ; -- [XXXDO] :: rampage, act in a fierce/violent/savage manner; + ferocitas_F_N : N ; -- [XXXDX] :: fierceness, savageness, excessive spirits; aggressiveness; + ferociter_Adv : Adv ; -- [XXXCO] :: fiercely/ferociously/aggressively; arrogantly/insolently/defiantly; boldly; + ferox_A : A ; -- [XXXAX] :: wild, bold; warlike; cruel; defiant, arrogant; + ferraiola_F_N : N ; -- [FEXFE] :: short cape reaching halfway to elbow); + ferramentum_N_N : N ; -- [XXXDX] :: iron tool; + ferraria_F_N : N ; -- [XXXDX] :: iron mine; + ferrarius_A : A ; -- [XXXCO] :: of/concerned with iron, iron-; [officina/taberna ~ => smithy/blacksmith shop]; + ferrarius_M_N : N ; -- [XXXEO] :: blacksmith; + ferratilis_A : A ; -- [DXXES] :: in chains/irons (slaves and prisoners); fettered; furnished with iron; + ferratus_A : A ; -- [XXXEC] :: furnished or covered with iron; [w/servi => in irons]; + ferratus_M_N : N ; -- [XWXEC] :: soldiers (pl.) in armor; + ferraus_A : A ; -- [XXXDX] :: bound or covered with iron; with iron points or studs; + ferreus_A : A ; -- [XXXBX] :: iron, made of iron; cruel, unyielding; (blue); + ferrivia_F_N : N ; -- [GTXEK] :: railroad; + ferriviarius_A : A ; -- [GTXEK] :: of railroad; + ferrogriseus_A : A ; -- [GXXEK] :: steel-gray-colored; + ferrous_A : A ; -- [XXXDX] :: of iron, iron; hard, cruel firm; + ferrugineus_A : A ; -- [XXXDX] :: of the color of iron-rust, somber; + ferruginus_A : A ; -- [XXXEC] :: rust-colored, dun; + ferrugo_F_N : N ; -- [XXXDX] :: iron-rust; color of iron rust, dusky color; + ferrum_N_N : N ; -- [XXXAX] :: iron; any tool of iron; weapon, sword; + ferrumen_N_N : N ; -- [EXXFS] :: cement; solder; glue; iron-rust (Pliny); + ferrumino_V : V ; -- [XXXES] :: cement, solder; glue; bind; + fertilis_A : A ; -- [XXXDX] :: fertile, fruitful; abundant; + fertilisatio_F_N : N ; -- [GXXEK] :: fertilization; + fertilitas_F_N : N ; -- [XXXDX] :: fruitfulness, fertility; + fertum_N_N : N ; -- [XEXEC] :: sacrificial cake; + ferula_F_N : N ; -- [XXXDX] :: stick, rod; + ferumino_V : V ; -- [XXXES] :: cement, solder; glue; bind; + ferus_A : A ; -- [XXXAX] :: wild, savage; uncivilized; untamed; fierce; + ferus_C_N : N ; -- [XXXDX] :: wild beast/animal; wild/untamed horse/boar; + fervefacio_V2 : V2 ; -- [XXXDX] :: heat; melt; boil; make (intensely) hot; + fervens_A : A ; -- [XXXDX] :: red hot, boiling hot; burning; inflamed, impetuous; fervent/zealous (Bee); + ferveo_V : V ; -- [XXXAO] :: |be warm/aroused/inflamed/feverish, reek (w/blood); be active/busy/agitated; + fervesco_V : V ; -- [XXXDX] :: grow hot; + fervidus_A : A ; -- [XXXDX] :: glowing; boiling hot; fiery, torrid, roused, fervid; hot blooded; + fervo_V : V ; -- [XXXAO] :: |be warm/aroused/inflamed/feverish, reek (w/blood); be active/busy/agitated; + fervor_M_N : N ; -- [XXXDX] :: heat, boiling heat; boiling, fermenting; ardor, passion, fury; intoxication; + fessus_A : A ; -- [XXXAX] :: tired, wearied, fatigued, exhausted; worn out, weak, feeble, infirm, sick; + festinanter_Adv : Adv ; -- [XXXCO] :: promptly, speedily, quickly; with (excessive/undue) haste; hurriedly; + festinantia_F_N : N ; -- [FXXFM] :: haste; speed; + festinatim_Adv : Adv ; -- [XXXEO] :: promptly, speedily, quickly; with (excessive/undue) haste; hurriedly; + festinatio_F_N : N ; -- [XXXDX] :: haste, speed, hurry; + festinato_Adv : Adv ; -- [XXXCO] :: promptly, speedily, quickly; with (excessive/undue) haste; hurriedly; + festino_V : V ; -- [XXXBX] :: hasten, hurry; + festinus_A : A ; -- [XXXCO] :: swift/quick/rapid; fast moving (troops); impatient, in a hurry; early/premature; + festive_Adv : Adv ; -- [XXXCO] :: festively, with feasting; delightfully, neatly; amusingly, humorously, wittily; + festivitas_F_N : N ; -- [XXXBO] :: festivity, feast; conviviality, charm; heart's delight; humor (speaker), wit; + festiviter_Adv : Adv ; -- [XXXEO] :: gaily, festively; wittily; + festivus_A : A ; -- [XXXBO] :: feast/festive (day); excellent/fine; jovial, genial; lively (speech), witty; + festuca_F_N : N ; -- [XXXDX] :: straw; stalk (used in manumission); ram for beating down earth, piledriver; + festucula_F_N : N ; -- [XXXDX] :: chaff; + festum_N_N : N ; -- [XXXBX] :: holiday; festival; feast day; day in memory of saint/event (usu. pl.) (Bee); + festus_A : A ; -- [XXXAX] :: festive, joyous; holiday; feast day; merry; solemn; + feteo_V : V ; -- [XXXDO] :: stink; have a bad/offensive smell/odor; + fetialis_A : A ; -- [XXXEO] :: of college/functions of fetiales (priests representing Rome diplomatically); + fetialis_M_N : N ; -- [XXXDO] :: Roman priest/college of priests (pl.) representing Rome in diplomatic dealings; + fetidus_A : A ; -- [XXXCO] :: stinking; foul-smelling; having a bad smell/odor; + fetifer_A : A ; -- [XXXNS] :: fertilizing; causing fruitfulness; making fruitful; enriching the soil (W); + fetifico_V : V ; -- [XXXNO] :: breed/spawn; hatch/bring forth offspring/young; + fetificus_A : A ; -- [XXXNO] :: reproductive; genital; fructifying (L+S); + feto_V : V ; -- [XXXFO] :: breed/spawn; hatch/bring forth offspring/young; impregnate, make fruitful (L+S); + fetor_M_N : N ; -- [XXXDO] :: stench; bad/foul smell, stink; foulness, noisomeness (L+S); + fetosus_A : A ; -- [EXXFS] :: prolific; + fetulentus_A : A ; -- [XXXFO] :: stinking; foul-smelling; fetulent (L+S); + fetuosus_A : A ; -- [DXXFS] :: prolific; + fetura_F_N : N ; -- [XXXCO] :: |laying/hatching eggs; brood, litter, young offspring; young shoots (of vine); + feturatus_A : A ; -- [DXXFS] :: made into a fetus (of semen); + fetus_A : A ; -- [XXXBO] :: |having newly brought forth/given birth/whelped/calved; bearing/reproducing; + fetus_M_N : N ; -- [XXXAO] :: |||fruit of plant; produce/crop; offshoot/branch/sucker/sapling; bearing fruit; + fetutina_F_N : N ; -- [XXXEO] :: stinking/noisome place, cesspool, midden; + feudum_N_N : N ; -- [GXXEK] :: fief; + fiala_F_N : N ; -- [XXXEZ] :: drinking plate; (Greek); + fiber_M_N : N ; -- [XAXCO] :: beaver; + fibiculaa_F_N : N ; -- [GXXEK] :: paper-staple; + fibra_F_N : N ; -- [XXXDX] :: fiber, filament; entrails; leaf, blade (of grasses, etc); + fibroma_N_N : N ; -- [GXXEK] :: fibroma, fibrous tumor; + fibula_F_N : N ; -- [XXXDX] :: clasp, buckle, brooch; + fibulo_V2 : V2 ; -- [XXXFO] :: join; bond; knit together; fasten; buckle up/together;unfasten; unbuckle; + ficatum_N_N : N ; -- [FXXEK] :: foie gras (liver); + ficedula_F_N : N ; -- [XXXDX] :: small bird, fig-pecker, a treat in autumn when it feeds on figs/grapes; + ficetum_N_N : N ; -- [XAXDO] :: fig-orchard, plantation of fig trees; + ficte_Adv : Adv ; -- [XXXEE] :: falsely; + fictice_Adv : Adv ; -- [XXXFS] :: in fictitious/pretended manner; in pretense; falsely; by way of pretense/sham; + ficticius_A : A ; -- [XXXDS] :: fictitious; artificial; counterfeit, not genuine; feigned, pretended, sham; + fictile_N_N : N ; -- [XXXDX] :: earthenware vessel or statue; + fictilis_A : A ; -- [XXXDX] :: of clay; made of earthenware, earthen; + fictio_F_N : N ; -- [XXXCO] :: fashioning, action of shaping; coining (word); pretense/feigning; legal fiction; + fictitius_A : A ; -- [XXXDS] :: fictitious; artificial; counterfeit, not genuine; feigned, pretended; + fictor_M_N : N ; -- [XXXDX] :: one who devises or makes; + fictus_A : A ; -- [XXXDX] :: feigned, false; counterfeit; + ficulneus_A : A ; -- [XAXDO] :: of the fig or fig tree, fig-; + ficulnus_A : A ; -- [XAXDO] :: of the fig or fig tree, fig-; + ficus_C_N : N ; -- [XAXBO] :: fig; fig tree; hemorrhoids/piles (sg./pl.); [primus ficus => early autumn]; + ficus_M_N : N ; -- [XAXCO] :: fig; fig tree; hemorrhoids/piles (sg./pl.); [primus ficus => early autumn]; + fideicommissarius_A : A ; -- [XLXEC] :: of fideicommissa/conferring by will requesting executor to deliver to 3rd party; + fideicommissarius_M_N : N ; -- [XLXEO] :: of fideicommissa/conferring by will requesting executor to deliver to 3rd party; + fideicommissum_N_N : N ; -- [XLXDO] :: bequest in form of request rather than command to heir (to act/pass on); trust; + fideicommissus_A : A ; -- [XLXEO] :: entrusted; conferred by will requesting executor to deliver to third party; + fideicommitto_V2 : V2 ; -- [ELXES] :: leave by will; bequeath; + fideiubeo_V2 : V2 ; -- [XLXDO] :: become surety; go bail; guarantee; + fideiussor_M_N : N ; -- [XLXEO] :: guarantor, one who gives surety or goes bail; + fidejussorius_A : A ; -- [ELXFS] :: of surety; + fidelia_F_N : N ; -- [XXXFS] :: earthen pot (esp. for whitewash); + fidelis_A : A ; -- [XXXBO] :: faithful/loyal/devoted; true/trustworthy/dependable/reliable; constant/lasting; + fidelitas_F_N : N ; -- [XXXDX] :: faithfulness, fidelity; + fideliter_Adv : Adv ; -- [EEXEP] :: |with reliance on God; + fidens_A : A ; -- [XXXDX] :: confident; bold; + fides_F_N : N ; -- [XXXBO] :: chord, instrument string; constellation Lyra; stringed instrument (pl.); lyre; + fidicen_M_N : N ; -- [XDXDO] :: lyre-player; writer of lyric poetry; lyricist; + fidicina_F_N : N ; -- [XDXEO] :: lyre-player (female); + fidicinus_A : A ; -- [XXXEC] :: of lute playing; + fidicula_F_N : N ; -- [XXXEC] :: little lyre or lute (usu. pl.); an instrument for torture; + fidis_F_N : N ; -- [XXXBO] :: chord, instrument string; constellation Lyra; stringed instrument (pl.); lyre; + fido_V : V ; -- [XXXDX] :: trust (in), have confidence (in) (w/DAT or ABL); + fiducia_F_N : N ; -- [XXXDX] :: trust, confidence; faith, reliance; courage; + fiducialiter_Adv : Adv ; -- [XXXES] :: confidently, with confidence; boldly (Souter); faithfully; + fiduciarius_A : A ; -- [XXXDX] :: holding on trust; held on trust; + fidus_A : A ; -- [XXXBX] :: faithful, loyal; trusting, confident; + figilina_F_N : N ; -- [XTXCO] :: pottery-work; pottery (pl.), potter's workshop; + figlina_F_N : N ; -- [XTXCO] :: pottery-work; pottery (pl.), potter's workshop; + figmentum_N_N : N ; -- [XXXDO] :: figment, fiction, invention, unreality; thing formed/devised; image; + figo_V2 : V2 ; -- [XXXBX] :: fasten, fix; pierce, transfix; establish; + figulina_F_N : N ; -- [XTXCO] :: pottery-work; pottery (pl.), potter's workshop; + figulus_M_N : N ; -- [XXXCO] :: potter; maker of earthenware vessels; + figura_F_N : N ; -- [XXXBX] :: shape, form, figure, image; beauty; style; figure of speech; + figuraliter_Adv : Adv ; -- [DXXES] :: figuratively; + figuratio_F_N : N ; -- [XXXES] :: forming; shaping; imagination; G:form of word; + figuro_V : V ; -- [XXXDX] :: form, fashion, shape; + filetum_N_N : N ; -- [GXXEK] :: filet (cut of meat or of fish); + filia_F_N : N ; -- [XXXBX] :: daughter; + filiatio_F_N : N ; -- [FLXEZ] :: descent-from-father; (father has paternitas, son has filiatio); + filicatus_A : A ; -- [XXXEC] :: adorned with ferns; embossed with fern leaves; + filiformis_A : A ; -- [GXXEK] :: threadlike; + filiola_F_N : N ; -- [XXXDX] :: little daughter; + filiolus_M_N : N ; -- [XXXDX] :: little son; + filius_M_N : N ; -- [XXXAX] :: son; + filix_F_N : N ; -- [XXXDX] :: fern, bracken; + filtrum_N_N : N ; -- [GXXEK] :: filter; + filum_N_N : N ; -- [XXXBX] :: thread, string, filament, fiber; texture, style, nature; + fimbria_F_N : N ; -- [XXXEC] :: fringe (pl.), border, edge; + fimbriatus_A : A ; -- [XXXEC] :: fringed; + fimum_N_N : N ; -- [XXXDX] :: dung, excrement; + fimus_M_N : N ; -- [XXXDX] :: dung, excrement; + finalis_A : A ; -- [XXXEO] :: of/concerned w/boundaries; limited/bounded (Souter); of ultimate goal; + finalitas_F_N : N ; -- [FXXEM] :: limitation; finality, end (Red); + finaliter_Adv : Adv ; -- [FXXDM] :: finally; purposefully; + finalus_A : A ; -- [FXXEO] :: of/concerned w/boundaries; limited/bounded (Souter); of ultimate goal; + finctus_A : A ; -- [EXXEW] :: produced, formed, created; [primus/prior finctus => first-formed/original]; + findo_V2 : V2 ; -- [XXXDX] :: split, cleave, divide; + fine_Abl_Prep : Prep ; -- [XXXDX] :: up to; + fingo_V2 : V2 ; -- [XXXEO] :: ||make up (story/excuse); pretend, pose; forge, counterfeit; act insincerely; + fini_Abl_Prep : Prep ; -- [XXXDX] :: up to; + finio_V2 : V2 ; -- [XXXBX] :: limit, end; finish; determine, define; mark out the boundaries; finis_F_N : N ; -- [XXXAX] :: boundary, end, limit, goal; (pl.) country, territory, land; - finis_M_N : N ; - finitimus_A : A ; - finitimus_M_N : N ; - finitio_F_N : N ; - finitumus_A : A ; - fio_V : V ; - firmaculum_N_N : N ; - firmale_N_N : N ; - firmamen_N_N : N ; - firmamentum_N_N : N ; - firmarius_M_N : N ; - firmitas_F_N : N ; - firmiter_Adv : Adv ; - firmitudo_F_N : N ; - firmo_V : V ; - firmus_A : A ; - fiscale_N_N : N ; - fiscalis_A : A ; - fiscella_F_N : N ; - fiscina_F_N : N ; - fiscus_M_N : N ; - fissilis_A : A ; - fistuca_F_N : N ; - fistula_F_N : N ; - fistulator_M_N : N ; - fixatorium_N_N : N ; - fixtura_F_N : N ; - fixum_N_N : N ; - fixura_F_N : N ; - fixus_A : A ; - flabellum_N_N : N ; - flabrum_N_N : N ; - flacceo_V : V ; - flaccesco_V : V ; - flaccidus_A : A ; - flagello_V2 : V2 ; - flagellum_N_N : N ; - flagitatio_F_N : N ; - flagitator_M_N : N ; - flagitiosus_A : A ; - flagitium_N_N : N ; - flagito_V : V ; - flagrans_A : A ; - flagranter_Adv : Adv ; - flagrantia_F_N : N ; - flagritriba_M_N : N ; - flagro_V : V ; - flagrum_N_N : N ; - flamen_M_N : N ; - flamen_N_N : N ; - flamina_F_N : N ; - flaminia_F_N : N ; - flaminica_F_N : N ; - flaminium_N_N : N ; - flaminius_A : A ; - flamma_F_N : N ; - flammeolum_N_N : N ; - flammeum_N_N : N ; - flammeus_A : A ; - flammidus_A : A ; - flammifer_A : A ; - flammiger_A : A ; - flammigero_V : V ; - flammo_V : V ; - flammula_F_N : N ; - flandrensis_A : A ; - flatilis_A : A ; - flatus_M_N : N ; - flavedo_F_N : N ; - flaveo_V : V ; - flavesco_V : V ; - flavitas_F_N : N ; - flavor_F_N : N ; - flavus_A : A ; - flebile_Adv : Adv ; - flebilis_A : A ; - flecto_V2 : V2 ; - fleo_V : V ; - fletus_M_N : N ; - flexanimus_A : A ; - flexibilis_A : A ; - flexibilitas_F_N : N ; - flexilis_A : A ; - flexiloquus_A : A ; - flexipes_A : A ; - flexuosus_A : A ; - flexus_M_N : N ; - flictus_M_N : N ; - fligo_V2 : V2 ; - flo_V : V ; - floccifacio_V2 : V2 ; - floccipendo_V2 : V2 ; - floccus_M_N : N ; - florens_A : A ; - floreo_V : V ; - floresco_V : V ; - floreus_A : A ; - floridus_A : A ; - florifer_A : A ; - floriger_A : A ; - flos_M_N : N ; - flosculus_M_N : N ; - fluctifragus_A : A ; - fluctio_F_N : N ; - fluctivagus_A : A ; - fluctuatio_F_N : N ; - fluctuo_V : V ; - fluctuor_V : V ; - fluctuosus_A : A ; - fluctus_M_N : N ; - fluenter_Adv : Adv ; - fluentisonus_A : A ; - fluentum_N_N : N ; - fluentus_A : A ; - fluidus_A : A ; - fluito_V : V ; - flumen_N_N : N ; - fluo_V2 : V2 ; - fluorescens_A : A ; - fluorescentia_F_N : N ; - flustrum_N_N : N ; - fluus_A : A ; - fluvialis_A : A ; - fluviaticus_A : A ; - fluviatilis_A : A ; - fluvidus_A : A ; - fluvius_M_N : N ; - fluxilis_A : A ; - fluxus_A : A ; - focal_N_N : N ; - focale_N_N : N ; - focaria_F_N : N ; - focarius_M_N : N ; - focillo_V : V ; - focilo_V2 : V2 ; - foculus_M_N : N ; - focus_M_N : N ; - fodico_V : V ; - fodina_F_N : N ; - fodio_V2 : V2 ; - fodorus_M_N : N ; - fodrum_N_N : N ; - fodrus_M_N : N ; - foede_Adv : Adv ; - foederalis_A : A ; - foederalismus_M_N : N ; - foederalista_M_N : N ; - foederatus_A : A ; - foedero_V2 : V2 ; - foedifragus_A : A ; - foeditas_F_N : N ; - foedo_V2 : V2 ; - foedus_A : A ; - foedus_N_N : N ; - foenum_N_N : N ; - foenus_N_N : N ; - foeteo_V : V ; - foetidus_A : A ; - foetifer_A : A ; - foetifico_V : V ; - foetificus_A : A ; - foeto_V : V ; - foetor_M_N : N ; - foetosus_A : A ; - foetulentus_A : A ; - foetuosus_A : A ; - foetura_F_N : N ; - foeturatus_A : A ; - foetus_A : A ; - foetus_M_N : N ; - foetutina_F_N : N ; - foliatum_N_N : N ; - foliatus_A : A ; - foliothecula_F_N : N ; - folium_N_N : N ; - folliculus_M_N : N ; - follis_M_N : N ; - fomentum_N_N : N ; - fomes_M_N : N ; - fons_M_N : N ; - fontalis_A : A ; - fontanus_A : A ; - fonticulus_M_N : N ; - for_V : V ; - forabilis_A : A ; - foramen_N_N : N ; - foraneus_A : A ; - foras_Adv : Adv ; - forceps_F_N : N ; - forcia_F_N : N ; - forda_F_N : N ; - fordeaceus_A : A ; - fordearius_A : A ; - fordeum_N_N : N ; - fordiaceus_A : A ; - fordiarius_A : A ; - fordus_A : A ; - forensis_A : A ; - foresta_F_N : N ; - forfex_F_N : N ; - foricula_F_N : N ; - forinsecum_N_N : N ; - forinsecus_Adv : Adv ; - foris_Adv : Adv ; - foris_F_N : N ; - forisfacio_V2 : V2 ; - forma_F_N : N ; - formabilis_A : A ; - formalis_A : A ; - formalismus_M_N : N ; - formaliter_Adv : Adv ; - formamentum_N_N : N ; - formatrix_F_N : N ; - formica_F_N : N ; - formidabilis_A : A ; - formidilose_Adv : Adv ; - formidilosus_A : A ; - formido_F_N : N ; - formido_V : V ; - formidolose_Adv : Adv ; - formidolosus_A : A ; - formidulose_Adv : Adv ; - formidulosus_A : A ; - formo_V : V ; - formonse_Adv : Adv ; - formonsulus_A : A ; - formonsus_A : A ; - formose_Adv : Adv ; - formosulus_A : A ; - formosus_A : A ; - formula_F_N : N ; - fornacula_F_N : N ; - fornax_F_N : N ; - fornicaria_F_N : N ; - fornicarius_M_N : N ; - fornicatim_Adv : Adv ; - fornicatio_F_N : N ; - fornicator_M_N : N ; - fornicatrix_F_N : N ; - fornicatus_A : A ; - fornico_V : V ; - fornicor_V : V ; - fornix_M_N : N ; - forpex_F_N : N ; - fors_F_N : N ; - forsan_Adv : Adv ; - forsit_Adv : Adv ; - forsitam_Adv : Adv ; - forsitan_Adv : Adv ; - fortasse_Adv : Adv ; - fortassis_Adv : Adv ; - forte_Adv : Adv ; - forticulus_A : A ; - fortificatio_F_N : N ; - fortifico_V2 : V2 ; - fortis_A : A ; - fortiter_Adv : Adv ; - fortitudo_F_N : N ; - fortuito_Adv : Adv ; - fortuitu_Adv : Adv ; - fortuitum_N_N : N ; - fortuitus_A : A ; - fortuna_F_N : N ; - fortunate_Adv : Adv ; - fortunatus_A : A ; - fortunium_N_N : N ; - fortuno_V2 : V2 ; - foruitus_A : A ; - forum_N_N : N ; - forus_M_N : N ; - fossa_F_N : N ; - fossatum_N_N : N ; - fossatus_A : A ; - fossatus_M_N : N ; - fossicius_A : A ; - fossile_N_N : N ; - fossilis_A : A ; - fossio_F_N : N ; - fossor_M_N : N ; - fovea_F_N : N ; - foveo_V : V ; - fracesco_V : V ; - fractio_F_N : N ; - fragilis_A : A ; - fragilitas_F_N : N ; - fraglans_A : A ; - fraglanter_Adv : Adv ; - fraglantia_F_N : N ; - fragmen_N_N : N ; - fragmentum_N_N : N ; - fragor_M_N : N ; - fragosus_A : A ; - fragrantia_F_N : N ; - fragro_V : V ; - fragum_N_N : N ; - framea_F_N : N ; - francomurarius_M_N : N ; - francus_M_N : N ; - frango_V2 : V2 ; - frater_M_N : N ; - fraterculus_M_N : N ; - fraternitas_F_N : N ; - fraternus_A : A ; - fratricida_M_N : N ; - fraudo_V2 : V2 ; - fraudulenter_Adv : Adv ; - fraudulentia_F_N : N ; - fraudulentus_A : A ; - fraudulosus_A : A ; - fraus_F_N : N ; - fraxineus_A : A ; - fraxinus_A : A ; - fraxinus_F_N : N ; - fremebundus_A : A ; - fremitus_A : A ; - fremitus_M_N : N ; - fremo_V2 : V2 ; - fremor_M_N : N ; - frendeo_V : V ; - frendo_V2 : V2 ; - freno_V : V ; - frenum_N_N : N ; - frenus_M_N : N ; - frequens_A : A ; - frequenter_Adv : Adv ; - frequentia_F_N : N ; - frequento_V : V ; - fretum_N_N : N ; - fretus_A : A ; - fribusculum_N_N : N ; - fricatio_F_N : N ; - fricatus_M_N : N ; - frico_V : V ; - frictio_F_N : N ; - frigdor_M_N : N ; - frigeo_V : V ; - frigesco_V2 : V2 ; - frigidarium_N_N : N ; - frigidarius_A : A ; - frigidulus_A : A ; - frigidus_A : A ; - frigo_V2 : V2 ; - frigor_M_N : N ; - frigus_N_N : N ; - frigusculum_N_N : N ; - friguttio_V : V ; - fringulio_V : V ; - fringultio_V : V ; - frio_V2 : V2 ; - frisiatus_A : A ; - fritillus_M_N : N ; - frivolus_A : A ; - frixeolum_N_N : N ; - frixo_V2 : V2 ; - frixorium_N_N : N ; - frixura_F_N : N ; - frixus_A : A ; - fromo_V : V ; - frondator_M_N : N ; - frondeo_V : V ; - frondesco_V : V ; - frondeus_A : A ; - frondifer_A : A ; - frondosus_A : A ; + finis_M_N : N ; -- [XXXAX] :: boundary, end, limit, goal; (pl.) country, territory, land; + finitimus_A : A ; -- [XXXDX] :: neighboring, bordering, adjoining; + finitimus_M_N : N ; -- [XXXDX] :: neighbors (pl.); + finitio_F_N : N ; -- [XXXBO] :: |end/conclusion/death; limit/restriction; definition, exact description; + finitumus_A : A ; -- [EXXES] :: adjoining; neighboring; + fio_V : V ; -- [XXXAO] :: ||be made/become; (facio PASS); [fiat => so be it, very well; it is being done]; + firmaculum_N_N : N ; -- [FXXFM] :: brooch; clasp; buckle; fastener; + firmale_N_N : N ; -- [FXXEE] :: brooch (for a cope); clasp (Latham); buckle; fastener; + firmamen_N_N : N ; -- [XXXDX] :: support, prop, mainstay; strengthening; + firmamentum_N_N : N ; -- [XXXDX] :: support, prop, mainstay; support group; + firmarius_M_N : N ; -- [FLXFJ] :: termor; term-holder of lands, who holds land/tenement for term of years or life; + firmitas_F_N : N ; -- [XXXDX] :: firmness, strength; + firmiter_Adv : Adv ; -- [XXXDX] :: really, strongly, firmly; steadfastly; + firmitudo_F_N : N ; -- [XXXDX] :: stability; strength; + firmo_V : V ; -- [XXXBX] :: strengthen, harden; support; declare; prove, confirm, establish; + firmus_A : A ; -- [XXXAO] :: |loyal/staunch/true/constant; stable/mature; valid/convincing/well founded; + fiscale_N_N : N ; -- [XLXEO] :: revenues/monies (pl.) due to imperial treasury; + fiscalis_A : A ; -- [XLXDO] :: of/connected with imperial treasury/revenues; fiscal, of money; + fiscella_F_N : N ; -- [XXXDX] :: small wicker-basket; + fiscina_F_N : N ; -- [XXXDX] :: small basket of wicker work; + fiscus_M_N : N ; -- [XXXDX] :: money-bag, purse; imperial exchequer; + fissilis_A : A ; -- [XXXDX] :: easily split; split; + fistuca_F_N : N ; -- [XXXEC] :: rammer, mallet; + fistula_F_N : N ; -- [XXXBX] :: shepherd's pipe; tube; waterpipe; + fistulator_M_N : N ; -- [XDXEC] :: one who plays the reed-pipe; + fixatorium_N_N : N ; -- [GXXEK] :: hair-lacquer; + fixtura_F_N : N ; -- [EXXES] :: fixing, fastening; print of nails; print/imprint (Ecc); opening, perforation; + fixum_N_N : N ; -- [XXXFO] :: fixtures (pl.), fittings; + fixura_F_N : N ; -- [FXXEE] :: fixing, fastening; print of nails; print/imprint (Ecc); opening, perforation; + fixus_A : A ; -- [XXXCO] :: |unwavering (person); immovable; constant; fitted/set with; + flabellum_N_N : N ; -- [XXXEC] :: small fan; + flabrum_N_N : N ; -- [XXXDX] :: gusts/blasts of wind (pl.); breezes; + flacceo_V : V ; -- [XXXEC] :: be flabby; fail. flag; + flaccesco_V : V ; -- [XXXEC] :: begin to flag, become flabby; + flaccidus_A : A ; -- [XXXDX] :: flaccid, flabby; + flagello_V2 : V2 ; -- [XXXCO] :: flog, whip, lash, scourge; strike repeatedly; thresh/flail (grain); "whip up"; + flagellum_N_N : N ; -- [XXXBO] :: whip, lash, scourge; thong (javelin); vine shoot; arm/tentacle (of polyp); + flagitatio_F_N : N ; -- [XXXDX] :: importunate request, demand; + flagitator_M_N : N ; -- [XXXDX] :: importuner, dun; + flagitiosus_A : A ; -- [XXXDX] :: disgraceful, shameful; infamous, scandalous; profligate, dissolute; + flagitium_N_N : N ; -- [XXXDX] :: shame, disgrace; scandal, shameful act, outrage, disgraceful thing; scoundrel; + flagito_V : V ; -- [XXXDX] :: demand urgently; require; entreat, solicit, press, dun, importune; + flagrans_A : A ; -- [XXXBO] :: |burning (w/desire), ardent/passionate; outrageous (crime), monstrous, flagrant; + flagranter_Adv : Adv ; -- [XXXEO] :: ardently, passionately; vehemently, heatedly; eagerly; + flagrantia_F_N : N ; -- [XXXCO] :: blaze, burning; scorching heat; passionate glow (eyes); passionate love/ardor; + flagritriba_M_N : N ; -- [XXXEC] :: one that wears out whips, whipping boy; + flagro_V : V ; -- [XXXBX] :: be on fire; blaze, flame, burn; be inflamed/excited; + flagrum_N_N : N ; -- [XXXEC] :: scourge, whip; + flamen_M_N : N ; -- [XEXBO] :: priest, flamen; priest of specific deity; [~ Dialis => high priest of Jupiter]; + flamen_N_N : N ; -- [XXXCO] :: gust/blast (of wind); gale; breath/exhalation; wind/breeze; note on woodwind; + flamina_F_N : N ; -- [XEXIO] :: wife of a flamen/priest; priestess; + flaminia_F_N : N ; -- [XEXFS] :: priest-assistantess; female assistant to flamen; flamen's dwelling; + flaminica_F_N : N ; -- [XEXDO] :: wife of a flamen/priest; priestess; + flaminium_N_N : N ; -- [XEXFS] :: priest's office; office of flamen; + flaminius_A : A ; -- [XEXFS] :: priestly; of flamen (priest of deity); + flamma_F_N : N ; -- [XXXAX] :: flame, blaze; ardor, fire of love; object of love; + flammeolum_N_N : N ; -- [XXXEC] :: small bridal veil; + flammeum_N_N : N ; -- [XXXDX] :: flame colored (bridal) veil; + flammeus_A : A ; -- [XXXDX] :: flaming, fiery; fiery red; + flammidus_A : A ; -- [XXXFS] :: burning; fiery; + flammifer_A : A ; -- [XXXEC] :: flaming, fiery; + flammiger_A : A ; -- [XXXES] :: flame-bearing; fiery; + flammigero_V : V ; -- [XXXFS] :: flame; blaze; + flammo_V : V ; -- [XXXDX] :: inflame, set on fire; excite; + flammula_F_N : N ; -- [XXXEC] :: little flame; + flandrensis_A : A ; -- [FXXEM] :: Flemish; from Flanders; + flatilis_A : A ; -- [XXXFO] :: blown, of/produced by blowing; + flatus_M_N : N ; -- [XXXDX] :: blowing; snorting; breath; breeze; + flavedo_F_N : N ; -- [FXXFM] :: yellowness; yellow-color; + flaveo_V : V ; -- [XXXDX] :: be yellow or gold-colored; + flavesco_V : V ; -- [XXXDX] :: become/turn yellow/gold; + flavitas_F_N : N ; -- [FXXEM] :: yellowness; glitter; + flavor_F_N : N ; -- [GXXFT] :: yellowness; (Erasmus); + flavus_A : A ; -- [XXXBX] :: yellow, golden, gold colored; flaxen, blond; golden-haired (Latham); + flebile_Adv : Adv ; -- [XXXDO] :: lamentably, dolefully, tearfully; + flebilis_A : A ; -- [XXXBO] :: lamentable, causing/worthy of/accompanied by tears; doleful, tearful, weeping; + flecto_V2 : V2 ; -- [XXXBX] :: bend, curve, bow; turn, curl; persuade, prevail on, soften; + fleo_V : V ; -- [XXXAX] :: cry for; cry, weep; + fletus_M_N : N ; -- [XXXDX] :: weeping, crying, tears; wailing; lamenting; + flexanimus_A : A ; -- [XXXFS] :: head-swaying; moving; touched; moved; + flexibilis_A : A ; -- [XXXDX] :: flexible, pliant; + flexibilitas_F_N : N ; -- [FEXFS] :: flexibility, pliability; + flexilis_A : A ; -- [XXXDX] :: pliant, pliable, supple; + flexiloquus_A : A ; -- [XXXEC] :: equivocal, ambiguous; + flexipes_A : A ; -- [XXXEC] :: crooked-footed, twining; + flexuosus_A : A ; -- [XXXCO] :: curved; with many curves in it, full of bends/turns; winding/sinuous/tortuous; + flexus_M_N : N ; -- [XXXDX] :: turning, winding; swerve; bend; turning point; + flictus_M_N : N ; -- [XXXEC] :: striking together, dashing against; + fligo_V2 : V2 ; -- [XXXEC] :: beat or dash down; + flo_V : V ; -- [XXXDX] :: breathe; blow; + floccifacio_V2 : V2 ; -- [XXXFS] :: consider unimportant; + floccipendo_V2 : V2 ; -- [XXXDO] :: take (little) account of, consider of no/any importance); (usu. negative); + floccus_M_N : N ; -- [XXXCO] :: tuft/wisp of wool; [(non) ~i facere/pendere => to consider of no importance]; + florens_A : A ; -- [XXXDX] :: blooming/in bloom, flowering; flowery, bright/shining; flourishing, prosperous; + floreo_V : V ; -- [XXXAX] :: flourish, blossom, be prosperous; be in one's prime; + floresco_V : V ; -- [XXXDX] :: (begin to) blossom; increase in physical vigor or renown; + floreus_A : A ; -- [XXXDX] :: flowery; + floridus_A : A ; -- [XXXBX] :: blooming; flowery; florid; + florifer_A : A ; -- [XXXEO] :: flowery; flower bearing, producing flowers; carrying flowers; + floriger_A : A ; -- [DXXES] :: flowery; flower bearing, producing flowers; carrying flowers; + flos_M_N : N ; -- [XXXAX] :: flower, blossom; youthful prime; + flosculus_M_N : N ; -- [XXXDX] :: little flower, floweret; the best of anything, the "flower"; + fluctifragus_A : A ; -- [XXXEC] :: wave-breaking; + fluctio_F_N : N ; -- [XXXES] :: flowing; flow; + fluctivagus_A : A ; -- [FTXEM] :: wave-tossed; wave-driven; + fluctuatio_F_N : N ; -- [XXXCO] :: swaying/shaking, restless movement (wave); vacillation/uncertainty/fluctuation; + fluctuo_V : V ; -- [XXXDX] :: rise in waves, surge, swell, undulate, fluctuate; float; be agitated/restless; + fluctuor_V : V ; -- [XXXDX] :: waver, be in doubt, hesitate; + fluctuosus_A : A ; -- [XXXEC] :: full of waves, stormy; + fluctus_M_N : N ; -- [XXXDX] :: wave; disorder; flood, flow, tide, billow, surge; turbulence, commotion; + fluenter_Adv : Adv ; -- [XXXFO] :: in a stream or flood; + fluentisonus_A : A ; -- [XXXFO] :: resounding with the sound of waves; + fluentum_N_N : N ; -- [XXXDO] :: stream/river; flood; (waters of) lake; flow (L+S); current/draft/draught of air; + fluentus_A : A ; -- [FXXEO] :: flowing; + fluidus_A : A ; -- [XXXDX] :: liquid; soft, feeble; + fluito_V : V ; -- [XXXDX] :: float; flow; waver; + flumen_N_N : N ; -- [XXXBO] :: river, stream; any flowing fluid; flood; onrush; [adverso ~ => against current]; + fluo_V2 : V2 ; -- [XXXAX] :: flow, stream; emanate, proceed from; fall gradually; + fluorescens_A : A ; -- [GXXEK] :: fluorescent; + fluorescentia_F_N : N ; -- [GXXEK] :: fluorescence; + flustrum_N_N : N ; -- [EXXDM] :: stream; ford; swell (pl.), rough sea; calm, quiet state of sea (OLD); + fluus_A : A ; -- [XXXDX] :: flowing (septemfluus = seven-flowing mouth of the Nile); + fluvialis_A : A ; -- [XXXDX] :: river; + fluviaticus_A : A ; -- [XXXFS] :: river-; of a river; + fluviatilis_A : A ; -- [XXXEZ] :: river-; of a river (Collins); + fluvidus_A : A ; -- [XXXEC] :: flowing, fluid; + fluvius_M_N : N ; -- [XXXBX] :: river, stream; running water; + fluxilis_A : A ; -- [EXXES] :: fluid; + fluxus_A : A ; -- [XXXDX] :: flowing; fluid; loose; transient, frail, dissolute; + focal_N_N : N ; -- [XXXEC] :: wrapper for the neck; + focale_N_N : N ; -- [GXXEK] :: tie; + focaria_F_N : N ; -- [XXXEO] :: kitchen-maid; cook; soldier's concubine; housekeeper (L+S); + focarius_M_N : N ; -- [XXXEO] :: kitchen-boy/servant; + focillo_V : V ; -- [XXXEC] :: warm up, refresh by warmth; + focilo_V2 : V2 ; -- [XXXCO] :: revive, restore to health/consciousness; keep alive; cherish, tend, foster; + foculus_M_N : N ; -- [XXXEC] :: brazier; + focus_M_N : N ; -- [XXXBX] :: hearth, fireplace; altar; home, household, family; cook stove (Cal); + fodico_V : V ; -- [XXXEC] :: dig, jog; [w/latus => dig in the ribs]; + fodina_F_N : N ; -- [XTXFS] :: mine; pit; + fodio_V2 : V2 ; -- [XXXBX] :: dig, dig out/up; stab; + fodorus_M_N : N ; -- [FWXFY] :: sheath; + fodrum_N_N : N ; -- [FAXFM] :: lead fother, load/cartload/ton of lead; fodder, forage, straw; + fodrus_M_N : N ; -- [FWXFY] :: sheath; + foede_Adv : Adv ; -- [XXXCO] :: |shamefully, basely, ignominiously; so as to bring dishonor on oneself; cruelly; + foederalis_A : A ; -- [GXXEK] :: federal; + foederalismus_M_N : N ; -- [GXXEK] :: federalism; + foederalista_M_N : N ; -- [GXXEK] :: federalist; + foederatus_A : A ; -- [XLXCO] :: allied; treaty bound to Rome); federated; leagued together, confederated (L+S); + foedero_V2 : V2 ; -- [XLXFO] :: seal; ratify (an agreement); establish by treaty/league (L+S); + foedifragus_A : A ; -- [XLXEO] :: treacherous, perfidious; league-breaking; that breaks treaties/agreements; + foeditas_F_N : N ; -- [XXXCO] :: |deformity; ugliness/unsightliness; disgrace/shame/infamy; + foedo_V2 : V2 ; -- [XXXBO] :: |||make (punishment) horrible/barbarous; mangle/hack/mutilate, ravage (land); + foedus_A : A ; -- [XXXAO] :: |||atrocious, beastly, shocking; repugnant to refined/civilized taste/feelings; + foedus_N_N : N ; -- [XLXAO] :: ||bond/tie (friendship/kinship/hospitality); law/limit (imposed by nature/fate); + foenum_N_N : N ; -- [FXXCE] :: hay; + foenus_N_N : N ; -- [XXXCE] :: interest (on capital), usury; profit, gain; advantage; + foeteo_V : V ; -- [XXXDO] :: stink; have a bad/offensive smell/odor; + foetidus_A : A ; -- [XXXCO] :: stinking; foul-smelling; having a bad smell/odor; + foetifer_A : A ; -- [XXXNS] :: fertilizing; causing fruitfulness; making fruitful; enriching the soil (W); + foetifico_V : V ; -- [XXXNS] :: breed/spawn; hatch/bring forth offspring/young; + foetificus_A : A ; -- [XXXNS] :: reproductive; genital; fructifying (L+S); + foeto_V : V ; -- [XXXFS] :: breed/spawn; hatch/bring forth offspring/young; impregnate, make fruitful (L+S); + foetor_M_N : N ; -- [XXXDO] :: stench; bad/foul smell, stink; foulness, noisomeness (L+S); + foetosus_A : A ; -- [EXXFS] :: prolific; + foetulentus_A : A ; -- [XXXFO] :: stinking; foul-smelling; fetulent (L+S); + foetuosus_A : A ; -- [DXXFS] :: prolific; + foetura_F_N : N ; -- [XXXCS] :: |laying/hatching eggs; brood, litter, young offspring; young shoots (of vine); + foeturatus_A : A ; -- [DXXFS] :: made into a fetus (of semen); + foetus_A : A ; -- [XXXBS] :: |having newly brought forth/given birth/whelped/calved; bearing/reproducing; + foetus_M_N : N ; -- [XXXAO] :: |||fruit of plant; produce/crop; offshoot/branch/sucker/sapling; bearing fruit; + foetutina_F_N : N ; -- [XXXEO] :: stinking/noisome place, cesspool, midden; + foliatum_N_N : N ; -- [XBXEC] :: salve or oil of spikenard leaves; + foliatus_A : A ; -- [XXXEC] :: leafy; laminated (Cal); + foliothecula_F_N : N ; -- [GXXEK] :: wallet; + folium_N_N : N ; -- [XAXBX] :: leaf; + folliculus_M_N : N ; -- [XXXDX] :: bag or sack; pod; shell; follicle (Cal); + follis_M_N : N ; -- [XXXDX] :: bag, purse; handball; pair of bellows; scrotum; + fomentum_N_N : N ; -- [XXXCO] :: poultice/dressing; hot/cold compress; solace, alleviation; kindling; wick; + fomes_M_N : N ; -- [XXXDX] :: chips of wood, etc for kindling/feeding a fire; + fons_M_N : N ; -- [XXXAE] :: spring, fountain, well; source/fount; principal cause; font; baptistry; + fontalis_A : A ; -- [XXXEE] :: fountain-, of a fountain; fountain-like; + fontanus_A : A ; -- [XXXDX] :: of a spring; + fonticulus_M_N : N ; -- [XXXEC] :: little fountain or spring; + for_V : V ; -- [XXXBX] :: speak, talk; say; + forabilis_A : A ; -- [DXXES] :: penetrable; can be pierced; vulnerable; + foramen_N_N : N ; -- [XXXBX] :: hole, aperture; fissure; + foraneus_A : A ; -- [GXXEK] :: fairground-; + foras_Adv : Adv ; -- [XXXBX] :: out of doors, abroad, forth, out; + forceps_F_N : N ; -- [XXXDX] :: pair of tongs, pincers; + forcia_F_N : N ; -- [FLXFJ] :: accessory of crime; + forda_F_N : N ; -- [XXXDX] :: one who is pregnant/with young; cow in/with calf; + fordeaceus_A : A ; -- [AAXCO] :: barley-, of/connected to barley; (used as term of contempt); + fordearius_A : A ; -- [AAXCO] :: barley-, of/connected to barley; [~ pira => pears ripening w/barley]; + fordeum_N_N : N ; -- [AAXCO] :: barley (the plant or the grain from it); barley-corn; + fordiaceus_A : A ; -- [AAXCO] :: barley-, of/connected to barley; (used as term of contempt); + fordiarius_A : A ; -- [AAXCS] :: barley-, of/connected to barley; [~ pira => pears ripening w/barley]; + fordus_A : A ; -- [XXXDX] :: pregnant; with young; + forensis_A : A ; -- [XXXDX] :: public; pertaining to the courts; + foresta_F_N : N ; -- [FXXEM] :: forest; land under forest law; + forfex_F_N : N ; -- [XXXEC] :: pair of shears or scissors; + foricula_F_N : N ; -- [FXXEK] :: shutter; + forinsecum_N_N : N ; -- [FXXEM] :: foreign service; + forinsecus_Adv : Adv ; -- [XXXDX] :: on the outside; + foris_Adv : Adv ; -- [XXXAX] :: out of doors, abroad; + foris_F_N : N ; -- [XXXBX] :: door, gate; (the two leaves of) a folding door (pl.); double door; entrance; + forisfacio_V2 : V2 ; -- [FLXFJ] :: forfeit; + forma_F_N : N ; -- [XXXAX] :: form, figure, appearance; beauty; mold, pattern; + formabilis_A : A ; -- [DEXFS] :: shapeable, formable; that can be formed/fashioned; able to be formed; + formalis_A : A ; -- [GXXEK] :: |formal; + formalismus_M_N : N ; -- [GXXEK] :: formalism; + formaliter_Adv : Adv ; -- [GXXEK] :: formally; positively; + formamentum_N_N : N ; -- [XXXEC] :: conformation; + formatrix_F_N : N ; -- [EXXFS] :: founder; she who forms; + formica_F_N : N ; -- [XXXDX] :: ant; + formidabilis_A : A ; -- [XXXDX] :: terrifying; + formidilose_Adv : Adv ; -- [FXXFN] :: terribly, dreadfully; alarming; in a frightening manner; fearfully/timorously; + formidilosus_A : A ; -- [FXXEN] :: terrible, scary; dangerous, alarming; formidable; fearful/timorous/frightened; + formido_F_N : N ; -- [XXXCO] :: |rope strung with feathers used by hunters to scare game; + formido_V : V ; -- [XXXCO] :: dread, fear, be afraid of; be afraid for (the safety of) (w/DAT); + formidolose_Adv : Adv ; -- [XXXEO] :: terribly, dreadfully; alarming; in a frightening manner; fearfully/timorously; + formidolosus_A : A ; -- [XXXCO] :: terrible, scary; dangerous, alarming; formidable; fearful/timorous/frightened; + formidulose_Adv : Adv ; -- [XXXEO] :: terribly, dreadfully; alarming; in a frightening manner; fearfully/timorously; + formidulosus_A : A ; -- [XXXCO] :: terrible, scary; dangerous, alarming; formidable; fearful/timorous/frightened; + formo_V : V ; -- [XXXBX] :: form, shape, fashion, model; + formonse_Adv : Adv ; -- [XXXEO] :: beautifully, in a beautiful manner; + formonsulus_A : A ; -- [XXXFO] :: pretty; + formonsus_A : A ; -- [XXXBO] :: beautiful, finely formed, handsome, fair; having fine appearance/form; + formose_Adv : Adv ; -- [XXXEO] :: beautifully, in a beautiful manner; + formosulus_A : A ; -- [XXXFO] :: pretty; + formosus_A : A ; -- [XXXCO] :: beautiful, finely formed, handsome, fair; having fine appearance/form; + formula_F_N : N ; -- [XXXAO] :: ||system (of teaching); legal position, status; terms/provisions (law/compact); + fornacula_F_N : N ; -- [XXXEC] :: little oven; + fornax_F_N : N ; -- [XXXCO] :: furnace/oven/kiln; (baths/smelting/limestone/brick); (goddess of ovens?); + fornicaria_F_N : N ; -- [DEXCS] :: fornicatress; woman (unmarried) who has voluntary sex; prostitute/whore; + fornicarius_M_N : N ; -- [DEXCS] :: fornicator; man (usu. unmarried) who has voluntary sex with (unmarried) woman; + fornicatim_Adv : Adv ; -- [XTXNO] :: archwise, in an arched manner; in the form of an arch (L+S); + fornicatio_F_N : N ; -- [DEXCS] :: |fornication, (unmarried) sex; prostitution/whoredom; + fornicator_M_N : N ; -- [DEXDS] :: fornicator; man (usu. unmarried) who has voluntary sex with (unmarried) woman; + fornicatrix_F_N : N ; -- [DEXDS] :: fornicatress; woman (unmarried) who has sex; prostitute/whore; + fornicatus_A : A ; -- [XXXEO] :: arched, vaulted; (Via Fornicata, a street in Rome); + fornico_V : V ; -- [FEXCE] :: fornicate; commit fornication/whoredom; prostitute/devote to unworthy use (Def); + fornicor_V : V ; -- [DEXCS] :: fornicate; commit fornication/whoredom; prostitute/devote to unworthy use (Def); + fornix_M_N : N ; -- [XXXDX] :: arch, vault, vaulted opening; monument arch; brothel, cellar for prostitution; + forpex_F_N : N ; -- [XXXEO] :: tongs, pincers; shears; + fors_F_N : N ; -- [XXXBX] :: chance; luck, fortune; accident; + forsan_Adv : Adv ; -- [XXXDX] :: perhaps; + forsit_Adv : Adv ; -- [XXXDX] :: perhaps; + forsitam_Adv : Adv ; -- [EXXFP] :: perhaps; (= forsitan); + forsitan_Adv : Adv ; -- [XXXAX] :: perhaps; + fortasse_Adv : Adv ; -- [XXXBO] :: perhaps, possibly; it may be; + fortassis_Adv : Adv ; -- [XXXCO] :: perhaps, possibly; it may be; + forte_Adv : Adv ; -- [XXXDX] :: by chance; perhaps, perchance; as luck would have it; + forticulus_A : A ; -- [XXXEC] :: fairly bold; + fortificatio_F_N : N ; -- [FEXDF] :: strengthening, fortifying; fortification; [~ missa => celebration of mass]; + fortifico_V2 : V2 ; -- [FXXDF] :: strengthen, fortify, make strong; + fortis_A : A ; -- [XXXAX] :: strong, powerful, mighty, vigorous, firm, steadfast, courageous, brave, bold; + fortiter_Adv : Adv ; -- [XXXDX] :: strongly; bravely; boldly; + fortitudo_F_N : N ; -- [XXXBX] :: strength, courage, valor; firmness; + fortuito_Adv : Adv ; -- [XXXDX] :: accidentally, by chance, fortuitously; casually; + fortuitu_Adv : Adv ; -- [DXXDX] :: accidentally, by chance, fortuitously; casually; + fortuitum_N_N : N ; -- [XXXDX] :: accidents (pl.), casualties; + fortuitus_A : A ; -- [XXXDX] :: casual, accidental, fortuitous, happening by chance; + fortuna_F_N : N ; -- [XXXAX] :: chance, luck, fate; prosperity; condition, wealth, property; + fortunate_Adv : Adv ; -- [XXXDX] :: fortunately; + fortunatus_A : A ; -- [XXXBX] :: lucky, fortunate; rich, wealthy; happy; blessed; + fortunium_N_N : N ; -- [FXXFM] :: fortune; blessing; + fortuno_V2 : V2 ; -- [XXXEC] :: make happy, bless, prosper; + foruitus_A : A ; -- [XXXDX] :: casual; accidental; + forum_N_N : N ; -- [XXXAX] :: market; forum (in Rome); court of justice; + forus_M_N : N ; -- [XXXDX] :: gangway in a ship; row of benches erected for games/circus; cell of bees; + fossa_F_N : N ; -- [XXXDX] :: ditch, trench, canal; moat; dike, fosse; + fossatum_N_N : N ; -- [DXXFS] :: ditch, trench, canal; moat; dike, fosse; + fossatus_A : A ; -- [XXXFZ] :: ditch-provided; + fossatus_M_N : N ; -- [DXXES] :: boundary; (defined by a ditch?); + fossicius_A : A ; -- [XAXES] :: dug up; dug out; + fossile_N_N : N ; -- [GXXEK] :: fossil; + fossilis_A : A ; -- [XXXES] :: dug up/out; fossil-; + fossio_F_N : N ; -- [XXXFS] :: digging; ditch; + fossor_M_N : N ; -- [XXXDX] :: one who digs the ground; + fovea_F_N : N ; -- [XXXDX] :: pit, pitfall; + foveo_V : V ; -- [XXXBX] :: keep warm; favor, cherish, maintain, foster; + fracesco_V : V ; -- [XXXEO] :: become soft/mushy; become mellow/tractable (L+S); spoil, rot, become rancid; + fractio_F_N : N ; -- [GSXEK] :: fraction (math.); + fragilis_A : A ; -- [XXXBX] :: brittle, frail; impermanent; + fragilitas_F_N : N ; -- [XXXDX] :: brittleness; frailty; + fraglans_A : A ; -- [XXXBO] :: |burning (w/desire), ardent/passionate; outrageous/monstrous/flagrant (crime); + fraglanter_Adv : Adv ; -- [XXXEO] :: ardently, passionately; vehemently, heatedly; eagerly; + fraglantia_F_N : N ; -- [XXXCO] :: blaze, burning; scorching heat; passionate glow (eyes); passionate love/ardor; + fragmen_N_N : N ; -- [XXXDX] :: fragment, piece broken off; fragments (pl.), chips, ruins; chips of wood (pl.); + fragmentum_N_N : N ; -- [XXXDX] :: fragment; + fragor_M_N : N ; -- [XXXDX] :: noise, crash; + fragosus_A : A ; -- [XXXDX] :: brittle; ragged; + fragrantia_F_N : N ; -- [FXXEK] :: perfume; + fragro_V : V ; -- [XXXDX] :: smell strongly; + fragum_N_N : N ; -- [XXXDX] :: wild strawberries (pl.); + framea_F_N : N ; -- [XWGEO] :: spear used by the Germani; + francomurarius_M_N : N ; -- [GXXEK] :: freemason; + francus_M_N : N ; -- [GXXEK] :: franc (currency); + frango_V2 : V2 ; -- [XXXAX] :: break, shatter, crush; dishearten, subdue, weaken; move, discourage; + frater_M_N : N ; -- [XXXAX] :: brother; cousin; + fraterculus_M_N : N ; -- [XXXEO] :: little brother; + fraternitas_F_N : N ; -- [XXXDO] :: brotherhood, fraternity; the relationship of brothers; + fraternus_A : A ; -- [XXXCO] :: brotherly/brother's; of/belonging to a brother; fraternal; friendly; of cousin; + fratricida_M_N : N ; -- [XXXEC] :: one who kills a brother, a fratricide; + fraudo_V2 : V2 ; -- [XXXBO] :: |embezzle, take (money) dishonestly, steal; violate; evade/trick intent of law; + fraudulenter_Adv : Adv ; -- [XXXCO] :: fraudulently, deceitfully; dishonestly; falsely; + fraudulentia_F_N : N ; -- [XXXFO] :: fraud, deceit; dishonesty; knavery; deceitfulness; disposition to defraud; + fraudulentus_A : A ; -- [XXXCO] :: fraudulent, deceitful; dishonest; false; + fraudulosus_A : A ; -- [XXXFO] :: fraudulent, deceitful; dishonest; false; + fraus_F_N : N ; -- [XXXBX] :: fraud; trickery, deceit; imposition, offense, crime; delusion; + fraxineus_A : A ; -- [XXXDX] :: of ash; ashen; + fraxinus_A : A ; -- [XXXDX] :: of ash; ashen; + fraxinus_F_N : N ; -- [XXXDX] :: ash-tree; spear or javelin of ash; + fremebundus_A : A ; -- [XXXEC] :: roaring, murmuring; + fremitus_A : A ; -- [XXXDX] :: roaring, noisy; shouting, raging, growling, snorting, howling; + fremitus_M_N : N ; -- [XXXDX] :: roar, loud noise; shouting; resounding; rushing, murmuring, humming; growl; + fremo_V2 : V2 ; -- [XXXDX] :: roar; growl; rage; murmur, clamor for; + fremor_M_N : N ; -- [XXXDX] :: low/confused noise/roaring, murmur; + frendeo_V : V ; -- [XXXDX] :: gnash the teeth, grind up small; + frendo_V2 : V2 ; -- [XXXDX] :: gnash the teeth, grind up small; + freno_V : V ; -- [XXXDX] :: brake, curb, restrain, check; + frenum_N_N : N ; -- [XXXAO] :: bridle/harness/rein/bit; harnessed horses/team; check/restraint/brake; mastery; + frenus_M_N : N ; -- [XXXAO] :: bridle/harness/rein/bit; harnessed horses/team; check/restraint/brake; mastery; + frequens_A : A ; -- [XXXAX] :: crowded; numerous, full, frequented, populous; repeated, frequent, constant; + frequenter_Adv : Adv ; -- [XXXDX] :: often, frequently; in great numbers; in crowds; + frequentia_F_N : N ; -- [XXXDX] :: crowd; large attendance; abundance of persons/things; frequency; + frequento_V : V ; -- [XXXBX] :: frequent; repeat often; haunt; throng; crowd; celebrate; + fretum_N_N : N ; -- [XXXBX] :: sea; narrow sea, straits; + fretus_A : A ; -- [XXXDX] :: relying on, trusting to, supported by (w/ABL); + fribusculum_N_N : N ; -- [DXXES] :: slight cold; coolness/disagreement between man and wife; (frigus-culus); + fricatio_F_N : N ; -- [EXXES] :: rubbing; friction; + fricatus_M_N : N ; -- [DXXNS] :: rubbing-down (Pliny); + frico_V : V ; -- [XXXDX] :: rub, chafe; + frictio_F_N : N ; -- [XBXFO] :: friction; massage; + frigdor_M_N : N ; -- [DXXFS] :: cold; chill (esp. of feverish person) (Souter); + frigeo_V : V ; -- [XXXDX] :: be cold; lack vigor; get cold reception; fail to win favor; fall flat (words); + frigesco_V2 : V2 ; -- [XXXDX] :: become cold, cool, lose heat; slaken, abate, fall off/flat; + frigidarium_N_N : N ; -- [XTXDS] :: cold room (of baths); larder; refrigerator (Cal); + frigidarius_A : A ; -- [XXXES] :: cooling; of cooling; + frigidulus_A : A ; -- [XXXEC] :: somewhat cold or faint; + frigidus_A : A ; -- [XXXBX] :: cold, cool, chilly, frigid; lifeless, indifferent, dull; + frigo_V2 : V2 ; -- [XXXCO] :: roast, parch; fry (L+S); + frigor_M_N : N ; -- [DXXES] :: cold; chill (esp. of feverish person) (Souter); + frigus_N_N : N ; -- [XXXAX] :: cold; cold weather, winter; frost; + frigusculum_N_N : N ; -- [DXXES] :: slight cold; coolness/disagreement between man and wife; (frigus-culus); + friguttio_V : V ; -- [XXXEO] :: utter broken sounds; stutter, stammer; + fringulio_V : V ; -- [XXXEO] :: utter broken sounds; twitter/chirp (birds); stutter, stammer; + fringultio_V : V ; -- [XXXEO] :: utter broken sounds; twitter/chirp (birds); stutter, stammer; + frio_V2 : V2 ; -- [XXXEC] :: rub; crumble; + frisiatus_A : A ; -- [FXXEE] :: embroidered; w/frieze (Whitaker) + fritillus_M_N : N ; -- [XXXEC] :: dice-box; + frivolus_A : A ; -- [XXXDX] :: frivolous, trifling; silly, worthless; trashy; + frixeolum_N_N : N ; -- [GXXEK] :: crepe (food); + frixo_V2 : V2 ; -- [DXXFS] :: thoroughly roast; + frixorium_N_N : N ; -- [DXXES] :: frying pan; + frixura_F_N : N ; -- [DXXES] :: frying pan; + frixus_A : A ; -- [XXXES] :: roasted; fried; + fromo_V : V ; -- [XXXEZ] :: throw up; + frondator_M_N : N ; -- [XAXDX] :: pruner; + frondeo_V : V ; -- [XAXCO] :: have/put forth leaves, be in leaf; be leafy/full of trees (place); (in spirit); + frondesco_V : V ; -- [XAXDX] :: become leafy, shoot; put forth leaves; + frondeus_A : A ; -- [XAXDX] :: leafy; + frondifer_A : A ; -- [XAXEC] :: leaf-bearing, leafy; + frondosus_A : A ; -- [XAXDX] :: leafy, abounding in foliage; 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 ; - fructifer_A : A ; - fructifero_V : V ; - fructifico_V : V ; - fructuarius_A : A ; - fructuosus_A : A ; - fructus_M_N : N ; - frucuosus_A : A ; - frugalis_A : A ; - frugalitas_F_N : N ; - frugaliter_Adv : Adv ; - frugi_A : A ; - frugifer_A : A ; - frugiferens_A : A ; - frugilegus_A : A ; - frugiparus_A : A ; - fruitio_F_N : N ; - frumentarius_A : A ; - frumentatio_F_N : N ; - frumentator_M_N : N ; - frumentor_V : V ; - frumentum_N_N : N ; - frunesco_V : V ; - fruniscor_V : V ; - fruor_V : V ; - frustatim_Adv : Adv ; - frustillatim_Adv : Adv ; - frustra_Adv : Adv ; - frustramen_N_N : N ; - frustratio_F_N : N ; - frustro_V2 : V2 ; - frustror_V : V ; - frustum_N_N : N ; - frutectosus_A : A ; - frutectum_N_N : N ; - frutetum_N_N : N ; - frutex_M_N : N ; - fruticetum_N_N : N ; - frutico_V : V ; - fruticor_V : V ; - fruticosus_A : A ; - frux_F_N : N ; - fuco_V : V ; - fucosus_A : A ; - fucus_M_N : N ; - fuga_F_N : N ; - fugax_A : A ; - fugio_V2 : V2 ; - fugitivus_A : A ; - fugitivus_M_N : N ; - fugo_V : V ; - fulcimen_N_N : N ; - fulcimentum_N_N : N ; - fulcio_V2 : V2 ; - fulcrum_N_N : N ; - fulgens_A : A ; - fulgenter_Adv : Adv ; - fulgeo_V : V ; - fulgesco_V : V ; - fulgidus_A : A ; - fulgor_M_N : N ; - fulgueo_V : V ; - fulguo_V : V ; - fulgur_N_N : N ; - fulgurator_M_N : N ; - fulguratus_A : A ; - fulguritus_A : A ; - fulguro_V : V ; - fulica_F_N : N ; - fuligo_F_N : N ; - fullo_M_N : N ; - fullonia_F_N : N ; - fullonica_F_N : N ; - fullonium_N_N : N ; - fulmen_N_N : N ; - fulmenta_F_N : N ; - fulmentum_N_N : N ; - fulmineus_A : A ; - fulmino_V : V ; - fultus_A : A ; - fulvus_A : A ; - fumaculum_N_N : N ; - fumator_M_N : N ; - fumeus_A : A ; - fumidus_A : A ; - fumifer_A : A ; - fumifico_V : V ; - fumificus_A : A ; - fumigabundus_A : A ; - fumigans_A : A ; - fumigium_N_N : N ; - fumigo_V : V ; - fumigo_V2 : V2 ; - fumisugium_N_N : N ; - fumo_V : V ; - fumosus_A : A ; - fumus_M_N : N ; - funale_N_N : N ; - funambulus_M_N : N ; - functio_F_N : N ; - functionalis_A : A ; - functionaliter_Adv : Adv ; - funda_F_N : N ; - fundaitor_M_N : N ; - fundamen_N_N : N ; - fundamentum_N_N : N ; - fundatio_F_N : N ; - fundatrix_F_N : N ; - fundibalarius_M_N : N ; - fundibalum_N_N : N ; - fundibalus_M_N : N ; - fundibulum_N_N : N ; - fundimentum_N_N : N ; - funditor_M_N : N ; - funditus_Adv : Adv ; - fundius_Adv : Adv ; - fundo_V : V ; - fundo_V2 : V2 ; - fundus_M_N : N ; - funebre_N_N : N ; - funebris_A : A ; - funereus_A : A ; - funero_V2 : V2 ; - funesto_V : V ; - funestus_A : A ; - funginus_A : A ; - fungor_V : V ; - fungosus_A : A ; - fungus_M_N : N ; - funiculus_M_N : N ; - funis_M_N : N ; - funivia_F_N : N ; - funus_N_N : N ; + frons_M_N : N ; -- [XXXAX] :: forehead, brow; face; look; front; fore part of anything; + frontal_N_N : N ; -- [XAXEC] :: frontlet (pl.) of a horse; + fronto_M_N : N ; -- [XXXFO] :: man with broad/bulging forehead; + fructifer_A : A ; -- [XAXEO] :: fruitful; fruit-bearing, bearing fruit; + fructifero_V : V ; -- [EXXFP] :: bear fruit; (Vulgate 4 Ezra 16:25/26); + fructifico_V : V ; -- [XXXEO] :: sprout, produce new growth (plants); bear (new) fruit (L+S); increase (Douay); + fructuarius_A : A ; -- [XXXEC] :: fruit-bearing, fruitful; + fructuosus_A : A ; -- [XXXDX] :: fruitful, productive, abounding in fruit; profitable, advantageous; + fructus_M_N : N ; -- [XXXAX] :: produce, crops; fruit; profit; enjoyment; reward; + frucuosus_A : A ; -- [XXXDX] :: fruitful; profitable; + frugalis_A : A ; -- [XXXCO] :: worthy/honest/deserving; thrifty/frugal/simple; temperate/sober; of vegetables; + frugalitas_F_N : N ; -- [XXXDX] :: frugality; economy; honesty; + frugaliter_Adv : Adv ; -- [XXXCO] :: simply, frugally, economically; soberly; in a restrained manner; + frugi_A : A ; -- [XXXCO] :: worthy/honest/deserving; virtuous; thrifty/frugal; temperate/sober; useful/fit; + frugifer_A : A ; -- [XXXDX] :: fruit-bearing, fertile; + frugiferens_A : A ; -- [XAXEC] :: fruitful, fertile; + frugilegus_A : A ; -- [XXXEC] :: collecting grain; + frugiparus_A : A ; -- [XXXEC] :: fruitful, prolific; + fruitio_F_N : N ; -- [XXXDS] :: enjoyment; + frumentarius_A : A ; -- [XXXDX] :: grain producing; of/concerning grain; [res frumentaria => grain supply]; + frumentatio_F_N : N ; -- [XXXDX] :: foraging; collecting of grain; + frumentator_M_N : N ; -- [XXXDX] :: forager; + frumentor_V : V ; -- [XXXDX] :: get grain, forage; + frumentum_N_N : N ; -- [XXXBX] :: grain; crops; + frunesco_V : V ; -- [EXXCW] :: enjoy; have the pleasure of; + fruniscor_V : V ; -- [XXXCO] :: enjoy; have the pleasure of; + fruor_V : V ; -- [XXXDX] :: enjoy (proceeds/socially/sexually), profit by, delight in (w/ABL); + frustatim_Adv : Adv ; -- [XXXDX] :: into pieces; + frustillatim_Adv : Adv ; -- [XXXEC] :: bit by bit; + frustra_Adv : Adv ; -- [XXXAX] :: in vain; for nothing, to no purpose; + frustramen_N_N : N ; -- [XXXEC] :: deception; + frustratio_F_N : N ; -- [XXXDX] :: deceiving, disappointment; + frustro_V2 : V2 ; -- [EXXDP] :: |reject; delay; rob/defraud/cheat; pretend; refute (argument); corrupt/falsify; + frustror_V : V ; -- [EXXCP] :: |reject; delay; rob/defraud/cheat; pretend; refute (argument); corrupt/falsify; + frustum_N_N : N ; -- [XXXDX] :: crumb, morsel, scrap of food; + frutectosus_A : A ; -- [XXXNO] :: shrubby, abounding in thickets; bushy, resembling a bush/shrub; + frutectum_N_N : N ; -- [XXXCO] :: thicket of shrubs/bushes, covert; shrubs/bushes (pl.); + frutetum_N_N : N ; -- [XXXDS] :: thicket, covert; place full of shrubs/bushes; + frutex_M_N : N ; -- [XXXCO] :: shrub, bush; shoot, stem, stalk, growth; "blockhead"; + fruticetum_N_N : N ; -- [XXXDS] :: thicket, covert; place full of shrubs/bushes; + frutico_V : V ; -- [XAXCO] :: put forth shoots, bush/branch out; (antlers); become bushy, grow thickly (hair); + fruticor_V : V ; -- [XAXBO] :: put forth shoots, bush/branch out; (antlers); become bushy, grow thickly (hair); + fruticosus_A : A ; -- [XXXDX] :: bushy; + frux_F_N : N ; -- [XXXBX] :: crops (pl.), fruits, produce, legumes; honest men; + fuco_V : V ; -- [XXXDX] :: color; paint; dye; + fucosus_A : A ; -- [XXXDX] :: sham, bogus; + fucus_M_N : N ; -- [XXXBO] :: dye; (as cosmetic) rouge; bee-glue, propolis; presence/disguise/sham; seaweed; + fuga_F_N : N ; -- [GDXEK] :: |fugue (music); + fugax_A : A ; -- [XXXDX] :: flying swiftly; swift; avoiding, transitory; + fugio_V2 : V2 ; -- [XXXAX] :: flee, fly, run away; avoid, shun; go into exile; + fugitivus_A : A ; -- [XXXDX] :: fugitive; + fugitivus_M_N : N ; -- [XXXDX] :: fugitive; deserter; runaway slave; + fugo_V : V ; -- [XXXBX] :: put to flight, rout; chase away; drive into exile; + fulcimen_N_N : N ; -- [XXXEC] :: prop, support, pillar; + fulcimentum_N_N : N ; -- [FXXFM] :: book-rest; + fulcio_V2 : V2 ; -- [XXXBX] :: prop up, support; + fulcrum_N_N : N ; -- [XXXDX] :: head or back-support of a couch; bed post; foot of a couch; sole of the foot; + fulgens_A : A ; -- [XXXCO] :: flashing, gleaming/glittering, resplendent; brilliant (white); bright, splendid; + fulgenter_Adv : Adv ; -- [XXXNO] :: resplendently; brilliantly; splendidly; glitteringly (L+S); + fulgeo_V : V ; -- [XXXBX] :: flash, shine; glow, gleam, glitter, shine forth, be bright; + fulgesco_V : V ; -- [XXXFS] :: flash; glitter; + fulgidus_A : A ; -- [XXXEC] :: shining, gleaming, glittering; + fulgor_M_N : N ; -- [XXXBO] :: brightness/brilliance/radiance; splendor/glory; flame/flash; lightening/meteor; + fulgueo_V : V ; -- [XXXCO] :: glitter/flash/shine brightly, gleam; be brilliant/bright/resplendent; light up; + fulguo_V : V ; -- [XXXCO] :: glitter/flash/shine brightly, gleam; be brilliant/bright/resplendent; light up; + fulgur_N_N : N ; -- [XXXDX] :: lightning, flashing, brightness; [pubica ~ => things blasted by lightning]; + fulgurator_M_N : N ; -- [XEXEC] :: priest who interpreted omens from lightning; + fulguratus_A : A ; -- [XEXEO] :: struck by lightening; (also of eloquence); + fulguritus_A : A ; -- [XXXEC] :: struck by lightning; + fulguro_V : V ; -- [XXXCO] :: glitter/flash/shine brightly, gleam; light up; (IMPERS) it lightens; + fulica_F_N : N ; -- [XXXDX] :: water-fowl; (probably coot); + fuligo_F_N : N ; -- [XXXDX] :: soot; lamp-black; + fullo_M_N : N ; -- [XXXEC] :: cloth-fuller; + fullonia_F_N : N ; -- [XTXFS] :: fuller's trade; + fullonica_F_N : N ; -- [XXXEC] :: art of fulling; + fullonium_N_N : N ; -- [XTXFS] :: fuller's shop; + fulmen_N_N : N ; -- [XXXBX] :: lightning, flash; thunderbolt; crushing blow; + fulmenta_F_N : N ; -- [XXXES] :: prop; support; shoe-heel; + fulmentum_N_N : N ; -- [XXXES] :: bedpost; prop; support; + fulmineus_A : A ; -- [XXXDX] :: of lightning; destructive; + fulmino_V : V ; -- [XXXDX] :: lighten; cause lightning to strike; strike like lightning; + fultus_A : A ; -- [XXXDX] :: propped up; supported; + fulvus_A : A ; -- [XXXBX] :: tawny, reddish yellow; yellow; + fumaculum_N_N : N ; -- [GXXEK] :: pipe; + fumator_M_N : N ; -- [GXXEK] :: smoker; + fumeus_A : A ; -- [XXXDX] :: smoky; + fumidus_A : A ; -- [XXXDX] :: full of smoke, smoky; + fumifer_A : A ; -- [XXXDX] :: smoky; + fumifico_V : V ; -- [GXXEK] :: smoke (a cigar); + fumificus_A : A ; -- [XXXEC] :: causing smoke; + fumigabundus_A : A ; -- [DXXFS] :: smoking; causing smoke; + fumigans_A : A ; -- [EXXEP] :: almost extinguished; + fumigium_N_N : N ; -- [DXXFS] :: fumigation; fumigating; + fumigo_V : V ; -- [GXXEK] :: smoke (kitchen); + fumigo_V2 : V2 ; -- [XXXEO] :: smoke, fumigate; treat with/subject to smoke; produce smoke (L+S); steam; + fumisugium_N_N : N ; -- [GXXEK] :: pipe; + fumo_V : V ; -- [XXXDX] :: smoke, steam, fume, reek; + fumosus_A : A ; -- [XXXDX] :: full of smoke, smoky, smoked; gray-smoke-colored (Cal); + fumus_M_N : N ; -- [XXXBX] :: smoke, steam, vapor, fume; + funale_N_N : N ; -- [XXXDX] :: torch of wax or tallow soaked rope; chandelier; + funambulus_M_N : N ; -- [XXXEC] :: rope-dancer; + functio_F_N : N ; -- [GSXEK] :: |function (math.); + functionalis_A : A ; -- [GXXEK] :: functional; + functionaliter_Adv : Adv ; -- [GXXEK] :: functionally; + funda_F_N : N ; -- [XXXDX] :: sling; casting net; pocket (Cal); + fundaitor_M_N : N ; -- [XXXDX] :: founder; + fundamen_N_N : N ; -- [XXXDX] :: foundation; + fundamentum_N_N : N ; -- [XXXBX] :: foundation; beginning; basis; + fundatio_F_N : N ; -- [FXXFM] :: foundation; E:endowment; G:basis; + fundatrix_F_N : N ; -- [FXXFM] :: foundress; she who founded/founds; + fundibalarius_M_N : N ; -- [EXXES] :: slinger; (classical funditor); + fundibalum_N_N : N ; -- [DWXDS] :: catapult, slinging/hurling machine; + fundibalus_M_N : N ; -- [DWXDS] :: catapult, slinging/hurling machine; + fundibulum_N_N : N ; -- [DWXDS] :: catapult, slinging/hurling machine; + fundimentum_N_N : N ; -- [XXXDX] :: foundation, ground work, basis; + funditor_M_N : N ; -- [XXXDX] :: slinger; + funditus_Adv : Adv ; -- [XXXBO] :: utterly/completely/without exception; from the bottom/to the ground/by the root; + fundius_Adv : Adv ; -- [XXXDX] :: from the very bottom; utterly, totally; + fundo_V : V ; -- [XXXBX] :: establish, found, begin; lay the bottom, lay a foundation; confirm; + fundo_V2 : V2 ; -- [XXXAX] :: pour, cast (metals); scatter, shed, rout; + fundus_M_N : N ; -- [XAXBX] :: farm; piece of land, estate; bottom, lowest part; foundation; an authority; + funebre_N_N : N ; -- [XXXDX] :: funeral rites (pl.); + funebris_A : A ; -- [XXXDX] :: funeral, deadly, fatal; funereal; + funereus_A : A ; -- [XXXDX] :: funereal; deadly; fatal; + funero_V2 : V2 ; -- [XXXEC] :: bury solemnly, inter with the funeral rites; + funesto_V : V ; -- [XXXDX] :: pollute by murder; + funestus_A : A ; -- [XXXDX] :: deadly, fatal; sad; calamitous; destructive; + funginus_A : A ; -- [XXXEC] :: of a mushroom; + fungor_V : V ; -- [XXXBX] :: perform, execute, discharge (duty); be engaged in (w/ABL of function); + fungosus_A : A ; -- [XXXFS] :: spongy; fungous; + fungus_M_N : N ; -- [XXXDX] :: fungus; mushroom; + funiculus_M_N : N ; -- [XXXEC] :: thin rope, cord, string; + funis_M_N : N ; -- [XXXDX] :: rope; line, cord, sheet, cable; measuring-line/rope, lot (Plater); + funivia_F_N : N ; -- [GTXEK] :: cablecar; + funus_N_N : N ; -- [XXXAX] :: burial, funeral; funeral rites; ruin; corpse; death; fur_F_N : N ; -- [XXXBO] :: thief, robber; robber bee; the Devil (personified) (Souter); - fur_M_N : N ; - furax_A : A ; - furca_F_N : N ; - furcifer_M_N : N ; - furcilla_F_N : N ; - furcillo_V2 : V2 ; - furcula_F_N : N ; + fur_M_N : N ; -- [XXXBO] :: thief, robber; robber bee; the Devil (personified) (Souter); + furax_A : A ; -- [FXXEN] :: thieving (Collins); inclined to steal (Nelson); + furca_F_N : N ; -- [XXXDX] :: (two-pronged) fork; prop; + furcifer_M_N : N ; -- [XXXDX] :: yoke-bearer; rascal, scoundrel, rogue; gallows-bird; jailbird; + furcilla_F_N : N ; -- [XXXEC] :: little fork; + furcillo_V2 : V2 ; -- [XXXEC] :: support; + furcula_F_N : N ; -- [XXXDX] :: forked prop; forks (pl.), narrow pass (esp. the Caudine Forks); 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 ; - furibundus_A : A ; - furio_V : V ; - furiosus_A : A ; - furnax_F_N : N ; - furnus_M_N : N ; - furo_V : V ; - furor_M_N : N ; - furor_V : V ; + furfur_M_N : N ; -- [XAXCO] :: husks of grain, bran; scaly infection of the skin; + furia_F_N : N ; -- [XXXDX] :: frenzy, fury; rage (pl.); mad craving; Furies, avenging spirits; + furialis_A : A ; -- [XXXDX] :: frenzied, mad; avenging; + furibundus_A : A ; -- [XXXDX] :: raging, mad, furious; inspired; + furio_V : V ; -- [XXXDX] :: madden, enrage; + furiosus_A : A ; -- [XXXDX] :: furious, mad, frantic, wild; + furnax_F_N : N ; -- [XXXCO] :: furnace/oven/kiln; (baths/smelting/limestone/brick); (goddess of ovens?); + furnus_M_N : N ; -- [XXXDX] :: oven, bakery; + furo_V : V ; -- [XXXBX] :: rave, rage; be mad/furious; be wild; + furor_M_N : N ; -- [XPXBX] :: madness, rage, fury, frenzy; passionate love; + furor_V : V ; -- [XXXBX] :: steal; plunder; furs_F_N : N ; -- [DXXFP] :: thief, robber; robber bee; the Devil (personified); - furs_M_N : N ; - furtificus_A : A ; - furtim_Adv : Adv ; - furtivus_A : A ; - furtum_N_N : N ; - furunculus_M_N : N ; - furvus_A : A ; - fuscina_F_N : N ; - fuscinula_F_N : N ; - fusco_V : V ; - fuscus_A : A ; - fusiformis_A : A ; - fusilis_A : A ; - fustibalus_M_N : N ; - fustis_M_N : N ; - fustuarium_N_N : N ; - fusus_A : A ; - fusus_M_N : N ; - futatim_Adv : Adv ; - futilis_A : A ; - futtilis_A : A ; - futuo_V2 : V2 ; - futurismus_M_N : N ; - futurologus_M_N : N ; - futurus_A : A ; - fylacterium_N_N : N ; - gabalus_M_N : N ; - gadus_M_N : N ; - gaesum_N_N : N ; - gafrum_N_N : N ; - galactinus_M_N : N ; - galanthus_M_N : N ; - galaxia_F_N : N ; - galaxicus_A : A ; - galba_F_N : N ; - galbanen_N_N : N ; - galbanum_N_N : N ; - galbanus_A : A ; - galbeolus_M_N : N ; - galbeus_M_N : N ; - galbinum_N_N : N ; - galbinus_A : A ; - galea_F_N : N ; - galeatus_A : A ; - galeo_V2 : V2 ; - galeola_F_N : N ; - galericulum_N_N : N ; - galeritus_A : A ; - galerum_N_N : N ; - galerus_M_N : N ; - galetta_F_N : N ; - galliambus_M_N : N ; - galliarium_N_N : N ; - galliarius_A : A ; - galliarius_M_N : N ; - gallicinium_N_N : N ; - gallicula_F_N : N ; - gallina_F_N : N ; - gallinaceus_A : A ; - gallinacius_A : A ; - gallinarius_A : A ; - gallinarius_M_N : N ; - gallus_M_N : N ; - gammarus_M_N : N ; - ganea_F_N : N ; - ganeo_M_N : N ; - ganeum_N_N : N ; - gannio_V : V ; - gannitus_M_N : N ; - gaola_F_N : N ; - garba_F_N : N ; - garda_F_N : N ; - gardinum_N_N : N ; - gargarisso_V : V ; - gargarizatio_F_N : N ; - gargarizo_V : V ; - garrio_V2 : V2 ; - garritus_M_N : N ; - garrulitas_F_N : N ; - garrulus_A : A ; - garum_N_N : N ; - garyophyllon_N_N : N ; - gasalis_A : A ; - gasificatrum_N_N : N ; - gasometrum_N_N : N ; - gasosus_A : A ; - gastritis_F_N : N ; - gasum_N_N : N ; - gata_F_N : N ; - gateleia_F_N : N ; - gatta_F_N : N ; - gattus_M_N : N ; - gaudeo_V : V ; - gaudimonium_N_N : N ; - gaudium_N_N : N ; - gaunaca_F_N : N ; - gaunacum_N_N : N ; - gaunacuma_F_N : N ; - gausapa_F_N : N ; - gausapatus_A : A ; - gausape_N_N : N ; - gausapes_F_N : N ; - gausapina_F_N : N ; - gausapinus_A : A ; - gausapum_N_N : N ; - gaza_F_N : N ; - gazela_F_N : N ; - gazofilacium_N_N : N ; - gazophylachium_N_N : N ; - gehenna_F_N : N ; - gehennalis_A : A ; - gelamen_N_N : N ; - gelasinus_M_N : N ; - gelatina_F_N : N ; - gelatorius_A : A ; - gelda_F_N : N ; - geldonia_F_N : N ; - geldum_N_N : N ; - gelicidium_N_N : N ; - gelida_F_N : N ; - gelide_Adv : Adv ; - gelidus_A : A ; - gelo_V : V ; - gelu_N_N : N ; - gelum_N_N : N ; - gelus_M_N : N ; - gemebundus_A : A ; - gemellio_F_N : N ; - gemellipara_F_N : N ; - gemellus_A : A ; - gemellus_M_N : N ; - geminatio_F_N : N ; - gemino_V : V ; - geminus_A : A ; - geminus_M_N : N ; - gemitus_M_N : N ; - gemma_F_N : N ; - gemmarius_M_N : N ; - gemmatus_A : A ; - gemmeus_A : A ; - gemmifer_A : A ; - gemmo_V : V ; - gemo_V2 : V2 ; - gena_F_N : N ; - genealogia_F_N : N ; - genealogicus_A : A ; - genealogus_M_N : N ; - gener_M_N : N ; - generalis_A : A ; - generalis_M_N : N ; - generalitas_F_N : N ; - generaliter_Adv : Adv ; - generasco_V : V ; - generatim_Adv : Adv ; - generatio_F_N : N ; - generativus_A : A ; - generator_M_N : N ; - generatrum_N_N : N ; - generilitas_F_N : N ; - genero_V : V ; - generose_Adv : Adv ; - generositas_F_N : N ; - generosus_A : A ; - genes_F_N : N ; - genesta_F_N : N ; - genetica_F_N : N ; - geneticus_A : A ; - genetivus_A : A ; - genetrix_F_N : N ; - genialis_A : A ; - geniculatus_A : A ; - genimen_N_N : N ; - genista_F_N : N ; - genital_N_N : N ; - genitalis_A : A ; - genitor_M_N : N ; - genitus_A : A ; - genius_M_N : N ; - geno_V : V ; - genocidium_N_N : N ; - genoma_N_N : N ; - gens_F_N : N ; - gentiana_F_N : N ; - genticus_A : A ; - gentil_M_N : N ; - gentilicius_A : A ; - gentilis_A : A ; - gentilis_M_N : N ; - gentilismus_M_N : N ; - gentilitas_F_N : N ; - gentilitius_A : A ; - genu_N_N : N ; - genual_N_N : N ; - genuale_N_N : N ; - genuflecto_V2 : V2 ; - genuine_Adv : Adv ; - genuinus_A : A ; - genuinus_M_N : N ; - genum_N_N : N ; - genus_N_N : N ; - geocentricus_A : A ; - geocentrismus_M_N : N ; - geochemia_F_N : N ; - geochemista_M_N : N ; - geodaeticus_A : A ; - geographia_F_N : N ; - geographicus_A : A ; - geologia_F_N : N ; - geologicus_A : A ; - geologus_M_N : N ; - geometres_M_N : N ; - geometria_F_N : N ; - geometricus_A : A ; - geometricus_M_N : N ; - georgicus_A : A ; - geriatria_F_N : N ; - germana_M_N : N ; - germanitas_F_N : N ; - germanus_A : A ; - germanus_M_N : N ; - germen_N_N : N ; - germinalis_A : A ; - germinatio_F_N : N ; - germino_V : V ; - gero_V2 : V2 ; - gerontocomium_N_N : N ; - gerontotrophium_N_N : N ; - gerra_F_N : N ; - gerro_M_N : N ; - gerula_F_N : N ; - gerulum_N_N : N ; - gerulus_M_N : N ; - gerundium_N_N : N ; - gerundivum_N_N : N ; - gestamen_N_N : N ; - gestatio_F_N : N ; - gesticulor_V : V ; - gestio_V2 : V2 ; - gestito_V : V ; - gesto_V : V ; - gestum_N_N : N ; - gestus_M_N : N ; - gibber_A : A ; - gibber_M_N : N ; - gibberosus_A : A ; - gibbus_A : A ; - gibbus_M_N : N ; - gigno_V2 : V2 ; - gilbus_A : A ; - gilda_F_N : N ; - gildo_M_N : N ; - gilvus_A : A ; - gimel_N : N ; - gingiber_N_N : N ; - gingiva_F_N : N ; - git_N : N ; - gith_N : N ; - gitti_N : N ; - glaba_F_N : N ; - glaber_A : A ; - glabrio_F_N : N ; - glacialis_A : A ; - glaciarium_N_N : N ; - glacies_F_N : N ; - glacio_V : V ; - gladiator_M_N : N ; - gladiatorius_A : A ; - gladiatura_F_N : N ; - gladiolus_M_N : N ; - gladius_M_N : N ; - glaeba_F_N : N ; - glaesum_N_N : N ; - glandifer_A : A ; - glans_F_N : N ; - glarea_F_N : N ; - glareosus_A : A ; - glaria_F_N : N ; - glas_F_N : N ; - glaucom_N_N : N ; - glaucoma_N_N : N ; - glaucus_A : A ; - gleba_F_N : N ; - glebula_F_N : N ; - glesum_N_N : N ; - gleucinus_A : A ; - glis_M_N : N ; - glisco_V : V ; - globalis_A : A ; - globosus_A : A ; - globulus_M_N : N ; - globus_M_N : N ; - glomeramen_N_N : N ; - glomero_V : V ; - glomus_N_N : N ; - gloria_F_N : N ; - gloriabundus_A : A ; - glorianter_Adv : Adv ; - gloriatio_F_N : N ; - glorificatio_F_N : N ; - glorifico_V2 : V2 ; - glorificus_A : A ; - gloriola_F_N : N ; - glorior_V : V ; - gloriose_Adv : Adv ; - gloriosus_A : A ; - glosa_F_N : N ; - glosarium_N_N : N ; - glosema_N_N : N ; - glossa_F_N : N ; - glossema_N_N : N ; - glottologia_F_N : N ; - glottologicus_A : A ; - glubeo_V : V ; - glubo_V2 : V2 ; - gluma_F_N : N ; - gluten_N_N : N ; - glutinator_M_N : N ; - glutino_V : V ; - glutinosus_A : A ; - glutinum_N_N : N ; - glutio_V2 : V2 ; - gluto_M_N : N ; - gluttio_V2 : V2 ; - glutto_M_N : N ; - glyconius_A : A ; - glycyrrhiza_F_N : N ; - glycyrrhizon_N_N : N ; - gnaritas_F_N : N ; - gnarus_A : A ; - gnascor_V : V ; - gnata_F_N : N ; - gnatus_M_N : N ; - gnecos_F_N : N ; - gnosco_V2 : V2 ; - gobio_M_N : N ; - gobius_M_N : N ; - gomor_N : N ; - gonger_M_N : N ; - gorilla_M_N : N ; - gorytos_M_N : N ; - gorytus_M_N : N ; - gossypium_N_N : N ; - grabattus_M_N : N ; - grabatus_M_N : N ; - gracia_F_N : N ; - gracilis_A : A ; - gracilitas_F_N : N ; - graculus_M_N : N ; - gradalis_A : A ; - gradarius_A : A ; - gradatim_Adv : Adv ; - gradatio_F_N : N ; - gradior_V : V ; - gradual_M_N : N ; - gradualis_A : A ; - gradualitas_F_N : N ; - gradualiter_Adv : Adv ; - gradus_M_N : N ; - graecisso_V : V ; - graecor_V : V ; - graecus_A : A ; - grallator_M_N : N ; - gramen_N_N : N ; - gramineus_A : A ; - graminus_A : A ; - gramma_N_N : N ; - grammatica_F_N : N ; - grammatice_Adv : Adv ; - grammatice_F_N : N ; - grammaticus_A : A ; - grammaticus_M_N : N ; - grammatista_M_N : N ; - granarium_N_N : N ; - granata_F_N : N ; - granatum_N_N : N ; - granatus_A : A ; - granatus_M_N : N ; - grandaevus_A : A ; - grandesco_V : V ; - grandiculus_A : A ; - grandifer_A : A ; - grandiloquus_A : A ; - grandinat_V0 : V ; - grandio_V2 : V2 ; - grandis_A : A ; - grandisculus_A : A ; - granditas_F_N : N ; - granditer_Adv : Adv ; - grandiusculus_A : A ; - grando_F_N : N ; - granifer_A : A ; - granitum_N_N : N ; - granulum_N_N : N ; - granum_N_N : N ; - grapheocrates_M_N : N ; - grapheocratia_F_N : N ; - grapheocraticus_A : A ; - grapheum_N_N : N ; - graphia_F_N : N ; - graphice_F_N : N ; - graphicus_A : A ; + furs_M_N : N ; -- [DXXFP] :: thief, robber; robber bee; the Devil (personified); + furtificus_A : A ; -- [XXXDX] :: thievish; + furtim_Adv : Adv ; -- [XXXBX] :: stealthily, secretly; imperceptibly; + furtivus_A : A ; -- [XXXDX] :: stolen; secret, furtive; + furtum_N_N : N ; -- [XXXBX] :: theft; trick, deception; stolen article; + furunculus_M_N : N ; -- [XXXEC] :: sneak thief, pilferer; + furvus_A : A ; -- [XXXEC] :: dark-colored, black; + fuscina_F_N : N ; -- [XXXEO] :: trident, three-pronged fishing spear; harpoon; weapon of retiarius gladiator; + fuscinula_F_N : N ; -- [EXXES] :: small three-pronged spear; fish-hook (Souter); fork; fleshhook (Vulgate); + fusco_V : V ; -- [XXXCO] :: darken, blacken, make dark; (INTRANS) become dark; + fuscus_A : A ; -- [XXXDX] :: dark, swarthy, dusky; husky; hoarse; + fusiformis_A : A ; -- [GXXEK] :: spindle-shaped; + fusilis_A : A ; -- [XXXDX] :: molded; molten, fluid, liquid; + fustibalus_M_N : N ; -- [XWXES] :: sling-staff; + fustis_M_N : N ; -- [XXXDX] :: staff club; stick; + fustuarium_N_N : N ; -- [XXXDX] :: death by beating (punishment meted out to soldiers); + fusus_A : A ; -- [XXXDX] :: spread out, broad, flowing; + fusus_M_N : N ; -- [XXXDX] :: spindle; (e.g., of the Fates); + futatim_Adv : Adv ; -- [XXXEC] :: abundantly; + futilis_A : A ; -- [XXXDX] :: vain; worthless; + futtilis_A : A ; -- [XXXDX] :: vain; worthless; + futuo_V2 : V2 ; -- [XXXDX] :: have sexual relations with (woman); (rude); + futurismus_M_N : N ; -- [GXXEK] :: futurism; + futurologus_M_N : N ; -- [GXXEK] :: futurologist; + futurus_A : A ; -- [XXXAX] :: about to be; future; + fylacterium_N_N : N ; -- [XXXDS] :: amulet; phylactery, scripture text in box on forehead of Jews; gladiator medal; + gabalus_M_N : N ; -- [XXXDX] :: gallows, gibbet; + gadus_M_N : N ; -- [GXXEK] :: cod; + gaesum_N_N : N ; -- [XXXDX] :: Gallic javelin; + gafrum_N_N : N ; -- [GXXEK] :: waffle; + galactinus_M_N : N ; -- [FSXEM] :: the Milky Way; + galanthus_M_N : N ; -- [GAXEK] :: snowdrop; + galaxia_F_N : N ; -- [FSXEM] :: the Milky Way; + galaxicus_A : A ; -- [GXXEK] :: galactic; + galba_F_N : N ; -- [XXXES] :: small worm, ash borer/larva of ash spinner; fat paunch, big belly; + galbanen_N_N : N ; -- [EAQEW] :: gum resin of umbelliferous plant in Persia/Syria (species of Ferula), galbanum; + galbanum_N_N : N ; -- [XAQES] :: gum resin of umbelliferous plant in Persia/Syria (species of Ferula), galbanum; + galbanus_A : A ; -- [XAXEO] :: galbaneous, characteristic of galbanum/gum resin from species of Ferula; + galbeolus_M_N : N ; -- [XAXFO] :: bee-eater; + galbeus_M_N : N ; -- [XXXEO] :: arm-band/filet worn for ornamental/medical purposes; + galbinum_N_N : N ; -- [XXXEO] :: greenish-yellow/pale green clothes (pl.) (considered effeminate); + galbinus_A : A ; -- [XXXEO] :: greenish-yellow; yellowish; effeminate; + galea_F_N : N ; -- [XXXDX] :: helmet; + galeatus_A : A ; -- [XWXEC] :: helmeted; + galeo_V2 : V2 ; -- [XWXEC] :: cover with a helmet; + galeola_F_N : N ; -- [FXXEK] :: cap; + galericulum_N_N : N ; -- [XXXEC] :: skull-cap; wig; + galeritus_A : A ; -- [XXXEC] :: wearing a hood or skull-cap; + galerum_N_N : N ; -- [XXXDX] :: cap or hat made of skin; ceremonial hat (worn by pontifices/flamines); wig; + galerus_M_N : N ; -- [XXXDX] :: cap or hat made of skin; ceremonial hat (worn by pontifices/flamines); wig; + galetta_F_N : N ; -- [GXXEK] :: pancake; + galliambus_M_N : N ; -- [XEXEC] :: song of the priests of Cybele; + galliarium_N_N : N ; -- [XAXEO] :: hen-house; + galliarius_A : A ; -- [XAXCO] :: of/for poultry; [in proper names, situa ~ => forest in Campania]; + galliarius_M_N : N ; -- [XAXEO] :: one who looks after poultry; + gallicinium_N_N : N ; -- [XXXDS] :: cock-crow; daybreak, dawn; last watch of the night; + gallicula_F_N : N ; -- [DXFES] :: small Gallic shoe, galosh; sandal; (wooden shoe/sandal w/leather thongs); + gallina_F_N : N ; -- [XXXDX] :: hen; + gallinaceus_A : A ; -- [XAXCO] :: of/belonging to domestic poultry, poultry-; [cunila ~ => wild marjoram]; + gallinacius_A : A ; -- [XAXCO] :: of/belonging to domestic poultry, poultry-; [cunila ~ => wild marjoram]; + gallinarius_A : A ; -- [XAXEC] :: of poultry; + gallinarius_M_N : N ; -- [XAXEC] :: poultry farmer; + gallus_M_N : N ; -- [XXXDX] :: cock, rooster; + gammarus_M_N : N ; -- [XAXEO] :: lobster, sea crab; + ganea_F_N : N ; -- [XXXDX] :: common eating house (resort of undesirable characters); gluttonous eating; + ganeo_M_N : N ; -- [XXXDX] :: glutton, debauchee; + ganeum_N_N : N ; -- [XXXDX] :: common eating house (resort of undesirable characters); gluttonous eating; + gannio_V : V ; -- [XXXDS] :: whimper, snarl (of dogs); snarl (people), speak in ill natured/hostile manner; + gannitus_M_N : N ; -- [XXXDO] :: |grumbling/muttering; murmuring; amorous utterance; chattering (L+S); chirping; + gaola_F_N : N ; -- [FLXFJ] :: jail/gaol; + garba_F_N : N ; -- [FAXFM] :: sheaf (of grain, of arrows); + garda_F_N : N ; -- [FLXFM] :: wardship; guardianship; town-division; + gardinum_N_N : N ; -- [FAXEM] :: garden; + gargarisso_V : V ; -- [XBXDO] :: gargle; + gargarizatio_F_N : N ; -- [XBXEO] :: gargling, action of gargling; + gargarizo_V : V ; -- [XBXDO] :: gargle; + garrio_V2 : V2 ; -- [XXXDX] :: chatter/prattle/jabber; talk rapidly; talk/write nonsense; (birds/instruments); + garritus_M_N : N ; -- [XXXFO] :: chattering (of birds); + garrulitas_F_N : N ; -- [XXXDO] :: talkativeness, loquacity; chattering (Collins); + garrulus_A : A ; -- [XXXBO] :: talkative, loquacious; chattering, garrulous; blabbing; that betrays secrets; + garum_N_N : N ; -- [XXXEC] :: fish-sauce; + garyophyllon_N_N : N ; -- [XAXNO] :: dried flower-buds of the clove; cloves; + gasalis_A : A ; -- [GXXEK] :: of gas, to gas; + gasificatrum_N_N : N ; -- [GTXEK] :: carburetor; + gasometrum_N_N : N ; -- [GTXEK] :: gasometer; + gasosus_A : A ; -- [GXXEK] :: sparkling; + gastritis_F_N : N ; -- [GBXEK] :: gastritis, inflammation of the stomach; + gasum_N_N : N ; -- [GXXEK] :: gas; + gata_F_N : N ; -- [FXXEM] :: bowl, trough; jar; + gateleia_F_N : N ; -- [FXXFM] :: toll, payment for passage; + gatta_F_N : N ; -- [FAXDT] :: cat; (female?); gateway, gap (Latham); + gattus_M_N : N ; -- [FAXDT] :: cat; + gaudeo_V : V ; -- [XXXAX] :: be glad, rejoice; + gaudimonium_N_N : N ; -- [XXXFO] :: joy; time of joy/jollity, festal day (Souter); gaudy feast (Latham); + gaudium_N_N : N ; -- [EEXCP] :: |everlasting blessedness; gaud/gaudy, bead of rosary (Latham); + gaunaca_F_N : N ; -- [XXXDX] :: oriental cloak; + gaunacum_N_N : N ; -- [XXXDX] :: oriental cloak; + gaunacuma_F_N : N ; -- [XXXDX] :: oriental cloak; + gausapa_F_N : N ; -- [XXXCO] :: cloth of woolen frieze (coarse wool cloth w/nap); cloak of this material; + gausapatus_A : A ; -- [XXXEO] :: wearing cloak/cloth of woolen frieze (coarse wool cloth w/nap); + gausape_N_N : N ; -- [XXXCO] :: cloth of woolen frieze (coarse wool cloth w/nap); cloak of this material; + gausapes_F_N : N ; -- [XXXCO] :: cloth of woolen frieze (coarse wool cloth w/nap); cloak of this material; + gausapina_F_N : N ; -- [GXXEK] :: bath-towel; + gausapinus_A : A ; -- [XXXDO] :: made of cloth of woolen frieze (coarse wool cloth w/nap); + gausapum_N_N : N ; -- [XXXCO] :: cloth of woolen frieze (coarse wool cloth w/nap); cloak of this material; + gaza_F_N : N ; -- [XXXBX] :: treasure (royal); + gazela_F_N : N ; -- [GXXEK] :: gazelle; + gazofilacium_N_N : N ; -- [DEHEF] :: treasury (royal); offertory box; + gazophylachium_N_N : N ; -- [DEHEF] :: treasury (royal); offertory box; + gehenna_F_N : N ; -- [DEQDS] :: hell; (from valley near Jerusalem where children were sacrificed to Moloch); + gehennalis_A : A ; -- [DEQES] :: hellish, of hell; (from valley where children were sacrificed to Moloch); + gelamen_N_N : N ; -- [FXXEM] :: assembly, gathering; + gelasinus_M_N : N ; -- [XXXEC] :: dimple; + gelatina_F_N : N ; -- [GXXEK] :: gelatin; + gelatorius_A : A ; -- [GXXEK] :: freezing; + gelda_F_N : N ; -- [FLXDM] :: tax, gelt; guild; association; guild meeting; guild-house; + geldonia_F_N : N ; -- [FLXFE] :: guild; + geldum_N_N : N ; -- [FLXDM] :: tax, gelt; [~ vaccarum => horngeld, cornage]; + gelicidium_N_N : N ; -- [XPXES] :: frost; + gelida_F_N : N ; -- [XXXDX] :: ice cold water; + gelide_Adv : Adv ; -- [XXXDX] :: sluggishly, without enthusiasm; coldly, weakly, feebly; + gelidus_A : A ; -- [XXXBX] :: ice cold, icy; + gelo_V : V ; -- [XXXDX] :: cause to freeze; (pass.) be frozen, be chilled; + gelu_N_N : N ; -- [XXXCO] :: frost, ice, snow; frosty weather; cold, chilliness (of old age/death/fear); + gelum_N_N : N ; -- [XXXCO] :: frost, ice, snow; frosty weather; cold, chilliness (of old age/death/fear); + gelus_M_N : N ; -- [XXXCO] :: frost, ice, snow; frosty weather; cold, chilliness (of old age/death/fear); + gemebundus_A : A ; -- [XXXEC] :: groaning, sighing; + gemellio_F_N : N ; -- [FXXFE] :: small cruet; + gemellipara_F_N : N ; -- [XXXEC] :: twin-bearing; + gemellus_A : A ; -- [XXXDX] :: twin-born; + gemellus_M_N : N ; -- [XXXDX] :: twin; + geminatio_F_N : N ; -- [XXXDS] :: doubling; + gemino_V : V ; -- [XXXDX] :: double; repeat; double the force of; pair (with); + geminus_A : A ; -- [XXXBX] :: twin, double; twin-born; both; + geminus_M_N : N ; -- [XXXDX] :: twins (pl.); + gemitus_M_N : N ; -- [XXXBX] :: groan, sigh; roaring; + gemma_F_N : N ; -- [XXXBO] :: bud; jewel, gem, precious stone; amber; cup (material); seal, signet; game piece + gemmarius_M_N : N ; -- [XXXIO] :: jeweler; + gemmatus_A : A ; -- [XXXDX] :: jeweled; + gemmeus_A : A ; -- [XXXDX] :: set with precious stones; + gemmifer_A : A ; -- [XAXEC] :: bearing or producing seeds; + gemmo_V : V ; -- [XAXCO] :: bud, come into bud, put out buds; + gemo_V2 : V2 ; -- [XXXBX] :: moan, groan; lament (over); grieve that; give out a hollow sound (music, hit); + gena_F_N : N ; -- [XXXAX] :: cheeks (pl.); eyes; + genealogia_F_N : N ; -- [DXXES] :: genealogy; + genealogicus_A : A ; -- [GXXEK] :: genealogical; + genealogus_M_N : N ; -- [XXXEC] :: genealogist; + gener_M_N : N ; -- [XXXBX] :: son-in-law; + generalis_A : A ; -- [XXXBO] :: general, generic; shared by/common to a class/kind; of the nature of a thing; + generalis_M_N : N ; -- [GWXEK] :: general (military rank); + generalitas_F_N : N ; -- [DXXES] :: generality; + generaliter_Adv : Adv ; -- [XXXDX] :: generally, in general; + generasco_V : V ; -- [XXXFO] :: come to birth; be generated/produced (L+S); + generatim_Adv : Adv ; -- [XXXDX] :: by tribes/kinds; generally; + generatio_F_N : N ; -- [XXXCO] :: generation, action/process of procreating, begetting; generation of men/family; + generativus_A : A ; -- [GXXEK] :: generative; + generator_M_N : N ; -- [XXXDX] :: begetter, father, sire; + generatrum_N_N : N ; -- [GXXEK] :: generator; + generilitas_F_N : N ; -- [FXXFZ] :: generality; + genero_V : V ; -- [XXXDX] :: beget, father, produce, procreate; spring/descend from (PASSIVE); + generose_Adv : Adv ; -- [XXXDX] :: nobly; with dignity; + generositas_F_N : N ; -- [XXXDO] :: breeding, excellence/nobility (of stock/men/animals/plants); generosity; + generosus_A : A ; -- [XXXBX] :: noble, of noble birth; of good family/stock; + genes_F_N : N ; -- [XXXCO] :: birth, nativity, beginning; one's birth (astrologically), horoscope, destiny; + genesta_F_N : N ; -- [XXXDX] :: Spanish broom, greenweed and similar shrubs; + genetica_F_N : N ; -- [HSXEK] :: genetic; + geneticus_A : A ; -- [HSXEK] :: genetic; + genetivus_A : A ; -- [XXXDX] :: acquired at birth; + genetrix_F_N : N ; -- [XXXBX] :: mother, ancestress; + genialis_A : A ; -- [XXXDX] :: nuptial, connected with marriage; festive, merry, genial; + geniculatus_A : A ; -- [XXXEC] :: knotty, full of knots; + genimen_N_N : N ; -- [DEXES] :: product, fruit; progeny; brood (pl.); [~ viperarum => brood of vipers]; + genista_F_N : N ; -- [XXXDX] :: Spanish broom, greenweed and similar shrubs; + genital_N_N : N ; -- [XXXDX] :: reproductive/genital organs (male or female); seminal fluid; + genitalis_A : A ; -- [XXXDX] :: of creation/procreation, reproductive; fruitful; connected with birth, inborn; + genitor_M_N : N ; -- [XXXBX] :: father; creator; originator; + genitus_A : A ; -- [EEXDX] :: begotten; engendered; + genius_M_N : N ; -- [XXXDX] :: guardian spirit; taste, inclination; appetite; talent; prophetic skill; + geno_V : V ; -- [XXXDX] :: give birth to, bring forth, bear; beget; be born (PASSIVE); + genocidium_N_N : N ; -- [HLXDE] :: genocide; + genoma_N_N : N ; -- [HSXEK] :: genome; + gens_F_N : N ; -- [XXXAX] :: tribe, clan; nation, people; Gentiles; + gentiana_F_N : N ; -- [XAXFS] :: gentian herb (Pliny); + genticus_A : A ; -- [XXXEC] :: of a nation, national; + gentil_M_N : N ; -- [XXXDO] :: member of the same Roman gens; fellow countryman; + gentilicius_A : A ; -- [XXXDO] :: of/proper or belonging to a particular Roman gens; tribal, national; + gentilis_A : A ; -- [XXXCO] :: of same gens (Roman); of the same house or family/tribe or race; native; + gentilis_M_N : N ; -- [GEXEK] :: pagan; + gentilismus_M_N : N ; -- [GEXEK] :: heathenism; + gentilitas_F_N : N ; -- [DXXCS] :: kinship; relatives with same name; clan relationship; paganism; heathens/pagans; + gentilitius_A : A ; -- [XXXCS] :: of or belonging to a particular Roman gens; tribal, national; + genu_N_N : N ; -- [XXXBX] :: knee; + genual_N_N : N ; -- [XXXDX] :: leggings (pl.); + genuale_N_N : N ; -- [FEHFE] :: ornament on bishop's cincture in Greek rite; + genuflecto_V2 : V2 ; -- [EEXDX] :: kneel (down); genuflect; bend the knee; + genuine_Adv : Adv ; -- [XXXFO] :: truly; + genuinus_A : A ; -- [XXXDO] :: natural, inborn, innate; native; genuine, authentic; + genuinus_M_N : N ; -- [XBXCO] :: back-tooth, molar; wisdom tooth; + genum_N_N : N ; -- [HSXEK] :: gene; + genus_N_N : N ; -- [XXXDX] :: |noble birth; kind/sort/variety; class/rank; mode/method/style/fashion/way; + geocentricus_A : A ; -- [GSXEK] :: geocentric; + geocentrismus_M_N : N ; -- [GSXEK] :: geocentrism; + geochemia_F_N : N ; -- [GSXEK] :: geochemistry; + geochemista_M_N : N ; -- [GSXEK] :: geochemist; + geodaeticus_A : A ; -- [GSXEK] :: geodesic; + geographia_F_N : N ; -- [XSXFO] :: geography; geographical work/book; + geographicus_A : A ; -- [XSXFS] :: geographic; geographical; + geologia_F_N : N ; -- [GSXEK] :: geology; + geologicus_A : A ; -- [GXXEK] :: geological; + geologus_M_N : N ; -- [GSXEK] :: geologist; + geometres_M_N : N ; -- [XSXEC] :: geometer; + geometria_F_N : N ; -- [XXXDX] :: geometry; + geometricus_A : A ; -- [XSXEC] :: geometrical; + geometricus_M_N : N ; -- [XSXEC] :: geometer; + georgicus_A : A ; -- [XAXEC] :: agricultural; + geriatria_F_N : N ; -- [GXXEK] :: geriatrics; + germana_M_N : N ; -- [XXXDX] :: sister, own sister; full sister; + germanitas_F_N : N ; -- [XXXDX] :: brotherhood, sisterhood; affinity between things deriving from the same source; + germanus_A : A ; -- [XXXDX] :: own/full (of brother/sister); genuine, real, actual, true; + germanus_M_N : N ; -- [XXXDX] :: own brother; full brother; + germen_N_N : N ; -- [XAXBX] :: sprout, bud; shoot; + germinalis_A : A ; -- [GXXEK] :: germinal; + germinatio_F_N : N ; -- [XAXDS] :: sprouting forth; germination; a shoot; + germino_V : V ; -- [XXXEC] :: sprout forth; + gero_V2 : V2 ; -- [XXXAX] :: bear, carry, wear; carry on; manage, govern; (se gerere = to conduct oneself); + gerontocomium_N_N : N ; -- [GXXEK] :: old men's asylum; + gerontotrophium_N_N : N ; -- [GXXEK] :: old men's hospice; + gerra_F_N : N ; -- [XXXDO] :: wicker-work screen/hurdle; wattled twigs (pl.); [gerrae => trifles, nonsense!]; + gerro_M_N : N ; -- [XXXEO] :: term of opprobrium/disgrace/reproach; buffoon?; + gerula_F_N : N ; -- [XXXEO] :: bearer (female), porter, carrier; she who bears/carries (L+S); worker bee; + gerulum_N_N : N ; -- [DXXFS] :: bearer, carrier; + gerulus_M_N : N ; -- [XXXCO] :: bearer, porter, carrier; doer, one who does something; + gerundium_N_N : N ; -- [GGXEK] :: gerund; + gerundivum_N_N : N ; -- [GGXEK] :: gerundive; verbal adjective; + gestamen_N_N : N ; -- [XXXDX] :: something worn or carried on the body; + gestatio_F_N : N ; -- [XXXES] :: bearing, wearing; be carried; place to take air; + gesticulor_V : V ; -- [XXXDX] :: gesticulate; make mimic or pantomimic movements; + gestio_V2 : V2 ; -- [XXXDX] :: be eager, wish passionately; gesticulate, express strong feeling, exult; + gestito_V : V ; -- [XXXCS] :: carry often; wear often; + gesto_V : V ; -- [XXXBX] :: bear, carry; wear; + gestum_N_N : N ; -- [XXXDX] :: what has been carried out, a business; deeds (pl.), exploits; + gestus_M_N : N ; -- [XXXDX] :: movement of the limbs, bodily action, carriage, gesture; performance (duty); + gibber_A : A ; -- [XXXDX] :: humpbacked; + gibber_M_N : N ; -- [XXXDX] :: hump; + gibberosus_A : A ; -- [XXXDX] :: humpbacked; + gibbus_A : A ; -- [XXXDX] :: bulging, protuberant; + gibbus_M_N : N ; -- [XXXDX] :: protuberance/lump on the body; + gigno_V2 : V2 ; -- [XXXAX] :: give birth to, bring forth, bear; beget; be born (PASSIVE); + gilbus_A : A ; -- [EXXES] :: pale yellow; dun-colored (OLD); + gilda_F_N : N ; -- [FLXDM] :: guild; association; guild meeting; guild-house; + gildo_M_N : N ; -- [FXXFM] :: camp-follower; + gilvus_A : A ; -- [XXXES] :: pale yellow; dun-colored (OLD); + gimel_N : N ; -- [DEQEW] :: gimel; (3rd letter of Hebrew alphabet); (transliterate as G); + gingiber_N_N : N ; -- [GXXEK] :: ginger; + gingiva_F_N : N ; -- [XXXDX] :: gum (in which the teeth are set); + git_N : N ; -- [XAXCO] :: black cumin (Nigella sativa); Roman coriander (L+S); melanthion/melanspermon; + gith_N : N ; -- [EAXCS] :: black cumin (Nigella sativa); Roman coriander (L+S); melanthion/melanspermon; + gitti_N : N ; -- [XAXCO] :: black cumin (Nigella sativa); Roman coriander (L+S); melanthion/melanspermon; + glaba_F_N : N ; -- [XXXDX] :: clod; cultivated soil; lump, mass; + glaber_A : A ; -- [XXXDX] :: hairless, smooth; + glabrio_F_N : N ; -- [FXXFM] :: hairless-person; ringworm; L:Glabrio (Roman surname); + glacialis_A : A ; -- [XXXDX] :: icy, frozen; + glaciarium_N_N : N ; -- [GXXEK] :: glacier; + glacies_F_N : N ; -- [XXXDX] :: ice; ice fields (pl.); + glacio_V : V ; -- [XXXEC] :: freeze; + gladiator_M_N : N ; -- [XXXDX] :: gladiator; + gladiatorius_A : A ; -- [XXXDX] :: gladiatorial; + gladiatura_F_N : N ; -- [XXXEC] :: profession of gladiator; + gladiolus_M_N : N ; -- [FAXEK] :: gladiolus; + gladius_M_N : N ; -- [FXXEK] :: swordfish; + glaeba_F_N : N ; -- [XXXDX] :: clod/lump of earth/turf; land, soil; hard soil; piece, lump, mass; + glaesum_N_N : N ; -- [XXXEC] :: amber; + glandifer_A : A ; -- [XAXEO] :: acorn-bearing; + glans_F_N : N ; -- [XAXCO] :: mast/acorn/beechnut/chestnut; missile/bullet thrown/discharged from sling; + glarea_F_N : N ; -- [XXXDX] :: gravel; + glareosus_A : A ; -- [XXXDX] :: gravelly; + glaria_F_N : N ; -- [FXXFM] :: gravel; earth; + glas_F_N : N ; -- [XAXEO] :: mast/acorn/beachnut/chestnut; missile/bullet thrown/discharged from sling; + glaucom_N_N : N ; -- [XBXEC] :: disease of the eye, cataract; + glaucoma_N_N : N ; -- [XBXEC] :: disease of the eye, cataract; "mist before the eyes" (Erasmus); + glaucus_A : A ; -- [XXXDX] :: bluish gray; + gleba_F_N : N ; -- [XXXDX] :: clod/lump of earth/turf; land, soil; hard soil; piece, lump, mass; + glebula_F_N : N ; -- [XAXEC] :: little clod or lump; a little farm or estate; + glesum_N_N : N ; -- [XXXEC] :: amber; + gleucinus_A : A ; -- [XAXES] :: made-from-must; + glis_M_N : N ; -- [XXXDX] :: dormouse; + glisco_V : V ; -- [XXXDX] :: swell; increase in power or violence; + globalis_A : A ; -- [GXXEK] :: global; + globosus_A : A ; -- [XXXDX] :: round, spherical; + globulus_M_N : N ; -- [XXXDX] :: globule; button (Cal); + globus_M_N : N ; -- [XXXDX] :: ball, sphere; dense mass, close packed throng, crowd; clique, band; globe; + glomeramen_N_N : N ; -- [XXXEC] :: round mass, globe; + glomero_V : V ; -- [XXXDX] :: collect, amass, assemble; form into a ball; + glomus_N_N : N ; -- [XXXDX] :: ball-shaped mass; ball made by winding, ball of thread, skein; + gloria_F_N : N ; -- [XXXAX] :: glory, fame; ambition; renown; vainglory, boasting; + gloriabundus_A : A ; -- [FEXFM] :: triumphant; + glorianter_Adv : Adv ; -- [FXXFE] :: boastingly; exultingly; + gloriatio_F_N : N ; -- [XXXES] :: exalting, boasting, vaunting, glorying; + glorificatio_F_N : N ; -- [DEXFS] :: glorification; + glorifico_V2 : V2 ; -- [DEXDS] :: glorify; magnify, honor, worship (Def); exalt in thought/speech; uplift; + glorificus_A : A ; -- [FEXEM] :: glorious, full of glory; + gloriola_F_N : N ; -- [XXXEC] :: little glory; + glorior_V : V ; -- [XXXBX] :: boast, brag; glory, pride oneself; + gloriose_Adv : Adv ; -- [XXXDX] :: gloriously, magnificently; pompously, boastfully; + gloriosus_A : A ; -- [XXXBX] :: glorious, full of glory; famous, renowned; boastful, conceited; ostentatious; + glosa_F_N : N ; -- [FGXFO] :: glossary, collection/list of unfamiliar/unusual words (needing interpretation); + glosarium_N_N : N ; -- [XGXFO] :: unusual word requiring explanation (contemptuous diminutive); + glosema_N_N : N ; -- [XGXEO] :: unusual word requiring interpretation; collection/list (pl.) of such words; + glossa_F_N : N ; -- [XGXFO] :: glossary, collection/list of unfamiliar/unusual words (needing interpretation); + glossema_N_N : N ; -- [XGXEO] :: unusual word requiring interpretation; collection/list (pl.) of such words; + glottologia_F_N : N ; -- [GGXEK] :: linguistics; + glottologicus_A : A ; -- [GGXEK] :: linguistic; + glubeo_V : V ; -- [XAXFO] :: shed its bark; (of a tree); + glubo_V2 : V2 ; -- [XAXDO] :: peel; strip the bark from; rob; + gluma_F_N : N ; -- [XAXFO] :: husks of grain; barley husks (pl.) (L+S); + gluten_N_N : N ; -- [XXXDO] :: glue, paste; gum; adhesive; solder (Douay); connecting tie/band/bond (L+S); + glutinator_M_N : N ; -- [XXXEC] :: one who glues books, a bookbinder; + glutino_V : V ; -- [XXXES] :: glue; B:join (espec. wounds); + glutinosus_A : A ; -- [XXXDO] :: viscous, sticky, glutinous; full of/smeared with glue; rich in gelatin (food); + glutinum_N_N : N ; -- [XXXCO] :: glue, paste; gum; adhesive; solder (Douay); connecting tie/band/bond (L+S); + glutio_V2 : V2 ; -- [XXXEC] :: swallow, gulp down; + gluto_M_N : N ; -- [XXXEC] :: glutton; + gluttio_V2 : V2 ; -- [XXXEC] :: swallow, gulp down; + glutto_M_N : N ; -- [XXXEC] :: glutton; + glyconius_A : A ; -- [XPXES] :: Glyconic; type of poetic meter; + glycyrrhiza_F_N : N ; -- [DAXNS] :: licorice root (Pliny); + glycyrrhizon_N_N : N ; -- [DAXNS] :: licorice root (Pliny); + gnaritas_F_N : N ; -- [FXXEN] :: knowledge; + gnarus_A : A ; -- [XXXDX] :: having knowledge or experience of; known; + gnascor_V : V ; -- [XXXAO] :: |be born/begotten/formed/destined; rise (stars), dawn; start, originate; arise; + gnata_F_N : N ; -- [XXXCO] :: daughter; + gnatus_M_N : N ; -- [XXXCO] :: son; child; children (pl.); + gnecos_F_N : N ; -- [XAXEO] :: safflower (Carthamus tinctorius); similar thistle; + gnosco_V2 : V2 ; -- [XXXAO] :: |examine, study, inspect; try (case); recognize, accept as valid/true; recall; + gobio_M_N : N ; -- [XAXFO] :: small fish; (of the gudgeon kind); (used for bait); (Gobio); + gobius_M_N : N ; -- [XAXCO] :: small fish; (of the gudgeon kind); (used for bait); (Gobio); + gomor_N : N ; -- [DEQFW] :: gomor/gomer/omer, Jewish dry measure; (over two bushels); + gonger_M_N : N ; -- [XAXDO] :: conger eel; sea eel (L+S); + gorilla_M_N : N ; -- [GXXEK] :: gorilla; + gorytos_M_N : N ; -- [XWXDO] :: quiver, case holding arrows; + gorytus_M_N : N ; -- [XWXDO] :: quiver, case holding arrows; + gossypium_N_N : N ; -- [GXXEK] :: cotton wool, cotton; + grabattus_M_N : N ; -- [XXXCO] :: cot, camp bed, pallet; low couch or bed; (usu.) mean/wretched bed/couch; + grabatus_M_N : N ; -- [XXXCO] :: cot, camp bed, pallet; low couch or bed; (usu.) mean/wretched bed/couch; + gracia_F_N : N ; -- [EXXAO] :: |favor/goodwill/kindness/friendship; influence; gratitude; thanks (pl.); Graces; + gracilis_A : A ; -- [XXXDX] :: slender, thin, slim, slight; fine, narrow; modest, unambitious, simple, plain; + gracilitas_F_N : N ; -- [XXXEZ] :: slimness, leanness (Collins); + graculus_M_N : N ; -- [XXXDX] :: jackdaw; + gradalis_A : A ; -- [DXXFS] :: step-by-step; + gradarius_A : A ; -- [XXXEC] :: going step by step; + gradatim_Adv : Adv ; -- [XXXDX] :: step by step, by degrees; + gradatio_F_N : N ; -- [XGXEC] :: climax; (rhetoric); + gradior_V : V ; -- [XXXDX] :: walk, step, take steps, go, advance; + gradual_M_N : N ; -- [FEXEM] :: gradual (hymn); + gradualis_A : A ; -- [FXXEM] :: of degree; + gradualitas_F_N : N ; -- [FXXEM] :: grade, degree; + gradualiter_Adv : Adv ; -- [FXXEM] :: by degrees; + gradus_M_N : N ; -- [XXXBX] :: step; position; + graecisso_V : V ; -- [XXXEC] :: imitate the Greeks; + graecor_V : V ; -- [XXXEC] :: imitate the Greeks; + graecus_A : A ; -- [XXXDX] :: Greek; + grallator_M_N : N ; -- [XDXEC] :: one that walks on stilts; + gramen_N_N : N ; -- [XXXBX] :: grass, turf; herb; plant; + gramineus_A : A ; -- [XXXDX] :: of grass, grassy; made of grass or turf; + graminus_A : A ; -- [XAXES] :: grassy; full of grass; + gramma_N_N : N ; -- [XXXDS] :: scruple-weight; gram (Cal); + grammatica_F_N : N ; -- [XXXDX] :: grammar; philology; + grammatice_Adv : Adv ; -- [XGXFO] :: with strict observance of grammatical rules, grammatically; + grammatice_F_N : N ; -- [XGXES] :: grammar; philology; + grammaticus_A : A ; -- [XXXDX] :: grammatical, of grammar; + grammaticus_M_N : N ; -- [XXXBX] :: grammarian; philologist; scholar, expert on linguistics/literature; + grammatista_M_N : N ; -- [XGXFO] :: one who teaches letters; elementary schoolmaster; + granarium_N_N : N ; -- [XXXEC] :: granary; + granata_F_N : N ; -- [GWXEK] :: grenade; + granatum_N_N : N ; -- [FAXEK] :: pomegranate (fruit); + granatus_A : A ; -- [XXXDX] :: containing many seeds; [only malum/pomum granatum => pomegranate fruit/tree]; + granatus_M_N : N ; -- [XXXDX] :: production of a crop; + grandaevus_A : A ; -- [XXXDX] :: of great age, old; + grandesco_V : V ; -- [XXXDX] :: grow, increase in size or quantity; + grandiculus_A : A ; -- [XXXEC] :: rather large; + grandifer_A : A ; -- [XXXEC] :: producing great profits; + grandiloquus_A : A ; -- [XXXEC] :: speaking grandly; boastful; + grandinat_V0 : V ; -- [XXXEC] :: it hails; + grandio_V2 : V2 ; -- [XXXEC] :: increase; + grandis_A : A ; -- [XXXAX] :: full-grown, grown up; large, great, grand, tall, lofty; powerful; aged, old; + grandisculus_A : A ; -- [FXXFE] :: somewhat grownup, a little older; + granditas_F_N : N ; -- [XXXEO] :: grandeur; elevation (of style); advanced condition/greatness (of person's age); + granditer_Adv : Adv ; -- [FXXEE] :: strongly; mightily; + grandiusculus_A : A ; -- [FXXFM] :: fair-sized; + grando_F_N : N ; -- [XXXDX] :: hail, hail-storm; + granifer_A : A ; -- [XAXEC] :: grain-carrying; + granitum_N_N : N ; -- [GXXEK] :: granite; + granulum_N_N : N ; -- [XXXDX] :: granule; + granum_N_N : N ; -- [XXXDX] :: grain; seed; + grapheocrates_M_N : N ; -- [GXXEK] :: bureaucrat; + grapheocratia_F_N : N ; -- [GXXEK] :: bureaucracy; + grapheocraticus_A : A ; -- [GXXEK] :: bureaucratic; + grapheum_N_N : N ; -- [GXXEK] :: office; + graphia_F_N : N ; -- [HSXEK] :: -graphy; recording of instrument measurements; (usu. w/specifying prefix); + graphice_F_N : N ; -- [XXXFO] :: art of painting; + graphicus_A : A ; -- [XXXEO] :: worthy of painting (people), perfect of kind; exquisite; picturesque, artistic; graphis_1_N : N ; -- [XXXEO] :: instrument for drawing/painting; - graphis_2_N : N ; - graphis_F_N : N ; - graphium_N_N : N ; - grassator_M_N : N ; - grassor_V : V ; - gratanter_Adv : Adv ; - grate_Adv : Adv ; - grates_F_N : N ; - gratia_F_N : N ; - gratificatio_F_N : N ; - gratifico_V2 : V2 ; - gratificor_V : V ; - gratiosus_A : A ; - gratis_Adv : Adv ; - gratitudo_F_N : N ; - grator_V : V ; - gratuitas_F_N : N ; - gratuito_Adv : Adv ; - gratuitus_A : A ; - gratulabundus_A : A ; - gratulanter_Adv : Adv ; - gratulatio_F_N : N ; - gratulatorie_Adv : Adv ; - gratulor_V : V ; - gratus_A : A ; - graulatio_F_N : N ; - gravamen_N_N : N ; - gravanter_Adv : Adv ; - gravate_Adv : Adv ; - gravatim_Adv : Adv ; - gravatus_A : A ; - gravedinosus_A : A ; - gravedo_F_N : N ; - graveolens_A : A ; - graveolentia_F_N : N ; - gravida_F_N : N ; - gravido_V2 : V2 ; - gravidor_V : V ; - gravidus_A : A ; - gravis_A : A ; - gravitas_F_N : N ; - graviter_Adv : Adv ; - gravito_V : V ; - gravo_V2 : V2 ; - gravor_V : V ; - grecus_A : A ; - gregalis_A : A ; - gregalis_M_N : N ; - gregarius_A : A ; - gregatim_Adv : Adv ; - grego_V : V ; - gremiale_N_N : N ; - gremialis_A : A ; - gremium_N_N : N ; - gressus_M_N : N ; + graphis_2_N : N ; -- [XXXEO] :: instrument for drawing/painting; + graphis_F_N : N ; -- [XXXEO] :: instrument for drawing/painting; + graphium_N_N : N ; -- [HSXEK] :: -graph; recording/measuring instrument; (usu. w/specifying prefix); + grassator_M_N : N ; -- [XXXCO] :: vagabond; footpad, highway robber; + grassor_V : V ; -- [XXXDX] :: march on, advance; roam in search of victims, prowl; proceed; run riot; + gratanter_Adv : Adv ; -- [DXXCS] :: with joy; with rejoicing; + grate_Adv : Adv ; -- [XXXDX] :: with pleasure/delight; agreeably, pleasantly; with gratitude, thankfully; + grates_F_N : N ; -- [XXXCO] :: thanks (pl.); (esp. to gods); thanksgivings; [~es agere => give thanks]; + gratia_F_N : N ; -- [XXXAO] :: ||agreeableness, charm; grace; [Doctor Gratiae => St. Augustine of Hippo]; + gratificatio_F_N : N ; -- [XXXFS] :: showing kindness; complaisance; + gratifico_V2 : V2 ; -- [EXXFW] :: oblige, gratify, humor, show kindness to; bestow, make a present of; + gratificor_V : V ; -- [XXXCO] :: oblige, gratify, humor, show kindness to; bestow, make a present of; + gratiosus_A : A ; -- [XXXDX] :: agreeable, enjoying favor; kind; + gratis_Adv : Adv ; -- [XXXCO] :: gratis, without payment, for nothing; freely; for no reward but thanks; + gratitudo_F_N : N ; -- [XXXDX] :: gratitude; + grator_V : V ; -- [XXXDX] :: congratulate (w/DAT); rejoice with; + gratuitas_F_N : N ; -- [FXXEM] :: favor; gift; + gratuito_Adv : Adv ; -- [XXXDX] :: gratis, without pay, for naught, gratuitously; for no special reason; wantonly; + gratuitus_A : A ; -- [XXXDX] :: free, gratuitous; without pay; unremunerative; + gratulabundus_A : A ; -- [XXXDX] :: congratulating; + gratulanter_Adv : Adv ; -- [FXXEV] :: with grateful/thankful heart/soul; + gratulatio_F_N : N ; -- [XXXDX] :: congratulation; rejoicing; + gratulatorie_Adv : Adv ; -- [FXXFE] :: congratulatory, in congratulatory manner; + gratulor_V : V ; -- [XXXDX] :: congratulate; rejoice, be glad; thank, give/render thanks; + gratus_A : A ; -- [XXXAX] :: pleasing, acceptable, agreeable, welcome; dear, beloved; grateful, thankful; + graulatio_F_N : N ; -- [XXXDX] :: congratulation; rejoicing, joy; + gravamen_N_N : N ; -- [DXXES] :: trouble, annoyance; physical inconvenience; burden; + gravanter_Adv : Adv ; -- [FXXFE] :: with difficulty; + gravate_Adv : Adv ; -- [XXXDO] :: grudgingly; reluctantly, unwillingly; with difficulty; + gravatim_Adv : Adv ; -- [XXXEO] :: grudgingly, reluctantly; + gravatus_A : A ; -- [XXXEE] :: heavy; loaded down; + gravedinosus_A : A ; -- [XBXEC] :: subject to colds; + gravedo_F_N : N ; -- [XXXDX] :: cold in the head, catarrh; + graveolens_A : A ; -- [XXXEC] :: strong-smelling, rank; + graveolentia_F_N : N ; -- [XXXFS] :: foul smell (Pliny); + gravida_F_N : N ; -- [FXXEE] :: pregnant woman; + gravido_V2 : V2 ; -- [XXXDO] :: impregnate, make pregnant; load/weigh down, burden (Ecc); oppress, incommode; + gravidor_V : V ; -- [XXXEE] :: become pregnant; grow heavy; + gravidus_A : A ; -- [XXXBO] :: pregnant, heavy with child; laden/swollen/teeming; weighed down; rich/abundant; + gravis_A : A ; -- [XXXAX] :: heavy; painful; important; serious; pregnant; grave, oppressive, burdensome; + gravitas_F_N : N ; -- [XXXBX] :: weight; dignity; gravity; importances, oppressiveness; pregnancy; sickness; + graviter_Adv : Adv ; -- [XXXDX] :: violently; deeply; severely; reluctantly; [ferre ~ => to be vexed/upset]; + gravito_V : V ; -- [GXXEK] :: revolve; + gravo_V2 : V2 ; -- [XXXBO] :: load/weigh down; burden, oppress; pollute (air); accuse, incriminate; aggravate; + gravor_V : V ; -- [XXXDX] :: show/bear with reluctance/annoyance; be burdened/vexed; take amiss; hesitate; + grecus_A : A ; -- [EXXDX] :: Greek; (medieval form for Graecus, ae -> e); + gregalis_A : A ; -- [XXXES] :: of the herd/flock; + gregalis_M_N : N ; -- [XXXES] :: comrade (usu. pl.); one of same party/company/gang/herd/flock; associate/crony; + gregarius_A : A ; -- [XXXDX] :: of/belonging to rank and file; [miles gregarius => common soldier]; + gregatim_Adv : Adv ; -- [XXXDX] :: in flocks; + grego_V : V ; -- [EXXDX] :: gather, assemble; + gremiale_N_N : N ; -- [EEXFE] :: gremial, apron/lap cloth for bishop at Mass/pontifical functions; + gremialis_A : A ; -- [XAXFO] :: suitable for firewood; (trees); + gremium_N_N : N ; -- [XXXEO] :: firewood; (singular or collective); + gressus_M_N : N ; -- [XXXDX] :: going; step; the feet (pl.); 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 ; - griphus_M_N : N ; - grippa_F_N : N ; - griseus_A : A ; - groccio_V : V ; - groma_F_N : N ; - grossitudo_F_N : N ; - grossus_A : A ; - grossus_C_N : N ; + grex_M_N : N ; -- [XXXBO] :: flock, herd; crowd; company, crew; people/animals assembled; set/faction/class; + griffo_M_N : N ; -- [FXXFM] :: griffin; + grillus_M_N : N ; -- [XXXEO] :: cricket; grasshopper; cartoon, comic illustration; caricature (Cal); + griphus_M_N : N ; -- [XXXFS] :: riddle; enigma; + grippa_F_N : N ; -- [GBXEK] :: flu; + griseus_A : A ; -- [FXXEM] :: gray; + groccio_V : V ; -- [XAXEO] :: croak/caw (like a raven); + groma_F_N : N ; -- [XTXEO] :: instrument for taking bearings to fix lines of orientation; (surveying); + grossitudo_F_N : N ; -- [DXXES] :: thickness; + grossus_A : A ; -- [EXXDB] :: great/large, thick; coarse, gross; + grossus_C_N : N ; -- [XAXCO] :: young/green/immature/abortive fig; gruis_F_N : N ; -- [XXXDX] :: crane; large bird; siege engine; - gruis_M_N : N ; - gruma_F_N : N ; - grumus_M_N : N ; - grundio_V : V ; - grunnio_V : V ; - grunnitus_M_N : N ; - grus_F_N : N ; - grus_M_N : N ; - gry_N : N ; - gryllographus_M_N : N ; - gryllus_M_N : N ; - grypho_M_N : N ; + gruis_M_N : N ; -- [XXXDX] :: crane; large bird; siege engine; + gruma_F_N : N ; -- [XSXES] :: surveyor's rod; (also groma); + grumus_M_N : N ; -- [XXXES] :: little heap (of soil); + grundio_V : V ; -- [XXXEC] :: grunt like a pig; + grunnio_V : V ; -- [XXXEC] :: grunt like a pig; + grunnitus_M_N : N ; -- [XXXEC] :: grunting of a pig; + grus_F_N : N ; -- [GTXEK] :: crane (machine); + grus_M_N : N ; -- [XXXDX] :: crane; large bird; siege engine; + gry_N : N ; -- [XXXEC] :: scrap, crumb; + gryllographus_M_N : N ; -- [GXXEK] :: caricaturist; cartoonist; + gryllus_M_N : N ; -- [XXXEO] :: cricket; grasshopper; cartoon, comic illustration; caricature (Cal); + grypho_M_N : N ; -- [FYXFM] :: griffin; gryps_1_N : N ; -- [XYXDO] :: griffin; - gryps_2_N : N ; - grypus_M_N : N ; - guarra_F_N : N ; - gubernaculum_N_N : N ; - gubernatio_F_N : N ; - gubernator_M_N : N ; - gubernatrix_F_N : N ; - gubernium_N_N : N ; - gubernius_M_N : N ; - guberno_V : V ; - guerra_F_N : N ; - guilda_F_N : N ; - gula_F_N : N ; - gulda_F_N : N ; - gulosus_A : A ; - gumia_F_N : N ; - gummi_N : N ; - gumminosus_A : A ; - gummis_F_N : N ; - gummitio_F_N : N ; - gunna_F_N : N ; - guoma_F_N : N ; - gurculio_F_N : N ; - gurges_M_N : N ; - gurgulio_M_N : N ; - gurgustium_N_N : N ; - gustatus_M_N : N ; - gusto_V : V ; - gustus_M_N : N ; - gutta_F_N : N ; - guttatim_Adv : Adv ; - gutter_N_N : N ; - guttula_F_N : N ; - guttur_M_N : N ; - guttur_N_N : N ; - gutturalis_A : A ; - guttus_M_N : N ; - gwerra_F_N : N ; - gymnasiarchus_M_N : N ; - gymnasium_N_N : N ; - gymnastica_F_N : N ; - gymnasticus_A : A ; - gymnicus_A : A ; - gynaecearium_N_N : N ; - gynaecearius_M_N : N ; - gynaeceum_N_N : N ; - gynaeciarium_N_N : N ; - gynaecium_N_N : N ; - gynaecius_M_N : N ; - gynaecologia_F_N : N ; - gynaecologus_M_N : N ; + gryps_2_N : N ; -- [XYXDO] :: griffin; + grypus_M_N : N ; -- [XYXDO] :: griffin; + guarra_F_N : N ; -- [FWXEM] :: war; retaliation, feud; + gubernaculum_N_N : N ; -- [XWXCO] :: helm, rudder, steering oar of ship; helm of "ship of state"; government; + gubernatio_F_N : N ; -- [XWXDO] :: steering, pilotage; direction, control; management; + gubernator_M_N : N ; -- [XWXCO] :: helmsman, pilot; one who directs/controls; + gubernatrix_F_N : N ; -- [XWXEO] :: helmsman, pilot (female); she who directs/controls; + gubernium_N_N : N ; -- [FWXEE] :: helm, rudder, steering oar of ship; government; management; + gubernius_M_N : N ; -- [XWXFO] :: helmsman, pilot; one who directs/controls; manager; + guberno_V : V ; -- [XXXBX] :: steer, drive, pilot, direct, manage, conduct, guide, control, govern; + guerra_F_N : N ; -- [FWXEM] :: war; retaliation, feud; + guilda_F_N : N ; -- [FLXDM] :: guild; association; guild meeting; guild-house; + gula_F_N : N ; -- [XXXDX] :: throat, neck, gullet, maw; palate, appetite; + gulda_F_N : N ; -- [FLXDM] :: guild; association; guild meeting; guild-house; + gulosus_A : A ; -- [XXXEC] :: gluttonous; + gumia_F_N : N ; -- [XXXES] :: glutton; gourmand; + gummi_N : N ; -- [XAXCO] :: gum, vicid secretion from trees; + gumminosus_A : A ; -- [XAXNO] :: gummy, full of gum; + gummis_F_N : N ; -- [XAXCO] :: gum, vicid secretion from trees; + gummitio_F_N : N ; -- [XXXFO] :: application of gum; + gunna_F_N : N ; -- [GXXEK] :: skirt; + guoma_F_N : N ; -- [XTXEO] :: instrument for taking bearings to fix lines of orientation; (surveying); + gurculio_F_N : N ; -- [BAXCS] :: grain-worm/weevil; weevil; + gurges_M_N : N ; -- [XXXBX] :: whirlpool; raging abyss; gulf, the sea; "flood", "stream"; + gurgulio_M_N : N ; -- [XBXEC] :: windpipe; + gurgustium_N_N : N ; -- [XXXEC] :: hut, hovel; + gustatus_M_N : N ; -- [XXXCO] :: taste, sense of taste; tasting; + gusto_V : V ; -- [XXXBX] :: taste, sip; have some experience of; enjoy; + gustus_M_N : N ; -- [XXXDX] :: tasting, appetite; draught of water; + gutta_F_N : N ; -- [XXXDX] :: drop, spot, speck; + guttatim_Adv : Adv ; -- [XSXES] :: drop-by-drop; + gutter_N_N : N ; -- [FXXEL] :: throat, neck; gullet; (reference to gluttony/appetite); swollen throat, goiter; + guttula_F_N : N ; -- [XXXEC] :: little drop; + guttur_M_N : N ; -- [XXXEO] :: throat, neck; gullet; (reference to gluttony/appetite); swollen throat, goiter; + guttur_N_N : N ; -- [XXXCO] :: throat, neck; gullet; (reference to gluttony/appetite); swollen throat, goiter; + gutturalis_A : A ; -- [GXXEK] :: guttural; + guttus_M_N : N ; -- [XXXEC] :: jug; + gwerra_F_N : N ; -- [FWXEM] :: war; retaliation, feud; + gymnasiarchus_M_N : N ; -- [XGXEC] :: master of a gymnasium; + gymnasium_N_N : N ; -- [GXXEK] :: secondary school; + gymnastica_F_N : N ; -- [GXXEK] :: gymnast (female); + gymnasticus_A : A ; -- [XXXEC] :: gymnastic; + gymnicus_A : A ; -- [XXXDX] :: gymnastic; + gynaecearium_N_N : N ; -- [ELHFZ] :: women's apartment/quarters; seraglio/harem; + gynaecearius_M_N : N ; -- [DLHFS] :: overseer of seraglio/harem; + gynaeceum_N_N : N ; -- [XXHEO] :: women's apartment/quarters in Greek house; + gynaeciarium_N_N : N ; -- [ELHFZ] :: women's apartment/quarters; seraglio/harem; + gynaecium_N_N : N ; -- [XXHEO] :: women's apartment/quarters in Greek house; + gynaecius_M_N : N ; -- [DLHFS] :: overseer of seraglio/harem; + gynaecologia_F_N : N ; -- [GBXEK] :: gynecology; + gynaecologus_M_N : N ; -- [GBXEK] :: gynecologist; 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 ; - gyratus_A : A ; - gyro_V : V ; - gyrus_M_N : N ; - ha_Interj : Interj ; - habena_F_N : N ; - habeo_V : V ; - habetudo_F_N : N ; - habilis_A : A ; - habilitas_F_N : N ; - habilito_V : V ; - habitabilis_A : A ; - habitaculum_N_N : N ; + gynaeconitis_2_N : N ; -- [XXHEO] :: women's apartment/quarters in Greek house; + gypsatus_A : A ; -- [XXXDX] :: plastered; covered with gypsum; (slave) chalked for sale; + gypso_V2 : V2 ; -- [XXXEC] :: cover with gypsum; + gypsum_N_N : N ; -- [XXXEC] :: gypsum; plaster figure; + gyratus_A : A ; -- [XXXNO] :: rounded; made in form of a circle; + gyro_V : V ; -- [EXXCS] :: go around/about (thing); turn/wheel around/in a circle; + gyrus_M_N : N ; -- [XXXDX] :: circle, ring; circuit; course; circular course for training/racing horses; + ha_Interj : Interj ; -- [EXXBT] :: Ah!; (distress/regret/pity, appeal/entreaty, surprise/joy, objection/contempt); + habena_F_N : N ; -- [XXXDX] :: thong, strap; whip; halter; reins (pl.); direction, management, government; + habeo_V : V ; -- [XXXAX] :: have, hold, consider, think, reason; manage, keep; spend/pass (time); + habetudo_F_N : N ; -- [XXXFE] :: dullness; + habilis_A : A ; -- [XXXDX] :: handy, manageable; apt, fit; + habilitas_F_N : N ; -- [XXXEE] :: ability; aptitude; + habilito_V : V ; -- [FXXFM] :: enable; make suitable; + habitabilis_A : A ; -- [XXXDX] :: habitable; + habitaculum_N_N : N ; -- [XXXFO] :: dwelling place; home, residence; habitation (Bee); habitans_F_N : N ; -- [XXXEE] :: inhabitant; dweller; - habitans_M_N : N ; - habitatio_F_N : N ; - habitator_M_N : N ; - habitatrix_F_N : N ; - habito_V : V ; - habitualis_A : A ; - habitualiter_Adv : Adv ; - habitudinalis_A : A ; - habitudo_F_N : N ; - habituo_V : V ; - habitus_M_N : N ; - habrodiaetus_M_N : N ; - habrotonum_N_N : N ; - hac_Adv : Adv ; - hactenus_Adv : Adv ; - haedilia_F_N : N ; - haedilla_F_N : N ; - haedillus_M_N : N ; - haedinus_A : A ; - haedulea_F_N : N ; - haedulus_M_N : N ; - haedus_M_N : N ; - haemorrhagia_F_N : N ; - haemorrhois_F_N : N ; - haemorrhoissus_A : A ; - haemorroida_F_N : N ; - haereditas_F_N : N ; - haereo_V : V ; - haeresiarcha_M_N : N ; + habitans_M_N : N ; -- [XXXEE] :: inhabitant; dweller; + habitatio_F_N : N ; -- [XXXDX] :: lodging, residence; + habitator_M_N : N ; -- [XXXDX] :: dweller, inhabitant; + habitatrix_F_N : N ; -- [XXXFS] :: inhabiters; she who inhabits; + habito_V : V ; -- [XXXAX] :: inhabit, dwell; live, stay; + habitualis_A : A ; -- [FXXEM] :: habitual; customary; + habitualiter_Adv : Adv ; -- [XXXEE] :: habitual; + habitudinalis_A : A ; -- [FXXEM] :: habitual; customary; + habitudo_F_N : N ; -- [XXXEC] :: condition; + habituo_V : V ; -- [DXXES] :: habituate, bring into condition/habit (body); (PASS) be conditioned/in habit; + habitus_M_N : N ; -- [XXXBX] :: condition, state; garment/dress/"get-up"; expression, demeanor; character; + habrodiaetus_M_N : N ; -- [CXXFS] :: living delicately, epithet of the painter Parrhasius; + habrotonum_N_N : N ; -- [XAXFS] :: aromatic plant, southern-wood (medicine); + hac_Adv : Adv ; -- [XXXDX] :: here, by this side, this way; + hactenus_Adv : Adv ; -- [XXXBX] :: as far as this, to this place/point/time/extent, thus far, til now, hitherto; + haedilia_F_N : N ; -- [XAXFO] :: little kid/goat (female); + haedilla_F_N : N ; -- [XAXFO] :: little kid/goat (female); + haedillus_M_N : N ; -- [XAXFO] :: little kid/goat; + haedinus_A : A ; -- [XAXDO] :: kid's, of a kid; + haedulea_F_N : N ; -- [XAXFE] :: kid, young goat; + haedulus_M_N : N ; -- [XAXFO] :: little kid, little young goat; + haedus_M_N : N ; -- [XAXCO] :: kid, young goat; two stars in constellation Auriga (Charioteer), "The Kid"; + haemorrhagia_F_N : N ; -- [GBXEK] :: hemorrhage; + haemorrhois_F_N : N ; -- [EAXFS] :: poisonous snake (Pliny); + haemorrhoissus_A : A ; -- [FBXFE] :: hemorrhaging; having flow of blood; (menstrual?); + haemorroida_F_N : N ; -- [XBXES] :: hemorrhoid, pile; (also haemorrhoida); + haereditas_F_N : N ; -- [XXXBX] :: inheritance, possession; hereditary succession; generation; heirship; + haereo_V : V ; -- [XXXBX] :: stick, adhere, cling to; hesitate; be in difficulties (sticky situation?); + haeresiarcha_M_N : N ; -- [FEXFE] :: heresiarch, archheretic; founder/leader of a heresy; haeresis_1_N : N ; -- [XEXDO] :: philosophical/religious school of thought/sect; heresy/heretical doctrine (L+S); - haeresis_2_N : N ; - haeresis_F_N : N ; - haereticus_A : A ; - haereticus_M_N : N ; - haesitatio_F_N : N ; - haesito_V : V ; - hagiographia_F_N : N ; - hagiographicus_A : A ; - hagiographus_A : A ; - hagiographus_M_N : N ; - hagios_A : A ; - hahahae_Interj : Interj ; - hahahe_Interj : Interj ; - haicu_N_N : N ; - halatio_F_N : N ; - halcycon_F_N : N ; - haliaeetos_M_N : N ; - halica_F_N : N ; - halicacius_A : A ; - halicastrum_N_N : N ; - halito_V : V ; - halitus_M_N : N ; - hallec_N_N : N ; - hallucinator_M_N : N ; - hallus_M_N : N ; - halmaturus_M_N : N ; - halo_V : V ; - halucinatio_F_N : N ; - halucinor_V : V ; - hama_F_N : N ; + haeresis_2_N : N ; -- [XEXDO] :: philosophical/religious school of thought/sect; heresy/heretical doctrine (L+S); + haeresis_F_N : N ; -- [XEXDO] :: philosophical/religious school of thought/sect; heresy/heretical doctrine (L+S); + haereticus_A : A ; -- [EEXDS] :: heretical, of/belonging to heretical religious doctrines; + haereticus_M_N : N ; -- [EEXDS] :: heretic; teacher of false doctrine (Dif); + haesitatio_F_N : N ; -- [XXXFS] :: hesitation, hesitating; stammering; resolution; + haesito_V : V ; -- [XXXDX] :: stick hesitate, be undecided; be stuck; + hagiographia_F_N : N ; -- [EEHFE] :: hagiography, lives of saints; sacred/holy writing; + hagiographicus_A : A ; -- [GXXEK] :: hagiographic; + hagiographus_A : A ; -- [EEHEE] :: of/concerning sacred/holy writings; + hagiographus_M_N : N ; -- [EEHFE] :: sacred/holy writer; hagiographer (Cal); author of lives of Saints; + hagios_A : A ; -- [FXHFE] :: holy (Greek); + hahahae_Interj : Interj ; -- [EXXES] :: Ha ha!; (laughter, derision); + hahahe_Interj : Interj ; -- [EXXES] :: Ha ha!; (laughter, derision); + haicu_N_N : N ; -- [HPXFT] :: haiku, formal short verse (popular in Japan); + halatio_F_N : N ; -- [EBXEE] :: breath; breathing; + halcycon_F_N : N ; -- [XAXEX] :: halcyon; kingfisher; sea birds (pl.); + haliaeetos_M_N : N ; -- [XAXEC] :: sea-eagle, osprey; + halica_F_N : N ; -- [XXXEO] :: emmer (wheat) grots; porridge/gruel made with these; + halicacius_A : A ; -- [XAXEO] :: made of emmer (wheat), grots; connected with emmer (wheat) production; + halicastrum_N_N : N ; -- [XAXEO] :: early -ripening variety of emmer (wheat); + halito_V : V ; -- [EBXEE] :: breathe; + halitus_M_N : N ; -- [XXXDX] :: breath, steam, vapor; + hallec_N_N : N ; -- [XXXDX] :: herrings; a fish sauce; pickle; + hallucinator_M_N : N ; -- [DXXFS] :: idle dreamer, silly fellow; one who is wandering in mind; + hallus_M_N : N ; -- [XBXFO] :: big toe; + halmaturus_M_N : N ; -- [GXXEK] :: kangaroo; + halo_V : V ; -- [XXXDX] :: emit (vapor, etc); be fragrant; + halucinatio_F_N : N ; -- [XXXEO] :: wandering in mind, idle dream, delusion; idle/aimless behavior (w/mentis); + halucinor_V : V ; -- [XXXDX] :: wander in mind, talk idly/unreasonably, ramble, dream; wander; + hama_F_N : N ; -- [XXXDO] :: bucket; water bucket; (esp. fireman's bucket); hamadryas_1_N : N ; -- [XXXDX] :: wood-nymph, hamadryad, dryad; - hamadryas_2_N : N ; - hamatus_A : A ; - hamiota_M_N : N ; - hammonitrum_N_N : N ; - hamula_F_N : N ; - hamus_M_N : N ; - hannapus_M_N : N ; - hapalus_A : A ; - hara_F_N : N ; - harena_F_N : N ; - harenaceus_A : A ; - harenaria_F_N : N ; - harenarium_N_N : N ; - harenarius_A : A ; - harenarius_M_N : N ; - harenatio_F_N : N ; - harenatum_N_N : N ; - harenatus_A : A ; - harenifodina_F_N : N ; - harenivagus_A : A ; - harenosum_N_N : N ; - harenosus_A : A ; - harenula_F_N : N ; - haricolor_V : V ; - hariola_F_N : N ; - hariolor_V : V ; - hariolus_M_N : N ; - harmonia_F_N : N ; - harmonica_F_N : N ; - harmonice_Adv : Adv ; - harmonice_F_N : N ; - harmonicus_A : A ; - harmonium_N_N : N ; - harpagatus_A : A ; - harpago_M_N : N ; - harpastum_N_N : N ; - harpax_A : A ; - harpe_F_N : N ; - harpyria_F_N : N ; - harum_N_N : N ; - harundifer_A : A ; - harundinetum_N_N : N ; - harundineus_A : A ; - harundinosus_A : A ; - harundo_F_N : N ; - haruspex_M_N : N ; - haruspicina_F_N : N ; - haruspicinus_A : A ; - harviga_F_N : N ; - harvix_F_N : N ; - hasisum_N_N : N ; - hasta_F_N : N ; - hastatus_A : A ; - hastatus_M_N : N ; - hastile_N_N : N ; - hastilis_A : A ; - hau_Adv : Adv ; - hau_Interj : Interj ; - haud_Adv : Adv ; - hauddum_Adv : Adv ; - haudquaquam_Adv : Adv ; - hauquaquam_Adv : Adv ; - haurio_V2 : V2 ; - haustrum_N_N : N ; - haustus_M_N : N ; - haut_Adv : Adv ; - have_Interj : Interj ; - havens_A : A ; - haveo_V : V ; - he_N : N ; - hebdomada_F_N : N ; - hebdomadarius_A : A ; - hebdomadarius_M_N : N ; + hamadryas_2_N : N ; -- [XXXDX] :: wood-nymph, hamadryad, dryad; + hamatus_A : A ; -- [XXXDX] :: hooked; + hamiota_M_N : N ; -- [XAXEC] :: angler; + hammonitrum_N_N : N ; -- [XXENS] :: natron (sesquicarbonate of soda) mingled with sand; + hamula_F_N : N ; -- [XXXEF] :: small hook; + hamus_M_N : N ; -- [XXXDX] :: hook; barb of an arrow; spike; + hannapus_M_N : N ; -- [FEXFE] :: incense boat; + hapalus_A : A ; -- [XXXFO] :: soft-boiled; + hara_F_N : N ; -- [XXXDX] :: pen, coop, pigsty; + harena_F_N : N ; -- [XXXBO] :: sand, grains of sand; sandy land or desert; seashore; arena, place of contest; + harenaceus_A : A ; -- [XXXNS] :: sandy; + harenaria_F_N : N ; -- [XXXDX] :: sand-pit; + harenarium_N_N : N ; -- [XXXFS] :: sand-pit; + harenarius_A : A ; -- [DXXES] :: of/pertaining to sand; or to the arena/amphitheater; [~ lapis => sandstone]; + harenarius_M_N : N ; -- [DXXES] :: combatant in the arena, gladiator; teacher of mathematics (figures in sand); + harenatio_F_N : N ; -- [XTXES] :: sanding, plastering with sand; plastering, cementing; + harenatum_N_N : N ; -- [XTXFS] :: sand mortar; + harenatus_A : A ; -- [XTXFS] :: sanded, covered/mixed with sand; + harenifodina_F_N : N ; -- [DXXES] :: sand-pit; + harenivagus_A : A ; -- [XXXFS] :: wandering over sands; + harenosum_N_N : N ; -- [XXXDX] :: sandy place; + harenosus_A : A ; -- [XXXDX] :: sandy, containing sand (ground); + harenula_F_N : N ; -- [XXXNS] :: fine sand; a grain of sand; + haricolor_V : V ; -- [XEXCO] :: speak by divine inspiration or with second sight, prophesy, divine; (facetious?) + hariola_F_N : N ; -- [XEXEC] :: soothsayer, prophet; (female); + hariolor_V : V ; -- [XEXEC] :: utter prophecies; talk nonsense; + hariolus_M_N : N ; -- [XEXEC] :: soothsayer, prophet; + harmonia_F_N : N ; -- [XDXCO] :: harmony/concord; (between parts of body); melody, order of notes; coupling; + harmonica_F_N : N ; -- [XDXEO] :: theory of music/harmony; harmonics; science of sound; + harmonice_Adv : Adv ; -- [XXXEE] :: harmoniously; + harmonice_F_N : N ; -- [XDXEO] :: theory of music/harmony; harmonics; science of sound; + harmonicus_A : A ; -- [XDXEO] :: harmonious; of harmony/natural proportion; in unison; harmonic (Ecc); + harmonium_N_N : N ; -- [GDXEK] :: harmonium; + harpagatus_A : A ; -- [XXXDX] :: hooked; + harpago_M_N : N ; -- [XXXDX] :: hook; grappling iron; + harpastum_N_N : N ; -- [GXXEK] :: rugby; + harpax_A : A ; -- [XXXFS] :: drawing to itself; rapacious; + harpe_F_N : N ; -- [XWXDO] :: curved sword, scimitar; sickle; marine bird of prey (unidentified); + harpyria_F_N : N ; -- [XXXES] :: Harpy; rapacious person; + harum_N_N : N ; -- [XAXEO] :: plants of genus arum; + harundifer_A : A ; -- [XXXEC] :: reed-bearing; + harundinetum_N_N : N ; -- [XAXCO] :: reed-bed; thicket/jungle/growth of reeds/rushes (L+S); stubble (Vulgate); + harundineus_A : A ; -- [XXXEE] :: reed-, of reeds; like a reed; + harundinosus_A : A ; -- [XXXEC] :: full of reeds; + harundo_F_N : N ; -- [XXXBX] :: reed, cane, fishing rod, limed twigs for catching birds; arrow shaft; pipe; + haruspex_M_N : N ; -- [XXXDX] :: soothsayer, diviner; inspector of entrails of victims; + haruspicina_F_N : N ; -- [XEXEC] :: divination; + haruspicinus_A : A ; -- [XXXEC] :: concerned with divination; + harviga_F_N : N ; -- [XEXFS] :: ram for offering/sacrifice; + harvix_F_N : N ; -- [XEXFS] :: ram for offering/sacrifice; + hasisum_N_N : N ; -- [GXXEK] :: hashish; + hasta_F_N : N ; -- [XXXBO] :: spear/lance/javelin; spear stuck in ground for public auction/centumviral court; + hastatus_A : A ; -- [XXXDX] :: armed with spear/spears; first line of a Roman army (pl.); + hastatus_M_N : N ; -- [XWXCO] :: spearman; soldier in unit in front of Roman battle-formation; its centurion; + hastile_N_N : N ; -- [XXXDX] :: spear shaft; spear; cane; + hastilis_A : A ; -- [XXXFE] :: on a (spear) shaft; supported by a shaft/staff; + hau_Adv : Adv ; -- [XXXCL] :: not, not at all, by no means; not (as a particle); + hau_Interj : Interj ; -- [XXXFS] :: oh! ow! oh dear! goodness gracious! (used by women to express consternation); + haud_Adv : Adv ; -- [XXXAL] :: not, not at all, by no means; not (as a particle); + hauddum_Adv : Adv ; -- [XXXEO] :: not yet; not at all as yet; + haudquaquam_Adv : Adv ; -- [XXXCO] :: by no means, in no way; not at all; + hauquaquam_Adv : Adv ; -- [XXXCO] :: by no means, in no way; not at all; + haurio_V2 : V2 ; -- [XXXBX] :: draw up/out; drink, swallow, drain, exhaust; + haustrum_N_N : N ; -- [XXXEC] :: pump; + haustus_M_N : N ; -- [XXXDX] :: drink; draught; drawing (of water); + haut_Adv : Adv ; -- [XXXCL] :: not, not at all, by no means; not (as a particle); + have_Interj : Interj ; -- [XXXDX] :: hail!, formal expression of greetings; + havens_A : A ; -- [XXXCW] :: willing, eager, anxious; covetous; + haveo_V : V ; -- [XXXCL] :: |be eager/anxious (w/INF); desire, wish for, long after, crave; + he_N : N ; -- [DEQEW] :: he; (5th letter of Hebrew alphabet); (transliterate as H); + hebdomada_F_N : N ; -- [EXXFE] :: |week, seven days; Jewish week, one Sabbath to next; weekly gathering/duty rota; + hebdomadarius_A : A ; -- [XXXFE] :: lasting a week; + hebdomadarius_M_N : N ; -- [FEXFE] :: choir official serving for a week; 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 ; - hebenius_A : A ; - hebenum_N_N : N ; - hebenus_C_N : N ; - hebeo_V : V ; - hebes_A : A ; - hebesco_V : V ; - hebeto_V2 : V2 ; - hebetudo_F_N : N ; - hebria_F_N : N ; - hecatolitrum_N_N : N ; - hecatombe_F_N : N ; - hecatometrum_N_N : N ; - hectarea_F_N : N ; - hedera_F_N : N ; - hederacius_A : A ; - hedonismus_M_N : N ; - hedonisticus_A : A ; - hedus_M_N : N ; - hedychrum_N_N : N ; - hei_Interj : Interj ; - heia_Interj : Interj ; - heiros_A : A ; - hejulor_V : V ; - helica_F_N : N ; - helicopterum_N_N : N ; - helleborum_N_N : N ; - helleborus_M_N : N ; - hellenismus_M_N : N ; - hellenisticus_A : A ; - helluatio_F_N : N ; - helluo_M_N : N ; - helluor_V : V ; - helops_M_N : N ; - heluo_M_N : N ; - heluor_V : V ; - helvella_F_N : N ; - helxine_F_N : N ; - hem_Interj : Interj ; - hemera_F_N : N ; - hemerodromus_M_N : N ; - hemicillus_M_N : N ; - hemicrania_F_N : N ; - hemicyclium_N_N : N ; - hemiditonus_M_N : N ; - hemina_F_N : N ; - heminarium_N_N : N ; - hemiolios_A : A ; - hemisphaerion_N_N : N ; - hemisphaerium_N_N : N ; - hemitonion_N_N : N ; - hemitonium_N_N : N ; - hemorrhoissa_F_N : N ; - hemorrhoissus_A : A ; - hendecasyllabus_A : A ; - hendecasyllabus_M_N : N ; - heortologia_F_N : N ; - hepatitis_F_N : N ; + hebdomas_2_N : N ; -- [EXXDE] :: |week, seven days; Jewish week, one Sabbath to next; weekly gathering/duty rota; + hebdomas_F_N : N ; -- [EXXCS] :: |week, seven days; Jewish week, one Sabbath to next; weekly gathering/duty rota; + hebenius_A : A ; -- [FXXEE] :: ebony-, of ebony; + hebenum_N_N : N ; -- [XXXFO] :: ebony (wood or tree of genus Diospyrus); + hebenus_C_N : N ; -- [XXXDO] :: ebony (wood or tree of genus Diospyrus); + hebeo_V : V ; -- [XXXCO] :: be blunt; be sluggish/inactive; grow dim/faint, die down; (of feelings); + hebes_A : A ; -- [XXXDX] :: blunt, dun; languid; stupid; + hebesco_V : V ; -- [XXXDX] :: grow blunt or feeble; + hebeto_V2 : V2 ; -- [XXXBO] :: blunt, deaden, make dull/faint/dim/torpid/inactive (light/plant/senses), weaken; + hebetudo_F_N : N ; -- [FXXDV] :: sluggishness, sloth, inertness; dullness; dimness (color/light); feebleness; + hebria_F_N : N ; -- [DXXFS] :: wine vessel; + hecatolitrum_N_N : N ; -- [GSXEK] :: hectoliter; 100 hundred liters; + hecatombe_F_N : N ; -- [XEHFO] :: hecatomb; large public sacrifice; (100 oxen/animals); sacrifice w/many victims; + hecatometrum_N_N : N ; -- [GSXEK] :: hectometer; 100 meters; + hectarea_F_N : N ; -- [GSXEK] :: hectare; 100 meters square; + hedera_F_N : N ; -- [XXXDX] :: ivy; + hederacius_A : A ; -- [XAXES] :: ivy-; of ivy; ivy-coloured; + hedonismus_M_N : N ; -- [EEXEE] :: hedonism; + hedonisticus_A : A ; -- [GXXEK] :: hedonist; + hedus_M_N : N ; -- [EAXDT] :: kid, young goat; two stars in constellation Auriga (Charioteer), "The Kid"; + hedychrum_N_N : N ; -- [XXXEC] :: fragrant ointment; + hei_Interj : Interj ; -- [XXXDX] :: Ah! Woe!, oh dear, alas; (exclamation expressing anguish, grief or fear); + heia_Interj : Interj ; -- [XXXBX] :: how now!, Ha, Good, see! (of joy); see!, Quick! (of urgency/astonishment); + heiros_A : A ; -- [XXXEO] :: sacred/supernatural; (Greek); + hejulor_V : V ; -- [EEXEE] :: wail; lament; + helica_F_N : N ; -- [XXXFE] :: winding; + helicopterum_N_N : N ; -- [HTXEK] :: helicopter; + helleborum_N_N : N ; -- [XAXEC] :: hellebore (plant); (considered a remedy for madness); + helleborus_M_N : N ; -- [XAXEC] :: hellebore (plant); (considered a remedy for madness); + hellenismus_M_N : N ; -- [GXXEK] :: Hellenism; + hellenisticus_A : A ; -- [GXXEK] :: Hellenistic; + helluatio_F_N : N ; -- [XXXFO] :: debauch; revel; gluttony, gormandizing; + helluo_M_N : N ; -- [XXXDO] :: glutton, gourmand; squanderer; one who spends immoderately on eating; + helluor_V : V ; -- [XXXDO] :: spend immoderately (eating/luxuries); be a glutton/gormandize; squander; + helops_M_N : N ; -- [XAXEC] :: fish; (perhaps sturgeon); + heluo_M_N : N ; -- [DXXDS] :: glutton, gourmand; squanderer; one who spends immoderately on eating; + heluor_V : V ; -- [XXXDS] :: spend immoderately (eating/luxuries); be a glutton, gormandize; squander; + helvella_F_N : N ; -- [XAXEC] :: small pot-herb; + helxine_F_N : N ; -- [DAXNS] :: prickly plant (Pliny); + hem_Interj : Interj ; -- [XXXCO] :: what's that? (surprise/concern); Ah!/alas! (unhappiness); there/here! (wonder); + hemera_F_N : N ; -- [FXXFM] :: day; + hemerodromus_M_N : N ; -- [XXXEC] :: special courier, express; + hemicillus_M_N : N ; -- [XAXEC] :: mule; + hemicrania_F_N : N ; -- [GXXEK] :: migraine; + hemicyclium_N_N : N ; -- [XXXEC] :: semicircle (of seats); + hemiditonus_M_N : N ; -- [EDXEW] :: hemiditone, half ditone; minor third; + hemina_F_N : N ; -- [XSXEC] :: measure of capacity; (about half a pint); + heminarium_N_N : N ; -- [XXXFO] :: quarter pint, half hemina, quarter sextarius; vessel/present of that measure; + hemiolios_A : A ; -- [XXXFO] :: one-and-a-half; consisting of three halves as much; + hemisphaerion_N_N : N ; -- [XSXCO] :: hemisphere; half globe; hemispherical sundial; + hemisphaerium_N_N : N ; -- [XSXCO] :: hemisphere; half globe; hemispherical sundial; + hemitonion_N_N : N ; -- [XDXEO] :: semi-tone; interval of halftone; [foramina ~iorum => holes for catapult ropes]; + hemitonium_N_N : N ; -- [XDXEO] :: semi-tone; interval of halftone; [foramina ~iorum => holes for catapult ropes]; + hemorrhoissa_F_N : N ; -- [FBXFE] :: one hemorrhaging; + hemorrhoissus_A : A ; -- [FBXFE] :: hemorrhaging; having flow of blood; (menstruating?); + hendecasyllabus_A : A ; -- [XXXDX] :: verses consisting of eleven syllables; + hendecasyllabus_M_N : N ; -- [XXXDX] :: verses consisting of eleven syllables (pl.); + heortologia_F_N : N ; -- [FXXFE] :: science of feasts; + hepatitis_F_N : N ; -- [GBXEK] :: hepatitis; heptas_1_N : N ; -- [XSHEE] :: seven (Greek); - heptas_2_N : N ; - hepteris_F_N : N ; - hera_F_N : N ; - herba_F_N : N ; - herbaceus_A : A ; - herbagium_N_N : N ; - herbesco_V : V ; - herbicidum_N_N : N ; - herbidus_A : A ; - herbifer_A : A ; - herbipotens_A : A ; - herbisectrum_N_N : N ; - herbosus_A : A ; - herbula_F_N : N ; - hercisco_V2 : V2 ; - hercle_Interj : Interj ; - herctum_N_N : N ; - hercule_Interj : Interj ; - here_Adv : Adv ; - hereditarius_A : A ; - hereditas_F_N : N ; - heredito_V2 : V2 ; - heremita_M_N : N ; - heremiticus_A : A ; - heremus_A : A ; - heremus_M_N : N ; - hereo_V : V ; + heptas_2_N : N ; -- [XSHEE] :: seven (Greek); + hepteris_F_N : N ; -- [XWXEC] :: galley with seven banks of oars; + hera_F_N : N ; -- [XXXDX] :: mistress; lady of the house; woman in relation to her servants; Lady; + herba_F_N : N ; -- [XAXAX] :: herb, grass; + herbaceus_A : A ; -- [XAXFS] :: grassy; grass-colored(Pliny); + herbagium_N_N : N ; -- [FLXEM] :: right of pasturage; + herbesco_V : V ; -- [XAXEC] :: grow into blades or stalks; + herbicidum_N_N : N ; -- [GXXEK] :: herbicide; + herbidus_A : A ; -- [XXXDX] :: grassy; + herbifer_A : A ; -- [XXXDX] :: full of grass or herbs; bearing magical or medicinal plants; + herbipotens_A : A ; -- [EXXFP] :: skilled in herbs; + herbisectrum_N_N : N ; -- [GXXEK] :: lawn mower; + herbosus_A : A ; -- [XXXEC] :: grassy; + herbula_F_N : N ; -- [XXXEC] :: little herb; + hercisco_V2 : V2 ; -- [XLXEC] :: divide an inheritance; + hercle_Interj : Interj ; -- [XXXDX] :: By Hercules!; assuredly, indeed; + herctum_N_N : N ; -- [XXXEC] :: inheritance; [herctum ciere => to divide an inheritance]; + hercule_Interj : Interj ; -- [XXXDX] :: by Hercules!; assuredly, indeed; + here_Adv : Adv ; -- [XXXDX] :: yesterday; + hereditarius_A : A ; -- [XXXEC] :: of inheritance; inherited, hereditary; + hereditas_F_N : N ; -- [XXXBX] :: inheritance, possession; hereditary succession; generation; heirship; + heredito_V2 : V2 ; -- [DLXES] :: inherit; + heremita_M_N : N ; -- [FEXFB] :: hermit, eremite; anchorite; recluse; + heremiticus_A : A ; -- [FEXFF] :: solitary, secluded, recluse; living like a hermit; + heremus_A : A ; -- [FXXCB] :: waste, desert; + heremus_M_N : N ; -- [FXXCB] :: wilderness, wasteland, desert; + hereo_V : V ; -- [DXXCW] :: stick, adhere, cling to; hesitate; be in difficulties (sticky situation?); heres_F_N : N ; -- [XXXBX] :: heir/heiress; - heres_M_N : N ; - hereticus_A : A ; - hereticus_M_N : N ; - heri_Adv : Adv ; - herinacius_M_N : N ; - herma_F_N : N ; - hermaphroditus_M_N : N ; - hermeneutica_F_N : N ; - hermeneuticus_A : A ; - hermetice_Adv : Adv ; - hermeticus_A : A ; - hermitonium_N_N : N ; - herniosus_A : A ; - herodio_M_N : N ; - herodius_M_N : N ; - heroicitas_F_N : N ; - heroicus_A : A ; - heroina_F_N : N ; - heroine_F_N : N ; + heres_M_N : N ; -- [XXXBX] :: heir/heiress; + hereticus_A : A ; -- [FEXDS] :: heretical, of heretical religious doctrines; + hereticus_M_N : N ; -- [FEXDS] :: heretic; teacher of false doctrine (Dif); + heri_Adv : Adv ; -- [XXXDX] :: yesterday; + herinacius_M_N : N ; -- [FAXEE] :: hedgehog (of genus Erinaceus); porcupine (of genus Hystrix) (Ecc); + herma_F_N : N ; -- [EEXEE] :: metallic bust serving as reliquary; (head of Hermes on quadrangular pillar); + hermaphroditus_M_N : N ; -- [XXXEC] :: hermaphrodite; + hermeneutica_F_N : N ; -- [GXXEK] :: hermeneutics; art/science of interpretation (esp. of Scripture); + hermeneuticus_A : A ; -- [GXXEK] :: hermeneutic, hermeneutical; concerned w/interpretation (esp. of Scripture); + hermetice_Adv : Adv ; -- [GXXEK] :: hermetically; tightly; + hermeticus_A : A ; -- [GXXEK] :: hermetic; air-tight; + hermitonium_N_N : N ; -- [FDXEE] :: semi-tone; interval of halftone; [foramina ~iorum => holes for catapult ropes]; + herniosus_A : A ; -- [XBXEE] :: ruptured; + herodio_M_N : N ; -- [EAXES] :: bird (unidentified); perh. stork; little owl; heron (Douay); + herodius_M_N : N ; -- [EAXES] :: bird (unidentified); perh. stork; little owl; heron (Douay); + heroicitas_F_N : N ; -- [XXXEE] :: heroism; + heroicus_A : A ; -- [XXXDX] :: heroic, epic; + heroina_F_N : N ; -- [XYXEO] :: heroine (mythical); + heroine_F_N : N ; -- [XYXEO] :: heroine (mythical); herois_1_N : N ; -- [XYXCO] :: heroine (mythical); - herois_2_N : N ; - heros_M_N : N ; - herous_A : A ; - herus_M_N : N ; - hesitatio_F_N : N ; - hesperius_A : A ; - hesternus_A : A ; - hetaeria_F_N : N ; - hetaeriarcha_M_N : N ; - hetairia_F_N : N ; - heterogeneus_A : A ; - heterogenia_F_N : N ; - heterosexualis_A : A ; - heth_N : N ; - hethanim_N : N ; - heu_Interj : Interj ; - heuristicus_A : A ; - heus_Interj : Interj ; - hexagonon_N_N : N ; - hexagonum_N_N : N ; - hexameter_A : A ; - hexameter_M_N : N ; - hexametrus_A : A ; - hexametrus_M_N : N ; - hexapeda_F_N : N ; - hexaphorum_N_N : N ; + herois_2_N : N ; -- [XYXCO] :: heroine (mythical); + heros_M_N : N ; -- [XXXDX] :: hero; demigod; (only sing.); + herous_A : A ; -- [XXXDX] :: heroic; + herus_M_N : N ; -- [FXXEE] :: master, lord; owner, proprietor; + hesitatio_F_N : N ; -- [XXXFS] :: hesitation, hesitating; stammering; resolution; + hesperius_A : A ; -- [XXXDX] :: western; + hesternus_A : A ; -- [XXXBX] :: of yesterday; + hetaeria_F_N : N ; -- [XXXEO] :: society, guild, fraternity; brotherhood; + hetaeriarcha_M_N : N ; -- [EXXFE] :: official of cofraternity; + hetairia_F_N : N ; -- [XXXEC] :: secret society; + heterogeneus_A : A ; -- [FXXFM] :: heterogeneous; + heterogenia_F_N : N ; -- [FXXFM] :: heterogeneity; + heterosexualis_A : A ; -- [HBXEE] :: heterosexual; + heth_N : N ; -- [DEQEW] :: het; (8th letter of Hebrew alphabet); (transliterate as CH); + hethanim_N : N ; -- [EEQFW] :: Ethanim; ancient Hebrew seventh month; (meaning flowing rivers); + heu_Interj : Interj ; -- [XXXAX] :: oh! ah! alas! (an expression of dismay or pain); + heuristicus_A : A ; -- [GXXEK] :: heuristic; + heus_Interj : Interj ; -- [XXXDX] :: hey!, ho!, ho there!, listen!; + hexagonon_N_N : N ; -- [XSXEO] :: hexagon, six-sided figure; + hexagonum_N_N : N ; -- [XSXEO] :: hexagon, six-sided figure; + hexameter_A : A ; -- [XPXDO] :: hexameter; with six metrical feet; (of verse); + hexameter_M_N : N ; -- [XPXEO] :: hexameter line; verse in hexameter; + hexametrus_A : A ; -- [XPXFO] :: hexameter; with six metrical feet; (of verse); + hexametrus_M_N : N ; -- [XPXEO] :: hexameter line; verse in hexameter; + hexapeda_F_N : N ; -- [GXXEK] :: height (measure of length); + hexaphorum_N_N : N ; -- [XXXES] :: six-man litter; hexas_1_N : N ; -- [XSHFE] :: six (Greek); - hexas_2_N : N ; - hexeris_F_N : N ; - hiacinthina_F_N : N ; - hiacinthinus_A : A ; - hiatus_M_N : N ; - hibernaculum_N_N : N ; - hibernalis_A : A ; - hiberno_V : V ; - hibernum_N_N : N ; - hibernus_A : A ; - hibiscum_N_N : N ; - hibiscus_F_N : N ; - hibix_M_N : N ; - hibrida_F_N : N ; - hic_Adv : Adv ; - hiemalis_A : A ; - hiemans_A : A ; - hiemo_V : V ; - hiemps_F_N : N ; - hiems_F_N : N ; - hiera_F_N : N ; - hierarcha_M_N : N ; - hierarchia_F_N : N ; - hierarchicus_A : A ; - hieraticus_A : A ; - hieroglyphum_N_N : N ; - hieronica_M_N : N ; - hierotheca_F_N : N ; - hierus_A : A ; - hilaresco_V : V ; - hilaris_A : A ; - hilarisco_V : V ; - hilaritas_F_N : N ; - hilaro_V2 : V2 ; - hilarulus_A : A ; - hilarus_A : A ; - hilum_N_N : N ; - hin_N : N ; - hinc_Adv : Adv ; - hinnio_V2 : V2 ; - hinnitus_M_N : N ; - hinnuleus_M_N : N ; - hinnulus_M_N : N ; - hinnus_M_N : N ; - hinulus_M_N : N ; - hio_V : V ; - hippagogus_M_N : N ; - hippocampus_M_N : N ; - hippocentaurus_M_N : N ; - hippodromos_M_N : N ; - hippomanes_N_N : N ; - hippotoxota_M_N : N ; - hippurus_M_N : N ; - hircinus_A : A ; - hircus_M_N : N ; - hirnea_F_N : N ; - hirneacus_A : A ; - hirneosus_A : A ; - hirniacus_A : A ; - hirniosus_A : A ; - hirsutus_A : A ; - hirtus_A : A ; - hirudo_F_N : N ; - hirundininus_A : A ; - hirundo_F_N : N ; - hisco_V : V ; - hisopum_N_N : N ; - hisopus_F_N : N ; - hispidus_A : A ; - hissopum_N_N : N ; - hissopus_F_N : N ; - historia_F_N : N ; - historialis_A : A ; - historialiter_Adv : Adv ; - historicus_A : A ; - historiographus_M_N : N ; - histriatus_A : A ; - histricus_A : A ; - histrio_M_N : N ; - histronia_F_N : N ; - hiulcus_A : A ; - hocceus_M_N : N ; - hocusque_Adv : Adv ; - hodie_Adv : Adv ; - hodiernus_A : A ; - hoedilla_F_N : N ; - hoedillus_M_N : N ; - hoedinus_A : A ; - hoedulus_M_N : N ; - hoedus_M_N : N ; - holisatrum_N_N : N ; - holitorius_A : A ; - holocaustoma_N_N : N ; + hexas_2_N : N ; -- [XSHFE] :: six (Greek); + hexeris_F_N : N ; -- [XWXEC] :: galley with six banks of oars; + hiacinthina_F_N : N ; -- [FXXEE] :: amethyst; dark-colored precious stone; + hiacinthinus_A : A ; -- [FXXEE] :: of/belonging to hyacinth; hyacinth-colored/violet/blue/sapphire/purple; + hiatus_M_N : N ; -- [XXXBO] :: |hiatus; action of gaping/yawning/splitting open; greedy desire (for w/GEN); + hibernaculum_N_N : N ; -- [XXXDX] :: winter quarters; + hibernalis_A : A ; -- [XXXCE] :: wintry; stormy, of/for winter time/rainy season; + hiberno_V : V ; -- [XXXDX] :: spend the winter; be in winter quarters; + hibernum_N_N : N ; -- [XXXDX] :: winter camp (pl.); winter quarters; + hibernus_A : A ; -- [XXXCO] :: wintry; stormy, of/for winter time/rainy season; [hiberno => in winter]; + hibiscum_N_N : N ; -- [XAXEO] :: marsh mallow; (Althea officinalis); (shrubby herb, grows near salt marshes); + hibiscus_F_N : N ; -- [XAXES] :: marsh mallow; (Althea officinalis); (shrubby herb, grows near salt marshes); + hibix_M_N : N ; -- [EAXFW] :: ibex; wild goat (Douay/KJames); + hibrida_F_N : N ; -- [XAXEC] :: hybrid; + hic_Adv : Adv ; -- [XXXDX] :: here, in this place; in the present circumstances; + hiemalis_A : A ; -- [XXXDX] :: wintry; stormy; of/for winter time/rainy season; + hiemans_A : A ; -- [EXXEE] :: stormy, raging; wintry; frozen, cold; + hiemo_V : V ; -- [XXXDX] :: winter, pass the winter, keep winter quarters; be wintry/frozen/stormy; + hiemps_F_N : N ; -- [XXXDX] :: winter, winter time; rainy season; cold, frost; storm, stormy weather; + hiems_F_N : N ; -- [XXXAX] :: winter, winter time; rainy season; cold, frost; storm, stormy weather; + hiera_F_N : N ; -- [XXXFO] :: drawn contest; (the prize being awarded to a god); + hierarcha_M_N : N ; -- [FEXEF] :: bishop; hierarch, member of hierarchy; + hierarchia_F_N : N ; -- [FEXEE] :: hierarchy; governing body of Church; + hierarchicus_A : A ; -- [FEXCF] :: hierarchal; concerning/belonging to/coming from holy authority/hierarchy; + hieraticus_A : A ; -- [EEXFE] :: hieratic, pertaining to sacred uses; + hieroglyphum_N_N : N ; -- [GXXEK] :: hieroglyph; + hieronica_M_N : N ; -- [XEXFO] :: winner in (religious festival) games; + hierotheca_F_N : N ; -- [EEXEE] :: reliquary; + hierus_A : A ; -- [XXXEO] :: sacred/supernatural; [hiera botane => vervain, medicinal/sacred plant]; + hilaresco_V : V ; -- [XXXEO] :: be/become cheerful/joyful; + hilaris_A : A ; -- [XXXBX] :: cheerful, lively, light-hearted; + hilarisco_V : V ; -- [XXXFO] :: be/become cheeerful/joyful; + hilaritas_F_N : N ; -- [XXXDX] :: cheerfulness, lightheartedness; + hilaro_V2 : V2 ; -- [XXXCO] :: cheer, gladden; give cheerful appearance to; + hilarulus_A : A ; -- [XXXEC] :: gay, cheerful; + hilarus_A : A ; -- [XXXDX] :: cheerful, lively, light-hearted; + hilum_N_N : N ; -- [XXXEC] :: trifle; (with negative) not a whit, not in the least; + hin_N : N ; -- [ESQFW] :: hin (Hebrew liquid measure, little less than 5 liters); (Vulgate Exodus 29:40); + hinc_Adv : Adv ; -- [XXXAX] :: from here, from this source/cause; hence, henceforth; + hinnio_V2 : V2 ; -- [XXXDX] :: neigh; + hinnitus_M_N : N ; -- [XXXDX] :: neighing; + hinnuleus_M_N : N ; -- [XAXEO] :: fawn; young of the deer; + hinnulus_M_N : N ; -- [XAXEO] :: hinny (offspring of she-ass and stallion OLD); fawn; roe deer (KJames); + hinnus_M_N : N ; -- [XAXEC] :: mule; + hinulus_M_N : N ; -- [EAXEW] :: hinny (offspring of she-ass and stallion OLD); fawn; roe deer (KJames); + hio_V : V ; -- [XXXDX] :: be wide open, gape; be greedy for; be open-mouthed (with astonishment, etc); + hippagogus_M_N : N ; -- [XWXEC] :: transports (pl.) for cavalry; + hippocampus_M_N : N ; -- [XXXES] :: sea-horse; + hippocentaurus_M_N : N ; -- [XYXEC] :: centaur; + hippodromos_M_N : N ; -- [XXXEC] :: hippodrome racecourse; + hippomanes_N_N : N ; -- [XAXCO] :: |small black membrane on forehead of foal; (for love potion/to arouse passion); + hippotoxota_M_N : N ; -- [XXXDX] :: mounted archers (pl.); + hippurus_M_N : N ; -- [GXXEK] :: gilt-head fish; + hircinus_A : A ; -- [XAXEC] :: of a goat; goat-like; + hircus_M_N : N ; -- [XXXDX] :: he-goat; + hirnea_F_N : N ; -- [XBXEO] :: jug; hernia/rupture; (esp. enlarged scrotum as result of scrotal hernia); + hirneacus_A : A ; -- [XBXIO] :: having hernia/rupture/enlarged scrotum; + hirneosus_A : A ; -- [XBXFO] :: having hernia/rupture/enlarged scrotum; + hirniacus_A : A ; -- [EBXFW] :: having hernia/rupture/enlarged scrotum; + hirniosus_A : A ; -- [EBXFW] :: having hernia/rupture/enlarged scrotum; + hirsutus_A : A ; -- [XXXDX] :: rough, shaggy, hairy, bristly, prickly; rude; + hirtus_A : A ; -- [XAXCO] :: hairy/shaggy, covered with hair/wool; thick growth (plants); rough/unpolished; + hirudo_F_N : N ; -- [XXXDX] :: leech; + hirundininus_A : A ; -- [XAXES] :: swallow-; of swallows; + hirundo_F_N : N ; -- [XXXDX] :: swallow; martin; small bird; flying fish; + hisco_V : V ; -- [XXXDX] :: (begin to) open, gape; open the mouth to speak; + hisopum_N_N : N ; -- [XAXDO] :: aromatic herb; (perh. various species of origanum); Hyssopus officinalis (L+S); + hisopus_F_N : N ; -- [XAXDO] :: aromatic herb; (perh. various species of origanum); Hyssopus officinalis (L+S); + hispidus_A : A ; -- [XXXDX] :: rough, shaggy, hairy; bristly; dirty; + hissopum_N_N : N ; -- [XAXDO] :: aromatic herb; (perh. various species of origanum); Hyssopus officinalis (L+S); + hissopus_F_N : N ; -- [XAXDO] :: aromatic herb; (perh. various species of origanum); Hyssopus officinalis (L+S); + historia_F_N : N ; -- [XXXAX] :: history; account; story; + historialis_A : A ; -- [FXXFY] :: historical; + historialiter_Adv : Adv ; -- [FXXFM] :: historically; + historicus_A : A ; -- [XXXDX] :: historical; + historiographus_M_N : N ; -- [EDXES] :: history-writer; + histriatus_A : A ; -- [ETXFW] :: chamfered/fluted/grooved (Douay); w/knobs/bosses/studs/protuberances (K.James); + histricus_A : A ; -- [XDXEC] :: of actors; + histrio_M_N : N ; -- [XXXDX] :: actor; performer in pantomime; + histronia_F_N : N ; -- [XXXFS] :: dramatic art; assume character of actor; + hiulcus_A : A ; -- [XXXDX] :: gaping, having the mouth wide open, insatiable, greedy; cracked; disconnected; + hocceus_M_N : N ; -- [GXXEK] :: hockey; + hocusque_Adv : Adv ; -- [XXXDX] :: to this degree/pitch; + hodie_Adv : Adv ; -- [XXXAX] :: today, nowadays; at the present time; + hodiernus_A : A ; -- [XXXCO] :: today's, of/belonging to today; present, existing now; [~ die => on this day]; + hoedilla_F_N : N ; -- [XAXFO] :: little kid/goat (female); + hoedillus_M_N : N ; -- [XAXFS] :: little kid/goat; (term of endearment); + hoedinus_A : A ; -- [XAXDS] :: kid's, of a kid; + hoedulus_M_N : N ; -- [XAXFS] :: little kid, little young goat; + hoedus_M_N : N ; -- [XAXCS] :: kid, young goat; two stars in constellation Auriga (Charioteer), "The Kid"; + holisatrum_N_N : N ; -- [XAXEX] :: HOLISATR; (some kind of foodstuff, eg herb); + holitorius_A : A ; -- [XAXEC] :: of herbs; [w/forum => vegetable market]; + holocaustoma_N_N : N ; -- [DEQES] :: whole burnt offering, sacrifice wholly consumed by fire; holocaust; (Hebrew); 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 ; - holosericus_A : A ; - holoverus_A : A ; - holus_N_N : N ; - holusculum_N_N : N ; - homagium_N_N : N ; - homicida_C_N : N ; - homicidium_N_N : N ; - homileticum_N_N : N ; - homileticus_A : A ; - homilia_F_N : N ; - homiliarium_N_N : N ; - homo_M_N : N ; - homoeoteleuton_N_N : N ; - homogeneitas_F_N : N ; - homogeneus_A : A ; - homogium_N_N : N ; - homographus_A : A ; - homoiousius_A : A ; - homologus_M_N : N ; - homoousius_A : A ; - homosexualis_A : A ; + holocaustosis_2_N : N ; -- [EEQFW] :: whole burnt offering, sacrifice wholly consumed by fire; holocaust; (Hebrew); + holocaustum_N_N : N ; -- [DEQES] :: whole burnt offering, sacrifice wholly consumed by fire; holocaust; (Hebrew); + holocautom_N_N : N ; -- [DEQEE] :: whole burnt offering, sacrifice wholly consumed by fire; holocaust; (Hebrew); + holosericum_N_N : N ; -- [FXXEE] :: silk; velvet; + holosericus_A : A ; -- [GXXET] :: all silk, made entirely of silk; (Erasmus); + holoverus_A : A ; -- [XXXFS] :: quite real; wholly of purple; + holus_N_N : N ; -- [XXXDX] :: vegetables; cabbage, turnips, greens; kitchen/pot herbs; edible grass (Cal); + holusculum_N_N : N ; -- [XXXDX] :: vegetables (in depreciatory sense); + homagium_N_N : N ; -- [FLXFJ] :: homage; + homicida_C_N : N ; -- [XXXCO] :: murderer, homicide; killer of men (applied to epic heroes); + homicidium_N_N : N ; -- [XXXCO] :: homicide, murder; + homileticum_N_N : N ; -- [FEXFE] :: homiletics (pl.); art of preaching; + homileticus_A : A ; -- [FEXFE] :: of homilies; of preaching; + homilia_F_N : N ; -- [FEXDE] :: homily; + homiliarium_N_N : N ; -- [FEXEF] :: collection of homilies; + homo_M_N : N ; -- [XXXAX] :: man, human being, person, fellow; [novus homo => nouveau riche]; + homoeoteleuton_N_N : N ; -- [XPXES] :: like-ending; rhyme; + homogeneitas_F_N : N ; -- [GXXEK] :: homogeneity; + homogeneus_A : A ; -- [GXXEK] :: homogeneous; + homogium_N_N : N ; -- [FXXEE] :: homage; + homographus_A : A ; -- [DGXES] :: autograph; entirely autograph, wholly written by one's own hand; + homoiousius_A : A ; -- [FXXEE] :: similar, resembling, of like substance; + homologus_M_N : N ; -- [FXXEK] :: counterpart; homologue; + homoousius_A : A ; -- [FEXEE] :: consubstantial, of same subtance; + homosexualis_A : A ; -- [HXXEE] :: homosexual; homosexualis_F_N : N ; -- [HXXEE] :: homosexual (person); - homosexualis_M_N : N ; - homosexualitas_F_N : N ; - homullus_M_N : N ; - homuncio_M_N : N ; - homunculus_M_N : N ; - honestas_F_N : N ; - honeste_Adv : Adv ; - honesto_V : V ; - honestor_V : V ; - honestus_A : A ; - honor_M_N : N ; - honorabilis_A : A ; - honorabiliter_Adv : Adv ; - honorarium_N_N : N ; - honorarius_A : A ; - honorate_Adv : Adv ; - honoratus_A : A ; - honorificatus_A : A ; - honorifice_Adv : Adv ; - honorificentia_F_N : N ; - honorifico_V2 : V2 ; - honorificus_A : A ; - honoro_V : V ; - honorus_A : A ; - honos_M_N : N ; - hoplomachus_M_N : N ; - hora_F_N : N ; - horalis_A : A ; - horarium_N_N : N ; - horarius_A : A ; - horarius_M_N : N ; - hordeaceus_A : A ; - hordeacius_A : A ; - hordearius_A : A ; - hordeum_N_N : N ; - hordiaceus_A : A ; - hordiacius_A : A ; - hordiarius_A : A ; - horia_F_N : N ; + homosexualis_M_N : N ; -- [HXXEE] :: homosexual (person); + homosexualitas_F_N : N ; -- [HXXEE] :: homosexuality; + homullus_M_N : N ; -- [XXXEC] :: little man, manikin; + homuncio_M_N : N ; -- [XXXEC] :: little man, manikin; + homunculus_M_N : N ; -- [XXXEC] :: little man, manikin; + honestas_F_N : N ; -- [XXXDX] :: honor, integrity, honesty; wealth (Plater); + honeste_Adv : Adv ; -- [XXXDX] :: honorably; decently; + honesto_V : V ; -- [XXXDX] :: honor (with); adorn, grace; + honestor_V : V ; -- [FXXEE] :: be earnest/serious/grave; + honestus_A : A ; -- [XXXAX] :: distinguished, reputable, respected, honorable, upright, honest; worthy; + honor_M_N : N ; -- [XXXAO] :: honor; respect/regard; mark of esteem, reward; dignity/grace; public office; + honorabilis_A : A ; -- [XXXEO] :: honorific, conferring honor; honored; honorable, that procures honor/esteem; + honorabiliter_Adv : Adv ; -- [XXXES] :: honorably; + honorarium_N_N : N ; -- [FXXDE] :: stipend; honorarium; reimbursement; + honorarius_A : A ; -- [XXXDX] :: complimentary, supplied voluntarily; + honorate_Adv : Adv ; -- [XXXDO] :: honorably, with honor; in honorable fashion; decently (Ecc); nobly; + honoratus_A : A ; -- [XXXBO] :: honored/respected/esteemed/distinguished; honorable; conferring honor; + honorificatus_A : A ; -- [XXXEE] :: honorable; that does honor; conferring honor; + honorifice_Adv : Adv ; -- [XXXCO] :: honorably; respectfully; with honor/respect; + honorificentia_F_N : N ; -- [EXXFS] :: honoring; doing of honor; + honorifico_V2 : V2 ; -- [DXXES] :: honor; do honor to; confer honor; + honorificus_A : A ; -- [XXXCO] :: honorific; that does honor; conferring/showing honor; + honoro_V : V ; -- [XXXBX] :: respect, honor; + honorus_A : A ; -- [XXXDX] :: conferring honor; + honos_M_N : N ; -- [BXXAO] :: honor; respect/regard; mark of esteem, reward; dignity/grace; public office; + hoplomachus_M_N : N ; -- [XXXEC] :: gladiator; + hora_F_N : N ; -- [XXXAX] :: hour; time; season; [Horae => Seasons]; + horalis_A : A ; -- [GXXEK] :: hourly; + horarium_N_N : N ; -- [FXXEE] :: daily schedule; + horarius_A : A ; -- [FXXFE] :: pertaining to hours; timely )Cal); + horarius_M_N : N ; -- [GXXEK] :: timetable; + hordeaceus_A : A ; -- [XAXCO] :: barley-, of/connected to barley; + hordeacius_A : A ; -- [XAXCO] :: barley-, of/connected to barley; + hordearius_A : A ; -- [XAXCO] :: barley-, of/connected to barley; [~ pira => pears ripening w/barley]; + hordeum_N_N : N ; -- [XAXCO] :: barley (the plant or the grain from it); barley-corn; + hordiaceus_A : A ; -- [XAXCO] :: barley-, of/connected to barley; (used as term of contempt); + hordiacius_A : A ; -- [XAXCO] :: barley-, of/connected to barley; (used as term of contempt); + hordiarius_A : A ; -- [XAXCS] :: barley-, of/connected to barley; [~ pira => pears ripening w/barley]; + horia_F_N : N ; -- [XWXEC] :: small fishing boat; 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 ; - hormonum_N_N : N ; - hornotinus_A : A ; - hornus_A : A ; - horologiarius_M_N : N ; - horologion_N_N : N ; - horologium_N_N : N ; - horoma_N_N : N ; - horrendus_A : A ; - horreo_V : V ; - horresco_V2 : V2 ; - horreum_N_N : N ; - horribilis_A : A ; - horridulus_A : A ; - horridus_A : A ; - horrifer_A : A ; - horrificus_A : A ; - horripilatio_F_N : N ; - horripilo_V : V ; - horrisonus_A : A ; - horror_M_N : N ; - hortalitium_N_N : N ; - hortamen_N_N : N ; - hortamentum_N_N : N ; - hortatio_F_N : N ; - hortativus_A : A ; - hortator_M_N : N ; - hortatorius_A : A ; - hortatus_A : A ; - hortensis_A : A ; - hortensium_N_N : N ; - hortensius_A : A ; - hortor_V : V ; - hortulanus_M_N : N ; - hortulus_M_N : N ; - hortus_M_N : N ; - hospes_A : A ; - hospes_M_N : N ; - hospita_F_N : N ; - hospitale_N_N : N ; - hospitalis_A : A ; - hospitalitas_F_N : N ; - hospitaliter_Adv : Adv ; - hospitium_N_N : N ; - hospito_V2 : V2 ; - hospitor_V : V ; - hospitus_A : A ; - hostia_F_N : N ; - hostiaria_F_N : N ; - hosticus_A : A ; - hostilis_A : A ; - hostilitas_F_N : N ; - hostiliter_Adv : Adv ; - hostimentum_N_N : N ; - hostio_V : V ; + horizon_2_N : N ; -- [XSXEO] :: horizon; line on celestial sphere corresponding to horizon; + horizontalis_A : A ; -- [GSXEM] :: horizontal; + horizontaliter_Adv : Adv ; -- [GXXEM] :: horizontally; + horminum_N_N : N ; -- [XAXNS] :: clary-herb; sage (Pliny); + hormonum_N_N : N ; -- [HBXEK] :: hormone; + hornotinus_A : A ; -- [XXXEC] :: of this year, this year's; + hornus_A : A ; -- [XXXDX] :: this year's; born/produced in the current year; + horologiarius_M_N : N ; -- [GXXEK] :: watchmaker; + horologion_N_N : N ; -- [EEHEE] :: horologion (in Eastern Church, book of prayers/hymns for daily hours); + horologium_N_N : N ; -- [XXXDX] :: clock, sundial; + horoma_N_N : N ; -- [DEXEZ] :: vision; + horrendus_A : A ; -- [XXXDX] :: horrible, dreadful, terrible; + horreo_V : V ; -- [XXXAX] :: dread, shrink from, shudder at; stand on end, bristle; have rough appearance; + horresco_V2 : V2 ; -- [XXXDX] :: dread, become terrified; bristle up; begin to shake/tremble/shudder/shiver; + horreum_N_N : N ; -- [XXXDX] :: storehouse; barn; + horribilis_A : A ; -- [XXXDX] :: awful, horrible, terrible; monstrous; rough; + horridulus_A : A ; -- [XXXEC] :: somewhat rough, unadorned; + horridus_A : A ; -- [XXXBX] :: wild, frightful, rough, bristly, standing on end, unkempt; grim; horrible; + horrifer_A : A ; -- [XXXDX] :: awful, horrible, dreadful; frightening, chilling, exciting terror; + horrificus_A : A ; -- [XXXDX] :: awful, horrible, dreadful; frightening, chilling, exciting terror; + horripilatio_F_N : N ; -- [XXXFE] :: bristling (of hair); + horripilo_V : V ; -- [XXXFO] :: become bristly/hairy; be shaggy (L+S); shudder/shake (Sou); pierce (Douay); + horrisonus_A : A ; -- [XXXDX] :: sounding dreadfully; + horror_M_N : N ; -- [XXXBX] :: shivering, dread, awe rigidity (from cold, etc); + hortalitium_N_N : N ; -- [FAXFY] :: garden; + hortamen_N_N : N ; -- [XXXDX] :: encouragement; + hortamentum_N_N : N ; -- [XXXEC] :: exhortation, encouragement, incitement; + hortatio_F_N : N ; -- [XXXDX] :: encouragement; exhortation; + hortativus_A : A ; -- [XXXEC] :: of encouragement; + hortator_M_N : N ; -- [XXXCO] :: inciter; encourager, exhorter; urger (sight/sound) of horses in chariot races; + hortatorius_A : A ; -- [XXXEE] :: cheering, comforting; encouraging; + hortatus_A : A ; -- [XXXDX] :: encouragement, urging; + hortensis_A : A ; -- [XAXFO] :: grown in gardens; belonging to/in a garden; + hortensium_N_N : N ; -- [XAXFS] :: garden herb; + hortensius_A : A ; -- [XAXNO] :: grown in gardens; belonging to/in a garden; + hortor_V : V ; -- [XXXBX] :: encourage; cheer; incite; urge; exhort; + hortulanus_M_N : N ; -- [XXXFE] :: gardener; + hortulus_M_N : N ; -- [XXXDX] :: small/little garden; park (pl.); pleasure grounds; + hortus_M_N : N ; -- [XXXAX] :: garden, fruit/kitchen garden; pleasure garden; park (pl.); + hospes_A : A ; -- [XXXCO] :: of relation between host and guest; that hosts; that guests; foreign, alien; + hospes_M_N : N ; -- [XXXBO] :: host; guest, visitor, stranger; soldier in billets; one who billets soldiers; + hospita_F_N : N ; -- [XXXCO] :: female guest; hostess, wife of host; landlady; stranger, alien; + hospitale_N_N : N ; -- [XXXEE] :: hospital; guesthouse, guestroom; + hospitalis_A : A ; -- [XXXDX] :: of or for a guest; hospitable; + hospitalitas_F_N : N ; -- [XXXEO] :: hospitality, entertainment of guests; + hospitaliter_Adv : Adv ; -- [XXXDX] :: in a hospitable manner; + hospitium_N_N : N ; -- [XXXBX] :: hospitality, entertainment; lodging; guest room/lodging; inn; + hospito_V2 : V2 ; -- [EXXFW] :: play/act as host; offer hospitality; put up guests/lodgers; + hospitor_V : V ; -- [XXXDX] :: be a guest; lodge; stay; put up as a guest/lodger; + hospitus_A : A ; -- [XXXCO] :: hospitable/harboring, affording hospitality; received as guest; foreign/alien; + hostia_F_N : N ; -- [XXXBX] :: victim, sacrifice; sacrificial offering/animal; + hostiaria_F_N : N ; -- [EEXEE] :: vessel for hosts (consecrated bread/wafers); + hosticus_A : A ; -- [XXXDX] :: of or belonging to an enemy, hostile; + hostilis_A : A ; -- [XWXDX] :: hostile, enemy; of/belonging to an enemy; involving/performed by an enemy; + hostilitas_F_N : N ; -- [XXXEE] :: hostility, enmity; + hostiliter_Adv : Adv ; -- [XWXCO] :: in an unfriendly/hostile way, in the manner of an enemy; + hostimentum_N_N : N ; -- [XXXEC] :: compensation, requital; + hostio_V : V ; -- [XXXEC] :: requite, recompense; hostis_F_N : N ; -- [XXXDX] :: enemy (of the state); stranger, foreigner; the enemy (pl.); - hostis_M_N : N ; - hu_N : N ; - huc_Adv : Adv ; - huccine_Adv : Adv ; - hucusque_Adv : Adv ; - hue_Adv : Adv ; - hui_Interj : Interj ; - humanismus_M_N : N ; - humanista_M_N : N ; - humanisticus_A : A ; - humanitarius_A : A ; - humanitas_F_N : N ; - humaniter_Adv : Adv ; - humanitus_Adv : Adv ; - humano_V2 : V2 ; - humanum_N_N : N ; - humanus_A : A ; - humecto_V2 : V2 ; - humectus_A : A ; - humens_A : A ; - humerale_N_N : N ; - humerulus_M_N : N ; - humerus_M_N : N ; - humi_Adv : Adv ; - humicubatio_F_N : N ; - humiditas_F_N : N ; - humidum_N_N : N ; - humidus_A : A ; - humiliatio_F_N : N ; - humilio_V2 : V2 ; - humilis_A : A ; - humilitas_F_N : N ; - humiliter_Adv : Adv ; - humo_V : V ; - humor_M_N : N ; - humus_F_N : N ; - hundredum_N_N : N ; - hutesium_N_N : N ; - hyacinthina_F_N : N ; - hyacinthinus_A : A ; - hyacinthos_M_N : N ; - hyacinthus_M_N : N ; - hyaena_F_N : N ; - hyalus_M_N : N ; - hybernalis_A : A ; - hybrida_F_N : N ; - hydolatria_F_N : N ; - hydolum_N_N : N ; - hydoneus_A : A ; - hydra_F_N : N ; - hydrargyrus_M_N : N ; - hydraulicus_A : A ; - hydraulus_F_N : N ; - hydria_F_N : N ; - hydrocarboneum_N_N : N ; - hydrogenium_N_N : N ; - hydrographia_F_N : N ; - hydrographicus_A : A ; - hydrologicus_A : A ; - hydromel_N_N : N ; - hydromeli_N_N : N ; - hydromellum_N_N : N ; - hydropicus_A : A ; - hydropisis_F_N : N ; - hydroplanum_N_N : N ; + hostis_M_N : N ; -- [XXXDX] :: enemy (of the state); stranger, foreigner; the enemy (pl.); + hu_N : N ; -- [EXQFW] :: what (Hebrew); (food from God for wandering Jews); [man hu => what is this]; + huc_Adv : Adv ; -- [XXXAX] :: here, to this place; to this point; + huccine_Adv : Adv ; -- [XXXCE] :: so far; to this point; + hucusque_Adv : Adv ; -- [XXXCO] :: thus far, to this point, up to this time; hitherto; to this extent; + hue_Adv : Adv ; -- [XXXDX] :: hither, to the person speaking/indicated; so far, to this point/place/degree; + hui_Interj : Interj ; -- [XXXDX] :: whee!, wow!; sound of surprise or approbation not unlike "whee"; + humanismus_M_N : N ; -- [FSXEE] :: humanism; + humanista_M_N : N ; -- [GXXEK] :: humanist; + humanisticus_A : A ; -- [FSXFE] :: humanist; humanistic; + humanitarius_A : A ; -- [GXXEK] :: humanitarian; + humanitas_F_N : N ; -- [XXXBO] :: human nature/character/feeling; kindness/courtesy; culture/civilization; + humaniter_Adv : Adv ; -- [XXXDO] :: reasonably, moderately; in manner becoming a man; in kindly/friendly manner; + humanitus_Adv : Adv ; -- [XXXDO] :: kindly, reasonably; moderately; in manner becoming man; in the way of humans; + humano_V2 : V2 ; -- [DEXES] :: make human; (in PASSIVE of the incarnation of Christ); + humanum_N_N : N ; -- [XXXDX] :: human affairs (pl.), concerns of men; events of life; + humanus_A : A ; -- [XXXAX] :: human; kind; humane, civilized, refined; [~ hostiae => human sacrifice]; + humecto_V2 : V2 ; -- [XXXEE] :: moisten; + humectus_A : A ; -- [XXXEC] :: moist; + humens_A : A ; -- [XXXDX] :: moist, wet; + humerale_N_N : N ; -- [XXXFO] :: cape, protective shoulder cover; outer robe; ecclesiastic humeral; amice; + humerulus_M_N : N ; -- [XXXFE] :: side; + humerus_M_N : N ; -- [XXXDX] :: upper arm, shoulder; + humi_Adv : Adv ; -- [XXXDX] :: on/to the ground; + humicubatio_F_N : N ; -- [EEXEE] :: humicubation, lying on ground as penance; + humiditas_F_N : N ; -- [XXXBO] :: |degradation, debasement; humiliation; submissiveness, subservience; humility; + humidum_N_N : N ; -- [XXXDX] :: swamp; + humidus_A : A ; -- [XXXDX] :: damp, moist, dank, wet, humid; + humiliatio_F_N : N ; -- [DXXES] :: humiliation, humbling; + humilio_V2 : V2 ; -- [DXXCS] :: humble; abase; humiliate (Def); + humilis_A : A ; -- [XXXAX] :: low, lowly, small, slight, base, mean, humble, obscure, poor, insignificant; + humilitas_F_N : N ; -- [XXXBO] :: |lowness (position/rank); shortness; humbleness; submissiveness; humility (Bee); + humiliter_Adv : Adv ; -- [XXXCO] :: abjectly, in a submissive manner; low, at low elevation; humbly, meanly (Cas); + humo_V : V ; -- [XXXDX] :: inter, bury; + humor_M_N : N ; -- [XXXDX] :: fluid, liquid, moisture, humor; [Bacchi ~ => wine]; + humus_F_N : N ; -- [XXXAX] :: ground, soil, earth, land, country; + hundredum_N_N : N ; -- [FLXFZ] :: hundred (name of land area or court); + hutesium_N_N : N ; -- [FLXFJ] :: pursuit; hue and cry; + hyacinthina_F_N : N ; -- [XXXEE] :: amethyst; dark-colored precious stone; + hyacinthinus_A : A ; -- [XXXEO] :: of/belonging to hyacinth; hyacinth-colored/violet/blue/sapphire/purple; + hyacinthos_M_N : N ; -- [XXXCO] :: iris; (prob. not hyacinth); sapphire; blue-dyed cloth (Souter); + hyacinthus_M_N : N ; -- [XXXCO] :: iris; (prob. not hyacinth); sapphire; blue-dyed cloth (Souter); + hyaena_F_N : N ; -- [XXXEC] :: hyena; + hyalus_M_N : N ; -- [XXXDX] :: glass; + hybernalis_A : A ; -- [XXXFE] :: wintry; stormy, of/for winter time/rainy season; + hybrida_F_N : N ; -- [XAXEC] :: hybrid; + hydolatria_F_N : N ; -- [FEXFZ] :: idolatry; (JFW guess); + hydolum_N_N : N ; -- [FEXFZ] :: idol; (JFW guess); + hydoneus_A : A ; -- [FXXFZ] :: |suitable, fit, proper; sufficient for, able; (JFW guess); + hydra_F_N : N ; -- [XXXDX] :: water-serpent, snake; + hydrargyrus_M_N : N ; -- [GXXEK] :: mercury; + hydraulicus_A : A ; -- [GXXEK] :: hydraulic; + hydraulus_F_N : N ; -- [XXXDX] :: water organ; + hydria_F_N : N ; -- [XEXDO] :: water-pot; (esp. ornamental and used for temple offerings); + hydrocarboneum_N_N : N ; -- [GXXEK] :: hydrocarbon; + hydrogenium_N_N : N ; -- [GSXEK] :: hydrogen; + hydrographia_F_N : N ; -- [GSXEK] :: hydrography; + hydrographicus_A : A ; -- [GSXEK] :: hydrographic; + hydrologicus_A : A ; -- [HSXEK] :: hydrologic; + hydromel_N_N : N ; -- [EXXEO] :: mead; honey-water; (beverage of fermented honey and water); hydromel; + hydromeli_N_N : N ; -- [XXXDO] :: mead; honey-water; (beverage of fermented honey and water); hydromel; + hydromellum_N_N : N ; -- [FXXEM] :: mead; honey-water; (beverage of fermented honey and water); hydromel; wort; + hydropicus_A : A ; -- [XBXCO] :: dropsical, suffering from dropsy; + hydropisis_F_N : N ; -- [XBXNO] :: dropsy; + hydroplanum_N_N : N ; -- [GTXEK] :: seaplane; hydrops_1_N : N ; -- [XBXEO] :: dropsy; - hydrops_2_N : N ; - hydrops_M_N : N ; - hydrosphaera_F_N : N ; - hydrostatica_F_N : N ; - hydrostaticus_A : A ; - hydrus_M_N : N ; - hygiena_F_N : N ; - hygienicus_A : A ; - hygrologia_F_N : N ; - hygrometrum_N_N : N ; - hylomorphismus_M_N : N ; - hymera_F_N : N ; - hymnarium_N_N : N ; - hymnicus_A : A ; - hymnizo_V : V ; - hymnodia_F_N : N ; - hymnologion_N_N : N ; - hymnus_M_N : N ; - hyoscyamus_M_N : N ; - hypaethros_M_N : N ; - hypaethrum_N_N : N ; - hypaethrus_A : A ; - hypallage_F_N : N ; - hypate_F_N : N ; - hypaton_N_N : N ; - hyperbaton_N_N : N ; - hyperbola_F_N : N ; - hyperbolaeos_F_N : N ; - hyperbolaeus_A : A ; - hyperbole_F_N : N ; - hyperboleus_F_N : N ; - hyperbolice_Adv : Adv ; - hyperbolicus_A : A ; - hypercatalectus_M_N : N ; - hyperdulia_F_N : N ; - hypermetricus_A : A ; - hypertrophia_F_N : N ; - hypnosis_F_N : N ; - hypnotismus_M_N : N ; - hypnotista_M_N : N ; - hypnotizo_V : V ; - hypocauston_N_N : N ; - hypocaustum_N_N : N ; - hypochondria_F_N : N ; - hypochondriacus_A : A ; - hypocrisis_F_N : N ; - hypocrita_M_N : N ; - hypocrites_M_N : N ; - hypodiaconus_M_N : N ; - hypodiaconxus_M_N : N ; - hypodidascalus_M_N : N ; - hypodorius_A : A ; - hypogaeum_N_N : N ; - hypogeum_N_N : N ; - hypogeus_A : A ; - hypolydius_A : A ; - hypomnema_N_N : N ; - hypophrygius_A : A ; - hypostasis_F_N : N ; - hypostaticus_A : A ; - hypotenusa_F_N : N ; - hypotheca_F_N : N ; - hypothecarius_A : A ; - hypotheco_V : V ; - hypothesis_F_N : N ; - hypotheticus_A : A ; - hypotheticus_M_N : N ; - hypozonium_N_N : N ; - hyrax_M_N : N ; - hysginum_N_N : N ; - hysopum_N_N : N ; - hysopus_F_N : N ; - hyssopum_N_N : N ; - hyssopus_F_N : N ; - hysteria_F_N : N ; - hystericus_A : A ; - hysterologia_F_N : N ; - iacinthina_F_N : N ; - iacinthinus_A : A ; - iambeus_A : A ; - iambicus_A : A ; - iambicus_M_N : N ; - iambus_M_N : N ; - ianus_M_N : N ; - ibex_F_N : N ; - ibi_Adv : Adv ; - ibidem_Adv : Adv ; + hydrops_2_N : N ; -- [XBXEO] :: dropsy; + hydrops_M_N : N ; -- [XBXEO] :: dropsy; + hydrosphaera_F_N : N ; -- [GTXEK] :: hydrosphere; + hydrostatica_F_N : N ; -- [GSXEK] :: hydrostatic; + hydrostaticus_A : A ; -- [GSXEK] :: hydrostatic; + hydrus_M_N : N ; -- [XXXDX] :: water-snake; snake; the constellation Hydra; + hygiena_F_N : N ; -- [GXXEK] :: hygiene; + hygienicus_A : A ; -- [GXXEK] :: hygienic; + hygrologia_F_N : N ; -- [GSXEK] :: hydrology; + hygrometrum_N_N : N ; -- [GTXEK] :: hygrometer; + hylomorphismus_M_N : N ; -- [FSXFE] :: theory of matter and form in Scholastic philosophy; + hymera_F_N : N ; -- [FXXFM] :: day; + hymnarium_N_N : N ; -- [FEXEE] :: hymnal, collection of hymns, hymn-book; + hymnicus_A : A ; -- [FEXFE] :: of hymns; + hymnizo_V : V ; -- [FEXEE] :: sing hymns; worship in song; + hymnodia_F_N : N ; -- [FEXFE] :: singing of hymns; + hymnologion_N_N : N ; -- [FEHFE] :: hymnal, hymn-book (in Greek rite); + hymnus_M_N : N ; -- [EEXDX] :: hymn; + hyoscyamus_M_N : N ; -- [XAXES] :: henbane; (annual herb Hyoscyamus niger); + hypaethros_M_N : N ; -- [XEXES] :: open temple; + hypaethrum_N_N : N ; -- [XXXES] :: open building; + hypaethrus_A : A ; -- [XXXES] :: uncovered; + hypallage_F_N : N ; -- [XGXES] :: rhetorical figure; interchanged relations between things; + hypate_F_N : N ; -- [XDXFO] :: bass string (instrument); lowest note of tetrachord; notes of lowest tetrachord; + hypaton_N_N : N ; -- [FDXEZ] :: deepest/lowest string/note; (of tetrachord); + hyperbaton_N_N : N ; -- [XGXEC] :: transposition of words; + hyperbola_F_N : N ; -- [GSXEK] :: hyperbole (math.); + hyperbolaeos_F_N : N ; -- [XDXEO] :: notes/strings in highest pitch tetrachord; highest tetrachord in 2-octave scale; + hyperbolaeus_A : A ; -- [DXXFS] :: extreme; + hyperbole_F_N : N ; -- [XGXEO] :: exaggeration, hyperbole, overstatement; + hyperboleus_F_N : N ; -- [EDXEP] :: notes/strings in highest pitch tetrachord; highest tetrachord in 2-octave scale; + hyperbolice_Adv : Adv ; -- [DXXFS] :: excessively; hyperbolically; with exaggeration; + hyperbolicus_A : A ; -- [DXXFS] :: excessive, overstrained, hyperbolical/hyperbolic; insolent (Latham); + hypercatalectus_M_N : N ; -- [XPXES] :: faulty verse; verse ending in syllable; verse with one extra foot; + hyperdulia_F_N : N ; -- [FEXFE] :: superior veneration; veneration due Blessed Virgin Mary; + hypermetricus_A : A ; -- [HSXFE] :: over/exceeding a meter; + hypertrophia_F_N : N ; -- [GXXEK] :: hypertrophy; enlargement of part/organ, excessive growth/development; + hypnosis_F_N : N ; -- [GXXEK] :: hypnosis; + hypnotismus_M_N : N ; -- [HSXFE] :: hypnotism; + hypnotista_M_N : N ; -- [GXXEK] :: hypnotist; + hypnotizo_V : V ; -- [GXXEK] :: hypnotize; + hypocauston_N_N : N ; -- [XXXDX] :: system of hot-air channels for heating baths; + hypocaustum_N_N : N ; -- [XXXET] :: system of hot-air channels for heating baths; room heated from below; (Erasmus); + hypochondria_F_N : N ; -- [GXXEK] :: hypochondria; + hypochondriacus_A : A ; -- [GXXEK] :: hypochondriac; + hypocrisis_F_N : N ; -- [EEXES] :: hypocrisy, pretended sanctity; mimicry, imitation of speech/gestures; + hypocrita_M_N : N ; -- [XDXEO] :: actor; mime accompanying actor's delivery w/gestures (L+S); hypocrite; + hypocrites_M_N : N ; -- [XDXEO] :: actor; mime accompanying actor's delivery w/gestures (L+S); hypocrite; + hypodiaconus_M_N : N ; -- [FEXFE] :: subdeacon; + hypodiaconxus_M_N : N ; -- [GXXET] :: subdeacon; (Erasmus); + hypodidascalus_M_N : N ; -- [XXXEC] :: under-teacher, under-master; + hypodorius_A : A ; -- [EDXEP] :: hypodorian (scale in music); type of music; + hypogaeum_N_N : N ; -- [XXXEO] :: crypt; vault; underground chamber/room; + hypogeum_N_N : N ; -- [XXXEO] :: crypt; vault; underground chamber/room; + hypogeus_A : A ; -- [XXXIO] :: underground; + hypolydius_A : A ; -- [EDXEP] :: hypolydian (scale in music); type of music; + hypomnema_N_N : N ; -- [XXXEC] :: memorandum, note; + hypophrygius_A : A ; -- [EDXEP] :: hypophrygian (scale in music); type of music; + hypostasis_F_N : N ; -- [FEXDF] :: basis, foundation; single substance; rational single substance, person; + hypostaticus_A : A ; -- [FEXDF] :: hypostatic, pertaining to the person; + hypotenusa_F_N : N ; -- [XSXEO] :: hypotenuse; + hypotheca_F_N : N ; -- [XLXEO] :: security for a loan or debt; + hypothecarius_A : A ; -- [XLXEO] :: concerning security for loan/debt; [actio ~=>suit on claim to property pledged]; + hypotheco_V : V ; -- [GXXEK] :: mortgage; + hypothesis_F_N : N ; -- [GXXEK] :: hypothesis; + hypotheticus_A : A ; -- [FXXFM] :: hypothetical; + hypotheticus_M_N : N ; -- [XSXFS] :: hypothetician; mathematician who proceeds hypothetically; + hypozonium_N_N : N ; -- [GXXEK] :: underskirt; + hyrax_M_N : N ; -- [HAXFE] :: hyrax, rock badger, rock rabbit; (previously classified as Rodentia); + hysginum_N_N : N ; -- [DAXNS] :: dark-red dye (Pliny); + hysopum_N_N : N ; -- [XAXDO] :: aromatic herb; (perh. various species of origanum); Hyssopus officinalis (L+S); + hysopus_F_N : N ; -- [XAXDO] :: aromatic herb; (perh. various species of origanum); Hyssopus officinalis (L+S); + hyssopum_N_N : N ; -- [XAXDO] :: aromatic herb; (perh. various species of origanum); Hyssopus officinalis (L+S); + hyssopus_F_N : N ; -- [XAXDO] :: aromatic herb; (perh. various species of origanum); Hyssopus officinalis (L+S); + hysteria_F_N : N ; -- [GXXEK] :: hysteria; + hystericus_A : A ; -- [GXXEK] :: hysterical; + hysterologia_F_N : N ; -- [XGXFS] :: hysteron proteron, preposterous rhetorical figure, last phrase comes first; + iacinthina_F_N : N ; -- [FXXEE] :: amethyst; dark-colored precious stone; + iacinthinus_A : A ; -- [FXXEE] :: of/belonging to hyacinth; hyacinth-colored/violet/blue/sapphire/purple; + iambeus_A : A ; -- [XPXFO] :: iambic, composed of iambi; + iambicus_A : A ; -- [XPXEO] :: iambic, composed of iambi; + iambicus_M_N : N ; -- [XPXFO] :: writer of iambic (satiric) verse; + iambus_M_N : N ; -- [XPXCO] :: iambus, metrical foot (one short-one long); iambic trimeter (as invective); + ianus_M_N : N ; -- [FXXEN] :: arcade, covered passage; + ibex_F_N : N ; -- [XAXNO] :: ibex; (species of wild mountain goat w/large ridged recurved diverging horns); + ibi_Adv : Adv ; -- [XXXAX] :: there, in that place; thereupon; + ibidem_Adv : Adv ; -- [XXXDX] :: in that very place; at that very instant; ibis_1_N : N ; -- [EXXEW] :: ibis; (sacred Egyptian bird); - ibis_2_N : N ; - ibis_F_N : N ; - ibiscum_N_N : N ; - ibix_M_N : N ; - ichneumon_M_N : N ; - ichnographia_F_N : N ; - ichnographice_Adv : Adv ; - icio_V2 : V2 ; - ico_V2 : V2 ; - icon_F_N : N ; + ibis_2_N : N ; -- [EXXEW] :: ibis; (sacred Egyptian bird); + ibis_F_N : N ; -- [XAXCO] :: ibis; (sacred Egyptian bird); + ibiscum_N_N : N ; -- [XAXEO] :: marsh mallow; (Althea officinalis); (shrubby herb, grows near salt marshes); + ibix_M_N : N ; -- [XAXNO] :: ibex; (species of wild mountain goat w/large ridged recurved diverging horns); + ichneumon_M_N : N ; -- [XAEDO] :: ichneumon; parasitic fly; [Herpestes ichneumon => weasel-like Egyptian animal]; + ichnographia_F_N : N ; -- [GTXEK] :: plan (drawing); + ichnographice_Adv : Adv ; -- [GTXEK] :: planned; with aid of plan; + icio_V2 : V2 ; -- [XXXDX] :: hit, strike; smite, stab, sting; [foedus ~ => conclude/make a treaty, league]; + ico_V2 : V2 ; -- [XXXDX] :: hit, strike; smite, stab, sting; [foedus ~ => conclude/make a treaty, league]); + icon_F_N : N ; -- [XXXEO] :: giving an exact image (of work of art); life-size (L+S); of an image; 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 ; - ictus_M_N : N ; - idcirco_Adv : Adv ; - idea_F_N : N ; - idealismus_M_N : N ; - idealista_M_N : N ; - idealisticus_A : A ; - ideirco_Adv : Adv ; - identicus_A : A ; - identidem_Adv : Adv ; - identificatio_F_N : N ; - identifico_V : V ; - identitas_F_N : N ; - ideo_Adv : Adv ; - ideologia_F_N : N ; - ideologicus_A : A ; - idioma_N_N : N ; - idiota_M_N : N ; - idipsum_Adv : Adv ; - idolatra_C_N : N ; + iconastasis_2_N : N ; -- [XXXEE] :: iconostasis, partition separating sanctuary from body of Greek church; + iconismus_M_N : N ; -- [XXXEO] :: specification of identifying marks on person; representation by image; imagery; + icosaedron_N_N : N ; -- [FSXFM] :: icosahedron; (solid figure with 20 sides); + ictericus_A : A ; -- [XBXEC] :: jaundiced; + ictus_M_N : N ; -- [XPXAX] :: blow, stroke; musical/metrical beat; measure (music); + idcirco_Adv : Adv ; -- [XXXDX] :: on that account; therefore; + idea_F_N : N ; -- [XSXFO] :: idea; eternal prototype (Platonic philosophy); + idealismus_M_N : N ; -- [GXXEK] :: idealism; + idealista_M_N : N ; -- [GXXEK] :: idealist; + idealisticus_A : A ; -- [GXXEK] :: idealistic; + ideirco_Adv : Adv ; -- [XXXDX] :: therefore, for that reason; + identicus_A : A ; -- [GXXEK] :: identical; + identidem_Adv : Adv ; -- [XXXDX] :: repeatedly; again and again, continually; + identificatio_F_N : N ; -- [GXXEK] :: identification; + identifico_V : V ; -- [GXXEK] :: identify; + identitas_F_N : N ; -- [FXXEZ] :: identity?; IDENTITAT; + ideo_Adv : Adv ; -- [XXXAX] :: therefore, for the reason that, for that reason; + ideologia_F_N : N ; -- [GXXEK] :: ideology; + ideologicus_A : A ; -- [GXXEK] :: ideological; + idioma_N_N : N ; -- [GXXEK] :: idiom; + idiota_M_N : N ; -- [XXXEC] :: ignorant/uneducated man; + idipsum_Adv : Adv ; -- [FXXEE] :: together; forthwith; completely; that very thing; [~ sapere => be of one mind]; + idolatra_C_N : N ; -- [EEXEE] :: idolater, idol worshipper; idolatres_F_N : N ; -- [EEXEE] :: idolater, idol worshipper; - idolatres_M_N : N ; - idolatria_C_N : N ; - idolatria_F_N : N ; - idoleum_N_N : N ; - idolicus_A : A ; - idolium_N_N : N ; - idololatres_M_N : N ; - idololatria_F_N : N ; - idololatricus_A : A ; - idololatrio_V2 : V2 ; - idololatris_F_N : N ; - idololatrix_A : A ; - idolon_N_N : N ; - idolothyton_N_N : N ; - idolothytum_N_N : N ; - idolothytus_A : A ; - idolotitum_N_N : N ; - idolum_N_N : N ; - idonee_Adv : Adv ; - idoneus_A : A ; - idos_N : N ; - iens_A : A ; - igitur_Conj : Conj ; - ignarus_A : A ; - ignavia_F_N : N ; - ignavus_A : A ; - ignesco_V : V ; - igneus_A : A ; - igniculus_M_N : N ; - ignifer_A : A ; - ignigena_M_N : N ; - ignio_V2 : V2 ; - ignipes_A : A ; - ignipotens_A : A ; - ignis_M_N : N ; - ignistitium_N_N : N ; - ignitabulum_N_N : N ; - ignitus_A : A ; - ignobilis_A : A ; - ignobilitas_F_N : N ; - ignominia_F_N : N ; - ignominiosus_A : A ; - ignorans_A : A ; - ignoranter_Adv : Adv ; - ignorantia_F_N : N ; - ignorantio_F_N : N ; - ignoratio_F_N : N ; - ignoro_V : V ; - ignosco_V2 : V2 ; - ignotus_A : A ; - ile_N_N : N ; - ilex_F_N : N ; - iliacus_A : A ; - iliacus_C_N : N ; - ilicet_Interj : Interj ; - ilico_Adv : Adv ; - ilict_Adv : Adv ; - iligneus_A : A ; - ilignus_A : A ; - illabor_V : V ; - illaboro_V : V ; - illac_Adv : Adv ; - illacrimabilis_A : A ; - illacrimo_V : V ; - illacrimor_V : V ; - illaesus_A : A ; - illaetabilis_A : A ; - illaqueo_V : V ; - illatebro_V2 : V2 ; - illatinismus_M_N : N ; - illatinus_A : A ; - illatio_F_N : N ; - illatro_V : V ; - illecebra_F_N : N ; - illecebrosus_A : A ; - illecto_V2 : V2 ; - illegalis_A : A ; - illegitima_F_N : N ; - illegitimus_M_N : N ; - illepidus_A : A ; - illex_A : A ; + idolatres_M_N : N ; -- [EEXEE] :: idolater, idol worshipper; + idolatria_C_N : N ; -- [EEXFE] :: idolater, idol worshipper; + idolatria_F_N : N ; -- [EEXEE] :: idolatry, idol worship; + idoleum_N_N : N ; -- [DEXDS] :: idol-temple; idolatry, paganism (Souter); + idolicus_A : A ; -- [DEXDS] :: of/belonging to idols/image of pagan god, idol-; idolatrous; heretical; pagan; + idolium_N_N : N ; -- [DEXDS] :: idol-temple, temple for an idol/pagan god; idolatry, paganism (Souter); + idololatres_M_N : N ; -- [DEXES] :: idolater, idol worshipper; + idololatria_F_N : N ; -- [DEXES] :: idolatry, idol worship; + idololatricus_A : A ; -- [DEXEP] :: sacrificed to idols; + idololatrio_V2 : V2 ; -- [DEXFP] :: worship an idol; + idololatris_F_N : N ; -- [DEXES] :: idolatress, idol worshipper (female); + idololatrix_A : A ; -- [DEXEP] :: sacrificed to idols; + idolon_N_N : N ; -- [DXXDS] :: specter, apparition; image, form; idol (eccl.), image of pagan god; + idolothyton_N_N : N ; -- [DEXEP] :: food offered to idols; something sacrificed to idols/images of false/pagan gods; + idolothytum_N_N : N ; -- [DEXFP] :: food offered to idols; something sacrificed to idols/images of false/pagan gods; + idolothytus_A : A ; -- [DEXES] :: of/pertaining to sacrifices to idols; concerning idolatry (Souter); + idolotitum_N_N : N ; -- [DEXFP] :: something that has been sacrificed to idols/images of false/pagan gods; + idolum_N_N : N ; -- [DEXFP] :: |idol-temple; idolatry, paganism (Souter); fetish (Cal); + idonee_Adv : Adv ; -- [XXXDO] :: suitably; satisfactorily, in a satisfactory manner; appropriately; adequately; + idoneus_A : A ; -- [XXXBO] :: |substantial, solvent; having money to meet obligations, backed by resources; + idos_N : N ; -- [BXHFO] :: form; visible aspect of object; + iens_A : A ; -- [XXXBO] :: going; (PRES PPL of eo); + igitur_Conj : Conj ; -- [XXXAO] :: therefore (postpositive), so/then; consequently; accordingly; well/in that case; + ignarus_A : A ; -- [XXXBX] :: ignorant; unaware, having no experience of; senseless; strange; + ignavia_F_N : N ; -- [XXXDX] :: idleness, laziness; faintheartedness; + ignavus_A : A ; -- [XXXBO] :: lazy/idle/sluggish; spiritless; cowardly, faint-hearted; ignoble, mean; useless; + ignesco_V : V ; -- [XXXDX] :: take fire, kindle; become inflamed (with passion); + igneus_A : A ; -- [XXXDX] :: fiery, hot; ardent; + igniculus_M_N : N ; -- [XXXEC] :: little fire, flame, spark; + ignifer_A : A ; -- [XXXDX] :: bearing or containing fire; + ignigena_M_N : N ; -- [XXXEC] :: born of fire; + ignio_V2 : V2 ; -- [EXXFS] :: ignite; make red-hot; + ignipes_A : A ; -- [XXXEC] :: fiery-footed; + ignipotens_A : A ; -- [XXXDX] :: god/ruler of fire, potent in fire; applied to Vulcan; + ignis_M_N : N ; -- [XXXAX] :: fire, brightness; passion, glow of passion; + ignistitium_N_N : N ; -- [GXXEK] :: cease-fire; + ignitabulum_N_N : N ; -- [GXXEK] :: lighter; + ignitus_A : A ; -- [XXXEO] :: containing fire; + ignobilis_A : A ; -- [XXXDX] :: ignoble; unknown, obscure; of low birth; + ignobilitas_F_N : N ; -- [XXXDX] :: obscurity, want of fame; low birth; + ignominia_F_N : N ; -- [XXXDX] :: disgrace, ignominy, dishonor; + ignominiosus_A : A ; -- [XXXDX] :: disgraced; disgraceful; + ignorans_A : A ; -- [DXXES] :: ignorant (of), unaware, not knowing; ignorant of Christian truth (Souter); + ignoranter_Adv : Adv ; -- [DXXES] :: ignorantly; unintentionally/not knowingly, unconsciously (Souter); unexpectedly; + ignorantia_F_N : N ; -- [XXXCO] :: ignorance; lack of knowledge; absence of data on which to make judgment; + ignorantio_F_N : N ; -- [FXXCE] :: ignorance; lack of knowledge; absence of data on which to make judgment; + ignoratio_F_N : N ; -- [XXXCO] :: ignorance; lack of knowledge; absence of data on which to make judgment; + ignoro_V : V ; -- [XXXAX] :: not know; be unfamiliar with; disregard; ignore; be ignorant of; + ignosco_V2 : V2 ; -- [XXXBX] :: pardon, forgive (with DAT); + ignotus_A : A ; -- [XXXAX] :: unknown, strange; unacquainted with, ignorant of; + ile_N_N : N ; -- [XXXDX] :: groin, private parts; side of body from hips to groin (pl.), loin; guts; + ilex_F_N : N ; -- [XXXDX] :: holm-oak, great scarlet oak, tree or wood; its acorn; + iliacus_A : A ; -- [XBXES] :: colicky; + iliacus_C_N : N ; -- [XBXES] :: colic-sufferer; + ilicet_Interj : Interj ; -- [XXXCO] :: you may go/off with you; it's over; at once; [~ malam crucem => to Hell with]; + ilico_Adv : Adv ; -- [XXXDX] :: on the spot; immediately; + ilict_Adv : Adv ; -- [XXXCO] :: you may go, off with you (dismissal); it's all over/up (dismay); at once; + iligneus_A : A ; -- [XXXFS] :: oaken; of helm oak; + ilignus_A : A ; -- [XXXDX] :: of the holm-oak, great scarlet oak, or its wood; + illabor_V : V ; -- [XXXCO] :: slide/glide/flow (into), move smoothly; fall/sink (on to); + illaboro_V : V ; -- [XXXFO] :: work (at); (w/DAT); + illac_Adv : Adv ; -- [XXXDX] :: that way; + illacrimabilis_A : A ; -- [XXXDX] :: unlamented; inexorable; + illacrimo_V : V ; -- [XXXCO] :: weep over/at (with DAT); shed tears; water (eyes); + illacrimor_V : V ; -- [XXXCO] :: weep over/at (with DAT); shed tears; water (eyes); + illaesus_A : A ; -- [XXXDX] :: uninjured; inviolate; + illaetabilis_A : A ; -- [XXXDX] :: joyless; + illaqueo_V : V ; -- [XXXDX] :: take in a snare; ensnare, entangle; + illatebro_V2 : V2 ; -- [XXXFS] :: hide in a corner; + illatinismus_M_N : N ; -- [GXXEK] :: bad Latin; + illatinus_A : A ; -- [GXXEK] :: bad Latin-writing; + illatio_F_N : N ; -- [EXXCP] :: |contribution/pension; tribute/tax; offering/sacrifice; petition; offer (oath); + illatro_V : V ; -- [XPXES] :: bark; + illecebra_F_N : N ; -- [XXXDX] :: allurement, enticement, means of attraction; incitement; enticement by magic; + illecebrosus_A : A ; -- [XXXDS] :: very enticing; seductive; + illecto_V2 : V2 ; -- [XXXFO] :: entice, attract, allure; + illegalis_A : A ; -- [GXXEK] :: illegal; + illegitima_F_N : N ; -- [FLXFJ] :: female bastard; + illegitimus_M_N : N ; -- [FLXFJ] :: bastard; + illepidus_A : A ; -- [XXXDX] :: lacking grace or refinement; + illex_A : A ; -- [EXXCV] :: false, fraudulent; 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_V2 : V2 ; - illicitus_A : A ; - illico_Adv : Adv ; - illido_V2 : V2 ; - illigo_V : V ; - illim_Adv : Adv ; - illinc_Adv : Adv ; - illinio_V2 : V2 ; - illino_V2 : V2 ; - illiteratus_A : A ; - illitteratissimus_A : A ; - illo_Adv : Adv ; - illoc_Adv : Adv ; - illotus_A : A ; - illuc_Adv : Adv ; - illuceo_V : V ; - illucesco_V2 : V2 ; - illudo_V2 : V2 ; - illuminatio_F_N : N ; - illuminator_M_N : N ; - illumino_V : V ; - illumino_V2 : V2 ; - illunius_A : A ; - illusio_F_N : N ; - illusor_M_N : N ; - illusorius_A : A ; - illustre_Adv : Adv ; - illustris_A : A ; - illustro_V2 : V2 ; - illutus_A : A ; - illuvies_F_N : N ; - illyricianus_A : A ; - ilum_N_N : N ; - imaginarius_A : A ; - imaginatio_F_N : N ; - imaginativus_A : A ; - imaginor_V : V ; - imago_F_N : N ; - imaguncula_F_N : N ; - imbecillis_A : A ; - imbecillitas_F_N : N ; - imbecillus_A : A ; - imbellis_A : A ; - imber_M_N : N ; - imberbis_A : A ; - imberbus_A : A ; - imbibo_V2 : V2 ; - imbito_V2 : V2 ; - imbrex_F_N : N ; - imbrifer_A : A ; - imbuo_V2 : V2 ; - imitabilis_A : A ; - imitamen_N_N : N ; - imitamentum_N_N : N ; - imitatio_F_N : N ; - imitator_M_N : N ; - imitatrix_F_N : N ; - imito_V2 : V2 ; - imitor_V : V ; - immaculabilis_A : A ; - immaculatus_A : A ; - immadesco_V2 : V2 ; - immanis_A : A ; - immanitas_F_N : N ; - immansuetus_A : A ; - immarcescibilis_A : A ; - immaterialis_A : A ; - immaturus_A : A ; - immediatus_A : A ; - immedicabilis_A : A ; - immemor_A : A ; - immemorabilis_A : A ; - immemoratio_F_N : N ; - immemoratum_N_N : N ; - immemoratus_A : A ; - immensum_Adv : Adv ; - immensurabilis_A : A ; - immensus_A : A ; - immerens_A : A ; - immergo_V2 : V2 ; - immerito_Adv : Adv ; - immeritus_A : A ; - immersabilis_A : A ; - immetatus_A : A ; - immigratio_F_N : N ; - immigro_V : V ; - immineo_V : V ; - imminuo_V2 : V2 ; - immisceo_V : V ; - immiserabilis_A : A ; - immisericorditer_Adv : Adv ; - immisericors_A : A ; - immissarium_N_N : N ; - immissio_F_N : N ; - immistrum_N_N : N ; - immistus_A : A ; - immitis_A : A ; - immitto_V2 : V2 ; - immixtus_A : A ; - immo_Adv : Adv ; - immobilis_A : A ; - immobilitas_F_N : N ; - immobiliter_Adv : Adv ; - immoderatio_F_N : N ; - immoderatus_A : A ; - immodeste_Adv : Adv ; - immodestia_F_N : N ; - immodestus_A : A ; - immodicus_A : A ; - immodulatus_A : A ; - immolaticius_A : A ; - immolatitius_A : A ; - immolitus_A : A ; - immolo_V : V ; - immorior_V : V ; - immorsus_A : A ; - immortalifico_V : V ; - immortalis_A : A ; - immortalis_M_N : N ; - immortalitas_F_N : N ; - immotus_A : A ; - immugio_V2 : V2 ; - immulatio_F_N : N ; - immunditia_F_N : N ; - immundus_A : A ; - immunio_V2 : V2 ; - immunis_A : A ; - immunitas_F_N : N ; - immunitus_A : A ; - immunius_A : A ; - immurmuro_V : V ; - immusulus_M_N : N ; - immutabilis_A : A ; - immutatio_F_N : N ; - immutilatus_A : A ; - immuto_V : V ; - imo_Adv : Adv ; - imp_N : N ; - impacatus_A : A ; - impaciencia_F_N : N ; - impacificus_A : A ; - impages_F_N : N ; - impar_A : A ; - imparatus_A : A ; - imparilitas_F_N : N ; - impartio_V2 : V2 ; - impassibilis_A : A ; - impassibilitas_F_N : N ; - impassibiliter_Adv : Adv ; - impastus_A : A ; - impatiencia_F_N : N ; - impatiens_A : A ; - impatientia_F_N : N ; - impavidus_A : A ; - impedimentum_N_N : N ; - impedio_V2 : V2 ; - impeditus_A : A ; - impello_V2 : V2 ; - impendeo_V : V ; - impendium_N_N : N ; - impendo_V2 : V2 ; - impenetrabilis_A : A ; - impensa_F_N : N ; - impense_Adv : Adv ; - impensus_A : A ; - imperator_M_N : N ; - imperatorius_A : A ; - imperatum_N_N : N ; - imperceptibilis_A : A ; - imperceptus_A : A ; - impercussus_A : A ; - imperditus_A : A ; - imperfectio_F_N : N ; - imperfectus_A : A ; - imperfossus_A : A ; - imperialis_A : A ; - imperialismus_M_N : N ; - imperialista_M_N : N ; - imperialisticus_A : A ; - imperiosus_A : A ; - imperitia_F_N : N ; - imperito_V : V ; - imperitus_A : A ; - imperium_N_N : N ; - imperiuratus_A : A ; - impermissus_A : A ; - impermutabilis_A : A ; - impero_V : V ; - imperscrutabilis_A : A ; - impersonalis_A : A ; - imperterritus_A : A ; - impertio_V2 : V2 ; - imperturbabilis_A : A ; - imperturbatus_A : A ; - impervius_A : A ; - impetibilis_A : A ; - impetiginosus_A : A ; - impetigo_F_N : N ; - impetitio_F_N : N ; - impeto_V2 : V2 ; - impetrabilis_A : A ; - impetrio_V : V ; - impetro_V : V ; - impetus_M_N : N ; - impexus_A : A ; - impietas_F_N : N ; - impiger_A : A ; - impigre_Adv : Adv ; - impilium_N_N : N ; - impingo_V2 : V2 ; - impinguo_V : V ; - impio_V2 : V2 ; - impirius_A : A ; - impius_A : A ; - implacabilis_A : A ; - implacatus_A : A ; - implacidus_A : A ; - implacito_V : V ; - implano_V2 : V2 ; - implantatio_F_N : N ; - implanto_V2 : V2 ; - implastratio_F_N : N ; - impleo_V : V ; - implexus_A : A ; - implicatio_F_N : N ; - implicatus_A : A ; - implicite_Adv : Adv ; - implicitus_A : A ; - implico_V2 : V2 ; - imploro_V : V ; - implumis_A : A ; - impluo_V2 : V2 ; - impluvium_N_N : N ; - impoene_Adv : Adv ; - impolite_Adv : Adv ; - impolitus_A : A ; - impollutus_A : A ; - impono_V2 : V2 ; - importo_V : V ; - importunitas_F_N : N ; - importunus_A : A ; - importuosus_A : A ; - impos_A : A ; - impositio_F_N : N ; - impossibilis_A : A ; - impostor_M_N : N ; - impostus_A : A ; - impotens_A : A ; - impotentia_F_N : N ; - impraegno_V : V ; - impraesentiarum_Adv : Adv ; - impransus_A : A ; - imprecatio_F_N : N ; - imprecor_V : V ; - impressio_F_N : N ; - impressionismus_M_N : N ; - impressionista_M_N : N ; - impressorium_N_N : N ; - impressorius_A : A ; - imprimeo_V : V ; - imprimis_Adv : Adv ; - imprimo_V2 : V2 ; - imprisonamentum_N_N : N ; - imprisono_V : V ; - improbitas_F_N : N ; - improbo_V2 : V2 ; - improbulus_A : A ; - improbus_A : A ; - improcerus_A : A ; - improdictus_A : A ; - improfessus_A : A ; - impromptus_A : A ; - improperatus_A : A ; - improperium_N_N : N ; - impropero_V : V ; - improportionabilis_A : A ; - improportionabilit_Adv : Adv ; - improportionaliter_Adv : Adv ; - improportionatus_A : A ; - improprius_A : A ; - impropugnatus_A : A ; - improsper_A : A ; - improspere_Adv : Adv ; - improtectus_A : A ; - improvidentia_F_N : N ; - improvidus_A : A ; - improvisatio_F_N : N ; - improvisus_A : A ; - imprudens_A : A ; - imprudenter_Adv : Adv ; - imprudentia_F_N : N ; - impubes_A : A ; - impubis_A : A ; - impudens_A : A ; - impudenter_Adv : Adv ; - impudentia_F_N : N ; - impudicitia_F_N : N ; - impudicus_A : A ; - impugno_V : V ; - impulsio_F_N : N ; - impulsivus_A : A ; - impulsor_M_N : N ; - impulsus_M_N : N ; - impune_Adv : Adv ; - impunis_A : A ; - impunitas_F_N : N ; - impunite_Adv : Adv ; - impunitus_A : A ; - impuratus_A : A ; - impure_Adv : Adv ; - impuritas_F_N : N ; - impuritia_F_N : N ; - impurus_A : A ; - imputabilis_A : A ; - imputabilitas_F_N : N ; - imputatio_F_N : N ; - imputatus_A : A ; - imputo_V : V ; - imputribilis_A : A ; - imputribiliter_Adv : Adv ; - imus_A : A ; - in_Abl_Prep : Prep ; - in_Acc_Prep : Prep ; - ina_F_N : N ; - inabruptus_A : A ; - inabsolutus_A : A ; - inaccedendus_A : A ; - inaccensus_A : A ; - inaccessibilis_A : A ; - inaccessus_A : A ; - inadfectatus_A : A ; - inadsuetus_A : A ; - inadunatus_A : A ; - inadustus_A : A ; - inaedifico_V : V ; - inaequabilis_A : A ; - inaequabilitas_F_N : N ; - inaequabiliter_Adv : Adv ; - inaequalis_A : A ; - inaequalitas_F_N : N ; - inaequaliter_Adv : Adv ; - inaequo_V2 : V2 ; - inaestimabilis_A : A ; - inaestimatus_A : A ; - inaestuo_V : V ; - inalbesco_V : V ; - inalbo_V2 : V2 ; - inamabilis_A : A ; - inamaresco_V : V ; - inamarico_V2 : V2 ; - inambitiosus_A : A ; - inambulo_V : V ; - inamoenus_A : A ; - inane_N_N : N ; - inanilogista_M_N : N ; - inaniloquum_N_N : N ; - inaniloquus_A : A ; - inanimale_N_N : N ; - inanimans_A : A ; - inanimans_N_N : N ; - inanimatus_A : A ; - inanimentum_N_N : N ; - inanimis_A : A ; - inanimus_A : A ; - inanio_V2 : V2 ; - inanis_A : A ; - inanloquium_N_N : N ; - inaquosum_N_N : N ; - inaquosus_A : A ; - inaratus_A : A ; - inardesco_V2 : V2 ; - inargento_V2 : V2 ; - inaro_V2 : V2 ; - inartificiale_Adv : Adv ; - inartificialis_A : A ; - inaspectus_A : A ; - inassuetus_A : A ; - inattenuatus_A : A ; - inaudio_V2 : V2 ; - inauditus_A : A ; - inauguralis_A : A ; - inauguro_V : V ; - inauris_F_N : N ; - inauro_V : V ; - inauspicatus_A : A ; - inausus_A : A ; - inbecillis_A : A ; - inbecillitas_F_N : N ; - inbecillus_A : A ; - inbellis_A : A ; - inbibo_V2 : V2 ; - inbito_V2 : V2 ; - incaeduus_A : A ; - incalesco_V2 : V2 ; - incallidus_A : A ; - incandesco_V2 : V2 ; - incanesco_V2 : V2 ; - incantamen_N_N : N ; - incantamentum_N_N : N ; - incantatio_F_N : N ; - incantator_M_N : N ; - incantatrix_F_N : N ; - incanto_V : V ; - incanus_A : A ; - incapabilis_A : A ; - incapabilitas_F_N : N ; - incapacitas_F_N : N ; - incapacito_V2 : V2 ; - incapax_A : A ; - incapiabilis_A : A ; - incarceratious_A : A ; - incarceratus_A : A ; - incarceratus_M_N : N ; - incarcero_V2 : V2 ; - incardinatio_F_N : N ; - incardinatus_M_N : N ; - incardino_V2 : V2 ; - incarnatio_F_N : N ; - incarnatus_A : A ; - incarno_V2 : V2 ; - incaro_V2 : V2 ; - incassum_Adv : Adv ; - incastigatus_A : A ; - incautus_A : A ; - incedo_V2 : V2 ; - inceleber_A : A ; - incelebratus_A : A ; - incenatus_A : A ; - incendiarius_A : A ; - incendiarius_M_N : N ; - incendium_N_N : N ; - incendo_V2 : V2 ; - incensarium_N_N : N ; - incensatio_F_N : N ; - incensio_F_N : N ; - incensitus_A : A ; - incenso_V : V ; - incensor_M_N : N ; - incensorium_N_N : N ; - incensum_N_N : N ; - incensus_A : A ; - incensus_M_N : N ; - incentio_F_N : N ; - incentivus_A : A ; - incentor_M_N : N ; - inceps_Adv : Adv ; - inceptio_F_N : N ; - incepto_V : V ; - inceptum_N_N : N ; - incerno_V2 : V2 ; - incero_V2 : V2 ; - incerto_V2 : V2 ; - incertus_A : A ; - incessabilis_A : A ; - incessanter_Adv : Adv ; - incesso_V2 : V2 ; - incessus_M_N : N ; - incesto_V : V ; - incestuose_Adv : Adv ; - incestuosus_A : A ; - incestus_A : A ; - inchoamentum_N_N : N ; - inchoo_V : V ; - incidens_A : A ; - incidentalis_A : A ; - incidentaliter_Adv : Adv ; - incidenter_Adv : Adv ; - incidentia_F_N : N ; - incidentium_N_N : N ; - incido_V2 : V2 ; - inciens_A : A ; - incilis_A : A ; - incilo_V : V ; - incineratio_F_N : N ; - incinero_V : V ; - incingo_V2 : V2 ; - incino_V : V ; - incipio_V2 : V2 ; - incipisso_V : V ; - incircum_Adv : Adv ; - incircumcisio_F_N : N ; - incircumcisus_A : A ; - incircumcisus_M_N : N ; - incircumscripte_Adv : Adv ; - incircumscriptibilis_A : A ; - incircumscriptus_A : A ; - incisim_Adv : Adv ; - incisio_F_N : N ; - incitamentum_N_N : N ; - incitatio_F_N : N ; - incitatrum_N_N : N ; - incitatus_A : A ; - incito_V : V ; - incitus_A : A ; - incivilis_A : A ; - inciviliter_Adv : Adv ; - inclamito_V2 : V2 ; - inclamo_V : V ; - inclemens_A : A ; - inclementer_Adv : Adv ; - inclementia_F_N : N ; - inclinatio_F_N : N ; - inclino_V : V ; - inclinus_A : A ; - inclitus_A : A ; - includo_V2 : V2 ; - inclutus_A : A ; - inclytus_A : A ; - incogitabilis_A : A ; - incogitans_A : A ; - incogitantia_F_N : N ; - incogitatus_A : A ; - incognitus_A : A ; - incohamentum_N_N : N ; - incoho_V : V ; - incola_C_N : N ; - incolatus_A : A ; - incolatus_M_N : N ; - incolo_V : V ; - incolo_V2 : V2 ; - incolomis_A : A ; - incolumis_A : A ; - incolumitas_F_N : N ; - incomitatus_A : A ; - incommatio_F_N : N ; - incommendatus_A : A ; - incommensurabilis_A : A ; - incommode_Adv : Adv ; - incommoditas_F_N : N ; - incommodo_V : V ; - incommodum_N_N : N ; - incommodus_A : A ; - incommutabilis_A : A ; - incommutabilitas_F_N : N ; - incommutabiliter_Adv : Adv ; - incomparabilis_A : A ; - incomparabiliter_Adv : Adv ; - incompatibilis_A : A ; - incompatibilitas_F_N : N ; - incompertus_A : A ; - incompetens_A : A ; - incomposite_Adv : Adv ; - incompositus_A : A ; - incomprehensibilis_A : A ; - incomptus_A : A ; - incomtaminatus_A : A ; - inconcessus_A : A ; - inconcilio_V2 : V2 ; - inconcinnus_A : A ; - inconcussus_A : A ; - inconditus_A : A ; - inconfusibilis_A : A ; - inconfusibliter_Adv : Adv ; - inconfusus_A : A ; - incongrue_Adv : Adv ; - incongruens_A : A ; - incongruus_A : A ; - inconrupte_Adv : Adv ; - inconruptela_F_N : N ; - inconruptibilis_A : A ; - inconruptibilitas_F_N : N ; - inconruptibiliter_Adv : Adv ; - inconruptio_F_N : N ; - inconruptivus_A : A ; - inconruptorius_A : A ; - inconruptus_A : A ; - inconsequens_A : A ; - inconsequenter_Adv : Adv ; - inconsequentia_F_N : N ; - inconsiderantia_F_N : N ; - inconsideratus_A : A ; - inconstabilis_A : A ; - inconstabilitas_F_N : N ; - inconstabilitio_F_N : N ; - inconstabilitus_A : A ; - inconstans_A : A ; - inconstanter_Adv : Adv ; - inconstantia_F_N : N ; - inconsulte_Adv : Adv ; - inconsultus_A : A ; - inconsummabilis_A : A ; - inconsummatio_F_N : N ; - inconsummatus_A : A ; - inconsumptus_A : A ; - incontaminabilis_A : A ; - incontanter_Adv : Adv ; - incontentus_A : A ; - incontinens_A : A ; - inconveniens_A : A ; - inconvenienter_Adv : Adv ; - inconvenientia_F_N : N ; - incoquo_V2 : V2 ; - incorporalis_A : A ; - incorporatio_F_N : N ; - incorporeus_A : A ; - incorrectus_A : A ; - incorrigibilis_A : A ; - incorrigibilitas_F_N : N ; - incorrupte_Adv : Adv ; - incorruptela_F_N : N ; - incorruptibilis_A : A ; - incorruptibilitas_F_N : N ; - incorruptibiliter_Adv : Adv ; - incorruptio_F_N : N ; - incorruptivus_A : A ; - incorruptorius_A : A ; - incorruptus_A : A ; - incrassatus_A : A ; - incrasso_V2 : V2 ; - increbresco_V2 : V2 ; - incredibilis_A : A ; - incredulitas_F_N : N ; - incredulus_A : A ; - incrementabiliter_Adv : Adv ; - incrementum_N_N : N ; - increpatio_F_N : N ; - increpito_V : V ; - increpo_V : V ; - increpo_V2 : V2 ; - incresco_V2 : V2 ; - incruentatus_A : A ; - incruentus_A : A ; - incrusto_V2 : V2 ; - incubatio_F_N : N ; - incubito_V : V ; - incubo_V : V ; - incudo_V2 : V2 ; - inculco_V : V ; - inculpatus_A : A ; - inculte_Adv : Adv ; - incultus_A : A ; - incultus_M_N : N ; - incumberamentum_N_N : N ; - incumbero_V : V ; - incumbo_V2 : V2 ; - incumbramentum_N_N : N ; - incumbro_V : V ; - incunabulum_N_N : N ; - incunctabilis_A : A ; - incunctabiliter_Adv : Adv ; - incunctanter_Adv : Adv ; - incunctatus_A : A ; - incuratus_A : A ; - incuria_F_N : N ; - incuriose_Adv : Adv ; - incuriosus_A : A ; - incurro_V2 : V2 ; - incursio_F_N : N ; - incursito_V2 : V2 ; - incurso_V : V ; - incursus_M_N : N ; - incurvesco_V : V ; - incurvicervicus_A : A ; - incurvo_V : V ; - incurvus_A : A ; - incus_F_N : N ; - incuso_V : V ; - incustoditus_A : A ; - incutio_V2 : V2 ; - indagatio_F_N : N ; - indagator_M_N : N ; - indagatrix_F_N : N ; - indagatus_M_N : N ; - indago_F_N : N ; - indago_V2 : V2 ; - indamnatus_A : A ; - indaudio_V2 : V2 ; - inde_Adv : Adv ; - indebitus_A : A ; - indecens_A : A ; - indecenter_Adv : Adv ; - indeclinatus_A : A ; - indecor_A : A ; - indecoris_A : A ; - indecoro_V : V ; - indecorus_A : A ; - indefectibiliter_Adv : Adv ; - indefectus_A : A ; - indefensus_A : A ; - indefessus_A : A ; - indeficiens_A : A ; - indefletus_A : A ; - indeflexus_A : A ; - indejectus_A : A ; - indelebilis_A : A ; - indelibatus_A : A ; - indemnatas_F_N : N ; - indemnatus_A : A ; - indemnis_A : A ; - indemutabilis_A : A ; - indentitas_F_N : N ; - independens_A : A ; - independenter_Adv : Adv ; - independentia_F_N : N ; - indeploratus_A : A ; - indeprensus_A : A ; - indesertus_A : A ; - indesinenter_Adv : Adv ; - indestrictus_A : A ; - indetonsus_A : A ; - indevitatus_A : A ; - indevotio_F_N : N ; + illex_M_N : N ; -- [XXXCO] :: one who entices/allures; decoy; + illibatus_A : A ; -- [XXXCO] :: intact, undiminished, kept/left whole/entire; unimpaired; + illiberalis_A : A ; -- [XXXCO] :: ill-bred, ignoble, unworthy/unsuited to free man; niggardly/mean/ungenerous; + illiberalitas_F_N : N ; -- [XXXFO] :: stinginess, meanness, lack of generosity; + illiberaliter_Adv : Adv ; -- [XXXEO] :: stingily, meanly, ungenerously; in manner unworthy of free man; + illic_Adv : Adv ; -- [XXXBX] :: in that place, there, over there; + illicio_V2 : V2 ; -- [XXXDX] :: allure, entice; + illicitus_A : A ; -- [XXXDX] :: forbidden, unlawful, illicit; + illico_Adv : Adv ; -- [EXXBE] :: immediately; on the spot, in that very place; + illido_V2 : V2 ; -- [XXXBO] :: strike/beat/dash/push against/on; injure by crushing; drive (teeth into); + illigo_V : V ; -- [XXXDX] :: bind, fasten, tie up; + illim_Adv : Adv ; -- [XXXDO] :: thence, from there; from that place/source/quarter; + illinc_Adv : Adv ; -- [XXXDX] :: there, in that place, on that side; from there; + illinio_V2 : V2 ; -- [XXXCS] :: smear on; spread on; besmear; + illino_V2 : V2 ; -- [XXXDX] :: smear over; anoint; + illiteratus_A : A ; -- [XXXES] :: unlettered; illiterate; (illitteratus); + illitteratissimus_A : A ; -- [XXXDS] :: unlettered; illiterate; unwritten; + illo_Adv : Adv ; -- [XXXDX] :: there, thither, to that place/point; + illoc_Adv : Adv ; -- [XXXDO] :: there, thither, to that place/point/topic; [hoc ..~ => this way and that]; + illotus_A : A ; -- [XXXFS] :: unwashed; dirty; + illuc_Adv : Adv ; -- [XXXAX] :: there, thither, to that place/point; + illuceo_V : V ; -- [XXXEO] :: illuminate, shine on; + illucesco_V2 : V2 ; -- [XXXDX] :: begin to dawn; + illudo_V2 : V2 ; -- [XXXBX] :: mock, ridicule, speak mockingly of; fool, dupe; use for sexual pleasure; + illuminatio_F_N : N ; -- [XXXFO] :: glory, illustriousness; enlightening (Ecc); lighting/illumination; + illuminator_M_N : N ; -- [GXXEK] :: illuminator; + illumino_V : V ; -- [GXXEK] :: illuminate; color; + illumino_V2 : V2 ; -- [XXXCO] :: illuminate, give light to; light up; reveal/throw light on; brighten (w/color); + illunius_A : A ; -- [XXXDS] :: moonless; + illusio_F_N : N ; -- [DXXCS] :: irony; mocking, jeering; illusion; deceit; + illusor_M_N : N ; -- [DXXES] :: scoffer; mocker; + illusorius_A : A ; -- [DXXES] :: ironical; of a scoffer/mocking character; + illustre_Adv : Adv ; -- [XXXEO] :: with clarity; clearly, distinctly, perspicuously (L+S); + illustris_A : A ; -- [XXXBO] :: bright, shining, brilliant; clear, lucid; illustrious, distinguished, famous; + illustro_V2 : V2 ; -- [XXXBO] :: illuminate, light up; give glory; embellish; make clear, elucidate; enlighten; + illutus_A : A ; -- [XXXFS] :: unwashed; dirty; + illuvies_F_N : N ; -- [XXXDX] :: dirt, filth; filthy condition; + illyricianus_A : A ; -- [XXKDS] :: Illyrian; from Illyricum/NE Adriatic/Dalmatia/Croatia/Albania; + ilum_N_N : N ; -- [XXXDX] :: groin, private parts; area from hips to groin (pl.), loin; guts/entrails; + imaginarius_A : A ; -- [XXXEC] :: imaginary; + imaginatio_F_N : N ; -- [XXXEC] :: imagination, fancy; + imaginativus_A : A ; -- [GXXEK] :: imaginative; + imaginor_V : V ; -- [XXXEC] :: imagine, conceive, picture to oneself; + imago_F_N : N ; -- [XXXAX] :: likeness, image, appearance; statue; idea; echo; ghost, phantom; + imaguncula_F_N : N ; -- [XXXEO] :: small image; statuette; + imbecillis_A : A ; -- [XXXAO] :: weak/feeble; delicate (plant); fragile; ineffective; lacking in power/resources; + imbecillitas_F_N : N ; -- [XXXDX] :: weakness, feebleness; moral/intellectual weakness; + imbecillus_A : A ; -- [XXXAO] :: weak/feeble; delicate (plant); fragile; ineffective; lacking in power/resources; + imbellis_A : A ; -- [XXXDX] :: unwarlike; not suited or ready for war; + imber_M_N : N ; -- [XXXBO] :: rain, shower, storm; shower of liquid/snow/hail/missiles; water (in general); + imberbis_A : A ; -- [XXXDX] :: beardless; + imberbus_A : A ; -- [XXXEC] :: beardless; + imbibo_V2 : V2 ; -- [XXXCO] :: drink in, imbibe; assimilate; absorb into one's mind, conceive; + imbito_V2 : V2 ; -- [XXXFO] :: enter;; go into; + imbrex_F_N : N ; -- [XXXDX] :: tile; + imbrifer_A : A ; -- [XXXDX] :: rain-bringing, rainy; + imbuo_V2 : V2 ; -- [XXXBX] :: wet, soak, dip; give initial instruction (in); + imitabilis_A : A ; -- [XXXDX] :: that may be imitated; + imitamen_N_N : N ; -- [XXXDX] :: imitation; copy; + imitamentum_N_N : N ; -- [XXXEC] :: imitating, imitation; + imitatio_F_N : N ; -- [XXXDX] :: imitation, copy, mimicking; + imitator_M_N : N ; -- [XXXDX] :: one who imitates or copies; + imitatrix_F_N : N ; -- [XXXDX] :: female imitator; + imito_V2 : V2 ; -- [XXXDO] :: imitate/copy/mimic; follow; make an imitation/reproduction; resemble; simulate; + imitor_V : V ; -- [XXXAO] :: imitate/copy/mimic; follow; make an imitation/reproduction; resemble; simulate; + immaculabilis_A : A ; -- [DXXFS] :: that cannot be stained; unable to be stained/blemished/defiled; + immaculatus_A : A ; -- [XXXDO] :: immaculate/unstained/spotless/without blemish; undefiled/pure/chaste; blameless; + immadesco_V2 : V2 ; -- [XXXDX] :: become wet or moist; + immanis_A : A ; -- [XXXAO] :: huge/vast/immense/tremendous/extreme/monstrous; inhuman/savage/brutal/frightful; + immanitas_F_N : N ; -- [XXXCO] :: brutality, savage character, frightfulness; huge/vast size; barbarity; monster; + immansuetus_A : A ; -- [XXXDX] :: savage; + immarcescibilis_A : A ; -- [FXXEM] :: unfading; unwithering; + immaterialis_A : A ; -- [FXXEE] :: immaterial; + immaturus_A : A ; -- [XXXDX] :: unripe, immature, untimely; + immediatus_A : A ; -- [EXXEP] :: absolute (contraries), non-mediated; next; + immedicabilis_A : A ; -- [XXXDX] :: incurable; + immemor_A : A ; -- [XXXBO] :: forgetful (by nature); lacking memory; heedless (of obligations/consequences); + immemorabilis_A : A ; -- [BXXES] :: unmentionable; indescribable; + immemoratio_F_N : N ; -- [EXXFS] :: forgetfulness, unmindfulness; + immemoratum_N_N : N ; -- [XXXEW] :: things (pl.) not told/related; things not mentioned; + immemoratus_A : A ; -- [XXXEO] :: unmentioned; hitherto untold; not yet related, new (L+S); + immensum_Adv : Adv ; -- [XXXDO] :: to an enormous extent/degree; + immensurabilis_A : A ; -- [EXXFP] :: immeasurable; + immensus_A : A ; -- [XXXBO] :: immeasurable, immense/vast/boundless/unending; infinitely great; innumerable; + immerens_A : A ; -- [XXXDX] :: undeserving (of ill treatment), blameless; + immergo_V2 : V2 ; -- [XXXDX] :: dip; plunge; (se immergere (with in + acc.) = to plunge into, to insinuate; + immerito_Adv : Adv ; -- [XXXDX] :: unjustly; without cause; + immeritus_A : A ; -- [XXXBO] :: undeserving; undeserved, unmerited; + immersabilis_A : A ; -- [XXXEC] :: unsinkable, that cannot be sunk; + immetatus_A : A ; -- [XXXEC] :: unmeasured; + immigratio_F_N : N ; -- [GXXEK] :: immigration; + immigro_V : V ; -- [XXXDX] :: move (into); + immineo_V : V ; -- [XXXBX] :: threaten, be a threat (to); overhang, be imminent; with DAT; + imminuo_V2 : V2 ; -- [XXXDX] :: diminish; impair; abbreviate (Col); + immisceo_V : V ; -- [XXXDX] :: mix in, mingle; confuse; + immiserabilis_A : A ; -- [XXXEC] :: unpitied; + immisericorditer_Adv : Adv ; -- [XXXEC] :: unmercifully; + immisericors_A : A ; -- [XXXEC] :: unmerciful; + immissarium_N_N : N ; -- [FXXEK] :: reservoir; + immissio_F_N : N ; -- [XXXEO] :: insertion/engrafting, action of putting/sending in, of allowing to enter; + immistrum_N_N : N ; -- [GXXEK] :: unit (of electricity); + immistus_A : A ; -- [XXXDS] :: mixed; unmixed; (= immixtus); + immitis_A : A ; -- [XXXBX] :: cruel, rough, harsh, sour; rude, rough; severe, stern; inexorable; savage; + immitto_V2 : V2 ; -- [XXXBX] :: send in/to/into/against; cause to go; insert; hurl/throw in; let go/in; allow; + immixtus_A : A ; -- [XXXDS] :: mixed; unmixed; (vpar of immisceo = mixed; late ADJ form = unmixed); + immo_Adv : Adv ; -- [XXXBX] :: no indeed (contradiction); on the contrary, more correctly; indeed, nay more; + immobilis_A : A ; -- [XXXBO] :: |unwieldy/cumbersome; imperturbable/emotionally unmoved; steadfast; slow to act; + immobilitas_F_N : N ; -- [EXXCP] :: insensibility (is/can not be moved); firmness/constancy/steadfastness; inertia; + immobiliter_Adv : Adv ; -- [EXXEP] :: immovably, without movement; changelessly, unalterably, constantly, fixedly; + immoderatio_F_N : N ; -- [XXXEC] :: excess; + immoderatus_A : A ; -- [XXXDX] :: unlimited, immoderate, disorderly; + immodeste_Adv : Adv ; -- [XXXEC] :: extravagantly; + immodestia_F_N : N ; -- [XXXEC] :: want of restraint; + immodestus_A : A ; -- [XXXEC] :: unrestrained, extravagant; + immodicus_A : A ; -- [XXXDX] :: beyond measure, immoderate, excessive; + immodulatus_A : A ; -- [XXXEC] :: inharmonious; + immolaticius_A : A ; -- [DXXES] :: of/for a sacrifice; + immolatitius_A : A ; -- [DXXES] :: of/for a sacrifice; + immolitus_A : A ; -- [XXXEC] :: built up, erected; + immolo_V : V ; -- [XXXDX] :: sacrifice, offer (victim) in sacrifice; sprinkle with sacred meal; immolate; + immorior_V : V ; -- [XXXDX] :: die (in a particular place, position, etc) (w/DAT); + immorsus_A : A ; -- [XXXEC] :: bitten, stimulated; + immortalifico_V : V ; -- [GXXEK] :: immortalize; + immortalis_A : A ; -- [XXXBO] :: immortal, not subject to death; eternal, everlasting, perpetual; imperishable; + immortalis_M_N : N ; -- [XEXDO] :: immortal, god; + immortalitas_F_N : N ; -- [XXXCO] :: immortality; divinity, being a god; indestructibility; permanence; remembrance; + immotus_A : A ; -- [XXXDX] :: unmoved, unchanged; immovable; inflexible; + immugio_V2 : V2 ; -- [XXXDX] :: bellow; resound inwardly; roar in/on; + immulatio_F_N : N ; -- [EEXDX] :: offering; + immunditia_F_N : N ; -- [XXXDO] :: dirtiness/untidiness; foulness (moral); lust/wantonness; dirty conditions (pl.); + immundus_A : A ; -- [XXXCO] :: dirty, filthy, foul; (morally); unclean, impure; untidy/slovenly/squalid; evil; + immunio_V2 : V2 ; -- [XWXFO] :: strengthen (garrison); + immunis_A : A ; -- [XXXDX] :: free from taxes/tribute, exempt; immune; + immunitas_F_N : N ; -- [XXXDX] :: immunity, freedom from taxes; + immunitus_A : A ; -- [XXXEC] :: unfortified; unpaved; + immunius_A : A ; -- [XXXDX] :: unfortified; + immurmuro_V : V ; -- [XXXDX] :: murmur, mutter (at or to); + immusulus_M_N : N ; -- [XAXFS] :: immusul; vulture or falcon or sea-eagle; disputed in ancient times; + immutabilis_A : A ; -- [XXXCO] :: unchangeable/unalterable; (rarely) liable to be changed; + immutatio_F_N : N ; -- [XXXCO] :: change, alteration, process of changing; substitution/replacement; + immutilatus_A : A ; -- [XXXES] :: maimed; mutilated; L:unmutilated; + immuto_V : V ; -- [XXXDX] :: change, alter, transform; + imo_Adv : Adv ; -- [XXXDX] :: no indeed (contradiction); on the contrary, more correctly; indeed, nay more; + imp_N : N ; -- [XXXDX] :: emperor (abb.); general; ruler; commander (-in-chief); + impacatus_A : A ; -- [XXXDX] :: not pacified; + impaciencia_F_N : N ; -- [FXXCO] :: impatience; inability/unwillingness to endure/bear; impassivity/lack of emotion; + impacificus_A : A ; -- [DWXFS] :: not peaceful, not inclined to peace; + impages_F_N : N ; -- [XTXEO] :: crosspiece; batten (on door, etc.); framework/border around panel of door; + impar_A : A ; -- [XXXAO] :: unequal (size/number/rank/esteem); uneven, odd; inferior; not a match (for); + imparatus_A : A ; -- [XXXDX] :: not prepared; unready; + imparilitas_F_N : N ; -- [XXXFS] :: inequality; difference; + impartio_V2 : V2 ; -- [XXXDS] :: bestow, impart, give a share (of); communicate (w/DAT); (=impertio); + impassibilis_A : A ; -- [DXXES] :: passionless; incapable of passion/suffering; insensible; + impassibilitas_F_N : N ; -- [DEXES] :: incapacity for suffering, impassibility; apathy, insensibility (Def); + impassibiliter_Adv : Adv ; -- [DXXFS] :: without passion; + impastus_A : A ; -- [XXXEC] :: unfed, hungry; + impatiencia_F_N : N ; -- [FXXCO] :: impatience; inability/unwillingness to endure/bear; impassivity/lack of emotion; + impatiens_A : A ; -- [XXXBO] :: impatient/intolerant (of); not moved to action by feeling; unbearable; + impatientia_F_N : N ; -- [XXXCO] :: impatience; inability/unwillingness to endure/bear; impassivity/lack of emotion; + impavidus_A : A ; -- [XXXDX] :: fearless, intrepid; + impedimentum_N_N : N ; -- [XXXDX] :: hindrance, impediment; heavy baggage (of an army) (pl.); + impedio_V2 : V2 ; -- [XXXBX] :: hinder, impede, hamper, obstruct, prevent from (w/ne, quin, or quominus); + impeditus_A : A ; -- [XXXBO] :: hindered/obstructed/encumbered/hampered; difficult/impeded; inaccessible; + impello_V2 : V2 ; -- [XXXAO] :: drive/persuade/impel; urge on/action; push/thrust/strike against; overthrow; + impendeo_V : V ; -- [XXXBX] :: overhang, hang over; threaten; be imminent, impend; (w/DAT); + impendium_N_N : N ; -- [XXXCO] :: expense, expenditure, payment; cost, outlay; + impendo_V2 : V2 ; -- [XXXDX] :: expend, spend; devote (to); + impenetrabilis_A : A ; -- [XXXEC] :: impenetrable; + impensa_F_N : N ; -- [XXXDX] :: expense, outlay, cost; + impense_Adv : Adv ; -- [XXXDX] :: without stint; lavishly, exceedingly, greatly, very much; eagerly, zealously; + impensus_A : A ; -- [XXXDX] :: immoderate, excessive; + imperator_M_N : N ; -- [XXXAX] :: emperor; general; ruler; commander (-in-chief); + imperatorius_A : A ; -- [XXXDX] :: of/belonging to a general/commanding officer; imperial; + imperatum_N_N : N ; -- [XXXDX] :: command, order; + imperceptibilis_A : A ; -- [FXXFM] :: imperceptible; + imperceptus_A : A ; -- [XXXEC] :: unperceived; + impercussus_A : A ; -- [XXXEC] :: not struck; + imperditus_A : A ; -- [XXXEC] :: not slain; undestroyed; + imperfectio_F_N : N ; -- [DXXFS] :: imperfection; + imperfectus_A : A ; -- [XXXCO] :: unfinished, incomplete; imperfect; not complete in every respect; undigested; + imperfossus_A : A ; -- [XXXEC] :: unpierced; unstabbed; + imperialis_A : A ; -- [XXXEO] :: imperial; of the (Roman) emperor; + imperialismus_M_N : N ; -- [GXXEK] :: imperialism; + imperialista_M_N : N ; -- [GXXEK] :: imperialistic; + imperialisticus_A : A ; -- [GXXEK] :: imperialistic; + imperiosus_A : A ; -- [XXXDX] :: powerful, domineering, masterful; dictatorial, imperious; + imperitia_F_N : N ; -- [XXXDX] :: inexperience, ignorance; + imperito_V : V ; -- [XXXDX] :: command, govern; + imperitus_A : A ; -- [XXXDX] :: unskilled, inexperienced (in); unfamiliar, ignorant (of) (w/GEN); + imperium_N_N : N ; -- [XXXAX] :: command; authority; rule, supreme power; the state, the empire; + imperiuratus_A : A ; -- [XXXEC] :: by which no one swears falsely; + impermissus_A : A ; -- [XXXEC] :: forbidden; + impermutabilis_A : A ; -- [FXXFY] :: unchangeable; + impero_V : V ; -- [XXXAX] :: order, command, levy; rule (over) (w/DAT); + imperscrutabilis_A : A ; -- [DXXES] :: impenetrable; inscrutable; + impersonalis_A : A ; -- [XXXCS] :: impersonal; + imperterritus_A : A ; -- [XXXDX] :: fearless; + impertio_V2 : V2 ; -- [XXXDX] :: bestow, impart, give a share (of); communicate (w/DAT); + imperturbabilis_A : A ; -- [FXXFY] :: undisturbable; cannot be disturbed; + imperturbatus_A : A ; -- [XXXEC] :: undisturbed, calm; + impervius_A : A ; -- [XXXDX] :: impassable, not to be traversed; + impetibilis_A : A ; -- [XXXEC] :: insufferable; + impetiginosus_A : A ; -- [XBXFO] :: suffering from impetigo; (pustular skin disease, scaly skin eruption); + impetigo_F_N : N ; -- [XBXCO] :: impetigo; (pustular skin disease, scaly skin eruption); (also on bark of fig); + impetitio_F_N : N ; -- [FXXDV] :: action of attacking/assaulting/assailing; (also as legal term); + impeto_V2 : V2 ; -- [XXXEO] :: attack, assail; rush upon (L+S); accuse; + impetrabilis_A : A ; -- [XXXDX] :: easy to achieve or obtain; + impetrio_V : V ; -- [XEXDS] :: seek by auspices; + impetro_V : V ; -- [XXXBX] :: obtain/procure (by asking/request/entreaty); succeed/achieve/be granted; obtain; + impetus_M_N : N ; -- [XXXAX] :: attack, assault, charge; attempt; impetus, vigor; violent mental urge, fury; + impexus_A : A ; -- [XXXDX] :: uncombed; + impietas_F_N : N ; -- [XXXDX] :: failure in duty or respect, etc; + impiger_A : A ; -- [XXXDX] :: active, energetic; + impigre_Adv : Adv ; -- [XXXCO] :: actively, energetically,smartly; + impilium_N_N : N ; -- [GXXEK] :: sock; + impingo_V2 : V2 ; -- [XXXDX] :: thrust, strike or dash against; + impinguo_V : V ; -- [XXXES] :: fatten, make fat/sleek; become fat/thick; anoint (with oil) (Douay); + impio_V2 : V2 ; -- [XXXES] :: render impervious; stain with sin; + impirius_A : A ; -- [FXXEN] :: fiery; + impius_A : A ; -- [XXXBO] :: wicked, impious, irreverent; showing no regard for divinely imposed moral duty; + implacabilis_A : A ; -- [XXXDX] :: relentless, irreconcilable; + implacatus_A : A ; -- [XXXDX] :: not appeased, in satiable; + implacidus_A : A ; -- [XXXDX] :: restless, unquiet; + implacito_V : V ; -- [FLXFJ] :: implead; be pleaded against; + implano_V2 : V2 ; -- [EXXFS] :: deceive, delude; lead astray; + implantatio_F_N : N ; -- [EXXFE] :: implementation; implanting; putting in; + implanto_V2 : V2 ; -- [EXXFE] :: implant; put in; add; plant; establish; + implastratio_F_N : N ; -- [FTXFM] :: wall-plastering; + impleo_V : V ; -- [XXXAX] :: fill up; satisfy, fulfill; fill, finish, complete; spend (time); + implexus_A : A ; -- [XXXEC] :: involved, entwined; + implicatio_F_N : N ; -- [XXXDS] :: entanglement; interweaving; involvement; + implicatus_A : A ; -- [XXXDO] :: entangled, confused, obscure; implicated, involved; + implicite_Adv : Adv ; -- [XXXDX] :: intricately; + implicitus_A : A ; -- [XXXEO] :: entangled, confused, obscure; implicated, involved; + implico_V2 : V2 ; -- [XXXAO] :: ||||(PASS) be intimately associated/connected/related/bound; be a tangle/maze; + imploro_V : V ; -- [XXXDX] :: appeal to, invoke; beg, beseech, implore; ask for help/favor/protection; + implumis_A : A ; -- [XXXDX] :: unfledged; + impluo_V2 : V2 ; -- [XXXES] :: rain; rain upon; + impluvium_N_N : N ; -- [XXXDX] :: basin in atrium floor to receive rain-water from roof; + impoene_Adv : Adv ; -- [XXXFS] :: without punishment; safely; (= impune); + impolite_Adv : Adv ; -- [XXXEC] :: roughly, crudely; + impolitus_A : A ; -- [XXXEC] :: rough, unpolished; + impollutus_A : A ; -- [XXXEC] :: undefiled; + impono_V2 : V2 ; -- [XXXAX] :: impose, put upon; establish; inflict; assign/place in command; set; + importo_V : V ; -- [XXXDX] :: bring in, convey; import; bring about, cause; + importunitas_F_N : N ; -- [XXXDX] :: persistent lack of consideration for others; relentlessness; + importunus_A : A ; -- [XXXDX] :: inconvenient; annoying; rude; monstrous, unnatural; ruthless, cruel, hard; + importuosus_A : A ; -- [XXXDX] :: having no harbors; + impos_A : A ; -- [XXXDX] :: not in control/possession (of mind w/animi/mentis, demented); not responsible; + impositio_F_N : N ; -- [XGXFS] :: application (of name to thing); E:of hands; + impossibilis_A : A ; -- [XXXCO] :: impossible; + impostor_M_N : N ; -- [XXXES] :: deceiver; impostor; + impostus_A : A ; -- [XXXES] :: placed; set upon; (alt vpar of impono); + impotens_A : A ; -- [XXXBX] :: powerless, impotent, wild, headstrong; having no control (over), incapable (of); + impotentia_F_N : N ; -- [XXXDX] :: weakness; immoderate behavior, violence; + impraegno_V : V ; -- [EBXES] :: impregnate; make pregnant; + impraesentiarum_Adv : Adv ; -- [XXXEC] :: in present circumstances, for the present; + impransus_A : A ; -- [XXXEC] :: without breakfast, fasting; + imprecatio_F_N : N ; -- [XXXEO] :: calling down of curses; imprecation, invoking evil/divine intervention; + imprecor_V : V ; -- [XXXDX] :: call down/upon, invoke; pray for; utter curses; + impressio_F_N : N ; -- [XXXCO] :: |impression, impressed mark; mark by pressure/stamping; edition of book (Cal); + impressionismus_M_N : N ; -- [GXXEK] :: impressionism; + impressionista_M_N : N ; -- [GXXEK] :: impressionist; + impressorium_N_N : N ; -- [GXXEK] :: printing company; + impressorius_A : A ; -- [GXXEK] :: of printing; + imprimeo_V : V ; -- [GXXEK] :: print (a book); + imprimis_Adv : Adv ; -- [XXXBO] :: in the first place, first, chiefly; especially, above all, more than any other; + imprimo_V2 : V2 ; -- [XXXDX] :: impress, imprint; press upon; stamp; + imprisonamentum_N_N : N ; -- [FLXFJ] :: imprisonment; + imprisono_V : V ; -- [FLXFJ] :: imprison; + improbitas_F_N : N ; -- [XXXCO] :: wickedness unscrupulousness, dishonesty; shamelessness; want of principle; + improbo_V2 : V2 ; -- [XXXCO] :: disapprove of, express disapproval of, condemn; reject; + improbulus_A : A ; -- [XXXFO] :: somewhat audacious/impudent; somewhat wicked (Cas); + improbus_A : A ; -- [XXXAO] :: wicked/flagrant; morally unsound; greedy/rude; immoderate; disloyal; shameless; + improcerus_A : A ; -- [XXXEC] :: small, low of stature; + improdictus_A : A ; -- [XXXEC] :: not postponed; + improfessus_A : A ; -- [XXXFS] :: unprofessed; undeclared; + impromptus_A : A ; -- [XXXEC] :: not ready; + improperatus_A : A ; -- [XXXEC] :: somewhat hurried, slow; + improperium_N_N : N ; -- [DEXDS] :: taunt; insulting reproach (Def); bitterly sarcastic remark; + impropero_V : V ; -- [XXXFS] :: hasten into, enter hastily; + improportionabilis_A : A ; -- [FXXFF] :: unproportionate, not proportionate, out of proportion, disproportionate; + improportionabilit_Adv : Adv ; -- [FXXFF] :: not proportionally, out of proportion; + improportionaliter_Adv : Adv ; -- [FXXFF] :: not proportionally, out of proportion; + improportionatus_A : A ; -- [FXXEF] :: unproportionate, not proportionate, out of proportion, disproportionate; + improprius_A : A ; -- [DXXES] :: unsuitable; inappropriate; + impropugnatus_A : A ; -- [XWXFS] :: undefended; + improsper_A : A ; -- [XXXEC] :: unfortunate; + improspere_Adv : Adv ; -- [XXXEC] :: unfortunately; + improtectus_A : A ; -- [DXXFS] :: undefended; unprotected; + improvidentia_F_N : N ; -- [DXXES] :: improvidence; lack of foresight; + improvidus_A : A ; -- [XXXDX] :: improvident; thoughtless; unwary; + improvisatio_F_N : N ; -- [GXXEK] :: improvisation; + improvisus_A : A ; -- [XXXBO] :: unforeseen/unexpected; [de improviso => unexpectedly/suddenly, without warning]; + imprudens_A : A ; -- [XXXBO] :: ignorant; unaware; unintentional, unsuspecting; foolish/incautious/unthinking; + imprudenter_Adv : Adv ; -- [XXXCO] :: rashly, unwisely; carelessly, unmindfully; unintentionally, without design; + imprudentia_F_N : N ; -- [XXXCO] :: ignorance; lack of knowledge/thought/awareness/judgment/foresight/intention; + impubes_A : A ; -- [XXXCO] :: below age of puberty, under age, youthful; beardless; chaste/virgin/celibate; + impubis_A : A ; -- [XXXCO] :: below age of puberty, under age, youthful; beardless; chaste/virgin/celibate; + impudens_A : A ; -- [XXXDX] :: shameless, impudent; + impudenter_Adv : Adv ; -- [XXXDX] :: shamelessly, impudently; + impudentia_F_N : N ; -- [XXXDX] :: shamelessness; effrontery; + impudicitia_F_N : N ; -- [XXXDX] :: sexual impurity (often of homosexuality); + impudicus_A : A ; -- [XXXDX] :: shameless; unchaste; flaunting accepted sexual code; + impugno_V : V ; -- [XXXDX] :: fight against, attack, assail; + impulsio_F_N : N ; -- [XXXDS] :: external pressure; influence; incitement; + impulsivus_A : A ; -- [GXXEK] :: impulsive; + impulsor_M_N : N ; -- [XXXDX] :: instigator; + impulsus_M_N : N ; -- [XXXDX] :: shock, impact; incitement; + impune_Adv : Adv ; -- [XXXCO] :: with impunity; without punishment/retribution/restraint/consequences/harm; + impunis_A : A ; -- [XXXFO] :: unpunished; + impunitas_F_N : N ; -- [XXXDX] :: impunity; freedom from punishment; safety; + impunite_Adv : Adv ; -- [XXXDX] :: with impunity; without punishment/restraint; safely, unharmed; freely; + impunitus_A : A ; -- [XXXDX] :: unpunished, unrestrained, unbridled; safe, secure, free from danger; + impuratus_A : A ; -- [XXXEC] :: vile, infamous; + impure_Adv : Adv ; -- [XXXDX] :: basely, shamefully, vilely, infamously; impurely; + impuritas_F_N : N ; -- [XXXFO] :: impurity; foulness; + impuritia_F_N : N ; -- [XXXFO] :: impurity; foulness; + impurus_A : A ; -- [XXXDX] :: unclean, filthy, foul; impure; morally foul; + imputabilis_A : A ; -- [XXXEE] :: imputable; attributable, ascribable; blameworthy, reprehensible, culpable; + imputabilitas_F_N : N ; -- [XXXFE] :: imputability; responsibility; culpability; + imputatio_F_N : N ; -- [XXXFO] :: entry in account; charge, accusation (Ecc); + imputatus_A : A ; -- [XXXEO] :: untrimmed; unpruned; + imputo_V : V ; -- [XXXAO] :: |claim credit/recompense for; make a favor a cause for obligation; + imputribilis_A : A ; -- [DXXES] :: incorruptible, not liable to decay; + imputribiliter_Adv : Adv ; -- [DXXFS] :: incorruptibly; + imus_A : A ; -- [XXXDX] :: inmost, deepest, bottommost, last; (inferus); [~ vox => highest treble]; + in_Abl_Prep : Prep ; -- [XXXAX] :: in, on, at (space); in accordance with/regard to/the case of; within (time); + in_Acc_Prep : Prep ; -- [XXXAX] :: into; about, in the mist of; according to, after (manner); for; to, among; + ina_F_N : N ; -- [XXXEO] :: fiber; sinew, tendon; strip; papyrus/paper fiber; + inabruptus_A : A ; -- [XXXFO] :: unbroken; not broken off (L+S); + inabsolutus_A : A ; -- [XXXFO] :: unfinished; incomplete; imperfect; + inaccedendus_A : A ; -- [DXXFS] :: inaccessible; + inaccensus_A : A ; -- [XXXFO] :: unkindled, spontaneous, not kindled; P:not inflamed (L+S); + inaccessibilis_A : A ; -- [DXXES] :: inaccessible; unapproachable; not approached by any rival; + inaccessus_A : A ; -- [XXXDO] :: inaccessible; unapproachable; not approached by any rival; + inadfectatus_A : A ; -- [XXXEC] :: natural, unaffected; + inadsuetus_A : A ; -- [XXXEC] :: unaccustomed; + inadunatus_A : A ; -- [FDXEX] :: disunited; disjointed (from medieval aduno, to unite); + inadustus_A : A ; -- [XXXEC] :: unsinged; not scorched; + inaedifico_V : V ; -- [XXXDX] :: build (in a place); wall up; + inaequabilis_A : A ; -- [XXXCO] :: uneven/broken (ground); unequal/varying in amount/rate/etc; + inaequabilitas_F_N : N ; -- [XXXEO] :: lack of uniformity; irregularity; + inaequabiliter_Adv : Adv ; -- [XXXEO] :: unevenly; without regularity or uniformity; + inaequalis_A : A ; -- [XXXBO] :: uneven; unequal; not smooth/level (surface); irregular (shape); patchy/variable; + inaequalitas_F_N : N ; -- [XXXCO] :: irregularity of shape/distribution; patchiness/unevenness; inequality; inequity; + inaequaliter_Adv : Adv ; -- [XXXCO] :: unevenly, w/irregular outline/distribution; unequally; w/disparity of treatment; + inaequo_V2 : V2 ; -- [XXXEO] :: make equal; make level; make even (L_S); + inaestimabilis_A : A ; -- [XXXDX] :: |undeserving of valuation (phil.); not to be judged, unaccountable; valueless; + inaestimatus_A : A ; -- [XLXFS] :: not rated; untaxed; + inaestuo_V : V ; -- [XXXES] :: rage; + inalbesco_V : V ; -- [XXXES] :: become pale; + inalbo_V2 : V2 ; -- [XXXDS] :: whiten; brighten; + inamabilis_A : A ; -- [XXXDX] :: disagreeable, unattractive; + inamaresco_V : V ; -- [XXXFO] :: become bitter/distasteful;; + inamarico_V2 : V2 ; -- [DXXFS] :: embitter; + inambitiosus_A : A ; -- [XXXEC] :: unpretentious; + inambulo_V : V ; -- [XXXDX] :: walk up and down; + inamoenus_A : A ; -- [XXXDX] :: cheerless; disagreeable; unlovely; + inane_N_N : N ; -- [XXXDX] :: empty space/expanse/part of structure, hollow, void; space devoid of matter; + inanilogista_M_N : N ; -- [BXXFO] :: blabberer, one that talks nonsense; + inaniloquum_N_N : N ; -- [EXXFS] :: vain-talking, that talks in vain; that blabbers/talks nonsense; + inaniloquus_A : A ; -- [BXXFS] :: vain-talking; + inanimale_N_N : N ; -- [XXXEO] :: lifeless/inanimate things (pl.); + inanimans_A : A ; -- [DXXFS] :: lifeless, inanimate; without/deprived of/not endowed with breath; + inanimans_N_N : N ; -- [XXXEO] :: lifeless/inanimate things (pl.); + inanimatus_A : A ; -- [DXXDS] :: lifeless, inanimate; without/deprived of/not endowed with breath; + inanimentum_N_N : N ; -- [BXXFO] :: emptiness; + inanimis_A : A ; -- [XXXIO] :: |filled with life; (from Greek); + inanimus_A : A ; -- [XXXCO] :: lifeless, inanimate; without/deprived of/not endowed with breath; + inanio_V2 : V2 ; -- [XXXDX] :: empty; + inanis_A : A ; -- [XXXAX] :: void, empty, hollow; vain; inane, foolish; + inanloquium_N_N : N ; -- [FXXEE] :: vain talk; + inaquosum_N_N : N ; -- [DXXFS] :: arid/desert/dry places (pl.); + inaquosus_A : A ; -- [DXXES] :: arid, dry, lacking water; + inaratus_A : A ; -- [XXXDX] :: unplowed, untilled; + inardesco_V2 : V2 ; -- [XXXDX] :: kindle, take fire; become glowing; + inargento_V2 : V2 ; -- [XXXES] :: overlay with silver; + inaro_V2 : V2 ; -- [XXXES] :: plow in; cultivate; + inartificiale_Adv : Adv ; -- [XXXDS] :: inartificially; not by rule; + inartificialis_A : A ; -- [DXXDS] :: inartificial; not according to rule/principles of art; made without skill; + inaspectus_A : A ; -- [XXXFS] :: unseen; + inassuetus_A : A ; -- [XXXDX] :: unaccustomed; + inattenuatus_A : A ; -- [XXXEC] :: undiminished, unimpaired; + inaudio_V2 : V2 ; -- [XXXES] :: hear of; learn; + inauditus_A : A ; -- [XXXDX] :: unheard (of ), novel, new; + inauguralis_A : A ; -- [GXXEK] :: inaugural; + inauguro_V : V ; -- [XXXDX] :: take omens by the flight of birds; consecrate by augury; + inauris_F_N : N ; -- [XXXDO] :: ear rings (pl.); ornaments worn in ears; ear drops (L+S); nose ring (Souter); + inauro_V : V ; -- [XXXDX] :: gild, make rich; + inauspicatus_A : A ; -- [XXXEC] :: without auspices; + inausus_A : A ; -- [XXXDX] :: not ventured, unattempted, undared; + inbecillis_A : A ; -- [XXXAO] :: weak/feeble; delicate (plant); fragile; ineffective; lacking in power/resources; + inbecillitas_F_N : N ; -- [XXXDX] :: weakness, feebleness; moral/intellectual weakness; + inbecillus_A : A ; -- [XXXAO] :: weak/feeble; delicate (plant); fragile; ineffective; lacking in power/resources; + inbellis_A : A ; -- [XXXDX] :: unwarlike, peaceful, unfit for war; + inbibo_V2 : V2 ; -- [XXXCO] :: drink in, imbibe; assimilate; absorb into one's mind, conceive; + inbito_V2 : V2 ; -- [XXXFO] :: enter;; go into; + incaeduus_A : A ; -- [XXXDX] :: not felled, not cut down (of woods); + incalesco_V2 : V2 ; -- [XXXDX] :: grow hot; become heated; + incallidus_A : A ; -- [XXXDX] :: not shrewd, simple; + incandesco_V2 : V2 ; -- [XXXDX] :: grow warm, be heated, glow, become red-hot; + incanesco_V2 : V2 ; -- [XXXDX] :: turn gray or hoary; + incantamen_N_N : N ; -- [FEXFL] :: charm; + incantamentum_N_N : N ; -- [XDXDS] :: charm; spell; + incantatio_F_N : N ; -- [DEXCS] :: enchantment; spell; incantation (Def); (false) statement (Souter); + incantator_M_N : N ; -- [DEXES] :: enchanter, wizard; magician, soothsayer (Souter); + incantatrix_F_N : N ; -- [FEXEL] :: enchantress; witch; + incanto_V : V ; -- [XXXDS] :: sing; say over; consecrate with spells; + incanus_A : A ; -- [XXXDX] :: quite gray, hoary; + incapabilis_A : A ; -- [EEXES] :: incomprehensible; that cannot be taken in (Latham); + incapabilitas_F_N : N ; -- [EEXES] :: incomprehensibility; inconceivability; + incapacitas_F_N : N ; -- [FXXEM] :: incapacity; disqualification; + incapacito_V2 : V2 ; -- [XXXFO] :: bridle; put a halter on; halter, muzzle (L+S); fetter, entangle; make ass of; + incapax_A : A ; -- [DXXES] :: incapable; indestructible; indissoluble; + incapiabilis_A : A ; -- [FXXEM] :: impregnable; + incarceratious_A : A ; -- [FXXEM] :: incarceration; imprisonment; shutting up in prison, jailing; + incarceratus_A : A ; -- [FXXEF] :: imprisoned, incarcerated, confined, shut up in prison, jailed; + incarceratus_M_N : N ; -- [FXXEM] :: prisoner; + incarcero_V2 : V2 ; -- [FXXDF] :: imprison, incarcerate, confine, shut up in prison, jail; + incardinatio_F_N : N ; -- [FEXFE] :: incardination; incorporating clergyman into diocese/church; raise to cardinal; + incardinatus_M_N : N ; -- [FEXFQ] :: incardinatus, one (clergy) who has right to succeed to a church; + incardino_V2 : V2 ; -- [FEXEE] :: incardinate; become member of diocese (clergy); raise to cardinal; + incarnatio_F_N : N ; -- [DEXCF] :: incarnation, embodiment; union of divine and human in Christ; + incarnatus_A : A ; -- [DEXCE] :: incarnate; flesh-like/flesh-colored (Cal); + incarno_V2 : V2 ; -- [EEXCS] :: make incarnate, make into flesh; (PASS) be made flesh, become incarnate; + incaro_V2 : V2 ; -- [EEXFE] :: make incarnate, make into flesh; (PASS) be made flesh, become incarnate; + incassum_Adv : Adv ; -- [XXXCS] :: in vain; uselessly; without aim/purpose/effect; to no purpose; + incastigatus_A : A ; -- [XXXEC] :: unchastised; + incautus_A : A ; -- [XXXES] :: incautious; unexpected; + incedo_V2 : V2 ; -- [XXXBX] :: advance, march; approach; step, walk, march along; + inceleber_A : A ; -- [DXXES] :: not celebrated; not famous; + incelebratus_A : A ; -- [XXXDX] :: unrecorded; + incenatus_A : A ; -- [XXXEO] :: without dinner, dinerless; not having dined; without having supped (Erasmus); + incendiarius_A : A ; -- [XXXNS] :: fire-, fire-raising, incendiary; [~ avis => firebird]; + incendiarius_M_N : N ; -- [XXXEO] :: arsonist; fire-raiser; incendiary; + incendium_N_N : N ; -- [XXXBO] :: |incendiary missile; meteor; P:flames (pl.); [annonae ~ => high price of grain]; + incendo_V2 : V2 ; -- [XXXAO] :: ||inspire, fire, rouse, excite, inflame; provoke, incense, aggravate; + incensarium_N_N : N ; -- [EEXDE] :: censer, vessel in which incense is burnt; thurible; + incensatio_F_N : N ; -- [EEXFS] :: instrument playing; X:enchantment; E:incensing, perfuming with incense (Ecc); + incensio_F_N : N ; -- [XXXEO] :: firing, burning, igniting, act of setting on fire; + incensitus_A : A ; -- [DLXFS] :: unassessed, not assessed; unregistered, not registered/enrolled in census; + incenso_V : V ; -- [EXXEP] :: burn incense; + incensor_M_N : N ; -- [XXXEO] :: one who kindles/sets fire to/lights beacons (L+S); inciter, instigator; + incensorium_N_N : N ; -- [EEXDE] :: censer, vessel in which incense is burnt; thurible; + incensum_N_N : N ; -- [EEXDP] :: incense; sacrifice (w/incense/burning victims); lighting (L+S); setting fire; + incensus_A : A ; -- [XLXEO] :: unassessed, not assessed; unregistered, not registered/enrolled in census; + incensus_M_N : N ; -- [EEXEP] :: incense; fire; + incentio_F_N : N ; -- [EDXFS] :: instrument playing; X:enchantment; + incentivus_A : A ; -- [XDXFO] :: playing the tune; (of the right-hand tube in pair of pipes - other modulates); + incentor_M_N : N ; -- [XXXCS] :: precentor/choir director; leads congregation singing; starts/sets tune; inciter; + inceps_Adv : Adv ; -- [XXXFO] :: subsequently; thereafter; + inceptio_F_N : N ; -- [XXXDO] :: start, beginning; undertaking, enterprise; + incepto_V : V ; -- [XXXDS] :: begin; undertake; attempt; + inceptum_N_N : N ; -- [XXXDX] :: beginning, undertaking; + incerno_V2 : V2 ; -- [XXXES] :: sift; scatter with sieve; + incero_V2 : V2 ; -- [XXXES] :: smear over; E:attach wax tablet to; + incerto_V2 : V2 ; -- [XXXES] :: render uncertain; + incertus_A : A ; -- [XXXAX] :: uncertain; unsure, inconstant, variable; doubtful; + incessabilis_A : A ; -- [DXXES] :: incessant, unceasing; + incessanter_Adv : Adv ; -- [DXXES] :: incessantly, unceasingly; + incesso_V2 : V2 ; -- [XXXDX] :: assault, attack; reproach, abuse; + incessus_M_N : N ; -- [XXXDX] :: walking; advance; procession; + incesto_V : V ; -- [XXXDX] :: pollute, defile; + incestuose_Adv : Adv ; -- [FXXFM] :: incestuously; lewdly; + incestuosus_A : A ; -- [XSXES] :: incestuous; lewd; + incestus_A : A ; -- [XXXDX] :: unchaste; unholy, unclean, religiously impure, polluted, defiled, sinful, lewd; + inchoamentum_N_N : N ; -- [XXXES] :: starting place; first principles (pl.); rudiments; elements; + inchoo_V : V ; -- [XXXAO] :: begin/start (work); set going, establish; draft/sketch/outline; enter upon; + incidens_A : A ; -- [FXXDE] :: incidental; + incidentalis_A : A ; -- [FXXEM] :: incidental, secondary; + incidentaliter_Adv : Adv ; -- [FXXFM] :: incidental; + incidenter_Adv : Adv ; -- [FXXEE] :: incidentally; + incidentia_F_N : N ; -- [FSXDM] :: incident/occurrence/happening; incidence (light ray); appurtenance; + incidentium_N_N : N ; -- [FSXDM] :: incidents/occurrences (pl.); remarks/observations; matters involved; + incido_V2 : V2 ; -- [XXXBX] :: |cut into, cut open; inscribe, engrave inscription; break off; + inciens_A : A ; -- [XXXES] :: pregnant; with young; + incilis_A : A ; -- [XXXEC] :: ditch, trench; + incilo_V : V ; -- [XXXEC] :: blame, scold; + incineratio_F_N : N ; -- [GXXEK] :: incineration; + incinero_V : V ; -- [FXXFM] :: burn to ashes; + incingo_V2 : V2 ; -- [XXXDX] :: gird (with); wrap (tightly) round (with); + incino_V : V ; -- [XXXEC] :: sing; + incipio_V2 : V2 ; -- [XXXAX] :: begin; start, undertake; + incipisso_V : V ; -- [BXXES] :: begin; (archaic form of incipio); + incircum_Adv : Adv ; -- [XXXFS] :: round about; (L+S calls it PREP); + incircumcisio_F_N : N ; -- [EEXFP] :: absence of circumcision; + incircumcisus_A : A ; -- [EEXDS] :: uncircumcised; w/foreskin intact (Souter); uncorrected/uncleansed; sinning; + incircumcisus_M_N : N ; -- [EEXEP] :: uncircumcised male, one w/foreskin intact; (still) a sinner; + incircumscripte_Adv : Adv ; -- [FXXFF] :: without limitation; infinitely; incomprehensibly; + incircumscriptibilis_A : A ; -- [FSXEF] :: boundless/infinite; incapable of being limited/circumscribed/measured/deceived; + incircumscriptus_A : A ; -- [FSXDF] :: infinite, boundless; uncircumscribed; incomprehensible, unfathomable; + incisim_Adv : Adv ; -- [XXXEC] :: in short clauses; + incisio_F_N : N ; -- [XXXEX] :: clause (Collins); + incitamentum_N_N : N ; -- [XXXDX] :: incentive, stimulus; + incitatio_F_N : N ; -- [XXXDX] :: ardor, enthusiasm; + incitatrum_N_N : N ; -- [GTXEK] :: starter; + incitatus_A : A ; -- [XXXDX] :: fast-moving, aroused, passionate; [equo incitato => at full gallop]; + incito_V : V ; -- [XXXDX] :: enrage; urge on; inspire; arouse; + incitus_A : A ; -- [XXXDX] :: rushing, headlong; + incivilis_A : A ; -- [XXXES] :: impolite; uncivil; + inciviliter_Adv : Adv ; -- [XXXES] :: discourteously; + inclamito_V2 : V2 ; -- [BXXFS] :: abuse; scold; + inclamo_V : V ; -- [XXXDX] :: cry out (to), call upon; abuse, revile; + inclemens_A : A ; -- [XXXDX] :: harsh; + inclementer_Adv : Adv ; -- [XXXDX] :: harshly, severely; + inclementia_F_N : N ; -- [XXXDX] :: harshness; + inclinatio_F_N : N ; -- [XXXDX] :: act of leaning, tendency, inclination; + inclino_V : V ; -- [XXXBX] :: bend; lower; incline; decay; grow worse; set (of the sun); deject; + inclinus_A : A ; -- [EXXFW] :: leaning; (Douay); + inclitus_A : A ; -- [XXXDX] :: celebrated, renowned, famous, illustrious, glorious; + includo_V2 : V2 ; -- [XXXBX] :: shut up/in, imprison, enclose; include; + inclutus_A : A ; -- [XXXDX] :: celebrated, renowned, famous, illustrious, glorious; + inclytus_A : A ; -- [XXXBX] :: celebrated, renowned, famous, illustrious, glorious; + incogitabilis_A : A ; -- [XXXES] :: inconsiderate; inconceivable; + incogitans_A : A ; -- [XXXEC] :: inconsiderate, thoughtless; + incogitantia_F_N : N ; -- [XXXEC] :: thoughtlessness; + incogitatus_A : A ; -- [XXXEC] :: unstudied (passive); inconsiderate (active); + incognitus_A : A ; -- [XXXDX] :: unknown; not known; untried, untested; + incohamentum_N_N : N ; -- [XXXES] :: starting place; first principles (pl.); rudiments; elements; + incoho_V : V ; -- [BXXAO] :: begin/start (work); set going, establish; draft/sketch/outline; enter upon; + incola_C_N : N ; -- [XXXDX] :: inhabitant; resident, dweller; resident alien; foreigner (Plater); + incolatus_A : A ; -- [EXXFP] :: unfiltered, unstrained; unpurified; + incolatus_M_N : N ; -- [XXXIO] :: residence (in a town) without citizenship; status of resident alien; (exile?); + incolo_V : V ; -- [EXXEP] :: live, dwell/reside (in); inhabit; sojourn; + incolo_V2 : V2 ; -- [XXXCO] :: live, dwell/reside (in); inhabit; sojourn; + incolomis_A : A ; -- [FXXFM] :: unharmed, uninjured; alive, safe; unimpaired; (= incolumis); + incolumis_A : A ; -- [XXXBX] :: unharmed, uninjured; alive, safe; unimpaired; + incolumitas_F_N : N ; -- [XXXDX] :: safety; + incomitatus_A : A ; -- [XXXDX] :: unaccompanied; + incommatio_F_N : N ; -- [FEXEE] :: imperfect state; + incommendatus_A : A ; -- [XXXEC] :: not entrusted; without protector; + incommensurabilis_A : A ; -- [EXXEP] :: immeasurable; + incommode_Adv : Adv ; -- [XXXDX] :: disastrously, unfortunately; + incommoditas_F_N : N ; -- [XXXCO] :: disadvantage, inconvenience, importunity; importunity; misfortune; + incommodo_V : V ; -- [XXXCO] :: inconvenience, obstruct, hinder; be inconvenient/troublesome, cause difficulty; + incommodum_N_N : N ; -- [XXXBO] :: disadvantage, inconvenience, setback, harm, detriment; defeat/disaster; ailment; + incommodus_A : A ; -- [XXXBO] :: inconvenient, troublesome, annoying; disadvantageous; disagreeable; disobliging; + incommutabilis_A : A ; -- [XXXEO] :: unchangeable; immutable; + incommutabilitas_F_N : N ; -- [EXXFP] :: unchangeableness; + incommutabiliter_Adv : Adv ; -- [EXXEP] :: without change; + incomparabilis_A : A ; -- [XXXES] :: incomparable; cannot be equaled; + incomparabiliter_Adv : Adv ; -- [XXXFS] :: incomparably; + incompatibilis_A : A ; -- [GXXEK] :: incompatible; + incompatibilitas_F_N : N ; -- [GXXEK] :: incompatibility; + incompertus_A : A ; -- [XXXDX] :: not known; + incompetens_A : A ; -- [EXXES] :: insufficient; + incomposite_Adv : Adv ; -- [XXXDX] :: in a clumsy/disorganized manner; awkwardly; irregularly; + incompositus_A : A ; -- [XXXDX] :: clumsy, disorganized, not in formation (troops); (good) unaffected, neutral; + incomprehensibilis_A : A ; -- [DXXDS] :: incomprehensible, inconceivable; endless; that cannot be overtaken; + incomptus_A : A ; -- [XXXDX] :: disheveled; untidy; unpolished; + incomtaminatus_A : A ; -- [XXXEC] :: unpolluted; + inconcessus_A : A ; -- [XXXDX] :: forbidden; + inconcilio_V2 : V2 ; -- [XXXES] :: win over by trickery; embarrass; + inconcinnus_A : A ; -- [XXXDX] :: awkward; clumsy; + inconcussus_A : A ; -- [XXXEC] :: unshaken, firm; + inconditus_A : A ; -- [XXXDX] :: rough, crude; uncivilized; disordered, not disciplined; + inconfusibilis_A : A ; -- [EXXES] :: that cannot be embarrassed/abashed/confused; that cannot be mingled (Souter); + inconfusibliter_Adv : Adv ; -- [EXXFS] :: without confusion/embarrassment; + inconfusus_A : A ; -- [XXXEO] :: undismayed; not disconcerted; not embarrassed (L+S); unconfused; + incongrue_Adv : Adv ; -- [DXXFS] :: unsuitably; inconsistently; + incongruens_A : A ; -- [XXXEC] :: inconsistent, not in accord, not agreeing; + incongruus_A : A ; -- [DXXES] :: inconsistent; incongruous; unsuitable; + inconrupte_Adv : Adv ; -- [XXXEO] :: honestly, uprightly, without being influenced by bribes; correctly/faultlessly; + inconruptela_F_N : N ; -- [EEXDS] :: incorruptibility, imperishability; + inconruptibilis_A : A ; -- [EEXES] :: incorruptible, imperishable; + inconruptibilitas_F_N : N ; -- [EEXES] :: incorruptibility, imperishability; + inconruptibiliter_Adv : Adv ; -- [EEXFS] :: incorruptibly, imperishably; + inconruptio_F_N : N ; -- [EEXES] :: incorruptibility, imperishability; + inconruptivus_A : A ; -- [EEXFS] :: incorruptible, imperishable; + inconruptorius_A : A ; -- [EEXFS] :: incorruptible, imperishable; + inconruptus_A : A ; -- [XXXBO] :: intact, uncorrupted, unspoiled/untainted; genuine; pure; chaste; imperishable; + inconsequens_A : A ; -- [EXXES] :: inconsequent; not logically connected; + inconsequenter_Adv : Adv ; -- [EXXES] :: inconsequentially; illogically; + inconsequentia_F_N : N ; -- [DGXES] :: inconsequence; lack of logical connection; + inconsiderantia_F_N : N ; -- [XXXES] :: inconsideration; + inconsideratus_A : A ; -- [XXXEC] :: thoughtless, inconsiderate; unadvised, reckless (passive); + inconstabilis_A : A ; -- [EXXFP] :: unreliable; + inconstabilitas_F_N : N ; -- [EXXFP] :: helplessness; + inconstabilitio_F_N : N ; -- [EXXFS] :: not standing firmly; trembling (Souter); indecision (Vulgate); + inconstabilitus_A : A ; -- [EXXFP] :: unstable; + inconstans_A : A ; -- [XXXDX] :: changeable, fickle; + inconstanter_Adv : Adv ; -- [XXXDX] :: irregularly, inconsistently, capriciously, irresolutely; not evenly/steadily; + inconstantia_F_N : N ; -- [XXXDX] :: changeableness fickleness; + inconsulte_Adv : Adv ; -- [XXXDX] :: rashly, ill-advisedly, incautiously; without due care and consideration; + inconsultus_A : A ; -- [XXXDX] :: rash, ill-advised, thoughtless, injudicious; unconsulted, not asked; + inconsummabilis_A : A ; -- [EEXFM] :: incompleteable, impossible of completion; + inconsummatio_F_N : N ; -- [FEXFE] :: nonconsumation; incompleteness; + inconsummatus_A : A ; -- [FEXEM] :: incomplete; + inconsumptus_A : A ; -- [XXXEC] :: unconsumed, undiminished; + incontaminabilis_A : A ; -- [EXXES] :: undefileable; + incontanter_Adv : Adv ; -- [GXXET] :: without hesitation/hesitating; (Erasmus); + incontentus_A : A ; -- [XXXEC] :: not stretched; untuned; + incontinens_A : A ; -- [XXXDX] :: intemperate; + inconveniens_A : A ; -- [XXXEC] :: not suiting, dissimilar; + inconvenienter_Adv : Adv ; -- [DXXES] :: unsuitably; ill-matchedly; inconveniently; + inconvenientia_F_N : N ; -- [XXXFS] :: inconsistency; + incoquo_V2 : V2 ; -- [XXXDX] :: boil in or down; boil; + incorporalis_A : A ; -- [XXXDO] :: incorporeal; intangible; immaterial; not having body/substance; unearthly; + incorporatio_F_N : N ; -- [DXXDS] :: incorporating, embodying; incorporation (w/public funds); paying into treasury; + incorporeus_A : A ; -- [FXXEX] :: incorporeal; intangible; immaterial; not having body/substance; unearthly; + incorrectus_A : A ; -- [XXXEC] :: unamended, unimproved; + incorrigibilis_A : A ; -- [FXXDM] :: incorrigible; + incorrigibilitas_F_N : N ; -- [FXXEM] :: incorrigibility; + incorrupte_Adv : Adv ; -- [XXXEO] :: honestly, uprightly, without being influenced by bribes; correctly/faultlessly; + incorruptela_F_N : N ; -- [EEXDS] :: incorruptibility, imperishability; + incorruptibilis_A : A ; -- [EEXES] :: incorruptible, imperishable; + incorruptibilitas_F_N : N ; -- [EEXES] :: incorruptibility, imperishability; + incorruptibiliter_Adv : Adv ; -- [EEXFS] :: incorruptibly, imperishably; + incorruptio_F_N : N ; -- [EEXES] :: incorruptibility, imperishability; + incorruptivus_A : A ; -- [EEXFS] :: incorruptible, imperishable; + incorruptorius_A : A ; -- [EEXFS] :: incorruptible, imperishable; + incorruptus_A : A ; -- [XXXBO] :: intact, uncorrupted, unspoiled/untainted; genuine; pure; chaste; imperishable; + incrassatus_A : A ; -- [DXXFS] :: fattened; + incrasso_V2 : V2 ; -- [DXXEF] :: fatten; make thick/stout; + increbresco_V2 : V2 ; -- [XXXDX] :: become stronger or more intense; spread; + incredibilis_A : A ; -- [XXXBX] :: incredible; extraordinary; + incredulitas_F_N : N ; -- [XXXFO] :: disbelief, incredulity; unbelief (Christian sense) (Souter); + incredulus_A : A ; -- [XXXDX] :: unbelieving, disbelieving, incredulous; disobedient; + incrementabiliter_Adv : Adv ; -- [FXXEN] :: increasingly; + incrementum_N_N : N ; -- [XXXDX] :: growth, development, increase; germ (of idea); offshoot; advancement (rank); + increpatio_F_N : N ; -- [DXXCF] :: rebuke; chiding; reproof; + increpito_V : V ; -- [XXXDX] :: chide, utter (noisy) reproaches at; + increpo_V : V ; -- [XXXBO] :: rattle, snap, clash, roar, twang, make noise; (alarm/danger); strike noisily; + increpo_V2 : V2 ; -- [XXXBO] :: rebuke, chide, reprove; protest at/indignantly, complain loudly/scornfully; + incresco_V2 : V2 ; -- [XXXDX] :: grow (in or upon); grow, swell, increase, be augmented; be swollen; + incruentatus_A : A ; -- [XWXFO] :: not stained with blood; bloodless, without shedding of blood; w/no casualties; + incruentus_A : A ; -- [XWXCO] :: not stained with blood; bloodless, without shedding of blood; w/no casualties; + incrusto_V2 : V2 ; -- [XXXCO] :: cover (with a layer), coat, line, daub; give an ornamental layer to, encrust; + incubatio_F_N : N ; -- [XXXES] :: brooding; incubation; lying on eggs; L:unlawful possession; + incubito_V : V ; -- [XXXCS] :: lie upon; brood; + incubo_V : V ; -- [XXXBX] :: lie in or on (w/DAT); sit upon; brood over; keep a jealous watch (over); + incudo_V2 : V2 ; -- [XXXDX] :: hammer out; + inculco_V : V ; -- [XXXDX] :: force upon, impress, drive home; + inculpatus_A : A ; -- [XXXEC] :: unblamed, blameless; + inculte_Adv : Adv ; -- [XXXDX] :: roughly, uncouthly, coarsely; without refinement/manners/style; + incultus_A : A ; -- [XXXDX] :: uncultivated (land), overgrown; unkempt; rough, uncouth; uncourted; + incultus_M_N : N ; -- [XXXDX] :: want of cultivation or refinement, uncouthness, disregard; + incumberamentum_N_N : N ; -- [FLXFJ] :: encumberment; misfortune, annoyance, mishap, trouble; Satanic temptation; + incumbero_V : V ; -- [FLXFJ] :: encumber; + incumbo_V2 : V2 ; -- [XXXBX] :: lean forward/over/on, press on; attack, apply force; fall on (one's sword); + incumbramentum_N_N : N ; -- [FLXFJ] :: incumberment; misfortune, annoyance, mishap, trouble; Satanic temptation; + incumbro_V : V ; -- [FXXFM] :: obstruct; block; + incunabulum_N_N : N ; -- [GXXEK] :: |early (<1500) printed books (pl.); (Cal); + incunctabilis_A : A ; -- [DXXFS] :: that admits of no delay; + incunctabiliter_Adv : Adv ; -- [DXXFS] :: without delay/hesitation; unhesitatingly; unwaveringly; + incunctanter_Adv : Adv ; -- [XXXEO] :: without hesitation; + incunctatus_A : A ; -- [XXXFO] :: not delaying/hesitating; + incuratus_A : A ; -- [XXXEC] :: uncared for, unhealed; + incuria_F_N : N ; -- [XXXDX] :: carelessness, neglect; + incuriose_Adv : Adv ; -- [XXXDX] :: carelessly, negligently, indifferently; + incuriosus_A : A ; -- [XXXDX] :: careless/negligent; indifferent; paying no attention, off guard, unsuspecting; + incurro_V2 : V2 ; -- [XXXBX] :: run into or towards, attack, invade; meet (with); befall; + incursio_F_N : N ; -- [XXXDX] :: onrush, attack, raid; incursion; + incursito_V2 : V2 ; -- [XXXES] :: rush upon; attack; + incurso_V : V ; -- [XXXDX] :: strike/run/dash against, attack; make raids upon; + incursus_M_N : N ; -- [XXXDX] :: assault, attack; raid; + incurvesco_V : V ; -- [XXXES] :: bend down; + incurvicervicus_A : A ; -- [XXXFS] :: with crooked neck; + incurvo_V : V ; -- [XXXDX] :: make crooked or bent; cause to bend down; + incurvus_A : A ; -- [XXXDX] :: crooked, curved; + incus_F_N : N ; -- [XXXCO] :: anvil; (also medical for the inner ear bone); + incuso_V : V ; -- [XXXDX] :: accuse, blame, criticize, condemn; + incustoditus_A : A ; -- [XXXDX] :: not watched over; unsupervised; + incutio_V2 : V2 ; -- [XXXDX] :: strike on or against; instill; + indagatio_F_N : N ; -- [XXXDO] :: act of tracking down/searching out; investigation; + indagator_M_N : N ; -- [XXXEO] :: tracker, searcher, one who tracks down; investigator, explorer (Cas); + indagatrix_F_N : N ; -- [XXXEO] :: tracker, searcher (female); investigator, explorer; + indagatus_M_N : N ; -- [XXXFO] :: act of hunting/tracking down/searching out; investigation; + indago_F_N : N ; -- [XXXDX] :: ring of huntsmen/nets/troops/forts; encircling with snares; tracking down; + indago_V2 : V2 ; -- [XXXCO] :: track down, hunt out; search out, try to find/procure by seeking; investigate; + indamnatus_A : A ; -- [XXXES] :: uncondemned; (= indemnatus); + indaudio_V2 : V2 ; -- [BXXES] :: hear of; learn; (archaic form of inaudio); + inde_Adv : Adv ; -- [XXXAX] :: thence, thenceforth; from that place/time/cause; thereupon; + indebitus_A : A ; -- [XXXDX] :: that is not owed, not due; + indecens_A : A ; -- [XXXEC] :: unbecoming, unseemly, unsightly; + indecenter_Adv : Adv ; -- [XXXEC] :: unbecomingly; + indeclinatus_A : A ; -- [XXXEC] :: unchanged, firm; + indecor_A : A ; -- [XXXCO] :: inglorious, shameful; unbecoming, unseemly; ugly; + indecoris_A : A ; -- [XXXCO] :: inglorious, shameful; unbecoming, unseemly; ugly; + indecoro_V : V ; -- [XXXDX] :: disgrace; + indecorus_A : A ; -- [XXXES] :: unbecoming; disgraceful; + indefectibiliter_Adv : Adv ; -- [XXXEE] :: inexhaustibly; unfailingly; + indefectus_A : A ; -- [XXXEO] :: inexhaustible; undiminished; unfailing; unexhausted, unweakened (Ecc); + indefensus_A : A ; -- [XXXDX] :: undefended; defenseless; + indefessus_A : A ; -- [XXXDX] :: unwearied; indefatigable; + indeficiens_A : A ; -- [EXXDX] :: unfailing; + indefletus_A : A ; -- [XXXEC] :: unwept; + indeflexus_A : A ; -- [DXXES] :: unchanged; unbent; + indejectus_A : A ; -- [XXXDX] :: not thrown down; + indelebilis_A : A ; -- [XXXEC] :: imperishable; + indelibatus_A : A ; -- [XXXEC] :: uninjured, undiminished; + indemnatas_F_N : N ; -- [XLXDO] :: security from financial loss; + indemnatus_A : A ; -- [XXXDX] :: uncondemned; + indemnis_A : A ; -- [XLXDO] :: uninjured; suffering no damage/loss; suffering no loss of wealth/property; + indemutabilis_A : A ; -- [EXXES] :: unchangeable; + indentitas_F_N : N ; -- [FXXEK] :: identity; + independens_A : A ; -- [GXXEK] :: independent; + independenter_Adv : Adv ; -- [GXXEK] :: independently; + independentia_F_N : N ; -- [GXXEK] :: independence; + indeploratus_A : A ; -- [XXXEC] :: unwept, unlamented; + indeprensus_A : A ; -- [XXXEC] :: undiscovered; + indesertus_A : A ; -- [XXXEC] :: not forsaken; + indesinenter_Adv : Adv ; -- [XXXFO] :: incessantly, ceaselessly; + indestrictus_A : A ; -- [XXXEC] :: untouched, unhurt; + indetonsus_A : A ; -- [XXXEC] :: unshorn; + indevitatus_A : A ; -- [XXXEC] :: unavoided; + indevotio_F_N : N ; -- [DEXES] :: lack of religion; irreligion; hostility to/disregard of religion; 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 ; - indies_Adv : Adv ; - indifferens_A : A ; - indifferenter_Adv : Adv ; - indigena_M_N : N ; - indigens_A : A ; - indigenus_A : A ; - indigenus_M_N : N ; - indigeo_V : V ; - indiges_A : A ; - indigestus_A : A ; - indignabundus_A : A ; - indignanter_Adv : Adv ; - indignatio_F_N : N ; - indigne_Adv : Adv ; - indignitas_F_N : N ; - indigniter_Adv : Adv ; - indignor_V : V ; - indignus_A : A ; - indigus_A : A ; - indiguus_A : A ; - indiligens_A : A ; - indiligenter_Adv : Adv ; - indiligentia_F_N : N ; - indipiscor_V : V ; - indirectus_A : A ; - indireptus_A : A ; - indisciplinate_Adv : Adv ; - indisciplinatio_F_N : N ; - indisciplinatus_A : A ; - indisciplinosus_A : A ; - indiscrete_Adv : Adv ; - indiscretim_Adv : Adv ; - indiscretus_A : A ; - indiscriminatim_Adv : Adv ; - indiserte_Adv : Adv ; - indisertus_A : A ; - indispositus_A : A ; - indissimilis_A : A ; - indissolubilis_A : A ; - indissolubilitas_F_N : N ; - indissolubiliter_Adv : Adv ; - indissolutus_A : A ; - indistinctus_A : A ; - indistinguibilis_A : A ; - individualis_A : A ; - individualismus_M_N : N ; - individualista_M_N : N ; - individualisticus_A : A ; - individualitas_F_N : N ; - individuum_N_N : N ; - individuus_A : A ; - indivisibilis_A : A ; - indivisibilitas_F_N : N ; - indivisibiliter_Adv : Adv ; - indivisio_F_N : N ; - indivisus_A : A ; - indo_V2 : V2 ; - indocilis_A : A ; - indoctus_A : A ; - indolentia_F_N : N ; - indoles_F_N : N ; - indolesco_V2 : V2 ; - indomabilis_A : A ; - indomitus_A : A ; - indormio_V2 : V2 ; - indotatus_A : A ; - indotia_F_N : N ; - indubitabilis_A : A ; - indubitanter_Adv : Adv ; - indubitate_Adv : Adv ; - indubitatus_A : A ; - indubito_V : V ; - indubius_A : A ; - induco_V2 : V2 ; - inductio_F_N : N ; - indulgens_A : A ; - indulgenter_Adv : Adv ; - indulgentia_F_N : N ; - indulgeo_V2 : V2 ; - indulgitas_F_N : N ; - indultarius_M_N : N ; - indultivus_M_N : N ; - indultum_N_N : N ; - indultus_M_N : N ; - indumentum_N_N : N ; - induo_V2 : V2 ; - induoia_F_N : N ; - indupeditus_A : A ; - induresco_V : V ; - induro_V : V ; - indusiatus_A : A ; - indusium_N_N : N ; - industria_F_N : N ; - industrialis_A : A ; - industrializatio_F_N : N ; - industrie_Adv : Adv ; - industriose_Adv : Adv ; - industriosus_A : A ; - industrius_A : A ; - indutia_F_N : N ; - indutio_V : V ; - indutrix_F_N : N ; - induvia_F_N : N ; - inebrio_V2 : V2 ; - inedia_F_N : N ; - inedicabilis_A : A ; - inedicibilis_A : A ; - ineditus_A : A ; - ineffabilis_A : A ; - inefficax_A : A ; - inelegans_A : A ; - ineluctabilis_A : A ; - inemendabilis_A : A ; - inemorior_V : V ; - inemptus_A : A ; - inenarrabilis_A : A ; - ineo_1_V2 : V2 ; - ineo_2_V2 : V2 ; - ineptio_V : V ; - ineptus_A : A ; - inequito_V : V ; - inergia_F_N : N ; - inermis_A : A ; - inermus_A : A ; - inerrans_A : A ; - inerro_V : V ; - iners_A : A ; - inertia_F_N : N ; - inerudite_Adv : Adv ; - ineruditio_F_N : N ; - ineruditus_A : A ; - inesco_V : V ; - inestimabiliter_Adv : Adv ; - inevitabilis_A : A ; - inevolutus_A : A ; - inevulsibilis_A : A ; - inexcitus_A : A ; - inexcusabilis_A : A ; - inexercitatus_A : A ; - inexhaustus_A : A ; - inexorabilis_A : A ; - inexpectatus_A : A ; - inexperrectus_A : A ; - inexpertus_A : A ; - inexpiabilis_A : A ; - inexplebilis_A : A ; - inexpletus_A : A ; - inexplicabilis_A : A ; - inexploratus_A : A ; - inexpugnabilis_A : A ; - inexpugnabiliter_Adv : Adv ; - inexpugnalis_A : A ; - inexspectatus_A : A ; - inexstinctus_A : A ; - inexstinguibilis_A : A ; - inexsuperabilis_A : A ; - inextinguibilis_A : A ; - inextricabilis_A : A ; - inexuperabilis_A : A ; - infabre_Adv : Adv ; - infabricatus_A : A ; - infacetia_F_N : N ; - infacetus_A : A ; - infacundus_A : A ; - infallibilis_A : A ; - infallibilitas_F_N : N ; - infallibiliter_Adv : Adv ; - infamia_F_N : N ; - infamis_A : A ; - infamo_V : V ; - infandus_A : A ; - infans_A : A ; + index_M_N : N ; -- [GXXEK] :: hand/needle of a watch; + indicativus_A : A ; -- [XXXDX] :: indicative; + indicatorius_A : A ; -- [GXXEK] :: indicating; + indicium_N_N : N ; -- [XXXBX] :: evidence (before a court); information, proof; indication; + indico_V : V ; -- [XXXAX] :: point out, show, indicate, expose, betray, reveal; inform against, accuse; + indico_V2 : V2 ; -- [XXXDX] :: declare publicly; proclaim, announce; appoint; summon; + indictio_F_N : N ; -- [XXXES] :: |valuation/value/price; indicating/setting/rating value; + indictus_A : A ; -- [XXXDX] :: not said/mentioned; (~ cause, without the case's being pleaded); unheard; + indidem_Adv : Adv ; -- [XXXDX] :: from the same place, source or origin; + indies_Adv : Adv ; -- [XXXDS] :: from day to day; (= in dies); + indifferens_A : A ; -- [XXXEC] :: indifferent; neither good nor bad; unconcerned; + indifferenter_Adv : Adv ; -- [XXXEC] :: indifferently; + indigena_M_N : N ; -- [XXXDX] :: native; + indigens_A : A ; -- [XXXEO] :: indigent, needy; not self-sufficient; poor; destitute; + indigenus_A : A ; -- [XXXDX] :: native, indigenous; sprung from the land; + indigenus_M_N : N ; -- [XXXDX] :: native; son of the soil; + indigeo_V : V ; -- [XXXDX] :: need, lack, require (w/GEN or ABL); + indiges_A : A ; -- [XXXDS] :: indigent, needy; in want of, needing; poor; destitute; + indigestus_A : A ; -- [XXXDX] :: disordered, confused, chaotic; jumbled; + indignabundus_A : A ; -- [XXXDO] :: indignant, furious; + indignanter_Adv : Adv ; -- [DXXDS] :: indignantly; + indignatio_F_N : N ; -- [XXXDX] :: indignation; anger; angry outburst; + indigne_Adv : Adv ; -- [XXXCO] :: |dishonorably (L+S); indignantly; [~ fero => be indignant at; resent/take ill]; + indignitas_F_N : N ; -- [XXXDX] :: vileness, baseness, shamelessness; outrageousness; indignity, humiliation; + indigniter_Adv : Adv ; -- [XXXIO] :: undeservedly; unjustly; unworthily; + indignor_V : V ; -- [XXXBX] :: deem unworthy, scorn, regard with indignation, resent, be indignant; + indignus_A : A ; -- [XXXBS] :: unworthy, undeserving, undeserved; unbecoming; shameful; intolerable; cruel; + indigus_A : A ; -- [XXXDX] :: having need (to); lacking; needy; + indiguus_A : A ; -- [DXXES] :: needing; in want; + indiligens_A : A ; -- [XXXCO] :: careless, negligent; inattentive; neglected, not cared for; + indiligenter_Adv : Adv ; -- [XXXEO] :: carelessly, negligently; inattentively; + indiligentia_F_N : N ; -- [XXXDO] :: negligence, want of care; want of concern (for); + indipiscor_V : V ; -- [XXXDX] :: overtake; acquire; + indirectus_A : A ; -- [XXXFS] :: not direct; (L+S - false reading of inde recte); + indireptus_A : A ; -- [XXXEC] :: unpillaged; + indisciplinate_Adv : Adv ; -- [DXXFS] :: disorderly, in an undisciplined manner; + indisciplinatio_F_N : N ; -- [DXXFS] :: want of discipline; + indisciplinatus_A : A ; -- [DXXFS] :: undisciplined, without discipline; + indisciplinosus_A : A ; -- [DXXFS] :: undisciplined, without discipline; + indiscrete_Adv : Adv ; -- [EXXDB] :: indiscriminately, unwisely, indiscreetly; alike (L+S); + indiscretim_Adv : Adv ; -- [FXXFE] :: indiscriminately; without distinction; alike (L+S); + indiscretus_A : A ; -- [XXXCO] :: indistinguishable; used indiscriminately; alike/equal; not divided/separable; + indiscriminatim_Adv : Adv ; -- [XXXFO] :: indiscriminately; without distinction; alike (L+S); + indiserte_Adv : Adv ; -- [XXXEC] :: not eloquently; + indisertus_A : A ; -- [XXXEC] :: not eloquent; + indispositus_A : A ; -- [XXXEC] :: disorderly, confused; + indissimilis_A : A ; -- [XXXFS] :: not unlike; + indissolubilis_A : A ; -- [XXXEO] :: indestructible/imperishable; that cannot be dissolved/loosened/untied (knot); + indissolubilitas_F_N : N ; -- [XXXEE] :: indestructibility; indissolubility; + indissolubiliter_Adv : Adv ; -- [XXXFS] :: indestructibly; imperishably; + indissolutus_A : A ; -- [XXXFO] :: indestructible/imperishable; that cannot be dissolved/loosened/untied (knot); + indistinctus_A : A ; -- [XXXEC] :: not separated; indistinct, obscure; unpretentious; + indistinguibilis_A : A ; -- [FXXEM] :: indistinguishable; + individualis_A : A ; -- [GXXEK] :: individual; + individualismus_M_N : N ; -- [GXXEK] :: individualism; + individualista_M_N : N ; -- [GXXEK] :: individualist; + individualisticus_A : A ; -- [GXXEK] :: individualist; + individualitas_F_N : N ; -- [FXXEM] :: individuality; + individuum_N_N : N ; -- [XSXEC] :: atom; + individuus_A : A ; -- [XXXEC] :: indivisible, inseparable; + indivisibilis_A : A ; -- [EXXEP] :: indivisible, inseparable; + indivisibilitas_F_N : N ; -- [EXXFP] :: indivisibility; + indivisibiliter_Adv : Adv ; -- [EXXEP] :: in indivisible condition; + indivisio_F_N : N ; -- [EGXEP] :: indivisible item; that cannot be divided; + indivisus_A : A ; -- [XXXCO] :: undivided, not split/cloven; indivisible; held in common/jointly/in equal parts; + indo_V2 : V2 ; -- [XXXDX] :: put in or on; introduce; + indocilis_A : A ; -- [XXXDX] :: unteachable, ignorant; + indoctus_A : A ; -- [XXXDX] :: untaught; unlearned, ignorant, untrained; + indolentia_F_N : N ; -- [XXXEC] :: freedom from pain; + indoles_F_N : N ; -- [XXXDX] :: innate character; inborn quality; + indolesco_V2 : V2 ; -- [XXXDX] :: feel pain of mind; grieve; + indomabilis_A : A ; -- [BXXFS] :: untamable; + indomitus_A : A ; -- [XXXBX] :: untamed; untamable, fierce; + indormio_V2 : V2 ; -- [XXXDX] :: sleep (in or over); + indotatus_A : A ; -- [XXXDX] :: not provided with a dowry; + indotia_F_N : N ; -- [XXXEO] :: truce (pl.), armistice, cessation of hostilities; respite, period of grace; + indubitabilis_A : A ; -- [XXXEO] :: indisputable, indubitable, not admitting to doubt; + indubitanter_Adv : Adv ; -- [XXXFO] :: indubitably, indisputably, beyond all doubt; + indubitate_Adv : Adv ; -- [XXXEO] :: indisputably, beyond all doubt; + indubitatus_A : A ; -- [XXXCO] :: unquestionable, certain, indisputable; undoubted; not hesitated over, confident; + indubito_V : V ; -- [XXXDX] :: have misgivings (about); + indubius_A : A ; -- [XXXEC] :: not doubtful, certain; + induco_V2 : V2 ; -- [XXXBX] :: lead in, bring in (performers); induce, influence; introduce; + inductio_F_N : N ; -- [XXXDX] :: leading or bringing in; application; + indulgens_A : A ; -- [XXXCO] :: indulgent; kind, mild; gracious; bestowing favor; partial/addicted to (doing); + indulgenter_Adv : Adv ; -- [XXXDO] :: indulgently; leniently; graciously; kindly; so as to show favor; + indulgentia_F_N : N ; -- [FEXBE] :: |indulgence, remission before God of temporal punishment for sin; + indulgeo_V2 : V2 ; -- [XXXAO] :: indulge; be indulgent/lenient/kind; grant/bestow; gratify oneself; give in to; + indulgitas_F_N : N ; -- [XXXEO] :: leniency, concession, pardon; kindness, gentleness; favor bounty; indulging; + indultarius_M_N : N ; -- [FEXEE] :: person having an indult (leave/permission from Church superior); + indultivus_M_N : N ; -- [FXXFE] :: indult; grant; leave; permission; + indultum_N_N : N ; -- [FEXEE] :: |dispensation; privilege granted for something not permitted by Church law; + indultus_M_N : N ; -- [DXXES] :: leave; permission; + indumentum_N_N : N ; -- [XXXDO] :: garment, robe; something put on; (mask, sauce); + induo_V2 : V2 ; -- [XXXAX] :: put on, clothe, cover; dress oneself in; [se induere => to impale oneself]; + induoia_F_N : N ; -- [XXXDO] :: truce (pl.), armistice, cessation of hostilities; respite, period of grace; + indupeditus_A : A ; -- [XXXFS] :: hindered/hampered; difficult/impeded; inaccessible; (= impeditus); + induresco_V : V ; -- [XXXCO] :: harden, set, become hard/tough/robust; become firmly established/inflexible; + induro_V : V ; -- [XXXDX] :: make hard; + indusiatus_A : A ; -- [BXXFS] :: undergarment-wearing; + indusium_N_N : N ; -- [XXXEO] :: outer tunic; shirt (Ecc); woman's undergarment (L+S); shift; + industria_F_N : N ; -- [XXXBO] :: industry; purpose/diligence; purposeful/diligent activity; purposefulness (pl.); + industrialis_A : A ; -- [HXXDE] :: industrial; + industrializatio_F_N : N ; -- [HXXEE] :: industrialization; + industrie_Adv : Adv ; -- [XXXEO] :: industriously; diligently; assiduously; vigorously; + industriose_Adv : Adv ; -- [XXXEO] :: industriously; diligently; assiduously; vigorously; + industriosus_A : A ; -- [XXXES] :: very active; industrious; + industrius_A : A ; -- [XXXFO] :: industrious, diligent; active; zealous; assiduous; + indutia_F_N : N ; -- [XXXCO] :: truce (pl.), armistice, cessation of hostilities; respite, period of grace; + indutio_V : V ; -- [FLXFM] :: grant stay; E:clothe in monk's habit; + indutrix_F_N : N ; -- [GXXEK] :: model; + induvia_F_N : N ; -- [FXXEM] :: clothing, garb, clothes; (induvie ferree = armor); + inebrio_V2 : V2 ; -- [XXXCO] :: intoxicate, make drunk; saturate/drench (with any liquid); + inedia_F_N : N ; -- [XXXDX] :: fasting, starvation; + inedicabilis_A : A ; -- [FXXEN] :: unexplainable; inexplicable; + inedicibilis_A : A ; -- [FXXEM] :: unspeakable; inexpressible (Nelson); + ineditus_A : A ; -- [XXXFO] :: not published, unknown; + ineffabilis_A : A ; -- [XXXCO] :: indescribable, ineffable, cannot be described/expressed w/words; unpronouncable; + inefficax_A : A ; -- [XLXEO] :: |invalid (legal), inoperative; not potent/efficacious (remedies), ineffective; + inelegans_A : A ; -- [XXXDX] :: lacking in taste; clumsy, infelicitous; + ineluctabilis_A : A ; -- [XXXDX] :: from which there is no escape; + inemendabilis_A : A ; -- [EXXFS] :: unamendable; incorrigible; + inemorior_V : V ; -- [XXXFO] :: die amid/in/at; die in contemplation of; (w/DAT); + inemptus_A : A ; -- [XXXDX] :: not bought; + inenarrabilis_A : A ; -- [XXXDX] :: indescribable; + ineo_1_V : V ; -- [XXXBX] :: enter; undertake; begin; go in; enter upon; [consilium ~ => form a plan]; + ineo_2_V : V ; -- [XXXBX] :: enter; undertake; begin; go in; enter upon; [consilium ~ => form a plan]; + ineptio_V : V ; -- [XXXDX] :: play the fool, trifle; + ineptus_A : A ; -- [XXXDX] :: silly, foolish; having no sense of what is fitting; + inequito_V : V ; -- [XXXFS] :: ride upon; ride over; + inergia_F_N : N ; -- [FXXFY] :: energy; efficiency; (med. form of energia); + inermis_A : A ; -- [XXXBX] :: unarmed, without weapons; defenseless; toothless, without a sting; + inermus_A : A ; -- [XXXDX] :: unarmed, without weapons; defenseless; toothless, without a sting; + inerrans_A : A ; -- [XXXEC] :: not wandering, fixed; + inerro_V : V ; -- [XXXES] :: wander; ramble; + iners_A : A ; -- [XXXBX] :: helpless, weak, inactive, inert, sluggish, stagnant; unskillful, incompetent; + inertia_F_N : N ; -- [XXXBX] :: ignorance; inactivity; laziness, idleness, sloth; + inerudite_Adv : Adv ; -- [XXXEO] :: ignorantly; crudely; without learning; + ineruditio_F_N : N ; -- [DXXFS] :: want/lack of learning/education; ignorance (Vulgate Sirach 4:25/30); + ineruditus_A : A ; -- [XXXCO] :: uninformed, uneducated; illiterate; ignorant; + inesco_V : V ; -- [XXXFS] :: entice; fill with food; + inestimabiliter_Adv : Adv ; -- [FXXFM] :: inestimably; incalculably; + inevitabilis_A : A ; -- [XXXDX] :: unavoidable; + inevolutus_A : A ; -- [XXXFO] :: unopened, not rolled out (papyrus scroll); unread; + inevulsibilis_A : A ; -- [DXXFS] :: inseparable; that cannot be torn away; + inexcitus_A : A ; -- [XXXEC] :: unmoved, quiet; + inexcusabilis_A : A ; -- [XXXDX] :: inexcusable; + inexercitatus_A : A ; -- [XXXEC] :: untrained, unpracticed; + inexhaustus_A : A ; -- [XXXEC] :: unexhausted; + inexorabilis_A : A ; -- [XXXDX] :: inexorable, relentless; + inexpectatus_A : A ; -- [XXXES] :: unforseen; (= inexspectatus); + inexperrectus_A : A ; -- [XXXEC] :: not awakened; + inexpertus_A : A ; -- [XXXDX] :: inexperienced (in), untried; + inexpiabilis_A : A ; -- [XXXCO] :: implacable; inexpiable, unatoneable; that cannot be evaded by expiatory rites; + inexplebilis_A : A ; -- [XXXCO] :: insatiable; that cannot be sated/filled; impossible to satify; + inexpletus_A : A ; -- [XXXEC] :: unfilled, insatiate; + inexplicabilis_A : A ; -- [XXXBO] :: |baffling, unsolvable; incurable; involved/complex; inexplicable; unexplainable; + inexploratus_A : A ; -- [XXXDX] :: unexplored; not investigated; + inexpugnabilis_A : A ; -- [XXXDX] :: impregnable, unconquerable, invincible; + inexpugnabiliter_Adv : Adv ; -- [FXXFM] :: irrefutably; + inexpugnalis_A : A ; -- [XXXCO] :: impregnable (town/fort); unassailable (position); invincible; industructible; + inexspectatus_A : A ; -- [FXXFE] :: invincible; unconquerable; + inexstinctus_A : A ; -- [XXXDX] :: that is never extinguished; + inexstinguibilis_A : A ; -- [XXXEO] :: unquenchable, inextinguishable; + inexsuperabilis_A : A ; -- [XXXDX] :: insurmountable, invincible, unsurpassable; + inextinguibilis_A : A ; -- [XXXEO] :: unquenchable, inextinguishable; + inextricabilis_A : A ; -- [XXXDX] :: impossible to disentangle or sort out; + inexuperabilis_A : A ; -- [XXXDX] :: insurmountable, invincible, unsurpassable; + infabre_Adv : Adv ; -- [XXXDX] :: without art, crudely, unskillfully, rudely; + infabricatus_A : A ; -- [XXXEC] :: unwrought, unfashioned; + infacetia_F_N : N ; -- [XXXEC] :: crudity (pl.); + infacetus_A : A ; -- [XXXDX] :: coarse, boorish; + infacundus_A : A ; -- [XXXDX] :: unable to express oneself fluently, not eloquent; slow of speech (COMP); + infallibilis_A : A ; -- [FXXDF] :: infallible, not liable to err or lead into error; + infallibilitas_F_N : N ; -- [FXXEF] :: infallibility (in knowledge); + infallibiliter_Adv : Adv ; -- [DXXEF] :: infallibly; in an unfailing manner; inevitably; + infamia_F_N : N ; -- [XXXBX] :: disgrace, dishonor; infamy; + infamis_A : A ; -- [XXXDX] :: notorious, disreputable, infamous; + infamo_V : V ; -- [XXXDX] :: bring into disrepute; defame; + infandus_A : A ; -- [XXXDX] :: unspeakable, unutterable; abominable, monstrous; + infans_A : A ; -- [XXXDX] :: speechless, inarticulate; new born; childish, foolish; infans_F_N : N ; -- [XXXBX] :: infant; child (Bee); - infans_M_N : N ; - infantaria_F_N : N ; - infantarius_M_N : N ; - infantia_F_N : N ; - infanticidium_N_N : N ; - infantilis_A : A ; - infantiliter_Adv : Adv ; - infantula_F_N : N ; - infantulus_M_N : N ; - infarctus_M_N : N ; - infatigabilis_A : A ; - infatigabiliter_Adv : Adv ; - infatuo_V2 : V2 ; - infaustus_A : A ; - infectus_A : A ; - infecunditas_F_N : N ; - infecundus_A : A ; - infelicitas_F_N : N ; - infeliciter_Adv : Adv ; - infelicito_V : V ; - infelico_V : V ; - infelix_A : A ; - infenso_V : V ; - infensus_A : A ; - infer_A : A ; - infercio_V2 : V2 ; - inferia_F_N : N ; - infernale_N_N : N ; - infernalis_A : A ; - inferne_Adv : Adv ; - infernum_N_N : N ; - infernus_A : A ; - infernus_M_N : N ; - infero_V2 : V2 ; - inferus_A : A ; - inferus_M_N : N ; - infervefacio_V2 : V2 ; - infervesco_V : V ; - infeste_Adv : Adv ; - infesto_V2 : V2 ; - infestus_A : A ; - inficetia_F_N : N ; - inficio_V2 : V2 ; - inficior_V : V ; - infidelis_A : A ; - infidelitas_F_N : N ; - infidibulum_N_N : N ; - infidigraphus_A : A ; - infidus_A : A ; - infigo_V2 : V2 ; - infimo_V2 : V2 ; - infimus_A : A ; - infindo_V2 : V2 ; - infinitarius_A : A ; - infinitas_F_N : N ; - infinitesimalis_A : A ; - infinitio_F_N : N ; - infinitus_A : A ; - infio_V : V ; - infirme_Adv : Adv ; - infirmis_A : A ; - infirmitas_F_N : N ; - infirmiter_Adv : Adv ; - infirmo_V : V ; - infirmum_N_N : N ; - infirmus_A : A ; - infirmus_M_N : N ; - infitia_F_N : N ; - infitialis_A : A ; - infitiatio_F_N : N ; - infitior_V : V ; - inflammabilis_A : A ; - inflammatio_F_N : N ; - inflammatus_A : A ; - inflammo_V : V ; - inflatio_F_N : N ; - inflatus_A : A ; - inflecto_V2 : V2 ; - inflectus_A : A ; - infletus_A : A ; - inflexibilis_A : A ; - inflexio_F_N : N ; - infligo_V2 : V2 ; - inflo_V : V ; - influentia_F_N : N ; - influo_V2 : V2 ; - infodio_V2 : V2 ; - informaticus_A : A ; - informatio_F_N : N ; - informis_A : A ; - informitas_F_N : N ; - informo_V : V ; - infortunatus_A : A ; - infortunium_N_N : N ; - infra_Acc_Prep : Prep ; - infra_Adv : Adv ; - infractus_A : A ; - infrascriptus_A : A ; - infremo_V2 : V2 ; - infrenatus_A : A ; - infrendo_V : V ; - infrenis_A : A ; - infreno_V : V ; - infrenus_A : A ; - infrequens_A : A ; - infrequentia_F_N : N ; - infricatus_A : A ; - infrico_V : V ; - infrigido_V : V ; - infringo_V2 : V2 ; - infrio_V2 : V2 ; - infrons_A : A ; - infructuosus_A : A ; - infrunite_Adv : Adv ; - infrunitus_A : A ; - infucatus_A : A ; - infula_F_N : N ; - infulcio_V2 : V2 ; - infulgeo_V : V ; - infulo_V : V ; - infumus_A : A ; - infundabiliter_Adv : Adv ; - infundibulum_N_N : N ; - infundo_V2 : V2 ; - infusco_V : V ; - infusio_F_N : N ; - ingemesco_V2 : V2 ; - ingemino_V : V ; - ingemisco_V2 : V2 ; - ingemo_V2 : V2 ; - ingenero_V : V ; - ingeniarius_M_N : N ; - ingeniatus_A : A ; - ingeniculo_V2 : V2 ; - ingeniose_Adv : Adv ; - ingeniosus_A : A ; - ingenium_N_N : N ; - ingeno_V2 : V2 ; - ingens_A : A ; - ingenuitas_F_N : N ; - ingenuus_A : A ; - ingerentia_F_N : N ; - ingero_V2 : V2 ; - ingigno_V2 : V2 ; - inglorius_A : A ; - ingluvies_F_N : N ; - ingrate_Adv : Adv ; - ingratiis_Adv : Adv ; - ingratis_Adv : Adv ; - ingratus_A : A ; - ingravesco_V : V ; - ingravo_V : V ; - ingredientium_N_N : N ; - ingredior_V : V ; - ingressus_M_N : N ; - ingruo_V2 : V2 ; - inguen_N_N : N ; - ingurgito_V : V ; - ingustatus_A : A ; - inhabilis_A : A ; - inhabilito_V : V ; - inhabitabilis_A : A ; - inhabitantis_M_N : N ; - inhabito_V : V ; - inhaeredito_V2 : V2 ; - inhaeredo_V2 : V2 ; - inhaereo_V : V ; - inhaeresco_V : V ; - inhaesitanter_Adv : Adv ; - inhalatio_F_N : N ; - inhalo_V : V ; - inheredito_V2 : V2 ; - inheredo_V2 : V2 ; - inhianter_Adv : Adv ; - inhibeo_V : V ; - inhio_V : V ; - inhonestas_F_N : N ; - inhoneste_Adv : Adv ; - inhonesto_V : V ; - inhonestus_A : A ; - inhonorabilis_A : A ; - inhonorate_Adv : Adv ; - inhonoratio_F_N : N ; - inhonoratus_A : A ; - inhonoris_A : A ; - inhonoro_V2 : V2 ; - inhonorus_A : A ; - inhorreo_V : V ; - inhorresco_V2 : V2 ; - inhospitalis_A : A ; - inhospitalitas_F_N : N ; - inhospitus_A : A ; - inhumanatio_F_N : N ; - inhumanatus_A : A ; - inhumane_Adv : Adv ; - inhumanitas_F_N : N ; - inhumanus_A : A ; - inhumatus_A : A ; - inibi_Adv : Adv ; - inicio_V2 : V2 ; - inidoneitas_F_N : N ; - inidoneus_A : A ; - inimicitia_F_N : N ; - inimico_V : V ; - inimicus_A : A ; - inimicus_M_N : N ; - inimitabilis_A : A ; - ininnascor_V : V ; - iniquitas_F_N : N ; - iniquus_A : A ; - initiale_N_N : N ; - initialis_A : A ; - initio_V : V ; - initium_N_N : N ; - initus_M_N : N ; - injecto_V : V ; - injicio_V2 : V2 ; - injucundus_A : A ; - injudicatus_A : A ; - injungo_V2 : V2 ; - injuratus_A : A ; - injuria_F_N : N ; - injurio_V2 : V2 ; - injurior_V : V ; - injuriosus_A : A ; - injurius_A : A ; - injuro_V2 : V2 ; - injurose_Adv : Adv ; - injurus_A : A ; - injussu_Adv : Adv ; - injussus_A : A ; - injussus_M_N : N ; - injustitia_F_N : N ; - injustus_A : A ; - inlabefactus_A : A ; - inlabor_V : V ; - inlaboro_V : V ; - inlacessitus_A : A ; - inlacrimo_V : V ; - inlacrimor_V : V ; - inlaesus_A : A ; - inlagatio_F_N : N ; - inlagatus_M_N : N ; - inlago_V : V ; - inlatio_F_N : N ; - inlaudatus_A : A ; - inlautus_A : A ; - inlecebra_F_N : N ; - inlecebrose_Adv : Adv ; - inlecebrosus_A : A ; - inlectus_A : A ; - inlectus_M_N : N ; - inlepide_Adv : Adv ; - inlepidus_A : A ; - inlex_A : A ; + infans_M_N : N ; -- [XXXBX] :: infant; child (Bee); + infantaria_F_N : N ; -- [XXXEO] :: woman who looks after babies; woman fond of infants (L+S); murderess of infants; + infantarius_M_N : N ; -- [XXXIO] :: man who looks after babies; sacrificers (pl.) of infants; + infantia_F_N : N ; -- [XXXDX] :: infancy; inability to speak; + infanticidium_N_N : N ; -- [DXXFS] :: infanticide; child-murder; baby-killing; + infantilis_A : A ; -- [EXXES] :: infantile; + infantiliter_Adv : Adv ; -- [EXXES] :: childishly; + infantula_F_N : N ; -- [XXXFO] :: baby girl; + infantulus_M_N : N ; -- [XXXEO] :: baby boy; little babe; little infant; + infarctus_M_N : N ; -- [GBXEK] :: heart attack; + infatigabilis_A : A ; -- [XXXES] :: indefatigable; + infatigabiliter_Adv : Adv ; -- [XXXFS] :: indefatigably; + infatuo_V2 : V2 ; -- [XXXEC] :: make a fool of; + infaustus_A : A ; -- [XXXDX] :: unlucky, unfortunate; inauspicious; + infectus_A : A ; -- [XXXDX] :: unfinished, undone, incomplete; infecta re = without having accomplished it; + infecunditas_F_N : N ; -- [XXXDX] :: barrenness; + infecundus_A : A ; -- [XXXDX] :: unfruitful, infertile; + infelicitas_F_N : N ; -- [XXXDX] :: misfortune; + infeliciter_Adv : Adv ; -- [XXXCO] :: unfortunately; without good luck; without success; + infelicito_V : V ; -- [BXXES] :: make unhappy; + infelico_V : V ; -- [BXXFS] :: make unhappy; + infelix_A : A ; -- [XXXAO] :: unfortunate, unhappy, wretched; unlucky, inauspicious; unproductive (plant); + infenso_V : V ; -- [XXXDX] :: treat in a hostile manner; + infensus_A : A ; -- [XXXDX] :: hostile, bitterly hostile, enraged; + infer_A : A ; -- [XXXDX] :: below, beneath, underneath; of hell; vile; lower, further down; lowest, last; + infercio_V2 : V2 ; -- [XXXES] :: stuff; stuff with; + inferia_F_N : N ; -- [XXXDX] :: offerings to the dead (pl.); + infernale_N_N : N ; -- [FEXDF] :: infernal regions (pl.), Hell; + infernalis_A : A ; -- [DEXBS] :: infernal, of/like Hell, Hellish; belonging to the lower regions; nether, lower; + inferne_Adv : Adv ; -- [XXXDX] :: underneath, below, on the lower side; infernally; + infernum_N_N : N ; -- [XXXDX] :: lower regions (pl.), infernal regions, hell; + infernus_A : A ; -- [XXXBX] :: lower, under; underground, of the lower regions, infernal; of hell; + infernus_M_N : N ; -- [XXXDX] :: inhabitants of the lower world (pl.), the shades; the damned; Hell (Bee); + infero_V2 : V2 ; -- [XXXAO] :: ||put/throw/thrust in/on, insert; bury/inter; pay; charge as expense; append; + inferus_A : A ; -- [XXXAX] :: below, beneath, underneath; of hell; vile; lower, further down; lowest, last; + inferus_M_N : N ; -- [XXXDX] :: those below (pl.), the dead; + infervefacio_V2 : V2 ; -- [XXXDS] :: cause to boil; + infervesco_V : V ; -- [XXXES] :: grow hot; + infeste_Adv : Adv ; -- [XXXDX] :: dangerously, savagely; in a hostile manner; belligerently; + infesto_V2 : V2 ; -- [XXXBO] :: vex (w/attacks), harass, molest; make unsafe, disturb; infest; damage, impair; + infestus_A : A ; -- [XXXBX] :: unsafe, dangerous; hostile; disturbed, molested, infested, unquiet; + inficetia_F_N : N ; -- [XXXEC] :: crudity (pl.); + inficio_V2 : V2 ; -- [XXXBX] :: corrupt, infect, imbue; poison; dye, stain, color, spoil; + inficior_V : V ; -- [XXXDX] :: deny; refuse to acknowledge as true; withhold; disown; repudiate (claims); + infidelis_A : A ; -- [XXXDX] :: treacherous, disloyal; + infidelitas_F_N : N ; -- [XXXDX] :: faithlessness; inconstancy; + infidibulum_N_N : N ; -- [XXXDO] :: funnel (for pouring liquids); hopper (in mill); + infidigraphus_A : A ; -- [XXXDX] :: faithless, treacherous; + infidus_A : A ; -- [DEXFS] :: writing without faith; writing faithlessly; + infigo_V2 : V2 ; -- [XXXDX] :: fasten (on), fix, implant, affix; impose; drive/thrust in; + infimo_V2 : V2 ; -- [XXXDX] :: bring down to the lowest level; weaken, enfeeble; refute, invalidate, annul; + infimus_A : A ; -- [XXXDX] :: lowest, deepest, furtherest down/from the surface; humblest; vilest, meanest; + infindo_V2 : V2 ; -- [XXXDX] :: cleave; plow a path into; + infinitarius_A : A ; -- [XXXDX] :: having unlimited powers (of a magistrate); + infinitas_F_N : N ; -- [XXXDX] :: limitless extent; infinity; the Infinite; + infinitesimalis_A : A ; -- [GXXEK] :: infinitesimal; + infinitio_F_N : N ; -- [XXXEC] :: infinity; + infinitus_A : A ; -- [XXXBX] :: boundless, unlimited, endless; infinite; + infio_V : V ; -- [XXXCO] :: begin (to do something); begin to speak; (infit is only classical example); + infirme_Adv : Adv ; -- [XXXCO] :: weakly, faintly; cravenly; not powerfully/effectively/dependably/soundly; + infirmis_A : A ; -- [EXXDS] :: weak/fragile/frail/feeble; unwell/sick/infirm; + infirmitas_F_N : N ; -- [XXXBX] :: weakness; sickness; + infirmiter_Adv : Adv ; -- [DXXES] :: weakly/feebly; without energy/support/power; not firmly/effectively; not very; + infirmo_V : V ; -- [XXXDX] :: weaken; diminish; annul; (PASS) be ill (Bee); + infirmum_N_N : N ; -- [XXXES] :: weak parts (pl.); + infirmus_A : A ; -- [XXXAO] :: |weak (military); mild/irresolute; powerless/ineffectual; unsound/untrustworthy; + infirmus_M_N : N ; -- [EXXEP] :: patient, one who is sick/infirm; + infitia_F_N : N ; -- [XXXFS] :: denial; L:defend action; + infitialis_A : A ; -- [XXXDX] :: negative, negatory; containing a denial; + infitiatio_F_N : N ; -- [XXXFS] :: denial; + infitior_V : V ; -- [XXXDX] :: deny; not confess/acknowledge; withhold; disown; repudiate (claim); contradict; + inflammabilis_A : A ; -- [GXXEK] :: flammable; + inflammatio_F_N : N ; -- [XBXCO] :: inflammation; action of setting ablaze, kindling; + inflammatus_A : A ; -- [XXXDX] :: excited; inflamed; set on fire; + inflammo_V : V ; -- [XXXDX] :: set on fire, inflame, kindle; excite; + inflatio_F_N : N ; -- [XXXCS] :: inflation, swelling/blowing/puffing (up); flatulence; inflammation; insolence; + inflatus_A : A ; -- [XXXDX] :: inflated, puffed up; bombastic; turgid; + inflecto_V2 : V2 ; -- [XXXDX] :: bend; curve; change; + inflectus_A : A ; -- [XXXDX] :: unmourned; not wept for; + infletus_A : A ; -- [XXXEO] :: unmourned, not wept for; + inflexibilis_A : A ; -- [XXXES] :: unbendable; inflexible; + inflexio_F_N : N ; -- [XXXEO] :: modification, adaption; bending/curving (action); + infligo_V2 : V2 ; -- [XXXDX] :: knock or dash (against); inflict, impose; + inflo_V : V ; -- [XXXBX] :: blow into/upon; puff out; + influentia_F_N : N ; -- [GXXEK] :: influence; + influo_V2 : V2 ; -- [XXXDX] :: flow into; flow; + infodio_V2 : V2 ; -- [XXXDX] :: bury, inter; + informaticus_A : A ; -- [GXXEK] :: data processing; + informatio_F_N : N ; -- [GXXEK] :: information; + informis_A : A ; -- [XXXDX] :: formless, shapeless; deformed; ugly, hideous; + informitas_F_N : N ; -- [EXXES] :: unshapeliness; ugliness; + informo_V : V ; -- [XXXDX] :: shape, form; fashion; form an idea of; + infortunatus_A : A ; -- [XXXDX] :: unfortunate; + infortunium_N_N : N ; -- [XXXDX] :: misfortune, punishment; + infra_Acc_Prep : Prep ; -- [XXXAX] :: below, lower than; later than; + infra_Adv : Adv ; -- [XXXDX] :: below, on the under side, underneath; further along; on the south; + infractus_A : A ; -- [XXXDX] :: broken; humble in tone; + infrascriptus_A : A ; -- [FXXFZ] :: below-written; + infremo_V2 : V2 ; -- [XXXDX] :: bellow, roar; + infrenatus_A : A ; -- [XXXDX] :: not using a bridle; + infrendo_V : V ; -- [XXXDX] :: gnash the teeth (usually in anger); + infrenis_A : A ; -- [XXXDX] :: not bridled; unrestrained; + infreno_V : V ; -- [XXXDX] :: bridle; + infrenus_A : A ; -- [XXXDX] :: not bridled; unrestrained; + infrequens_A : A ; -- [XXXDX] :: not crowded; below strength; present only in small numbers; + infrequentia_F_N : N ; -- [XXXDX] :: insufficient numbers; depopulated condition (of a place); + infricatus_A : A ; -- [XXXFS] :: rubbed-in; (alt. vpar of infrico); + infrico_V : V ; -- [XXXES] :: rub in; + infrigido_V : V ; -- [FXXFM] :: chill; cool; + infringo_V2 : V2 ; -- [XXXDX] :: break, break off; lessen, weaken, diminish, dishearten; overcome, crush; + infrio_V2 : V2 ; -- [XXXCS] :: rub into; strew upon; + infrons_A : A ; -- [XXXFO] :: leafless; having no trees/foliage; + infructuosus_A : A ; -- [XXXEC] :: unfruitful, unproductive; + infrunite_Adv : Adv ; -- [DXXFS] :: senselessly; in profusion (Souter); + infrunitus_A : A ; -- [DXXDS] :: unfit for enjoyment, tasteless, senseless; + infucatus_A : A ; -- [XXXEC] :: colored; + infula_F_N : N ; -- [XXXDX] :: band; fillet; woolen headband knotted with ribbons; + infulcio_V2 : V2 ; -- [XXXDS] :: cram; cram in; + infulgeo_V : V ; -- [EXXEP] :: shine in; lighten; + infulo_V : V ; -- [FEXEM] :: invest/vest with mitre/episcopal insignia; put on vestments; adorn w/halo; + infumus_A : A ; -- [XXXDX] :: lowest, deepest, furtherest down/from the surface; humblest; vilest, meanest; + infundabiliter_Adv : Adv ; -- [FXXFM] :: unwarrantably; unjustly, for no good reason; + infundibulum_N_N : N ; -- [XXXDO] :: funnel (for pouring liquids); hopper (in mill); + infundo_V2 : V2 ; -- [XXXBX] :: pour in, pour on, pour out; + infusco_V : V ; -- [XXXDX] :: darken; corrupt; + infusio_F_N : N ; -- [XXXDS] :: pouring-in; flowing; + ingemesco_V2 : V2 ; -- [XXXCO] :: groan/moan (begin to) at/over; cry w/pain/anguish/sorrow; creak/groan (object); + ingemino_V : V ; -- [XXXDX] :: redouble; increase in intensity; + ingemisco_V2 : V2 ; -- [XXXCO] :: groan/moan (begin to) at/over; cry w/pain/anguish/sorrow; creak/groan (object); + ingemo_V2 : V2 ; -- [XXXCO] :: groan/moan/sigh (at/over); utter cry of pain/anguish; creak/groan (objects); + ingenero_V : V ; -- [XXXDX] :: implant; + ingeniarius_M_N : N ; -- [GXXEK] :: engineer; + ingeniatus_A : A ; -- [XXXES] :: naturally inclined; adapted by nature; + ingeniculo_V2 : V2 ; -- [XXXFO] :: kneel; + ingeniose_Adv : Adv ; -- [XXXDX] :: cleverly, ingeniously; + ingeniosus_A : A ; -- [XXXDX] :: clever, ingenious; naturally suited (to); having natural abilities/talents; + ingenium_N_N : N ; -- [EXXDB] :: trick, clever device; + ingeno_V2 : V2 ; -- [XXXES] :: engender; instill by birth; + ingens_A : A ; -- [XXXAX] :: not natural, immoderate; huge, vast, enormous; mighty; remarkable, momentous; + ingenuitas_F_N : N ; -- [XXXCO] :: status/quality of free-born person; nobility of character, modesty, candor; + ingenuus_A : A ; -- [XXXDX] :: natural, indigenous; free-born; noble, generous, frank; + ingerentia_F_N : N ; -- [GXXEK] :: interference; + ingero_V2 : V2 ; -- [XXXBX] :: carry in, throw in; heap; force/thrust/throw upon; + ingigno_V2 : V2 ; -- [XXXDS] :: engender; instill by birth; + inglorius_A : A ; -- [XXXDX] :: obscure, undistinguished; + ingluvies_F_N : N ; -- [XXXDX] :: gullet, jaws; gluttony; + ingrate_Adv : Adv ; -- [XXXDX] :: unpleasantly, without pleasure/delight/gratitude; ungratefully; thanklessly; + ingratiis_Adv : Adv ; -- [XXXDX] :: against wishes (of); unwillingly; + ingratis_Adv : Adv ; -- [XXXDX] :: against the wishes (of ); unwillingly; + ingratus_A : A ; -- [XXXBX] :: unpleasant; ungrateful; thankless; + ingravesco_V : V ; -- [XXXDX] :: grow heavy; increase in force or intensity; + ingravo_V : V ; -- [XXXDX] :: aggravate, make worse, weigh down, oppress, molest; + ingredientium_N_N : N ; -- [GXXEK] :: ingredient; + ingredior_V : V ; -- [XXXAX] :: advance, walk; enter, step/go into; undertake, begin; + ingressus_M_N : N ; -- [XXXDX] :: entry; going in/embarking on (topic/speech); point of entry, approach; steps; + ingruo_V2 : V2 ; -- [XXXDX] :: advance threateningly; make an onslaught on; break in, come violently, force; + inguen_N_N : N ; -- [XXXDX] :: groin; the sexual organs, privy parts; + ingurgito_V : V ; -- [XXXDX] :: pour in liquid in a flood; engulf/plunge in; immerse in (activity); glut/gorge; + ingustatus_A : A ; -- [XXXEC] :: untasted; + inhabilis_A : A ; -- [XXXDX] :: difficult to handle; not fitted, awkward; + inhabilito_V : V ; -- [FXXEM] :: disqualify; incapacitate; + inhabitabilis_A : A ; -- [XXXDO] :: uninhabitable; + inhabitantis_M_N : N ; -- [XXXDS] :: inhabitant, dweller, occupant; + inhabito_V : V ; -- [XXXCO] :: dwell in, inhabit, occupy; wear (garments) (L+S); + inhaeredito_V2 : V2 ; -- [ELXFS] :: appoint an heir; + inhaeredo_V2 : V2 ; -- [ELXFS] :: appoint an heir; + inhaereo_V : V ; -- [XXXDX] :: stick/hold fast/to, cling, adhere, fasten on; haunt, dwell in; get teeth in; + inhaeresco_V : V ; -- [XXXDX] :: begin to adhere, become attached/embedded/glued together; become stuck/fixed; + inhaesitanter_Adv : Adv ; -- [FXXFE] :: unhesitatingly; + inhalatio_F_N : N ; -- [GXXEK] :: inhalation; + inhalo_V : V ; -- [XXXES] :: breathe; breathe on; + inheredito_V2 : V2 ; -- [ELXFS] :: appoint an heir; + inheredo_V2 : V2 ; -- [ELXFS] :: appoint an heir; + inhianter_Adv : Adv ; -- [FXXFE] :: greedily; eagerly; with open mouth; + inhibeo_V : V ; -- [XXXDX] :: restrain, curb; prevent; + inhio_V : V ; -- [XXXDX] :: gape, be open mouthed with astonishment; covet, desire; + inhonestas_F_N : N ; -- [EXXES] :: dishonor; + inhoneste_Adv : Adv ; -- [XXXDX] :: shamefully; dishonorably; + inhonesto_V : V ; -- [XXXDX] :: disgrace; + inhonestus_A : A ; -- [XXXDX] :: shameful, not regarded with honor/respect; degrading (appearance); + inhonorabilis_A : A ; -- [XXXEO] :: unhonored; not conferring honor on a person; without honor (Souter); + inhonorate_Adv : Adv ; -- [EXXFP] :: dishonorably(?); + inhonoratio_F_N : N ; -- [EXXFS] :: dishonoring; dishonor (Vulgate); + inhonoratus_A : A ; -- [XXXDX] :: not honored; + inhonoris_A : A ; -- [EXXES] :: unhonored, without honor; + inhonoro_V2 : V2 ; -- [XXXES] :: dishonor; + inhonorus_A : A ; -- [XXXEC] :: dishonored; + inhorreo_V : V ; -- [XXXES] :: stand on end; bristle up; shiver all over; + inhorresco_V2 : V2 ; -- [XXXDX] :: bristle up; quiver, tremble, shudder at; + inhospitalis_A : A ; -- [XXXES] :: inhospitable; + inhospitalitas_F_N : N ; -- [XXXDX] :: fear/hatred of strangers; + inhospitus_A : A ; -- [XXXDX] :: not welcoming strangers, not providing shelter/subsistence; inhospitable; + inhumanatio_F_N : N ; -- [XXXFS] :: being-made-man; incarnation; + inhumanatus_A : A ; -- [XEXFS] :: made man; incarnate; + inhumane_Adv : Adv ; -- [XXXDX] :: rudely, discourteously; heartlessly, unfeelingly; inhumanly; + inhumanitas_F_N : N ; -- [XXXDX] :: churlishness; + inhumanus_A : A ; -- [XXXDX] :: rude, discourteous, churlish; unfeeling, inhuman; uncultured; superhuman; + inhumatus_A : A ; -- [XXXDX] :: unburied; + inibi_Adv : Adv ; -- [XXXDX] :: in that place/number/activity/connection/respect; at that point in time; + inicio_V2 : V2 ; -- [XXXBX] :: hurl/throw/strike in/into; inject; put on; inspire, instill (feeling, etc); + inidoneitas_F_N : N ; -- [FXXEM] :: unfitness; + inidoneus_A : A ; -- [FXXEM] :: unfit; unsuitable; + inimicitia_F_N : N ; -- [XXXDX] :: unfriendliness, enmity, hostility; + inimico_V : V ; -- [XPXFS] :: make enemies; + inimicus_A : A ; -- [XXXAX] :: unfriendly, hostile, harmful; + inimicus_M_N : N ; -- [XXXDX] :: enemy (personal), foe; + inimitabilis_A : A ; -- [DXXES] :: inimitable; + ininnascor_V : V ; -- [XXXDX] :: be born in; + iniquitas_F_N : N ; -- [XXXDX] :: unfairness, inequality, unevenness (of terrain); + iniquus_A : A ; -- [XXXBX] :: unjust, unfair; disadvantageous, uneven; unkind, hostile; + initiale_N_N : N ; -- [XXXIO] :: original/founding members (of society); + initialis_A : A ; -- [XXXDO] :: initial, original, relating to beginning; primary; + initio_V : V ; -- [XXXDX] :: initiate (into); admit (to) with introductory rites; + initium_N_N : N ; -- [XXXBX] :: beginning, commencement; entrance; [ab initio => from the beginning]; + initus_M_N : N ; -- [XXXDX] :: entry, start; + injecto_V : V ; -- [XPXDS] :: apply; lay on; + injicio_V2 : V2 ; -- [XXXCS] :: hurl/throw/strike in/into; inject; put on; inspire, instill (feeling, etc); + injucundus_A : A ; -- [XXXDX] :: unpleasant; + injudicatus_A : A ; -- [XXXEC] :: undecided; + injungo_V2 : V2 ; -- [XXXBX] :: enjoin, charge, bring/impose upon; unite; join/fasten/attach (to); + injuratus_A : A ; -- [XXXDX] :: unsworn; + injuria_F_N : N ; -- [XXXAX] :: injury; injustice, wrong, offense; insult, abuse; sexual assault; + injurio_V2 : V2 ; -- [FXXEM] :: injure; do injury; wrong, do wrong; + injurior_V : V ; -- [DXXES] :: injure; do injury; wrong, do wrong; + injuriosus_A : A ; -- [XXXDX] :: wrongful, insulting; + injurius_A : A ; -- [XXXDX] :: unjust, harsh; + injuro_V2 : V2 ; -- [DXXFS] :: not to swear; + injurose_Adv : Adv ; -- [FLXEX] :: wrongfully(Collins); + injurus_A : A ; -- [XXXEO] :: unjust; lawless; + injussu_Adv : Adv ; -- [XXXDX] :: without (the) orders (of ) (w/GEN); + injussus_A : A ; -- [XXXDX] :: unbidden, voluntary, of one's own accord; without orders/command; forbidden; + injussus_M_N : N ; -- [XXXDX] :: without orders, unbidden, voluntary, of one's own accord; + injustitia_F_N : N ; -- [XXXEC] :: injustice; severity; + injustus_A : A ; -- [XXXBX] :: unjust, wrongful; severe, excessive; unsuitable; + inlabefactus_A : A ; -- [XXXEC] :: unshaken, firm; + inlabor_V : V ; -- [XXXCO] :: slide/glide/flow (into), move smoothly; fall/sink (on to); + inlaboro_V : V ; -- [XXXFO] :: work (at); (w/DAT); + inlacessitus_A : A ; -- [XXXEC] :: unattacked, unprovoked; + inlacrimo_V : V ; -- [XXXCO] :: weep over/at (with DAT); shed tears; water (eyes); + inlacrimor_V : V ; -- [XXXCO] :: weep over/at (with DAT); shed tears; water (eyes); + inlaesus_A : A ; -- [XXXEC] :: unhurt, uninjured; + inlagatio_F_N : N ; -- [FLXFJ] :: inlawry; return from outlawry; + inlagatus_M_N : N ; -- [FLXFJ] :: inlaw; one accepted back from outlawry; + inlago_V : V ; -- [FLXFJ] :: inlaw; return to law from outlawry; reverse outlawry of person; + inlatio_F_N : N ; -- [EXXCP] :: |contribution/pension; tribute/tax; offering/sacrifice; petition; offer (oath); + inlaudatus_A : A ; -- [XXXEC] :: unpraised, obscure; not to be praised, bad; + inlautus_A : A ; -- [XXXEC] :: unwashed, unclean; + inlecebra_F_N : N ; -- [XXXEC] :: allurement, attraction, charm; a decoy bird; + inlecebrose_Adv : Adv ; -- [XXXEC] :: attractively, enticingly; + inlecebrosus_A : A ; -- [XXXEC] :: attractive, enticing; + inlectus_A : A ; -- [XXXEC] :: unread; + inlectus_M_N : N ; -- [XXXEC] :: enticement; + inlepide_Adv : Adv ; -- [XXXEC] :: inelegantly, rudely; + inlepidus_A : A ; -- [XXXEC] :: inelegant, rude, unmannerly; + inlex_A : A ; -- [XXXFO] :: lawless, obeying no laws; inlex_F_N : N ; -- [XXXCO] :: one who entices/allures; decoy; - inlex_M_N : N ; - inlibatus_A : A ; - inliberalis_A : A ; - inliberalitas_F_N : N ; - inliberaliter_Adv : Adv ; - inlicitator_M_N : N ; - inlicitus_A : A ; - inlido_V2 : V2 ; - inlimis_A : A ; - inlino_V2 : V2 ; - inliquefactus_A : A ; - inlitteratus_A : A ; - inlocabilis_A : A ; - inlotus_A : A ; - inluceo_V : V ; - inluminatio_F_N : N ; - inlumino_V2 : V2 ; - inlusio_F_N : N ; - inlusor_M_N : N ; - inlusorius_A : A ; - inlustre_Adv : Adv ; - inlustris_A : A ; - inlustro_V2 : V2 ; - inlutus_A : A ; - inmaculatus_A : A ; - inmanis_A : A ; - inmanitas_F_N : N ; - inmediatus_A : A ; - inmemor_A : A ; - inmemoratio_F_N : N ; - inmemoratum_N_N : N ; - inmemoratus_A : A ; - inmensum_Adv : Adv ; - inmensurabilis_A : A ; - inmensus_A : A ; - inmeritus_A : A ; - inmissio_F_N : N ; - inmitto_V2 : V2 ; - inmobilis_A : A ; - inmodicus_A : A ; - inmolaticius_A : A ; - inmolatitius_A : A ; - inmortalis_A : A ; - inmortalis_M_N : N ; - inmortalitas_F_N : N ; - inmunditia_F_N : N ; - inmundus_A : A ; - inmunis_A : A ; - inmutabilis_A : A ; - inmutatio_F_N : N ; - innabilis_A : A ; - innascibilitas_F_N : N ; - innascor_V : V ; - innato_V : V ; - innatus_A : A ; - innavigabilis_A : A ; - innecessitas_F_N : N ; - innecto_V2 : V2 ; - innitor_V : V ; - inno_V : V ; - innocens_A : A ; - innocentia_F_N : N ; - innoco_V2 : V2 ; - innocuus_A : A ; - innotesco_V2 : V2 ; - innovatio_F_N : N ; - innovatus_A : A ; - innovo_V2 : V2 ; - innoxius_A : A ; - innubilus_A : A ; - innubo_V2 : V2 ; - innubus_A : A ; - innuleus_M_N : N ; - innumerabilis_A : A ; - innumeralis_A : A ; - innumerus_A : A ; - innuo_V2 : V2 ; - innuptus_A : A ; - innutrio_V2 : V2 ; - innutritus_A : A ; - inobaudientia_F_N : N ; - inobaudio_V : V ; - inobauditio_F_N : N ; - inobedibilis_A : A ; - inobediens_A : A ; - inobediens_F_N : N ; - inobedienter_Adv : Adv ; - inobedientia_F_N : N ; - inobedientiarius_M_N : N ; - inobedio_V : V ; - inobedus_A : A ; - inoblitus_A : A ; - inoboedibilis_A : A ; - inoboediens_A : A ; - inoboediens_F_N : N ; - inoboedienter_Adv : Adv ; - inoboedientia_F_N : N ; - inoboedientiarius_M_N : N ; - inoboedio_V : V ; - inoboedus_A : A ; - inobrutus_A : A ; - inobservabilis_A : A ; - inobservantia_F_N : N ; - inobservatus_A : A ; - inocciduus_A : A ; - inoffensus_A : A ; - inofficiosus_A : A ; - inolens_A : A ; - inolesco_V2 : V2 ; - inominatus_A : A ; - inopia_F_N : N ; - inopinabilis_A : A ; - inopinabiliter_Adv : Adv ; - inopinans_A : A ; - inopinatus_A : A ; - inopiniabilis_A : A ; - inopinus_A : A ; - inops_A : A ; - inoratus_A : A ; - inordinaliter_Adv : Adv ; - inordinate_Adv : Adv ; - inordinatim_Adv : Adv ; - inordinatio_F_N : N ; - inordinatum_N_N : N ; - inordinatus_A : A ; - inormis_A : A ; - inornate_Adv : Adv ; - inornatus_A : A ; - inpaciencia_F_N : N ; - inpages_F_N : N ; - inpar_A : A ; - inpassibilis_A : A ; - inpassibilitas_F_N : N ; - inpassibiliter_Adv : Adv ; - inpatiencia_F_N : N ; - inpatientia_F_N : N ; - inpedimentum_N_N : N ; - inpedio_V2 : V2 ; - inpeditus_A : A ; - inpello_V2 : V2 ; - inpendium_N_N : N ; - inpensa_F_N : N ; - inpensus_A : A ; - inperfectio_F_N : N ; - inperfectus_A : A ; - inperialis_A : A ; - inpetiginosus_A : A ; - inpetigo_F_N : N ; - inpeto_V2 : V2 ; - inpetro_V : V ; - inpinguo_V : V ; - inpius_A : A ; - inplano_V2 : V2 ; - inplico_V2 : V2 ; - 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_V2 : V2 ; - inprobitas_F_N : N ; - inprobo_V2 : V2 ; - inprobulus_A : A ; - inprobus_A : A ; - inpropero_V : V ; - inproportionabilis_A : A ; - inproportionabilit_Adv : Adv ; - inproportionaliter_Adv : Adv ; - inproportionatus_A : A ; - inprovisus_A : A ; - inprudens_A : A ; - inprudenter_Adv : Adv ; - inprudentia_F_N : N ; - inpubes_A : A ; - inpubis_A : A ; - inpudens_A : A ; - inpudenter_Adv : Adv ; - inpudentia_F_N : N ; - inpulsio_F_N : N ; - inpune_Adv : Adv ; - inpunis_A : A ; - inpuritas_F_N : N ; - inpuritia_F_N : N ; - inputribilis_A : A ; - inputribiliter_Adv : Adv ; - inquantum_Adv : Adv ; - inquiam_V : V ; - inquies_A : A ; - inquieto_V2 : V2 ; - inquietudo_F_N : N ; - inquietus_A : A ; - inquilina_F_N : N ; - inquilinatus_M_N : N ; - inquilinus_M_N : N ; - inquinamentum_N_N : N ; - inquinatio_F_N : N ; - inquino_V : V ; - inquiro_V2 : V2 ; - inquisicio_F_N : N ; - inquisitio_F_N : N ; - inquisitor_M_N : N ; - inquit_V0 : V ; - inradiatio_F_N : N ; - inrasus_A : A ; - inrationabile_N_N : N ; - inrationabilis_A : A ; - inrationabiliter_Adv : Adv ; - inrational_N_N : N ; - inrationalis_A : A ; - inraucesco_V : V ; - inrecogitatio_F_N : N ; - inrecordabilis_A : A ; - inrecuperabilis_A : A ; - inrecusabilis_A : A ; - inrecusabiliter_Adv : Adv ; - inreductibilis_A : A ; - inreformabilis_A : A ; - inrefragabilis_A : A ; - inrefragabiliter_Adv : Adv ; - inrefrenabilis_A : A ; - inregressibilis_A : A ; - inregularis_A : A ; - inregularitas_F_N : N ; - inreligatus_A : A ; - inreligiose_Adv : Adv ; - inreligiosus_A : A ; - inremeabilis_A : A ; - inremediabilis_A : A ; - inremissibilis_A : A ; - inremunerabilis_A : A ; - inremuneratus_A : A ; - inreparabilis_A : A ; - inrepertus_A : A ; - inreprehensibilis_A : A ; - inreprehensus_A : A ; - inrepticius_A : A ; - inreptio_F_N : N ; - inrequietus_A : A ; - inresectus_A : A ; - inresolutus_A : A ; - inretortus_A : A ; - inreverens_A : A ; - inreverenter_Adv : Adv ; - inreverentia_F_N : N ; - inrevocabilis_A : A ; - inrevocabilus_A : A ; - inrevocatus_A : A ; - inrideo_V : V ; - inridicule_Adv : Adv ; - inrigatio_F_N : N ; - inrigo_V2 : V2 ; - inriguus_A : A ; - inrisio_F_N : N ; - inritamentum_N_N : N ; - inritator_M_N : N ; - inritatrix_F_N : N ; - inritus_A : A ; - inrogatio_F_N : N ; - inrogo_V2 : V2 ; - inrumator_M_N : N ; - inrumo_V2 : V2 ; - inrumpo_V2 : V2 ; - inruo_V2 : V2 ; - inruptus_A : A ; - insalubris_A : A ; - insalutatus_A : A ; - insanabilis_A : A ; - insane_Adv : Adv ; - insania_F_N : N ; - insanio_V2 : V2 ; - insaniter_Adv : Adv ; - insanum_Adv : Adv ; - insanus_A : A ; - insatiabilis_A : A ; - insatiatus_A : A ; - inscendo_V2 : V2 ; - insciens_A : A ; - inscientia_F_N : N ; - inscitia_F_N : N ; - inscitus_A : A ; - inscius_A : A ; - inscribo_V2 : V2 ; - inscriptio_F_N : N ; - inscrutabilis_A : A ; - insculpo_V2 : V2 ; - inseco_V : V ; - inseco_V2 : V2 ; - insectatio_F_N : N ; - insecticidium_N_N : N ; - insecto_V : V ; - insector_V : V ; - insedabiliter_Adv : Adv ; - insemel_Adv : Adv ; - insenesco_V2 : V2 ; - insensatus_A : A ; - insensibilis_A : A ; - inseparabilis_A : A ; - inseparabiliter_Adv : Adv ; - inseparatus_A : A ; - insepultus_A : A ; - insequo_V : V ; - insequor_V : V ; - insero_V2 : V2 ; - inserto_V : V ; - inservio_V2 : V2 ; - inservo_V2 : V2 ; - insibilo_V : V ; - insicium_N_N : N ; - insideo_V : V ; - insidia_F_N : N ; - insidiator_M_N : N ; - insidio_V : V ; - insidior_V : V ; - insidiose_Adv : Adv ; - insidiosus_A : A ; - insido_V2 : V2 ; - insigne_N_N : N ; - insignio_V2 : V2 ; - insignis_A : A ; - insile_N_N : N ; - insilio_V2 : V2 ; - insillo_V2 : V2 ; - insimul_Adv : Adv ; - insimulo_V : V ; - insincerus_A : A ; - insinuatio_F_N : N ; - insinuo_V : V ; - insipidus_A : A ; - insipiens_A : A ; - insipienter_Adv : Adv ; - insipientia_F_N : N ; - insipio_V : V ; - insipio_V2 : V2 ; - insipo_V2 : V2 ; - insisto_V2 : V2 ; - insiticius_A : A ; - insitio_F_N : N ; - insitivus_A : A ; - insito_V2 : V2 ; - insitor_M_N : N ; - insitus_A : A ; - insociabilis_A : A ; - insolabiliter_Adv : Adv ; - insolens_A : A ; - insolenter_Adv : Adv ; - insolentia_F_N : N ; - insolesco_V : V ; - insolidus_A : A ; - insolitus_A : A ; - insolo_V2 : V2 ; - insolubilis_A : A ; - insomnis_A : A ; - insomnium_N_N : N ; - insono_V : V ; - insons_A : A ; - insopitus_A : A ; - insordesco_V : V ; - inspargo_V2 : V2 ; - inspectio_F_N : N ; - inspecto_V : V ; - insperans_A : A ; - insperatus_A : A ; - inspergo_V2 : V2 ; - inspicio_V2 : V2 ; - inspico_V2 : V2 ; - inspiratio_F_N : N ; - inspiro_V : V ; - inspoliatus_A : A ; - inspuo_V2 : V2 ; - insquequo_Adv : Adv ; - instabilis_A : A ; - instans_A : A ; - instanter_Adv : Adv ; - instantia_F_N : N ; - instar_N : N ; - instauratio_F_N : N ; - instaurativus_A : A ; - instauro_V : V ; - insterno_V2 : V2 ; - instigo_V : V ; - instillo_V : V ; - instimulo_V : V ; - instinctor_M_N : N ; - instinctus_A : A ; - instinctus_M_N : N ; - instita_F_N : N ; - institio_F_N : N ; - institor_M_N : N ; - institoria_F_N : N ; - institorium_N_N : N ; - institorius_A : A ; - 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_V2 : V2 ; - instructivus_A : A ; - instructor_M_N : N ; - instructus_A : A ; - instructus_M_N : N ; - instrumentalis_A : A ; - instrumentum_N_N : N ; - instruo_V2 : V2 ; - insuadibilis_A : A ; - insuavis_A : A ; - insubidus_A : A ; - insudo_V : V ; - insuefactus_A : A ; - insuesco_V2 : V2 ; - insuetus_A : A ; - insufficiens_A : A ; - insufficientia_F_N : N ; - insufflo_V2 : V2 ; - insuflo_V2 : V2 ; - insula_F_N : N ; - insulanus_M_N : N ; - insulinum_N_N : N ; - insulio_V2 : V2 ; - insulsitas_F_N : N ; - insulsus_A : A ; - insulta_F_N : N ; - insultatio_F_N : N ; - insulto_V : V ; - insultuosus_A : A ; - insultus_M_N : N ; - insum_V : V ; - insumo_V2 : V2 ; - insuo_V2 : V2 ; - insuper_Acc_Prep : Prep ; - insuper_Adv : Adv ; - insuperabilis_A : A ; - insupo_V2 : V2 ; - insurgo_V2 : V2 ; - insusurro_V : V ; - intabesco_V2 : V2 ; - intactus_A : A ; - intaminabilis_A : A ; - intaminatus_A : A ; - intantum_Adv : Adv ; - intectus_A : A ; - integellus_A : A ; - integer_A : A ; - integer_M_N : N ; - intego_V2 : V2 ; - integrale_N_N : N ; - integralis_A : A ; - integrasco_V : V ; - integratio_F_N : N ; - integre_Adv : Adv ; - integrismus_M_N : N ; - integrista_M_N : N ; - integritas_F_N : N ; - integro_V : V ; - integumentum_N_N : N ; - intellectibilis_A : A ; - intellectualis_A : A ; - intellectualiter_Adv : Adv ; - intellectus_M_N : N ; - intellegens_A : A ; - intellegentia_F_N : N ; - intellegibilis_A : A ; - intellego_V2 : V2 ; - intelligentia_F_N : N ; - intelligo_V : V ; - intemeratus_A : A ; - intemperans_A : A ; - intemperanter_Adv : Adv ; - intemperantia_F_N : N ; - intemperate_Adv : Adv ; - intemperatus_A : A ; - intemperia_F_N : N ; - intemperies_F_N : N ; - intempestivus_A : A ; - intempestus_A : A ; - intemptatus_A : A ; - intendo_V2 : V2 ; - intensio_F_N : N ; - intensitas_F_N : N ; - intensivus_A : A ; - intensus_A : A ; - intente_Adv : Adv ; - intentio_F_N : N ; - intentionalis_A : A ; - intentionaliter_Adv : Adv ; - intento_V : V ; - intentus_A : A ; - intepeo_V : V ; - intepesco_V2 : V2 ; - inter_Acc_Prep : Prep ; - interactio_F_N : N ; - interamentum_N_N : N ; - interaneum_N_N : N ; - interaneus_A : A ; - intercalarius_A : A ; - intercalo_V : V ; - intercapedo_F_N : N ; - intercedo_V2 : V2 ; - interceptor_M_N : N ; - intercessio_F_N : N ; - intercessor_M_N : N ; - intercido_V2 : V2 ; - intercino_V : V ; - intercipio_V2 : V2 ; - intercludo_V2 : V2 ; - intercolumnium_N_N : N ; - intercurso_V : V ; - intercursus_M_N : N ; - intercus_A : A ; - interdico_V2 : V2 ; - interdictum_N_N : N ; - interdie_Adv : Adv ; - interdiu_Adv : Adv ; - interdius_Adv : Adv ; - interductus_M_N : N ; - interdum_Adv : Adv ; - interea_Adv : Adv ; - interemo_V2 : V2 ; - 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_V2 : V2 ; - interfio_V : V ; - interfluo_V2 : V2 ; - interfor_V : V ; - interfulgens_A : A ; - interfusus_A : A ; - intergerivus_A : A ; - interibi_Adv : Adv ; - intericio_V2 : V2 ; - interim_Adv : Adv ; - interimisticus_A : A ; - interimo_V2 : V2 ; - interior_A : A ; - interior_M_N : N ; - interitus_M_N : N ; - interjaceo_V : V ; - interjacio_V2 : V2 ; - interjectio_F_N : N ; - interjectus_A : A ; - interjicio_V2 : V2 ; - interlabor_V : V ; - interlaqueatus_A : A ; - interlino_V2 : V2 ; - interloquor_V : V ; - interluceo_V : V ; - interludium_N_N : N ; - interludo_V2 : V2 ; - interlunium_N_N : N ; - interluo_V2 : V2 ; - intermedius_A : A ; - intermenstruum_N_N : N ; - intermenstruus_A : A ; - intermeo_V2 : V2 ; - intermico_V2 : V2 ; - interminabilis_A : A ; - interminabiliter_Adv : Adv ; - interminatus_A : A ; - interminor_V : V ; - intermisceo_V : V ; - intermissio_F_N : N ; - intermitto_V2 : V2 ; - intermorior_V : V ; - intermuralis_A : A ; - internascor_V : V ; - internationalis_A : A ; - internatus_M_N : N ; - internecinus_A : A ; - internecio_F_N : N ; - internecivus_A : A ; - internicio_F_N : N ; - internicivus_A : A ; - internista_M_N : N ; - interniteo_V : V ; - internodium_N_N : N ; - internosco_V2 : V2 ; - internuntius_A : A ; - internuntius_M_N : N ; - internus_A : A ; - interordinium_N_N : N ; - interpellatio_F_N : N ; - interpello_V : V ; - interpolo_V2 : V2 ; - interpono_V2 : V2 ; - interpositio_F_N : N ; + inlex_M_N : N ; -- [XXXCO] :: one who entices/allures; decoy; + inlibatus_A : A ; -- [XXXCO] :: intact, undiminished, kept/left whole/entire; unimpaired; + inliberalis_A : A ; -- [XXXCO] :: ill-bred, ignoble, unworthy/unsuited to free man; niggardly/mean/ungenerous; + inliberalitas_F_N : N ; -- [XXXFO] :: stinginess, meanness, lack of generosity; + inliberaliter_Adv : Adv ; -- [XXXEO] :: stingily, meanly, ungenerously; in manner unworthy of free man; + inlicitator_M_N : N ; -- [XXXEC] :: sham bidder at an auction, a puffer, shill; + inlicitus_A : A ; -- [XXXEC] :: not allowed, illegal; + inlido_V2 : V2 ; -- [XXXBO] :: strike/beat/dash/push against/on; injure by crushing; drive (teeth into); + inlimis_A : A ; -- [XXXEC] :: free from mud, clean; + inlino_V2 : V2 ; -- [XXXDX] :: smear over; anoint; + inliquefactus_A : A ; -- [XXXEC] :: molten, liquefied; + inlitteratus_A : A ; -- [XXXEC] :: ignorant, illiterate; + inlocabilis_A : A ; -- [XXXDX] :: unable to be placed (for marriage); + inlotus_A : A ; -- [XXXEC] :: unwashed, unclean; + inluceo_V : V ; -- [XXXEO] :: illuminate, shine on; + inluminatio_F_N : N ; -- [XXXFO] :: glory, illustriousness; enlightening (Ecc); lighting/illumination; + inlumino_V2 : V2 ; -- [XXXCO] :: illuminate, give light to; light up; reveal/throw light on; brighten (w/color); + inlusio_F_N : N ; -- [DXXCS] :: irony; mocking, jeering; illusion; deceit; + inlusor_M_N : N ; -- [DXXES] :: scoffer; mocker; + inlusorius_A : A ; -- [DXXES] :: ironical; of a scoffer/mocking character; + inlustre_Adv : Adv ; -- [XXXEO] :: with clarity; clearly, distinctly, perspicuously (L+S); + inlustris_A : A ; -- [XXXBO] :: bright, shining, brilliant; clear, lucid; illustrious, distinguished, famous; + inlustro_V2 : V2 ; -- [XXXBO] :: illuminate, light up; give glory; embellish; make clear, elucidate; enlighten; + inlutus_A : A ; -- [XXXEC] :: unwashed, unclean; + inmaculatus_A : A ; -- [XXXDP] :: immaculate/unstained/spotless/without blemish; undefiled/pure/chaste; blameless; + inmanis_A : A ; -- [XXXAO] :: huge/vast/immense/tremendous/extreme/monstrous; inhuman/savage/brutal/frightful; + inmanitas_F_N : N ; -- [XXXCO] :: brutality, savage character, frightfulness; huge/vast size; barbarity; monster; + inmediatus_A : A ; -- [EXXEP] :: absolute (contraries), non-mediated; next; + inmemor_A : A ; -- [XXXBO] :: forgetful (by nature); lacking memory; heedless (of obligations/consequences); + inmemoratio_F_N : N ; -- [EXXFS] :: forgetfulness, unmindfulness; + inmemoratum_N_N : N ; -- [XXXEW] :: things (pl.) not told/related; things not mentioned; + inmemoratus_A : A ; -- [XXXEO] :: unmentioned; hitherto untold; not yet related, new (L+S); + inmensum_Adv : Adv ; -- [XXXDO] :: to an enormous extent/degree; + inmensurabilis_A : A ; -- [EXXFP] :: immeasurable; + inmensus_A : A ; -- [XXXBO] :: immeasurable, immense/vast/boundless/unending; infinitely great; innumerable; + inmeritus_A : A ; -- [XXXCO] :: undeserving; undeserved, unmerited; + inmissio_F_N : N ; -- [XXXEO] :: insertion/engrafting, action of putting/sending in, of allowing to enter; + inmitto_V2 : V2 ; -- [XXXBX] :: send in/to/into/against; cause to go; insert; hurl/throw in; let go/in; allow; + inmobilis_A : A ; -- [XXXBO] :: |unwieldy/cumbersome; imperturbable/emotionally unmoved; steadfast; slow to act; + inmodicus_A : A ; -- [FXXDX] :: beyond measure, immoderate, excessive; + inmolaticius_A : A ; -- [DXXES] :: of/for a sacrifice; + inmolatitius_A : A ; -- [DXXES] :: of/for a sacrifice; + inmortalis_A : A ; -- [XXXBO] :: immortal, not subject to death; eternal, everlasting, perpetual; imperishable; + inmortalis_M_N : N ; -- [XEXDO] :: immortal, god; + inmortalitas_F_N : N ; -- [XXXCO] :: immortality; divinity, being a god; indestructibility; permanence; remembrance; + inmunditia_F_N : N ; -- [XXXDO] :: dirtiness/untidiness; foulness (moral); lust/wantonness; dirty conditions (pl.); + inmundus_A : A ; -- [XXXDX] :: dirty, filthy, foul; unclean. impure; + inmunis_A : A ; -- [XXXDX] :: free from taxes/tribute, exempt; immune; + inmutabilis_A : A ; -- [XXXCO] :: unchangeable/unalterable; (rarely) liable to be changed; + inmutatio_F_N : N ; -- [XXXCO] :: change, alteration, process of changing; substitution/replacement; + innabilis_A : A ; -- [XXXDX] :: that cannot be swum; + innascibilitas_F_N : N ; -- [EXXCP] :: state of being unable to be born; + innascor_V : V ; -- [XXXDX] :: be born (in or on); + innato_V : V ; -- [XXXDX] :: swim (in or on); swim (into); float upon; + innatus_A : A ; -- [XXXDX] :: natural, inborn; + innavigabilis_A : A ; -- [XXXDX] :: unnavigable; + innecessitas_F_N : N ; -- [HXXFX] :: non-necessity (JFW); + innecto_V2 : V2 ; -- [XXXDX] :: tie, fasten (to); devise, weave (plots); + innitor_V : V ; -- [XXXDX] :: lean/rest on (w/DAT), be supported by (w/ABL); + inno_V : V ; -- [XXXDX] :: swim or float (in or on); sail (on); + innocens_A : A ; -- [XXXBX] :: harmless, innocent; virtuous, upright; + innocentia_F_N : N ; -- [XXXBX] :: harmlessness; innocence, integrity; + innoco_V2 : V2 ; -- [XAXES] :: harrow in; + innocuus_A : A ; -- [XXXDX] :: innocent; harmless; + innotesco_V2 : V2 ; -- [XXXDX] :: become known, be made conspicuous; + innovatio_F_N : N ; -- [DXXES] :: renewal; alteration; innovation; + innovatus_A : A ; -- [DXXES] :: renewed; altered; + innovo_V2 : V2 ; -- [XXXDO] :: alter, make a innovation in; renew, restore; return to a thing (L+S); + innoxius_A : A ; -- [XXXDX] :: harmless, innocuous; unhurt, unharmed; + innubilus_A : A ; -- [XXXEC] :: unclouded, clear; + innubo_V2 : V2 ; -- [XXXDX] :: marry (into a family); + innubus_A : A ; -- [XXXDX] :: unmarried; + innuleus_M_N : N ; -- [XAXEO] :: fawn; young of the deer; + innumerabilis_A : A ; -- [XXXDX] :: innumerable, countless, numberless; without number; immense; + innumeralis_A : A ; -- [XXXEC] :: countless, innumerable; + innumerus_A : A ; -- [XXXDX] :: innumerable, countless, numberless; without number; immense; + innuo_V2 : V2 ; -- [XXXDX] :: nod or beckon (to); + innuptus_A : A ; -- [XXXDX] :: unmarried; + innutrio_V2 : V2 ; -- [XXXES] :: nourish; + innutritus_A : A ; -- [DXXES] :: nourished; unnourished; + inobaudientia_F_N : N ; -- [EXXFP] :: disobedience; + inobaudio_V : V ; -- [XXXFO] :: disobey; not listen/pay attention; (in+obaudio); + inobauditio_F_N : N ; -- [EXXFP] :: disobedience; + inobedibilis_A : A ; -- [EEXEP] :: disobedient; + inobediens_A : A ; -- [EEXCP] :: disobedient; + inobediens_F_N : N ; -- [EEXEP] :: disobedience; + inobedienter_Adv : Adv ; -- [EEXEP] :: disobediently; + inobedientia_F_N : N ; -- [EEXDP] :: disobedience; + inobedientiarius_M_N : N ; -- [EEXFP] :: disobedient person; + inobedio_V : V ; -- [EXXEP] :: disobey; not listen/pay attention; + inobedus_A : A ; -- [EXXEP] :: disobedient; + inoblitus_A : A ; -- [XXXEC] :: mindful; + inoboedibilis_A : A ; -- [EEXEP] :: disobedient; + inoboediens_A : A ; -- [EEXCP] :: disobedient; + inoboediens_F_N : N ; -- [EEXEP] :: disobedience; + inoboedienter_Adv : Adv ; -- [EEXEP] :: disobediently; + inoboedientia_F_N : N ; -- [EEXDP] :: disobedience; + inoboedientiarius_M_N : N ; -- [EEXFP] :: disobedient person; + inoboedio_V : V ; -- [EXXEP] :: disobey; not listen/pay attention; + inoboedus_A : A ; -- [EXXEP] :: disobedient; + inobrutus_A : A ; -- [XXXEC] :: not overwhelmed; + inobservabilis_A : A ; -- [XXXDX] :: difficult to trace; + inobservantia_F_N : N ; -- [XXXEC] :: negligence, carelessness; + inobservatus_A : A ; -- [XXXDX] :: unobserved; + inocciduus_A : A ; -- [XXXEC] :: never setting; + inoffensus_A : A ; -- [XXXDX] :: free from hindrance; uninterrupted; + inofficiosus_A : A ; -- [XXXEC] :: undutiful, disobliging; + inolens_A : A ; -- [XXXEC] :: odorless, without smell; + inolesco_V2 : V2 ; -- [XXXDX] :: grow in or on; + inominatus_A : A ; -- [XXXEC] :: inauspicious, unlucky; + inopia_F_N : N ; -- [XXXBX] :: lack, need; poverty, destitution, dearth, want, scarcity; + inopinabilis_A : A ; -- [XXXFS] :: inconceivable; G:surprising; paradoxical; + inopinabiliter_Adv : Adv ; -- [XXXFS] :: unexpectedly; + inopinans_A : A ; -- [XXXDX] :: unaware, off guard; unexpected, not expecting; + inopinatus_A : A ; -- [XXXDX] :: unexpected, unforeseen, surprising; + inopiniabilis_A : A ; -- [XXXES] :: not to be supposed; inconceivable; + inopinus_A : A ; -- [XXXDX] :: unexpected; + inops_A : A ; -- [XXXDX] :: weak, poor, needy, helpless; lacking, destitute (of), meager; + inoratus_A : A ; -- [XXXEC] :: not brought forward and heard; + inordinaliter_Adv : Adv ; -- [DXXFS] :: irregularly; at irregular intervals; without regard for rules; + inordinate_Adv : Adv ; -- [XXXEO] :: irregularly; at irregular intervals; without regard for rules; + inordinatim_Adv : Adv ; -- [DXXFS] :: irregularly; at irregular intervals; without regard for rules; + inordinatio_F_N : N ; -- [DXXES] :: disorder; + inordinatum_N_N : N ; -- [XXXES] :: disorder; + inordinatus_A : A ; -- [XXXCO] :: |occurring irregularly; in confusion; W:not in formation (troops); + inormis_A : A ; -- [XXXFS] :: immoderate; enormous; + inornate_Adv : Adv ; -- [XXXEO] :: plainly; with lack of (stylistic) ornament; + inornatus_A : A ; -- [XXXDX] :: unadorned; uncelebrated; + inpaciencia_F_N : N ; -- [FXXCO] :: impatience; inability/unwillingness to endure/bear; impassivity/lack of emotion; + inpages_F_N : N ; -- [XTXEO] :: crosspiece; batten (on door, etc.); framework/border around panel of door; + inpar_A : A ; -- [XXXAO] :: unequal (size/number/rank/esteem); uneven, odd; inferior; not a match (for); + inpassibilis_A : A ; -- [DXXES] :: passionless; incapable of passion/suffering; insensible; + inpassibilitas_F_N : N ; -- [DEXES] :: incapacity for suffering, impassibility; apathy, insensibility (Def); + inpassibiliter_Adv : Adv ; -- [DXXFS] :: without passion; + inpatiencia_F_N : N ; -- [FXXCO] :: impatience; inability/unwillingness to endure/bear; impassivity/lack of emotion; + inpatientia_F_N : N ; -- [XXXCO] :: impatience; inability/unwillingness to endure/bear; impassivity/lack of emotion; + inpedimentum_N_N : N ; -- [XXXDX] :: hindrance, impediment; heavy baggage (of an army) (pl.); + inpedio_V2 : V2 ; -- [FXXDX] :: hinder, impede, hamper, obstruct, prevent from (w/ne, quin, or quominus); + inpeditus_A : A ; -- [XXXBO] :: hindered/obstructed/encumbered/hampered; difficult/impeded; inaccessible; + inpello_V2 : V2 ; -- [XXXAO] :: drive/persuade/impel; urge on/action; push/thrust/strike against; overthrow; + inpendium_N_N : N ; -- [XXXCO] :: expense, expenditure, payment; cost, outlay; + inpensa_F_N : N ; -- [FXXDX] :: expense, outlay, cost; + inpensus_A : A ; -- [FXXDX] :: immoderate, excessive; + inperfectio_F_N : N ; -- [DXXFS] :: imperfection; + inperfectus_A : A ; -- [XXXCO] :: unfinished, incomplete; imperfect; not complete in every respect; undigested; + inperialis_A : A ; -- [XXXEO] :: imperial; of the (Roman) emperor; + inpetiginosus_A : A ; -- [XBXFO] :: suffering from impetigo; (pustular skin disease, scaly skin eruption); + inpetigo_F_N : N ; -- [XBXCO] :: impetigo; (pustular skin disease, scaly skin eruption); (also on bark of fig); + inpeto_V2 : V2 ; -- [XXXEO] :: attack, assail; rush upon (L+S); accuse; + inpetro_V : V ; -- [XXXDX] :: obtain/procure (by asking/request/entreaty); succeed/achieve/be granted; obtain; + inpinguo_V : V ; -- [XXXES] :: fatten, make fat/sleek; become fat/thick; anoint (with oil) (Douay); + inpius_A : A ; -- [XXXCO] :: wicked, impious, irreverent; showing no regard for divinely imposed moral duty; + inplano_V2 : V2 ; -- [EXXFS] :: deceive, delude; lead astray; + inplico_V2 : V2 ; -- [XXXAO] :: ||||(PASS) be intimately associated/connected/related/bound; be a tangle/maze; + inpono_V2 : V2 ; -- [XXXDX] :: impose, put upon; establish; inflict; assign/place in command; set; + inpos_A : A ; -- [XXXDX] :: not in control/possession (of mind w/animi/mentis, demented); not responsible; + inpotens_A : A ; -- [FXXDX] :: powerless, impotent, wild, headstrong; having no control (over), incapable (of); + inpotentia_F_N : N ; -- [FXXDX] :: weakness; immoderate behavior, violence; + inprecatio_F_N : N ; -- [XXXEO] :: calling down of curses; imprecation, invoking evil/divine intervention; + inpressio_F_N : N ; -- [XXXCO] :: |impression, impressed mark; mark by pressure/stamping; edition of book (Cal); + inprimis_Adv : Adv ; -- [XXXBO] :: in the first place, first, chiefly; especially, above all, more than any other; + inprimo_V2 : V2 ; -- [FXXDX] :: impress, imprint; press upon; stamp; + inprobitas_F_N : N ; -- [XXXCO] :: wickedness unscrupulousness, dishonesty; shamelessness; want of principle; + inprobo_V2 : V2 ; -- [XXXCO] :: disapprove of, express disapproval of, condemn; reject; + inprobulus_A : A ; -- [XXXFO] :: somewhat audacious/impudent; somewhat wicked (Cas); + inprobus_A : A ; -- [XXXAO] :: wicked/flagrant; morally unsound; greedy/rude; immoderate; disloyal; shameless; + inpropero_V : V ; -- [XXXFS] :: hasten into, enter hastily; + inproportionabilis_A : A ; -- [FXXFF] :: unproportionate, not proportionate, out of proportion, disproportionate; + inproportionabilit_Adv : Adv ; -- [FXXFF] :: not proportionally, out of proportion; + inproportionaliter_Adv : Adv ; -- [FXXFF] :: not proportionally, out of proportion; + inproportionatus_A : A ; -- [FXXEF] :: unproportionate, not proportionate, out of proportion, disproportionate; + inprovisus_A : A ; -- [XXXCO] :: unforeseen/unexpected; [de improviso => unexpectedly/suddenly, without warning]; + inprudens_A : A ; -- [XXXBO] :: ignorant; unaware; unintentional, unsuspecting; foolish/incautious/unthinking; + inprudenter_Adv : Adv ; -- [XXXCO] :: rashly, unwisely; carelessly, unmindfully; unintentionally, without design; + inprudentia_F_N : N ; -- [XXXCO] :: ignorance; lack of knowledge/thought/awareness/judgment/foresight/intention; + inpubes_A : A ; -- [XXXCO] :: below age of puberty, under age, youthful; beardless; chaste/virgin/celibate; + inpubis_A : A ; -- [XXXCO] :: below age of puberty, under age, youthful; beardless; chaste/virgin/celibate; + inpudens_A : A ; -- [FXXDX] :: shameless, impudent; + inpudenter_Adv : Adv ; -- [FXXDX] :: shamelessly, impudently; + inpudentia_F_N : N ; -- [FXXDX] :: shamelessness; effrontery; + inpulsio_F_N : N ; -- [XXXDS] :: external pressure; influence; incitement; + inpune_Adv : Adv ; -- [XXXCO] :: with impunity; without punishment/retribution/restraint/consequences/harm; + inpunis_A : A ; -- [XXXFO] :: unpunished; + inpuritas_F_N : N ; -- [XXXFO] :: impurity; foulness; + inpuritia_F_N : N ; -- [XXXFO] :: impurity; foulness; + inputribilis_A : A ; -- [DXXES] :: incorruptible, not liable to decay; + inputribiliter_Adv : Adv ; -- [DXXFS] :: incorruptibly; + inquantum_Adv : Adv ; -- [FXXEZ] :: in as much (JFW - widespread medieval); + inquiam_V : V ; -- [XXXAX] :: say (defective); (postpositive - for direct quote); [inquiens => saying]; + inquies_A : A ; -- [XXXDX] :: restless, impatient; full of tumult; + inquieto_V2 : V2 ; -- [XXXBO] :: disturb, trouble, molest, harass; press legal claim against; fidget, twiddle; + inquietudo_F_N : N ; -- [XXXFO] :: disturbance, troubles; outbreak of disorder; + inquietus_A : A ; -- [XXXDX] :: rest/sleep-less, finding/taking no rest; constantly active/in motion; unquiet; + inquilina_F_N : N ; -- [XXXFO] :: inhabitant (female) of same house, tenant, lodger; inhabitant, denizen; + inquilinatus_M_N : N ; -- [XXXFS] :: sojourn; inhabit place not of one's own; + inquilinus_M_N : N ; -- [XXXCO] :: inhabitant of same house, tenant, lodger; inhabitant, denizen; type of serf; + inquinamentum_N_N : N ; -- [XXXFO] :: impurity, filth, that which makes foul/impure; defilement (Erasmus); + inquinatio_F_N : N ; -- [GXXEK] :: pollution; + inquino_V : V ; -- [XXXDX] :: daub; stain, pollute; soil; "smear"; + inquiro_V2 : V2 ; -- [XXXBX] :: examine, investigate, scrutinize; seek grounds for accusation; search, seek; + inquisicio_F_N : N ; -- [DXXFS] :: thoughtlessness; inconsiderateness; carelessness; + inquisitio_F_N : N ; -- [XXXBO] :: search, hunting out; inquiry, investigation; spying; collecting evidence; + inquisitor_M_N : N ; -- [XXXCO] :: investigator, researcher; who inquires/collects evidence; inspector (goods); + inquit_V0 : V ; -- [XXXDX] :: it is said, one says; + inradiatio_F_N : N ; -- [EXXFP] :: illumination; + inrasus_A : A ; -- [XXXEC] :: unshaved; + inrationabile_N_N : N ; -- [DXXFS] :: unreasoning creatures; dumb animals; + inrationabilis_A : A ; -- [XXXEO] :: irrational, unreasoning; + inrationabiliter_Adv : Adv ; -- [DXXES] :: irrationally, unreasoningly; + inrational_N_N : N ; -- [EXXES] :: unreasoning creature; + inrationalis_A : A ; -- [EXXES] :: irrational, unreasoning; + inraucesco_V : V ; -- [XXXEC] :: become hoarse; + inrecogitatio_F_N : N ; -- [DXXFS] :: thoughtlessness; inconsiderateness; + inrecordabilis_A : A ; -- [DEXFS] :: not to be remembered; + inrecuperabilis_A : A ; -- [DEXFS] :: irreparable; unalterable; irrecoverable; + inrecusabilis_A : A ; -- [DEXES] :: not to be refused; that cannot be refused; + inrecusabiliter_Adv : Adv ; -- [DXXFS] :: without possibility of refusal; + inreductibilis_A : A ; -- [EEXFE] :: irreducible; unable to be reduced; + inreformabilis_A : A ; -- [DEXFS] :: unchangeable; unalterable; + inrefragabilis_A : A ; -- [DEXFS] :: unavoidable; irresistible; incontrovertible/incontestable/indisputable; + inrefragabiliter_Adv : Adv ; -- [DEXFS] :: unavoidably; irresistibly; incontestably; undeniably; + inrefrenabilis_A : A ; -- [EEXFE] :: uncontrollable; unquenchable; + inregressibilis_A : A ; -- [DEXFS] :: from which there is no return; + inregularis_A : A ; -- [EXXDE] :: irregular; + inregularitas_F_N : N ; -- [FXXEE] :: irregularity; impediment (to reception/exercise of sacred orders); + inreligatus_A : A ; -- [XXXEO] :: unfastened, unbound, unmoored; not fastened/bound/moored; + inreligiose_Adv : Adv ; -- [XEXFO] :: impiously; blasphemously; irreligiously; + inreligiosus_A : A ; -- [XEXDO] :: irreligious; impious; + inremeabilis_A : A ; -- [XXXEO] :: along or across which one cannot return; + inremediabilis_A : A ; -- [XXXEO] :: fatal; irredeemable; beyond cure; for which there is no remedy; + inremissibilis_A : A ; -- [DXXES] :: unpardonable, irremissible; unremitting; of which there is no remission/pardon; + inremunerabilis_A : A ; -- [XXXEO] :: that cannot be repaid/compensated/remunerated; + inremuneratus_A : A ; -- [DXXES] :: unrewarded; unremunerated; unpaid; + inreparabilis_A : A ; -- [XXXEO] :: irreparable, irrecoverable (loss/damage); irretrievable;; + inrepertus_A : A ; -- [XXXEC] :: not discovered; + inreprehensibilis_A : A ; -- [DXXES] :: irreprehensible, not blameworthy; irreproachable; not liable to reproof/blame; + inreprehensus_A : A ; -- [XXXEC] :: unblamed, blameless; + inrepticius_A : A ; -- [FXXEM] :: surreptitious; + inreptio_F_N : N ; -- [FXXEM] :: creeping in; + inrequietus_A : A ; -- [XXXEC] :: restless, troubled; + inresectus_A : A ; -- [XXXEC] :: not cut, uncut; + inresolutus_A : A ; -- [XXXEC] :: not loosed, not slackened; + inretortus_A : A ; -- [XXXEC] :: not turned or twisted back; + inreverens_A : A ; -- [DXXES] :: irreverent; disrespectful; + inreverenter_Adv : Adv ; -- [XXXEC] :: disrespectfully; + inreverentia_F_N : N ; -- [XXXEC] :: want of respect, irreverence; + inrevocabilis_A : A ; -- [XXXCO] :: irrevocable/unalterable; that can't be summoned/held/drawn back/undone/reversed; + inrevocabilus_A : A ; -- [FXXFZ] :: irrevocable/unalterable; that can't be summoned/held/drawn back/undone/reversed; + inrevocatus_A : A ; -- [XXXEC] :: not called back; + inrideo_V : V ; -- [XXXDX] :: laugh at, ridicule; + inridicule_Adv : Adv ; -- [XXXDX] :: without wit; unwittingly; unamusingly; + inrigatio_F_N : N ; -- [XXXEC] :: watering, irrigation; + inrigo_V2 : V2 ; -- [XXXBO] :: water/irrigate; inundate/flood; refresh; wet/moisten; diffuse, shed (sensation); + inriguus_A : A ; -- [XXXEC] :: watering, irrigating; refreshing; watered, soaked; + inrisio_F_N : N ; -- [XXXDS] :: derision; mockery; + inritamentum_N_N : N ; -- [XXXEC] :: incitement, incentive; + inritator_M_N : N ; -- [XXXFO] :: instigator, prompter; provoker, inciter; + inritatrix_F_N : N ; -- [EXXFS] :: inciter, she who incites; + inritus_A : A ; -- [XXXDX] :: ineffective, useless, invalid; in vain; + inrogatio_F_N : N ; -- [XXXEC] :: imposing of a fine or penalty; + inrogo_V2 : V2 ; -- [XXXCO] :: impose/inflict (penalty/burden); demand/propose/call for (penalties/fines); + inrumator_M_N : N ; -- [XXXEO] :: one who submits to fellatio; who practices beastly obscenity (L+S); vile person; + inrumo_V2 : V2 ; -- [XXXEO] :: force receptive male oral sex; treat in a shameful manner; abuse; defile; + inrumpo_V2 : V2 ; -- [XXXAO] :: invade; break/burst/force/rush in/upon/into, penetrate; intrude on; interrupt; + inruo_V2 : V2 ; -- [EXXBO] :: intrude/encroach/invade, force way in; demolish (Souter); cause to collapse; + inruptus_A : A ; -- [XXXEC] :: unbroken, unsevered; + insalubris_A : A ; -- [XXXEC] :: unhealthy; + insalutatus_A : A ; -- [XXXEC] :: ungreeted; + insanabilis_A : A ; -- [XXXDX] :: incurable; irremediable; + insane_Adv : Adv ; -- [XXXDX] :: madly, insanely, wildly; extravagantly; + insania_F_N : N ; -- [XXXDX] :: insanity, madness; folly, mad extravagance; + insanio_V2 : V2 ; -- [XXXDX] :: be mad, act crazily; + insaniter_Adv : Adv ; -- [XXXDX] :: madly, insanely, wildly; extravagantly; + insanum_Adv : Adv ; -- [XXXDX] :: immensely, enormously, exceedingly; + insanus_A : A ; -- [XXXBX] :: mad, raging, insane, demented; frenzied, wild; possessed, inspired; maddening; + insatiabilis_A : A ; -- [XXXDX] :: insatiable; + insatiatus_A : A ; -- [XXXES] :: unsatisfied; + inscendo_V2 : V2 ; -- [XXXEC] :: climb on, ascend, mount; + insciens_A : A ; -- [XXXDX] :: unknowing, unaware; + inscientia_F_N : N ; -- [XXXDX] :: ignorance; + inscitia_F_N : N ; -- [XXXDX] :: ignorance; + inscitus_A : A ; -- [XXXDX] :: ignorant; uninformed; + inscius_A : A ; -- [XXXDX] :: not knowing, ignorant; unskilled; + inscribo_V2 : V2 ; -- [XXXBX] :: write on/in; inscribe, brand; record as; entitle; + inscriptio_F_N : N ; -- [XXXDX] :: inscription; + inscrutabilis_A : A ; -- [DEXES] :: inscrutable, entirely mysterious, unfathomable; unknowable; + insculpo_V2 : V2 ; -- [XXXDX] :: carve (in or on), engrave; engrave on the mind; + inseco_V : V ; -- [BXXEO] :: tell; tell of; relate (L+S); declare; pursue the narration; + inseco_V2 : V2 ; -- [XXXCO] :: cut/incise; make incision in; make by cutting; cut into/up (L+S); dissect; + insectatio_F_N : N ; -- [XXXDX] :: hostile pursuit; criticism; + insecticidium_N_N : N ; -- [GXXEK] :: insecticide; + insecto_V : V ; -- [XXXDX] :: pursue with hostile intent; pursue with hostile speech, etc; + insector_V : V ; -- [XXXDX] :: pursue with hostile intent; pursue with hostile speech, etc; + insedabiliter_Adv : Adv ; -- [XXXEC] :: incessantly; + insemel_Adv : Adv ; -- [XXXES] :: at once; + insenesco_V2 : V2 ; -- [XXXDX] :: grow old in; wane; + insensatus_A : A ; -- [DEXFS] :: irrational; + insensibilis_A : A ; -- [DXXES] :: insensible; unfeelable; + inseparabilis_A : A ; -- [XXXDO] :: inseparable, that cannot be separated/divided; + inseparabiliter_Adv : Adv ; -- [DXXES] :: inseparably; constant, always (Sax); + inseparatus_A : A ; -- [EEXES] :: not separate; unseparated; + insepultus_A : A ; -- [XXXDX] :: unburied; + insequo_V : V ; -- [BXXFO] :: tell; tell of; relate (L+S); declare; pursue the narration; tell me about it; + insequor_V : V ; -- [XXXBX] :: follow/come after; attack; overtake; pursue (hostile); come after (time); + insero_V2 : V2 ; -- [XAXBX] :: plant, sow; graft on; put in, insert; + inserto_V : V ; -- [XXXDX] :: thrust in, introduce; + inservio_V2 : V2 ; -- [XXXCO] :: serve the interests of; take care of, look after, pay attention/be devoted to; + inservo_V2 : V2 ; -- [XXXES] :: attend to; observe attentively; + insibilo_V : V ; -- [XPXES] :: hiss; whistle; + insicium_N_N : N ; -- [XAXFS] :: stuffing; minced meat; + insideo_V : V ; -- [XXXBS] :: ||be fixed/stamped in; adhere to; grip; take possession of; hold/occupy; + insidia_F_N : N ; -- [XXXAO] :: ambush/ambuscade (pl.); plot; treachery, treacherous attack/device; trap/snare; + insidiator_M_N : N ; -- [XXXCO] :: one lying in ambush/wait (attack/rob); lurker; who plots/sets traps; deceiver; + insidio_V : V ; -- [XXXDO] :: |lay traps; act to catch person out; wait and watch; be on lookout (for); lurk; + insidior_V : V ; -- [XXXBO] :: |lay traps; act to catch person out; wait and watch; be on lookout (for); lurk; + insidiose_Adv : Adv ; -- [XXXEO] :: treacherous/deceitful; stealthy/insidious; hazardous; full of hidden dangers; + insidiosus_A : A ; -- [XXXCO] :: treacherously; deceitfully; cunningly; stealthily; insidiously; + insido_V2 : V2 ; -- [XXXFO] :: sit/settle on; occupy/seize, hold (position); penetrate, sink in; merge into; + insigne_N_N : N ; -- [XXXDX] :: mark, emblem, badge; ensign, honor, badge of honor; + insignio_V2 : V2 ; -- [XXXES] :: mark; distinguish; + insignis_A : A ; -- [XXXAX] :: conspicuous, manifest, eminent, notable, famous, distinguished, outstanding; + insile_N_N : N ; -- [XXXFS] :: treadle (pl.) of a loom; (or perhaps leash-rods); + insilio_V2 : V2 ; -- [XXXCO] :: come/leap upon/in; leap/spring up/at; attack/throw oneself upon; bound; mount; + insillo_V2 : V2 ; -- [XXXDX] :: leap into or on; + insimul_Adv : Adv ; -- [XXXEO] :: together; in company; at the same time (L+S); at once (Ecc); + insimulo_V : V ; -- [XXXDX] :: accuse, charge; allege; + insincerus_A : A ; -- [XXXDX] :: corrupt; not genuine; + insinuatio_F_N : N ; -- [XGXEO] :: ingratiating; beginning speech currying favor with judge; + insinuo_V : V ; -- [XXXDX] :: push in, work in, creep in, insinuate; + insipidus_A : A ; -- [EXXES] :: tasteless; insipid; + insipiens_A : A ; -- [XXXEC] :: foolish; + insipienter_Adv : Adv ; -- [XXXEC] :: foolishly; + insipientia_F_N : N ; -- [XXXEC] :: foolishness; + insipio_V : V ; -- [EXXEP] :: |act foolishly; + insipio_V2 : V2 ; -- [XXXEO] :: throw in; + insipo_V2 : V2 ; -- [XXXEO] :: throw in; + insisto_V2 : V2 ; -- [XXXDX] :: stand/tread upon, stand, stop; press on, persevere (with); pursue, set about; + insiticius_A : A ; -- [XXXFS] :: inserted into; engrafted; + insitio_F_N : N ; -- [XAXCO] :: grafting (of trees); place of graft; grafting time; graft, engrafted plant; + insitivus_A : A ; -- [XXXEC] :: grafted; spurious; + insito_V2 : V2 ; -- [FXXFM] :: graft; + insitor_M_N : N ; -- [XXXEC] :: grafter; + insitus_A : A ; -- [XXXCO] :: inserted, incorporated, attached; grafting (plant); innate; + insociabilis_A : A ; -- [XXXDX] :: intractable, implacable; + insolabiliter_Adv : Adv ; -- [XXXEC] :: inconsolably; + insolens_A : A ; -- [XXXDX] :: |unaccustomed; unusual; against custom; + insolenter_Adv : Adv ; -- [XXXDX] :: haughtily, arrogantly, insolently; immoderately; unusually, contrary to custom; + insolentia_F_N : N ; -- [XXXDX] :: unfamiliarity; strangeness; haughtiness; extravagance; + insolesco_V : V ; -- [XXXDO] :: become overbearing; grow proud/haughty/insolent; change, become manly (L+S); + insolidus_A : A ; -- [XXXEC] :: soft, tender; + insolitus_A : A ; -- [XXXDX] :: unaccustomed; + insolo_V2 : V2 ; -- [XXXES] :: place in the sun; + insolubilis_A : A ; -- [XXXEO] :: incontestable (evidence); that cannot be repaid/loosed/refuted/destroyed; + insomnis_A : A ; -- [XXXDX] :: sleepless; + insomnium_N_N : N ; -- [XXXDX] :: wakefulness; vision, dream; + insono_V : V ; -- [XXXDX] :: make a loud noise; sound; resound; + insons_A : A ; -- [XXXDX] :: guiltless, innocent; harmless; + insopitus_A : A ; -- [XXXDX] :: unsleeping, wakeful; + insordesco_V : V ; -- [XXXES] :: become gloomy; + inspargo_V2 : V2 ; -- [XXXES] :: sprinkle upon; (= inspergo); + inspectio_F_N : N ; -- [XXXCO] :: inspection, visual examination; investigation, inquiry; action of looking into; + inspecto_V : V ; -- [XXXDX] :: look at, observe; look on, watch; + insperans_A : A ; -- [XXXDX] :: not expecting; + insperatus_A : A ; -- [XXXDX] :: unhoped for, unexpected, unforeseen; + inspergo_V2 : V2 ; -- [XXXDX] :: sprinkle upon; + inspicio_V2 : V2 ; -- [XXXBX] :: examine, inspect; consider, look into/at, observe; + inspico_V2 : V2 ; -- [XXXEC] :: sharpen to a point; + inspiratio_F_N : N ; -- [DXXES] :: inspiration; act of breathing in (Souter); breath of life; soul (without body); + inspiro_V : V ; -- [XXXDX] :: inspire; excite, inflame; instill, implant; breathe into; blow upon/into; + inspoliatus_A : A ; -- [XXXEC] :: not plundered; + inspuo_V2 : V2 ; -- [XXXES] :: spit upon; + insquequo_Adv : Adv ; -- [FXXEN] :: until; + instabilis_A : A ; -- [XXXDX] :: unsteady, shaky; unstable; inconstant; + instans_A : A ; -- [XXXDX] :: eager; urgent; present; + instanter_Adv : Adv ; -- [XXXDO] :: vehemently; violently; urgently, insistently; + instantia_F_N : N ; -- [XXXCO] :: earnestness; insistence/urgency; concentration; being present/impending; + instar_N : N ; -- [XXXDX] :: image, likeness, resemblance; counterpart; the equal/form of (w/GEN); + instauratio_F_N : N ; -- [XXXDX] :: renewal, repetition; + instaurativus_A : A ; -- [XXXEC] :: renewed, repeated; + instauro_V : V ; -- [XXXDX] :: renew, repeat, restore; + insterno_V2 : V2 ; -- [XXXDX] :: spread or strew on; cover (with); lay over; + instigo_V : V ; -- [XXXDX] :: urge on; incite, rouse; + instillo_V : V ; -- [XXXDX] :: pour in drop by drop, drop in; + instimulo_V : V ; -- [XXXDX] :: goad on; + instinctor_M_N : N ; -- [XXXEC] :: instigator; + instinctus_A : A ; -- [XXXDX] :: roused, fired; infuriated; + instinctus_M_N : N ; -- [XXXDX] :: inspiration; instigation; + instita_F_N : N ; -- [XXXDX] :: band on a dress; + institio_F_N : N ; -- [XXXEC] :: standing still; + institor_M_N : N ; -- [XXXCO] :: shopkeeper, peddler; who displays (thing) as if for sale; + institoria_F_N : N ; -- [XXXFS] :: shopkeeper, peddler; (female); + institorium_N_N : N ; -- [XLXFO] :: shopkeeping, business of shopkeeper; + institorius_A : A ; -- [XLXEO] :: suit by manager against owner for incurred loss; commercial, of agent/broker; + instituo_V2 : V2 ; -- [XXXAX] :: set up, establish, found, make, institute; build; prepare; decide; + institutio_F_N : N ; -- [XXXDX] :: institution; arrangement; instruction, education; + institutionalis_A : A ; -- [GXXEK] :: institutional; + institutor_M_N : N ; -- [EXXES] :: founder; creator; + institutum_N_N : N ; -- [XXXDX] :: custom, principle; decree; intention; arrangement; institution; habit, plan; + insto_V : V ; -- [XXXAX] :: pursue, threaten; approach, press hard; be close to (w/DAT); stand in/on; + instrenuus_A : A ; -- [XXXEC] :: inactive, lazy; + instrepo_V2 : V2 ; -- [XXXDX] :: make a loud noise; + instructivus_A : A ; -- [GXXEK] :: instructive; + instructor_M_N : N ; -- [XXXDX] :: one who equips/arranges; preparer/arranger; + instructus_A : A ; -- [XXXDX] :: equipped, fitted out, prepared; learned, trained, skilled; drawn up/arranged; + instructus_M_N : N ; -- [XXXDX] :: equipment, apparatus; + instrumentalis_A : A ; -- [GXXEK] :: instrumental; + instrumentum_N_N : N ; -- [XXXBX] :: tool, tools; equipment, apparatus; instrument; means; document (leg.), deed; + instruo_V2 : V2 ; -- [XXXAX] :: construct, build; prepare, draw up; fit out; instruct, teach; + insuadibilis_A : A ; -- [FXXEM] :: unpersuadable; adamant, immovable; + insuavis_A : A ; -- [XXXCO] :: harsh, disagreeable, unpleasing; sour, not sweet; unpleasant in taste/smell; + insubidus_A : A ; -- [DXXFS] :: stupid; foolish; + insudo_V : V ; -- [XXXDO] :: sweat/perspire; sweat on (w/DAT); sweat at (task); + insuefactus_A : A ; -- [XXXDX] :: well trained; + insuesco_V2 : V2 ; -- [XXXDX] :: become accustomed (to); accustom; + insuetus_A : A ; -- [XXXDX] :: unused/unaccustomed to (w/GEN/DAT), unusual; + insufficiens_A : A ; -- [DXXFS] :: insufficient; + insufficientia_F_N : N ; -- [DXXES] :: insufficiency; + insufflo_V2 : V2 ; -- [XXXFO] :: blow/breathe in, insufflate; (w/breath of life); + insuflo_V2 : V2 ; -- [EXXFW] :: blow/breathe in, insufflate; (w/breath of life); + insula_F_N : N ; -- [XXXBX] :: island; apartment house; + insulanus_M_N : N ; -- [XXXEC] :: islander; + insulinum_N_N : N ; -- [GXXEK] :: insulin; + insulio_V2 : V2 ; -- [XXXCO] :: come/leap upon/in; leap/spring up/at; attack/throw oneself upon; bound; mount; + insulsitas_F_N : N ; -- [XXXDO] :: unattractiveness; dullness, stupidity; + insulsus_A : A ; -- [XXXDX] :: boring, stupid; + insulta_F_N : N ; -- [FXXEM] :: assault, attack; + insultatio_F_N : N ; -- [XXXEO] :: insult; insulting remark/action; mockery; assault, attack (Latham); + insulto_V : V ; -- [XXXBO] :: |insult; behave insultingly, mock/scoff/jeer (at); assault/attack (Latham); + insultuosus_A : A ; -- [FXXFM] :: insulting; + insultus_M_N : N ; -- [FXXDM] :: assault, attack; + insum_V : V ; -- [XXXBX] :: be in/on/there; belong to; be involved in; + insumo_V2 : V2 ; -- [XXXCO] :: spend, expend/employ (money/time/effort), devote; consume, take in/up; assume; + insuo_V2 : V2 ; -- [XXXDX] :: sew up (in), sew (on or in); + insuper_Acc_Prep : Prep ; -- [XXXBX] :: above, on top; in addition (to); over; + insuper_Adv : Adv ; -- [XXXDX] :: above, on top; in addition (to); over; + insuperabilis_A : A ; -- [XXXDX] :: insurmountable; unconquerable; + insupo_V2 : V2 ; -- [XXXEO] :: throw in; + insurgo_V2 : V2 ; -- [XXXDX] :: rise up; rise up against; + insusurro_V : V ; -- [XXXFS] :: insinuate; suggest; whisper; + intabesco_V2 : V2 ; -- [XXXDX] :: pine away; melt away; + intactus_A : A ; -- [XXXBX] :: untouched, intact; untried; virgin; + intaminabilis_A : A ; -- [EEXFS] :: undefilable; that cannot be defiled/sullied/contaminated/tainted; + intaminatus_A : A ; -- [XXXEO] :: undefiled; untainted; unstained; unsullied; + intantum_Adv : Adv ; -- [FXXEZ] :: in so much (JFW - widespread medieval); + intectus_A : A ; -- [XXXDX] :: uncovered; naked; open; + integellus_A : A ; -- [XXXDX] :: unharmed; + integer_A : A ; -- [XXXAX] :: untouched, entire, whole, complete; uninjured, sound, fresh (troops), vigorous; + integer_M_N : N ; -- [XWXDX] :: fresh troops (pl.); + intego_V2 : V2 ; -- [XXXDX] :: cover; cover over; + integrale_N_N : N ; -- [GSXEK] :: integral (math.); + integralis_A : A ; -- [GXXEK] :: integral; complete; + integrasco_V : V ; -- [XXXEC] :: break out afresh; + integratio_F_N : N ; -- [GXXEK] :: integration; + integre_Adv : Adv ; -- [XXXCO] :: honestly, irreproachably; free from moral shortcomings; faultlessly; wholly; + integrismus_M_N : N ; -- [GXXEK] :: fundamentalism; + integrista_M_N : N ; -- [GXXEK] :: fundamentalist; + integritas_F_N : N ; -- [XXXDX] :: soundness; chastity; integrity; + integro_V : V ; -- [XXXDX] :: renew; refresh; integrate (Cal); + integumentum_N_N : N ; -- [XXXDX] :: covering, shield, guard; + intellectibilis_A : A ; -- [EXXEP] :: intelligible; + intellectualis_A : A ; -- [EXXEP] :: intellectual, of the mind or understanding; + intellectualiter_Adv : Adv ; -- [EXXEP] :: intellectually, according to the intellect; + intellectus_M_N : N ; -- [XXXBO] :: comprehension/understanding; recognition/discerning; intellect; meaning/sense; + intellegens_A : A ; -- [XXXDX] :: intelligent; discerning; + intellegentia_F_N : N ; -- [XXXDX] :: intelligence; intellect; understanding; + intellegibilis_A : A ; -- [XXXEO] :: intellectual; capable of appreciation by mind; + intellego_V : V ; -- [XXXDX] :: understand; realize; + intellego_V2 : V2 ; -- [XXXAX] :: understand; realize; + intelligentia_F_N : N ; -- [XXXDX] :: intelligence; + intelligo_V : V ; -- [XXXDX] :: understand; realize; + intemeratus_A : A ; -- [XXXCO] :: undefiled/unstained/unsullied/pure; chaste, pure from sexual intercourse; + intemperans_A : A ; -- [XXXDX] :: headstrong, lacking self-control; licentious, lewd; extreme, bad-tempered; + intemperanter_Adv : Adv ; -- [XXXDX] :: without self-control/restraint; immoderately, excessively, violently; + intemperantia_F_N : N ; -- [XXXCO] :: |immoderation, unrestrained use (of)/indulgence (in); licentiousness; arrogance; + intemperate_Adv : Adv ; -- [XXXDX] :: immoderately, intemperately; + intemperatus_A : A ; -- [XXXEO] :: intemperate, untempered, immoderate; inclement (L+S); unmixed (w/vinum); + intemperia_F_N : N ; -- [XXXFS] :: intemperateness (weather, pl.); folly; + intemperies_F_N : N ; -- [XXXDX] :: lack of temperateness (of weather, etc); outrageous behavior; + intempestivus_A : A ; -- [XXXDX] :: untimely, ill timed; unreasonable; + intempestus_A : A ; -- [XXXDX] :: unseasonable stormy, unhealthy; nox intempesta the dead of night; + intemptatus_A : A ; -- [XXXDX] :: untried; + intendo_V2 : V2 ; -- [XXXAX] :: hold out; stretch, strain, exert; + intensio_F_N : N ; -- [XXXBO] :: stretch, extension; spasm; tautness, tension; straining, concentration; aim; + intensitas_F_N : N ; -- [GXXEK] :: intensity; + intensivus_A : A ; -- [GXXEK] :: intensive; + intensus_A : A ; -- [XXXBO] :: eager/intent, closely attentive; strict; intense, strenuous; serious/earnest; + intente_Adv : Adv ; -- [XXXDX] :: attentively, with concentrated attention, intently; + intentio_F_N : N ; -- [EXXER] :: thought; purpose, intention; + intentionalis_A : A ; -- [FXXEM] :: intentional; + intentionaliter_Adv : Adv ; -- [FXXEM] :: intentionally; + intento_V : V ; -- [XXXDX] :: point (at); point (weapons, etc) in a threatening manner, threaten; + intentus_A : A ; -- [XXXBO] :: eager/intent, closely attentive; strict; intense, strenuous; serious/earnest; + intepeo_V : V ; -- [XXXES] :: be lukewarm; + intepesco_V2 : V2 ; -- [XXXDX] :: become warm; + inter_Acc_Prep : Prep ; -- [XXXAX] :: between, among; during; [inter se => to each other, mutually]; + interactio_F_N : N ; -- [GXXEK] :: interaction; + interamentum_N_N : N ; -- [XWXEC] :: woodwork (pl.) of a ship; + interaneum_N_N : N ; -- [XBXES] :: gut; intestine; + interaneus_A : A ; -- [XXXES] :: interior; + intercalarius_A : A ; -- [XXXDX] :: intercalary (inserted month in calendar); of insertion, to be inserted; + intercalo_V : V ; -- [XXXDX] :: insert (day or month) in the calendar, intercalate; postpone; + intercapedo_F_N : N ; -- [XXXCO] :: intermission; interruption, continuity break; interval/pause/delay/respite; gap; + intercedo_V2 : V2 ; -- [XXXDX] :: intervene; intercede, interrupt; hinder; veto; exist/come between; + interceptor_M_N : N ; -- [XXXDX] :: usurper, embezzler; + intercessio_F_N : N ; -- [XXXDX] :: intervention; veto (of a magistrate); + intercessor_M_N : N ; -- [XXXDX] :: mediator; one who vetoes; + intercido_V2 : V2 ; -- [XXXDX] :: cut through, sever; + intercino_V : V ; -- [XXXEC] :: sing between; + intercipio_V2 : V2 ; -- [XXXDX] :: cut off; intercept, interrupt; steal; + intercludo_V2 : V2 ; -- [XXXDX] :: cut off; blockade; hinder, block up; + intercolumnium_N_N : N ; -- [XXXEC] :: space between two columns; + intercurso_V : V ; -- [XXXDX] :: run in between; + intercursus_M_N : N ; -- [XXXDX] :: interposition; + intercus_A : A ; -- [XXXEC] :: under the skin; [w/aqua => dropsy]; + interdico_V2 : V2 ; -- [XXXDX] :: forbid, interdict, prohibit; debar (from); + interdictum_N_N : N ; -- [XXXDX] :: prohibition; provisional decree of a praetor; + interdie_Adv : Adv ; -- [EXXEP] :: in the daytime; by day; + interdiu_Adv : Adv ; -- [XXXDX] :: in the daytime, by day; + interdius_Adv : Adv ; -- [BXXFS] :: in the daytime; by day; (archaic form of interdiu); + interductus_M_N : N ; -- [XGXEC] :: interpunctuation; point inserted in writing; hyphen (Cal); + interdum_Adv : Adv ; -- [XXXAX] :: sometimes, now and then; + interea_Adv : Adv ; -- [XXXAX] :: meanwhile; + interemo_V2 : V2 ; -- [XXXCO] :: do away with; kill, cut off from life; extinguish; put an end to, destroy; + intereo_1_V : V ; -- [XXXBX] :: perish, die; be ruined; cease; + intereo_2_V : V ; -- [XXXBX] :: perish, die; be ruined; cease; + interequito_V : V ; -- [XXXDX] :: ride among or between; + interest_V0 : V ; -- [XXXDX] :: it concerns, it interests; + interfectio_F_N : N ; -- [XXXEO] :: slaughter; act of killing; fatal end of an illness (Souter); + interfector_M_N : N ; -- [XXXEO] :: killer, murderer; assassin; destroyer (Souter); + interfectrix_F_N : N ; -- [XXXFO] :: murdereress; assassin (female); + interficio_V2 : V2 ; -- [XWXAX] :: kill; destroy; + interfio_V : V ; -- [XXXCO] :: begin (to do something); begin to speak; (infit only classical example); + interfluo_V2 : V2 ; -- [XXXDX] :: flow between or through; + interfor_V : V ; -- [XXXCO] :: interrupt, interpose; break in conversation; speak between/while other speaking; + interfulgens_A : A ; -- [XXXEC] :: shining or gleaming among; + interfusus_A : A ; -- [XXXDX] :: poured/flowing/spread out between, suffused here and there; + intergerivus_A : A ; -- [FXXEK] :: common; + interibi_Adv : Adv ; -- [XXXEC] :: meanwhile, in the meantime; + intericio_V2 : V2 ; -- [XXXDX] :: put/throw between; interpose; insert; introduce; + interim_Adv : Adv ; -- [XXXAX] :: meanwhile, in the meantime; at the same time; however, nevertheless; + interimisticus_A : A ; -- [GXXEK] :: interim; + interimo_V2 : V2 ; -- [XXXCO] :: do away with; kill, cut off from life; extinguish; put an end to, destroy; + interior_A : A ; -- [XXXBX] :: inner, interior, middle; more remote; more intimate; + interior_M_N : N ; -- [XXXDX] :: those (pl.) within; those nearer racecourse goal; inland/further from sea; + interitus_M_N : N ; -- [XXXBX] :: ruin; violent/untimely death, extinction; destruction, dissolution; + interjaceo_V : V ; -- [XXXDX] :: lie between; + interjacio_V2 : V2 ; -- [XXXDX] :: put/throw between; interpose; insert; introduce; + interjectio_F_N : N ; -- [XXXES] :: insertion; placing between; G:interjection; + interjectus_A : A ; -- [XXXDX] :: lying between; + interjicio_V2 : V2 ; -- [XXXCS] :: put/throw between; interpose; insert; introduce; + interlabor_V : V ; -- [XXXEO] :: glide/flow between; slip/give way at intervals; + interlaqueatus_A : A ; -- [FXXFM] :: interlaced; combined; + interlino_V2 : V2 ; -- [XXXDS] :: smear between; erase fully; + interloquor_V : V ; -- [XLXCO] :: interrupt, speak between, intersperse remarks; issue interlocutory decree; + interluceo_V : V ; -- [XXXCS] :: shine forth; + interludium_N_N : N ; -- [FXXEM] :: interlude, play, episode; game between them, game of cat and mouse (Z); + interludo_V2 : V2 ; -- [DXXES] :: play between/together; + interlunium_N_N : N ; -- [XXXEC] :: change of moon, time of new moon; + interluo_V2 : V2 ; -- [XXXDX] :: flow between; + intermedius_A : A ; -- [XXXES] :: intermediate; + intermenstruum_N_N : N ; -- [XSXFO] :: period between two lunar months; time of the new moon; the new moon (L+S); + intermenstruus_A : A ; -- [XSXEO] :: interlunar, occurring between two lunar months; at time of the new moon (L+S); + intermeo_V2 : V2 ; -- [XXXES] :: go between; flow through; + intermico_V2 : V2 ; -- [XXXES] :: glitter among; glitter forth; + interminabilis_A : A ; -- [EXXFP] :: unending; + interminabiliter_Adv : Adv ; -- [EXXFP] :: unendingly; + interminatus_A : A ; -- [XXXEO] :: forbidden w/threats; menaced/threatened; endless, infinite, unbound (Ecc); + interminor_V : V ; -- [XXXCO] :: utter threats (to check/alter action); forbid w/threats; threaten, menace (L+S); + intermisceo_V : V ; -- [XXXDX] :: intermingle, mix, mix among, mingle; + intermissio_F_N : N ; -- [XXXDX] :: intermission; pause; + intermitto_V2 : V2 ; -- [XXXDX] :: interrupt; omit; stop; leave off (temporarily); leave a gap; + intermorior_V : V ; -- [XXXDX] :: perish, die; pass out; die off/out; + intermuralis_A : A ; -- [XXXEC] :: between walls; + internascor_V : V ; -- [XXXDX] :: grow between or among; + internationalis_A : A ; -- [GXXEK] :: international; + internatus_M_N : N ; -- [GXXEK] :: residency; + internecinus_A : A ; -- [XXXEC] :: murderous, deadly; + internecio_F_N : N ; -- [XXXCO] :: slaughter, massacre; extermination, total destruction of life; cause of such; + internecivus_A : A ; -- [XXXCO] :: murderous, deadly (quarrels); devastating (disease); fought to the death (war); + internicio_F_N : N ; -- [XXXCO] :: slaughter, massacre; extermination, total destruction of life; cause of such; + internicivus_A : A ; -- [XXXCO] :: murderous, deadly (quarrels); devastating (disease); fought to the death (war); + internista_M_N : N ; -- [GXXEK] :: internist; specialist in internal medicine; + interniteo_V : V ; -- [XXXES] :: shine forth; shine among; + internodium_N_N : N ; -- [XXXDX] :: space between two joints in the body; + internosco_V2 : V2 ; -- [XXXDX] :: distinguish between; pick out; + internuntius_A : A ; -- [XXXES] :: intermediary; + internuntius_M_N : N ; -- [XXXDX] :: intermediary, go between; + internus_A : A ; -- [XXXDX] :: inward, internal; domestic; + interordinium_N_N : N ; -- [XXXFS] :: two-row space; space between two rows; + interpellatio_F_N : N ; -- [XXXDX] :: interruption in speaking; + interpello_V : V ; -- [XXXDX] :: interrupt, break in on; interpose an objection; disturb, hinder, obstruct; + interpolo_V2 : V2 ; -- [XXXEC] :: furbish, vamp up; falsify; + interpono_V2 : V2 ; -- [XXXDX] :: insert, introduce; admit; allege; interpose; (interponere se = to intervene); + interpositio_F_N : N ; -- [XXXDO] :: insertion, inclusion, introduction, placing between; insertion, parenthesis; interpres_F_N : N ; -- [XXXDX] :: interpreter, translator; - interpres_M_N : N ; - interpretamentum_N_N : N ; - interpretatio_F_N : N ; - interpreto_V2 : V2 ; - interpretor_V : V ; - interpunctio_F_N : N ; - interpunctum_N_N : N ; - interquiesco_V : V ; - interrado_V2 : V2 ; - interrasilis_A : A ; - interregnum_N_N : N ; - interrete_N_N : N ; - interretialis_A : A ; - interretiarius_M_N : N ; - interrex_M_N : N ; - interritus_A : A ; - interrivatio_F_N : N ; - interrogatio_F_N : N ; - interrogatiuncula_F_N : N ; - interrogo_V : V ; - interrumpo_V2 : V2 ; - interruptio_F_N : N ; - intersaepio_V2 : V2 ; - interscindo_V2 : V2 ; - interseco_V2 : V2 ; - intersero_V2 : V2 ; - intersitus_A : A ; - interspersus_A : A ; - interspiratio_F_N : N ; - interspiro_V : V ; - interstinctus_A : A ; - interstinguo_V2 : V2 ; - interstitio_F_N : N ; - interstitium_N_N : N ; - intersum_V : V ; - intertextus_A : A ; - intertributio_F_N : N ; - intertrigo_F_N : N ; - intertrimentum_N_N : N ; - interula_F_N : N ; - interulus_A : A ; - interusurium_N_N : N ; - intervallatus_A : A ; - intervallo_V2 : V2 ; - intervallum_N_N : N ; - intervenio_V2 : V2 ; - intervenium_N_N : N ; - interventus_M_N : N ; - interverto_V2 : V2 ; - interviso_V2 : V2 ; - intervolo_V2 : V2 ; - intestabilis_A : A ; - intestatus_A : A ; - intestina_F_N : N ; - intestinus_A : A ; - intexo_V2 : V2 ; - inthronizatio_F_N : N ; - inthronizo_V : V ; - intibum_N_N : N ; - intibus_M_N : N ; - intime_Adv : Adv ; - intimo_V : V ; - intimus_A : A ; - intingo_V2 : V2 ; - intinguo_V2 : V2 ; - intitubabilis_A : A ; - intitulo_V2 : V2 ; - intolerabilis_A : A ; - intolerandus_A : A ; - intolerans_A : A ; - intoleranter_Adv : Adv ; - intolerantia_F_N : N ; - intono_V : V ; - intonsus_A : A ; - intorqueo_V : V ; - intra_Acc_Prep : Prep ; - intra_Adv : Adv ; - intractabilis_A : A ; - intractatus_A : A ; - intramuranus_A : A ; - intransmeabilis_A : A ; - intransmutabil_F_N : N ; - intransmutabilis_A : A ; - intremisco_V : V ; - intremo_V : V ; - intrepidus_A : A ; - intributio_F_N : N ; - intricatus_A : A ; - intrico_V2 : V2 ; - intrinsecus_A : A ; - intrinsecus_Adv : Adv ; - intritus_A : A ; - intro_Adv : Adv ; - intro_V : V ; - introcedo_V2 : V2 ; - introduco_V2 : V2 ; - introductio_F_N : N ; - 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_V2 : V2 ; - introspicio_V2 : V2 ; - introsum_Adv : Adv ; - introsus_Adv : Adv ; - introversio_F_N : N ; - intrusio_F_N : N ; - intrusor_M_N : N ; - intubum_N_N : N ; - intubus_M_N : N ; - intueor_V : V ; - intuitive_Adv : Adv ; - intuitivus_A : A ; - intumesco_V2 : V2 ; - intumulatus_A : A ; - intumus_A : A ; - intuor_V : V ; - inturbidus_A : A ; - intus_Adv : Adv ; - intutus_A : A ; - inula_F_N : N ; - inultus_A : A ; - inumbro_V : V ; - inundatio_F_N : N ; - inundo_V : V ; - inungo_V2 : V2 ; - inunguo_V2 : V2 ; - inurbanus_A : A ; - inuro_V2 : V2 ; - inusitate_Adv : Adv ; - inusitatus_A : A ; - inustum_N_N : N ; - inustus_A : A ; - inutilis_A : A ; - inutiliter_Adv : Adv ; - invado_V2 : V2 ; - invalesco_V : V ; - invaletudo_F_N : N ; - invalidus_A : A ; - invasio_F_N : N ; - inveho_V2 : V2 ; - invenditus_A : A ; - invenio_V2 : V2 ; - inventarium_N_N : N ; - inventio_F_N : N ; - inventor_M_N : N ; - inventrix_F_N : N ; - inventum_N_N : N ; - invenustus_A : A ; - inverecundia_F_N : N ; - inverecundus_A : A ; - invergo_V : V ; - invertibilitas_F_N : N ; - inverto_V2 : V2 ; - invest_A : A ; - investigabilis_A : A ; - investigatio_F_N : N ; - investigo_V : V ; - investio_V2 : V2 ; - inveterasco_V2 : V2 ; - inveteratio_F_N : N ; - inveteratus_A : A ; - invetero_V : V ; - invicem_Adv : Adv ; - invicto_V : V ; - invictus_A : A ; - invidendus_A : A ; - invidens_A : A ; - invidentia_F_N : N ; - invideo_V : V ; - invidia_F_N : N ; - invidiose_Adv : Adv ; - invidiosus_A : A ; - invidus_A : A ; - invigilo_V2 : V2 ; - invincibilis_A : A ; - invincibiliter_Adv : Adv ; - inviolabilis_A : A ; - inviolate_Adv : Adv ; - inviolatus_A : A ; - inviolaus_A : A ; - invisibil_A : A ; - invisitatus_A : A ; - inviso_V2 : V2 ; - invisus_A : A ; - invitabulum_N_N : N ; - invitamentum_N_N : N ; - invitatio_F_N : N ; - invitatorius_A : A ; - invito_V : V ; - invituperabilis_A : A ; - invitus_A : A ; - invius_A : A ; - invoco_V : V ; - involgo_V2 : V2 ; - involo_V : V ; - involucrum_N_N : N ; - involuntarie_Adv : Adv ; - involuntarius_A : A ; - involuntas_F_N : N ; - involvo_V2 : V2 ; - invorto_V2 : V2 ; - invulgo_V2 : V2 ; - invulnerabilis_A : A ; - invulneratus_A : A ; - iodium_N_N : N ; - iogurtum_N_N : N ; - iota_N : N ; - iotacismus_M_N : N ; - ioth_N : N ; - ipsimus_M_N : N ; - ipsissimus_A : A ; - ira_F_N : N ; - iracunde_Adv : Adv ; - iracundia_F_N : N ; - iracunditer_Adv : Adv ; - iracundus_A : A ; - irascibilis_A : A ; - irascor_V : V ; - irate_Adv : Adv ; - iratus_A : A ; - irenacentia_F_N : N ; - irenaceus_M_N : N ; - irenarcha_M_N : N ; - irenismus_M_N : N ; - irinum_N_N : N ; - irinus_A : A ; - iris_F_N : N ; - iris_M_N : N ; - irnea_F_N : N ; - irneacus_A : A ; - irneosus_A : A ; - iro_V : V ; - ironia_F_N : N ; - ironice_Adv : Adv ; - irradiatio_F_N : N ; - irradio_V : V ; - irrationabile_N_N : N ; - irrationabilis_A : A ; - irrationabiliter_Adv : Adv ; - irrational_N_N : N ; - irrationalis_A : A ; - irrecogitatio_F_N : N ; - irrecordabilis_A : A ; - irrecuperabilis_A : A ; - irrecusabilis_A : A ; - irrecusabiliter_Adv : Adv ; - irreductibilis_A : A ; - irreformabilis_A : A ; - irrefragabilis_A : A ; - irrefragabiliter_Adv : Adv ; - irrefrenabilis_A : A ; - irregressibilis_A : A ; - irregularis_A : A ; - irregularitas_F_N : N ; - irreligatus_A : A ; - irreligiose_Adv : Adv ; - irreligiosus_A : A ; - irremeabilis_A : A ; - irremediabilis_A : A ; - irremissibilis_A : A ; - irremunerabilis_A : A ; - irremuneratus_A : A ; - irreparabilis_A : A ; - irrepertus_A : A ; - irrepo_V2 : V2 ; - irreprehensibilis_A : A ; - irreprehensus_A : A ; - irrepticius_A : A ; - irreptio_F_N : N ; - irrequietus_A : A ; - irretio_V2 : V2 ; - irreverens_A : A ; - irreverentia_F_N : N ; - irrevocabilis_A : A ; - irrevocabilus_A : A ; - irrideo_V : V ; - irridicule_Adv : Adv ; - irrigo_V2 : V2 ; - irriguus_A : A ; - irrimator_M_N : N ; - irrimo_V2 : V2 ; - irrisio_F_N : N ; - irrisor_M_N : N ; - irrisus_M_N : N ; - irritabilis_A : A ; - irritamen_N_N : N ; - irritamentum_N_N : N ; - irritatio_F_N : N ; - irritator_M_N : N ; - irritatrix_F_N : N ; - irrito_V : V ; - irritus_A : A ; - irrogo_V2 : V2 ; - irroro_V : V ; - irrotulatio_F_N : N ; - irrotulo_V : V ; - irrugio_V : V ; - irrumator_M_N : N ; - irrumo_V2 : V2 ; - irrumpo_V2 : V2 ; - irruo_V : V ; - irruo_V2 : V2 ; - irruptio_F_N : N ; - ischiacus_A : A ; - ischiadicus_A : A ; - ischium_N_N : N ; - isicium_N_N : N ; - isocheles_A : A ; - isochronismus_M_N : N ; - isochronus_A : A ; - isosceles_A : A ; - isoscelles_A : A ; - istac_Adv : Adv ; - isthmus_M_N : N ; - isti_Adv : Adv ; - istic_Adv : Adv ; - istimodi_Adv : Adv ; - istinc_Adv : Adv ; - istiusmodi_Adv : Adv ; - isto_Adv : Adv ; - istoc_Adv : Adv ; - istuc_Adv : Adv ; - ita_Adv : Adv ; - italicus_A : A ; - italus_A : A ; - itaque_Adv : Adv ; - itaque_Conj : Conj ; - item_Adv : Adv ; - iter_N_N : N ; - iteratio_F_N : N ; - itero_V : V ; - iterum_Adv : Adv ; - ithyphallicus_A : A ; - itidem_Adv : Adv ; - itiner_N_N : N ; - itinerans_A : A ; - itinero_V : V ; - itus_M_N : N ; - ixon_N_N : N ; - jacca_F_N : N ; - jaceo_V : V ; - jacio_V2 : V2 ; - jactans_A : A ; - jactanter_Adv : Adv ; - jactantia_F_N : N ; - jactatio_F_N : N ; - jactio_F_N : N ; - jactito_V2 : V2 ; - jacto_V : V ; - jactura_F_N : N ; - jactus_M_N : N ; - jaculator_M_N : N ; - jaculor_V : V ; - jaculum_N_N : N ; - jaculus_A : A ; - jam_Adv : Adv ; - jamdudum_Adv : Adv ; - jamjam_Adv : Adv ; - jamjamque_Adv : Adv ; - jampridem_Adv : Adv ; - janitor_M_N : N ; - janitrix_F_N : N ; - janthinus_A : A ; - janua_F_N : N ; - jasminum_N_N : N ; - jaspis_F_N : N ; - jecur_N_N : N ; - jecusculum_N_N : N ; - jejunitas_F_N : N ; - jejunium_N_N : N ; - jejuno_V : V ; - jejunus_A : A ; - jentaculum_N_N : N ; - jento_V : V ; - jobeleus_M_N : N ; - jobileus_M_N : N ; - jocabundus_A : A ; - jocatio_F_N : N ; - jocinerosus_A : A ; - joco_V : V ; - jocor_V : V ; - jocose_Adv : Adv ; - jocosus_A : A ; - jocularis_A : A ; - joculor_V : V ; - jocunde_Adv : Adv ; - jocundiatas_F_N : N ; - jocunditas_F_N : N ; - jocundo_V2 : V2 ; - jocundus_A : A ; - jocur_N_N : N ; - jocus_M_N : N ; - jocusculum_N_N : N ; - jod_N : N ; - juba_F_N : N ; - jubar_N_N : N ; - jubatus_A : A ; - jubelaeus_M_N : N ; - jubeo_V2 : V2 ; - jubilaeus_M_N : N ; - jubilarius_A : A ; - jubilatio_F_N : N ; - jubilatus_M_N : N ; - jubilo_V : V ; - jubilum_N_N : N ; - jubilus_M_N : N ; - jubo_V2 : V2 ; - juctim_Adv : Adv ; - jucunde_Adv : Adv ; - jucunditas_F_N : N ; - jucundo_V2 : V2 ; - jucundus_A : A ; - judex_M_N : N ; - judicalis_A : A ; - judicatio_F_N : N ; - judiciarius_A : A ; - judicium_N_N : N ; - judico_V : V ; - juditium_N_N : N ; - jugalis_A : A ; - juger_N_N : N ; - jugerum_N_N : N ; - jugis_A : A ; - jugiter_Adv : Adv ; - juglans_F_N : N ; - jugo_V : V ; - jugosus_A : A ; + interpres_M_N : N ; -- [XXXDX] :: interpreter, translator; + interpretamentum_N_N : N ; -- [EXXFS] :: explanation; interpretation; + interpretatio_F_N : N ; -- [XXXDX] :: interpretation; meaning; + interpreto_V2 : V2 ; -- [EXXEW] :: explain/expound; interpret/prophesy from (dream/omen); understand/comprehend; + interpretor_V : V ; -- [XXXAO] :: |decide; translate; regard/construe; take view (that); interpret to suit self; + interpunctio_F_N : N ; -- [FGXEK] :: punctuation; + interpunctum_N_N : N ; -- [XGXES] :: interpunctuation; + interquiesco_V : V ; -- [XXXES] :: rest awhile; + interrado_V2 : V2 ; -- [XXXEO] :: decorate with intaglio/incised carvings/engraving; embossed (L+S); scraped; + interrasilis_A : A ; -- [XXXNO] :: decorated/carved in intaglio/incised carvings/engraving; rake/break up ground; + interregnum_N_N : N ; -- [XXXDX] :: interregnum (time between kings/reigns); + interrete_N_N : N ; -- [HXXEK] :: Internet; + interretialis_A : A ; -- [HXXEK] :: Internet-derived; + interretiarius_M_N : N ; -- [HXXEK] :: Internet user; + interrex_M_N : N ; -- [XXXDX] :: one who holds office between the death of a supreme magistrate and the appoint; + interritus_A : A ; -- [XXXDX] :: unafraid, fearless; + interrivatio_F_N : N ; -- [DXXFS] :: drawing off of water between two places; + interrogatio_F_N : N ; -- [XXXDX] :: interrogation, inquiry, questioning; + interrogatiuncula_F_N : N ; -- [XGXES] :: short argument; + interrogo_V : V ; -- [XLXAX] :: ask, question, interrogate, examine; indict; go to law with, sue; + interrumpo_V2 : V2 ; -- [XXXDX] :: drive a gap in, break up; cut short, interrupt; + interruptio_F_N : N ; -- [XXXEO] :: interruption; discontinuity, break; aposiopesis (rhetoric); + intersaepio_V2 : V2 ; -- [XXXDX] :: separate; block; + interscindo_V2 : V2 ; -- [XXXDX] :: cut down; cut through, sever; + interseco_V2 : V2 ; -- [DXXES] :: cut apart; divide; + intersero_V2 : V2 ; -- [XAXES] :: sow; plant; + intersitus_A : A ; -- [XXXDS] :: interposed; + interspersus_A : A ; -- [XXXES] :: strewn; sprinkled; + interspiratio_F_N : N ; -- [XXXES] :: between breath-fetching; + interspiro_V : V ; -- [XXXES] :: fetch breath; admit air; + interstinctus_A : A ; -- [XXXEC] :: spotted, speckled; + interstinguo_V2 : V2 ; -- [XXXES] :: separate; extinguish; kill; + interstitio_F_N : N ; -- [EXXEZ] :: pause, respite; distinction, difference; + interstitium_N_N : N ; -- [FXXEM] :: gap; partition; + intersum_V : V ; -- [XXXBX] :: be/lie between, be in the midst; be present; take part in; be different; + intertextus_A : A ; -- [XXXEC] :: interwoven; + intertributio_F_N : N ; -- [ELXFS] :: contribution; + intertrigo_F_N : N ; -- [XXXFS] :: chafing (of skin); + intertrimentum_N_N : N ; -- [XXXEC] :: loss, damage; + interula_F_N : N ; -- [XXXEO] :: underwear worn by both sexes; inner garment (Erasmus); + interulus_A : A ; -- [XXXEO] :: underwear; [w/tunica => undergarment worn by both sexes]; + interusurium_N_N : N ; -- [XLXES] :: accumulating interest; interest in the meantime; + intervallatus_A : A ; -- [XXXES] :: having intervals; + intervallo_V2 : V2 ; -- [XXXES] :: take at intervals; + intervallum_N_N : N ; -- [XXXBX] :: interval, space, distance; respite; + intervenio_V2 : V2 ; -- [XXXDX] :: come between, intervene; occur, crop up; + intervenium_N_N : N ; -- [XXXES] :: inter-venal space; space between veins of minerals; + interventus_M_N : N ; -- [XXXDX] :: intervention; occurrence of an event; + interverto_V2 : V2 ; -- [XXXDX] :: embezzle, cheat; turn upside down/inside out; reverse, invert, overturn, upset; + interviso_V2 : V2 ; -- [XXXDX] :: look at, visit; + intervolo_V2 : V2 ; -- [DXXES] :: fly between; fly among; + intestabilis_A : A ; -- [XXXDX] :: detestable, infamous; + intestatus_A : A ; -- [XXXEC] :: having made no will, intestate; + intestina_F_N : N ; -- [XXXDX] :: intestines; + intestinus_A : A ; -- [XXXDX] :: internal; domestic, civil; + intexo_V2 : V2 ; -- [XXXDX] :: weave (into), embroider (on); cover by twining; insert (into a book, etc); + inthronizatio_F_N : N ; -- [GXXEK] :: enthronement; + inthronizo_V : V ; -- [GXXEK] :: enthrone; + intibum_N_N : N ; -- [XXXDX] :: endive or chicory; + intibus_M_N : N ; -- [XXXDX] :: endive or chicory; + intime_Adv : Adv ; -- [XXXDX] :: intimately, cordially, deeply, profoundly; + intimo_V : V ; -- [FXXDB] :: tell, tell about, relate, narrate, recount, describe; + intimus_A : A ; -- [XXXBX] :: inmost; most secret; most intimate; + intingo_V2 : V2 ; -- [XXXCO] :: dip/plunge in; saturate, steep; cause to soak in; color (w/cosmetics); + intinguo_V2 : V2 ; -- [XXXCO] :: dip/plunge in; saturate, steep; cause to soak in; color (w/cosmetics); + intitubabilis_A : A ; -- [DEXFS] :: firm, unwavering; + intitulo_V2 : V2 ; -- [DXXFS] :: entitle, give a name to; + intolerabilis_A : A ; -- [XXXDX] :: unable to endure, impatient (of ); insufferable; + intolerandus_A : A ; -- [XXXDX] :: insupportable, insufferable; unbearable, intolerable; physically unendurable; + intolerans_A : A ; -- [XXXDO] :: insufferable, unbearable; unable to endure; impatient (of); intolerant (later); + intoleranter_Adv : Adv ; -- [XXXEO] :: impatiently; insufferably, unbearably; intolerably; + intolerantia_F_N : N ; -- [XXXEO] :: impatience; intolerance, lack of tolerance; + intono_V : V ; -- [XXXDX] :: thunder; + intonsus_A : A ; -- [XXXDX] :: uncut; unshaven, unshorn; not stripped of foliage; + intorqueo_V : V ; -- [XXXDX] :: twist or turn round, sprain; hurl or launch a missile at; + intra_Acc_Prep : Prep ; -- [XXXAX] :: within, inside; during; under; + intra_Adv : Adv ; -- [XXXDX] :: within, inside, on the inside; during; under; fewer than; + intractabilis_A : A ; -- [XXXDX] :: unmanageable, intractable; + intractatus_A : A ; -- [XXXEC] :: not handled, unattempted; + intramuranus_A : A ; -- [XXXFS] :: within the walls; + intransmeabilis_A : A ; -- [XXXFS] :: impassable; + intransmutabil_F_N : N ; -- [XXXES] :: immutability; unchangeability; + intransmutabilis_A : A ; -- [XXXES] :: immutable; unchangeable; + intremisco_V : V ; -- [XXXEC] :: begin to tremble; + intremo_V : V ; -- [XXXDX] :: tremble, quake; + intrepidus_A : A ; -- [XXXDX] :: undaunted, fearless, untroubled; + intributio_F_N : N ; -- [DXXFS] :: contribution; + intricatus_A : A ; -- [FXXEK] :: complex; + intrico_V2 : V2 ; -- [XXXES] :: entangle; embarrass; + intrinsecus_A : A ; -- [DXXFS] :: inward; internal (Souter); + intrinsecus_Adv : Adv ; -- [XXXCO] :: internally, on/in the inside; from within; inwards, to the inside; + intritus_A : A ; -- [XXXEC] :: not worn away, unexhausted; + intro_Adv : Adv ; -- [XXXAX] :: within, in; to the inside, indoors; + intro_V : V ; -- [XXXDX] :: enter; go into, penetrate; reach; + introcedo_V2 : V2 ; -- [XXXES] :: enter; + introduco_V2 : V2 ; -- [XXXDX] :: introduce, bring/lead in; + introductio_F_N : N ; -- [FXXEM] :: innovation; introduction, preface, presentation (Red); + introeo_1_V : V ; -- [XXXBX] :: enter, go in or into; invade; + introeo_2_V : V ; -- [XXXBX] :: enter, go in or into; invade; + introgredior_V : V ; -- [XXXEO] :: enter; go in; step in (L+S); + introitus_M_N : N ; -- [XXXDX] :: entrance; going in, invasion; + intromitto_V2 : V2 ; -- [XXXCO] :: admit, let into, allow to come in; send/put in; introduce; + introrsum_Adv : Adv ; -- [XXXDX] :: to within, inwards internally; + introrsus_Adv : Adv ; -- [XXXDX] :: within, inside, to within, inwards, inwardly, internally; + introrumpo_V2 : V2 ; -- [XXXDX] :: break in; + introspicio_V2 : V2 ; -- [XXXDX] :: examine; inspect; look upon; + introsum_Adv : Adv ; -- [BXXFS] :: to within, inwards, internally; (archaic form of introrsum); + introsus_Adv : Adv ; -- [BXXFS] :: within, inside, to within, inwards, internally; (archaic form of introrsus); + introversio_F_N : N ; -- [FXXEZ] :: introversion, turning (thoughts) inward; contemplation of spiritual things; + intrusio_F_N : N ; -- [FLXFJ] :: intrusion; + intrusor_M_N : N ; -- [FLXFJ] :: intruder; + intubum_N_N : N ; -- [XXXDX] :: endive or chicory; + intubus_M_N : N ; -- [XXXDX] :: endive or chicory; + intueor_V : V ; -- [XXXAX] :: look at; consider, regard; admire; stare; + intuitive_Adv : Adv ; -- [GXXEK] :: intuitively; + intuitivus_A : A ; -- [GXXEK] :: intuitive; + intumesco_V2 : V2 ; -- [XXXDX] :: swell up, become swollen; rise; + intumulatus_A : A ; -- [XXXDX] :: unburied; + intumus_A : A ; -- [XXXFS] :: inmost; intimate; secret; (also intimus); + intuor_V : V ; -- [XXXES] :: look at; consider, regard; admire; stare; (alt. form of intueor); + inturbidus_A : A ; -- [XXXEC] :: undisturbed, quiet; + intus_Adv : Adv ; -- [XXXBX] :: within, on the inside, inside; at home; + intutus_A : A ; -- [XXXDX] :: defenseless; unsafe; + inula_F_N : N ; -- [XAXEC] :: plant elecampane; + inultus_A : A ; -- [XXXBO] :: unpunished, scot-free; acting with impunity; having no recompense, unavenged; + inumbro_V : V ; -- [XXXDX] :: cast a shadow; + inundatio_F_N : N ; -- [XXXDX] :: flood; + inundo_V : V ; -- [XXXDX] :: overflow, inundate, flood; swarm; + inungo_V2 : V2 ; -- [XXXDO] :: anoint (with); cover (food w/dressing); rub in (medicaments); + inunguo_V2 : V2 ; -- [XXXDO] :: anoint (with); cover (food w/dressing); rub in (medicaments); + inurbanus_A : A ; -- [XXXDX] :: rustic, boorish, dull; + inuro_V2 : V2 ; -- [XXXBO] :: ||impress indelibly; impose unalterably; paint by encaustic method; + inusitate_Adv : Adv ; -- [XXXEO] :: in an unusual manner; strangely; + inusitatus_A : A ; -- [XXXCO] :: unusual, uncommon; strange, unfamiliar; unwonted; + inustum_N_N : N ; -- [XXXDS] :: burned parts (pl.); burns;; + inustus_A : A ; -- [XXXDS] :: burned; + inutilis_A : A ; -- [XXXBX] :: useless, unprofitable, inexpedient, disadvantageous; harmful, helpless; + inutiliter_Adv : Adv ; -- [XXXCO] :: uselessly, unprofitably; invalidly (legal); badly, harmfully; inexpediently; + invado_V2 : V2 ; -- [XXXBX] :: enter, attempt; invade; take possession of; attack (with in +acc.); + invalesco_V : V ; -- [XXXCO] :: strengthen, grow strong; increase in power/effectiveness/intensity/frequency; + invaletudo_F_N : N ; -- [XXXFS] :: infirmity; + invalidus_A : A ; -- [XXXDX] :: infirm, weak feeble ineffectual; + invasio_F_N : N ; -- [EWXDS] :: attack; invasion; + inveho_V2 : V2 ; -- [XXXDX] :: carry/bring in, import; ride (PASS), drive, sail, attack; + invenditus_A : A ; -- [XLXES] :: unsold; + invenio_V2 : V2 ; -- [XXXAX] :: come upon; discover, find; invent, contrive; reach, manage to get; + inventarium_N_N : N ; -- [XXXEO] :: list; catalog; inventory; + inventio_F_N : N ; -- [XXXCO] :: invention/discovery (action/thing); action of devising/planning; plan/stratagem; + inventor_M_N : N ; -- [XXXDX] :: inventor; author; discoverer; + inventrix_F_N : N ; -- [XXXDX] :: inventress; + inventum_N_N : N ; -- [XXXDX] :: invention, discovery; + invenustus_A : A ; -- [XXXDX] :: unlovely, unattractive; + inverecundia_F_N : N ; -- [DXXES] :: immodesty; + inverecundus_A : A ; -- [XXXEC] :: shameless, impudent; + invergo_V : V ; -- [XXXDX] :: tip/pour (liquids) upon; incline; + invertibilitas_F_N : N ; -- [EEXFS] :: unchangeableness; immutability; unalterableness; + inverto_V2 : V2 ; -- [XXXDX] :: turn upside down; pervert; change; + invest_A : A ; -- [DXXES] :: unclothed; + investigabilis_A : A ; -- [XXXES] :: |unsearchable/untraceable, not to be investigated/looked into; + investigatio_F_N : N ; -- [XXXCO] :: search; inquiry, investigation; research; + investigo_V : V ; -- [XXXDX] :: investigate; search out/after/for; track down; find (by following game trail); + investio_V2 : V2 ; -- [XXXES] :: clothe; cover; + inveterasco_V2 : V2 ; -- [XXXDX] :: grow old; become established/customary; + inveteratio_F_N : N ; -- [XXXEC] :: inveterateness, permanence; persistentness; obstinateness; + inveteratus_A : A ; -- [XXXDX] :: old, inveterate, of long standing; hardened by age; + invetero_V : V ; -- [XXXDX] :: make old, give age to; grow old; become rooted; + invicem_Adv : Adv ; -- [XXXBX] :: in turn; by turns; reciprocally/mutually; [ab invicem => from one another]; + invicto_V : V ; -- [XXXDX] :: excite, exasperate, irritate; + invictus_A : A ; -- [XXXBX] :: unconquered; unconquerable, invincible; + invidendus_A : A ; -- [XXXEO] :: enviable, arousing envy/jealousy; be envied; + invidens_A : A ; -- [XXXFO] :: jealous; + invidentia_F_N : N ; -- [XXXDO] :: jealousy, envy; + invideo_V : V ; -- [XXXAO] :: envy, regard with envy/ill will; be jealous of; begrudge, refuse; + invidia_F_N : N ; -- [XXXBO] :: hate/hatred/dislike; envy/jealousy/spite/ill will; use of words/acts to arouse; + invidiose_Adv : Adv ; -- [XXXDX] :: so as to arouse hatred/odium/envy/hostility; jealously; with ill will; + invidiosus_A : A ; -- [XXXDX] :: arousing hatred/odium/envy; odious, invidious; enviable; envious, jealous; + invidus_A : A ; -- [XXXCO] :: hateful, ill disposed, hostile, malevolent; envious, jealous, grudging; + invigilo_V2 : V2 ; -- [XXXDX] :: stay awake (over); watch (over) diligently; + invincibilis_A : A ; -- [EXXES] :: invincible; + invincibiliter_Adv : Adv ; -- [EXXES] :: invincibly; + inviolabilis_A : A ; -- [XXXDX] :: sacrosanct, imperishable; + inviolate_Adv : Adv ; -- [XXXEC] :: inviolately + inviolatus_A : A ; -- [XXXEC] :: uninjured, unhurt; inviolable; + inviolaus_A : A ; -- [XXXDX] :: unhurt, unviolated, inviolable; + invisibil_A : A ; -- [EEXDX] :: invisible; spiritual; + invisitatus_A : A ; -- [XXXDX] :: unvisited, unseen; + inviso_V2 : V2 ; -- [XXXDX] :: go to see, visit; watch over; + invisus_A : A ; -- [XXXDX] :: hated, detested; hateful, hostile; + invitabulum_N_N : N ; -- [GXXET] :: place that invites; (Erasmus); + invitamentum_N_N : N ; -- [XXXDX] :: inducement; + invitatio_F_N : N ; -- [XXXDX] :: invitation; + invitatorius_A : A ; -- [DXXES] :: inviting; invitatory; of/pertaining to invitation; + invito_V : V ; -- [XXXBX] :: invite, summon; challenge, incite; encourage; attract, allure, entice; + invituperabilis_A : A ; -- [XEXFS] :: unblamable; + invitus_A : A ; -- [XXXBX] :: reluctant; unwilling; against one's will; + invius_A : A ; -- [XXXDX] :: impassable; inaccessible; + invoco_V : V ; -- [XXXDX] :: call upon, invoke; pray for; + involgo_V2 : V2 ; -- [XXXES] :: make known; publish abroad; + involo_V : V ; -- [XXXDX] :: fly into or at, rush upon; seize on; + involucrum_N_N : N ; -- [XXXEC] :: wrap, cover; envelope (Cal); + involuntarie_Adv : Adv ; -- [XXXFS] :: involuntarily; + involuntarius_A : A ; -- [XXXFS] :: involuntary; + involuntas_F_N : N ; -- [EEXFS] :: unwillingness; reluctance; disinclination; + involvo_V2 : V2 ; -- [XXXBX] :: wrap (in), cover, envelop; roll along; + invorto_V2 : V2 ; -- [XXXDX] :: turn upside down; pervert; change; + invulgo_V2 : V2 ; -- [XXXES] :: make known; publish abroad; + invulnerabilis_A : A ; -- [XXXFS] :: invulnerable; + invulneratus_A : A ; -- [XXXEC] :: unwounded; + iodium_N_N : N ; -- [GSXEK] :: iodine; + iogurtum_N_N : N ; -- [GXXEK] :: yogurt; + iota_N : N ; -- [XXHEO] :: iota; tenth letter of Greek alphabet; (transliterate as I); + iotacismus_M_N : N ; -- [XGXFS] :: iotacism; doubling of letters; excessive repetition of iota/other Greek vowels; + ioth_N : N ; -- [DEQEW] :: yod; (10th letter of Hebrew alphabet); (transliterate as Y); + ipsimus_M_N : N ; -- [XXXDX] :: master; + ipsissimus_A : A ; -- [BXXFS] :: own very self; + ira_F_N : N ; -- [XXXBO] :: anger; ire, wrath; resentment; indignation; rage/fury/violence; bad blood; + iracunde_Adv : Adv ; -- [XXXDO] :: angrily, irately; irritably; passionately; w/anger; w/proneness to anger; + iracundia_F_N : N ; -- [XXXCO] :: irascibility, hot temper; passion; resentment; anger; wrath (Ecc); + iracunditer_Adv : Adv ; -- [XXXFO] :: angrily, irately; irritably; passionately; in a quick-tempered manner; + iracundus_A : A ; -- [FXXEE] :: angry; hot-tempered; enraged; furious; + irascibilis_A : A ; -- [FXXES] :: irascible, choleric; + irascor_V : V ; -- [XXXBO] :: get/be/become angry; fly into a rage; be angry at (with DAT); feel resentment; + irate_Adv : Adv ; -- [XXXEO] :: angrily; indignantly; furiously; + iratus_A : A ; -- [XXXCO] :: angry; enraged; furious; violent (L+S); raging; angered; + irenacentia_F_N : N ; -- [XAXEO] :: proneness/readiness/inclination/disposition//propensity to anger; anger/choler; + irenaceus_M_N : N ; -- [XAXEO] :: hedgehog; + irenarcha_M_N : N ; -- [XLXES] :: provincial judge; + irenismus_M_N : N ; -- [GXXEK] :: pacifism; + irinum_N_N : N ; -- [XAXCO] :: extract of iris root; + irinus_A : A ; -- [XAXEO] :: of/derived from the iris plant/root; + iris_F_N : N ; -- [XAXCO] :: iris (plant)i; preparation of iris root; iridescent stone; + iris_M_N : N ; -- [XAXFO] :: hedgehog; + irnea_F_N : N ; -- [BXXEO] :: jug; kind of jug; + irneacus_A : A ; -- [XBXIO] :: having hernia/rupture/enlarged scrotum; + irneosus_A : A ; -- [XBXFO] :: having hernia/rupture/enlarged scrotum; + iro_V : V ; -- [FXXDE] :: get/be/become angry; fly into a rage; be angry at (with DAT); feel resentment; + ironia_F_N : N ; -- [XXXEC] :: irony; + ironice_Adv : Adv ; -- [FXXEM] :: ironically; + irradiatio_F_N : N ; -- [EXXFP] :: illumination; irradiation (Cal); + irradio_V : V ; -- [FSXEN] :: beam forth; + irrationabile_N_N : N ; -- [DXXFS] :: unreasoning creatures; dumb animals; + irrationabilis_A : A ; -- [XXXEO] :: irrational, unreasoning; + irrationabiliter_Adv : Adv ; -- [DXXES] :: irrationally, unreasoningly; + irrational_N_N : N ; -- [EXXES] :: unreasoning creature; + irrationalis_A : A ; -- [EXXES] :: irrational, unreasoning; + irrecogitatio_F_N : N ; -- [DXXFS] :: thoughtlessness; inconsiderateness; + irrecordabilis_A : A ; -- [DEXFS] :: not to be remembered; + irrecuperabilis_A : A ; -- [DEXFS] :: irreparable; unalterable; irrecoverable; + irrecusabilis_A : A ; -- [DEXES] :: not to be refused; that cannot be refused; + irrecusabiliter_Adv : Adv ; -- [DXXFS] :: without possibility of refusal; + irreductibilis_A : A ; -- [EEXFE] :: irreducible; unable to be reduced; + irreformabilis_A : A ; -- [DEXFS] :: unchangeable; unalterable; + irrefragabilis_A : A ; -- [DEXFS] :: unavoidable; irresistible; incontrovertible/incontestable/indisputable; + irrefragabiliter_Adv : Adv ; -- [DEXFS] :: unavoidably; irresistibly; incontestably; undeniably; + irrefrenabilis_A : A ; -- [EEXFE] :: uncontrollable; unquenchable; + irregressibilis_A : A ; -- [EEXFS] :: from which there is no return; + irregularis_A : A ; -- [EXXDE] :: irregular; + irregularitas_F_N : N ; -- [FXXEE] :: irregularity; impediment (to reception/exercise of sacred orders); + irreligatus_A : A ; -- [XXXEO] :: unfastened, unbound, unmoored; not fastened/bound/moored; + irreligiose_Adv : Adv ; -- [XEXFO] :: impiously; blasphemously; + irreligiosus_A : A ; -- [XEXDO] :: irreligious; impious; + irremeabilis_A : A ; -- [XXXEO] :: along or across which one cannot return; + irremediabilis_A : A ; -- [XXXEO] :: fatal; irredeemable; beyond cure; for which there is no remedy; + irremissibilis_A : A ; -- [DXXES] :: unpardonable, irremissible; unremitting; of which there is no remission/pardon; + irremunerabilis_A : A ; -- [XXXEO] :: that cannot be repaid/compensated/remunerated; + irremuneratus_A : A ; -- [DXXES] :: unrewarded; unremunerated; unpaid; + irreparabilis_A : A ; -- [XXXEO] :: irreparable, irrecoverable (loss/damage); irretrievable;; + irrepertus_A : A ; -- [XXXDX] :: not found, undiscovered; + irrepo_V2 : V2 ; -- [XXXDX] :: creep in or into; steal into; insinuate oneself (into); + irreprehensibilis_A : A ; -- [DXXES] :: irresprehensible, not blameworthy; irreproachable; not liable to reproof/blame; + irreprehensus_A : A ; -- [XXXEO] :: blameless, not blamed; not censured; + irrepticius_A : A ; -- [FXXEM] :: surreptitious; + irreptio_F_N : N ; -- [FXXEM] :: creeping in; + irrequietus_A : A ; -- [XXXES] :: unquiet; restless; disquieting; + irretio_V2 : V2 ; -- [XXXDX] :: entangle; catch in a net; + irreverens_A : A ; -- [DXXES] :: irreverent; disrespectful; + irreverentia_F_N : N ; -- [XXXDX] :: disrespect; + irrevocabilis_A : A ; -- [XXXCO] :: irrevocable/unalterable; that can't be summoned/held/drawn back/undone/reversed; + irrevocabilus_A : A ; -- [FXXFZ] :: irrevocable/unalterable; that can't be summoned/held/drawn back/undone/reversed; + irrideo_V : V ; -- [XXXDX] :: ridicule, mock, make fun of; laugh at; + irridicule_Adv : Adv ; -- [XXXDX] :: without wit; unwittingly; unamusingly; + irrigo_V2 : V2 ; -- [XXXBO] :: water/irrigate; inundate/flood; refresh; wet/moisten; diffuse, shed (sensation); + irriguus_A : A ; -- [XXXDX] :: watering; well watered; + irrimator_M_N : N ; -- [XXXEO] :: one who submits to fellatio; vile person (L+S); (term of abuse); (rude); + irrimo_V2 : V2 ; -- [XXXEO] :: force receptive male oral sex; treat in shameful manner; abuse; defile; (rude); + irrisio_F_N : N ; -- [XXXDS] :: derision; mockery; + irrisor_M_N : N ; -- [XXXDX] :: mocker, scoffer; + irrisus_M_N : N ; -- [XXXDX] :: mockery; laughingstock; + irritabilis_A : A ; -- [XXXDX] :: easily provoked, sensitive; + irritamen_N_N : N ; -- [XXXDX] :: incentive, stimulus; + irritamentum_N_N : N ; -- [XXXDX] :: incentive, stimulus; + irritatio_F_N : N ; -- [XXXDX] :: incitement, provocation; + irritator_M_N : N ; -- [XXXFO] :: instigator, prompter; provoker, inciter; + irritatrix_F_N : N ; -- [EXXFS] :: inciter, she who incites; + irrito_V : V ; -- [XXXDX] :: excite; exasperate, provoke, aggravate, annoy, irritate; + irritus_A : A ; -- [XXXBX] :: ineffective, useless; invalid, void, of no effect; in vain; + irrogo_V2 : V2 ; -- [XXXCO] :: impose/inflict (penalty/burden); demand/propose/call for (penalties/fines); + irroro_V : V ; -- [XXXDX] :: wet with dew; besprinkle, water; rain on; + irrotulatio_F_N : N ; -- [FLXFJ] :: enrollment; + irrotulo_V : V ; -- [FLXFJ] :: enroll; + irrugio_V : V ; -- [EXXFS] :: cry loudly; + irrumator_M_N : N ; -- [XXXEO] :: one who submits to fellatio; vile person (L+S); (term of abuse); (rude); + irrumo_V2 : V2 ; -- [XXXEO] :: force receptive male oral sex; treat in shameful manner; abuse; defile; (rude); + irrumpo_V2 : V2 ; -- [XXXAO] :: invade; break/burst/force/rush in/upon/into, penetrate; intrude on; interrupt; + irruo_V : V ; -- [XXXCS] :: rush into; invade; + irruo_V2 : V2 ; -- [XXXBO] :: intrude/encroach/invade, force way in; demolish (Souter); cause to collapse; + irruptio_F_N : N ; -- [XXXDX] :: attack, sally, assault; violent/forcible entry; + ischiacus_A : A ; -- [XBXFS] :: that has hip pains; + ischiadicus_A : A ; -- [XBXFS] :: of hip-gout; of pains in hip; + ischium_N_N : N ; -- [XBXFS] :: hip joint; + isicium_N_N : N ; -- [XAXFS] :: stuffing; minced meat; + isocheles_A : A ; -- [FSHEM] :: isosceles (triangle); having two equal sides; + isochronismus_M_N : N ; -- [GXXEK] :: isochronism; taking place in equal time; P:w/equal time between stresses; + isochronus_A : A ; -- [GXXEK] :: isochronous; of equal duration; taking place at the same time; + isosceles_A : A ; -- [ESHEQ] :: isosceles (triangle); having two equal sides; + isoscelles_A : A ; -- [ESHEP] :: isosceles (triangle); having two equal sides; + istac_Adv : Adv ; -- [XXXDX] :: there, that way; in that way, in such a way; + isthmus_M_N : N ; -- [XXXDX] :: isthmus; strait; + isti_Adv : Adv ; -- [XXXDX] :: there, in that place; where you are; herein, in this affair; + istic_Adv : Adv ; -- [XXXDX] :: there, over there, in that place; where you are; herein, in this affair; + istimodi_Adv : Adv ; -- [XXXDS] :: such, of that kind/type/manner; + istinc_Adv : Adv ; -- [XXXDX] :: from (over) there, thence; from where you are; on the other side; from here; + istiusmodi_Adv : Adv ; -- [XXXDS] :: such, of that kind/type/manner; + isto_Adv : Adv ; -- [XXXDX] :: thither, to you, to where you are; in that matter; to the point you reached; + istoc_Adv : Adv ; -- [XXXDX] :: thither, that way, yonder; + istuc_Adv : Adv ; -- [XXXDX] :: thither, to you, to where you are; in that direction; to that subject/point; + ita_Adv : Adv ; -- [XXXAX] :: thus, so; therefore; + italicus_A : A ; -- [XXXDX] :: of Italy, Italian; + italus_A : A ; -- [XXXDX] :: of Italy, Italian; + itaque_Adv : Adv ; -- [XXXAX] :: and so, accordingly; thus, therefore, consequently; + itaque_Conj : Conj ; -- [XXXAX] :: and so, therefore; + item_Adv : Adv ; -- [XXXAX] :: likewise; besides, also, similarly; + iter_N_N : N ; -- [XXXAX] :: journey; road; passage, path; march [route magnum => forced march]; + iteratio_F_N : N ; -- [XXXEZ] :: repetition (Collins); + itero_V : V ; -- [XXXDX] :: do a second time; repeat; renew, revise; + iterum_Adv : Adv ; -- [XXXAX] :: again; a second time; for the second time; + ithyphallicus_A : A ; -- [XXXFS] :: ithyphallic; special-metric; + itidem_Adv : Adv ; -- [XXXCO] :: in the same manner/way, just so; likewise, similarly, also; + itiner_N_N : N ; -- [BXXDX] :: journey; road; passage, path; march [route magnum => forced march]; + itinerans_A : A ; -- [FXXFJ] :: itinerant; + itinero_V : V ; -- [FXXEM] :: travel; go on eyre/judge's circuit; + itus_M_N : N ; -- [XXXDX] :: going, gait; departure; + ixon_N_N : N ; -- [EAXFW] :: ringtail; (bird); (female hen-harrier, formerly thought distinct species OED); + jacca_F_N : N ; -- [GXXEK] :: jacket; + jaceo_V : V ; -- [XXXAX] :: lie; lie down; lie ill/in ruins/prostrate/dead; sleep; be situated; + jacio_V2 : V2 ; -- [XXXAX] :: throw, hurl, cast; throw away; utter; + jactans_A : A ; -- [XXXCO] :: arrogant; boastful; proud; exaltant; + jactanter_Adv : Adv ; -- [XXXDX] :: arrogantly; + jactantia_F_N : N ; -- [XXXDX] :: boasting, ostentation; + jactatio_F_N : N ; -- [XXXDX] :: shaking; boasting; showing off; + jactio_F_N : N ; -- [GXXET] :: throwing; (Erasmus); + jactito_V2 : V2 ; -- [XXXEQ] :: mention; bandy; (Col); + jacto_V : V ; -- [XXXAX] :: throw away, throw out, throw, jerk about; disturb; boast, discuss; + jactura_F_N : N ; -- [XXXDX] :: loss; sacrifice; expense, cost; throwing away/overboard; + jactus_M_N : N ; -- [XXXDX] :: throwing, hurling, cast, throw; + jaculator_M_N : N ; -- [XXXDX] :: javelin thrower; + jaculor_V : V ; -- [XXXDX] :: throw a javelin; hurl, cast; shoot at; + jaculum_N_N : N ; -- [XXXBX] :: javelin; dart; + jaculus_A : A ; -- [XXXEC] :: thrown, darting; + jam_Adv : Adv ; -- [XXXAO] :: now, already, by/even now; besides; [non ~ => no longer; ~ pridem => long ago]; + jamdudum_Adv : Adv ; -- [XXXBL] :: long ago/before/since; a long time ago; this long time; immediately, at once; + jamjam_Adv : Adv ; -- [XXXCS] :: already; now; + jamjamque_Adv : Adv ; -- [XXXCS] :: just now, at this very moment; already, now, just; + jampridem_Adv : Adv ; -- [XXXBO] :: long ago/since; well before now/then; for a long time now/past; + janitor_M_N : N ; -- [XXXDX] :: doorkeeper, porter; janitor; + janitrix_F_N : N ; -- [XPXEC] :: poetress; + janthinus_A : A ; -- [XXXEC] :: violet-colored; + janua_F_N : N ; -- [XXXAX] :: door, entrance; + jasminum_N_N : N ; -- [GXXEK] :: jasmine; + jaspis_F_N : N ; -- [XXXDX] :: jasper; + jecur_N_N : N ; -- [XBXBO] :: liver; (food, medicine, drug, for divination, as seat of feelings); + jecusculum_N_N : N ; -- [XBXEO] :: little liver; + jejunitas_F_N : N ; -- [FXXEN] :: hunger, emptiness; meagerness, poverty; + jejunium_N_N : N ; -- [EEXDX] :: fasting/fast (day); Lent; hunger; leanness; [caput jejunius => Ash Wednesday]; + jejuno_V : V ; -- [DXXDS] :: fast; abstain form; + jejunus_A : A ; -- [XXXBX] :: fasting, abstinent, hungry; dry, barren, unproductive; scanty, meager; + jentaculum_N_N : N ; -- [XXXEC] :: breakfast; + jento_V : V ; -- [XXXEC] :: breakfast; + jobeleus_M_N : N ; -- [EEQEW] :: year of the jubilee among Jews; (slaves freed and property reverts); 50th year; + jobileus_M_N : N ; -- [EEQEW] :: year of the jubilee among Jews; (slaves freed and property reverts); 50th year; + jocabundus_A : A ; -- [XXXEO] :: jesting, joking; making jokes; + jocatio_F_N : N ; -- [XXXDX] :: joke, jest; + jocinerosus_A : A ; -- [EBXEP] :: liverish, with bad/ailing liver; + joco_V : V ; -- [BXXFS] :: joke, jest; say in jest; make merry; + jocor_V : V ; -- [DXXCS] :: joke, jest; say in jest; make merry; + jocose_Adv : Adv ; -- [XXXDX] :: jokingly, jocosely; + jocosus_A : A ; -- [XXXDX] :: humorous, funny, droll; sportive; factious; full of jesting/jokes/fun; + jocularis_A : A ; -- [XXXDX] :: laughable; + joculor_V : V ; -- [XXXDX] :: jest; joke; + jocunde_Adv : Adv ; -- [XXXCO] :: pleasantly; delightfully; pleasingly, gratifyingly, agreeably; + jocundiatas_F_N : N ; -- [XXXCO] :: charm, agreeableness, pleasing quality; pleasantness/amiability; favors (pl.); + jocunditas_F_N : N ; -- [XXXCO] :: charm, agreeableness, pleasing quality; pleasantness/amiability; favors (pl.); + jocundo_V2 : V2 ; -- [DXXCS] :: please, delight; feel delighted; take delight; + jocundus_A : A ; -- [XXXBO] :: pleasant/agreeable/delightful/pleasing (experience/person/senses); congenial; + jocur_N_N : N ; -- [XBXDO] :: liver; (food/medicine/divination/seat of feelings); + jocus_M_N : N ; -- [XXXBX] :: joke, jest; sport; + jocusculum_N_N : N ; -- [XBXEO] :: little liver; + jod_N : N ; -- [XXQFE] :: jod; (tenth letter of Hebrew alphabet); + juba_F_N : N ; -- [XXXDX] :: mane of a horse; crest (of a helmet); + jubar_N_N : N ; -- [XXXDX] :: radiance of the heavenly bodies, brightness; first light of day; light source; + jubatus_A : A ; -- [XXXEC] :: having mane, crest; + jubelaeus_M_N : N ; -- [DEQES] :: year of the jubilee among Jews; (slaves freed and property reverts); 50th year; + jubeo_V2 : V2 ; -- [XXXAO] :: order/tell/command/direct; enjoin/command; decree/enact; request/ask/bid; pray; + jubilaeus_M_N : N ; -- [DEQES] :: year of the jubilee among Jews; (slaves freed and property reverts); 50th year; + jubilarius_A : A ; -- [DEQFE] :: jubilee-, of a jubilee; + jubilatio_F_N : N ; -- [XXXEO] :: wild/loud shouting; whooping; jubilation/rejoicing (Ecc); gladness; retirement; + jubilatus_M_N : N ; -- [XXXEO] :: wild/loud shouting; whooping; jubilation/rejoicing (Ecc); gladness; retirement; + jubilo_V : V ; -- [XXXEO] :: shout/sing out/joyfully, rejoice; invoke with/let out shouts/whoops, halloo; + jubilum_N_N : N ; -- [XXXEO] :: wild/joyful shout/cry; whoop of joy; halloo; shepherd's song (L+S); + jubilus_M_N : N ; -- [XXXFE] :: joyful melody; + jubo_V2 : V2 ; -- [XXXCO] :: order/tell/command/direct; enjoin/command; decree/enact; request/ask/bid; pray; + juctim_Adv : Adv ; -- [XXXCO] :: together, side-by-side; in succession, consecutively; + jucunde_Adv : Adv ; -- [XXXCO] :: pleasantly; delightfully; pleasingly, gratifyingly, agreeably; + jucunditas_F_N : N ; -- [XXXBO] :: charm, agreeableness, pleasing quality; pleasantness/amiability; favors (pl.); + jucundo_V2 : V2 ; -- [DXXCS] :: please, delight; feel delighted; take delight; + jucundus_A : A ; -- [XXXBO] :: pleasant/agreeable/delightful/pleasing (experience/person/senses); congenial; + judex_M_N : N ; -- [XLXAX] :: judge; juror; + judicalis_A : A ; -- [XLXCO] :: judicial; forensic; of/relating to law courts/administration; of jury service; + judicatio_F_N : N ; -- [XLXBO] :: judicial enquiry, act of deciding case; question/point at issue; opinion; + judiciarius_A : A ; -- [XXXCC] :: of a court of justice, judicial; + judicium_N_N : N ; -- [XLXAO] :: |judgment/sentence/verdict; judging; jurisdiction/authority; opinion/belief; + judico_V : V ; -- [XLXDX] :: judge, give judgment; sentence; conclude, decide; declare, appraise; + juditium_N_N : N ; -- [ELXAZ] :: |judgment/sentence/verdict; judging; jurisdiction/authority; opinion/belief; + jugalis_A : A ; -- [XXXDX] :: yoked together; nuptial; + juger_N_N : N ; -- [XSXCO] :: jugerum (area 5/8 acre/length 240 Roman feet); acres/fields/broad expanse (pl.); + jugerum_N_N : N ; -- [XSXBO] :: jugerum (area 5/8 acre/length 240 Roman feet); acres/fields/broad expanse (pl.); + jugis_A : A ; -- [XXXDX] :: continual; ever-flowing; + jugiter_Adv : Adv ; -- [XXXCO] :: continually, unendingly; in unbroken succession; continuously; constantly (Bee); + juglans_F_N : N ; -- [XAXCO] :: walnut tree; walnut (nut); + jugo_V : V ; -- [XXXAX] :: marry; join (to); + jugosus_A : A ; -- [XXXEC] :: mountainous; jugulans_1_N : N ; -- [XAXEO] :: walnut tree; walnut (nut); - jugulans_2_N : N ; - jugulo_V : V ; - jugulum_N_N : N ; - jugulus_M_N : N ; - jugum_N_N : N ; - julis_F_N : N ; - julus_M_N : N ; - jumentum_N_N : N ; - junceus_A : A ; - junctim_Adv : Adv ; - junctura_F_N : N ; - junctus_A : A ; - juncus_M_N : N ; - jungo_V2 : V2 ; - junior_A : A ; - junior_M_N : N ; - juniperus_F_N : N ; - juramentum_N_N : N ; - jurandum_N_N : N ; - juratus_A : A ; - jure_Adv : Adv ; - jureconsultus_M_N : N ; - jureiuro_V : V ; - jureperitus_A : A ; - jurgator_M_N : N ; - jurgatorus_A : A ; - jurgatrix_F_N : N ; - jurgium_N_N : N ; - jurgo_V : V ; - juridicialis_A : A ; - juridicus_A : A ; - juridicus_M_N : N ; - jurisconsultus_M_N : N ; - jurisdictio_F_N : N ; - jurisperitus_A : A ; - juro_V : V ; - jurulentus_A : A ; - jus_N_N : N ; - juscellum_N_N : N ; - jusculum_N_N : N ; - jusjurandum_N_N : N ; - jussio_F_N : N ; - jussum_N_N : N ; - jussus_M_N : N ; - juste_Adv : Adv ; - justico_V : V ; - justificatio_F_N : N ; - justificatus_A : A ; - justifico_V2 : V2 ; - justitia_F_N : N ; - justitium_N_N : N ; - justum_N_N : N ; - justus_A : A ; - jusum_Adv : Adv ; - juvamen_N_N : N ; - juvat_V0 : V ; - juvenalis_A : A ; - juvenaliter_Adv : Adv ; - juvenca_F_N : N ; - juvencus_M_N : N ; - juvenesco_V2 : V2 ; - juvenilis_A : A ; - juvenis_A : A ; + jugulans_2_N : N ; -- [XAXEO] :: walnut tree; walnut (nut); + jugulo_V : V ; -- [XXXDX] :: kill by slitting the throat; butcher, kill, murder, slay; cut the throat; + jugulum_N_N : N ; -- [XXXDX] :: throat, neck; collarbone; + jugulus_M_N : N ; -- [XXXDX] :: throat, neck; collarbone; + jugum_N_N : N ; -- [XXXAX] :: yoke; team, pair (of horses); ridge (mountain), summit, chain; + julis_F_N : N ; -- [DAXNS] :: rock-fish (Pliny); + julus_M_N : N ; -- [DAXNS] :: plant-down; woolly part of plant (Pliny); + jumentum_N_N : N ; -- [XXXDX] :: mule; beast of burden; + junceus_A : A ; -- [XAXES] :: made of rushes; + junctim_Adv : Adv ; -- [XXXEE] :: both together; successively; + junctura_F_N : N ; -- [XXXDX] :: joint; association; + junctus_A : A ; -- [XXXDX] :: connected in space, adjoining, contiguous; closely related/associated; + juncus_M_N : N ; -- [XXXDX] :: rush; + jungo_V2 : V2 ; -- [XXXDX] :: join, unite; bring together, clasp (hands); connect, yoke, harness; + junior_A : A ; -- [XXXDX] :: younger (COMP of juvenis); + junior_M_N : N ; -- [XXXDX] :: younger man, junior; (in Rome a man younger than 45); + juniperus_F_N : N ; -- [XXXDX] :: juniper; + juramentum_N_N : N ; -- [XXXEO] :: oath; + jurandum_N_N : N ; -- [BXXES] :: oath; + juratus_A : A ; -- [XXXDX] :: being under oath, having given one's word, pledged; sworn loyalty; conspired; + jure_Adv : Adv ; -- [XXXDX] :: by right, rightly, with justice; justly, deservedly; + jureconsultus_M_N : N ; -- [XLXEO] :: lawyer, jurist; (also two words); + jureiuro_V : V ; -- [XLXEC] :: swear an oath; + jureperitus_A : A ; -- [XXXEC] :: skilled or experienced in the law; + jurgator_M_N : N ; -- [EEXEE] :: quarrelsome person; + jurgatorus_A : A ; -- [DXXFS] :: quarrelsome; + jurgatrix_F_N : N ; -- [EEXES] :: quarrelsome woman; + jurgium_N_N : N ; -- [XXXCO] :: quarrel/dispute/strife; abuse/vituperation/invective; L:separation (man+wife); + jurgo_V : V ; -- [XXXDX] :: quarrel, scold; + juridicialis_A : A ; -- [XXXEC] :: relating to right or justice; + juridicus_A : A ; -- [ELXES] :: judiciary; + juridicus_M_N : N ; -- [ELXES] :: judge; administrator of justice; + jurisconsultus_M_N : N ; -- [XLXEO] :: lawyer, jurist; (also two words); + jurisdictio_F_N : N ; -- [XXXDX] :: jurisdiction, legal authority; administration of justice; + jurisperitus_A : A ; -- [XXXEC] :: skilled or experienced in the law; + juro_V : V ; -- [XXXAX] :: swear; call to witness; vow obedience to; [jus jurandum => oath]; conspire; + jurulentus_A : A ; -- [EXXES] :: juicy; not dried; + jus_N_N : N ; -- [XLXAO] :: law; legal system; code; right; duty; justice; court; binding decision; oath; + juscellum_N_N : N ; -- [EXXFS] :: broth; soup; + jusculum_N_N : N ; -- [XXXFS] :: broth; + jusjurandum_N_N : N ; -- [FXXEV] :: oath; + jussio_F_N : N ; -- [XXXDO] :: order, command; magistrate's order; requisition; + jussum_N_N : N ; -- [XXXDX] :: order, command, decree, ordinance, law; physician's prescription; + jussus_M_N : N ; -- [XXXDX] :: order, command, decree, ordinance; [only ABL S => by order/decree/command]; + juste_Adv : Adv ; -- [XXXDX] :: justly, rightly, lawfully, legitimately, justifiably; properly, honorably; + justico_V : V ; -- [FEXEM] :: justify; L:bring to justice; + justificatio_F_N : N ; -- [DXXCS] :: justification; due formality; doing right (Def); cleansing of injustice; + justificatus_A : A ; -- [DEXES] :: justified; made just; vindicated; + justifico_V2 : V2 ; -- [DXXCS] :: act justly towards, do justice to; justify/make just; forgive/pardon; vindicate; + justitia_F_N : N ; -- [XXXBX] :: justice; equality; righteousness (Plater); + justitium_N_N : N ; -- [XXXDX] :: cessation of judicial and all public business, due to national calamity; + justum_N_N : N ; -- [XXXDX] :: justice; what is fair/equitable/right/due/proper; funeral rites/offerings; + justus_A : A ; -- [XXXAX] :: just, fair, equitable; right, lawful, justified; regular, proper; + jusum_Adv : Adv ; -- [DXXES] :: down, downwards; + juvamen_N_N : N ; -- [EXXES] :: help, aid; assistance; + juvat_V0 : V ; -- [XXXDX] :: it pleases/delights; it is enjoyable; it is helpful; + juvenalis_A : A ; -- [XXXDX] :: youthful, young; + juvenaliter_Adv : Adv ; -- [XXXDX] :: youthfully, like a youth; + juvenca_F_N : N ; -- [XXXDX] :: young cow, heifer; girl; + juvencus_M_N : N ; -- [XXXBX] :: young bull; young man; + juvenesco_V2 : V2 ; -- [XXXDX] :: grow up; grow young again, regain youth; + juvenilis_A : A ; -- [XXXDX] :: youthful; + juvenis_A : A ; -- [XXXAX] :: youthful, young; juvenis_F_N : N ; -- [XXXDX] :: youth, young man/woman; - juvenis_M_N : N ; - juvenor_V : V ; - juventa_F_N : N ; - juventas_F_N : N ; - juventus_F_N : N ; - juvo_V : V ; - juxta_Acc_Prep : Prep ; - juxta_Adv : Adv ; - juxtapositio_F_N : N ; - juxtim_Acc_Prep : Prep ; - juxtim_Adv : Adv ; - kadamitas_F_N : N ; - kalator_M_N : N ; - kalatorius_A : A ; - kalendarium_N_N : N ; - kalo_V2 : V2 ; - kalumnia_F_N : N ; - kalumniator_M_N : N ; - kalumniatrix_F_N : N ; - kapitularium_N_N : N ; - kaput_N_N : N ; - kardo_M_N : N ; - karus_A : A ; - katafractarius_A : A ; - katafractarius_M_N : N ; - koppa_N : N ; - kum_V : V ; - labarum_N_N : N ; - labasco_V : V ; - labda_N : N ; - labdacismus_M_N : N ; - labecula_F_N : N ; - labefacio_V2 : V2 ; - labefacto_V : V ; - labefio_V : V ; - labellum_N_N : N ; - labes_F_N : N ; - labia_F_N : N ; - labiosus_A : A ; - labium_N_N : N ; - labo_V : V ; - labor_M_N : N ; - labor_V : V ; - laborator_M_N : N ; - laboratorium_N_N : N ; - laborifer_A : A ; - laboriose_Adv : Adv ; - laboriosus_A : A ; - laboro_V : V ; - labos_M_N : N ; - labrum_N_N : N ; - labrusca_F_N : N ; - labruscum_N_N : N ; - labyrintheus_A : A ; - labyrinthus_M_N : N ; - lac_N_N : N ; - lacer_A : A ; - laceratio_F_N : N ; - laceratrix_F_N : N ; - lacerna_F_N : N ; - lacero_V : V ; - lacerta_F_N : N ; - lacertosus_A : A ; - lacertus_M_N : N ; - lacesso_V2 : V2 ; - lachrima_F_N : N ; - lachrimula_F_N : N ; - lachruma_F_N : N ; - lachryma_F_N : N ; - lacinia_F_N : N ; - laciniatim_Adv : Adv ; - laciniosus_A : A ; - lacrima_F_N : N ; - lacrimabilis_A : A ; - lacrimabundus_A : A ; - lacrimalis_A : A ; - lacrimifer_A : A ; - lacrimo_V : V ; - lacrimor_V : V ; - lacrimosus_A : A ; - lacrimula_F_N : N ; - lacruma_F_N : N ; - lacryma_F_N : N ; - lact_N_N : N ; - lactans_A : A ; - lactarium_N_N : N ; - lactatio_F_N : N ; - lacte_N_N : N ; - lactens_A : A ; + juvenis_M_N : N ; -- [XXXDX] :: youth, young man/woman; + juvenor_V : V ; -- [XXXEC] :: act like a youth, be impetuous; + juventa_F_N : N ; -- [XXXBX] :: youth; + juventas_F_N : N ; -- [XXXBX] :: youth; + juventus_F_N : N ; -- [XXXDX] :: youth; the age of youth (20-40), young persons; young men, knights; + juvo_V : V ; -- [XXXAX] :: help, assist, aid, support, serve, further; please, delight, gratify; + juxta_Acc_Prep : Prep ; -- [XXXBX] :: near, (very) close to, next to; hard by, adjoining; on a par with; like; + juxta_Adv : Adv ; -- [XXXDX] :: nearly; near, close to, near by, hard by, by the side of; just as, equally; + juxtapositio_F_N : N ; -- [GXXEK] :: juxtaposition; + juxtim_Acc_Prep : Prep ; -- [XXXDX] :: next to, beside; + juxtim_Adv : Adv ; -- [XXXDX] :: nearby, in close proximity, close together, side-by-side; equally; + kadamitas_F_N : N ; -- [XXXBO] :: loss, damage, harm; misfortune/disaster; military defeat; blight, crop failure; + kalator_M_N : N ; -- [XXXCO] :: personal attendant, servant, footman; servant of a priest; + kalatorius_A : A ; -- [DEXFS] :: pertaining to a servant of a priest; + kalendarium_N_N : N ; -- [XXXDO] :: calendar; ledger/account book (for monthly interest payments); + kalo_V2 : V2 ; -- [BXXEO] :: announce, proclaim; summon, convoke, call forth/together; + kalumnia_F_N : N ; -- [XLXBO] :: sophistry, sham; false accusation/claim/statement/pretenses/objection; quibble; + kalumniator_M_N : N ; -- [XLXCO] :: false accuser; pettifogger, chicaner; perverter of the law; carping critic; + kalumniatrix_F_N : N ; -- [XLXFO] :: false accuser/claimant (female); + kapitularium_N_N : N ; -- [XLXIO] :: head/poll-tax or levy; + kaput_N_N : N ; -- [XXXAO] :: head; person; life; leader; top; source/mouth (river); capital (punishment); + kardo_M_N : N ; -- [XXXAO] :: hinge; pole, axis; chief point/circumstance; crisis; tenon/mortise; area; limit; + karus_A : A ; -- [XXXAO] :: dear, beloved; costly, precious, valued; high-priced, expensive; + katafractarius_A : A ; -- [XWXEO] :: wearing mail, armored; + katafractarius_M_N : N ; -- [XWXEO] :: mail-clad/armored soldier; + koppa_N : N ; -- [XXXEO] :: archaic Greek letter koppa; + kum_V : V ; -- [EEQFE] :: arise; (Aramaic); (Mark 5:41); + labarum_N_N : N ; -- [EWXFS] :: Labarum; Roman military standard; Constantine's banner of cross w/monogram XP; + labasco_V : V ; -- [XXXDX] :: fall to pieces, break up; waver; yield; + labda_N : N ; -- [XXHEO] :: lambda (Greek letter); (used as a symbol for fellatio); + labdacismus_M_N : N ; -- [XPXFS] :: speaking fault (esp. with letter L); + labecula_F_N : N ; -- [XXXDX] :: stain, blemish; slight stain; minor disgrace; + labefacio_V2 : V2 ; -- [XXXDX] :: make unsteady/totter; loosen, shake; subvert (power/authority); weaken resolve; + labefacto_V : V ; -- [XXXDX] :: shake; cause to waver; make unsteady, loosen; undermine; + labefio_V : V ; -- [DXXDX] :: be made unsteady; be loosened/shaken; be subverted; (labefacio PASS); + labellum_N_N : N ; -- [XXXCO] :: lip; + labes_F_N : N ; -- [XXXBO] :: landslip/subsidence; disaster/debacle; fault/defect/blot/stain/blemish/dishonor; + labia_F_N : N ; -- [XBXES] :: lip; (alt. form of labium); + labiosus_A : A ; -- [XXXDX] :: with/having large lips; + labium_N_N : N ; -- [XXXDX] :: lip; flange; + labo_V : V ; -- [XXXAX] :: totter, be ready to fall; begin to sink; give way; waver, decline, sink; err; + labor_M_N : N ; -- [XXXAO] :: |preoccupation/concern; struggle/suffering/distress/hardship/stress; wear+tear; + labor_V : V ; -- [XXXBX] :: slip, slip and fall; slide, glide, drop; perish, go wrong; + laborator_M_N : N ; -- [FXXFM] :: laborer; workman; + laboratorium_N_N : N ; -- [GSXEK] :: laboratory; + laborifer_A : A ; -- [XXXEC] :: bearing labor; + laboriose_Adv : Adv ; -- [XXXDX] :: laboriously; + laboriosus_A : A ; -- [XXXDX] :: laborious, painstaking; + laboro_V : V ; -- [XXXAX] :: work, labor; produce, take pains; be troubled/sick/oppressed, be in distress; + labos_M_N : N ; -- [BXXAO] :: |preoccupation/concern; struggle/suffering/distress/hardship/stress; wear+tear; + labrum_N_N : N ; -- [XXXBO] :: lip (of person/vessel/ditch/river), rim, edge; + labrusca_F_N : N ; -- [XXXDX] :: wild vine; + labruscum_N_N : N ; -- [XXXDX] :: fruit if the wild vine, wild grape; + labyrintheus_A : A ; -- [XXXDX] :: of a labyrinth; + labyrinthus_M_N : N ; -- [XXXDX] :: labyrinth, maze; + lac_N_N : N ; -- [XXXBX] :: milk; milky juice of plants; spat/spawn (of oyster); + lacer_A : A ; -- [XXXDX] :: mangled, torn, rent, mutilated; maimed, dismembered; + laceratio_F_N : N ; -- [XXXDX] :: mangling; tearing; + laceratrix_F_N : N ; -- [XXXFS] :: female lacerator/mangler/mutilator; cruel critic; draining life blood (Souter); + lacerna_F_N : N ; -- [XXXCO] :: open mantle/cloak; (fastened at the shoulder); + lacero_V : V ; -- [XXXBX] :: mangle; slander, torment, harass; waste; destroy; cut; + lacerta_F_N : N ; -- [XXXDX] :: lizard; Spanish mackerel; + lacertosus_A : A ; -- [XXXDX] :: muscular, brawny; + lacertus_M_N : N ; -- [XBXBX] :: upper arm, arm, shoulder; (pl.) strength, muscles, vigor, force; lizard; + lacesso_V2 : V2 ; -- [XXXDX] :: provoke, excite, harass, challenge, harass; attack, assail; + lachrima_F_N : N ; -- [XXXFO] :: tear; exuded gum/sap; bit of lead; quicksilver from ore; weeping (pl.); dirge; + lachrimula_F_N : N ; -- [XXXEC] :: little tear; + lachruma_F_N : N ; -- [BXXFO] :: tear; exuded gum/sap; bit of lead; quicksilver from ore; weeping (pl.); dirge; + lachryma_F_N : N ; -- [XXXFO] :: tear; exuded gum/sap; bit of lead; quicksilver from ore; weeping (pl.); dirge; + lacinia_F_N : N ; -- [XXXCO] :: |small group; garments (pl.), dress; + laciniatim_Adv : Adv ; -- [XXXFO] :: in small groups; + laciniosus_A : A ; -- [XXXEO] :: fringed, having jagged edges; well-clothed, wrapped up; + lacrima_F_N : N ; -- [XXXBO] :: tear; exuded gum/sap; bit of lead; quicksilver from ore; weeping (pl.); dirge; + lacrimabilis_A : A ; -- [XXXDX] :: mournful; tearful; + lacrimabundus_A : A ; -- [XXXEC] :: breaking into tears, weeping; + lacrimalis_A : A ; -- [GXXEK] :: of tears, lachrymal; + lacrimifer_A : A ; -- [GXXEK] :: tear-making; lachrymatory; + lacrimo_V : V ; -- [XXXDX] :: shed tears, weep; + lacrimor_V : V ; -- [XXXDX] :: shed tears, weep; + lacrimosus_A : A ; -- [XXXDX] :: tearful, weeping; causing tears; + lacrimula_F_N : N ; -- [XXXEC] :: little tear; + lacruma_F_N : N ; -- [BXXFO] :: tear; exuded gum/sap; bit of lead; quicksilver from ore; weeping (pl.); dirge; + lacryma_F_N : N ; -- [XXXFO] :: tear; exuded gum/sap; bit of lead; quicksilver from ore; weeping (pl.); dirge; + lact_N_N : N ; -- [XXXBO] :: milk; milky juice of plants; spat/spawn (of oyster); + lactans_A : A ; -- [XXXDX] :: giving milk, lactating; + lactarium_N_N : N ; -- [GXXET] :: milk food; (Erasmus); + lactatio_F_N : N ; -- [XXXDX] :: enticement, inducement; allure; + lacte_N_N : N ; -- [BXXBO] :: milk; milky juice of plants; spat/spawn (of oyster); + lactens_A : A ; -- [XXXDX] :: suckling, unweaned; full of milk/sap, juicy; prepared with milk; milky white; lactens_F_N : N ; -- [XXXDX] :: suckling, unweaned animal suitable for sacrifice; - lactens_M_N : N ; - lactesco_V : V ; - lacteus_A : A ; - lacticinium_N_N : N ; - lacticus_A : A ; - lacto_V : V ; - lactuca_F_N : N ; - laculatus_A : A ; - lacuna_F_N : N ; - lacunar_N_N : N ; - lacuno_V : V ; - lacunosus_A : A ; - lacus_M_N : N ; - ladanum_N_N : N ; - laedo_V2 : V2 ; - laena_F_N : N ; - laesio_F_N : N ; - laetabilis_A : A ; - laetabundus_A : A ; - laetans_A : A ; - laetatio_F_N : N ; - laete_Adv : Adv ; - laeter_A : A ; - laetifico_V2 : V2 ; - laetificus_A : A ; - laetitia_F_N : N ; - laeto_V2 : V2 ; - laetor_V : V ; - laetrosum_Adv : Adv ; - laetus_A : A ; - laeva_F_N : N ; - laevorsum_Adv : Adv ; - laevorsus_Adv : Adv ; - laevus_A : A ; - laganum_N_N : N ; - lagena_F_N : N ; - lageos_F_N : N ; - lagoena_F_N : N ; - lagois_F_N : N ; - lagona_F_N : N ; - laguena_F_N : N ; - laguenos_M_N : N ; - laguncula_F_N : N ; - laicalis_A : A ; - laicalis_M_N : N ; - laicatus_M_N : N ; - laiciso_V2 : V2 ; - laicus_A : A ; - laicus_M_N : N ; - lama_F_N : N ; - lambo_V2 : V2 ; - lamed_N : N ; - lamella_F_N : N ; - lamenta_F_N : N ; - lamentabilis_A : A ; - lamentarius_A : A ; - lamentatio_F_N : N ; - lamento_V : V ; - lamentor_V : V ; - lamentum_N_N : N ; - lameth_N : N ; - lamia_F_N : N ; - lamina_F_N : N ; - lamma_Adv : Adv ; - lammina_F_N : N ; - lamna_F_N : N ; - lampada_F_N : N ; - lampadarium_N_N : N ; - lampadarius_M_N : N ; + lactens_M_N : N ; -- [XXXDX] :: suckling, unweaned animal suitable for sacrifice; + lactesco_V : V ; -- [XBXFS] :: become milky; + lacteus_A : A ; -- [XXXDX] :: milky; milk-white; [~ orbis or circulus => Milky Way]; + lacticinium_N_N : N ; -- [XXXES] :: milk-food, food prepared w/milk; dish prepared w/milk and eggs (pl.); + lacticus_A : A ; -- [GXXEK] :: lactic; of/pertaining to milk; + lacto_V : V ; -- [XXXDX] :: entice, lead on, induce; wheedle, cajole, dupe; + lactuca_F_N : N ; -- [XXXDX] :: lettuce; + laculatus_A : A ; -- [GXXEK] :: girded; moated?; + lacuna_F_N : N ; -- [XXXCO] :: pit/hollow/cavity/depression; pool; gap/deficiency; [~ legis => gap in the law]; + lacunar_N_N : N ; -- [XXXDX] :: paneled ceiling; + lacuno_V : V ; -- [XXXEC] :: panel, work in panels, do paneling; + lacunosus_A : A ; -- [XXXEC] :: full of hollows or gaps; + lacus_M_N : N ; -- [XXXAS] :: basin/tank/tub; lake/pond; reservoir/cistern/basin, trough; lime-hole; bin; pit; + ladanum_N_N : N ; -- [XAXNS] :: resinous juice (from shrub lada); ladanum; + laedo_V2 : V2 ; -- [XPXBX] :: strike; hurt, injure, wound; offend, annoy; + laena_F_N : N ; -- [XXXDX] :: woolen double cloak; + laesio_F_N : N ; -- [XGXDO] :: injury, harm, hurt; part of speech to injure opponent's case (rhetoric), attack; + laetabilis_A : A ; -- [XXXEO] :: gladdening, welcome; that may be rejoiced at; joyful; + laetabundus_A : A ; -- [EXXFS] :: greatly-rejoicing; + laetans_A : A ; -- [XXXDX] :: rejoicing; + laetatio_F_N : N ; -- [XXXES] :: rejoicing; joy; + laete_Adv : Adv ; -- [XXXCO] :: joyfully, gladly; luxuriantly/lushly/abundantly; in rich/florid style; + laeter_A : A ; -- [XXXFO] :: left; + laetifico_V2 : V2 ; -- [XXXDO] :: fertilize, enrich, make fruitful (land); delight, cheer, gladden, rejoice; + laetificus_A : A ; -- [XXXDO] :: gladdening, joyful, joyous; luxuriant, fruitful (plants); + laetitia_F_N : N ; -- [XXXCO] :: joy/happiness; source of joy/delight; fertility; fruitfulness; floridity; + laeto_V2 : V2 ; -- [XXXEO] :: gladden, cheer; be glad/joyful, rejoice (medieval); + laetor_V : V ; -- [XXXBO] :: be glad/joyful/delighted; rejoice; be fond (of), delight in; flourish (on/in); + laetrosum_Adv : Adv ; -- [XXXFO] :: on the left; + laetus_A : A ; -- [XXXAO] :: |luxuriant/lush/rich/sleek; fertile (land); teeming/abounding; pleasing/welcome; + laeva_F_N : N ; -- [XXXDX] :: left hand; + laevorsum_Adv : Adv ; -- [EXXFS] :: on the left hand; + laevorsus_Adv : Adv ; -- [EXXFS] :: on the left hand; + laevus_A : A ; -- [XXXBX] :: left, on the left hand; from the left; unpropitious, unfavorable, harmful; + laganum_N_N : N ; -- [XXXEC] :: cake; + lagena_F_N : N ; -- [XXXCO] :: flask/flagon; bottle w/narrow neck; big earthen jar w/handles; pitcher (Douay); + lageos_F_N : N ; -- [XXXEC] :: Greek kind of vine; + lagoena_F_N : N ; -- [XXXCO] :: flask/flagon; bottle w/narrow neck; big earthen jar w/handles; pitcher (Douay); + lagois_F_N : N ; -- [XAXEC] :: bird, perhaps heathcock/grouse; + lagona_F_N : N ; -- [XXXCO] :: flask, flagon, bottle with narrow neck; (esp. wine); pitcher (Douay); + laguena_F_N : N ; -- [EXXFW] :: flask, flagon, bottle with narrow neck; (esp. wine); pitcher (Douay); + laguenos_M_N : N ; -- [EXXFP] :: flask, flagon, bottle with narrow neck; (esp. wine); pitcher (Douay); + laguncula_F_N : N ; -- [XXXFO] :: small/little flask/bottle; (for wine); + laicalis_A : A ; -- [EEXCE] :: lay, common; of the laity/people; not priestly/in orders/consecrated; + laicalis_M_N : N ; -- [EEXEE] :: layman, one not belonging to the priesthood/in orders; + laicatus_M_N : N ; -- [EEXFE] :: lay state; religious condition of things not consecrated/priestly/in orders; + laiciso_V2 : V2 ; -- [FEXFE] :: laicize; make lay, reduce to lay state; secularize, make (office) lay tenable; + laicus_A : A ; -- [EEXDS] :: lay, common; of the laity/people; not priestly/in orders/consecrated; + laicus_M_N : N ; -- [EEXCS] :: layman, one not belonging to the priesthood/in orders; + lama_F_N : N ; -- [GXXEK] :: |llama; + lambo_V2 : V2 ; -- [DXXBS] :: lick; lap/lick/suck up, absorb; wash/bathe; surround; fondle/caress (L+S); fawn; + lamed_N : N ; -- [DEQEW] :: lamed/lameth; (12th letter of Hebrew alphabet); (transliterate as L); + lamella_F_N : N ; -- [XTXFS] :: small metal piece (eg. coin, plate); + lamenta_F_N : N ; -- [XXXFO] :: wailing, weeping, groans, laments; + lamentabilis_A : A ; -- [XXXDX] :: doleful; lamentable; + lamentarius_A : A ; -- [XXXFS] :: mournful; sorrowful; + lamentatio_F_N : N ; -- [XXXDX] :: lamentation, wailing; + lamento_V : V ; -- [EXXDW] :: lament; utter cries of grief; bewail; lament for; complain that; + lamentor_V : V ; -- [XXXCO] :: lament; utter cries of grief; bewail; lament for; complain that; + lamentum_N_N : N ; -- [XXXCO] :: wailing (pl.), weeping, groans, laments; + lameth_N : N ; -- [DEQEW] :: lamed/lameth; (12th letter of Hebrew alphabet); (transliterate as L); + lamia_F_N : N ; -- [XAXEO] :: |kind of shark; sort of flatfish (L+S); species of owl; jackal (Souter); + lamina_F_N : N ; -- [XXXBO] :: plate; veneer; thin sheet of metal/other material; (blade); money/cash; + lamma_Adv : Adv ; -- [XEQFE] :: why; (Aramaic); + lammina_F_N : N ; -- [XXXBO] :: plate; veneer; thin sheet of metal/other material; (blade); money/cash; + lamna_F_N : N ; -- [XXXBO] :: plate; veneer; thin sheet of metal/other material; (blade); money/cash; + lampada_F_N : N ; -- [XXXEO] :: lamp/lantern; light/torch/flame/flambeau/link; firebrand; meteor (like torch); + lampadarium_N_N : N ; -- [EXXFE] :: chandelier; lamp-stand, support for lamps; + lampadarius_M_N : N ; -- [XXXEO] :: lamp/torch bearer; link-boy; chandelier; lamp-stand, support for lamps (Ecc); lampas_1_N : N ; -- [XXXDO] :: lamp/lantern; light/torch/flame/flambeau/link; firebrand; meteor (like torch); - lampas_2_N : N ; - lampas_F_N : N ; - lana_F_N : N ; - lanarius_M_N : N ; - lanatus_A : A ; - lancea_F_N : N ; - lancinatio_F_N : N ; - lancino_V2 : V2 ; - lanciola_F_N : N ; - landica_F_N : N ; - laneus_A : A ; - languefacio_V2 : V2 ; - langueo_V : V ; - languesco_V2 : V2 ; - languide_Adv : Adv ; - languidulus_A : A ; - languidus_A : A ; - languor_M_N : N ; - laniena_F_N : N ; - lanificus_A : A ; - laniger_A : A ; - laniger_M_N : N ; - lanio_V : V ; - lanista_M_N : N ; - lanitium_N_N : N ; - lanius_M_N : N ; - lanna_F_N : N ; - lanosus_A : A ; - lanterna_F_N : N ; - lanternarius_M_N : N ; - lantgravius_M_N : N ; - lanugo_F_N : N ; - lanx_M_N : N ; - laophoron_N_N : N ; - lapathium_N_N : N ; - lapathum_N_N : N ; - lapathus_C_N : N ; - lapicida_M_N : N ; - lapidaris_A : A ; - lapidarius_A : A ; - lapidarius_M_N : N ; - lapidesco_V : V ; - lapideus_A : A ; - lapidicina_F_N : N ; - lapido_V : V ; - lapidosus_A : A ; - lapillus_M_N : N ; - lapis_F_N : N ; - lapis_M_N : N ; - lappa_F_N : N ; - lapsana_F_N : N ; - lapsio_F_N : N ; - lapso_V : V ; - lapsus_M_N : N ; - laquear_N_N : N ; - laqueare_N_N : N ; - laqueatus_A : A ; - laqueum_N_N : N ; - laqueus_M_N : N ; - lardum_N_N : N ; - large_Adv : Adv ; - largificus_A : A ; - largifluus_A : A ; - largiloquus_A : A ; - largio_V2 : V2 ; - largior_V : V ; - largitas_F_N : N ; - largiter_Adv : Adv ; - largitio_F_N : N ; - largitionalis_A : A ; - largitionalis_M_N : N ; - largitor_M_N : N ; - largo_V : V ; - largus_A : A ; - laridum_N_N : N ; + lampas_2_N : N ; -- [XXXDO] :: lamp/lantern; light/torch/flame/flambeau/link; firebrand; meteor (like torch); + lampas_F_N : N ; -- [XXXBO] :: lamp/lantern; light/torch/flame/flambeau/link; firebrand; meteor (like torch); + lana_F_N : N ; -- [XXXDX] :: wool; fleece; soft hair; down; trifles; + lanarius_M_N : N ; -- [XXXES] :: wool-worker; + lanatus_A : A ; -- [XXXCO] :: woolly; covered in wool; woolen; made of wool; wool-like; downy (plants); + lancea_F_N : N ; -- [XWSCO] :: lance; long light spear; + lancinatio_F_N : N ; -- [XXXFO] :: tearing in/to pieces, rending, mangling; + lancino_V2 : V2 ; -- [XXXCO] :: tear in/to pieces, rend (apart), mangle; + lanciola_F_N : N ; -- [XWSCO] :: small lance; + landica_F_N : N ; -- [XBXEO] :: clitoris; (rude); + laneus_A : A ; -- [XXXCO] :: woolen, made of wool; resembling wool (appearance/texture);; + languefacio_V2 : V2 ; -- [XXXFO] :: make languid/inactive/weak/faint; + langueo_V : V ; -- [XXXBX] :: be tired; be listless/sluggish/unwell/ill; wilt, lack vigor; + languesco_V2 : V2 ; -- [XXXDX] :: become faint or languid or weak, wilt; + languide_Adv : Adv ; -- [XXXDX] :: faintly, feebly; slowly, spiritlessly; + languidulus_A : A ; -- [XXXEC] :: somewhat faint, limp; + languidus_A : A ; -- [XXXDX] :: faint, weak; dull, sluggish, languid; spiritless, listless, inactive; powerless; + languor_M_N : N ; -- [XXXDX] :: faintness, feebleness; languor apathy; + laniena_F_N : N ; -- [XXXEC] :: butcher's shop; + lanificus_A : A ; -- [XXXDX] :: woodworking, spinning, weaving; + laniger_A : A ; -- [XXXDX] :: wool-bearing, fleecy; woolly; + laniger_M_N : N ; -- [XAXES] :: ram; + lanio_V : V ; -- [XXXDX] :: tear, mangle, mutilate, pull to pieces; + lanista_M_N : N ; -- [XXXDX] :: manager of a troop of gladiators, trainer; + lanitium_N_N : N ; -- [XXXEC] :: wool; + lanius_M_N : N ; -- [XXXEC] :: butcher; + lanna_F_N : N ; -- [FXXEK] :: ear-lobe; + lanosus_A : A ; -- [EAXFS] :: woolly; + lanterna_F_N : N ; -- [XXXDO] :: lantern; lamp (L+S); torch; + lanternarius_M_N : N ; -- [XXXEC] :: lantern-bearer; + lantgravius_M_N : N ; -- [FLXFM] :: landgrave (German); a superior Count; + lanugo_F_N : N ; -- [XXXDX] :: down, youth; + lanx_M_N : N ; -- [XXXCO] :: plate, metal dish, tray, platter, charger; pan of a pair of scales; + laophoron_N_N : N ; -- [GXXEK] :: bus; + lapathium_N_N : N ; -- [BAXFS] :: sorrel; (archaic form of lapthum); + lapathum_N_N : N ; -- [XXXDX] :: sorrel; + lapathus_C_N : N ; -- [XXXDX] :: sorrel; + lapicida_M_N : N ; -- [XXXFS] :: stone-cutter; quarryman; + lapidaris_A : A ; -- [XXXIO] :: of stone; + lapidarius_A : A ; -- [XXXDO] :: of/concerning stone-cutting/quarrying; [litterae ~ => block capital letters]; + lapidarius_M_N : N ; -- [XXXEO] :: stone-cutter; + lapidesco_V : V ; -- [XXXFS] :: become stone; petrify; + lapideus_A : A ; -- [XXXDX] :: of stone; stony; + lapidicina_F_N : N ; -- [XXXCO] :: stone quarries (pl.); + lapido_V : V ; -- [XXXDX] :: throw stones at; stone; [lapidat => it rains stones]; + lapidosus_A : A ; -- [XXXDX] :: stony, full of stones; gritty; + lapillus_M_N : N ; -- [XXXDX] :: little stone, pebble; precious stone, gem, jewel; + lapis_F_N : N ; -- [BXXDX] :: stone; milestone; jewel; + lapis_M_N : N ; -- [XXXAX] :: stone; milestone; jewel; + lappa_F_N : N ; -- [XXXDX] :: bur; plants bearing burs; + lapsana_F_N : N ; -- [XAXFS] :: charlock plant (Pliny); + lapsio_F_N : N ; -- [BXXFS] :: tendency; inclination; + lapso_V : V ; -- [XXXDX] :: slip, Nose one's footing; + lapsus_M_N : N ; -- [XXXBX] :: gliding, sliding; slipping and falling; + laquear_N_N : N ; -- [XXXCS] :: paneled/fretted ceiling (usu. pl.); rafter, ceiling, panel; + laqueare_N_N : N ; -- [XXXCS] :: paneled/fretted ceiling (usu. pl.); rafter, ceiling, panel; + laqueatus_A : A ; -- [XXXDX] :: paneled; + laqueum_N_N : N ; -- [XXXDX] :: noose, halter; snare, trap; lasso; bond, tie; + laqueus_M_N : N ; -- [XXXDX] :: noose; snare, trap; + lardum_N_N : N ; -- [XXXDX] :: lard, fat; bacon; + large_Adv : Adv ; -- [XXXDX] :: exceedingly; + largificus_A : A ; -- [XXXEC] :: bountiful, liberal; + largifluus_A : A ; -- [XXXEC] :: flowing freely; + largiloquus_A : A ; -- [BXXFS] :: talkative; + largio_V2 : V2 ; -- [XXXFS] :: give bountifully; lavish; + largior_V : V ; -- [XXXDX] :: grant; give bribes/presents corruptly; give generously/bountifully; + largitas_F_N : N ; -- [XXXDX] :: abundance (of) (w/GEN); bounty; liberality, munificence; + largiter_Adv : Adv ; -- [XXXDX] :: in abundance, plentifully, liberally, much; greatly; has great influence; + largitio_F_N : N ; -- [XXXDX] :: generosity, lavish giving, largess; bribery; distribution of dole/land; + largitionalis_A : A ; -- [DLXES] :: of/belonging to imperial treasury; + largitionalis_M_N : N ; -- [DLXFS] :: treasury officer; official of imperial treasury; + largitor_M_N : N ; -- [XXXDX] :: liberal giver; briber; + largo_V : V ; -- [FXXFM] :: enlarge; + largus_A : A ; -- [XPXBX] :: lavish; plentiful; bountiful; + laridum_N_N : N ; -- [XXXDX] :: bacon; larix_F_N : N ; -- [XAXNO] :: larch, larch tree; - larix_M_N : N ; - laros_M_N : N ; - larua_C_N : N ; - larualis_A : A ; - larus_M_N : N ; - larva_C_N : N ; - larvalis_A : A ; - larvo_V : V ; - lasania_F_N : N ; - lasanum_N_N : N ; - lasarpicifer_A : A ; - lascivia_F_N : N ; - lascivio_V2 : V2 ; - lascivus_A : A ; - laser_N_N : N ; - laserpicium_N_N : N ; - lassesco_V : V ; - lassitudo_F_N : N ; - lasso_V : V ; - lassulus_A : A ; - lassus_A : A ; - late_Adv : Adv ; - latebra_F_N : N ; - latebricola_M_N : N ; - latebros_A : A ; - latebrosus_A : A ; - latens_A : A ; - latenter_Adv : Adv ; - lateo_V : V ; - later_M_N : N ; - lateralis_A : A ; - lateramen_N_N : N ; - laterculus_M_N : N ; - latericium_N_N : N ; - latericius_A : A ; - latericulus_M_N : N ; - laterna_F_N : N ; - laterus_A : A ; - latesco_V : V ; - latex_M_N : N ; - latibulum_N_N : N ; - laticlavius_A : A ; - laticlavius_M_N : N ; - latifolius_A : A ; - latifundium_N_N : N ; - latinista_M_N : N ; - latinitas_F_N : N ; - latinizo_V2 : V2 ; - latino_V2 : V2 ; - latio_F_N : N ; - latito_V : V ; - latitudo_F_N : N ; - latomus_M_N : N ; - lator_M_N : N ; - latrator_M_N : N ; - latratus_M_N : N ; - latraus_M_N : N ; - latreuticus_A : A ; - latrina_F_N : N ; - latrinum_N_N : N ; - latro_M_N : N ; - latro_V : V ; - latrocinium_N_N : N ; - latrocinor_V : V ; - latrunculus_M_N : N ; - latus_A : A ; - latus_N_N : N ; - latusculum_N_N : N ; - laudabilis_A : A ; - laudabilitas_F_N : N ; - laudatio_F_N : N ; - laudator_M_N : N ; - laudo_V : V ; - laura_F_N : N ; - laurea_F_N : N ; - laureata_F_N : N ; - laureatio_F_N : N ; - laureator_M_N : N ; - laureatus_A : A ; - laurentius_A : A ; - laureola_F_N : N ; - lauretum_N_N : N ; - laureus_A : A ; - lauricomus_A : A ; - laurifer_A : A ; - lauriger_A : A ; - laurinus_A : A ; - laurus_F_N : N ; - laus_F_N : N ; - laute_Adv : Adv ; - lautitia_F_N : N ; - lautium_N_N : N ; - lautumia_F_N : N ; - lautus_A : A ; - lava_F_N : N ; - lavabilis_A : A ; - lavabrum_N_N : N ; - lavacrum_N_N : N ; - lavandula_F_N : N ; - lavatio_F_N : N ; - lavatorium_N_N : N ; - lavatrina_F_N : N ; - lavendulus_A : A ; - lavo_V : V ; - laxamentum_N_N : N ; - laxativum_N_N : N ; - laxatus_A : A ; - laxe_Adv : Adv ; - laxitas_F_N : N ; - laxo_V : V ; - laxus_A : A ; - lazulinus_A : A ; - lea_F_N : N ; - leaena_F_N : N ; - lebes_M_N : N ; - lectica_F_N : N ; - lecticarius_M_N : N ; - lecticula_F_N : N ; - lectio_F_N : N ; - lectisterniator_M_N : N ; - lectisternium_N_N : N ; - lectito_V : V ; - lectiuncula_F_N : N ; - lector_M_N : N ; - lectrix_F_N : N ; - lectulus_M_N : N ; - lectus_A : A ; - lectus_M_N : N ; - lecythos_F_N : N ; - lecythus_F_N : N ; - lecythus_M_N : N ; - leg_N : N ; - legalis_A : A ; - legalitas_F_N : N ; - legatarius_M_N : N ; - legatio_F_N : N ; - legator_M_N : N ; - legatum_N_N : N ; - legatus_M_N : N ; - legifer_A : A ; - legio_F_N : N ; - legionarius_A : A ; - legirupa_M_N : N ; - legirupio_M_N : N ; - legisdoctor_M_N : N ; - legislatio_F_N : N ; - legislativus_A : A ; - legislator_M_N : N ; - legisperitus_M_N : N ; - legitimatio_F_N : N ; - legitimitas_F_N : N ; - legitimo_V : V ; - 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 ; - lema_Adv : Adv ; - lema_Interj : Interj ; - lembus_M_N : N ; - lemma_Adv : Adv ; - lemma_N_N : N ; - lemniscatus_A : A ; - lemniscus_M_N : N ; - lemur_M_N : N ; - lena_F_N : N ; - lenimen_N_N : N ; - lenimentum_N_N : N ; - lenio_V2 : V2 ; - lenis_A : A ; - lenitas_F_N : N ; - leniter_Adv : Adv ; - lenitudo_F_N : N ; - leno_M_N : N ; - lenocinium_N_N : N ; - lenocinor_V : V ; - lens_F_N : N ; - lente_Adv : Adv ; - lentesco_V : V ; - lenticula_F_N : N ; - lentigo_F_N : N ; - lentiscifer_A : A ; - lentiscum_N_N : N ; - lentiscus_F_N : N ; - lentitudo_F_N : N ; - lento_V : V ; - lentor_M_N : N ; - lentulus_A : A ; - lentus_A : A ; - lenunculus_M_N : N ; - leo_M_N : N ; - leoninus_A : A ; - leopardalis_M_N : N ; - leopardus_M_N : N ; + larix_M_N : N ; -- [XAXNO] :: larch, larch tree; + laros_M_N : N ; -- [EAXFS] :: gull; ravenous sea bird (Vulgate); mew; common gull (Larus canus); + larua_C_N : N ; -- [XXXFS] :: evil spirit/demon/devil; horrific mask; model skeleton; ghost/specter/hobgoblin; + larualis_A : A ; -- [XXXFS] :: specter-like; deathly; resembling demon/evil spirit; ghostly (L+S); + larus_M_N : N ; -- [EAXFS] :: gull; ravenous sea bird (Vulgate); mew; common gull (Larus canus); + larva_C_N : N ; -- [XXXDO] :: evil spirit/demon/devil; horrific mask; model skeleton; ghost/specter/hobgoblin; + larvalis_A : A ; -- [XXXEO] :: specter-like; deathly; resembling demon/evil spirit; ghostly (L+S); + larvo_V : V ; -- [XXXES] :: bewitch; enchant; + lasania_F_N : N ; -- [GXXEK] :: lasagna; + lasanum_N_N : N ; -- [XXXFS] :: cooking-pot; + lasarpicifer_A : A ; -- [XAXFS] :: asafoetida-producing; + lascivia_F_N : N ; -- [XXXDX] :: playfulness; wantonness, lasciviousness; + lascivio_V2 : V2 ; -- [XXXDX] :: frisk; sport; run riot; + lascivus_A : A ; -- [XXXBX] :: playful; lustful, wanton; impudent, mischievous; free from restraint; + laser_N_N : N ; -- [XAXES] :: plant-juice; (of plant laserpitium); + laserpicium_N_N : N ; -- [XXXEC] :: plant from which asafoetida was obtained; + lassesco_V : V ; -- [FXXEM] :: become tired, grow weary; + lassitudo_F_N : N ; -- [XXXDX] :: weariness, exhaustion, faintness; lassitude; + lasso_V : V ; -- [XXXDX] :: tire, weary, exhaust, wear out; + lassulus_A : A ; -- [XXXEC] :: rather tired; + lassus_A : A ; -- [XXXBX] :: tired, weary; languid; + late_Adv : Adv ; -- [XXXDX] :: widely, far and wide; + latebra_F_N : N ; -- [XXXDX] :: hiding place, retreat, lair; subterfuge; + latebricola_M_N : N ; -- [XXXFS] :: lurker; brothel-frequenter; + latebros_A : A ; -- [XXXCO] :: secret, offering concealment, abounding in hiding places; hidden, lurking; + latebrosus_A : A ; -- [XXXDX] :: full of lurking places; lurking in concealment; + latens_A : A ; -- [XXXCO] :: hidden, concealed; secret, not revealed; [in latenti => in secret]; + latenter_Adv : Adv ; -- [XXXCO] :: secretly, privately; in concealment, without being seen/perceived; + lateo_V : V ; -- [XXXAX] :: lie hidden, lurk; live a retired life, escape notice; + later_M_N : N ; -- [XXXDX] :: brick; brickwork/bricks; block; bar/ingot; tile (L+S); [~ lictro => mercury]; + lateralis_A : A ; -- [XBXFO] :: lateral, of/on side of body; + lateramen_N_N : N ; -- [XXXEC] :: pottery; + laterculus_M_N : N ; -- [XXXCO] :: small brick, tile; (brick-shaped) block; hard cake/biscuit; parcel of land; + latericium_N_N : N ; -- [XXXES] :: brickwork; + latericius_A : A ; -- [XXXDX] :: made of bricks; + latericulus_M_N : N ; -- [XXXCO] :: small brick, tile; (brick-shaped) block; hard cake/biscuit; parcel of land; + laterna_F_N : N ; -- [EXXES] :: lantern; lamp (L+S); torch; + laterus_A : A ; -- [ESXDX] :: having X sides (only with numerical prefix); + latesco_V : V ; -- [XXXFS] :: hide oneself (short-a); + latex_M_N : N ; -- [XXXCO] :: water; (any) liquid/fluid; running/stream/spring water; juice; + latibulum_N_N : N ; -- [XXXDX] :: hiding-place, den; + laticlavius_A : A ; -- [XXXDX] :: having broad crimson stripe; + laticlavius_M_N : N ; -- [XXXES] :: senator; patrician; one who wears purple; + latifolius_A : A ; -- [DAXNS] :: broad-leaved (Pliny); + latifundium_N_N : N ; -- [XXXDX] :: large estate, farm; + latinista_M_N : N ; -- [GGXFK] :: Latinist; + latinitas_F_N : N ; -- [XGXES] :: Latinity; pure Latin style; L:Latin Law; + latinizo_V2 : V2 ; -- [DGXFS] :: translate into Latin; + latino_V2 : V2 ; -- [DGXFS] :: translate into Latin; + latio_F_N : N ; -- [XLXDS] :: |rendering (assistance/accounts); + latito_V : V ; -- [XXXDX] :: keep hiding oneself, remain in hiding, be hidden; lie low; lurk; + latitudo_F_N : N ; -- [GXXEK] :: |latitude; + latomus_M_N : N ; -- [EXXEP] :: quarryman; stonemason; hewer of stone (Douay); + lator_M_N : N ; -- [XXXDX] :: mover or proposer (of a law); + latrator_M_N : N ; -- [XXXDX] :: barker, one who barks; + latratus_M_N : N ; -- [XXXCO] :: barking/baying (of dogs); shouting, bawling; roaring (of the sea); + latraus_M_N : N ; -- [XXXDX] :: barking; + latreuticus_A : A ; -- [EEXEE] :: pertaining to the worship of God; + latrina_F_N : N ; -- [XXXDO] :: latrine, privy; washing-place, bathroom; + latrinum_N_N : N ; -- [XXXEO] :: latrine, privy; washing-place, bathroom; + latro_M_N : N ; -- [XXXBX] :: robber, brigand, bandit; plunderer; + latro_V : V ; -- [XXXDX] :: bark, bark at; + latrocinium_N_N : N ; -- [XXXDX] :: brigandage, robbery, highway robbery; piracy, freebooting; villainy; + latrocinor_V : V ; -- [XXXDX] :: engage in brigandage or piracy; + latrunculus_M_N : N ; -- [XXXDX] :: robber, brigand; + latus_A : A ; -- [XXXAX] :: wide, broad; spacious, extensive; + latus_N_N : N ; -- [XXXAX] :: side; flank; + latusculum_N_N : N ; -- [XXXEC] :: little side; + laudabilis_A : A ; -- [XXXDX] :: praiseworthy; + laudabilitas_F_N : N ; -- [ELXFS] :: excellency (a title of Comes Metallorum); + laudatio_F_N : N ; -- [XXXDX] :: commendation, praising; eulogy; + laudator_M_N : N ; -- [XXXDX] :: praiser, one who praises; eulogist; + laudo_V : V ; -- [XXXAX] :: recommend; praise, approve, extol; call upon, name; deliver eulogy on; + laura_F_N : N ; -- [EEEFE] :: monastery; settlement of anchorites in Egypt; + laurea_F_N : N ; -- [XXXCO] :: laurel/bay tree; laurel crown/wreath/branch; triumph, victory; honor (poets); + laureata_F_N : N ; -- [XXXFO] :: laurel wreathed dispatch announcing victory (pl.); + laureatio_F_N : N ; -- [FXXFM] :: crowning w/laurel; + laureator_M_N : N ; -- [FXXFM] :: giver of crowns; (of laurel); + laureatus_A : A ; -- [XXXCO] :: wearing/adorned w/laurel; laureate; [w/litterae => dispatch w/news of victory]; + laurentius_A : A ; -- [XXXFE] :: crowned w/laurel; + laureola_F_N : N ; -- [XXXEO] :: small laurel branch, sprig of bay; (announces victory); little laurel/victory; + lauretum_N_N : N ; -- [XXXDO] :: laurel grove; (esp. as proper name) place on Aventine Hill at Rome; + laureus_A : A ; -- [XXXCO] :: laurel-, of the laurel/bay tree; made of laurel (garlands); resembling laurel; + lauricomus_A : A ; -- [XXXFO] :: covered with laurel foliage; laurel-haired (L+S); covered w/laurels (hill); + laurifer_A : A ; -- [XXXEO] :: bearing/producing laurels; decked/crowned w/laurels; laurel-wreathed/crowned; + lauriger_A : A ; -- [XXXDO] :: bearing/producing laurels; decked/crowned w/laurels; laurel-wreathed/crowned; + laurinus_A : A ; -- [XXXFO] :: laurel-, of laurel; (oil); + laurus_F_N : N ; -- [XXXBO] :: laurel/bay tree/foliage/sprig/branch (medicine/magic); triumph/victory; honor; + laus_F_N : N ; -- [XXXAX] :: praise, approval, merit; glory; renown; + laute_Adv : Adv ; -- [XXXCO] :: elegantly, sumptuously, fashionably, finely; liberally; + lautitia_F_N : N ; -- [XXXDX] :: elegance, splendor, sumptuousness, luxury; + lautium_N_N : N ; -- [XLXCO] :: entertainment provided for foreign guests of the state of Rome; state banquet; + lautumia_F_N : N ; -- [XXXDX] :: stone-quarry (pl.), especially used as a prison; + lautus_A : A ; -- [XXXBO] :: elegant, fashionable; sumptuous/luxurious; fine, well turned out; washed/clean; + lava_F_N : N ; -- [GXXEK] :: lava; + lavabilis_A : A ; -- [GXXEK] :: washable; + lavabrum_N_N : N ; -- [XXXFO] :: bath-tub; + lavacrum_N_N : N ; -- [DXXCS] :: bath; + lavandula_F_N : N ; -- [GXXEK] :: lavender; + lavatio_F_N : N ; -- [XXXDS] :: washing, bathing; bathing apparatus; bathing place; + lavatorium_N_N : N ; -- [GXXEK] :: washer; + lavatrina_F_N : N ; -- [XXXDS] :: latrine, privy; washing-place, bathroom; + lavendulus_A : A ; -- [GXXEK] :: lavender-colored; + lavo_V : V ; -- [XXXAX] :: wash, bathe; soak; + laxamentum_N_N : N ; -- [XXXDX] :: respite, relaxation, mitigation, alleviation; opportunity; free space/time; + laxativum_N_N : N ; -- [GXXEK] :: laxative; + laxatus_A : A ; -- [XXXDX] :: wide, large in extent, spacious; loose, slack, lax; + laxe_Adv : Adv ; -- [XXXDX] :: loosely, amply; without restraint; over a wide area, widely; on a large scale; + laxitas_F_N : N ; -- [XXXDX] :: roominess, largeness; + laxo_V : V ; -- [XXXDX] :: loosen, slaken, relax, weaken; expand, open up, extend; + laxus_A : A ; -- [XXXAO] :: |unstrung; relaxed, at ease; unrestricted; breached/wide open; distant (time); + lazulinus_A : A ; -- [GXXEK] :: blue; + lea_F_N : N ; -- [XAXCO] :: lioness; + leaena_F_N : N ; -- [XAXDO] :: lioness; + lebes_M_N : N ; -- [XXXDL] :: copper cauldron, kettle; basin (washing); (prize in the Grecian games); + lectica_F_N : N ; -- [XXXDX] :: litter; + lecticarius_M_N : N ; -- [XXXDX] :: litter-bearer; + lecticula_F_N : N ; -- [XXXDX] :: small litter; + lectio_F_N : N ; -- [XXXBX] :: reading (aloud); perusal; choosing; lecture (Bee); narrative; + lectisterniator_M_N : N ; -- [BXXFS] :: couch-arranger; + lectisternium_N_N : N ; -- [XXXDX] :: special feast of supplication to the gods, couches for them to recline upon; + lectito_V : V ; -- [XXXDX] :: read repeatedly; be in the habit of reading; + lectiuncula_F_N : N ; -- [XXXFO] :: short/light reading; E:short lesson; + lector_M_N : N ; -- [XXXBX] :: reader; + lectrix_F_N : N ; -- [XXXES] :: female reader; + lectulus_M_N : N ; -- [XXXDX] :: bed or couch; + lectus_A : A ; -- [XXXDX] :: chosen, picked, selected; choice, excellent; (pl. as subst = picked men); + lectus_M_N : N ; -- [XXXBX] :: chosen/picked/selected men (pl.); + lecythos_F_N : N ; -- [XXXEO] :: oil flask/bottle/vessel; + lecythus_F_N : N ; -- [XXXEO] :: oil flask/bottle/vessel; + lecythus_M_N : N ; -- [EXXFS] :: oil flask/bottle/vessel; + leg_N : N ; -- [XXXDX] :: legion (abb.); + legalis_A : A ; -- [XXXDO] :: legal, of/concerned with law; + legalitas_F_N : N ; -- [FLXEM] :: legal status; law-worthiness; + legatarius_M_N : N ; -- [XXXEC] :: legatee; + legatio_F_N : N ; -- [XXXDX] :: embassy; member of an embassy; mission; + legator_M_N : N ; -- [XLXFS] :: will-writer; testator; + legatum_N_N : N ; -- [XXXDX] :: bequest, legacy; + legatus_M_N : N ; -- [XXXBX] :: envoy, ambassador, legate; commander of a legion; officer; deputy; + legifer_A : A ; -- [XXXDX] :: law-giving; + legio_F_N : N ; -- [XXXAX] :: legion; army; + legionarius_A : A ; -- [XXXDX] :: legionary, of a legion; + legirupa_M_N : N ; -- [XLXES] :: law-breaker; + legirupio_M_N : N ; -- [BLXFS] :: law-breaker; + legisdoctor_M_N : N ; -- [DLXES] :: doctor/teacher of the law; + legislatio_F_N : N ; -- [EEXFS] :: giving of the law; + legislativus_A : A ; -- [GXXEK] :: legislative; + legislator_M_N : N ; -- [XLXCO] :: legislator; law-giver; proposer of a law; + legisperitus_M_N : N ; -- [ELXFS] :: lawyer; one learned/expert in the law; + legitimatio_F_N : N ; -- [GXXEK] :: recognition; + legitimitas_F_N : N ; -- [GXXEK] :: legitimacy; + legitimo_V : V ; -- [GXXEK] :: legitimize; + legitimus_A : A ; -- [XXXDX] :: lawful, right; legitimate; real, genuine; just; proper; + legiuncula_F_N : N ; -- [XXXEC] :: small legion; + lego_V : V ; -- [XXXBX] :: bequeath, will; entrust, send as an envoy, choose as a deputy; + lego_V2 : V2 ; -- [XXXAX] :: read; gather, collect (cremated bones); furl (sail), weigh (anchor); pick out; + leguleius_M_N : N ; -- [XXXEC] :: pettifogging lawyer; + legumen_N_N : N ; -- [XXXDX] :: pulse, leguminous plant; pod-vegetable; + legumlator_M_N : N ; -- [XLXCS] :: legislator; law-giver; proposer of a law; + lema_Adv : Adv ; -- [XEQFE] :: why; (Aramaic); + lema_Interj : Interj ; -- [EEQFW] :: Eli Eli lama sabacthani/My God, my God why hast thou forsaken me Matthew 27:46; + lembus_M_N : N ; -- [XXXDX] :: small fast-sailing boat; + lemma_Adv : Adv ; -- [EEQFW] :: My God; [Heli Heli ~ sabacthani => My God, my God why hast thou forsaken me]; + lemma_N_N : N ; -- [XXXEC] :: theme, title; epigram; + lemniscatus_A : A ; -- [XXXEC] :: ribboned; + lemniscus_M_N : N ; -- [XXXEC] :: ribbon; + lemur_M_N : N ; -- [XXXDX] :: malevolent ghosts of the dead, specters, shades; + lena_F_N : N ; -- [XXXDX] :: procuress; brothel-keeper; + lenimen_N_N : N ; -- [XXXDX] :: alleviation, solace; + lenimentum_N_N : N ; -- [FXXEC] :: alleviation, improvement, mitigation (Nelson); sop (Collins); + lenio_V2 : V2 ; -- [XXXBO] :: |mollify; explain away, gloss over; beguile, pass pleasantly; abate; + lenis_A : A ; -- [XXXBX] :: gentle, kind, light; smooth, mild, easy, calm; + lenitas_F_N : N ; -- [XXXDX] :: smoothness; gentleness, mildness; lenience; + leniter_Adv : Adv ; -- [XXXBO] :: gently/mildly/lightly/slightly; w/gentle movement/incline; smoothly; moderately; + lenitudo_F_N : N ; -- [DXXFS] :: softness; mildness; calmness; + leno_M_N : N ; -- [XXXDX] :: brothel keeper; bawd; procurer, pimp; panderer; + lenocinium_N_N : N ; -- [XXXDX] :: pandering; allurement, enticement; flattery; + lenocinor_V : V ; -- [XXXEC] :: work as a procurer; make up to, flatter; + lens_F_N : N ; -- [GXXDX] :: lentil; lentil-plant; S:lens (Cal); + lente_Adv : Adv ; -- [XXXDX] :: slowly; + lentesco_V : V ; -- [XXXDX] :: become sticky; relax; + lenticula_F_N : N ; -- [XXXCO] :: lentil (plant/seed); lentil shape (convexo-convex)/lens-shaped vessel; freckle; + lentigo_F_N : N ; -- [XXXES] :: lentil-shaped spot; B:freckle; + lentiscifer_A : A ; -- [XPXFS] :: mastic-tree bearing; + lentiscum_N_N : N ; -- [XAXEC] :: mastic-tree; + lentiscus_F_N : N ; -- [XAXEC] :: mastic-tree; + lentitudo_F_N : N ; -- [XXXDX] :: slowness in action; apathy; + lento_V : V ; -- [XXXDX] :: bend under strain; + lentor_M_N : N ; -- [XXXFS] :: pliancy, flexibility; toughness; viscosity; + lentulus_A : A ; -- [XXXEC] :: somewhat slow; + lentus_A : A ; -- [XXXBX] :: clinging, tough; slow, sluggish, lazy, procrastinating; easy, pliant; + lenunculus_M_N : N ; -- [XXXDX] :: skiff; + leo_M_N : N ; -- [XAXAX] :: lion; + leoninus_A : A ; -- [XAXEC] :: of a lion, leonine; + leopardalis_M_N : N ; -- [XAAIO] :: leopard; (believed to be hybrid from lion and panther); + leopardus_M_N : N ; -- [XAAIO] :: leopard; (believed to be hybrid from lion and panther); lepas_1_N : N ; -- [XAXFO] :: limpet; - lepas_2_N : N ; - lepide_Adv : Adv ; - lepidus_A : A ; - lepor_M_N : N ; - leporarium_N_N : N ; - leporarius_A : A ; - leporinus_A : A ; - lepos_M_N : N ; - lepra_F_N : N ; - leprosus_A : A ; - leprosus_C_N : N ; - lepus_M_N : N ; - lepusculus_M_N : N ; - lesbianismus_M_N : N ; - lesbius_A : A ; - lessus_M_N : N ; - letalis_A : A ; - letania_F_N : N ; - lethargicus_M_N : N ; - lethargus_M_N : N ; - lethum_N_N : N ; - letifer_A : A ; - leto_V2 : V2 ; - letum_N_N : N ; - leucacantha_F_N : N ; - leucacanthos_M_N : N ; - leucaemia_F_N : N ; - leucaspis_A : A ; - leunculus_M_N : N ; - levamen_N_N : N ; - levamentum_N_N : N ; - levatio_F_N : N ; - leviathan_N : N ; - leviculus_A : A ; - levidensis_A : A ; - levifico_V2 : V2 ; - levigatus_A : A ; - levigo_V2 : V2 ; - levis_A : A ; - levisomnus_A : A ; - levitas_F_N : N ; - leviter_Adv : Adv ; - levo_V2 : V2 ; - levor_M_N : N ; + lepas_2_N : N ; -- [XAXFO] :: limpet; + lepide_Adv : Adv ; -- [XXXDX] :: charmingly delightfully; wittily; fine, excellent (formula approbation); + lepidus_A : A ; -- [XXXDX] :: agreeable, charming, delightful, nice; amusing, witty (remarks/books); + lepor_M_N : N ; -- [XXXBX] :: charm, pleasantness; + leporarium_N_N : N ; -- [XXXES] :: warren; place where hares kept; + leporarius_A : A ; -- [XXXES] :: hare-; of a hare; + leporinus_A : A ; -- [XXXES] :: hare-; of a hare; + lepos_M_N : N ; -- [XXXDX] :: charm, grace; wit; humor; + lepra_F_N : N ; -- [XBXDO] :: leprosy; various inflammatory skin diseases; psoriasis; (usu. pl.); + leprosus_A : A ; -- [DBXES] :: leprous; inflicted with various inflammatory skin diseases/psoriasis; + leprosus_C_N : N ; -- [FBXEB] :: leper; one inflicted with leprosy; + lepus_M_N : N ; -- [XXXDX] :: hare; + lepusculus_M_N : N ; -- [XXXEC] :: young hare; + lesbianismus_M_N : N ; -- [XXXEE] :: lesbianism, tribadism; + lesbius_A : A ; -- [XXXEE] :: lesbian, tribade; (woman who engages in sexual activity with other women); + lessus_M_N : N ; -- [XXXES] :: wailing; lamentation; + letalis_A : A ; -- [XXXDX] :: deadly, fatal; lethal, mortal; + letania_F_N : N ; -- [FEXDM] :: litany; + lethargicus_M_N : N ; -- [XXXEC] :: drowsy, lethargic person; + lethargus_M_N : N ; -- [XXXEC] :: drowsiness, lethargy, coma; + lethum_N_N : N ; -- [XXXES] :: death; (usu. violent); Death (personified); manner of dying; P:destruction; + letifer_A : A ; -- [XXXDX] :: deadly; fatal; + leto_V2 : V2 ; -- [XXXFS] :: kill; + letum_N_N : N ; -- [XXXCO] :: death; (usu. violent); Death (personified); manner of dying; P:destruction; + leucacantha_F_N : N ; -- [DAXNS] :: white thorn (Pliny); + leucacanthos_M_N : N ; -- [DAXNS] :: white thorn (Pliny); + leucaemia_F_N : N ; -- [GXXEK] :: leukemia; + leucaspis_A : A ; -- [XWXEC] :: having white shields; + leunculus_M_N : N ; -- [EAXES] :: small/little lion; (as statue/carving); + levamen_N_N : N ; -- [XXXAX] :: alleviation, solace; + levamentum_N_N : N ; -- [XXXDX] :: alleviation, mitigation, consolation; + levatio_F_N : N ; -- [XXXDO] :: relief, mitigation, alleviation, lessening, diminishing; lifting (action); + leviathan_N : N ; -- [EXQDE] :: leviathan, huge aquatic monster (Hebrew); serpent; crocodile; enormous thing; + leviculus_A : A ; -- [XXXEC] :: rather vain, light-headed; + levidensis_A : A ; -- [XXXEC] :: thin, slight, poor; + levifico_V2 : V2 ; -- [EXXFP] :: smooth, make smooth; [w/linguam => deal decietfully w/tongue = lie/smooth talk]; + levigatus_A : A ; -- [DXXFS] :: smooth; slippery; + levigo_V2 : V2 ; -- [XXXCO] :: smooth, make smooth, smooth out, remove roughness; pulverize; make small (L+S); + levis_A : A ; -- [XXXAX] :: |smooth; slippery, polished, plain; free from coarse hair/harsh sounds; + levisomnus_A : A ; -- [XXXEC] :: lightly sleeping; + levitas_F_N : N ; -- [XXXDX] :: levity; lightness, mildness; fickleness; shallowness; + leviter_Adv : Adv ; -- [XXXCO] :: lightly/gently/softly/quietly/mildly/slightly; groundlessly/thoughtlessly; + levo_V2 : V2 ; -- [XXXDO] :: |||alleviate (condition); make smooth, polish; free from hair, depilate; + levor_M_N : N ; -- [XXXFS] :: smoothness; lex_1_N : N ; -- [XGXES] :: word; (Greek); - lex_2_N : N ; - lex_F_N : N ; - lexicalis_A : A ; - lexicographia_F_N : N ; - lexicographicus_A : A ; - lexicographus_M_N : N ; - lexicon_N_N : N ; - liana_F_N : N ; - libamen_N_N : N ; - libamentum_N_N : N ; - libamenum_N_N : N ; - libanotis_F_N : N ; - libatio_F_N : N ; - libella_F_N : N ; - libellus_M_N : N ; - libens_A : A ; - libenter_Adv : Adv ; - liber_A : A ; - liber_M_N : N ; - liberalis_A : A ; - liberalismus_M_N : N ; - liberalitas_F_N : N ; - liberaliter_Adv : Adv ; - liberatio_F_N : N ; - liberator_M_N : N ; - libere_Adv : Adv ; - libero_V : V ; - liberta_F_N : N ; - libertas_F_N : N ; - libertina_F_N : N ; - libertinus_A : A ; - libertinus_M_N : N ; - liberto_V : V ; - libertus_M_N : N ; - libet_V0 : V ; - libidinor_V : V ; - libidinosus_A : A ; - libido_F_N : N ; - libitinarius_M_N : N ; - libo_V : V ; - libra_F_N : N ; - libramen_N_N : N ; - libramentum_N_N : N ; - libraria_F_N : N ; - librariolus_M_N : N ; - librarium_N_N : N ; - librarius_A : A ; - librarius_M_N : N ; - libratio_F_N : N ; - libricola_M_N : N ; - librilis_A : A ; - libripens_M_N : N ; - libritor_M_N : N ; - libro_V : V ; - libum_N_N : N ; - liburna_F_N : N ; - liburnica_F_N : N ; - licens_A : A ; - licenter_Adv : Adv ; - licentia_F_N : N ; - licentio_V : V ; - licentiosus_A : A ; - liceo_V : V ; - liceor_V : V ; - licet_Conj : Conj ; - licet_V0 : V ; - lichanos_M_N : N ; - lichen_M_N : N ; - liciatorium_N_N : N ; - licitatio_F_N : N ; - licitus_A : A ; - licium_N_N : N ; - lictor_M_N : N ; - lien_M_N : N ; - lienis_M_N : N ; - lienosus_A : A ; - lienosus_M_N : N ; - liga_F_N : N ; - ligamen_N_N : N ; - ligamentum_N_N : N ; - ligator_M_N : N ; - ligatura_F_N : N ; - ligia_F_N : N ; - lignarius_M_N : N ; - lignatio_F_N : N ; - lignator_M_N : N ; - ligneolus_A : A ; - ligneus_A : A ; - lignor_V : V ; - lignosus_A : A ; - lignum_N_N : N ; - ligo_M_N : N ; - ligo_V : V ; - ligula_F_N : N ; - ligurio_V2 : V2 ; - ligurius_M_N : N ; - ligurrio_V2 : V2 ; - ligustrum_N_N : N ; - ligyrius_M_N : N ; - lilacinus_A : A ; - lilium_N_N : N ; - lima_F_N : N ; - limatulus_A : A ; - limatura_F_N : N ; - limatus_A : A ; + lex_2_N : N ; -- [XGXES] :: word; (Greek); + lex_F_N : N ; -- [XLXAX] :: law; motion, bill, statute; principle; condition; + lexicalis_A : A ; -- [GGXEK] :: lexical; + lexicographia_F_N : N ; -- [GGXEK] :: lexicography; + lexicographicus_A : A ; -- [GGXEK] :: lexicographical; + lexicographus_M_N : N ; -- [GGXEK] :: lexicographer; + lexicon_N_N : N ; -- [GGXEK] :: lexicon; + liana_F_N : N ; -- [GXXEK] :: liana; thick twining vine; + libamen_N_N : N ; -- [XXXDX] :: drink-offering; first fruits; + libamentum_N_N : N ; -- [XXXEC] :: libation, offering to the gods; + libamenum_N_N : N ; -- [XXXDX] :: drink-offering; first fruits; + libanotis_F_N : N ; -- [DAXNS] :: rosemary (Pliny); + libatio_F_N : N ; -- [XEXEO] :: libation, sacrificial offering (esp. of drink); + libella_F_N : N ; -- [XXXDX] :: small silver coin, plumbline; level; + libellus_M_N : N ; -- [XXXAX] :: little/small book; memorial; petition; pamphlet, defamatory publication; + libens_A : A ; -- [XXXAO] :: willing, cheerful; glad, pleased; + libenter_Adv : Adv ; -- [XXXCO] :: willingly; gladly, with pleasure; + liber_A : A ; -- [XXXAO] :: |unconstrained, unrestrained, unencumbered; licentious; idle; w/abandon; + liber_M_N : N ; -- [XXXDX] :: book, volume; inner bark of a tree; + liberalis_A : A ; -- [XXXAX] :: honorable; courteous, well bred, gentlemanly; liberal; generous; + liberalismus_M_N : N ; -- [GXXEK] :: liberalism; + liberalitas_F_N : N ; -- [XXXBX] :: courtesy, kindness, nobleness; generosity; frankness; gift; + liberaliter_Adv : Adv ; -- [XXXDX] :: graciously, courteously; liberally; + liberatio_F_N : N ; -- [XLXCO] :: liberation/setting free, release/deliverance (from) (debt); acquittal/discharge; + liberator_M_N : N ; -- [XXXDX] :: liberator, deliverer; savior; + libere_Adv : Adv ; -- [XXXDX] :: freely; frankly; shamelessly; + libero_V : V ; -- [XXXAX] :: free; acquit, absolve; manumit; liberate, release; + liberta_F_N : N ; -- [XXXCO] :: freedwoman; ex-slave; + libertas_F_N : N ; -- [XXXAX] :: freedom, liberty; frankness of speech, outspokenness; + libertina_F_N : N ; -- [XXXDX] :: freedman; + libertinus_A : A ; -- [XXXDX] :: of a freedman; + libertinus_M_N : N ; -- [XXXDX] :: freedman; + liberto_V : V ; -- [FLXEM] :: liberate; E:exempt; + libertus_M_N : N ; -- [XXXBO] :: freedman; ex-slave; + libet_V0 : V ; -- [XXXBX] :: it pleases, is pleasing/agreeable; (w/qui whatever, whichever, no matter); + libidinor_V : V ; -- [XXXEO] :: gratify/indulge lust/passion; + libidinosus_A : A ; -- [XXXDX] :: lustful, wanton; capricious; + libido_F_N : N ; -- [XXXAO] :: desire/longing/wish/fancy; lust, wantonness; will/pleasure; passion/lusts (pl.); + libitinarius_M_N : N ; -- [XXXDX] :: undertaker; + libo_V : V ; -- [XXXBX] :: nibble, sip; pour in offering/a libation; impair; graze, touch, skim (over); + libra_F_N : N ; -- [XXXBX] :: scales, balance; level; Roman pound, 12 unciae/ounces; (3/4 pound avoirdupois); + libramen_N_N : N ; -- [FXXEN] :: poise, balance; + libramentum_N_N : N ; -- [XXXDX] :: weight, counterpoise; + libraria_F_N : N ; -- [GXXEK] :: bookstore; + librariolus_M_N : N ; -- [XXXES] :: copyist; scribe; + librarium_N_N : N ; -- [GXXEK] :: library (piece of furniture); + librarius_A : A ; -- [XXXDX] :: of books; + librarius_M_N : N ; -- [GXXEK] :: bookseller; + libratio_F_N : N ; -- [XXXES] :: level-making; horizontal position; hurling off; + libricola_M_N : N ; -- [GXXEK] :: bibliophile; + librilis_A : A ; -- [XXXDX] :: weighing a (Roman) pound; + libripens_M_N : N ; -- [XXXDO] :: one who holds the balance (in ceremony of mancipium), man in charge of scales; + libritor_M_N : N ; -- [XWXEC] :: artilleryman; + libro_V : V ; -- [XXXDX] :: balance,swing; hurl; + libum_N_N : N ; -- [XXXDX] :: cake/pancake; consecrated cake (to gods on 50 birthday); liquid/drink offering; + liburna_F_N : N ; -- [XWKCO] :: light, fast-sailing warship; (Liburian/Illyrian/Croatian galley/brigantine); + liburnica_F_N : N ; -- [XWKCO] :: light, fast-sailing warship; (Liburian/Illyrian/Croatian galley/brigantine); + licens_A : A ; -- [XXXCO] :: bold, free, forward, presumptuous; uncurbed, unrestrained in conduct; + licenter_Adv : Adv ; -- [XXXCO] :: boldly/impudently; licentiously/loosely; freely; w/out restraint; extravagantly; + licentia_F_N : N ; -- [XXXBX] :: freedom, liberty; license, disorderliness; outspokenness; + licentio_V : V ; -- [FXXEM] :: authorize, permit; dismiss; + licentiosus_A : A ; -- [XXXEO] :: unrestrained, unbridled; wanton, licentious; free; + liceo_V : V ; -- [XXXDX] :: fetch (price); (with ABL or GEN); + liceor_V : V ; -- [XXXCO] :: bid on/for, bid, bid at auction; make a bid; + licet_Conj : Conj ; -- [XXXCO] :: although, granted that; (with subjunctive); + licet_V0 : V ; -- [XXXAX] :: it is permitted, one may; it is all right, lawful, allowed, permitted; + lichanos_M_N : N ; -- [XDHFO] :: second highest tetrachord note; (lychanos/lichanos); + lichen_M_N : N ; -- [XAXCO] :: lichen; liverwort?; skin disease, tetter, eczema, ringworm; gum/resin as cure; + liciatorium_N_N : N ; -- [EXXFS] :: weaver's beam; + licitatio_F_N : N ; -- [XXXCO] :: bidding, offering of a price; + licitus_A : A ; -- [XXXDX] :: lawful, permitted; + licium_N_N : N ; -- [XXXDX] :: thread; leash or heddle (in weaving); + lictor_M_N : N ; -- [XXXDX] :: lictor, an attendant upon a magistrate; + lien_M_N : N ; -- [XBXDO] :: spleen; diseased/enlarged condition of the spleen; + lienis_M_N : N ; -- [XBXEO] :: spleen; diseased/enlarged condition of the spleen; + lienosus_A : A ; -- [XBXDO] :: affected by a disorder of the spleen; + lienosus_M_N : N ; -- [XBXEO] :: one suffering from a disorder of the spleen; + liga_F_N : N ; -- [FXXFM] :: league; confederacy; + ligamen_N_N : N ; -- [XXXDX] :: bandage; string, fastening, tie; nerve or ligament; + ligamentum_N_N : N ; -- [XXXEC] :: bandage; + ligator_M_N : N ; -- [GXXEK] :: bookbinder; + ligatura_F_N : N ; -- [GXXEK] :: bookbinding; + ligia_F_N : N ; -- [FLXFM] :: confederacy; league; + lignarius_M_N : N ; -- [XXXDX] :: carpenter; timber merchant; + lignatio_F_N : N ; -- [XXXDX] :: getting/collecting firewood; + lignator_M_N : N ; -- [XXXDX] :: one who collects firewood; + ligneolus_A : A ; -- [XXXEC] :: wooden; + ligneus_A : A ; -- [XXXCO] :: wooden, wood-; woody, like wood, tough/stringy; [soleae ~ => worn by parricide]; + lignor_V : V ; -- [XXXDX] :: collect firewood; + lignosus_A : A ; -- [XXXFS] :: wood-like; having kernel (Pliny); + lignum_N_N : N ; -- [FEXDE] :: ||the Cross; staff, cudgel, club; gallows/stocks; [~ pedaneum => altar step]; + ligo_M_N : N ; -- [XXXDX] :: mattock; hoe; + ligo_V : V ; -- [XXXBX] :: bind, tie, fasten; unite; + ligula_F_N : N ; -- [XXXDX] :: shoe strap/tie; small spoon (Cal); [ligulas dimittere => leave untied]; + ligurio_V2 : V2 ; -- [XXXDX] :: lick, lick up; + ligurius_M_N : N ; -- [EXXES] :: ligure, precious gem; hard transparent gem, tourmaline? (L+S); + ligurrio_V2 : V2 ; -- [XXXDX] :: lick, lick up; + ligustrum_N_N : N ; -- [XXXDX] :: privet, white-flowered shrub; + ligyrius_M_N : N ; -- [EXXFW] :: ligure, precious gem; hard transparent gem, tourmaline? (L+S); + lilacinus_A : A ; -- [GXXEK] :: lilac-colored; + lilium_N_N : N ; -- [XXXBX] :: lily; "lily" trap; + lima_F_N : N ; -- [XXXDX] :: file (carpenter's); polishing/revision (of a literary work); + limatulus_A : A ; -- [XXXEC] :: rather polished, refined; + limatura_F_N : N ; -- [FXXEK] :: filing; + limatus_A : A ; -- [XXXES] :: besmirch; limax_F_N : N ; -- [XXXFS] :: slug; snail; - limax_M_N : N ; - limbus_M_N : N ; - limen_N_N : N ; - limes_M_N : N ; - limino_V2 : V2 ; - limitaneus_A : A ; - limitaris_A : A ; - limitatio_F_N : N ; - limito_V : V ; - limitotrophus_A : A ; - limitrophis_A : A ; - limitrophus_A : A ; - limma_N_N : N ; - limo_V : V ; - limonata_F_N : N ; - limosus_A : A ; - limpidus_A : A ; - limus_A : A ; - limus_M_N : N ; - limusina_F_N : N ; - linamentum_N_N : N ; - linea_F_N : N ; - lineamentum_N_N : N ; - lineatus_A : A ; - lineo_V2 : V2 ; - lineus_A : A ; - lingo_V2 : V2 ; - lingua_F_N : N ; - linguista_M_N : N ; - linguistica_F_N : N ; - linguisticus_A : A ; - lingula_F_N : N ; - lingulaca_F_N : N ; - linguosus_A : A ; - liniamentum_N_N : N ; - liniger_A : A ; - linio_V2 : V2 ; - lino_V2 : V2 ; - linostimus_A : A ; - linquo_V2 : V2 ; - linteamen_N_N : N ; - linteatus_A : A ; - linteo_M_N : N ; - linteolum_N_N : N ; + limax_M_N : N ; -- [XXXFS] :: slug; snail; + limbus_M_N : N ; -- [XXXDX] :: border, edge; ornamental border of a robe; + limen_N_N : N ; -- [XXXAX] :: threshold, entrance; lintel; house; + limes_M_N : N ; -- [XXXBX] :: path, track; limit; strip of uncultivated ground marking boundary; + limino_V2 : V2 ; -- [XXXIO] :: illuminate, light up; + limitaneus_A : A ; -- [EXXES] :: border-situated; + limitaris_A : A ; -- [EXXES] :: bordering; + limitatio_F_N : N ; -- [EXXES] :: fixing; determination; + limito_V : V ; -- [EXXEZ] :: bound; limit (Nelson); + limitotrophus_A : A ; -- [XXXFS] :: neighboring, bordering; [~ agri => lands to support/supply frontier troops]; + limitrophis_A : A ; -- [EXXEE] :: neighboring, bordering; [~ agri => lands to support/supply frontier troops]; + limitrophus_A : A ; -- [XXXEE] :: neighboring, bordering; [~ agri => lands to support/supply frontier troops]; + limma_N_N : N ; -- [XDXFO] :: semi-tone; + limo_V : V ; -- [XXXDX] :: file; polish; file down; detract gradually from; + limonata_F_N : N ; -- [GXXEK] :: lemonade; + limosus_A : A ; -- [XXXDX] :: miry, muddy; marshy, swampy; + limpidus_A : A ; -- [XXXDX] :: clear; + limus_A : A ; -- [XXXDO] :: oblique, transverse; sidelong, sideways; askew, aslant; askance; + limus_M_N : N ; -- [XXXCO] :: mud/mire; slime; filth/pollution; silt; crusted dirt; sediment of wine; + limusina_F_N : N ; -- [GXXEK] :: limousine; + linamentum_N_N : N ; -- [XXXCO] :: line (drawn/traced/geometric); outline of a figure; features, outlines of face; + linea_F_N : N ; -- [XXXBX] :: string, line (plumb/fishing); [alba ~ => white line at end of race course]; + lineamentum_N_N : N ; -- [XXXCO] :: line (drawn/traced/marked/geometric); outlines (pl.) (figure/face), features; + lineatus_A : A ; -- [GXXEK] :: lined; + lineo_V2 : V2 ; -- [EXXFW] :: smear, plaster (with); seal (wine jar); erase/rub over; befoul; cover/overlay; + lineus_A : A ; -- [XXXDX] :: made of flax or linen; + lingo_V2 : V2 ; -- [XXXAO] :: lick; lick up (L+S); + lingua_F_N : N ; -- [XXXDX] :: tongue; speech, language; dialect; + linguista_M_N : N ; -- [GXXEK] :: linguist; + linguistica_F_N : N ; -- [GXXEK] :: linguistics; + linguisticus_A : A ; -- [GXXEK] :: linguistic; + lingula_F_N : N ; -- [XXXDX] :: tongue of land; + lingulaca_F_N : N ; -- [XXXEC] :: chatterbox; + linguosus_A : A ; -- [XXXES] :: talkative; + liniamentum_N_N : N ; -- [XXXCO] :: line (drawn/traced/marked/geometric); outlines (pl.) (figure/face), features; + liniger_A : A ; -- [XXXDX] :: wearing linen; + linio_V2 : V2 ; -- [XXXEO] :: smear, plaster (with); seal (wine jar); erase/rub over; befoul; cover/overlay; + lino_V2 : V2 ; -- [XXXCO] :: smear, plaster (with); seal (wine jar); erase/rub over; befoul; cover/overlay; + linostimus_A : A ; -- [FEXFE] :: linen-, of linen; + linquo_V2 : V2 ; -- [XXXAS] :: leave, quit, forsake; abandon, desist from; allow to remain in place; bequeath; + linteamen_N_N : N ; -- [XXXEO] :: linen cloth; + linteatus_A : A ; -- [XXXEC] :: clothed in linen; + linteo_M_N : N ; -- [BTXFS] :: linen-weaver; + linteolum_N_N : N ; -- [XBXDO] :: piece/strip of linen; (esp. as used in medicine); bandage; linter_F_N : N ; -- [XXXDX] :: boat, skiff, small light boat; trough, vat; - linter_M_N : N ; - linteum_N_N : N ; - linteus_A : A ; - lintriculus_M_N : N ; - linum_N_N : N ; - lipara_F_N : N ; - lippio_V : V ; - lippus_A : A ; - lipsanotheca_F_N : N ; - liquamen_N_N : N ; - liquamentum_N_N : N ; - liquatio_F_N : N ; - liquefacio_V2 : V2 ; - liquefactio_F_N : N ; - liquefio_V : V ; - liqueo_V : V ; - liquesco_V : V ; - liquet_V0 : V ; - liquidus_A : A ; - liquo_V : V ; - liquor_M_N : N ; - liquor_V : V ; - lis_F_N : N ; - litania_F_N : N ; - litatio_F_N : N ; - litera_F_N : N ; - literula_F_N : N ; - literum_N_N : N ; - lithocolla_F_N : N ; - lithographia_F_N : N ; - lithostrotum_N_N : N ; - lithostrotus_A : A ; - litigator_M_N : N ; - litigiosus_A : A ; - litigo_V : V ; - lito_V : V ; - litoralis_A : A ; - litoreus_A : A ; - litra_F_N : N ; - litrum_N_N : N ; - littera_F_N : N ; - litteralis_A : A ; - litterarius_A : A ; - litterate_Adv : Adv ; - litteratio_F_N : N ; - litterator_M_N : N ; - litteratorius_A : A ; - litteratura_F_N : N ; - litteratus_A : A ; - litterosus_A : A ; - litterula_F_N : N ; - littus_N_N : N ; - litura_F_N : N ; - liturarium_N_N : N ; - liturgia_F_N : N ; - liturgicus_A : A ; - litus_N_N : N ; - lituus_M_N : N ; - livens_A : A ; - liveo_V : V ; - livesco_V : V ; - lividulus_A : A ; - lividus_A : A ; - livor_M_N : N ; - lixa_M_N : N ; - lixivus_A : A ; - lo_Interj : Interj ; - loba_F_N : N ; - lobia_F_N : N ; - lobus_M_N : N ; - localis_A : A ; - localiter_Adv : Adv ; - locarium_N_N : N ; - locatio_F_N : N ; - locator_M_N : N ; - locatorius_A : A ; - locellus_M_N : N ; - loco_Adv : Adv ; - loco_V : V ; - loculamentum_N_N : N ; - loculatus_A : A ; - loculosus_A : A ; - loculus_M_N : N ; - locum_N_N : N ; - locumtenens_M_N : N ; - locuples_A : A ; - locupleto_V : V ; - locus_M_N : N ; - locusta_F_N : N ; - locutio_F_N : N ; - lodix_F_N : N ; - logarithmus_M_N : N ; - logicaliter_Adv : Adv ; - logicum_N_N : N ; - logicus_A : A ; - loginquitas_F_N : N ; - logion_N_N : N ; - logium_N_N : N ; - logos_M_N : N ; - logus_M_N : N ; - loliarius_A : A ; - lolium_N_N : N ; - lolligo_F_N : N ; - lomentum_N_N : N ; - longaevitas_F_N : N ; - longaevus_A : A ; - longaminus_A : A ; - longanimis_A : A ; - longanimitas_F_N : N ; - longanimiter_Adv : Adv ; - longe_Adv : Adv ; - longinque_Adv : Adv ; - longinquitas_F_N : N ; - longinquo_Adv : Adv ; - longinquo_V2 : V2 ; - longinquom_Adv : Adv ; - longinquus_A : A ; - longitudo_F_N : N ; - longiturnitas_F_N : N ; - longiturnus_A : A ; - longule_Adv : Adv ; - longulus_A : A ; - longurium_N_N : N ; - longurius_M_N : N ; - longus_A : A ; - lophos_M_N : N ; - loquacitas_F_N : N ; - loquaculus_A : A ; - loquax_A : A ; - loquela_F_N : N ; - loquella_F_N : N ; - loquor_V : V ; - loramentum_N_N : N ; - lorarius_M_N : N ; - loratus_A : A ; - lorea_F_N : N ; - loreola_F_N : N ; - loretum_N_N : N ; - loreus_A : A ; - lorica_F_N : N ; - loricatus_A : A ; - loripes_A : A ; - lorum_N_N : N ; - lorus_M_N : N ; - lotium_N_N : N ; - lotor_M_N : N ; + linter_M_N : N ; -- [XXXDX] :: boat, skiff, small light boat; trough, vat; + linteum_N_N : N ; -- [XXXDX] :: linen cloth; linen; sail; napkin; awning; bedsheet (Cal); + linteus_A : A ; -- [XXXDX] :: linen-, of linen; + lintriculus_M_N : N ; -- [XXXFS] :: small boat; + linum_N_N : N ; -- [XXXDX] :: flax, linen cloth/thread; rope; fishing line; (hunter's/fisher's) net; + lipara_F_N : N ; -- [XBXFS] :: emollient plaster; (also proper name); + lippio_V : V ; -- [XBXEC] :: have sore eyes, be bleary-eyed; + lippus_A : A ; -- [XXXDX] :: having watery or inflamed eyes; + lipsanotheca_F_N : N ; -- [FEXFE] :: storehouse for relics; + liquamen_N_N : N ; -- [XXXEO] :: fluid, liquid; (esp. fish sauce/garum); liquid mixture (L+S); lye (late); + liquamentum_N_N : N ; -- [DXXFS] :: mixture; concoction; + liquatio_F_N : N ; -- [XXXFS] :: melting; + liquefacio_V2 : V2 ; -- [XXXCO] :: melt, dissolve; liquefy; make (melody) clear and sweet (liquid); + liquefactio_F_N : N ; -- [GXXEK] :: liquefaction; + liquefio_V : V ; -- [XXXCO] :: be/become melted/dissolved/liquefied; (liquefacio PASS); + liqueo_V : V ; -- [XXXDX] :: be in molten/liquid state; be clear to a person; be evident; + liquesco_V : V ; -- [XXXDX] :: become liquid/fluid, melt, liquefy; decompose, putrefy; grow soft/effeminate; + liquet_V0 : V ; -- [XXXDX] :: it is proven, guilt is established; [non ~ => not proven as a verdict/N.L.]; + liquidus_A : A ; -- [XXXBX] :: clear, limpid, pure, unmixed; liquid; flowing, without interruption; smooth; + liquo_V : V ; -- [XXXDX] :: melt; strain; + liquor_M_N : N ; -- [XXXBX] :: fluid, liquid; + liquor_V : V ; -- [XXXDX] :: become liquid, melt away; dissolve (into tears); waste away; flow; + lis_F_N : N ; -- [XXXBX] :: lawsuit; quarrel; + litania_F_N : N ; -- [FEXDM] :: litany; + litatio_F_N : N ; -- [BEXFS] :: favorable sacrifice; + litera_F_N : N ; -- [XXXDX] :: letter (alphabet); (pl.) letter, epistle; literature, books, records, account; + literula_F_N : N ; -- [XXXCO] :: ||literary compositions/activities (pl.); erudition, knowledge of books; + literum_N_N : N ; -- [FEXDM] :: litter; bedding; + lithocolla_F_N : N ; -- [GXXEK] :: concrete; + lithographia_F_N : N ; -- [GXXEK] :: lithograph; + lithostrotum_N_N : N ; -- [XXXFS] :: mosaic; + lithostrotus_A : A ; -- [XXXFS] :: inlaid with stones; + litigator_M_N : N ; -- [XLXCO] :: litigant, one engaged in a lawsuit; + litigiosus_A : A ; -- [XXXDX] :: quarrelsome, contentions; + litigo_V : V ; -- [XXXDX] :: quarrel; go to law; + lito_V : V ; -- [XXXDX] :: obtain/give favorable omens from sacrifice; make (acceptable) offering (to); + litoralis_A : A ; -- [XXXES] :: of the seashore; + litoreus_A : A ; -- [XXXDX] :: of the seashore; + litra_F_N : N ; -- [GXXEK] :: liter; + litrum_N_N : N ; -- [GXXEK] :: liter; + littera_F_N : N ; -- [XXXAX] :: letter (alphabet); (pl.) letter, epistle; literature, books, records, account; + litteralis_A : A ; -- [DXXES] :: belonging/pertaining to writing/letters/books; epistolary; of reading/writing; + litterarius_A : A ; -- [XXXDX] :: literary; pertaining to writing; [ludus litterarius => an elementary school]; + litterate_Adv : Adv ; -- [XXXDS] :: |in cultivated/erudite manner; learnedly/scientifically/elegantly/cleverly; + litteratio_F_N : N ; -- [XGXFO] :: instruction in reading and writing; study of reading/writing/languages (Ecc); + litterator_M_N : N ; -- [XGXDO] :: elementary schoolmaster, one who teaches the elements; (often disparagingly); + litteratorius_A : A ; -- [XGXFS] :: grammatical; + litteratura_F_N : N ; -- [XGXBO] :: |writing, literature; scholarship, what is learned from books, book-learning; + litteratus_A : A ; -- [XXXCO] :: |marked/branded/tattooed w/letters (of slaves, as sign of disgrace); + litterosus_A : A ; -- [XXXFO] :: learned, cultured, erudite, well versed in literature; + litterula_F_N : N ; -- [XXXCO] :: ||literary compositions/activities (pl.); erudition, knowledge of books; + littus_N_N : N ; -- [XXXBO] :: shore, seashore, coast, strand; river bank; beach, landing place; + litura_F_N : N ; -- [XXXDX] :: correction; erasure; blot, smear; + liturarium_N_N : N ; -- [FXXEK] :: rough draft; + liturgia_F_N : N ; -- [EEXDP] :: liturgy; + liturgicus_A : A ; -- [FXXDE] :: of the liturgy; liturgic (Vatican); + litus_N_N : N ; -- [XXXEO] :: shore, seashore, coast, strand; river bank; beach, landing place; + lituus_M_N : N ; -- [XXXDX] :: curved staff carried by augurs; a kind of war-trumpet curved at one end; + livens_A : A ; -- [XXXES] :: bluish; lead-colored; envious; + liveo_V : V ; -- [XXXDX] :: be livid or discolored; be envious; + livesco_V : V ; -- [XXXES] :: become livid; become black and blue; become envious; + lividulus_A : A ; -- [XXXEC] :: rather envious; + lividus_A : A ; -- [XXXDX] :: livid, slate-colored; discolored by bruises; envious, spiteful; + livor_M_N : N ; -- [XXXDX] :: bluish discoloration (produced by bruising, etc); envy, spite; + lixa_M_N : N ; -- [XXXDX] :: camp-follower; + lixivus_A : A ; -- [XAXES] :: made into lye; pressed grape must; + lo_Interj : Interj ; -- [EXXFP] :: Lo!; (magic word to cure bite of mad dog); + loba_F_N : N ; -- [DAXNS] :: straw of Indian millet; nightshade, strychnos; + lobia_F_N : N ; -- [GXXEK] :: lobby; + lobus_M_N : N ; -- [EAXEP] :: hull, husk, pod; lobe (Latham); + localis_A : A ; -- [XXXFO] :: local; of/relating to place; + localiter_Adv : Adv ; -- [XXXFS] :: locally; + locarium_N_N : N ; -- [FXXEK] :: rent; + locatio_F_N : N ; -- [XXXDX] :: renting, hiring out or letting (of property); + locator_M_N : N ; -- [XXXCO] :: lessor, who lets out property; one who gives a contract; jobmaster (Erasmus); + locatorius_A : A ; -- [XXXEC] :: concerned with leases; + locellus_M_N : N ; -- [XXXEO] :: casket, small box; + loco_Adv : Adv ; -- [XXXES] :: for, in the place of, instead of; + loco_V : V ; -- [XXXAX] :: place, put, station; arrange; contract (for); farm out (taxes) on contract; + loculamentum_N_N : N ; -- [XXXDO] :: compartment; case; receptacle for holding things; + loculatus_A : A ; -- [XXXFO] :: compartmented, divided into compartments/cells; + loculosus_A : A ; -- [XXXNO] :: compartmented, divided into compartments/cells; + loculus_M_N : N ; -- [XXXCO] :: |compartmented box (pl.), money-box; school satchel, case for writing material; + locum_N_N : N ; -- [XXXCS] :: |region, places (pl.); places connected with each other; + locumtenens_M_N : N ; -- [GWXEK] :: lieutenant; + locuples_A : A ; -- [XXXDX] :: substantial, opulent, wealthy; rich in lands; rich, richly provided; trusty; + locupleto_V : V ; -- [XXXDX] :: enrich; + locus_M_N : N ; -- [XBXCO] :: |part of the body; female genitals (pl.); grounds of proof; + locusta_F_N : N ; -- [XAXCO] :: locust; crustacean, lobster (w/marina/maris); + locutio_F_N : N ; -- [XXXCO] :: speech, act of speaking; style of speaking; phrase/expression; pronunciation; + lodix_F_N : N ; -- [XXXEC] :: blanket, rug; + logarithmus_M_N : N ; -- [GSXEK] :: logarithm; + logicaliter_Adv : Adv ; -- [FXXEM] :: logically; + logicum_N_N : N ; -- [XSXEC] :: logic (pl.); + logicus_A : A ; -- [XXXEC] :: logical; + loginquitas_F_N : N ; -- [FXXEN] :: distance, remoteness, isolation (Nelson); time-length (Redmond); + logion_N_N : N ; -- [EEQEP] :: breastplate (oracular); priestly breastplate/pectoral; (of Jewish high priest); + logium_N_N : N ; -- [EEQEP] :: breastplate (oracular); priestly breastplate/pectoral; (of Jewish high priest); + logos_M_N : N ; -- [XXXDX] :: word; mere words (pl.), joke, jest, bon mot; + logus_M_N : N ; -- [XXXDX] :: word; mere words (pl.), joke, jest, bon mot; + loliarius_A : A ; -- [XAXES] :: of darnel; + lolium_N_N : N ; -- [XXXDX] :: darnel/lolium; (grass found as weed in grain); (mistakenly) cockle, tares; + lolligo_F_N : N ; -- [XAXEC] :: cuttle-fish; + lomentum_N_N : N ; -- [GXXEK] :: |soap; (Cal); + longaevitas_F_N : N ; -- [GXXET] :: long life; (Erasmus); + longaevus_A : A ; -- [XXXDX] :: aged; of great age, ancient; + longaminus_A : A ; -- [FXXEM] :: patient; long-suffering; + longanimis_A : A ; -- [EXXES] :: patient, long-suffering; + longanimitas_F_N : N ; -- [EXXES] :: patience, forebearance, long-suffering; + longanimiter_Adv : Adv ; -- [EXXES] :: patiently, with forebearance/long-suffering; + longe_Adv : Adv ; -- [XXXAO] :: far (off), distant, a long way; by far; for a long while, far (in future/past); + longinque_Adv : Adv ; -- [XXXEO] :: far/long way (off), distant, at a distance; for a long while; longwindedly; + longinquitas_F_N : N ; -- [XXXDX] :: distance, length, duration; remoteness; + longinquo_Adv : Adv ; -- [XXXFO] :: far/long way (off), distant, at a distance; for/after a long while/interval; + longinquo_V2 : V2 ; -- [DXXES] :: put far off, remove to a distance; put far away from (Souter); + longinquom_Adv : Adv ; -- [DXXFS] :: far/long way (off), distant, at a distance; for/after a long while/interval; + longinquus_A : A ; -- [XXXDX] :: remote, distant, far off; lasting, of long duration; + longitudo_F_N : N ; -- [GSXEK] :: |longitude; + longiturnitas_F_N : N ; -- [EXXES] :: duration; length of days (Vulgate); + longiturnus_A : A ; -- [EXXFS] :: long, of long duration; many (days) (Vulgate); + longule_Adv : Adv ; -- [XXXEC] :: rather far, at a little distance; + longulus_A : A ; -- [XXXEC] :: rather long; + longurium_N_N : N ; -- [XXXDX] :: long pole; + longurius_M_N : N ; -- [XXXDX] :: long pole; + longus_A : A ; -- [XXXAO] :: long; tall; tedious, taking long time; boundless; far; of specific length/time; + lophos_M_N : N ; -- [XAHNO] :: crest; comb (chicken/cock); + loquacitas_F_N : N ; -- [XXXDX] :: talkativeness; + loquaculus_A : A ; -- [XXXEC] :: rather talkative; + loquax_A : A ; -- [XXXDX] :: talkative, loquacious; + loquela_F_N : N ; -- [XXXCO] :: speech, utterance; + loquella_F_N : N ; -- [XXXCO] :: speech, utterance; + loquor_V : V ; -- [XXXAX] :: speak, tell; talk; mention; say, utter; phrase; + loramentum_N_N : N ; -- [XXXIO] :: strap; + lorarius_M_N : N ; -- [XXXES] :: flogger; harness-maker; + loratus_A : A ; -- [XXXEC] :: bound with thongs; + lorea_F_N : N ; -- [XXXEO] :: laurel/bay tree; laurel crown/wreath/branch; triumph, victory; honor (poets); + loreola_F_N : N ; -- [XXXEO] :: small laurel branch, sprig of bay; (announces victory); little laurel/victory; + loretum_N_N : N ; -- [XXXDO] :: laurel grove; (esp. as proper name) place on Aventine Hill at Rome; + loreus_A : A ; -- [XXXES] :: of thongs; + lorica_F_N : N ; -- [XXXDX] :: coat of mail; breastwork, parapet, fortification; + loricatus_A : A ; -- [XXXEC] :: wearing a cuirass; + loripes_A : A ; -- [XXXEC] :: bandy-legged; + lorum_N_N : N ; -- [XXXBX] :: leather strap, thong; shoe strap; rawhide whip; dog leash; reins (usu. pl.); + lorus_M_N : N ; -- [XXXDX] :: leather strap, thong; shoe strap; rawhide whip; dog leash; reins (usu. pl.); + lotium_N_N : N ; -- [XBXDO] :: urine; (liquid for washing - urine used for bleaching); (rude/veterinary); + lotor_M_N : N ; -- [FXXEK] :: laundryman; 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 ; - lous_F_N : N ; - lubens_A : A ; - lubenter_Adv : Adv ; - lubet_V0 : V ; - lubidinor_V : V ; - lubido_F_N : N ; - lubrico_V2 : V2 ; - lubricor_V : V ; - lubricosus_A : A ; - lubricus_A : A ; - lucar_N_N : N ; - lucellum_N_N : N ; - luceo_V : V ; - lucerna_F_N : N ; - lucesco_V : V ; - lucesct_V0 : V ; - lucido_V : V ; - lucidus_A : A ; - lucifer_A : A ; - lucifer_M_N : N ; - lucifluus_A : A ; - lucifugus_A : A ; - lucinaria_F_N : N ; - lucisco_V : V ; - lucisct_V0 : V ; - lucius_M_N : N ; - lucrativus_A : A ; - lucrifacio_V2 : V2 ; - lucrifio_V : V ; - lucrifuga_M_N : N ; - lucror_V : V ; - lucrosus_A : A ; - lucrum_N_N : N ; - luctamen_N_N : N ; - luctator_M_N : N ; - luctificus_A : A ; - luctisonus_A : A ; - luctor_V : V ; - luctuosus_A : A ; - luctus_M_N : N ; - lucubra_F_N : N ; - lucubratio_F_N : N ; - lucubro_V : V ; - luculentus_A : A ; - luculenus_A : A ; + lotos_M_N : N ; -- [XAXCO] :: lotus, flower of forgetfulness; water lily; trefoil; nettle-tree, pipe from it; + lotus_A : A ; -- [XXXBO] :: elegant, fashionable; sumptuous/luxurious; fine, well turned out; washed/clean; + lotus_C_N : N ; -- [XAXCO] :: lotus, flower of forgetfulness; water lily; trefoil; nettle-tree, pipe from it; + lous_F_N : N ; -- [XXXDX] :: lotus plant; nettle plant; + lubens_A : A ; -- [XXXCO] :: willing, cheerful; glad, pleased; + lubenter_Adv : Adv ; -- [XXXCO] :: willingly; gladly, with pleasure; + lubet_V0 : V ; -- [XXXCO] :: it pleases/is pleasing/agreeable; please/want/feel like; [w/qui => no matter]; + lubidinor_V : V ; -- [XXXEO] :: gratify/indulge lust/passion; + lubido_F_N : N ; -- [XXXAO] :: desire/longing/wish/fancy; lust, wantonness; will/pleasure; passion/lusts (pl.); + lubrico_V2 : V2 ; -- [XXXFO] :: make slippery; slip (especially morally) (Souter); render uncertain; + lubricor_V : V ; -- [EXXFP] :: slip (morally); + lubricosus_A : A ; -- [XXXFO] :: sticky; clayey; + lubricus_A : A ; -- [XXXBX] :: slippery; sinuous; inconstant; hazardous, ticklish; deceitful; + lucar_N_N : N ; -- [XDXCO] :: money set for public entertainment; sacred grove; forest tax (for actors L+S); + lucellum_N_N : N ; -- [XXXDX] :: small or petty gain; + luceo_V : V ; -- [XXXBO] :: ||be bright/resplendent; be visible, show up; [lucet => it is (becoming) light]; + lucerna_F_N : N ; -- [XXXDX] :: oil lamp; midnight oil; + lucesco_V : V ; -- [XXXDO] :: begin to shine; grow light (of the day), dawn; (usu. IMPERS); + lucesct_V0 : V ; -- [XXXDO] :: it grows light, it is getting light, dawn is coming/breaking, day is breaking; + lucido_V : V ; -- [FXXEM] :: elucidate; + lucidus_A : A ; -- [XXXBX] :: bright, shining; clear; + lucifer_A : A ; -- [XXXDX] :: light bringing; + lucifer_M_N : N ; -- [XXXDX] :: morning star, day star, planet Venus; bringer of light; + lucifluus_A : A ; -- [XXXFS] :: light-streaming; glorious; + lucifugus_A : A ; -- [XXXDX] :: avoiding the light of day; + lucinaria_F_N : N ; -- [FXXEN] :: lamp; + lucisco_V : V ; -- [XXXDO] :: begin to shine; grow light (of the day), dawn; (usu. IMPERS); + lucisct_V0 : V ; -- [XXXDO] :: it grows light, it is getting light, dawn is coming/breaking, day is breaking; + lucius_M_N : N ; -- [FXXEK] :: pike; + lucrativus_A : A ; -- [XXXES] :: gainful; L:bequeathed; + lucrifacio_V2 : V2 ; -- [XXXEC] :: gain, receive as profit; + lucrifio_V : V ; -- [XXXFS] :: gain; receive as profit; (passive form of lucrifacio); + lucrifuga_M_N : N ; -- [XXXFS] :: non-profiteer; one who shuns gains; + lucror_V : V ; -- [XXXDX] :: gain, win; make a profit (out of ); + lucrosus_A : A ; -- [XXXDX] :: gainful, lucrative; + lucrum_N_N : N ; -- [XXXBX] :: gain, profit; avarice; + luctamen_N_N : N ; -- [XXXDX] :: struggling, exertion; + luctator_M_N : N ; -- [XXXDX] :: wrestler; + luctificus_A : A ; -- [XXXDX] :: dire, calamitous; + luctisonus_A : A ; -- [XXXEC] :: sad-sounding; + luctor_V : V ; -- [XXXDX] :: wrestle; struggle; fight (against); + luctuosus_A : A ; -- [XXXDX] :: mournful; grievous; + luctus_M_N : N ; -- [XXXBX] :: grief, sorrow, lamentation, mourning; cause of grief; + lucubra_F_N : N ; -- [FXXEM] :: lamp; + lucubratio_F_N : N ; -- [XXXES] :: night work; work-by-nightlamp; nocturnal study; "burning the midnight oil"; + lucubro_V : V ; -- [XXXDX] :: work by lamp-light, "burn the midnight oil"; make or produce at night; + luculentus_A : A ; -- [XXXEC] :: shining, bright, brilliant, splendid; + luculenus_A : A ; -- [XXXDX] :: excellent; fine; beautiful; lucumo_F_N : N ; -- [XXXFS] :: one possessed; an Etrurian; - lucumo_M_N : N ; - lucus_M_N : N ; - lucusta_F_N : N ; - ludia_F_N : N ; - ludibriosus_A : A ; - ludibrium_N_N : N ; - ludibundus_A : A ; - ludicer_A : A ; - ludicrum_N_N : N ; - ludicrus_A : A ; - ludificatio_F_N : N ; - ludificator_M_N : N ; - ludifico_V : V ; - ludificor_V : V ; - ludimagister_M_N : N ; - ludio_M_N : N ; - ludius_M_N : N ; - ludo_V2 : V2 ; - ludus_M_N : N ; - luella_F_N : N ; - lues_F_N : N ; - lugeo_V : V ; - lugubre_N_N : N ; - lugubris_A : A ; - lumbare_N_N : N ; - lumbarium_N_N : N ; - lumbus_M_N : N ; - lumen_N_N : N ; - luminare_N_N : N ; - lumino_V2 : V2 ; - luminosus_A : A ; - luna_F_N : N ; - lunaris_A : A ; - lunatus_A : A ; - luno_V : V ; + lucumo_M_N : N ; -- [XXXFS] :: one possessed; an Etrurian; + lucus_M_N : N ; -- [XXXAX] :: grove; sacred grove; + lucusta_F_N : N ; -- [XAXCO] :: locust; crustacean, lobster(?) (w/marina/maris); + ludia_F_N : N ; -- [XXXES] :: actress; female gladiator; + ludibriosus_A : A ; -- [EXXES] :: scornful; full of mockery; + ludibrium_N_N : N ; -- [XXXDX] :: mockery; laughingstock; + ludibundus_A : A ; -- [XXXDX] :: having fun; cares free; + ludicer_A : A ; -- [XXXDX] :: connected with sport or the stage; + ludicrum_N_N : N ; -- [XXXDX] :: stage play; show; source of fun, plaything; + ludicrus_A : A ; -- [XXXDX] :: connected with sport or the stage; + ludificatio_F_N : N ; -- [XXXDX] :: mockery; + ludificator_M_N : N ; -- [BXXFS] :: mocker; one who mocks; + ludifico_V : V ; -- [XXXDX] :: make fun/sport of, treat as a plaything; trifle with; + ludificor_V : V ; -- [XXXDX] :: make fun/sport of, treat as a plaything; trifle with; + ludimagister_M_N : N ; -- [XXXFS] :: teacher; school-master; + ludio_M_N : N ; -- [XDXEO] :: dancer; stage performer; + ludius_M_N : N ; -- [XDXEO] :: dancer; stage performer; + ludo_V2 : V2 ; -- [XXXAX] :: play, mock, tease, trick; + ludus_M_N : N ; -- [XXXBX] :: game, play, sport, pastime, entertainment, fun; school, elementary school; + luella_F_N : N ; -- [XXXEC] :: expiation; + lues_F_N : N ; -- [XXXDX] :: plague, pestilence; scourge, affliction; + lugeo_V : V ; -- [XXXBO] :: mourn, grieve (over); bewail, lament; be in mourning; + lugubre_N_N : N ; -- [XXXES] :: mourning dress (as pl.); + lugubris_A : A ; -- [XXXDX] :: mourning; mournful; grievous; + lumbare_N_N : N ; -- [EXXES] :: apron/girdle for the loins; loin-cloth (Souter); + lumbarium_N_N : N ; -- [XXXFO] :: loin-cloth; + lumbus_M_N : N ; -- [XXXDX] :: loins; loins as the seat of sexual excitement; + lumen_N_N : N ; -- [XXXAX] :: light; lamp, torch; eye (of a person); life; day, daylight; + luminare_N_N : N ; -- [XXXEC] :: window-shutter, window; + lumino_V2 : V2 ; -- [XXXCO] :: illuminate, give light to; light up; reveal/throw light on; brighten (w/color); + luminosus_A : A ; -- [XXXEC] :: bright; + luna_F_N : N ; -- [XXXAX] :: moon; month; + lunaris_A : A ; -- [XXXDX] :: lunar; pertaining to the moon; + lunatus_A : A ; -- [XXXDX] :: crescent-shaped; + luno_V : V ; -- [XXXDX] :: make crescent-shaped, curve; lunter_F_N : N ; -- [BXXFS] :: boat, skiff; (archaic form of linter); - lunter_M_N : N ; - luo_V2 : V2 ; - lupa_F_N : N ; - lupanar_N_N : N ; - lupatria_F_N : N ; - lupatum_N_N : N ; - lupatus_A : A ; - lupinum_N_N : N ; - lupinus_A : A ; - lupinus_M_N : N ; - lupio_V : V ; - lupulus_M_N : N ; - lupus_M_N : N ; - lurchinabundus_A : A ; - lurcho_M_N : N ; - lurcho_V2 : V2 ; - lurchor_V : V ; - lurcinabundus_A : A ; - lurco_M_N : N ; - lurco_V2 : V2 ; - lurcor_V : V ; - luridus_A : A ; - luror_M_N : N ; - luscinia_F_N : N ; - lusciosus_A : A ; - luscitiosus_A : A ; - luscus_A : A ; - lusio_F_N : N ; - lusito_V : V ; - lusor_M_N : N ; - lusorius_A : A ; - lustralis_A : A ; - lustro_M_N : N ; - lustro_V : V ; - lustror_V : V ; - lustrum_N_N : N ; - luteolus_A : A ; - luter_M_N : N ; - lutesco_V : V ; - luteus_A : A ; - luticipulum_N_N : N ; - lutito_V2 : V2 ; - lutosus_A : A ; - lutulentus_A : A ; - lutum_N_N : N ; - lutus_M_N : N ; - lux_F_N : N ; - luxatio_F_N : N ; - luxatura_F_N : N ; - luxo_V2 : V2 ; - luxuria_F_N : N ; - luxuries_F_N : N ; - luxurio_V : V ; - luxurior_V : V ; - luxuriosus_A : A ; - luxus_M_N : N ; - lycaonice_Adv : Adv ; - lyceum_N_N : N ; - lychanos_M_N : N ; - lychnuchus_M_N : N ; - lychnus_M_N : N ; - lycopersicum_N_N : N ; - lympha_F_N : N ; - lymphans_A : A ; - lymphaticus_A : A ; - lymphatus_A : A ; - lymphatus_M_N : N ; - lympho_V2 : V2 ; - lyncurion_N_N : N ; - lyncurium_N_N : N ; - lyncurius_M_N : N ; + lunter_M_N : N ; -- [BXXFS] :: boat, skiff; (archaic form of linter); + luo_V2 : V2 ; -- [XXXBO] :: ||fulfill (promise), make good; discharge (debt); avert (trouble) by expiation; + lupa_F_N : N ; -- [XXXDX] :: she-wolf; prostitute; + lupanar_N_N : N ; -- [XXXDX] :: brothel; + lupatria_F_N : N ; -- [XXXDX] :: term of abuse for a woman; + lupatum_N_N : N ; -- [XXXDX] :: jagged toothed bit (pl.); club armed with sharp teeth; + lupatus_A : A ; -- [XXXDX] :: furnished with jagged/wolf's teeth/sharp points; + lupinum_N_N : N ; -- [XXXES] :: lupin; fake money; + lupinus_A : A ; -- [XXXDX] :: of or belonging to a wolf; made of wolf-skin; + lupinus_M_N : N ; -- [XXXES] :: lupin; fake money; + lupio_V : V ; -- [XAXFO] :: cry, utter the natural cry of the kite; + lupulus_M_N : N ; -- [GXXEK] :: hops; + lupus_M_N : N ; -- [XXXAX] :: wolf; grappling iron; + lurchinabundus_A : A ; -- [XXXFO] :: eating greedily; guzzling, gorging; devouring; + lurcho_M_N : N ; -- [XXXEO] :: glutton; gourmand; (also general form of abuse); + lurcho_V2 : V2 ; -- [XXXEO] :: eat greedily; guzzle, gorge; devour (Ecc); eat voraciously (L+S); + lurchor_V : V ; -- [XXXFO] :: eat greedily; guzzle, gorge; devour (Ecc); eat voraciously (L+S); + lurcinabundus_A : A ; -- [XXXFO] :: eating greedily; guzzling, gorging; devouring; + lurco_M_N : N ; -- [XXXEO] :: glutton; gourmand; (also general form of abuse); + lurco_V2 : V2 ; -- [XXXEO] :: eat greedily; guzzle, gorge; devour (Ecc); eat voraciously (L+S); + lurcor_V : V ; -- [XXXFO] :: eat greedily; guzzle, gorge; devour (Ecc); eat voraciously (L+S); + luridus_A : A ; -- [XXXDX] :: sallow, wan, ghastly; + luror_M_N : N ; -- [XXXEC] :: ghastliness, paleness; + luscinia_F_N : N ; -- [XXXDX] :: nightingale; + lusciosus_A : A ; -- [XXXEC] :: purblind, dim-sighted; + luscitiosus_A : A ; -- [XXXEC] :: purblind, dim-sighted; + luscus_A : A ; -- [XXXEC] :: one-eyed; + lusio_F_N : N ; -- [XXXES] :: play; act of playing; + lusito_V : V ; -- [XXXEO] :: amuse oneself; play (often); play sport (Erasmus); + lusor_M_N : N ; -- [XXXDX] :: player; tease; one who treats (of a subject) lightly; + lusorius_A : A ; -- [GXXEK] :: of playing; + lustralis_A : A ; -- [XXXDX] :: relating to purification; serving to avert evil; [fons ~ => holy water font]; + lustro_M_N : N ; -- [XXXFO] :: frequenter of brothels and similar haunts; + lustro_V : V ; -- [XXXBO] :: review/inspect, look around, seek; illuminate; traverse/roam/move over/through; + lustror_V : V ; -- [XXXEO] :: haunt/frequent brothels; + lustrum_N_N : N ; -- [XXXBO] :: purifying/cleansing ceremony; (by censors every 5 years); period of 5/4 years; + luteolus_A : A ; -- [XXXDX] :: yellow; + luter_M_N : N ; -- [EXXES] :: hand basin; washing/bath tub; laver/brazen vessel for ablutions of priests; + lutesco_V : V ; -- [XXXFS] :: become muddy; + luteus_A : A ; -- [XXXDX] :: yellow; saffron; of mud or clay; good for nothing; + luticipulum_N_N : N ; -- [GXXEK] :: mudguard; + lutito_V2 : V2 ; -- [XXXFS] :: bedaub; bring into contempt; + lutosus_A : A ; -- [XXXES] :: muddy; + lutulentus_A : A ; -- [XXXDX] :: muddy; turbid; dirty; morally polluted; + lutum_N_N : N ; -- [XXXEO] :: weld/plant giving yellow dye (Reseda Luteola); the dye; yellow color; (long u); + lutus_M_N : N ; -- [XXXCO] :: mud, dirt, clay; (for modelling/building); [pro ~ => common as dirt]; + lux_F_N : N ; -- [XXXAX] :: light, daylight, light of day; life; world; day; [prima luce => at daybreak]; + luxatio_F_N : N ; -- [DBXFS] :: dislocation; + luxatura_F_N : N ; -- [DBXFS] :: dislocation; + luxo_V2 : V2 ; -- [XBXCO] :: sprain (limb), dislocate; displace, force out of position; put out of joint; + luxuria_F_N : N ; -- [XXXBX] :: luxury; extravagance; thriving condition; + luxuries_F_N : N ; -- [XXXDX] :: luxury, extravagance, thriving condition; + luxurio_V : V ; -- [XXXBO] :: grow luxuriantly/rank; luxuriate; frisk/gambol; revel/run riot; indulge oneself; + luxurior_V : V ; -- [XXXDO] :: grow luxuriantly/rank; luxuriate; frisk/gambol; revel/run riot; indulge oneself; + luxuriosus_A : A ; -- [XXXDX] :: luxuriant, exuberant; immoderate; wanton, luxurious, self-indulgent; + luxus_M_N : N ; -- [XXXDX] :: luxury, soft living; sumptuousness; + lycaonice_Adv : Adv ; -- [XXQFS] :: in the dialect of Lycaonia (district in southern Asia Minor), in Lycaonian; + lyceum_N_N : N ; -- [XGHEO] :: gymnasium of Aristotle; Cicero's Tusculan gymnasium; high school (Ecc); college; + lychanos_M_N : N ; -- [XDHFO] :: second highest tetrachord note; (lychanos/lichanos); + lychnuchus_M_N : N ; -- [XXXCO] :: lamp-holder; lamp stand; + lychnus_M_N : N ; -- [XXXCO] :: lamp (esp. one hung from the ceiling); + lycopersicum_N_N : N ; -- [GXXEK] :: tomato; + lympha_F_N : N ; -- [XXXBX] :: water; water-nymph; + lymphans_A : A ; -- [XXXDX] :: frenzied, frantic; distracted; deranged, crazy; + lymphaticus_A : A ; -- [XXXDX] :: frenzied; + lymphatus_A : A ; -- [XXXDX] :: frenzied, frantic; distracted; deranged, crazy; + lymphatus_M_N : N ; -- [XXXNO] :: frenzy, madness; + lympho_V2 : V2 ; -- [XXXCO] :: derange, drive crazy; (PASS) be in state of frenzy; + lyncurion_N_N : N ; -- [XXXES] :: ligure/precious gem; hard transparent gem, tourmaline? (L+S); amber (OLD); + lyncurium_N_N : N ; -- [XXXNO] :: ligure/precious gem; hard transparent gem, tourmaline? (L+S); amber (OLD); + lyncurius_M_N : N ; -- [XXXFS] :: ligure/precious gem; hard transparent gem, tourmaline? (L+S); amber (OLD); 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 ; - lytrum_N_N : N ; - macaronicus_A : A ; - maccarono_M_N : N ; - maccis_F_N : N ; - maccus_M_N : N ; - macea_F_N : N ; - macellum_N_N : N ; - macer_A : A ; - maceria_F_N : N ; - maceries_F_N : N ; - macero_V : V ; - macesco_V : V ; - machaera_F_N : N ; - machina_F_N : N ; - machinalis_A : A ; - machinamentum_N_N : N ; - machinarius_M_N : N ; - machinatio_F_N : N ; - machinator_M_N : N ; - machinor_V : V ; - macia_F_N : N ; - macies_F_N : N ; - macilentus_A : A ; - macium_N_N : N ; - macresco_V : V ; - macrobioticus_A : A ; - macrocollum_N_N : N ; - macrocosmicus_A : A ; - macrocosmus_M_N : N ; - macrologus_M_N : N ; - macronosia_F_N : N ; - macronozia_F_N : N ; - macroscopium_N_N : N ; - mactator_M_N : N ; - macte_A : A ; - macti_A : A ; - macto_V : V ; - mactus_A : A ; - macula_F_N : N ; - maculo_V : V ; - maculosus_A : A ; - madefacio_V2 : V2 ; - madefactus_A : A ; - madefio_V : V ; - madeo_V : V ; - madesco_V2 : V2 ; - madide_Adv : Adv ; - madidus_A : A ; - maeander_M_N : N ; - maeleth_N : N ; - maena_F_N : N ; - maenianum_N_N : N ; - maerens_A : A ; - maereo_V : V ; - maeror_M_N : N ; - maeste_Adv : Adv ; - maestifico_V2 : V2 ; - maestificus_A : A ; - maestiter_Adv : Adv ; - maestitia_F_N : N ; - maestitudo_F_N : N ; - maesto_V2 : V2 ; - maestus_A : A ; - maevia_F_N : N ; - maevius_M_N : N ; - magia_F_N : N ; - magicus_A : A ; - magis_Adv : Adv ; - magister_M_N : N ; - magisterium_N_N : N ; - magisterius_A : A ; - magistra_F_N : N ; - magistratus_M_N : N ; - magma_N_N : N ; - magnale_N_N : N ; - magnanemitas_F_N : N ; - magnanimitas_F_N : N ; - magnanimus_A : A ; - magnas_M_N : N ; - magnatus_M_N : N ; - magnes_A : A ; - magnes_M_N : N ; - magnesium_N_N : N ; - magneticus_A : A ; - magnetismus_M_N : N ; - magnetizabilis_A : A ; - magnetizo_V : V ; - magnetophonum_N_N : N ; - magnetoscopium_N_N : N ; - magnificabiliter_Adv : Adv ; - magnifice_Adv : Adv ; - magnificenter_Adv : Adv ; - magnificentia_F_N : N ; - magnifico_V2 : V2 ; - magnificus_A : A ; - magniloquentia_F_N : N ; - magniloquus_A : A ; - magnitudo_F_N : N ; - magnopere_Adv : Adv ; - magnufice_Adv : Adv ; - magnuficenter_Adv : Adv ; - magnuficentia_F_N : N ; - magnufico_V2 : V2 ; - magnuficus_A : A ; - magnus_A : A ; - magonicum_N_N : N ; - magus_A : A ; - magus_M_N : N ; - maharaia_M_N : N ; - maheleth_N : N ; - mahemium_N_N : N ; - maizium_N_N : N ; - majalis_M_N : N ; - majestas_F_N : N ; - majestativus_A : A ; - majestuosus_A : A ; - major_M_N : N ; - majoritas_F_N : N ; - majuscula_F_N : N ; - majuscule_Adv : Adv ; - majusculus_A : A ; - mala_F_N : N ; - malachita_F_N : N ; - malachiteus_A : A ; - malacia_F_N : N ; - malacus_A : A ; - malagma_F_N : N ; - malagma_N_N : N ; - malagranata_F_N : N ; - malagranatum_N_N : N ; - malaria_F_N : N ; - male_Adv : Adv ; - maledicax_A : A ; - maledice_Adv : Adv ; - maledicens_A : A ; - maledico_V2 : V2 ; - maledictio_F_N : N ; - maledictum_N_N : N ; - maledicus_A : A ; - malefacio_V : V ; - malefactor_M_N : N ; - malefica_F_N : N ; - malefice_Adv : Adv ; - maleficentia_F_N : N ; - maleficio_V : V ; - maleficium_N_N : N ; - maleficus_A : A ; - maleficus_M_N : N ; - malefidus_A : A ; - malefio_V : V ; - maleloquentia_F_N : N ; - malesuadus_A : A ; - malevola_F_N : N ; - malevole_Adv : Adv ; - malevolens_A : A ; - malevolentia_F_N : N ; - malevolus_A : A ; - malevolus_M_N : N ; - malicorium_N_N : N ; - malifer_A : A ; - malificus_A : A ; - malignans_A : A ; - malignans_M_N : N ; - malignitas_F_N : N ; - maligno_V2 : V2 ; - malignor_V : V ; - malignus_A : A ; - maliloquium_N_N : N ; - malitia_F_N : N ; - malitiose_Adv : Adv ; - malitiosus_A : A ; - malivola_F_N : N ; - malivole_Adv : Adv ; - malivolens_A : A ; - malivolentia_F_N : N ; - malivolus_A : A ; - malivolus_M_N : N ; - malleator_M_N : N ; - malleatus_A : A ; - malleolus_M_N : N ; - malleus_M_N : N ; - malluvia_F_N : N ; - malluvium_N_N : N ; - malo_V : V ; - malobathrum_N_N : N ; - malogranata_F_N : N ; - malogranatum_N_N : N ; - maltum_N_N : N ; - malum_N_N : N ; - malus_A : A ; - malus_F_N : N ; - malus_M_N : N ; - malva_F_N : N ; - malvaceus_A : A ; - mamilla_F_N : N ; - mamma_F_N : N ; - mammale_N_N : N ; + lynx_M_N : N ; -- [XAXCO] :: lynx; lynx skin/pelt; fictitious tree (invented to explain lyncurium/ligure); + lyra_F_N : N ; -- [XXXAX] :: lyre; lyric poetry/inspiration/genius; Lyra/the Lyre (constellation); lute/harp; + lyricus_A : A ; -- [XXXDX] :: lyric; + lytrum_N_N : N ; -- [XXXDX] :: ransom (pl.); + macaronicus_A : A ; -- [GXXFK] :: of macaroni; + maccarono_M_N : N ; -- [GXXFK] :: macaroni; + maccis_F_N : N ; -- [GXXEK] :: mace/macis; nutmeg spice; imaginary spice (OLD); + maccus_M_N : N ; -- [XXXFO] :: fool; clown in the Atellan farces; + macea_F_N : N ; -- [FWXEM] :: mace; club; + macellum_N_N : N ; -- [XXXDX] :: provision-market; + macer_A : A ; -- [XXXDX] :: thin (men, animals, plants), scraggy, lean, small, meager; thin (soil), poor; + maceria_F_N : N ; -- [XXXCO] :: wall (of brick/stone); (esp. one enclosing a garden); + maceries_F_N : N ; -- [XXXCO] :: wall (of brick/stone); (esp. one enclosing a garden); + macero_V : V ; -- [XXXDX] :: make wet/soft, soak/steep/bathe; soften; wear down, exhaust; worry, annoy/vex; + macesco_V : V ; -- [XXXDO] :: become thin, grow lean, become meager/poor; wither/shrivel (of fruit); + machaera_F_N : N ; -- [XWXCO] :: single-edged sword; Persian or Arab sword (late); weapon; + machina_F_N : N ; -- [XXXBX] :: machine; siege engine; scheme; + machinalis_A : A ; -- [GXXEK] :: machine-like; + machinamentum_N_N : N ; -- [XXXDX] :: siege-engine; + machinarius_M_N : N ; -- [GXXEK] :: driver; + machinatio_F_N : N ; -- [XXXDX] :: machine; engine (of war), mechanism, contrivance, artifice; trick, device; + machinator_M_N : N ; -- [XXXDX] :: engineer, one who devises/constructs machines; contriver of plots/events; + machinor_V : V ; -- [XXXDX] :: devise; plot; + macia_F_N : N ; -- [FWXEM] :: mace; club; + macies_F_N : N ; -- [XXXDX] :: leanness, meagerness; poverty; + macilentus_A : A ; -- [XXXEO] :: thin, lean; meager (L+S); + macium_N_N : N ; -- [FWXFM] :: mace; club; + macresco_V : V ; -- [XXXDX] :: become thin, waste away; + macrobioticus_A : A ; -- [GBXEK] :: macrobiotic; + macrocollum_N_N : N ; -- [XXXEC] :: paper of the largest size; + macrocosmicus_A : A ; -- [GSXEK] :: macrocosmic; + macrocosmus_M_N : N ; -- [FSXEM] :: macrocosm; external universe; + macrologus_M_N : N ; -- [FGXEM] :: great speaker; + macronosia_F_N : N ; -- [FBXEM] :: prolonged illness; + macronozia_F_N : N ; -- [FBXEM] :: prolonged illness; + macroscopium_N_N : N ; -- [GXXEK] :: gnarl; + mactator_M_N : N ; -- [XXXFO] :: slaughterer, one who slaughters/kills; + macte_A : A ; -- [XXXDX] :: well done! good! bravo! (VOC of mactus, N implied) (macte S, macti P); + macti_A : A ; -- [XXXDX] :: well done! good! bravo! (VOC of mactus, N implied) (macte S, macti P); + macto_V : V ; -- [XXXDX] :: magnify, honor; sacrifice; slaughter, destroy; + mactus_A : A ; -- [XXXDX] :: of the Gods, worshiped, honored; + macula_F_N : N ; -- [XXXDX] :: spot, stain, blemish; dishonor; mesh in a net; + maculo_V : V ; -- [XXXDX] :: spot; pollute; dishonor, taint; + maculosus_A : A ; -- [XXXDX] :: spotted; disreputable; + madefacio_V2 : V2 ; -- [XXXCO] :: wet/moisten, make wet/moist/drunk; soak/drench/steep; intoxicate/soak (w/drink); + madefactus_A : A ; -- [XXXDX] :: wet, soaked, stained; + madefio_V : V ; -- [XXXCO] :: be moistened, be made wet; be soaked/drenched/steeped/drunk; (madefaci PASS); + madeo_V : V ; -- [XXXDX] :: be wet (w/tears/perspiration), be dripping/sodden; + madesco_V2 : V2 ; -- [XXXDX] :: become wet/moist; + madide_Adv : Adv ; -- [XXXDX] :: so as to be dripping/sodden/drenched/thoroughly wet; drunkenly; + madidus_A : A ; -- [XXXDX] :: wet, moist; dripping, juicy; sodden, drenched; drunk, tipsy; steeped in; + maeander_M_N : N ; -- [XXXCO] :: wavy line; river famous for winding path; roundabout ways/twists/turnings (pl.); + maeleth_N : N ; -- [EDQFE] :: harp, lute (Hebrew); + maena_F_N : N ; -- [XAXEC] :: small sea-fish; + maenianum_N_N : N ; -- [FXXEK] :: balcony; + maerens_A : A ; -- [XXXCO] :: sad, melancholy; mournful, gloomy woeful, doleful; mourning, lamenting (L+S); + maereo_V : V ; -- [XXXBO] :: grieve, be sad, mourn; bewail/mourn for/lament; utter mournfully; + maeror_M_N : N ; -- [XXXCO] :: grief, sorrow, sadness; mourning; lamentation (L+S); + maeste_Adv : Adv ; -- [XXXFO] :: sadly; mournfully; sorrowfully (Latham); with sadness (L+S); + maestifico_V2 : V2 ; -- [DXXES] :: grieve, make sad/sorrowful, sadden; + maestificus_A : A ; -- [EEXFS] :: saddening; + maestiter_Adv : Adv ; -- [XXXFO] :: sadly; mournfully; sorrowfully (Latham); in a way to indicate sorrow (L+S); + maestitia_F_N : N ; -- [XXXCO] :: sadness, sorrow, grief; source of grief; dullness, gloom; + maestitudo_F_N : N ; -- [XXXEO] :: sadness, sorrow, grief; source of grief; dullness, gloom; + maesto_V2 : V2 ; -- [XXXEO] :: grieve, make sad; afflict (L+S); + maestus_A : A ; -- [XXXAO] :: sad/unhappy; mournful/gloomy; mourning; stern/grim; ill-omened/inauspicious; + maevia_F_N : N ; -- [DLXES] :: anywoman (legal); Maevia, Roman proper name; + maevius_M_N : N ; -- [DLXES] :: anyman (legal); Maevius, Roman proper name; (wretched poet Virgil contemporary); + magia_F_N : N ; -- [XXXEO] :: magic; sorcery; + magicus_A : A ; -- [XXXAX] :: magic, magical; + magis_Adv : Adv ; -- [XXXDX] :: to greater extent, more nearly; rather, instead; more; (forms COMP w/DJ); + magister_M_N : N ; -- [XGXAX] :: teacher, tutor, master, expert, chief; pilot of a ship; rabbi; + magisterium_N_N : N ; -- [GXXEK] :: master (academic title); + magisterius_A : A ; -- [DLXFS] :: magisterial; official; + magistra_F_N : N ; -- [XXXDX] :: instructress; + magistratus_M_N : N ; -- [XXXBX] :: magistracy, civil office; office; magistrate, functionary; + magma_N_N : N ; -- [XXXFS] :: unguent dregs (Pliny); + magnale_N_N : N ; -- [DEXCS] :: great things (pl.); mighty works/deeds/words; + magnanemitas_F_N : N ; -- [XXXDO] :: magnanimity; generosity; highmindedness, loftiness of spirit; + magnanimitas_F_N : N ; -- [EXXFO] :: magnanimity; generosity; highmindedness, loftiness of spirit; + magnanimus_A : A ; -- [XXXCO] :: brave, bold, noble in spirit (esp. kings/heroes); generous; + magnas_M_N : N ; -- [DXXCS] :: great man; important person; magnate; vassal (Z); tenant-in-chief; baron; + magnatus_M_N : N ; -- [DXXCS] :: great man; important person; magnate; vassal (Z); tenant-in-chief; baron; + magnes_A : A ; -- [XSXCO] :: magnetic; of a magnet/lodestone; of Magnesia; [~ lapis => magnet, lodestone]; + magnes_M_N : N ; -- [XSXCO] :: magnet, lodestone; inhabitants of Magnesia (pl.); + magnesium_N_N : N ; -- [GSXEK] :: magnesium; + magneticus_A : A ; -- [DSXCS] :: magnetic; + magnetismus_M_N : N ; -- [GSXEK] :: magnetism; + magnetizabilis_A : A ; -- [GSXEK] :: magnetizable; + magnetizo_V : V ; -- [GSXEK] :: magnetize; + magnetophonum_N_N : N ; -- [GTXEK] :: tape recorder; + magnetoscopium_N_N : N ; -- [GTXEK] :: video recorder; + magnificabiliter_Adv : Adv ; -- [FXXEN] :: splendidly, greatly, terrifically; + magnifice_Adv : Adv ; -- [XXXCO] :: splendidly, in fine/lordly manner/language; superbly; proudly/boastfully; + magnificenter_Adv : Adv ; -- [XXXFO] :: splendidly, in fine/lordly manner/language; superbly; proudly/boastfully; + magnificentia_F_N : N ; -- [XXXBO] :: greatness; loftiness, nobleness; generosity; grandeur, splendor, luxury; pride; + magnifico_V2 : V2 ; -- [XXXDO] :: prize, esteem greatly; praise, extol; + magnificus_A : A ; -- [XXXBO] :: splendid/excellent/sumptuous/magnificent/stately; noble/eminent; proud/boastful; + magniloquentia_F_N : N ; -- [XXXDX] :: exalted diction; braggadocio; + magniloquus_A : A ; -- [XXXDX] :: boastful; + magnitudo_F_N : N ; -- [XXXAX] :: size, magnitude, bulk; greatness. importance, intensity; + magnopere_Adv : Adv ; -- [XXXBO] :: greatly, exceedingly; with great effort; very much; particularly, especially; + magnufice_Adv : Adv ; -- [XXXCO] :: splendidly, in fine/lordly manner/language; superbly; proudly/boastfully; + magnuficenter_Adv : Adv ; -- [XXXFO] :: splendidly, in fine/lordly manner/language; superbly; proudly/boastfully; + magnuficentia_F_N : N ; -- [XXXBO] :: greatness; loftiness, nobleness; generosity; grandeur, splendor, luxury; pride; + magnufico_V2 : V2 ; -- [XXXDO] :: prize, esteem greatly; praise, extol; + magnuficus_A : A ; -- [XXXBO] :: splendid/excellent/sumptuous/magnificent/stately; noble/eminent; proud/boastful; + magnus_A : A ; -- [XXXAO] :: ||full/complete/utter/pure; intense; loud; at high price; notable/famous; old; + magonicum_N_N : N ; -- [GXXEK] :: mayonnaise; + magus_A : A ; -- [XXXDX] :: magic, magical; + magus_M_N : N ; -- [XXXDX] :: wise/learned man; magician (Persian); astrologer; + maharaia_M_N : N ; -- [GXXEK] :: maharaja; + maheleth_N : N ; -- [EDQFE] :: harp, lute (Hebrew); + mahemium_N_N : N ; -- [FLXFJ] :: mayhem; + maizium_N_N : N ; -- [GAXEK] :: maize; + majalis_M_N : N ; -- [XAXDO] :: gelded/castrated hog/boar; barrow pig/hog; swine; (term of abuse); + majestas_F_N : N ; -- [XXXAO] :: |grandeur, greatness; dignity/majesty (of language); [crimen ~ => high treason]; + majestativus_A : A ; -- [GXXEK] :: majestic; + majestuosus_A : A ; -- [GXXEK] :: majestic; + major_M_N : N ; -- [GXXEK] :: mayor; + majoritas_F_N : N ; -- [FXXEM] :: majority (the biggest number); greater size/rank; + majuscula_F_N : N ; -- [GGXEK] :: capital letter; + majuscule_Adv : Adv ; -- [GGXEK] :: capitalized; with capital letter; + majusculus_A : A ; -- [XXXEC] :: somewhat greater; little older; + mala_F_N : N ; -- [XXXDX] :: cheeks, jaws; + malachita_F_N : N ; -- [GXXEK] :: malachite; + malachiteus_A : A ; -- [GXXEK] :: malachite-colored; + malacia_F_N : N ; -- [XXXDX] :: calm; dead calm; + malacus_A : A ; -- [XXXEC] :: soft, pliable; effeminate, delicate; + malagma_F_N : N ; -- [XXXCO] :: emollient; poultice; mixture (of unguents) (Souter); + malagma_N_N : N ; -- [XXXCO] :: emollient; poultice; mixture (of unguents) (Souter); + malagranata_F_N : N ; -- [EAXES] :: pomegranate; (Vulgate spelling 2 Chron 3:16/4:13); + malagranatum_N_N : N ; -- [EAXCS] :: pomegranate; (Vulgate spelling 2 Chron 3:16/4:13); + malaria_F_N : N ; -- [GXXEK] :: malaria; + male_Adv : Adv ; -- [XXXDX] :: badly, ill, wrongly, wickedly, unfortunately; extremely; + maledicax_A : A ; -- [XXXFO] :: slanderous; abusive; scurrilous; + maledice_Adv : Adv ; -- [XXXEO] :: slanderously; abusively; scurrilously; + maledicens_A : A ; -- [XXXCO] :: slanderous; abusive; scurrilous; + maledico_V2 : V2 ; -- [XXXDX] :: speak ill/evil of, revile, slander; abuse, curse; + maledictio_F_N : N ; -- [XXXDO] :: slander/abuse; evil speaking, reviling; curse/punishment/condemnation (Souter); + maledictum_N_N : N ; -- [XXXCO] :: insult, reproach, taunt; + maledicus_A : A ; -- [XXXCO] :: slanderous; abusive; scurrilous; evil-speaking; (of persons/remarks); + malefacio_V : V ; -- [XXXCO] :: do evil/wrong/harm/injury/mischief; act wickedly; + malefactor_M_N : N ; -- [EXXEX] :: malefactor; wrongdoer, evildoer; + malefica_F_N : N ; -- [XXXFO] :: witch; sorceress; + malefice_Adv : Adv ; -- [XXXFO] :: wickedly; viciously; mischievously (L+S); maliciously (Ecc); + maleficentia_F_N : N ; -- [XXXNO] :: wickedness; viciousness; evil/evil-doing (L+S); ill conduct; injury, harm; + maleficio_V : V ; -- [XXXFO] :: practice sorcery/black magic; + maleficium_N_N : N ; -- [XXXCO] :: crime/misdeed/offense; injury/hurt/wrong; fraud/deception (L+S); sorcery; pest; + maleficus_A : A ; -- [XXXCO] :: wicked, criminal, nefarious, evil; harmful, noxious, injurious; of black magic; + maleficus_M_N : N ; -- [XXXCO] :: criminal, wrongdoer; magician, enchanter, sorcerer (L+S); + malefidus_A : A ; -- [FXXEM] :: faithless; + malefio_V : V ; -- [DXXES] :: be injured; (malefacio PASS); + maleloquentia_F_N : N ; -- [GXXEK] :: slander; + malesuadus_A : A ; -- [XXXDX] :: ill-advising; + malevola_F_N : N ; -- [XXXFO] :: female enemy/foe/ill-wisher; + malevole_Adv : Adv ; -- [XXXFS] :: malevolently; + malevolens_A : A ; -- [XXXCO] :: spiteful, malevolent; ill-disposed; disaffected (L+S); envious; malicious (Ecc); + malevolentia_F_N : N ; -- [XXXCO] :: ill-will/spite/malice; malevolence; dislike/hatred/envy (L+S); evil disposition; + malevolus_A : A ; -- [XXXCO] :: spiteful, malevolent; ill-disposed; disaffected (L+S); envious; + malevolus_M_N : N ; -- [XXXFS] :: enemy/foe/ill-wisher; ill-disposed person; + malicorium_N_N : N ; -- [XAXEO] :: pomegranate rind; (used in medicine); + malifer_A : A ; -- [XXXDX] :: apple-bearing; + malificus_A : A ; -- [XXXCO] :: wicked, criminal, nefarious, evil; harmful, noxious, injurious; of black magic; + malignans_A : A ; -- [EXXCS] :: wicked; malicious; + malignans_M_N : N ; -- [EXXDS] :: wicked/bad/malicious person; the wicked (pl.); + malignitas_F_N : N ; -- [XXXDX] :: ill-will, spite, malice; niggardliness; + maligno_V2 : V2 ; -- [EXXCS] :: malign; act/do/contrive maliciously; act badly/wickedly (Ecc); + malignor_V : V ; -- [EXXCS] :: malign; act/do/contrive maliciously; act badly/wickedly (Ecc); + malignus_A : A ; -- [XXXBX] :: spiteful; niggardly; narrow; + maliloquium_N_N : N ; -- [XEXFS] :: evil-speaking; slander; + malitia_F_N : N ; -- [XXXBX] :: ill will, malice; wickedness; vice, fault; + malitiose_Adv : Adv ; -- [XXXEC] :: wickedly, craftily, roguishly, knavishly; + malitiosus_A : A ; -- [XXXEC] :: wicked; crafty, roguish, knavish; + malivola_F_N : N ; -- [XXXFO] :: female enemy/foe/ill-wisher; + malivole_Adv : Adv ; -- [XXXFS] :: malevolently; + malivolens_A : A ; -- [XXXCO] :: spiteful, malevolent; ill-disposed; disaffected (L+S); envious; + malivolentia_F_N : N ; -- [XXXCO] :: ill-will/spite/malice; malevolence; dislike/hatred/envy (L+S); evil disposition; + malivolus_A : A ; -- [XXXCO] :: spiteful, malevolent; ill-disposed; disaffected (L+S); envious; + malivolus_M_N : N ; -- [XXXFS] :: enemy/foe/ill-wisher; ill-disposed person; + malleator_M_N : N ; -- [XXXEO] :: hammerer, beater, he who pounds/hammers/beats; + malleatus_A : A ; -- [XXXEO] :: hammered, beaten; + malleolus_M_N : N ; -- [XXXDX] :: fire-dart; brush for burning (Vulgate Prayer of Azariah 1:23); + malleus_M_N : N ; -- [XXXCO] :: hammer; mallet, maul; (also medical for the inner ear bone); + malluvia_F_N : N ; -- [XXXEO] :: water in which the hands have been washed (pl.); water for washing hands (L+S); + malluvium_N_N : N ; -- [XXXFO] :: dish for washing (hands); wash-basin; + malo_V : V ; -- [XXXAX] :: prefer; incline toward, wish rather; + malobathrum_N_N : N ; -- [XXXEC] :: plant, from which ointment was prepared; + malogranata_F_N : N ; -- [EAXES] :: pomegranate; + malogranatum_N_N : N ; -- [EAXCS] :: pomegranate; + maltum_N_N : N ; -- [GXXEK] :: malt; + malum_N_N : N ; -- [XXXDX] :: evil, mischief; disaster, misfortune, calamity, plague; punishment; harm/hurt; + malus_A : A ; -- [XXXAX] :: bad, evil, wicked; ugly; unlucky; + malus_F_N : N ; -- [XXXDX] :: apple tree; + malus_M_N : N ; -- [XXXDX] :: mast; beam; tall pole, upright pole; standard, prop, staff; + malva_F_N : N ; -- [XXXDX] :: mallow-plant; + malvaceus_A : A ; -- [GXXEK] :: mauve-colored; + mamilla_F_N : N ; -- [XXXEC] :: breast, teat; + mamma_F_N : N ; -- [XXXDX] :: breast, udder; + mammale_N_N : N ; -- [GXXEK] :: mammal; 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 ; + mammon_2_N : N ; -- [EEXFE] :: riches, wealth; (gain of wickedness, quasi-personification of covetousness OED); + mammona_M_N : N ; -- [EEXEP] :: riches, wealth; (gain of wickedness, quasi-personification of covetousness OED); + mammonas_M_N : N ; -- [EEXEP] :: riches, wealth; (gain of wickedness, quasi-personification of covetousness OED); + mamona_M_N : N ; -- [EEXEP] :: riches, wealth; (gain of wickedness, quasi-personification of covetousness OED); + mamonas_M_N : N ; -- [EEXEP] :: riches, wealth; (gain of wickedness, quasi-personification of covetousness OED); + mamzer_A : A ; -- [EEXFS] :: bastard, illegitimate; mamzer_F_N : N ; -- [EEXFS] :: bastard, one of illegitimate birth; whoreson (Souter); (Hebrew); - mamzer_M_N : N ; - man_N : N ; - manceps_M_N : N ; - mancipium_N_N : N ; - mancipo_V : V ; - mancupium_N_N : N ; - mancus_A : A ; - mancussus_A : A ; - mancusus_A : A ; - mandarinum_N_N : N ; - mandatum_N_N : N ; - 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 ; - manduco_M_N : N ; - manduco_V2 : V2 ; - manducor_V : V ; - mane_Adv : Adv ; - mane_N : N ; - manentia_F_N : N ; - maneo_V : V ; - manerium_N_N : N ; - manga_F_N : N ; - manganum_N_N : N ; - mangifera_F_N : N ; - mango_M_N : N ; - manhu_N : N ; - mania_F_N : N ; - maniacus_A : A ; - manibia_F_N : N ; - manica_F_N : N ; - manicatus_A : A ; - manico_V : V ; - manicula_F_N : N ; - manicura_F_N : N ; - manifestarius_A : A ; - manifestatio_F_N : N ; - manifestative_Adv : Adv ; - manifestativus_A : A ; - manifesto_Adv : Adv ; - manifesto_V2 : V2 ; - manifestus_A : A ; - manioca_F_N : N ; - maniplus_M_N : N ; - manipretium_N_N : N ; - manipularis_A : A ; - manipularis_M_N : N ; - manipulatim_Adv : Adv ; - manipulus_M_N : N ; - manis_M_N : N ; - manna_F_N : N ; - manna_N : N ; - mannulus_M_N : N ; - mannus_M_N : N ; - mano_V : V ; - manometrum_N_N : N ; - mansio_F_N : N ; - mansionariatus_M_N : N ; - mansionarius_M_N : N ; - mansito_V : V ; - mansiuncula_F_N : N ; - mansuefacio_V2 : V2 ; - mansuefio_V : V ; - mansues_A : A ; - mansuesco_V2 : V2 ; - mansueto_V2 : V2 ; - mansuetudo_F_N : N ; - mansuetus_A : A ; - mantele_N_N : N ; - mantelium_N_N : N ; - mantelletum_N_N : N ; - mantellum_N_N : N ; - mantelum_N_N : N ; - mantica_F_N : N ; - mantile_N_N : N ; - mantilium_N_N : N ; - mantum_N_N : N ; - manualis_A : A ; - manubia_F_N : N ; - manubrium_N_N : N ; - manucapio_V2 : V2 ; - manufactus_A : A ; - manufestarius_A : A ; - manufesto_Adv : Adv ; - manufesto_V2 : V2 ; - manufestus_A : A ; - manufollium_N_N : N ; - manulearius_M_N : N ; - manuleatus_A : A ; - manuleus_M_N : N ; - manumissio_F_N : N ; - manumitto_V2 : V2 ; - manuplus_M_N : N ; - manupretium_N_N : N ; - manus_F_N : N ; - manuscriptum_N_N : N ; - manuscriptus_A : A ; - manutergium_N_N : N ; - manzer_A : A ; + mamzer_M_N : N ; -- [EEXFS] :: bastard, one of illegitimate birth; whoreson (Souter); (Hebrew); + man_N : N ; -- [EXQEW] :: manna; (food from God in Siani); [man/man hu => (Hebrew) what/what is this]; + manceps_M_N : N ; -- [XXXDX] :: contractor, agent; + mancipium_N_N : N ; -- [XXXDX] :: possession; formal purchase; slaves; + mancipo_V : V ; -- [XXXDX] :: transfer, sell; surrender; + mancupium_N_N : N ; -- [XLXES] :: formal acceptance; possession; formal purchase; (mancipium); + mancus_A : A ; -- [XXXDX] :: maimed, crippled; powerless; + mancussus_A : A ; -- [FXXFY] :: engraved, struck; [solidus mancusus => type of gold coin]; + mancusus_A : A ; -- [FXXFY] :: engraved, struck; [solidus mancusus => type of gold coin]; + mandarinum_N_N : N ; -- [GAXEK] :: tangerine; + mandatum_N_N : N ; -- [XXXDX] :: order, command, commission; mandate; commandment; + mandibula_F_N : N ; -- [DBXES] :: jaw; (not exactly jawbone = maxilla); + mandibulum_N_N : N ; -- [DBXES] :: jaw; (not exactly jawbone = maxilla); + mando_V : V ; -- [XXXAX] :: entrust, commit to one's charge, deliver over; commission; order, command; + mando_V2 : V2 ; -- [XXXDX] :: chew, champ, masticate, gnaw; eat, devour; lay waste; + mandorla_F_N : N ; -- [EEXEE] :: nimbus framing figure; (recent) lenticular/almond-shaped panel (art); + mandra_F_N : N ; -- [XXXEC] :: stall, cattle pen; a herd of cattle; a draughtboard; + mandragoras_M_N : N ; -- [XAXDO] :: mandrake; (plant used in medicine as soporific/sleep inducing); + manduco_M_N : N ; -- [XXXEO] :: glutton; gourmand; big eater; + manduco_V2 : V2 ; -- [XXXBO] :: chew, masticate, gnaw; eat, devour; + manducor_V : V ; -- [XXXCO] :: chew, masticate, gnaw; eat, devour; + mane_Adv : Adv ; -- [XXXAX] :: in the morning; early in the morning; + mane_N : N ; -- [XXXDX] :: morning, morn; [multo mane => very early in the morning]; + manentia_F_N : N ; -- [EEXFS] :: permanence; permanency; + maneo_V : V ; -- [XXXAX] :: remain, stay, abide; wait for; continue, endure, last; spend the night (sexual); + manerium_N_N : N ; -- [FXXEM] :: manor; manor-house; [~ dominium => demesne manor]; + manga_F_N : N ; -- [GAXEK] :: mango; + manganum_N_N : N ; -- [GSXEK] :: manganese; W: mangonel/mangonneau (stone-casting machine of war); + mangifera_F_N : N ; -- [GAXEK] :: mango tree; + mango_M_N : N ; -- [XXXEZ] :: dealer (Collins); + manhu_N : N ; -- [EAQFS] :: manna; (food from God for wandering Hebrews); [man hu => (Hebrew) what is this]; + mania_F_N : N ; -- [GXXEK] :: mania; craze; + maniacus_A : A ; -- [GXXEK] :: maniac; + manibia_F_N : N ; -- [BWXFX] :: general's share of the booty; prize-money; profits; (archaic form of manubia); + manica_F_N : N ; -- [XXXDX] :: sleeves (pl.), long sleeves; gloves, gauntlets; armlets; handcuffs, manacles; + manicatus_A : A ; -- [XXXEC] :: having long sleeves; + manico_V : V ; -- [EXXFS] :: come in the morning; rise/set out in the morning (Souter); + manicula_F_N : N ; -- [XXXEC] :: little hand; + manicura_F_N : N ; -- [GXXEK] :: manicurist; + manifestarius_A : A ; -- [XXXES] :: |plain; clear; evident; + manifestatio_F_N : N ; -- [FXXDF] :: manifestation; manifesting; demonstration, revelation, display; + manifestative_Adv : Adv ; -- [FXXFF] :: demonstratively, revealingly; + manifestativus_A : A ; -- [FXXDF] :: manifestative; manifesting; demonstrative, reveling; + manifesto_Adv : Adv ; -- [XXXCO] :: undeniably, red-handed, in the act; evidently, plainly, manifestly; + manifesto_V2 : V2 ; -- [XXXCO] :: make visible/clearer/evident/plain; reveal, make known; disclose; clarify; + manifestus_A : A ; -- [XXXBO] :: |clear, evident, plain, obvious; conspicuous, noticeable; unmistakable; + manioca_F_N : N ; -- [GXXEK] :: cassava; + maniplus_M_N : N ; -- [XXXDX] :: maniple, company of soldiers, one third of a cohort; handful, bundle; + manipretium_N_N : N ; -- [XXXEC] :: wages, hire, reward; + manipularis_A : A ; -- [XXXDX] :: of/belonging to maniple; belonging to the ranks; private; + manipularis_M_N : N ; -- [XXXDX] :: soldier of a maniple; common soldier, private; marine; comrades (pl.); + manipulatim_Adv : Adv ; -- [XXXDX] :: in handfuls; in companies; + manipulus_M_N : N ; -- [XXXDX] :: maniple, company of soldiers, one third of a cohort; handful, bundle; + manis_M_N : N ; -- [XXXDX] :: shades/ghosts of dead (pl.); gods of Lower World; corpse/remains; underworld; + manna_F_N : N ; -- [XAXES] :: |manna, vegetable juice hardened to grains (Pliny); + manna_N : N ; -- [EAQES] :: manna; (food from God for wandering Hebrews); [man hu => (Hebrew) what is this]; + mannulus_M_N : N ; -- [XXXEC] :: pony; + mannus_M_N : N ; -- [XXXDX] :: pony; + mano_V : V ; -- [XXXDX] :: flow, pour; be shed; be wet; spring; + manometrum_N_N : N ; -- [GXXEK] :: manometer; + mansio_F_N : N ; -- [XXXBO] :: lodging, stop; day's journey, stage; staying away; abode/quarters/home/dwelling; + mansionariatus_M_N : N ; -- [FEXFE] :: office of resident priest; + mansionarius_M_N : N ; -- [FEXFE] :: sexton/sacristan/custodian; holder of small benefice; lodging manager; resident; + mansito_V : V ; -- [XXXDX] :: spend the night, stay; + mansiuncula_F_N : N ; -- [EXXFS] :: little/small home/dwelling; + mansuefacio_V2 : V2 ; -- [XXXCO] :: tame; civilize; make peaceful/quiet/docile; + mansuefio_V : V ; -- [XXXCO] :: become/be tamed/civilized/peaceful/docile; (mansuefacio PASS); + mansues_A : A ; -- [DXXDS] :: tame; mild, gentle; soft (L+S); tamed; + mansuesco_V2 : V2 ; -- [XXXCO] :: tame; become/grow tame; render/become mild/gentle/less harsh/severe; + mansueto_V2 : V2 ; -- [EXXFS] :: tame; make tame; subdue, soften (Souter); become subdued; restrain (Vulgate); + mansuetudo_F_N : N ; -- [XXXDX] :: tameness, gentleness, mildness; clemency; + mansuetus_A : A ; -- [XXXDX] :: tame; mild, gentle; less harsh/severe; + mantele_N_N : N ; -- [XXXDO] :: handtowel; napkin; towel, cloth; tablecloth (L+S); + mantelium_N_N : N ; -- [XXXDO] :: handtowel; napkin; towel, cloth; tablecloth (L+S); + mantelletum_N_N : N ; -- [FEXEE] :: mantel covering the surplice of prelate; cape, cope; + mantellum_N_N : N ; -- [XXXEO] :: cloak, mantel; handtowel (L+S); napkin; towel, cloth; + mantelum_N_N : N ; -- [XXXEO] :: handtowel; napkin; towel, cloth; cloak, mantel (L+S); + mantica_F_N : N ; -- [XXXDX] :: traveling-bag, knapsack; + mantile_N_N : N ; -- [XXXDS] :: handtowel; napkin; towel, cloth; tablecloth; + mantilium_N_N : N ; -- [XXXDS] :: handtowel; napkin; towel, cloth; tablecloth; + mantum_N_N : N ; -- [XXXFS] :: Spanish cloak; + manualis_A : A ; -- [XXXEC] :: fitted to the hand; + manubia_F_N : N ; -- [XXXDX] :: general's share of the booty (pl.); prize-money; profits; + manubrium_N_N : N ; -- [XXXEC] :: haft, handle; handle-bar (Cal); + manucapio_V2 : V2 ; -- [FLXFM] :: go bail(for); undertake; + manufactus_A : A ; -- [EXXES] :: hand-made; made by hand; made with hands; + manufestarius_A : A ; -- [XXXEO] :: flagrant (errors); caught in the act, caught redhanded (criminals); + manufesto_Adv : Adv ; -- [XXXCO] :: undeniably, red-handed, in the act; evidently, plainly, manifestly; + manufesto_V2 : V2 ; -- [XXXCO] :: make visible/clearer/evident/plain; reveal, make known; disclose; clarify; + manufestus_A : A ; -- [XXXBO] :: |clear, evident, plain, obvious; conspicuous, noticeable; unmistakable; + manufollium_N_N : N ; -- [GXXEK] :: hand-ball; + manulearius_M_N : N ; -- [XXXFO] :: maker of sleeved garments; + manuleatus_A : A ; -- [XXXEO] :: w/(long) sleeves; (persons) wearing long-sleeved tunics (sign of effeminacy); + manuleus_M_N : N ; -- [XXXEO] :: long sleeve; + manumissio_F_N : N ; -- [XLXEO] :: manumission, release from authority of manus; freeing of slave; + manumitto_V2 : V2 ; -- [XXXDX] :: release, free, set free/at liberty, emancipate; + manuplus_M_N : N ; -- [XXXDX] :: maniple, company of soldiers, one third of a cohort; handful, bundle; + manupretium_N_N : N ; -- [XXXEC] :: wages, hire, reward; + manus_F_N : N ; -- [XXXAX] :: hand, fist; team; gang, band of soldiers; handwriting; (elephant's) trunk; + manuscriptum_N_N : N ; -- [GXXEK] :: manuscript; + manuscriptus_A : A ; -- [GXXEK] :: hand-written; + manutergium_N_N : N ; -- [GXXEK] :: towel; + manzer_A : A ; -- [EEQFS] :: bastard, illegitimate; (Hebrew); 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 ; - mappa_F_N : N ; - mappula_F_N : N ; - maranatha_Interj : Interj ; - marca_F_N : N ; - marcens_A : A ; - marceo_V : V ; - marcesco_V : V ; - marchio_M_N : N ; - marchionatus_M_N : N ; - marchionissa_F_N : N ; - marcidus_A : A ; - marco_V : V ; - marcor_M_N : N ; - marculus_M_N : N ; - mare_N_N : N ; - margarinum_N_N : N ; - margarita_F_N : N ; - marginalis_A : A ; - margino_V : V ; - margo_F_N : N ; - marinus_A : A ; - marisca_F_N : N ; - mariscus_A : A ; - mariscus_M_N : N ; - marita_F_N : N ; - maritagium_N_N : N ; - maritimus_A : A ; - marito_V : V ; - maritumus_A : A ; - maritus_A : A ; - maritus_M_N : N ; - marlo_V : V ; - marmelata_F_N : N ; - marmor_N_N : N ; - marmoratus_A : A ; - marmoreus_A : A ; - marmus_A : A ; - marra_F_N : N ; - marsupium_N_N : N ; - marsuppium_N_N : N ; - martipanis_M_N : N ; + manzer_M_N : N ; -- [EEXFS] :: bastard, one of illegitimate birth; mongrel (Latham); (Hebrew); + manzerinus_C_N : N ; -- [EEXFM] :: bastard, one of illegitimate birth; mongrel (Latham); (Hebrew); + mapale_N_N : N ; -- [XXXCS] :: huts (pl.) of African nomads; house of ill repute; follies, useless things; + mappa_F_N : N ; -- [XXXDX] :: white cloth; napkin; handkerchief; cloth dropped as start signal; tablecloth; + mappula_F_N : N ; -- [GXXEK] :: table-napkin; + maranatha_Interj : Interj ; -- [DEXEP] :: our Lord cometh; (Aramaic through Greek); + marca_F_N : N ; -- [FLGCM] :: mark; (German gold/silver weight, coin); (11th century = ~8 ounces, later ~1); + marcens_A : A ; -- [XXXCO] :: withered/dropping; exhausted/weak/feeble; heavy (eyes); apathetic/languid/jaded; + marceo_V : V ; -- [XXXDX] :: be enfeebled, weak or faint; + marcesco_V : V ; -- [XXXCO] :: wither, shrivel up; fade/pine away; become weak/enfeebled/languid/apathetic; + marchio_M_N : N ; -- [GXXEK] :: marquis; + marchionatus_M_N : N ; -- [FLXFM] :: marquisate; office of marquis; + marchionissa_F_N : N ; -- [GXXEK] :: marchioness; + marcidus_A : A ; -- [XXXCO] :: withered/dropping/rotten; lacking rigidity; exhausted/weak; apathetic/languid; + marco_V : V ; -- [XXXCO] :: be withered/flabby, droop/shrivel; flag/faint; be weak/enfeebled/idle/apathetic; + marcor_M_N : N ; -- [XXXES] :: decay; faintness; + marculus_M_N : N ; -- [XXXEC] :: small hammer; + mare_N_N : N ; -- [XXXAX] :: sea; sea water; + margarinum_N_N : N ; -- [GXXEK] :: margarine; + margarita_F_N : N ; -- [XXXDX] :: pearl; + marginalis_A : A ; -- [GXXEK] :: marginal; + margino_V : V ; -- [XXXDX] :: provide with borders; + margo_F_N : N ; -- [XXXCO] :: margin, edge, flange, rim, border; threshold; bank, retaining wall; gunwale; + marinus_A : A ; -- [XXXDX] :: marine; of the sea; sea born; + marisca_F_N : N ; -- [XAXDO] :: kind of large/inferior fig; hemorrhoids (pl.), piles; + mariscus_A : A ; -- [XAXDO] :: kind of large/inferior fig; + mariscus_M_N : N ; -- [XAXNO] :: kind of rush; + marita_F_N : N ; -- [XXXDX] :: wife; + maritagium_N_N : N ; -- [FLXFJ] :: marriage; + maritimus_A : A ; -- [XXXBO] :: maritime; of/near/by the sea; coastal; relating/used to sea; seafaring/naval; + marito_V : V ; -- [XXXDX] :: marry, give in marriage; + maritumus_A : A ; -- [XXXBO] :: maritime; of/near/by the sea; coastal; relating/used to sea; seafaring/naval; + maritus_A : A ; -- [XXXAX] :: nuptial; of marriage; married, wedded, united; + maritus_M_N : N ; -- [XXXDX] :: husband, married man; lover; mate; + marlo_V : V ; -- [FAXDM] :: apply clay; add marl to the soil; + marmelata_F_N : N ; -- [GXXEK] :: marmalade; + marmor_N_N : N ; -- [XXXBX] :: marble, block of marble, marble monument/statue; surface of the sea; + marmoratus_A : A ; -- [XXXDX] :: marbled; overlaid with marble; + marmoreus_A : A ; -- [XXXDX] :: marble; of marble; marble-like; + marmus_A : A ; -- [XXXDX] :: marine; belonging to the sea; + marra_F_N : N ; -- [XXXEC] :: hoe; + marsupium_N_N : N ; -- [FXXEK] :: purse; + marsuppium_N_N : N ; -- [XXXEC] :: purse, pouch; + martipanis_M_N : N ; -- [GXXEK] :: marzipan; 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 ; - mas_A : A ; - mas_M_N : N ; - masculinus_A : A ; - masculus_A : A ; - masochismus_M_N : N ; - masochista_M_N : N ; - massa_F_N : N ; - massarius_M_N : N ; - masso_M_N : N ; - massuelius_M_N : N ; - massuerius_M_N : N ; - masterbator_M_N : N ; - masterbio_F_N : N ; - masterbor_V : V ; - mastex_F_N : N ; - mastice_F_N : N ; - masticha_F_N : N ; - mastiche_F_N : N ; - mastichum_N_N : N ; - mastigatus_M_N : N ; - mastigia_M_N : N ; - mastigo_V2 : V2 ; - mastix_F_N : N ; - mastruca_F_N : N ; - masturbatio_F_N : N ; - masturbator_M_N : N ; - masturbor_V : V ; - matara_F_N : N ; - matellio_M_N : N ; - mater_F_N : N ; - matercula_F_N : N ; - materia_F_N : N ; - materialis_A : A ; - materialismus_M_N : N ; - materialista_M_N : N ; - materialisticus_A : A ; - materialiter_Adv : Adv ; - materiarius_A : A ; - materiarius_M_N : N ; - materiatio_F_N : N ; - materiatura_F_N : N ; - materies_F_N : N ; - materior_V : V ; - maternus_A : A ; - matertera_F_N : N ; - mathematica_F_N : N ; - mathematicus_A : A ; - mathematicus_M_N : N ; - mathesis_F_N : N ; - matricalis_A : A ; - matricida_C_N : N ; - matricidium_N_N : N ; - matricula_F_N : N ; - matriculus_M_N : N ; - matrimonialis_A : A ; - matrimonialiter_Adv : Adv ; - matrimonium_N_N : N ; - matrimus_A : A ; - matrix_F_N : N ; - matrona_F_N : N ; - matronalis_A : A ; - matta_F_N : N ; - mattea_F_N : N ; - mattya_F_N : N ; - matula_F_N : N ; - maturatio_F_N : N ; - mature_Adv : Adv ; - maturesco_V2 : V2 ; - maturitas_F_N : N ; - maturo_V : V ; - maturrimus_A : A ; - maturus_A : A ; - matutinus_A : A ; - maumo_V : V ; - maxilla_F_N : N ; - maxillaris_A : A ; - maximalista_M_N : N ; - maxime_Adv : Adv ; - maximitas_F_N : N ; - maximopere_Adv : Adv ; - maximus_A : A ; - maxume_Adv : Adv ; - maxumus_A : A ; + martyr_M_N : N ; -- [DEXCS] :: martyr; witness; one who by his death bears witness to the truth of Christ; + martyrium_N_N : N ; -- [DEXCS] :: martyrdom; testimony w/one's blood of faith in Christ; martyr's grave/church; + martyrologium_N_N : N ; -- [EEXFE] :: martyology; list of martyrs/saints (about 600 AD bearing name of St. Jerome); + mas_A : A ; -- [XXXCO] :: male; masculine, of the male sex; manly, virile, brave, noble; G:masculine; + mas_M_N : N ; -- [XXXCO] :: male (human/animal/plant); man; + masculinus_A : A ; -- [XXXCO] :: masculine, of the male sex; of masculine gender (grammar); + masculus_A : A ; -- [XXXCO] :: male/masculine, proper to males; manly/virile; (large/coarse plants); (plugs); + masochismus_M_N : N ; -- [GXXEK] :: masochism; + masochista_M_N : N ; -- [GXXEK] :: masochistic; + massa_F_N : N ; -- [XXXDX] :: mass, bulk; heavy weight, load, burden; lump; kneaded dough; + massarius_M_N : N ; -- [FWXFM] :: mace-bearer; + masso_M_N : N ; -- [GXXEK] :: freemason; + massuelius_M_N : N ; -- [FWXEM] :: mace; club; + massuerius_M_N : N ; -- [FWXFM] :: mace-bearer; + masterbator_M_N : N ; -- [XXXFO] :: masturbator; one who defiles himself (L+S); + masterbio_F_N : N ; -- [XXXFP] :: masturbation; + masterbor_V : V ; -- [XXXFO] :: masturbate; defile oneself (L+S); + mastex_F_N : N ; -- [EAXFP] :: mastic, gum/resin of Pistacia lentiscus/other trees; + mastice_F_N : N ; -- [XAXES] :: mastic, gum/resin of Pistacia lentiscus/other trees; + masticha_F_N : N ; -- [DAXFS] :: mastic, gum/resin of Pistacia lentiscus/other trees; + mastiche_F_N : N ; -- [XAXEO] :: mastic, gum/resin of Pistacia lentiscus/other trees; + mastichum_N_N : N ; -- [DAXES] :: mastic, gum/resin of Pistacia lentiscus/other trees; + mastigatus_M_N : N ; -- [EXXFW] :: whipping; punishment; + mastigia_M_N : N ; -- [XXXDX] :: one who deserves a whipping, rascal; + mastigo_V2 : V2 ; -- [DXXFS] :: whip; scourge; + mastix_F_N : N ; -- [EXXFP] :: lash; punishment; anguish (Vulgate); + mastruca_F_N : N ; -- [XXXEC] :: sheepskin; + masturbatio_F_N : N ; -- [XXXFD] :: masturbation; + masturbator_M_N : N ; -- [XXXFS] :: masturbator; + masturbor_V : V ; -- [XXXES] :: masturbate; + matara_F_N : N ; -- [XXXDX] :: javelin, spear; + matellio_M_N : N ; -- [XXXEC] :: small pot, vessel; + mater_F_N : N ; -- [XXXAX] :: mother, foster mother; lady, matron; origin, source, motherland, mother city; + matercula_F_N : N ; -- [XXXDX] :: affectionate term for mother; + materia_F_N : N ; -- [XXXAO] :: ||means, occasion, condition effecting action; latent ability/potential; + materialis_A : A ; -- [XXXFO] :: material; of/related to subject matter; of/belonging to matter; + materialismus_M_N : N ; -- [GXXEK] :: materialism; + materialista_M_N : N ; -- [GXXEK] :: materialist; + materialisticus_A : A ; -- [GXXEK] :: materialistic; + materialiter_Adv : Adv ; -- [DXXFS] :: materially; according to the occasion; + materiarius_A : A ; -- [XXXEO] :: timber-, of/concerned with timber; + materiarius_M_N : N ; -- [XXXEO] :: timber merchant; + materiatio_F_N : N ; -- [XXXEO] :: woodwork, carpentry; wooden structure; timbering; framework (Cal); + materiatura_F_N : N ; -- [XXXFO] :: woodwork, carpentry; + materies_F_N : N ; -- [XXXAO] :: ||means, occasion, condition effecting action; latent ability/potential; + materior_V : V ; -- [XXXDX] :: get timber; + maternus_A : A ; -- [XXXBX] :: maternal, motherly, of a mother; + matertera_F_N : N ; -- [XXXEC] :: maternal aunt; + mathematica_F_N : N ; -- [XXXDX] :: mathematics; astrology; + mathematicus_A : A ; -- [XXXDX] :: mathematical; astrological; + mathematicus_M_N : N ; -- [XXXDX] :: mathematician; astrologer; + mathesis_F_N : N ; -- [XXXES] :: maths; science; astrology; + matricalis_A : A ; -- [GXXEK] :: of a matrix; + matricida_C_N : N ; -- [XXXEC] :: matricide; + matricidium_N_N : N ; -- [XXXEC] :: slaying of a mother, matricide; + matricula_F_N : N ; -- [DLXES] :: public register; list, roll; + matriculus_M_N : N ; -- [DAXFS] :: fish (unidentified); + matrimonialis_A : A ; -- [XXXFO] :: matrimonial, of/belonging to marriage; [~ tabulae => wedding certificate]; + matrimonialiter_Adv : Adv ; -- [XXXET] :: matrimonially; + matrimonium_N_N : N ; -- [XXXBX] :: marriage; matrimony; + matrimus_A : A ; -- [XXXDX] :: having mother living; + matrix_F_N : N ; -- [XAXCO] :: dam, female animal kept for breeding; parent tree; register, list; + matrona_F_N : N ; -- [XXXDX] :: wife; matron; + matronalis_A : A ; -- [XXXDX] :: of or befitting a married woman; + matta_F_N : N ; -- [XXXEC] :: mat of rushes; + mattea_F_N : N ; -- [XXXEC] :: dainty dish; + mattya_F_N : N ; -- [XXXEC] :: dainty dish; + matula_F_N : N ; -- [XXXDX] :: jar, vessel for liquids; chamber pot; blockhead; + maturatio_F_N : N ; -- [GXXEK] :: maturation; + mature_Adv : Adv ; -- [XXXDX] :: quickly; at the right time; in time; early, prematurely; + maturesco_V2 : V2 ; -- [XXXDX] :: become ripe, ripen mature; + maturitas_F_N : N ; -- [XXXDX] :: ripeness; + maturo_V : V ; -- [XXXDX] :: ripen, hurry, make haste to, hasten; + maturrimus_A : A ; -- [XXXDS] :: early, speedy; ripe; mature, mellow; timely, seasonable; + maturus_A : A ; -- [XXXAX] :: early, speedy; ripe; mature, mellow; timely, seasonable; + matutinus_A : A ; -- [XXXDX] :: early; of the (early) morning; + maumo_V : V ; -- [GXXEK] :: meow; + maxilla_F_N : N ; -- [XBXCO] :: jaw (viewed externally), lower part of the face; jaws/jaw-bones (usu. pl.); + maxillaris_A : A ; -- [XBXEO] :: of/belonging to the jaw; molar (teeth); + maximalista_M_N : N ; -- [GXXEK] :: maximalist; + maxime_Adv : Adv ; -- [XXXAO] :: especially, chiefly; certainly; most, very much; (forms SUPER w/ADJ/ADV); + maximitas_F_N : N ; -- [XXXEC] :: greatness, size; + maximopere_Adv : Adv ; -- [XXXFS] :: greatly, exceedingly, with great endeavor; very much; particularly, especially; + maximus_A : A ; -- [XXXAO] :: greatest/biggest/largest; longest; oldest; highest, utmost; leading, chief; + maxume_Adv : Adv ; -- [BXXAO] :: especially, chiefly; certainly; most, very much; (forms SUPER w/ADJ/ADV); + maxumus_A : A ; -- [BXXAO] :: greatest/biggest/largest; longest; oldest; highest, utmost; leading, chief; 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 ; - mazza_F_N : N ; - mazzerius_M_N : N ; - measurabilis_A : A ; - meator_M_N : N ; - meatus_M_N : N ; - mecastor_Interj : Interj ; - mechanicus_A : A ; - mechanicus_M_N : N ; - mechanismus_M_N : N ; - meddix_M_N : N ; - medela_F_N : N ; - medella_F_N : N ; - medens_M_N : N ; - medeor_V : V ; - mediaevalis_A : A ; - medians_A : A ; - mediante_Adv : Adv ; - medianum_N_N : N ; - medianus_A : A ; - mediastinus_M_N : N ; - mediate_Adv : Adv ; - mediator_M_N : N ; - mediatrix_F_N : N ; - medica_F_N : N ; - medicabilis_A : A ; - medicamen_N_N : N ; - medicamentum_N_N : N ; - medice_F_N : N ; - medicina_F_N : N ; - medicinus_A : A ; - medico_V : V ; - medicor_V : V ; - medicus_A : A ; - medicus_M_N : N ; - medidies_M_N : N ; - medie_Adv : Adv ; - medietas_F_N : N ; - medimnum_N_N : N ; - medimnus_M_N : N ; - medio_V : V ; - mediocris_A : A ; - mediocritas_F_N : N ; - mediocriter_Adv : Adv ; - medioximus_A : A ; - meditabundus_A : A ; - meditamentum_N_N : N ; - meditamenum_N_N : N ; - meditatio_F_N : N ; - mediterraneus_A : A ; - medito_V : V ; - meditor_V : V ; - meditullium_N_N : N ; - medium_N_N : N ; - medius_A : A ; - medius_M_N : N ; - medulla_F_N : N ; - medullitus_Adv : Adv ; - megalophonum_N_N : N ; - megestanis_M_N : N ; - megestanus_M_N : N ; - megistanis_M_N : N ; - megistanus_M_N : N ; - mehercle_Interj : Interj ; - mehercule_Interj : Interj ; - mehercules_Interj : Interj ; - meile_N_N : N ; - meio_V2 : V2 ; - mel_N_N : N ; - melancholicus_A : A ; - melanurus_M_N : N ; - melicus_A : A ; - melicus_M_N : N ; - melilotos_F_N : N ; - melilotum_N_N : N ; - melimelum_N_N : N ; - melioratio_F_N : N ; - melioro_V : V ; - melisma_N_N : N ; - melismaticus_A : A ; - melisphyllum_N_N : N ; - melissa_F_N : N ; - melissophyllon_N_N : N ; - meliuscule_Adv : Adv ; - meliusculus_A : A ; - melleus_A : A ; - mellifer_A : A ; - mellificus_A : A ; - mellitus_A : A ; - mello_V : V ; - melo_M_N : N ; + mazer_M_N : N ; -- [EEXFM] :: bastard, one of illegitimate birth; mongrel (Latham); (Hebrew); + mazonomon_N_N : N ; -- [XXXEC] :: charger, large dish; + mazonomus_M_N : N ; -- [XXXEC] :: charger, large dish; + mazza_F_N : N ; -- [FWXFE] :: mace; club; + mazzerius_M_N : N ; -- [FWXFE] :: mace-bearer; + measurabilis_A : A ; -- [GSXEE] :: measurable; + meator_M_N : N ; -- [XXXFO] :: traveler; passer-by; (of Mercury as messenger of gods L+S); (not meteor?); + meatus_M_N : N ; -- [XXXCO] :: movement along line, course/path; progress; line followed; channel; passage-way; + mecastor_Interj : Interj ; -- [XXXDO] :: by Castor!; (oath used by women); + mechanicus_A : A ; -- [XXXEO] :: mechanical; of/concerned with machines/engineering; + mechanicus_M_N : N ; -- [XXXEO] :: engineer; mechanic; acrobat performing w/gymnastic apparatus; + mechanismus_M_N : N ; -- [GXXEK] :: mechanism; + meddix_M_N : N ; -- [XLIEC] :: Oscan magistrate; + medela_F_N : N ; -- [XBXCO] :: cure, remedial treatment; healing, healing power (Sax); health; + medella_F_N : N ; -- [XBXCO] :: cure, remedial treatment; healing, healing power (Sax); health; + medens_M_N : N ; -- [XXXDX] :: physician, doctor; + medeor_V : V ; -- [XXXDX] :: heal, cure; remedy, assuage, comfort, amend; + mediaevalis_A : A ; -- [GXXEK] :: medieval; + medians_A : A ; -- [DXXEE] :: halved, divided in the middle; + mediante_Adv : Adv ; -- [FXXEE] :: by means of; + medianum_N_N : N ; -- [GXXEK] :: lounge, living room; + medianus_A : A ; -- [EXXFS] :: in-the-middle; middle; + mediastinus_M_N : N ; -- [XXXEC] :: drudge; + mediate_Adv : Adv ; -- [FXXEE] :: by means of; + mediator_M_N : N ; -- [XXXFO] :: mediator; intermediary, go between; middle man; + mediatrix_F_N : N ; -- [XXXFO] :: mediator (female); intermediary, go between; + medica_F_N : N ; -- [XAXEO] :: kind of clover; lucerne (Medicago sativa, resembles clover); (elecampane?); + medicabilis_A : A ; -- [XBXDX] :: curable; + medicamen_N_N : N ; -- [XBXBO] :: drug, remedy, medicine; cosmetic; substance to treat seeds/plants; dye; + medicamentum_N_N : N ; -- [XBXDX] :: drug, remedy, medicine; + medice_F_N : N ; -- [XBXEO] :: doctor (female), physician, healer; + medicina_F_N : N ; -- [XBXBO] :: art/practice of medicine, medicine; clinic; treatment, dosing; remedy, cure; + medicinus_A : A ; -- [XBXEO] :: of the art/practice of medicine/healing, medical; [w/ars or res => medicine]; + medico_V : V ; -- [XBXDX] :: heal, cure; medicate; dye; + medicor_V : V ; -- [XBXDX] :: heal, cure; + medicus_A : A ; -- [XBXBO] :: healing, curative, medical; [digitus ~ => fourth finger of the hand]; + medicus_M_N : N ; -- [XBXCO] :: doctor, physician; fourth finger of the hand; + medidies_M_N : N ; -- [XXXFS] :: noon; midday; south; (meridies); + medie_Adv : Adv ; -- [XXXDX] :: moderately; in a manner avoiding both extremely, moderate; ambiguous; + medietas_F_N : N ; -- [XXXCO] :: center/mid point/part; half; intermediate course/state; fact of being in middle; + medimnum_N_N : N ; -- [XSXDX] :: dry measure, Greek bushel (6 modii); measure of land in Cyrenaica; + medimnus_M_N : N ; -- [XSXDX] :: dry measure, Greek bushel (6 modii); measure of land in Cyrenaica; + medio_V : V ; -- [DXXES] :: halve, divide in the middle; be in the middle; + mediocris_A : A ; -- [XXXBO] :: |commonplace; undistinguished; of humble station; mediocre; fairly small; minor; + mediocritas_F_N : N ; -- [XXXBO] :: |mediocrity; limited powers/ability; smallness; humbleness (of station); + mediocriter_Adv : Adv ; -- [XXXCO] :: to moderate/subdued extent/degree, ordinarily/moderately/tolerably; not very; + medioximus_A : A ; -- [EXXDX] :: middlemost; + meditabundus_A : A ; -- [DXXFS] :: earnestly mediating/considering/reflecting; designing; + meditamentum_N_N : N ; -- [XXXEC] :: preparation, practice; + meditamenum_N_N : N ; -- [XXXDX] :: training exercise; + meditatio_F_N : N ; -- [XXXDX] :: contemplation, meditation; practicing; + mediterraneus_A : A ; -- [XXXDX] :: inland, remote from the coast; + medito_V : V ; -- [FXXCE] :: ||rehearse; go over, say to oneself; declaim, work over (song) in performance; + meditor_V : V ; -- [XXXAO] :: ||rehearse; go over, say to oneself; declaim, work over (song) in performance; + meditullium_N_N : N ; -- [XXXDO] :: middle, center, mid-point; interior, part of country remote from sea; + medium_N_N : N ; -- [XXXDX] :: middle, center; medium, mean; midst, community, public; publicity; + medius_A : A ; -- [XXXAX] :: middle, middle of, mid; common, neutral, ordinary, moderate; ambiguous; + medius_M_N : N ; -- [XXXDS] :: mediator; one who stands in the middle, one who comes between; + medulla_F_N : N ; -- [XXXBX] :: marrow, kernel; innermost part; quintessence; + medullitus_Adv : Adv ; -- [XXXDO] :: inwardly, from depths of heart/mind; from the marrow; + megalophonum_N_N : N ; -- [GTXEK] :: loudspeaker; + megestanis_M_N : N ; -- [ELXDW] :: nobles (pl.), grandees, magnates, leaders; nobles of Parthia/eastern countries; + megestanus_M_N : N ; -- [ELXDW] :: nobles (pl.), grandees, magnates, leaders; nobles of Parthia/eastern countries; + megistanis_M_N : N ; -- [XLXDO] :: nobles (pl.), grandees, magnates, leaders; nobles of Parthia/eastern countries; + megistanus_M_N : N ; -- [ELXDW] :: nobles (pl.), grandees, magnates, leaders; nobles of Parthia/eastern countries; + mehercle_Interj : Interj ; -- [XXXDX] :: By Hercules! assuredly, indeed; + mehercule_Interj : Interj ; -- [XXXDX] :: by Hercules! assuredly, indeed; + mehercules_Interj : Interj ; -- [XXXDX] :: by Hercules! assuredly, indeed; + meile_N_N : N ; -- [AXXFS] :: thousand (men); thousands; (archaic plural of mille); [milia (passuum) => mile]; + meio_V2 : V2 ; -- [XXXDX] :: urinate, make water; ejaculate; (somewhat rude); + mel_N_N : N ; -- [XXXBO] :: honey; sweetness; pleasant thing; darling/honey; [luna mellis => honeymoon]; + melancholicus_A : A ; -- [XXXEC] :: having black bile, melancholy; + melanurus_M_N : N ; -- [XXXEC] :: small edible sea-fish; + melicus_A : A ; -- [XXXDX] :: musical, lyrical; + melicus_M_N : N ; -- [XXXDX] :: lyric poet; + melilotos_F_N : N ; -- [XAXNO] :: clover (species of, Melilotus or Trifolium); melilotus; serta Campanica; + melilotum_N_N : N ; -- [XAXNO] :: clover (species of, Melilotus or Trifolium); melilotus; serta Campanica; + melimelum_N_N : N ; -- [XAXEC] :: honey apples (pl.); + melioratio_F_N : N ; -- [FXXEM] :: improvement; + melioro_V : V ; -- [EXXCS] :: improve; make better; + melisma_N_N : N ; -- [FEXFE] :: modulation in chant; + melismaticus_A : A ; -- [FEXFE] :: melodious; + melisphyllum_N_N : N ; -- [XXXEC] :: balm; + melissa_F_N : N ; -- [GXXEK] :: balm; + melissophyllon_N_N : N ; -- [XXXEC] :: balm; + meliuscule_Adv : Adv ; -- [XXXEC] :: somewhat better, pretty well; + meliusculus_A : A ; -- [XXXEC] :: somewhat better; + melleus_A : A ; -- [XAXFS] :: honey-; of honey; + mellifer_A : A ; -- [XXXDX] :: honey-producing; + mellificus_A : A ; -- [EAXFS] :: honey-making; + mellitus_A : A ; -- [XXXDX] :: sweetened with honey; honey-sweet; + mello_V : V ; -- [XXXES] :: make honey; collect honey; + melo_M_N : N ; -- [XAXDS] :: melon (esp. apple-shaped); [Melo => old name for river Nile]; melodes_F_N : N ; -- [DDXES] :: pleasant/charming singer; - melodes_M_N : N ; - melodia_F_N : N ; - melodrama_N_N : N ; - melodramaticus_A : A ; - melodramatium_N_N : N ; - melodum_N_N : N ; - melodus_M_N : N ; - melongena_F_N : N ; - melopepo_M_N : N ; - melos_N_N : N ; - melota_F_N : N ; - melote_F_N : N ; - melotes_F_N : N ; - melotis_F_N : N ; - melum_N_N : N ; - melus_M_N : N ; - mem_N : N ; - membrana_F_N : N ; - membratim_Adv : Adv ; - membrum_N_N : N ; - memiens_A : A ; - memor_A : A ; - memorabilis_A : A ; - memorandum_N_N : N ; - memoria_F_N : N ; - memorial_N_N : N ; - memoriale_N_N : N ; - memorialis_A : A ; - memorialis_M_N : N ; - memoriola_F_N : N ; - memoriter_Adv : Adv ; - memoro_V : V ; - mena_F_N : N ; - menda_F_N : N ; - mendaciter_Adv : Adv ; - mendacium_N_N : N ; - mendaciunculum_N_N : N ; - mendax_A : A ; - mendicatio_F_N : N ; - mendicitas_F_N : N ; - mendico_V : V ; - mendicor_V : V ; - mendicus_A : A ; - mendosus_A : A ; - mendum_N_N : N ; - mens_F_N : N ; - mensa_F_N : N ; - mensalis_A : A ; - mensarius_M_N : N ; - mensis_M_N : N ; - mensor_M_N : N ; - menstrualis_A : A ; - menstruatio_F_N : N ; - menstruo_V : V ; - menstruo_V2 : V2 ; - menstruum_N_N : N ; - menstruus_A : A ; - mensula_F_N : N ; - mensularius_M_N : N ; - mensura_F_N : N ; - mensuro_V2 : V2 ; - menta_F_N : N ; - mentastrum_N_N : N ; - mentha_F_N : N ; - mentio_F_N : N ; - mentior_V : V ; - mento_M_N : N ; - mentula_F_N : N ; - mentum_N_N : N ; - meo_V : V ; - mephitis_F_N : N ; - meracus_A : A ; - mercantia_F_N : N ; - mercator_M_N : N ; - mercatura_F_N : N ; - mercatus_M_N : N ; - mercedula_F_N : N ; - mercenarius_A : A ; - mercenarius_M_N : N ; - mercennarius_A : A ; - mercennarius_M_N : N ; - merces_F_N : N ; - mercimonium_N_N : N ; - mercor_V : V ; - merda_F_N : N ; - merenda_F_N : N ; - merens_A : A ; - mereo_V : V ; - mereor_V : V ; - meretricium_N_N : N ; - meretricius_A : A ; - meretricula_F_N : N ; - meretrix_F_N : N ; - merga_F_N : N ; - merges_F_N : N ; - mergo_V2 : V2 ; - mergulus_M_N : N ; - mergus_M_N : N ; - meridianus_A : A ; - meridianus_M_N : N ; - meridiatio_F_N : N ; - meridies_M_N : N ; - meridio_V : V ; - meridionalis_A : A ; - merito_Adv : Adv ; - meritorium_N_N : N ; - meritorius_A : A ; - meritum_N_N : N ; - meritus_A : A ; - merops_F_N : N ; - merso_V : V ; - merula_F_N : N ; - merum_N_N : N ; - merus_A : A ; - merx_F_N : N ; - meschita_F_N : N ; - mese_F_N : N ; - meses_M_N : N ; - meson_N : N ; - mespila_F_N : N ; - mespilum_N_N : N ; + melodes_M_N : N ; -- [DDXES] :: pleasant/charming singer; + melodia_F_N : N ; -- [DDXES] :: melody; pleasant song; + melodrama_N_N : N ; -- [GXXEK] :: opera; + melodramaticus_A : A ; -- [GXXEK] :: melodramatic; (theatrum melodramaticum = opera); + melodramatium_N_N : N ; -- [GXXEK] :: operetta; + melodum_N_N : N ; -- [XPXFO] :: poetry, songs (pl.); + melodus_M_N : N ; -- [XPXFO] :: poets (pl.); + melongena_F_N : N ; -- [GAXEK] :: eggplant; + melopepo_M_N : N ; -- [GAXEK] :: watermelon; + melos_N_N : N ; -- [XDXCS] :: song, tune, air, strain, lay, melody; hymn; + melota_F_N : N ; -- [EAXES] :: sheepskin; + melote_F_N : N ; -- [EAXES] :: sheepskin; + melotes_F_N : N ; -- [EAXFS] :: sheepskin; + melotis_F_N : N ; -- [EAXFS] :: sheepskin; + melum_N_N : N ; -- [XDXCO] :: song, tune, air, strain, lay, melody; hymn; + melus_M_N : N ; -- [XDXCO] :: song, tune, air, strain, lay, melody; hymn; + mem_N : N ; -- [DEQEW] :: mem; (13th letter of Hebrew alphabet); (transliterate as M); + membrana_F_N : N ; -- [XXXDX] :: membrane; skin; parchment; + membratim_Adv : Adv ; -- [XXXDX] :: limb by limb; + membrum_N_N : N ; -- [XXXAX] :: member, limb, organ; (esp.) male genital member; apartment, room; section; + memiens_A : A ; -- [XXXFO] :: remembering; keeping in mind, paying heed to; being sure; recalling; + memor_A : A ; -- [XXXAX] :: remembering; mindful (of w/GEN), grateful; unforgetting, commemorative; + memorabilis_A : A ; -- [XXXDX] :: memorable; remarkable; + memorandum_N_N : N ; -- [GXXEK] :: memorandum; + memoria_F_N : N ; -- [XXXAX] :: memory, recollection; history; time within memory [~ tenere => to remember]; + memorial_N_N : N ; -- [XXXDO] :: memorial; records/memoranda (pl.); sign of remembrance, monument (Souter); + memoriale_N_N : N ; -- [GXXEK] :: memorandum; memory; + memorialis_A : A ; -- [XXXDO] :: serving as a memorial; memorial; [w/liber => book of records/memoranda]; + memorialis_M_N : N ; -- [DXXFS] :: historiographer royal, man employed in the emperor's secretarial bureau; + memoriola_F_N : N ; -- [XXXEC] :: memory; + memoriter_Adv : Adv ; -- [XXXDX] :: from memory; + memoro_V : V ; -- [XXXAX] :: remember; be mindful of (w/GEN/ACC); mention/recount/relate, remind/speak of; + mena_F_N : N ; -- [XAXEC] :: small sea-fish; + menda_F_N : N ; -- [XXXDX] :: bodily defect, blemish; fault, error (usu. in writing); + mendaciter_Adv : Adv ; -- [DXXES] :: falsely,deceptively, mendaciously; + mendacium_N_N : N ; -- [XXXDX] :: lie, lying, falsehood, untruth; counterfeit, fraud; + mendaciunculum_N_N : N ; -- [XXXDX] :: white lie, fib, little untruth; + mendax_A : A ; -- [XXXBX] :: lying, false; deceitful; counterfeit; + mendicatio_F_N : N ; -- [XXXDX] :: begging; + mendicitas_F_N : N ; -- [XXXEC] :: beggary; + mendico_V : V ; -- [XXXCO] :: beg for; be a beggar, go begging; + mendicor_V : V ; -- [XXXDO] :: beg for; be a beggar, go begging; + mendicus_A : A ; -- [XXXEC] :: poor as a beggar, beggarly; paltry, pitiful; + mendosus_A : A ; -- [XXXDX] :: full of faults, faulty; erroneous; prone to error; + mendum_N_N : N ; -- [XXXDX] :: bodily defect, blemish; fault, error (usu. in writing); + mens_F_N : N ; -- [XXXAX] :: mind; reason, intellect, judgment; plan, intention, frame of mind; courage; + mensa_F_N : N ; -- [XXXBX] :: table; course, meal; banker's counter; + mensalis_A : A ; -- [GXXEK] :: table-; of a table; + mensarius_M_N : N ; -- [XXXDX] :: money-changer, banker; treasury official; + mensis_M_N : N ; -- [XXXAX] :: month; + mensor_M_N : N ; -- [XXXDX] :: land-surveyor; surveyor of building-works; + menstrualis_A : A ; -- [XBXEO] :: liable to menstruate (monthly); in process of menstruation; lasting a month; + menstruatio_F_N : N ; -- [GXXEK] :: menstruation; + menstruo_V : V ; -- [DXXES] :: menstruate, have period; have monthly term; + menstruo_V2 : V2 ; -- [DEXDS] :: pollute; defile; + menstruum_N_N : N ; -- [XXXCO] :: monthly payment/term; menstrual discharge (usu. pl.); monthly sacrifices (L+S); + menstruus_A : A ; -- [XXXCO] :: monthly; happens/done/paid every month; of/lasting for/consisting of a month; + mensula_F_N : N ; -- [XXXDO] :: (small) table; banker's/money-changer's counter; + mensularius_M_N : N ; -- [XXXEO] :: banker, money-changer; + mensura_F_N : N ; -- [XXXDX] :: measure; length, area, capacity; + mensuro_V2 : V2 ; -- [DXXDS] :: measure; estimate; + menta_F_N : N ; -- [XXXDX] :: mint; any cultivated mint; + mentastrum_N_N : N ; -- [XAXFS] :: wild mint (Pliny); + mentha_F_N : N ; -- [XXXDX] :: mint; any cultivated mint; + mentio_F_N : N ; -- [XXXDX] :: mention, making mention; calling to mind; naming; + mentior_V : V ; -- [XXXBX] :: lie, deceive, invent; imitate; feign; pretend; speak falsely about; + mento_M_N : N ; -- [XXXFS] :: long-chin; one who has a long chin; + mentula_F_N : N ; -- [XXXDX] :: male sexual organ; (rude); (used as a term of abuse); + mentum_N_N : N ; -- [XBXCO] :: chin; projecting edge (architecture); + meo_V : V ; -- [XXXBX] :: go along, pass, travel; + mephitis_F_N : N ; -- [XBXEC] :: noxious exhalation; malaria; + meracus_A : A ; -- [XXXDX] :: undiluted, neat; + mercantia_F_N : N ; -- [EXXFS] :: trade; + mercator_M_N : N ; -- [XXXDX] :: trader, merchant; + mercatura_F_N : N ; -- [XXXDX] :: trade, commerce; + mercatus_M_N : N ; -- [XXXDX] :: gathering for the purposes of commerce, market; fair; + mercedula_F_N : N ; -- [XXXEC] :: low wages or rent; + mercenarius_A : A ; -- [XXXDX] :: hired for wages; paid, hired; + mercenarius_M_N : N ; -- [XXXDX] :: laborer, working man; + mercennarius_A : A ; -- [XXXDX] :: hired, mercenary; + mercennarius_M_N : N ; -- [XXXDX] :: hired worker; mercenary; + merces_F_N : N ; -- [XXXDX] :: pay, recompense, hire, salary, reward; rent, price; bribe; + mercimonium_N_N : N ; -- [XXXEC] :: goods, merchandise; + mercor_V : V ; -- [XXXDX] :: trade; buy; + merda_F_N : N ; -- [XXXDX] :: dung, excrement; (rude); + merenda_F_N : N ; -- [FXXEK] :: taste, collation; + merens_A : A ; -- [XXXES] :: merit-worthy; well-deserving; + mereo_V : V ; -- [XXXAO] :: earn; deserve/merit/have right; win/gain/incur; earn soldier/whore pay, serve; + mereor_V : V ; -- [XXXAO] :: earn; deserve/merit/have right; win/gain/incur; earn soldier/whore pay, serve; + meretricium_N_N : N ; -- [XXXCO] :: art of courtesan; trade of harlot; association with courtesans; + meretricius_A : A ; -- [XXXCO] :: of/belonging to/typical of a courtesan/prostitute/harlot; + meretricula_F_N : N ; -- [XXXCO] :: courtesan; (often derogatory); harlot; + meretrix_F_N : N ; -- [XXXCO] :: courtesan, kept woman; public prostitute; harlot; + merga_F_N : N ; -- [XXXEC] :: two-pronged fork (pl.); + merges_F_N : N ; -- [XXXDX] :: sheaf of wheat; + mergo_V2 : V2 ; -- [XXXBX] :: dip, plunge, immerse; sink, drown, bury; overwhelm; + mergulus_M_N : N ; -- [XXXES] :: diver, kind of sea bird; (small gull); wick of a lamp; + mergus_M_N : N ; -- [XXXDX] :: sea-bird; (probably gull); + meridianus_A : A ; -- [GSXEK] :: |meridian; + meridianus_M_N : N ; -- [GSXEK] :: meridian (geography); + meridiatio_F_N : N ; -- [XXXDX] :: midday nap, siesta; + meridies_M_N : N ; -- [XXXDX] :: noon; midday; south; + meridio_V : V ; -- [XXXEC] :: take a siesta; + meridionalis_A : A ; -- [DXXFS] :: southern; + merito_Adv : Adv ; -- [XXXDX] :: deservedly; rightly; + meritorium_N_N : N ; -- [XXXEC] :: lodging (pl.); + meritorius_A : A ; -- [XXXEC] :: hired; + meritum_N_N : N ; -- [XXXDX] :: merit, service; value, due reward; + meritus_A : A ; -- [XXXDX] :: deserved, due; + merops_F_N : N ; -- [XAXEC] :: bird, the bee-eater; + merso_V : V ; -- [XXXDX] :: dip (in), immerse; overwhelm, drown; + merula_F_N : N ; -- [XXXDX] :: blackbird; a dark-colored fish, the wrasse; + merum_N_N : N ; -- [XXXDX] :: wine (unmixed with water); + merus_A : A ; -- [XXXAX] :: unmixed (wine), pure, only; bare, mere, sheer; + merx_F_N : N ; -- [XXXAX] :: commodity; merchandise (pl.), goods; + meschita_F_N : N ; -- [GXXEK] :: mosque; + mese_F_N : N ; -- [FDXES] :: highest tetrachord note; middle-note (L+S); A-note; notes (pl.) above lowest; + meses_M_N : N ; -- [XXXFO] :: north-east wind; + meson_N : N ; -- [FDXES] :: middle-note; + mespila_F_N : N ; -- [DAXNS] :: medlar-tree (Pliny); + mespilum_N_N : N ; -- [XAXFS] :: medlar tree (Pliny); messis_F_N : N ; -- [XXXBX] :: harvest, crop; harvest time; - messis_M_N : N ; - messor_M_N : N ; - mestitius_A : A ; - mesuagium_N_N : N ; - meta_F_N : N ; - metabolicus_A : A ; - metabolismus_M_N : N ; - metallum_N_N : N ; - metamorphosis_F_N : N ; - metaphora_F_N : N ; - metaphoricus_A : A ; + messis_M_N : N ; -- [XXXBX] :: harvest, crop; harvest time; + messor_M_N : N ; -- [XXXDX] :: reaper, harvester; + mestitius_A : A ; -- [EXXEE] :: of mixed race; mixed-blood; half-breed; mestizo; mongrel; + mesuagium_N_N : N ; -- [FLXFJ] :: messuage, building with land and out-buildings; + meta_F_N : N ; -- [XXXDX] :: cone, pyramid; conical column, turning point at circus, goal; end, boundary; + metabolicus_A : A ; -- [GXXEK] :: metabolic; + metabolismus_M_N : N ; -- [GXXEK] :: metabolism; + metallum_N_N : N ; -- [XXXBX] :: metal; mine; quarry; + metamorphosis_F_N : N ; -- [XXXDX] :: metamorphosis, transformation; (pl.) a poem by Ovid; + metaphora_F_N : N ; -- [XGXEC] :: metaphor; + metaphoricus_A : A ; -- [ESXDX] :: metaphoric, metaphorical; metaphrastes_F_N : N ; -- [GGXEE] :: translator of a book; - metaphrastes_M_N : N ; - metaphysica_F_N : N ; - metaphysicus_A : A ; - metaphysicus_M_N : N ; - metaplasmus_M_N : N ; - metastasis_F_N : N ; - metempsychis_F_N : N ; - metempsychosis_F_N : N ; - meteoricus_A : A ; - meteorologia_F_N : N ; - meteorologicus_A : A ; - meteorologus_M_N : N ; - meteorum_N_N : N ; - methados_F_N : N ; - methanolum_N_N : N ; - methodice_Adv : Adv ; - methodicus_A : A ; - methodium_N_N : N ; - methodologia_F_N : N ; - methodos_F_N : N ; - methodus_F_N : N ; - methylicus_A : A ; - metior_V : V ; - meto_V2 : V2 ; - metonymia_F_N : N ; - metor_V : V ; - metreta_F_N : N ; - metricus_A : A ; - metricus_M_N : N ; - metropolis_F_N : N ; - metropolita_M_N : N ; - metropolitanus_A : A ; - metrum_N_N : N ; - metuculosus_A : A ; - metuens_A : A ; - metuo_V2 : V2 ; - metus_M_N : N ; - meus_A : A ; - mica_F_N : N ; - micans_A : A ; - michina_F_N : N ; - mico_V : V ; - microbiologia_F_N : N ; - microbium_N_N : N ; - microchartula_F_N : N ; - micrometrum_N_N : N ; - micropellicula_F_N : N ; - microphonum_N_N : N ; - microscopicus_A : A ; - microscopium_N_N : N ; - migale_N_N : N ; - migma_N_N : N ; - migratio_F_N : N ; - migro_V : V ; - migrus_A : A ; - mil_A : A ; - miles_M_N : N ; - miliardarius_M_N : N ; - miliardum_N_N : N ; - miliare_N_N : N ; - miliarium_N_N : N ; - miliarius_A : A ; - milies_Adv : Adv ; - milifolia_F_N : N ; - milifolium_N_N : N ; - milio_M_N : N ; - milionesimus_A : A ; - milipeda_F_N : N ; - militans_A : A ; - militans_M_N : N ; - militarie_Adv : Adv ; - militaris_A : A ; - militaris_M_N : N ; - militarismus_M_N : N ; - militaristicus_A : A ; - militariter_Adv : Adv ; - militarium_N_N : N ; - militarius_A : A ; - militia_F_N : N ; - militiola_F_N : N ; - milito_V : V ; - militus_A : A ; - milium_N_N : N ; - mille_N_N : N ; - millefolium_N_N : N ; - millennium_N_N : N ; - millenus_A : A ; - millepeda_F_N : N ; - milliare_N_N : N ; - milliarium_N_N : N ; - milliarius_A : A ; - milligrammum_N_N : N ; - millimetrum_N_N : N ; - miluus_M_N : N ; - milvus_M_N : N ; - mima_F_N : N ; - mimographus_M_N : N ; - mimula_F_N : N ; - mimus_M_N : N ; - mina_F_N : N ; - minaciter_Adv : Adv ; - minagium_N_N : N ; - minaretum_N_N : N ; - minax_A : A ; - mineo_V2 : V2 ; - minera_F_N : N ; - minerale_N_N : N ; - mineralis_A : A ; - mineralogia_F_N : N ; - mingo_V2 : V2 ; - miniator_M_N : N ; - miniatulus_A : A ; - miniatura_F_N : N ; - miniatus_A : A ; - minimalista_M_N : N ; - minister_M_N : N ; - ministerialis_A : A ; - ministerium_N_N : N ; - ministra_F_N : N ; - ministral_M_N : N ; - ministro_V2 : V2 ; - minitabundus_A : A ; - minito_V : V ; - minitor_V : V ; - minium_N_N : N ; - minius_A : A ; - mino_V2 : V2 ; - minor_M_N : N ; - minor_V : V ; - minoritas_F_N : N ; - minoro_V2 : V2 ; - minuo_V2 : V2 ; - minurrio_V : V ; - minurritio_F_N : N ; - minus_Adv : Adv ; - minuscula_F_N : N ; - minusculus_A : A ; - minuta_F_N : N ; - minutal_N_N : N ; - minutalis_A : A ; - minutatim_Adv : Adv ; - minute_Adv : Adv ; - minutia_F_N : N ; - minutim_Adv : Adv ; - minutus_A : A ; - mio_V : V ; - mirabile_N_N : N ; - mirabiliarius_M_N : N ; - mirabilis_A : A ; - mirabilitas_F_N : N ; - mirabiliter_Adv : Adv ; - mirabundus_A : A ; - miracula_F_N : N ; - miraculo_Adv : Adv ; - miraculose_Adv : Adv ; - miraculum_N_N : N ; - miraculus_A : A ; - mirator_M_N : N ; - mire_Adv : Adv ; - mirificatio_F_N : N ; - mirificentia_F_N : N ; - mirifico_V2 : V2 ; - mirificus_A : A ; - miro_V : V ; - miror_V : V ; - mirus_A : A ; - misanthropia_F_N : N ; - miscellaneum_N_N : N ; - miscellus_A : A ; - misceo_V : V ; - misellus_A : A ; - miser_A : A ; - miser_M_N : N ; - miserabilis_A : A ; - miserandus_A : A ; - miseratio_F_N : N ; - miserator_M_N : N ; - misere_Adv : Adv ; - misereo_V : V ; - misereor_V : V ; - miseresco_V : V ; - miseret_V0 : V ; - miseria_F_N : N ; - misericordaliter_Adv : Adv ; - misericordia_F_N : N ; - misericors_A : A ; - misero_V : V ; - miseror_V : V ; - misfacio_V2 : V2 ; - misinga_F_N : N ; - missa_F_N : N ; - missibilis_A : A ; - missicius_A : A ; - missile_N_N : N ; - missilis_A : A ; - missio_F_N : N ; - missionalis_A : A ; - missionarius_A : A ; - missionarius_M_N : N ; - missito_V : V ; - missus_M_N : N ; - misterium_N_N : N ; - mistes_M_N : N ; - misticius_A : A ; - mistitius_A : A ; - mistus_A : A ; + metaphrastes_M_N : N ; -- [GGXEE] :: translator of a book; + metaphysica_F_N : N ; -- [GXXEK] :: metaphysics; + metaphysicus_A : A ; -- [GXXEK] :: metaphysical; + metaphysicus_M_N : N ; -- [GXXEK] :: metaphysician; + metaplasmus_M_N : N ; -- [EGXFS] :: metaplasm; grammatical change; irregularity; transposition of words/letters; + metastasis_F_N : N ; -- [GXXEK] :: metastasis; + metempsychis_F_N : N ; -- [XEXES] :: soul-migration; transmigration of soul; + metempsychosis_F_N : N ; -- [XEXFS] :: soul transmigration (from one body to another); + meteoricus_A : A ; -- [GXXEK] :: meteoric; + meteorologia_F_N : N ; -- [GSXEK] :: meteorology; + meteorologicus_A : A ; -- [GSXEK] :: meteorological; + meteorologus_M_N : N ; -- [GSXEK] :: meteorologist; + meteorum_N_N : N ; -- [GXXEK] :: meteor; + methados_F_N : N ; -- [FXXDE] :: method; mode of proceeding; way of teaching (L+S); + methanolum_N_N : N ; -- [GXXEK] :: methanol (wood alcohol); + methodice_Adv : Adv ; -- [GXXFM] :: methodically; + methodicus_A : A ; -- [GXXEM] :: methodical; + methodium_N_N : N ; -- [XXXEO] :: trick, artifice; jest, joke (L+S); + methodologia_F_N : N ; -- [GXXEK] :: methodology; + methodos_F_N : N ; -- [XXXDO] :: method; mode of proceeding; way of teaching (L+S); + methodus_F_N : N ; -- [XXXDS] :: method; mode of proceeding; way of teaching (L+S); road (Latham); + methylicus_A : A ; -- [GXXEK] :: methyl; + metior_V : V ; -- [XXXBX] :: measure, estimate; distribute, mete; traverse, sail/walk through; + meto_V2 : V2 ; -- [XXXDX] :: reap; mow, cut off; + metonymia_F_N : N ; -- [XGXFS] :: metonymy; change of name; substitution of attribute for name; + metor_V : V ; -- [XXXDX] :: measure off, mark out; + metreta_F_N : N ; -- [XSXEC] :: Greek liquid measure; + metricus_A : A ; -- [XPXEO] :: metrical (music); of meter; rhythmic (pulse); of measure/measuring (L+S); + metricus_M_N : N ; -- [DPXFO] :: prosodist/prosodian, expert on prosody/meter; + metropolis_F_N : N ; -- [XXXEO] :: chief/capital city; city from which other cities have been colonized (L+S); + metropolita_M_N : N ; -- [DEXFS] :: metropolitan, bishop in metropolis/chief city; bishop of a metropolitan church; + metropolitanus_A : A ; -- [DEXFS] :: metropolitan, belonging to a metropolis/chief city; + metrum_N_N : N ; -- [XSXEC] :: measure; meter; + metuculosus_A : A ; -- [XXXEC] :: timid; frightful; + metuens_A : A ; -- [XXXFS] :: fearing; afraid; + metuo_V2 : V2 ; -- [XXXAX] :: fear; be afraid; stand in fear of; be apprehensive, dread; + metus_M_N : N ; -- [XXXAX] :: fear, anxiety; dread, awe; object of awe/dread; + meus_A : A ; -- [XXXAX] :: my (personal possession); mine, of me, belonging to me; my own; to me; + mica_F_N : N ; -- [XXXDX] :: particle, grain, crumb; + micans_A : A ; -- [XXXDX] :: flashing, gleaming, sparkling, twinkling, glittering; + michina_F_N : N ; -- [FBXEM] :: nostril; + mico_V : V ; -- [XXXBX] :: vibrate, quiver, twinkle; tremble, throb; beat (pulse); dart, flash, glitter; + microbiologia_F_N : N ; -- [HSXEK] :: microbiology; + microbium_N_N : N ; -- [HXXEK] :: microbe; + microchartula_F_N : N ; -- [HTXEK] :: microfiche; + micrometrum_N_N : N ; -- [HTXEK] :: micrometer; micron; + micropellicula_F_N : N ; -- [HTXEK] :: microfilm; + microphonum_N_N : N ; -- [HTXEK] :: microphone; + microscopicus_A : A ; -- [GTXEK] :: microscopic; + microscopium_N_N : N ; -- [GTXEK] :: microscope; + migale_N_N : N ; -- [EAXFW] :: migale, shrew (Douay); ferret (King James); shrew-mouse/field-mouse (OED); + migma_N_N : N ; -- [EXXFS] :: mixture; mixed/mingled provender; meslin/mixed grain; + migratio_F_N : N ; -- [XXXDX] :: change of abode; move; + migro_V : V ; -- [XXXDX] :: transport; move; change residence/condition; go away; depart; remove; + migrus_A : A ; -- [FXXEM] :: small, puny; + mil_A : A ; -- [XWXDX] :: military/soldier's; (abb. mil. for militum/militares); [tr. mil. => colonels]; + miles_M_N : N ; -- [XWXAX] :: soldier; foot soldier; soldiery; knight (Latham); knight's fee/service; + miliardarius_M_N : N ; -- [GXXEK] :: multimillionaire; + miliardum_N_N : N ; -- [GXXEK] :: billion; (ten to the ninth); + miliare_N_N : N ; -- [EXXEP] :: thousands (pl.); Roman mile (1000 paces); + miliarium_N_N : N ; -- [XXXDX] :: milestone, column resembling a milestone, the one at the Forum; a Roman mile; + miliarius_A : A ; -- [XXXDX] :: thousands, comprising a thousand, 1000 paces long, weighing 1000 pounds; + milies_Adv : Adv ; -- [XXXDX] :: thousand times; innumerable times; + milifolia_F_N : N ; -- [XAXNO] :: milfoil; (plant w/divided leaves genus); common yarrow; water milfoil; + milifolium_N_N : N ; -- [XAXNO] :: milfoil; (plant w/divided leaves genus); common yarrow; water milfoil; + milio_M_N : N ; -- [GXXEK] :: million; + milionesimus_A : A ; -- [GXXEK] :: millionth; + milipeda_F_N : N ; -- [XAXNO] :: millipede; woodlouse; (any similar insect); + militans_A : A ; -- [FXXEE] :: militant; + militans_M_N : N ; -- [FWXEE] :: military man; soldier, warrior; + militarie_Adv : Adv ; -- [XWXFS] :: in a military or soldier-like manner; knightly (Latham); + militaris_A : A ; -- [XWXBO] :: military; of/used by the army/war/soldiers; martial; soldierly; warlike; + militaris_M_N : N ; -- [XWXCS] :: military man; soldier, warrior; + militarismus_M_N : N ; -- [GXXFK] :: militarism; + militaristicus_A : A ; -- [GXXEE] :: militaristic; + militariter_Adv : Adv ; -- [XWXDO] :: according to military practice/discipline; in manner of a soldier, soldierly; + militarium_N_N : N ; -- [FWXEM] :: knighthood (pl.); + militarius_A : A ; -- [XWXFO] :: military; soldier-like; martial; soldierly; warlike; + militia_F_N : N ; -- [XWXBS] :: |military spirit; courage, bravery; the soldiery/military; any difficult work; + militiola_F_N : N ; -- [XWXFS] :: short/insignificant term of military service; + milito_V : V ; -- [XWXCO] :: serve as soldier, perform military service, serve in the army; wage/make war; + militus_A : A ; -- [FAXEM] :: ground, milled (of grain); + milium_N_N : N ; -- [XXXDO] :: millet; + mille_N_N : N ; -- [XXXBO] :: thousand; thousands (men/things); miles; [~ passuum => thousand paces = 1 mile]; + millefolium_N_N : N ; -- [DAXNS] :: milfoil plant (Pliny); + millennium_N_N : N ; -- [GXXEK] :: millennium; + millenus_A : A ; -- [FXXEM] :: thousandth; + millepeda_F_N : N ; -- [DAXNS] :: thousand-feet; millipede; hairy caterpillar; + milliare_N_N : N ; -- [EXXEV] :: mile; milestone; millennium; a thousand (of something); + milliarium_N_N : N ; -- [XXXDX] :: milestone, column resembling a milestone, one at the Forum; Roman mile; + milliarius_A : A ; -- [XXXDX] :: thousands, comprising a thousand, 1000 paces long, weighing 1000 pounds; + milligrammum_N_N : N ; -- [GXXEK] :: milligram; + millimetrum_N_N : N ; -- [GXXEK] :: millimeter; + miluus_M_N : N ; -- [XAXCO] :: kite/glede, bird of prey; fish (prob. gurnard); constellation (erroneous); + milvus_M_N : N ; -- [EAXCO] :: kite/glede, bird of prey; fish (prob. gurnard); constellation (erroneous); + mima_F_N : N ; -- [XXXDX] :: actress performing in mimes; + mimographus_M_N : N ; -- [XDXFS] :: mimer; mime-composer; + mimula_F_N : N ; -- [XDXEC] :: little actress; + mimus_M_N : N ; -- [XXXDX] :: mime; farce; actor in mimes; + mina_F_N : N ; -- [XXXCO] :: threats (pl.), menaces; warning signs, evil omens/prognostications; pinnacles; + minaciter_Adv : Adv ; -- [XXXCO] :: menacingly; in a threatening manner; + minagium_N_N : N ; -- [FLXEM] :: grain duty; duty on the sale of grain; + minaretum_N_N : N ; -- [GXXEK] :: minaret; + minax_A : A ; -- [XXXDX] :: threatening; boding ill; + mineo_V2 : V2 ; -- [XXXEC] :: project, overhang; + minera_F_N : N ; -- [GXXEK] :: mine (layer); + minerale_N_N : N ; -- [FLXDM] :: mineral; ore; + mineralis_A : A ; -- [FSXFF] :: mineral-, having the nature of mineral; obtained from the bowels of the earth; + mineralogia_F_N : N ; -- [GXXEK] :: mineralogy; + mingo_V2 : V2 ; -- [XXXDX] :: make water, urinate; + miniator_M_N : N ; -- [GXXEK] :: miniaturist; + miniatulus_A : A ; -- [XXXEO] :: vermilion; scarlet; colored red with cinnabar (HgS); painted vermilion; + miniatura_F_N : N ; -- [GXXEK] :: miniature; midget; + miniatus_A : A ; -- [XXXEO] :: vermilion; scarlet; colored red with cinnabar (HgS); painted vermilion; + minimalista_M_N : N ; -- [GXXEK] :: minimalist; + minister_M_N : N ; -- [GXXEK] :: minister; + ministerialis_A : A ; -- [GXXEK] :: ministerial; + ministerium_N_N : N ; -- [FXXEK] :: ministry (of state); + ministra_F_N : N ; -- [XXXES] :: female attendant; + ministral_M_N : N ; -- [FXXFM] :: official; E:obedientary; + ministro_V2 : V2 ; -- [XXXBX] :: attend (to), serve, furnish; supply; + minitabundus_A : A ; -- [XXXEC] :: threatening; + minito_V : V ; -- [XXXEO] :: threaten (to), use threats; constitute a danger/threat; hold out as a threat; + minitor_V : V ; -- [XXXCO] :: threaten (to), use threats; constitute a danger/threat; hold out as a threat; + minium_N_N : N ; -- [XXXEC] :: native cinnabar; red lead, vermilion; + minius_A : A ; -- [XXXFS] :: cinnabar-red; a river in Lusitania; + mino_V2 : V2 ; -- [DXXDS] :: drive (animals); impel, push, force; threaten?; + minor_M_N : N ; -- [XXXDX] :: those inferior in rank/grade/age, subordinate; descendants (pl.); + minor_V : V ; -- [XXXBO] :: threaten, speak/act menacingly; make threatening movement; give indication of; + minoritas_F_N : N ; -- [GXXEK] :: minority (age); + minoro_V2 : V2 ; -- [XXXFO] :: reduce, make less; + minuo_V2 : V2 ; -- [XXXBX] :: lessen, reduce, diminish, impair, abate; + minurrio_V : V ; -- [XAXFO] :: chirp, twitter; (of birds); + minurritio_F_N : N ; -- [XAXFO] :: chirping/twittering; (of birds); + minus_Adv : Adv ; -- [XXXAX] :: less; not so well; not quite; + minuscula_F_N : N ; -- [GXXEK] :: minuscule; + minusculus_A : A ; -- [XXXCO] :: somewhat smaller, rather small (size/extent); less important, minor; + minuta_F_N : N ; -- [GXXEK] :: minute (measure of time); + minutal_N_N : N ; -- [XXXFO] :: stew; dish of minced meat/food; ground meat (Cal); hamburger(?); + minutalis_A : A ; -- [GXXEK] :: of minutes; + minutatim_Adv : Adv ; -- [XXXCO] :: one bit at a time, bit by bit, little by little; singly, one by one; gradually; + minute_Adv : Adv ; -- [XXXCO] :: in small pieces; in miniature scale; meanly, petty; nicely, w/discrimination; + minutia_F_N : N ; -- [XXXEO] :: smallness, fineness; minuteness; pettiness; + minutim_Adv : Adv ; -- [XXXDO] :: bit by bit; into small pieces; gradually; + minutus_A : A ; -- [XXXDX] :: small, insignificant, petty; + mio_V : V ; -- [XXXDX] :: make water, urinate; + mirabile_N_N : N ; -- [EEXDS] :: miracle; wondrous deed; wonders (pl. Ecc); wonderful things; marvelous works; + mirabiliarius_M_N : N ; -- [DXXES] :: wonder-worker; miracle-worker; + mirabilis_A : A ; -- [XXXCS] :: |strange; singular; E:glorious; E:miraculous; [~ dictu => wonderful to say]; + mirabilitas_F_N : N ; -- [EEXFS] :: admirable quality; wonderfulness, marvelousness; admirableness; + mirabiliter_Adv : Adv ; -- [XXXCO] :: marvelously, amazingly/remarkably/extraordinarily; to an extraordinary degree; + mirabundus_A : A ; -- [XXXCO] :: wondering; astonished (at); full of wonder/astonishment (L+S); + miracula_F_N : N ; -- [XXXFS] :: marvelously ugly woman; + miraculo_Adv : Adv ; -- [XXXFS] :: wonderfully; + miraculose_Adv : Adv ; -- [FXXDM] :: miraculously; + miraculum_N_N : N ; -- [XXXBO] :: wonder, marvel; miracle, amazing act/event/object/sight; amazement; freak; + miraculus_A : A ; -- [XXXEO] :: freakish, deformed (persons); + mirator_M_N : N ; -- [XXXDX] :: admirer; + mire_Adv : Adv ; -- [XXXDX] :: uncommonly, marvelously; in an amazing manner; to a remarkable extent; + mirificatio_F_N : N ; -- [EEXFP] :: wonderful creative power; + mirificentia_F_N : N ; -- [EEXFS] :: wonder, admiration; + mirifico_V2 : V2 ; -- [EEXES] :: exalt, magnify, make wonderful; + mirificus_A : A ; -- [XXXDX] :: wonderful; amazing; + miro_V : V ; -- [XXXCO] :: |admire/revere; wonder; marvel at; + miror_V : V ; -- [XXXBO] :: |admire/revere; wonder; marvel at; + mirus_A : A ; -- [XXXAX] :: wonderful, strange, remarkable, amazing, surprising, extraordinary; + misanthropia_F_N : N ; -- [GXXEK] :: misanthropy; + miscellaneum_N_N : N ; -- [XXXEC] :: hash (pl.), hotchpotch; + miscellus_A : A ; -- [XLXEO] :: |mixed; [aes ~ => tablet with names of original holder of land and successors]; + misceo_V : V ; -- [XXXAX] :: mix, mingle; embroil; confound; stir up; + misellus_A : A ; -- [XXXDX] :: poor, wretched; + miser_A : A ; -- [XXXAX] :: poor, miserable, wretched, unfortunate, unhappy, distressing; + miser_M_N : N ; -- [XXXDX] :: wretched people (pl.); + miserabilis_A : A ; -- [XXXBX] :: wretched, miserable, pitiable; + miserandus_A : A ; -- [XXXDX] :: pitiable, unfortunate; + miseratio_F_N : N ; -- [XXXDX] :: pity, compassion; + miserator_M_N : N ; -- [DXXDS] :: one who pities/has compassion; merciful person; commiserator; + misere_Adv : Adv ; -- [XXXDX] :: wretchedly, desperately; + misereo_V : V ; -- [DXXCO] :: pity, feel pity; show/have mercy/compassion/pity for (w/GEN); + misereor_V : V ; -- [DXXCO] :: pity, feel pity; show/have mercy/compassion/pity for (w/GEN); + miseresco_V : V ; -- [XXXDX] :: have compassion (on/for) (w/GEN); + miseret_V0 : V ; -- [XXXCO] :: it distresses/grieves me; I am moved to pity, I feel sorry for (w/me + GEN); + miseria_F_N : N ; -- [XXXBX] :: misery, distress, woe, wretchedness, suffering; + misericordaliter_Adv : Adv ; -- [FXXEM] :: mercifully; + misericordia_F_N : N ; -- [XXXBX] :: pity, sympathy; compassion, mercy; pathos; + misericors_A : A ; -- [XXXDX] :: merciful, tenderhearted; + misero_V : V ; -- [XXXCO] :: pity, feel sorry for; view with compassion; (vocal sorrow/compassion); + miseror_V : V ; -- [XXXDO] :: pity, feel sorry for; view with compassion; (vocal sorrow/compassion); + misfacio_V2 : V2 ; -- [FXXEM] :: do wrong to; harm, injure, hurt; + misinga_F_N : N ; -- [GXXEK] :: titmouse; + missa_F_N : N ; -- [EEXDX] :: Mass (eccl.); + missibilis_A : A ; -- [EWXFS] :: throwable; missile; + missicius_A : A ; -- [XXXEC] :: discharged from military service; + missile_N_N : N ; -- [GWXEK] :: missile; + missilis_A : A ; -- [XXXDX] :: that may be thrown, missile; + missio_F_N : N ; -- [XXXDX] :: mission, sending (away); dismissal, discharge (of soldiers); reprieve; + missionalis_A : A ; -- [GXXEK] :: mission-derived; + missionarius_A : A ; -- [GEXEK] :: missionary; + missionarius_M_N : N ; -- [GEXEK] :: missionary; + missito_V : V ; -- [XXXDX] :: send repeatedly; + missus_M_N : N ; -- [XXXDX] :: sending (away); dispatch; shooting, discharge of missiles; + misterium_N_N : N ; -- [XEXCO] :: mystery, secret service/rite/worship (usu. pl.); secret, things not divulged; + mistes_M_N : N ; -- [XEXEO] :: initiate, one initiated in secret rites; + misticius_A : A ; -- [EXXES] :: of mixed race; mixed-blood; half-breed; mestizo; mongrel; + mistitius_A : A ; -- [EXXES] :: of mixed race; mixed-blood; half-breed; mestizo; mongrel; + mistus_A : A ; -- [XXXFS] :: mixed; (alternative VPAR of misceo); 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_V2 : V2 ; - mitulus_M_N : N ; - mixticius_A : A ; - mixtim_Adv : Adv ; - mixtio_F_N : N ; - mixtitius_A : A ; - mixtorius_A : A ; - mna_F_N : N ; - mnemosynum_N_N : N ; - mobilis_A : A ; - mobilitas_F_N : N ; - mobiliter_Adv : Adv ; - mobilito_V2 : V2 ; - modalitas_F_N : N ; - moderabilis_A : A ; - moderamen_N_N : N ; - moderatio_F_N : N ; - moderator_M_N : N ; - moderatrix_F_N : N ; - moderatus_A : A ; - modernista_M_N : N ; - modernitas_F_N : N ; - modernum_N_N : N ; - modernus_A : A ; - modero_V : V ; - moderor_V : V ; - modestia_F_N : N ; - modestus_A : A ; - modiatio_F_N : N ; - modicum_N_N : N ; - modicus_A : A ; - modicus_M_N : N ; - modificatio_F_N : N ; - modificatus_A : A ; - modifico_V : V ; - modius_M_N : N ; - modo_Adv : Adv ; - modo_Conj : Conj ; - modulamen_N_N : N ; - modulate_Adv : Adv ; - modulatio_F_N : N ; - modulator_M_N : N ; - modulor_V : V ; - modulus_M_N : N ; - modus_M_N : N ; - moecha_F_N : N ; - moechor_V : V ; - moechus_M_N : N ; - moene_N_N : N ; - moenus_N_N : N ; - moerens_A : A ; - moereo_V : V ; - moeror_M_N : N ; - moeste_Adv : Adv ; - moestifico_V2 : V2 ; - moestificus_A : A ; - moestiter_Adv : Adv ; - moestitia_F_N : N ; - moestitudo_F_N : N ; - moesto_V2 : V2 ; - moestus_A : A ; - mola_F_N : N ; - molaris_M_N : N ; - molctaticus_A : A ; - molecula_F_N : N ; - molecularis_A : A ; - molendinum_N_N : N ; - moles_F_N : N ; - moleste_Adv : Adv ; - molestia_F_N : N ; - molesto_V : V ; - molestus_A : A ; - molimen_N_N : N ; - molimentum_N_N : N ; - molinarius_M_N : N ; - molinula_F_N : N ; - molior_V : V ; - molitio_F_N : N ; - mollesco_V : V ; - molliculus_A : A ; - mollificatio_F_N : N ; - mollio_V2 : V2 ; - mollipes_A : A ; - mollis_A : A ; - molliter_Adv : Adv ; - mollitia_F_N : N ; - mollities_F_N : N ; - mollitudo_F_N : N ; - molluscum_N_N : N ; - molo_V2 : V2 ; - molossus_M_N : N ; - molta_F_N : N ; - moltaticus_A : A ; - molto_V2 : V2 ; + misy_2_N : N ; -- [XXXNO] :: misy; copper ore/pyrite; sweet truffle or mushroom; + mitesco_V : V ; -- [XXXDX] :: become/be/grow mild/soft/gentle/mellow/tame/civilized; soften; + mitificatio_F_N : N ; -- [GXXEK] :: alleviation; + mitigo_V : V ; -- [XXXDX] :: soften; lighten, alleviate; soothe; civilize; + mitis_A : A ; -- [XXXAX] :: mild, meek, gentle, placid, soothing; clement; ripe, sweet and juicy; + mitra_F_N : N ; -- [XEXDS] :: mitre (bishop/abbot); oriental headband/coif/turban/head-dress; rope/cable; + mitratus_A : A ; -- [XXXEC] :: wearing the mitre; + mitto_V : V ; -- [XXXDX] :: send, throw, hurl, cast; let out, release, dismiss; disregard; + mitto_V2 : V2 ; -- [XXXAX] :: send, throw, hurl, cast; let out, release, dismiss; disregard; + mitulus_M_N : N ; -- [XAXDO] :: edible mussel; shellfish mold (Cal); + mixticius_A : A ; -- [EXXES] :: of mixed race; mixed-blood; half-breed; mestizo; mongrel; + mixtim_Adv : Adv ; -- [XXXES] :: mixedly, in a mixed manner; + mixtio_F_N : N ; -- [XXXCO] :: mixture, admixture; compound; process of mixing/mingling; + mixtitius_A : A ; -- [EXXES] :: of mixed race; mixed-blood; half-breed; mestizo; mongrel; + mixtorius_A : A ; -- [GXXEK] :: mixing; + mna_F_N : N ; -- [XSQCO] :: Greek weight unit (100 drachma/one pound); its weight of silver (1/60 talent); + mnemosynum_N_N : N ; -- [XXXEC] :: souvenir, memorial; + mobilis_A : A ; -- [XXXAX] :: movable; mobile; quick, active; changeable, shifting; fickle, easily swayed; + mobilitas_F_N : N ; -- [XXXBX] :: mobility, agility; speed; quickness of mind; inconstancy; + mobiliter_Adv : Adv ; -- [XXXCO] :: quickly, rapidly, actively; changeably, inconstantly, in a fickle manner; + mobilito_V2 : V2 ; -- [XXXEC] :: set in motion; + modalitas_F_N : N ; -- [GXXEK] :: mode; + moderabilis_A : A ; -- [XXXDX] :: controllable; + moderamen_N_N : N ; -- [XXXDX] :: rudder; management, government; + moderatio_F_N : N ; -- [XXXDX] :: moderation; self control; guidance; government, regulation; + moderator_M_N : N ; -- [XXXDX] :: governor, master; user, one who restrains; + moderatrix_F_N : N ; -- [XXXCO] :: mistress, controller, manager (female); she who restrains/regulates/determines; + moderatus_A : A ; -- [XXXDX] :: controlled, restrained, moderate, temperate, sober; + modernista_M_N : N ; -- [GXXEK] :: modernist; + modernitas_F_N : N ; -- [GXXEK] :: modernity; + modernum_N_N : N ; -- [DXXFS] :: present things/institutions (pl.); + modernus_A : A ; -- [DXXES] :: modern; + modero_V : V ; -- [XXXDX] :: check, slow down, control; + moderor_V : V ; -- [XXXBX] :: guide; control; regulate; govern; + modestia_F_N : N ; -- [XXXDX] :: restraint, temperateness; discipline; modesty; + modestus_A : A ; -- [XXXDX] :: restrained, mild; modest; reserved; disciplined; + modiatio_F_N : N ; -- [ELXES] :: corn-measuring; measuring by modii; + modicum_N_N : N ; -- [DXXCS] :: short/small time; short distance, little way; little, small amount; + modicus_A : A ; -- [XXXBX] :: moderate; temperate, restrained; small (Bee); + modicus_M_N : N ; -- [FXXDB] :: short/small time; short distance, little way; little, small amount; + modificatio_F_N : N ; -- [XXXES] :: measuring; measure; + modificatus_A : A ; -- [XXXEC] :: measured; + modifico_V : V ; -- [XXXES] :: limit; control; observe due measure; + modius_M_N : N ; -- [XXXDX] :: peck; Roman dry measure; (about 2 gallons/8000 cc); + modo_Adv : Adv ; -- [XXXAX] :: only, merely; just now/recently, lately; presently; + modo_Conj : Conj ; -- [XXXDX] :: but, if only; but only; + modulamen_N_N : N ; -- [EDXES] :: melody; + modulate_Adv : Adv ; -- [XDXDO] :: melodiously, in a musical manner; + modulatio_F_N : N ; -- [DDXCS] :: |singing, playing; melody, song; rhythmic/regular measure; marching in time; + modulator_M_N : N ; -- [XDXEO] :: composer, one who makes up tunes; musician, director of music (L+S); measurer; + modulor_V : V ; -- [XXXBX] :: sing; play; set to music; + modulus_M_N : N ; -- [XXXEC] :: little measure; + modus_M_N : N ; -- [XXXAX] :: manner, mode, way, method; rule, rhythm, beat, measure, size; bound, limit; + moecha_F_N : N ; -- [XXXDX] :: adulteress; slut; tart; + moechor_V : V ; -- [XXXDX] :: commit adultery; + moechus_M_N : N ; -- [XXXDX] :: adulterer; + moene_N_N : N ; -- [XXXAX] :: defensive/town walls (pl.), bulwarks; fortifications; fortified town; castle; + moenus_N_N : N ; -- [BXXFS] :: service; duty/office/function; gift, tribute, offering; bribe; (archaic munus); + moerens_A : A ; -- [XXXCO] :: sad, melancholy; mournful, gloomy woeful, doleful; mourning, lamenting (L+S); + moereo_V : V ; -- [XXXBO] :: grieve, be sad, mourn; bewail/mourn for/lament; utter mournfully; + moeror_M_N : N ; -- [XXXCO] :: grief, sorrow, sadness; mourning; lamentation (L+S); + moeste_Adv : Adv ; -- [XXXFO] :: sadly; mournfully; sorrowfully (Latham); with sadness (L+S); + moestifico_V2 : V2 ; -- [DXXES] :: grieve, make sad/sorrowful, sadden; + moestificus_A : A ; -- [EEXFS] :: saddening; + moestiter_Adv : Adv ; -- [XXXFO] :: sadly; mournfully; sorrowfully (Latham); in a way to indicate sorrow (L+S); + moestitia_F_N : N ; -- [XXXCO] :: sadness, sorrow, grief; source of grief; dullness, gloom; + moestitudo_F_N : N ; -- [XXXEO] :: sadness, sorrow, grief; source of grief; dullness, gloom; + moesto_V2 : V2 ; -- [XXXEO] :: grieve, make sad; afflict (L+S); + moestus_A : A ; -- [XXXAO] :: sad/unhappy; mournful/gloomy; mourning; stern/grim; ill-omened/inauspicious; + mola_F_N : N ; -- [XXXDX] :: millstone; ground meal; mill (pl.) [salsa ~ => salted meal, for sacrifices]; + molaris_M_N : N ; -- [XXXDX] :: rock as large as a millstone used as a missile; molar tooth; + molctaticus_A : A ; -- [XLXIO] :: fined, extracted as fine/penalty; + molecula_F_N : N ; -- [GSXEK] :: molecule; + molecularis_A : A ; -- [GSXEK] :: molecular; + molendinum_N_N : N ; -- [EXXFS] :: mill-house; + moles_F_N : N ; -- [XXXAO] :: ||crowd, throng; heavy responsibility/burden; difficulty/danger; might/force; + moleste_Adv : Adv ; -- [XXXDX] :: annoyingly; in a vexing/annoying/distressing/tiresome manner; + molestia_F_N : N ; -- [XXXDX] :: trouble, annoyance; + molesto_V : V ; -- [XXXDX] :: disturb, vex, annoy, worry, trouble; + molestus_A : A ; -- [XXXBX] :: annoying; troublesome; tiresome; [molestus esse => to be a worry/nuisance]; + molimen_N_N : N ; -- [XXXDX] :: effort, vehemence; bulk; weight; + molimentum_N_N : N ; -- [XXXDX] :: exertion, labor; + molinarius_M_N : N ; -- [XXXFS] :: miller; + molinula_F_N : N ; -- [XTXEK] :: grinder; (molinula cafearia = coffee-grinder); + molior_V : V ; -- [XXXBX] :: struggle, labor, labor at; construct, build; undertake, set in motion, plan; + molitio_F_N : N ; -- [EXXES] :: grinding; + mollesco_V : V ; -- [XXXDX] :: become soft; become gentle or effeminate; + molliculus_A : A ; -- [XXXEC] :: soft, tender; effeminate; + mollificatio_F_N : N ; -- [GXXEK] :: mollification; + mollio_V2 : V2 ; -- [XXXDX] :: soften, mitigate, make easier; civilize, tame, enfeeble; + mollipes_A : A ; -- [XXXEC] :: soft-footed; + mollis_A : A ; -- [XXXAO] :: |||tender, gentle; smooth, relaxing; languid (movement); amorous (writings); + molliter_Adv : Adv ; -- [XXXBO] :: calmly/quietly/softly/gently/smoothly/easily; w/out pain/anger/harshness; weakly + mollitia_F_N : N ; -- [XXXDX] :: softness, tenderness; weakness, effeminacy; + mollities_F_N : N ; -- [XXXDX] :: softness, tenderness; weakness, effeminacy; + mollitudo_F_N : N ; -- [XXXCO] :: softness, yielding quality; flexibility (voice); mildness/leniency; weakness; + molluscum_N_N : N ; -- [GXXEK] :: mollusk; + molo_V2 : V2 ; -- [XXXDX] :: grind; + molossus_M_N : N ; -- [FAXDV] :: hunting dog/Molessian hound; (Molessia in Epirus); metrical foot of three long; + molta_F_N : N ; -- [XLXCO] :: fine; penalty; penalty involving property (livestock, later money); + moltaticus_A : A ; -- [XLXIO] :: fined, extracted as fine/penalty; of/concerning a fine (Cas); + molto_V2 : V2 ; -- [BLXIO] :: punish, fine; extract as forfeit; sentence to pay; 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 ; - momentaneus_A : A ; - momentarius_A : A ; - momentosus_A : A ; - momentum_N_N : N ; - monacha_F_N : N ; - monachismus_M_N : N ; - monachus_M_N : N ; - monarcha_M_N : N ; - monarchia_F_N : N ; - monarchicus_A : A ; - monasterialis_A : A ; - monasterium_N_N : N ; - monasticus_A : A ; - monaules_M_N : N ; - monaulos_M_N : N ; - monaulus_M_N : N ; - moneaeum_N_N : N ; - monedula_F_N : N ; - moneo_V : V ; - moneta_F_N : N ; - monetabilis_A : A ; - monetalis_A : A ; - monetarius_A : A ; - monetarius_M_N : N ; - moneto_V : V ; - monialis_F_N : N ; - monile_N_N : N ; - monimentum_N_N : N ; - monitio_F_N : N ; - monitor_M_N : N ; - monitorius_A : A ; - monitus_M_N : N ; - monoceros_M_N : N ; - monocerotos_M_N : N ; - monochordon_N_N : N ; - monochordum_N_N : N ; - monochromatum_N_N : N ; - monodicus_A : A ; - monogama_F_N : N ; - monogamia_F_N : N ; + moly_2_N : N ; -- [XAXNS] :: plant (white flower and black root) (mythical used by Odysseus against Circe); + momen_N_N : N ; -- [XXXDX] :: movement; impulse; a trend; + momentaliter_Adv : Adv ; -- [DXXFS] :: in a moment; + momentana_F_N : N ; -- [DSXFS] :: delicate scales for weighing gold/silver/coins; + momentaneus_A : A ; -- [DXXCS] :: momentary, of brief duration; quick; + momentarius_A : A ; -- [XXXEO] :: momentary/of brief duration/quick; temporary/short-lived; quick-acting (poison); + momentosus_A : A ; -- [XXXFO] :: momentary, of brief duration; quick, rapid; + momentum_N_N : N ; -- [XXXBX] :: moment, importance, influence; motion, movement; impulse, effort; + monacha_F_N : N ; -- [EEXCE] :: nun; + monachismus_M_N : N ; -- [EEXCE] :: monasticism; monastic life; monarchism Cal); + monachus_M_N : N ; -- [EEXAE] :: monk; + monarcha_M_N : N ; -- [XXXDS] :: monarch; absolute ruler; + monarchia_F_N : N ; -- [DLXES] :: monarchy; absolute rule; + monarchicus_A : A ; -- [XXXEK] :: monarchical; + monasterialis_A : A ; -- [EEXCE] :: monastic; + monasterium_N_N : N ; -- [EEXAE] :: monastery; + monasticus_A : A ; -- [EEXCE] :: monastic; + monaules_M_N : N ; -- [XDXFS] :: flutist, player of single flute (monaulos); (also rude sexual reference); + monaulos_M_N : N ; -- [XDXFS] :: single flute, flute w/single pipe; (also rude sexual reference); + monaulus_M_N : N ; -- [XDXFS] :: single flute, flute w/single pipe; (also rude sexual reference); + moneaeum_N_N : N ; -- [EAXFP] :: plum; damson; + monedula_F_N : N ; -- [XXXES] :: jackdaw, daw; (Arbe turned into daw for betraying country for gold); + moneo_V : V ; -- [XXXAX] :: remind, advise, warn; teach; admonish; foretell, presage; + moneta_F_N : N ; -- [XXXCO] :: money/coinage; die on which coin is struck, stamp; mint, temple striking coins; + monetabilis_A : A ; -- [XXXFZ] :: coinable?; + monetalis_A : A ; -- [XXXEC] :: of the mint; + monetarius_A : A ; -- [DXXES] :: of/belonging to mint; monetary; + monetarius_M_N : N ; -- [DXXDS] :: master of mint; minter/coiner; money-dealer; + moneto_V : V ; -- [FXXFM] :: coin; mint; + monialis_F_N : N ; -- [FEXEE] :: nun; + monile_N_N : N ; -- [XXXBX] :: necklace, collar; collar (for horses and other animals); + monimentum_N_N : N ; -- [XXXDX] :: monument; + monitio_F_N : N ; -- [XXXDX] :: admonition, warning; advice; + monitor_M_N : N ; -- [XXXDX] :: counselor, preceptor; prompter; + monitorius_A : A ; -- [DXXES] :: serves-to-remind; + monitus_M_N : N ; -- [XXXDX] :: warning, command; advice, counsel; + monoceros_M_N : N ; -- [XXXNO] :: unicorn; (fabulous animal); + monocerotos_M_N : N ; -- [EXXFW] :: unicorn; (fabulous animal); + monochordon_N_N : N ; -- [DDXFS] :: monochord, instrument (1-string+soundboard); (by Guido in teaching); tonometer; + monochordum_N_N : N ; -- [DDXFZ] :: monochord, instrument (1-string+soundboard); (by Guido in teaching); tonometer; + monochromatum_N_N : N ; -- [DDXNS] :: one-color painting (Pliny); + monodicus_A : A ; -- [FXXFM] :: unique; + monogama_F_N : N ; -- [FXXEE] :: monogyny; monogamy; practice of having only one wife (at a time/ever); + monogamia_F_N : N ; -- [FXXEE] :: monogyny; monogamy; practice of having only one wife (at a time/ever); monogenesis_1_N : N ; -- [EEXEE] :: monogenesis; origin from one pair; - monogenesis_2_N : N ; - monogenesis_F_N : N ; - monogerminalis_A : A ; - monogrammos_A : A ; - monogrammus_A : A ; - monographia_F_N : N ; - monomachia_F_N : N ; - monometer_A : A ; - monopodium_N_N : N ; - monopolium_N_N : N ; - monosolis_A : A ; - monosyllaba_F_N : N ; - monosyllabon_N_N : N ; - monosyllabus_A : A ; - monotheismus_M_N : N ; - monotheista_M_N : N ; - monotheisticus_A : A ; - mons_M_N : N ; - monstratio_F_N : N ; - monstrator_M_N : N ; - monstrifer_A : A ; - monstrificus_A : A ; - monstrigenus_A : A ; - monstriger_A : A ; - monstro_V : V ; - monstrum_N_N : N ; - monstruosus_A : A ; - montanus_A : A ; - monticola_C_N : N ; - monticolus_A : A ; - montivagus_A : A ; - montosus_A : A ; - montuosus_A : A ; - monumentum_N_N : N ; - mora_F_N : N ; - moralis_A : A ; - moralitas_F_N : N ; - moraliter_Adv : Adv ; - morator_M_N : N ; - moratus_A : A ; - morbidus_A : A ; - morbillus_M_N : N ; - morbosus_A : A ; - morbus_M_N : N ; - morchella_F_N : N ; - mordacitas_F_N : N ; - mordaciter_Adv : Adv ; - mordax_A : A ; - mordeo_V : V ; - mordicatio_F_N : N ; - mordicus_Adv : Adv ; - moribundus_A : A ; - morigero_V : V ; - morigeror_V : V ; - morigerus_A : A ; - morio_M_N : N ; - morior_V : V ; - morologus_A : A ; - moror_V : V ; - morositas_F_N : N ; - morosus_A : A ; - morphologia_F_N : N ; - morphologicus_A : A ; - mors_F_N : N ; - morsus_M_N : N ; - mortalis_A : A ; - mortalitas_F_N : N ; - mortariolum_N_N : N ; - mortarium_N_N : N ; - morticinus_A : A ; - mortifer_A : A ; - mortificatio_F_N : N ; - mortifico_V2 : V2 ; - mortual_N_N : N ; - mortuus_A : A ; - mortuus_M_N : N ; - morua_F_N : N ; - morula_F_N : N ; - morulus_A : A ; - morum_N_N : N ; - morus_F_N : N ; - moruta_F_N : N ; - mos_M_N : N ; - motetum_N_N : N ; - motio_F_N : N ; - motivum_N_N : N ; - motivus_A : A ; - moto_V : V ; - motorius_A : A ; - motrum_N_N : N ; - motus_M_N : N ; - moveo_V : V ; - mox_Adv : Adv ; - mozetta_F_N : N ; - mozzetta_F_N : N ; - mucidus_A : A ; - mucinnium_N_N : N ; - mucor_M_N : N ; - mucro_M_N : N ; - mucus_M_N : N ; - mugil_M_N : N ; - mugilis_M_N : N ; - muginor_V : V ; - mugio_V2 : V2 ; - mugitus_M_N : N ; - mula_F_N : N ; - mulceo_V : V ; - mulco_V : V ; - mulcta_F_N : N ; - mulctaticius_A : A ; - mulctaticus_A : A ; - mulctatio_F_N : N ; - mulcto_V2 : V2 ; - mulctra_F_N : N ; - mulctrale_N_N : N ; - mulctrarium_N_N : N ; - mulctrum_N_N : N ; - mulgarium_N_N : N ; - mulgeo_V2 : V2 ; - muliebris_A : A ; - mulier_F_N : N ; - mulierarius_A : A ; - muliercula_F_N : N ; - mulierositas_F_N : N ; - mulierosus_A : A ; - mulinus_A : A ; - mulio_M_N : N ; - mullus_M_N : N ; - mulomedicus_M_N : N ; - mulsum_N_N : N ; - multa_F_N : N ; - multae_N : N ; - multangulus_A : A ; - multaticius_A : A ; - multaticus_A : A ; - multatio_F_N : N ; - multesimus_A : A ; - multi_N : N ; - multicanus_A : A ; - multicavus_A : A ; - multicellularis_A : A ; - multicium_N_N : N ; - multicius_A : A ; - multicolor_A : A ; - multifariam_Adv : Adv ; - multifarius_A : A ; - multifidus_A : A ; - multifluus_A : A ; - multiformis_A : A ; - multigener_A : A ; - multigenus_A : A ; - multijugis_A : A ; - multijugus_A : A ; - multiloquax_A : A ; - multiloquium_N_N : N ; - multiloquus_A : A ; - multimodis_Adv : Adv ; - multimodus_A : A ; - multiplex_A : A ; - multiplicabilis_A : A ; - multiplicatio_F_N : N ; - multiplicator_M_N : N ; - multiplicitas_F_N : N ; - multipliciter_Adv : Adv ; - multiplico_V2 : V2 ; - multiplicus_A : A ; - multiscius_A : A ; - multitudo_F_N : N ; - multivorancia_F_N : N ; - multizonium_N_N : N ; - multo_Adv : Adv ; - multo_V2 : V2 ; - multum_Adv : Adv ; - multum_N_N : N ; - multus_A : A ; - mulus_M_N : N ; - mumia_F_N : N ; - mundanus_A : A ; - mundanus_M_N : N ; - mundialis_A : A ; - mundialiter_Adv : Adv ; - mundializatio_F_N : N ; - munditia_F_N : N ; - mundities_F_N : N ; - mundo_V2 : V2 ; - mundus_A : A ; - mundus_M_N : N ; - munero_V2 : V2 ; - muneror_V : V ; + monogenesis_2_N : N ; -- [EEXEE] :: monogenesis; origin from one pair; + monogenesis_F_N : N ; -- [EEXEE] :: monogenesis; origin from one pair; + monogerminalis_A : A ; -- [GSXEK] :: monogerminal; monovular; of identical twins (from same egg); + monogrammos_A : A ; -- [XXXEO] :: sketched in outline; insubstantial, shadowy; jasper marked w/single line; + monogrammus_A : A ; -- [XXXEO] :: sketched in outline; insubstantial, shadowy; jasper marked w/single line; + monographia_F_N : N ; -- [GXXEK] :: monograph; + monomachia_F_N : N ; -- [GXXEK] :: duel; + monometer_A : A ; -- [XPXFS] :: monometric; of one meter; + monopodium_N_N : N ; -- [XXXEC] :: table with one foot; + monopolium_N_N : N ; -- [XLXEO] :: monopoly, right of exclusive sale in a community; + monosolis_A : A ; -- [XXXFS] :: single-soled; + monosyllaba_F_N : N ; -- [XDXES] :: monosyllable; + monosyllabon_N_N : N ; -- [DGXFS] :: monosyllable; + monosyllabus_A : A ; -- [DGXFS] :: monosyllabic; + monotheismus_M_N : N ; -- [GEXEK] :: monotheism; + monotheista_M_N : N ; -- [GEXEK] :: monotheist; + monotheisticus_A : A ; -- [GEXEK] :: monotheist; + mons_M_N : N ; -- [XXXAX] :: mountain; huge rock; towering heap; + monstratio_F_N : N ; -- [GXXEK] :: exhibition (of art, of objects); + monstrator_M_N : N ; -- [XXXDX] :: guide, demonstrator; + monstrifer_A : A ; -- [XYXDO] :: producing monsters/portents; monster-bearing (L+S); monstrous/horrid, misshapen; + monstrificus_A : A ; -- [EXXFS] :: monstrous; strange; + monstrigenus_A : A ; -- [XYXES] :: monster-bearing; producing monsters; + monstriger_A : A ; -- [XYXES] :: producing monsters/portents; monster-bearing (L+S); monstrous/horrid, misshapen; + monstro_V : V ; -- [XXXBX] :: show; point out, reveal; advise, teach; + monstrum_N_N : N ; -- [XXXBX] :: monster; portent, unnatural thing/event regarded as omen/sign/portent; + monstruosus_A : A ; -- [XXXDX] :: strange, monstrous, ill-omened; + montanus_A : A ; -- [XXXDX] :: mountainous; + monticola_C_N : N ; -- [XXXDX] :: mountain dweller; highlander; mountaineer; + monticolus_A : A ; -- [XXXDX] :: mountain dwelling; + montivagus_A : A ; -- [XXXEC] :: wandering over the mountains; + montosus_A : A ; -- [XXXFS] :: mountainous; (also montuosus); + montuosus_A : A ; -- [XXXDX] :: mountainous; + monumentum_N_N : N ; -- [XXXAX] :: reminder; memorial, monument, tomb; record, literary work, history, book; + mora_F_N : N ; -- [XXXAX] :: delay, hindrance, obstacle; pause; + moralis_A : A ; -- [XSHCO] :: moral; of philosophy, concerned w/ethics; concerned w/moral philosophy; + moralitas_F_N : N ; -- [GXXEK] :: morality, morals; + moraliter_Adv : Adv ; -- [GXXEK] :: morally; + morator_M_N : N ; -- [XXXDX] :: delayer; loiterer; + moratus_A : A ; -- [XXXDX] :: endowed with character or manners of a specified kind; gentle, civilized; + morbidus_A : A ; -- [XXXDX] :: diseased; unhealthy; + morbillus_M_N : N ; -- [GXXEK] :: measles; + morbosus_A : A ; -- [XXXCO] :: sickly/unhealthy/diseased/prone to illness; morbidly lustful; keen on/mad about; + morbus_M_N : N ; -- [XXXAX] :: sickness, illness, weakness; disease; distemper; distress; vice; + morchella_F_N : N ; -- [GXXEK] :: morel; + mordacitas_F_N : N ; -- [XXXEO] :: stinging, property of stinging; biting sarcasm (Erasmus); + mordaciter_Adv : Adv ; -- [XXXFO] :: sharply, bitingly, stingingly, caustically; + mordax_A : A ; -- [XXXDX] :: biting, snappish; tart; cutting, sharp; caustic; + mordeo_V : V ; -- [XXXBX] :: bite; sting; hurt, pain; vex; criticize, carp at; eat, consume; bite/cut into; + mordicatio_F_N : N ; -- [EXXFS] :: gripping; + mordicus_Adv : Adv ; -- [XXXDX] :: by biting, with the teeth; tenaciously; + moribundus_A : A ; -- [XXXDX] :: dying; + morigero_V : V ; -- [XXXDO] :: be compliant/indulgent to; gratify; humor; + morigeror_V : V ; -- [XXXDO] :: be compliant/indulgent to; gratify; humor; + morigerus_A : A ; -- [XXXCO] :: compliant, indulgent; obliging; + morio_M_N : N ; -- [XXXCO] :: fool, idiot kept as a laughing-stock; jester (Erasmus); + morior_V : V ; -- [BXXCO] :: die; expire, pass/die/wither away/out; decay; (FUT ACT PPL only, moriturus); + morologus_A : A ; -- [XXXEC] :: talking like a fool; + moror_V : V ; -- [XXXAX] :: delay; stay, stay behind; devote attention to; + morositas_F_N : N ; -- [XXXES] :: peevishness, moroseness; G:pedantry; + morosus_A : A ; -- [XXXDX] :: hard to please, persnickety; + morphologia_F_N : N ; -- [GXXEK] :: morphology; + morphologicus_A : A ; -- [GXXEK] :: morphological; + mors_F_N : N ; -- [XXXAX] :: death; corpse; annihilation; + morsus_M_N : N ; -- [XXXBX] :: bite, sting; anguish, pain; jaws; teeth; + mortalis_A : A ; -- [XXXAX] :: mortal, transient; human, of human origin; + mortalitas_F_N : N ; -- [XXXDX] :: mortality; death; + mortariolum_N_N : N ; -- [DXXDS] :: small mortar; + mortarium_N_N : N ; -- [XXXCO] :: mortar; bowl/trough in which materials are pounded/ground + morticinus_A : A ; -- [XAXCO] :: not slaughtered, of animal that died natural death/its flesh; of dead tissue; + mortifer_A : A ; -- [XXXDX] :: deadly, fatal, death bringing; destructive; + mortificatio_F_N : N ; -- [DEXDS] :: killing; death; (eccles.); + mortifico_V2 : V2 ; -- [DEXES] :: kill; destroy; mortify, subdue, reduce to weakness; + mortual_N_N : N ; -- [XXXEC] :: funeral song, dirge; + mortuus_A : A ; -- [XXXAX] :: dead, deceased; limp; + mortuus_M_N : N ; -- [XXXDX] :: corpse, the dead one; the dead; + morua_F_N : N ; -- [GXXEK] :: cod; + morula_F_N : N ; -- [DXXES] :: brief delay; + morulus_A : A ; -- [BXXFS] :: black; dark colored; + morum_N_N : N ; -- [XXXDX] :: mulberry; fruit of the black mulberry; + morus_F_N : N ; -- [XXXDX] :: black mulberry tree; + moruta_F_N : N ; -- [GXXEK] :: cod; + mos_M_N : N ; -- [XXXAX] :: custom, habit; mood, manner, fashion; character (pl.), behavior, morals; + motetum_N_N : N ; -- [GDXEK] :: anthem (music); + motio_F_N : N ; -- [XBXCO] :: motion, movement; shivering, ague; removal; + motivum_N_N : N ; -- [FXXEZ] :: motive?; emotion? (effect of being moved); + motivus_A : A ; -- [FXXEZ] :: stirred; moved; + moto_V : V ; -- [XXXDX] :: set in motion, shake, stir, etc; + motorius_A : A ; -- [GXXEK] :: motorized (adj.); + motrum_N_N : N ; -- [GTXEK] :: motor; + motus_M_N : N ; -- [XXXBX] :: movement, motion; riot, commotion, disturbance; gesture; emotion; + moveo_V : V ; -- [XXXAX] :: move, stir, agitate, affect, provoke, disturb; [movere se => dance]; + mox_Adv : Adv ; -- [XXXAX] :: soon, next (time/position); + mozetta_F_N : N ; -- [FXXEE] :: short cape; + mozzetta_F_N : N ; -- [FXXEE] :: short cape; + mucidus_A : A ; -- [XXXEC] :: sniveling; moldy, musty; + mucinnium_N_N : N ; -- [GXXEK] :: handkerchief; + mucor_M_N : N ; -- [EAXFS] :: bread-mold; wine-must; + mucro_M_N : N ; -- [XXXBX] :: sword, sword point, sharp point; + mucus_M_N : N ; -- [XXXDX] :: mucus, snot; recess, innermost part of a house; + mugil_M_N : N ; -- [XXXDO] :: sea fish; gray mullet; (used in punishing adulterers Juv. 10.317 L+S); + mugilis_M_N : N ; -- [XXXDO] :: sea fish; gray mullet; (used in punishing adulterers Juv. 10.317 L+S); + muginor_V : V ; -- [XXXEC] :: loiter, dally; + mugio_V2 : V2 ; -- [XXXDX] :: low, bellow; make a loud deep noise; + mugitus_M_N : N ; -- [XXXDX] :: lowing, bellowing; roaring, rumble; + mula_F_N : N ; -- [XXXDX] :: she-mule; mule; + mulceo_V : V ; -- [XXXBX] :: stroke, touch lightly, fondle, soothe, appease, charm, flatter, delight; + mulco_V : V ; -- [XXXDX] :: beat up, thrash, cudgel; worst, treat roughly; + mulcta_F_N : N ; -- [XLXCO] :: fine; penalty; penalty involving property (livestock, later money); + mulctaticius_A : A ; -- [XLXEO] :: fined, extracted as fine/penalty; + mulctaticus_A : A ; -- [XLXIO] :: fined, extracted as fine/penalty; + mulctatio_F_N : N ; -- [XLXEO] :: imposition of fine; + mulcto_V2 : V2 ; -- [XLXCO] :: punish, fine; extract as forfeit; sentence to pay; + mulctra_F_N : N ; -- [XAXDO] :: milk pail, milking pail; milk in a milk pail (L+S); + mulctrale_N_N : N ; -- [XAXES] :: milk pail, milking pail; + mulctrarium_N_N : N ; -- [XAXES] :: milk pail, milking pail; + mulctrum_N_N : N ; -- [XAXDO] :: milk pail, milking pail; + mulgarium_N_N : N ; -- [XAXFO] :: milk pail, milking pail; + mulgeo_V2 : V2 ; -- [XAXCO] :: milk (an animal); extract (milk); + muliebris_A : A ; -- [XXXDX] :: feminine, womanly, female; woman's; womanish, effeminate; + mulier_F_N : N ; -- [XXXAX] :: woman; wife; mistress; + mulierarius_A : A ; -- [XXXEC] :: womanish; + muliercula_F_N : N ; -- [XXXDX] :: little/weak/foolish woman; little hussy; + mulierositas_F_N : N ; -- [XXXEC] :: love of women; + mulierosus_A : A ; -- [XXXEC] :: fond of women; + mulinus_A : A ; -- [XXXEC] :: of a mule, mulish; + mulio_M_N : N ; -- [XXXDX] :: muleteer, mule driver, mule-skinner; + mullus_M_N : N ; -- [XXXDX] :: red mullet (fish); + mulomedicus_M_N : N ; -- [XXXFS] :: mule-doctor; + mulsum_N_N : N ; -- [XXXDX] :: honeyed wine; (common Roman drink of honey mixed into wine); + multa_F_N : N ; -- [XLXCO] :: fine; penalty; penalty involving property (livestock, later money); + multae_N : N ; -- [XXXCX] :: many women (pl.); + multangulus_A : A ; -- [XXXEC] :: many-cornered; + multaticius_A : A ; -- [XLXEO] :: fined, extracted as fine/penalty; of/concerning a fine (Cas); + multaticus_A : A ; -- [XLXIO] :: fined, extracted as fine/penalty; of/concerning a fine (Cas); + multatio_F_N : N ; -- [XLXEO] :: imposition of fine; + multesimus_A : A ; -- [XXXEC] :: very small; + multi_N : N ; -- [XXXCX] :: many men/people (pl.); the common/ordinary people; the many; common herd; + multicanus_A : A ; -- [FXXEN] :: harmonious; + multicavus_A : A ; -- [XXXDX] :: porous; + multicellularis_A : A ; -- [HSXEK] :: multicellular; + multicium_N_N : N ; -- [XXXFS] :: splendid garment; transparent garment; + multicius_A : A ; -- [XXXFS] :: soft; splendid; transparent; + multicolor_A : A ; -- [EXXFS] :: many-colored; + multifariam_Adv : Adv ; -- [XXXDX] :: in many places; + multifarius_A : A ; -- [EXXES] :: many-fold; + multifidus_A : A ; -- [XXXDX] :: splintered; + multifluus_A : A ; -- [DXXES] :: flowing copiously; + multiformis_A : A ; -- [XXXEC] :: having many shapes; + multigener_A : A ; -- [XXXEO] :: various/varied, of many different kinds/sorts/types; + multigenus_A : A ; -- [XXXDX] :: of many different sorts; + multijugis_A : A ; -- [XXXEC] :: yoked many together; manifold, of many sorts; + multijugus_A : A ; -- [XXXEC] :: yoked many together; manifold, of many sorts; + multiloquax_A : A ; -- [XXXEC] :: talkative; + multiloquium_N_N : N ; -- [XXXDO] :: loquaciousness, excessive talking; + multiloquus_A : A ; -- [XXXEO] :: garrulous, talkative, that talks too much; + multimodis_Adv : Adv ; -- [XXXEC] :: in many ways, variously; + multimodus_A : A ; -- [DXXDS] :: various, manifold; + multiplex_A : A ; -- [XXXAO] :: |multitudinous, many at once/together; numerous; changeable/shifting; versatile; + multiplicabilis_A : A ; -- [XXXFO] :: multiple, manifold; + multiplicatio_F_N : N ; -- [XSXDO] :: multiplication; act of increasing in number/quantity; multiple; + multiplicator_M_N : N ; -- [GSXEK] :: multiplier (math.); + multiplicitas_F_N : N ; -- [DXXES] :: multiplicity; manifoldness; + multipliciter_Adv : Adv ; -- [XXXEO] :: in many different ways; + multiplico_V2 : V2 ; -- [XXXBO] :: multiply; repeat; increase (number/quantity/extent); have/use on many occasions; + multiplicus_A : A ; -- [XXXFO] :: compound, complex, composed of many elements; + multiscius_A : A ; -- [EXXFS] :: much-knowing; + multitudo_F_N : N ; -- [XXXAX] :: multitude, great number; crowd; rabble, mob; + multivorancia_F_N : N ; -- [EEXES] :: gluttony; + multizonium_N_N : N ; -- [GXXEK] :: block of flats; + multo_Adv : Adv ; -- [XXXDX] :: much, by much, a great deal, very; most; by far; long (before/after); + multo_V2 : V2 ; -- [XLXCO] :: punish, fine; extract as forfeit; sentence to pay; + multum_Adv : Adv ; -- [XXXDX] :: much, greatly, plenty, very; more; most; + multum_N_N : N ; -- [XXXDX] :: many things (pl.); much; many; + multus_A : A ; -- [XXXAX] :: much, many, great, many a; large, intense, assiduous; tedious; + mulus_M_N : N ; -- [XXXDX] :: mule; + mumia_F_N : N ; -- [GXXEK] :: mummy; + mundanus_A : A ; -- [XXXBO] :: worldly; of/belonging to the world/universe; mundane; of this world (Bee); + mundanus_M_N : N ; -- [XXXCO] :: inhabitant of the world; worldly person, cosmopolitan; + mundialis_A : A ; -- [DEXDS] :: worldly, belonging to the world; mundane; of sacred vault of Ceres (OLD); + mundialiter_Adv : Adv ; -- [DEXFS] :: in the manner of the world; + mundializatio_F_N : N ; -- [GXXEK] :: internationalization; + munditia_F_N : N ; -- [XXXDX] :: cleanness, elegance of appearance, manners or taste; + mundities_F_N : N ; -- [XXXDX] :: cleanness, elegance of appearance, manners or taste; + mundo_V2 : V2 ; -- [XXXDO] :: clean, cleanse, make clean/tidy; (eccl. - ceremonially/spiritually); + mundus_A : A ; -- [XXXAX] :: clean, cleanly, nice, neat, elegant, delicate; refined, pure; + mundus_M_N : N ; -- [XXXAX] :: universe, heavens; world, mankind; toilet/dress (woman), ornament, decoration; + munero_V2 : V2 ; -- [XXXEC] :: give, present; + muneror_V : V ; -- [XXXEC] :: give, present; municeps_F_N : N ; -- [XXXCO] :: citizen/native (of a municipium/municipality); - municeps_M_N : N ; - municipalis_A : A ; - municipatim_Adv : Adv ; - municipatio_F_N : N ; - municipatus_M_N : N ; - municipiolum_N_N : N ; - municipium_N_N : N ; + municeps_M_N : N ; -- [XXXCO] :: citizen/native (of a municipium/municipality); + municipalis_A : A ; -- [XXXCO] :: of/belonging to/typical of/inhabiting/from a municipium; provincial (insult); + municipatim_Adv : Adv ; -- [XLXEO] :: by municipalities/municipia, by free towns; as a municipality; + municipatio_F_N : N ; -- [DEXES] :: citizenship; + municipatus_M_N : N ; -- [XLXES] :: citizenship; fact of belonging to the same municipality (OLD); + municipiolum_N_N : N ; -- [DLXFS] :: little municipality/municipium; + municipium_N_N : N ; -- [GXXEK] :: township (administrative division); 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 ; - munificens_A : A ; - munificentia_F_N : N ; - munificus_A : A ; - munimen_N_N : N ; - munimentum_N_N : N ; - munio_V2 : V2 ; - munitio_F_N : N ; - munitiuncula_F_N : N ; - munitor_M_N : N ; - munitus_A : A ; - munium_N_N : N ; - munus_N_N : N ; - munusculum_N_N : N ; - muraena_F_N : N ; - muralis_A : A ; - muratus_A : A ; - murdrum_N_N : N ; - murelegus_M_N : N ; - murena_F_N : N ; - murex_M_N : N ; - muria_F_N : N ; - muries_F_N : N ; - murilega_F_N : N ; - murilegius_M_N : N ; - murilegus_M_N : N ; - murinus_A : A ; - murmillo_M_N : N ; - murmur_M_N : N ; - murmur_N_N : N ; - murmuratio_F_N : N ; - murmuro_V : V ; - murra_F_N : N ; - murreus_A : A ; - murus_M_N : N ; + munifes_M_N : N ; -- [XXXEO] :: one who performs duties; soldier who does not have exemption from fatigues; + munificator_M_N : N ; -- [FXXEN] :: gift-bestower; + munifice_Adv : Adv ; -- [XXXEO] :: liberally, generously, munificently; unstintingly; bountifully (L+S); + munificens_A : A ; -- [XXXCS] :: bountiful, generous, liberal, munificent; + munificentia_F_N : N ; -- [XXXDX] :: bountifulness, munificence; + munificus_A : A ; -- [XXXBO] :: |subject to tax/duty; dutiful, performing one's obligations; + munimen_N_N : N ; -- [XXXDX] :: fortification; defense; + munimentum_N_N : N ; -- [XXXDX] :: fortification, bulwark; defense, protection; + munio_V2 : V2 ; -- [XXXBX] :: fortify; strengthen; protect, defend, safeguard; build (road); + munitio_F_N : N ; -- [XXXDX] :: fortifying; fortification; + munitiuncula_F_N : N ; -- [EWXFS] :: small/little fortification/stronghold; + munitor_M_N : N ; -- [XXXDX] :: one who builds fortifications; + munitus_A : A ; -- [XXXDX] :: defended, fortified; protected, secured, safe; + munium_N_N : N ; -- [XXXDX] :: duties (pl.), functions; + munus_N_N : N ; -- [XXXAX] :: service; duty, office, function; gift; tribute, offering; bribes (pl.); + munusculum_N_N : N ; -- [XXXDX] :: small present or favor; + muraena_F_N : N ; -- [XXXDX] :: kind of eel, the moray or lamprey; + muralis_A : A ; -- [XXXDX] :: of walls; of a (city) wall; turreted; mural; + muratus_A : A ; -- [XXXFO] :: walled, surrounded by walls; + murdrum_N_N : N ; -- [FLXFJ] :: murder; + murelegus_M_N : N ; -- [FAXEM] :: cat; (mouser); + murena_F_N : N ; -- [XXXDX] :: kind of eel, the moray or lamprey; + murex_M_N : N ; -- [XXXDX] :: purple fish, shellfish which gave Tyrian dye; purple dye; purple cloth; + muria_F_N : N ; -- [XXXCO] :: brine, salt liquor, pickling; + muries_F_N : N ; -- [XXXEO] :: brine, salt liquor, pickling; + murilega_F_N : N ; -- [FAXEM] :: cat; (mouser); + murilegius_M_N : N ; -- [FAXEM] :: cat; (mouser); + murilegus_M_N : N ; -- [FAXEM] :: cat; (mouser); + murinus_A : A ; -- [GXXEK] :: gray-mouse-colored + murmillo_M_N : N ; -- [XXXCO] :: gladiator who wore Gallic armor and fish-topped helmet; (usu. fought retiarius); + murmur_M_N : N ; -- [XXXFO] :: murmur/mutter; whisper/rustle, hum/buzz; low noise; roar/growl/grunt/rumble; + murmur_N_N : N ; -- [XXXBO] :: murmur/mutter; whisper/rustle, hum/buzz; low noise; roar/growl/grunt/rumble; + murmuratio_F_N : N ; -- [XXXEO] :: grumbling, discontented muttering; uttering of low continuous cries; + murmuro_V : V ; -- [XXXDX] :: hum, murmur, mutter; roar; + murra_F_N : N ; -- [XXXCO] :: myrrh (aromatic gum/ointment); tree source of myrrh (Commiphora schimperi); + murreus_A : A ; -- [XXXDX] :: having color of myrrh, reddish-brown; + murus_M_N : N ; -- [XXXAX] :: wall, city wall; mus_F_N : N ; -- [XXXBX] :: mouse; - mus_M_N : N ; - musa_F_N : N ; - musaeus_A : A ; - musca_F_N : N ; - muscarium_N_N : N ; - muscatum_N_N : N ; - muscidus_A : A ; - muscipula_F_N : N ; - muscipulum_N_N : N ; - muscosus_A : A ; - musculosus_A : A ; - musculus_M_N : N ; - muscus_M_N : N ; - musica_F_N : N ; - musicographus_M_N : N ; - musicus_A : A ; - musinor_V : V ; - musivum_N_N : N ; - musivus_A : A ; - mussito_V : V ; - musso_V : V ; - mustaceum_N_N : N ; - mustaceus_M_N : N ; - mustela_F_N : N ; - mustella_F_N : N ; - mustes_M_N : N ; - musteus_A : A ; - mustum_N_N : N ; - mustus_A : A ; - mutabilis_A : A ; - mutabilitas_F_N : N ; - mutabiliter_Adv : Adv ; - mutatio_F_N : N ; - mutatrum_N_N : N ; - mutilo_V : V ; - mutilus_A : A ; - mutinium_N_N : N ; - muto_M_N : N ; - muto_V : V ; - muttio_V : V ; - mutto_M_N : N ; - muttonium_N_N : N ; - mutuatio_F_N : N ; - mutuens_A : A ; - mutulus_M_N : N ; - mutunium_N_N : N ; - mutuo_V : V ; - mutuor_V : V ; - mutus_A : A ; - mutuus_A : A ; - myalgia_F_N : N ; - mydion_N_N : N ; - myocardium_N_N : N ; - myoparo_M_N : N ; - myoparon_M_N : N ; - myopia_F_N : N ; - myops_A : A ; - myosotis_F_N : N ; - myrepsicus_A : A ; - myriadalis_A : A ; + mus_M_N : N ; -- [XXXBX] :: mouse; + musa_F_N : N ; -- [XXXAX] :: muse (one of the goddesses of poetry, music, etc.); sciences/poetry (pl.); + musaeus_A : A ; -- [XPXFS] :: of the Muses; poetical; + musca_F_N : N ; -- [XAXCO] :: fly (insect); gadfly, bothersome person; + muscarium_N_N : N ; -- [XXXEC] :: fly trap; + muscatum_N_N : N ; -- [GXXEK] :: nutmeg; + muscidus_A : A ; -- [EXXFS] :: mossy; + muscipula_F_N : N ; -- [XXXEC] :: mouse trap; + muscipulum_N_N : N ; -- [XXXEC] :: mouse trap; + muscosus_A : A ; -- [XXXDX] :: mossy; + musculosus_A : A ; -- [EBXFS] :: muscular; + musculus_M_N : N ; -- [XXXCO] :: |B:muscle; W:military shed, mantelet, "mousie"; small boat (mydion); + muscus_M_N : N ; -- [XXXDX] :: moss; + musica_F_N : N ; -- [XXXBX] :: music; + musicographus_M_N : N ; -- [GXXEK] :: composer; + musicus_A : A ; -- [XXXEC] :: of/belonging to poetry or music, musical; + musinor_V : V ; -- [XXXNO] :: deliberate about; + musivum_N_N : N ; -- [EDXFS] :: mosaic; + musivus_A : A ; -- [EDXFS] :: muse-like; artistic; + mussito_V : V ; -- [XXXCO] :: mutter/whisper, talk in subdued tones; keep quiet/say nothing (about); + musso_V : V ; -- [XXXCO] :: mutter/whisper (discontently); hum (bee); keep quiet (about); hem/haw; hesitate; + mustaceum_N_N : N ; -- [XXXEC] :: must-cake, a sort of wedding cake; + mustaceus_M_N : N ; -- [XXXEC] :: must-cake, a sort of wedding cake; + mustela_F_N : N ; -- [XXXDX] :: weasel; + mustella_F_N : N ; -- [XXXDX] :: weasel; + mustes_M_N : N ; -- [XEXEO] :: initiate, one initiated in secret rites; + musteus_A : A ; -- [XAXFS] :: must-like; of new wine; fresh/young; + mustum_N_N : N ; -- [XXXCO] :: unfermented/partially fermented grape juice/wine, must; + mustus_A : A ; -- [XXXCO] :: fresh, young; unfermented/partially fermented (wine); + mutabilis_A : A ; -- [XXXDX] :: changeable; inconstant; + mutabilitas_F_N : N ; -- [XXXEO] :: changeability, liability to change; fickleness; inconstancy; + mutabiliter_Adv : Adv ; -- [XXXFO] :: with changeability of purpose; inconstantly; + mutatio_F_N : N ; -- [XXXDX] :: change, alteration; interchange, exchange; + mutatrum_N_N : N ; -- [GTXEK] :: switch; + mutilo_V : V ; -- [XXXDX] :: maim, mutilate; lop/cut/chop off, crop; cut short; + mutilus_A : A ; -- [XXXDX] :: maimed, broken, mutilated; hornless, having lost/stunted horns; + mutinium_N_N : N ; -- [XXXFO] :: penis; (rude); + muto_M_N : N ; -- [XXXEO] :: penis; (rude); + muto_V : V ; -- [XXXAX] :: move, change, shift, alter, exchange, substitute (for); modify; + muttio_V : V ; -- [XXXCO] :: mutter, murmur; + mutto_M_N : N ; -- [XXXEO] :: penis; (rude); + muttonium_N_N : N ; -- [XXXFO] :: penis; (rude); + mutuatio_F_N : N ; -- [XXXDX] :: borrowing; + mutuens_A : A ; -- [XXXEO] :: borrowing; + mutulus_M_N : N ; -- [XTXCO] :: projecting shelf/bracket; slab under corona of cornice, mutule, modillion; + mutunium_N_N : N ; -- [XXXFO] :: penis; (rude); + mutuo_V : V ; -- [FXXEM] :: lend; exchange; + mutuor_V : V ; -- [XXXCO] :: borrow, obtain on loan; + mutus_A : A ; -- [XXXBX] :: dumb, silent, mute; speechless; + mutuus_A : A ; -- [XXXBX] :: borrowed, lent; mutual, in return; + myalgia_F_N : N ; -- [GBXEK] :: myalgia/myalgy; (morbid condition of a muscle); muscular rheumatism; + mydion_N_N : N ; -- [XWXEO] :: small boat; + myocardium_N_N : N ; -- [GBXEK] :: myocardium, muscular substance of the heart; + myoparo_M_N : N ; -- [XWXEC] :: small piratical galley; + myoparon_M_N : N ; -- [XXXDX] :: light naval vessel; + myopia_F_N : N ; -- [GBXEK] :: myopia; + myops_A : A ; -- [FBXEK] :: myopic; + myosotis_F_N : N ; -- [GAXEK] :: forget-me-not; + myrepsicus_A : A ; -- [EXXFP] :: aromatic; of/for unguents; + myriadalis_A : A ; -- [FSXEM] :: ten-thousand-fold; 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 ; - myriophllum_N_N : N ; - myristica_F_N : N ; - myrmillo_M_N : N ; - myrobalanum_N_N : N ; - myropoeus_M_N : N ; - myrra_F_N : N ; - myrrha_F_N : N ; - myrtetum_N_N : N ; - myrteus_A : A ; - myrtillus_M_N : N ; - myrtum_N_N : N ; - myrtus_F_N : N ; - mysta_M_N : N ; - mystagogus_M_N : N ; - mystax_M_N : N ; - mysterion_N_N : N ; - mysterium_N_N : N ; - mysterius_A : A ; - mystes_M_N : N ; - mystetum_N_N : N ; - mystice_Adv : Adv ; - mysticum_N_N : N ; - mysticus_A : A ; - mythicos_A : A ; - mythistoria_F_N : N ; - mythistoricus_A : A ; - mythologia_F_N : N ; - mythologicum_N_N : N ; - mythologicus_A : A ; - mythos_M_N : N ; - mythus_M_N : N ; - mytulus_M_N : N ; - myxa_F_N : N ; - myxum_N_N : N ; - myxus_M_N : N ; - nable_N_N : N ; - nablium_N_N : N ; - nablum_N_N : N ; - nadir_N : N ; - nae_Adv : Adv ; - naevus_M_N : N ; - nam_Conj : Conj ; - namque_Conj : Conj ; - nanciscor_V : V ; - nanus_M_N : N ; - naphtha_F_N : N ; - naptha_F_N : N ; - narcissinus_A : A ; - narcissismus_M_N : N ; - narcissus_M_N : N ; - narcomania_F_N : N ; - narcoticus_A : A ; - nardifer_A : A ; - nardinum_N_N : N ; - nardinus_A : A ; - nardum_N_N : N ; - nardus_F_N : N ; - naris_F_N : N ; - narrabilis_A : A ; - narratio_F_N : N ; - narratiuncula_F_N : N ; - narratus_M_N : N ; - narro_V : V ; - narta_F_N : N ; - nartatio_F_N : N ; - nartator_M_N : N ; - nartatorius_A : A ; - narthecium_N_N : N ; - narto_V : V ; - nasalizatio_F_N : N ; - nasciturus_A : A ; - nascor_V : V ; - nassa_F_N : N ; - nassiterna_F_N : N ; - nasturcium_N_N : N ; - nasus_M_N : N ; - nasutus_A : A ; - nata_F_N : N ; - natalicium_N_N : N ; - natalicius_A : A ; - natalis_A : A ; - natalis_M_N : N ; - natatilis_A : A ; - natatilis_M_N : N ; - natator_M_N : N ; - natatus_M_N : N ; - natio_F_N : N ; - nationalis_A : A ; - nationalismus_M_N : N ; - nationalitas_F_N : N ; - natis_F_N : N ; - nativitas_F_N : N ; - nativus_A : A ; - nato_V : V ; - natrix_F_N : N ; - natura_F_N : N ; - naturalis_A : A ; - naturalis_M_N : N ; - naturaliter_Adv : Adv ; - naturalizatio_F_N : N ; - naturans_A : A ; - naturo_V : V ; - natus_A : A ; - natus_M_N : N ; - nauarchia_F_N : N ; - nauarchus_M_N : N ; - naucleria_F_N : N ; - nauclericus_A : A ; - nauclerius_A : A ; - nauclerius_M_N : N ; - nauclerus_M_N : N ; - naucum_N_N : N ; - naufragium_N_N : N ; - naufrago_V : V ; - naufragus_A : A ; - naulum_N_N : N ; - naupegus_M_N : N ; - nausea_F_N : N ; - nauseo_V : V ; - nauseola_F_N : N ; - nausia_F_N : N ; - nausio_V : V ; - nauta_M_N : N ; - nauticus_A : A ; - nauticus_M_N : N ; - navale_N_N : N ; - navalis_A : A ; - navanter_Adv : Adv ; - navicula_F_N : N ; - navicularia_F_N : N ; - navicularius_A : A ; - navifragus_A : A ; - navigabilis_A : A ; - navigatio_F_N : N ; - naviger_A : A ; - navigium_N_N : N ; - navigo_V : V ; - navis_F_N : N ; - navita_M_N : N ; - naviter_Adv : Adv ; - navmachia_F_N : N ; - navmachiarius_A : A ; - navmachiarius_M_N : N ; - navo_V : V ; - navus_A : A ; - nazaraeus_M_N : N ; - nazismus_M_N : N ; - nazista_M_N : N ; - nazoreus_M_N : N ; - ne_Adv : Adv ; - ne_Conj : Conj ; - nebrida_M_N : N ; - nebula_F_N : N ; - nebulo_M_N : N ; - nebulosus_A : A ; - nec_Adv : Adv ; - nec_Conj : Conj ; - necdum_Conj : Conj ; - necessaria_F_N : N ; - necessarie_Adv : Adv ; - necessario_Adv : Adv ; - necessarium_N_N : N ; - necessarius_A : A ; - necessarius_M_N : N ; - necesse_A : A ; - necessis_A : A ; - necessitas_F_N : N ; - necessitudo_F_N : N ; - necesso_V2 : V2 ; - necessum_A : A ; - necessus_A : A ; - neclectus_A : A ; - neclectus_M_N : N ; - neclegens_A : A ; - neclegenter_Adv : Adv ; - neclegentia_F_N : N ; - neclego_V2 : V2 ; - necne_Conj : Conj ; - necnon_Adv : Adv ; - neco_V2 : V2 ; - necopinans_A : A ; - necopinatus_A : A ; - necopinus_A : A ; - necopmus_A : A ; - necrocomium_N_N : N ; - necrologia_F_N : N ; - necrosis_F_N : N ; - nectar_N_N : N ; - nectareus_A : A ; - necto_V2 : V2 ; - necubi_Adv : Adv ; - necunde_Adv : Adv ; - nedum_Conj : Conj ; - nefandus_A : A ; - nefarie_Adv : Adv ; - nefarium_N_N : N ; - nefarius_A : A ; - nefas_N : N ; - nefastus_A : A ; - negatio_F_N : N ; - negative_Adv : Adv ; - negativus_A : A ; - negator_M_N : N ; - negidius_M_N : N ; - negito_V : V ; - neglectim_Adv : Adv ; - neglectus_A : A ; - neglectus_M_N : N ; - neglegens_A : A ; - neglegenter_Adv : Adv ; - neglegentia_F_N : N ; - neglego_V2 : V2 ; - negligenter_Adv : Adv ; - negligentia_F_N : N ; - negligo_V2 : V2 ; - nego_V : V ; - negotiatio_F_N : N ; - negotiator_M_N : N ; - negotio_V : V ; - negotiolum_N_N : N ; - negotior_V : V ; - negotiosus_A : A ; - negotium_N_N : N ; + myrias_2_N : N ; -- [FSXEM] :: myriad, ten-thousand (the number); + myrica_F_N : N ; -- [XAXEO] :: tamarisk; (evergreen bush/shrub/tree); + myrice_F_N : N ; -- [XAXEO] :: tamarisk; (evergreen bush/shrub/tree); + myriophllon_N_N : N ; -- [XAHNO] :: milfoil; (plant w/divided leaves genus); common yarrow; water milfoil; + myriophllum_N_N : N ; -- [FAXEM] :: milfoil; (plant w/divided leaves genus); common yarrow; water milfoil; + myristica_F_N : N ; -- [GXXFK] :: nutmeger; (nutmeg grater?); (person from Connecticut is called nutmeger); + myrmillo_M_N : N ; -- [XXXCO] :: gladiator who wore Gallic armor and fish-topped helmet; (usu. fought retiarius); + myrobalanum_N_N : N ; -- [DAXNS] :: behen-nut; balsam (Pliny); + myropoeus_M_N : N ; -- [GXXEK] :: perfumer; + myrra_F_N : N ; -- [XXXCO] :: myrrh (aromatic gum/ointment); tree source of myrrh (Commiphora schimperi); + myrrha_F_N : N ; -- [XXXCO] :: myrrh (aromatic gum/ointment); tree source of myrrh (Commiphora schimperi); + myrtetum_N_N : N ; -- [XAXEE] :: myrtle-grove; + myrteus_A : A ; -- [XAXDX] :: of myrtle; + myrtillus_M_N : N ; -- [GXXEK] :: blueberry; + myrtum_N_N : N ; -- [XAXDX] :: myrtle-berry; + myrtus_F_N : N ; -- [XAXBX] :: myrtle, myrtle-tree; + mysta_M_N : N ; -- [XEXEC] :: initiate, one initiated in secret rites; priest at the mysteries (Cas); + mystagogus_M_N : N ; -- [XEXEC] :: priest who showed sacred places to strangers; + mystax_M_N : N ; -- [GBXEK] :: moustache; + mysterion_N_N : N ; -- [XEXCE] :: mystery, secret service/rite/worship (usu. pl.); secret, things not divulged; + mysterium_N_N : N ; -- [XEXCO] :: mystery, secret service/rite/worship (usu. pl.); secret, things not divulged; + mysterius_A : A ; -- [EEXCE] :: mysterious; of a mystery/secret rite; + mystes_M_N : N ; -- [XEXEO] :: initiate, one initiated in secret rites; priest at the mysteries (Cas); + mystetum_N_N : N ; -- [XAXEE] :: myrtle-grove; + mystice_Adv : Adv ; -- [DEXFS] :: mystically; + mysticum_N_N : N ; -- [XEXES] :: things (pl.) pertaining to/used in sacred mysteries/rites; + mysticus_A : A ; -- [XEXDO] :: of/belonging to/used in sacred mysteries/rites; secret, mysterious; mystical; + mythicos_A : A ; -- [XEXFO] :: mythic; of myth or fable; fabulous (L+S); mythical; + mythistoria_F_N : N ; -- [DXXFS] :: fabulous narrative; tall tale; + mythistoricus_A : A ; -- [DXXFS] :: fabulous; mixed with fable; + mythologia_F_N : N ; -- [DXXFS] :: mythological; of/belonging to mythology; + mythologicum_N_N : N ; -- [DXXFS] :: mythological matters (pl.); + mythologicus_A : A ; -- [DXXFS] :: mythological, mythologic, of mythology; + mythos_M_N : N ; -- [XEXEO] :: myth; fable; + mythus_M_N : N ; -- [FEXEE] :: myth; fable; + mytulus_M_N : N ; -- [XAXEC] :: edible mussel; + myxa_F_N : N ; -- [XAXFO] :: tree (genus Cordia); sebesten/it's plum-like fruit; lamp nozzle (L+S); + myxum_N_N : N ; -- [XAXFO] :: sebesten, plum-like fruit (of tree, genus Cordia, formerly Sebestena); + myxus_M_N : N ; -- [XAXFO] :: wick (of a lamp); + nable_N_N : N ; -- [XXXFO] :: psaltery; (pl. 10/12 stringed instrument w/sounding board behind strings OED); + nablium_N_N : N ; -- [XXXFS] :: psaltery; (10/12 stringed instrument w/sounding board behind strings OED); + nablum_N_N : N ; -- [XXXES] :: psaltery; (10/12 stringed instrument w/sounding board behind strings OED); + nadir_N : N ; -- [GXXEK] :: nadir; + nae_Adv : Adv ; -- [XXXEO] :: truly, indeed, verily, assuredly; (particle of assurance); (w/personal PRON); + naevus_M_N : N ; -- [XXXDX] :: mole (on the body); birthmark; + nam_Conj : Conj ; -- [XXXAX] :: for, on the other hand; for instance; + namque_Conj : Conj ; -- [XXXAX] :: for and in fact, on the other hand; insomuch as (strengthened nam); + nanciscor_V : V ; -- [XXXBX] :: obtain, get; find, meet with, receive, stumble on, light on; + nanus_M_N : N ; -- [XXXEC] :: dwarf; + naphtha_F_N : N ; -- [XSXES] :: naphtha; flammable/volitile petro-liquid; + naptha_F_N : N ; -- [EXXFW] :: naphtha; (Vulgate Prayer of Azariah 1:23); flammable/volitile petro-liquid; + narcissinus_A : A ; -- [XAXFO] :: of the narcissus (flower); + narcissismus_M_N : N ; -- [GXXEK] :: narcissism; + narcissus_M_N : N ; -- [XAXEO] :: narcissus (flower); son of Cephisus and Liriope; rich freedman of Claudius; + narcomania_F_N : N ; -- [GXXEK] :: addiction; + narcoticus_A : A ; -- [GXXEK] :: narcotic; + nardifer_A : A ; -- [XXXFO] :: producing/bearing nard (an aromatic plant); + nardinum_N_N : N ; -- [XXXEO] :: wine flavored with nard (an aromatic plant); + nardinus_A : A ; -- [XXXEO] :: of/pertaining to nard (an aromatic plant); resembling/smelling like nard; nard-; + nardum_N_N : N ; -- [XXXCO] :: unguent/balsam/oil of nard (an aromatic plant); the plant nard; + nardus_F_N : N ; -- [XXXCO] :: unguent/balsam/oil of nard (an aromatic plant); the plant nard; + naris_F_N : N ; -- [XXXDX] :: nostril; nose (pl.); + narrabilis_A : A ; -- [XXXDX] :: that can be narrated; + narratio_F_N : N ; -- [XXXDX] :: narrative, story; + narratiuncula_F_N : N ; -- [XXXEC] :: short narrative; + narratus_M_N : N ; -- [XXXDX] :: narrative, story; + narro_V : V ; -- [XXXAX] :: tell, tell about, relate, narrate, recount, describe; + narta_F_N : N ; -- [GXXEK] :: ski (instrument); + nartatio_F_N : N ; -- [GXXEK] :: skiing (sport); + nartator_M_N : N ; -- [GXXEK] :: skier; + nartatorius_A : A ; -- [GXXEK] :: skiing; + narthecium_N_N : N ; -- [XXXEC] :: box for perfumes and medicines; + narto_V : V ; -- [GXXEK] :: ski; + nasalizatio_F_N : N ; -- [GXXEK] :: nasalization; + nasciturus_A : A ; -- [XXXES] :: about to be born/come into being; should be born/rise; (FUT ACTIVE PPL nascor); + nascor_V : V ; -- [XXXAO] :: |be born/begotten/formed/destined; rise (stars), dawn; start, originate; arise; + nassa_F_N : N ; -- [XAXEC] :: basket for catching fish; a trap, snare; + nassiterna_F_N : N ; -- [FXXEK] :: watering-can; + nasturcium_N_N : N ; -- [XAXEC] :: kind of cress; + nasus_M_N : N ; -- [XBXBX] :: nose; sense of smelling; + nasutus_A : A ; -- [XXXDX] :: having long nose; + nata_F_N : N ; -- [XXXCO] :: daughter; child; + natalicium_N_N : N ; -- [XXXEC] :: birthday party (pl.); + natalicius_A : A ; -- [XXXEC] :: relating to birth; + natalis_A : A ; -- [XXXBX] :: natal, of birth; + natalis_M_N : N ; -- [XXXBO] :: |time of birth; horoscope; circumstances of birth; parentage (pl.), origins; + natatilis_A : A ; -- [EXXES] :: that can swim; swimmable; + natatilis_M_N : N ; -- [XAXES] :: swimming creature; + natator_M_N : N ; -- [XXXDX] :: swimmer; + natatus_M_N : N ; -- [EXXFS] :: swimming; + natio_F_N : N ; -- [XXXBX] :: nation, people; birth; race, class, set; gentiles; heathens; + nationalis_A : A ; -- [GXXEK] :: national; + nationalismus_M_N : N ; -- [GXXEK] :: nationalism; + nationalitas_F_N : N ; -- [GXXEK] :: nationality; + natis_F_N : N ; -- [XXXDX] :: buttocks (usu. pl.), rump; + nativitas_F_N : N ; -- [EEXDX] :: birth; nativity; (of Christ); + nativus_A : A ; -- [XXXDX] :: original; innate; natural; born; + nato_V : V ; -- [XXXBX] :: swim; float; + natrix_F_N : N ; -- [XAXFS] :: water-snake; whip; a plant; + natura_F_N : N ; -- [XXXAX] :: nature; birth; character; + naturalis_A : A ; -- [XXXAO] :: |natural; (not adoptive, parents); (parts of body/genitals, excretory outlets); + naturalis_M_N : N ; -- [ESXDX] :: physical/natural scientist; physicist; natural philosopher; + naturaliter_Adv : Adv ; -- [XXXCO] :: naturally, normally; inherently, by nature; spontaneously; by human nature; + naturalizatio_F_N : N ; -- [GXXEK] :: naturalization; + naturans_A : A ; -- [FEXFM] :: creative nature; + naturo_V : V ; -- [FXXEM] :: produce naturally; + natus_A : A ; -- [XXXAX] :: born, arisen; made; destined; designed, intended, produced by nature; aged, old; + natus_M_N : N ; -- [XXXDX] :: birth; age, years [minor natu => younger; major natu => older]; + nauarchia_F_N : N ; -- [DWXFS] :: command of a ship/vessel; + nauarchus_M_N : N ; -- [XWXDS] :: master/captain of a ship; skipper; + naucleria_F_N : N ; -- [DWXFS] :: command of a ship/vessel; + nauclericus_A : A ; -- [XWXEO] :: captain's, of/belonging to a ship's captain; + nauclerius_A : A ; -- [XWXFS] :: captain's, of/belonging to a ship's captain; + nauclerius_M_N : N ; -- [EWXFW] :: master of a ship/vessel; + nauclerus_M_N : N ; -- [XWXEO] :: captain of a ship; master/owner/skipper (L+S); + naucum_N_N : N ; -- [XXXEC] :: trifle; [non nauci habere => think nothing of]; + naufragium_N_N : N ; -- [XXXBX] :: shipwreck; + naufrago_V : V ; -- [XXXDX] :: be shipwrecked; + naufragus_A : A ; -- [XXXDX] :: shipwrecked; ruined; causing shipwreck; + naulum_N_N : N ; -- [XXXEC] :: fare, passage money; + naupegus_M_N : N ; -- [XTXFS] :: shipwright; ship builder; + nausea_F_N : N ; -- [XXXDX] :: nausea; seasickness; + nauseo_V : V ; -- [XXXDX] :: be sea-sick; feel sick; + nauseola_F_N : N ; -- [XXXEC] :: squeamishness; + nausia_F_N : N ; -- [XXXDX] :: nausea; seasickness; + nausio_V : V ; -- [XXXDX] :: be sea-sick; feel sick; + nauta_M_N : N ; -- [XXXBO] :: sailor, seaman, mariner; + nauticus_A : A ; -- [XXXDX] :: nautical, naval; + nauticus_M_N : N ; -- [XXXDX] :: seamen (pl.), sailors; + navale_N_N : N ; -- [XXXDX] :: dock, shipway; + navalis_A : A ; -- [XXXDX] :: naval, of ships; + navanter_Adv : Adv ; -- [XXXES] :: with zeal; + navicula_F_N : N ; -- [XXXDX] :: small ship; + navicularia_F_N : N ; -- [XWXEC] :: business of a ship-owner; + navicularius_A : A ; -- [XWXEC] :: of (small) ships; + navifragus_A : A ; -- [XXXEO] :: shipwrecking; + navigabilis_A : A ; -- [XXXDX] :: navigable, suitable for shipping; + navigatio_F_N : N ; -- [XXXDX] :: sailing; navigation; voyage; + naviger_A : A ; -- [XXXDX] :: ship-bearing, navigable; + navigium_N_N : N ; -- [XXXDX] :: vessel, ship; + navigo_V : V ; -- [XXXBX] :: sail; navigate; + navis_F_N : N ; -- [XXXAX] :: ship; [navis longa => galley, battleship; ~ oneraria => transport/cargo ship]; + navita_M_N : N ; -- [XXXCS] :: sailor, seaman, mariner; (early, late, and poetic); + naviter_Adv : Adv ; -- [XXXDX] :: diligently; wholly; + navmachia_F_N : N ; -- [XWXCO] :: mock sea battle staged as spectacle/game/exercise; + navmachiarius_A : A ; -- [XWXFO] :: of a lake constructed for mock sea battles staged as spectacle/game/exercise; + navmachiarius_M_N : N ; -- [XWXEO] :: one who takes part in a mock sea battle staged as spectacle/game/exercise; + navo_V : V ; -- [XXXDX] :: do with zeal; [operam navare => do one's best]; + navus_A : A ; -- [XXXDX] :: active, industrious; + nazaraeus_M_N : N ; -- [EEXFS] :: Nazarene; + nazismus_M_N : N ; -- [GXXEK] :: Nazism; + nazista_M_N : N ; -- [GXXEK] :: Nazi; + nazoreus_M_N : N ; -- [EEXFW] :: Nazarite; man set apart to the service of God; (1 Maccabees 3:49); + ne_Adv : Adv ; -- [XXXCO] :: |truly, indeed, verily, assuredly; (particle of assurance); (w/personal PRON); + ne_Conj : Conj ; -- [XXXAX] :: that not, lest; (for negative of IMP); + nebrida_M_N : N ; -- [XEXFS] :: Ceres priest; + nebula_F_N : N ; -- [XSXBO] :: mist, fog; cloud (dust/smoke/confusion/error); thin film, veneer; obscurity; + nebulo_M_N : N ; -- [XXXCO] :: rascal, scoundrel; worthless person; + nebulosus_A : A ; -- [XXXCO] :: misty, foggy; characterized by/subject to/resembling mist, vaporous; obscure; + nec_Adv : Adv ; -- [XXXDX] :: nor; and not, not, neither, not even; + nec_Conj : Conj ; -- [XXXAX] :: nor, and..not; not..either, not even; + necdum_Conj : Conj ; -- [XXXBX] :: and/but not yet; + necessaria_F_N : N ; -- [XXXCO] :: connection (female), she closely connected by friendship/family/obligation; + necessarie_Adv : Adv ; -- [XXXEO] :: necessarily; indispensably; as a necessary consequence; + necessario_Adv : Adv ; -- [XXXCO] :: unavoidably, without option; necessarily, of necessity; inevitably/unavoidably; + necessarium_N_N : N ; -- [XXXEO] :: necessities (pl.), what is needed; necessities of life; + necessarius_A : A ; -- [XXXAO] :: |inevitable, fateful; urgent/critical; unavoidable/compulsory; natural (death); + necessarius_M_N : N ; -- [XXXCO] :: relative; connection, one closely connected by friendship/family/obligation; + necesse_A : A ; -- [XXXBO] :: necessary, essential; unavoidable, compulsory, inevitable; a natural law; true; + necessis_A : A ; -- [XXXBO] :: necessary, essential; unavoidable, compulsory, inevitable; a natural law; true; + necessitas_F_N : N ; -- [XXXAO] :: need/necessity; inevitability; difficult straits; poverty; obligation; bond; + necessitudo_F_N : N ; -- [XXXBO] :: obligation; bond, connection, affinity; compulsion; needs; poverty; relative; + necesso_V2 : V2 ; -- [DXXES] :: render/make necessary; + necessum_A : A ; -- [XXXCO] :: necessary; imperative; unavoidable, compulsory, inevitable; a natural law; true; + necessus_A : A ; -- [XXXCO] :: necessary, imperative; unavoidable, compulsory, inevitable; a natural law; true; + neclectus_A : A ; -- [XXXCO] :: disregarded, not cared for, neglected, ignored; carelessly made/done; + neclectus_M_N : N ; -- [XXXEO] :: neglect; fact of taking no notice; + neclegens_A : A ; -- [XXXBO] :: heedless, neglectful, careless; unconcerned, indifferent; slovenly; unruly; + neclegenter_Adv : Adv ; -- [XXXCO] :: heedlessly, neglectfully, carelessly; unconcernedly, indifferently; slovenly; + neclegentia_F_N : N ; -- [XXXCO] :: heedlessness, neglect; carelessness, negligence; coldness; disrespect; + neclego_V2 : V2 ; -- [XXXCO] :: disregard, neglect, ignore, regard of no consequence; do nothing about; despise; + necne_Conj : Conj ; -- [XXXDX] :: or not; + necnon_Adv : Adv ; -- [XXXDX] :: nor; and not, not, neither, not even; and also, and indeed; + neco_V2 : V2 ; -- [BXXFO] :: kill/murder; put to death; suppress, destroy; kill (plant); quench/drown (fire); + necopinans_A : A ; -- [XXXDX] :: not expecting; unawares; + necopinatus_A : A ; -- [XXXDX] :: unexpected, unforeseen; + necopinus_A : A ; -- [XXXEC] :: unexpected; not expecting; + necopmus_A : A ; -- [XXXDX] :: unexpected, unforeseen; + necrocomium_N_N : N ; -- [GXXEK] :: morgue; + necrologia_F_N : N ; -- [GXXEK] :: death; + necrosis_F_N : N ; -- [GXXEK] :: necrosis; + nectar_N_N : N ; -- [XXXBX] :: nectar, the drink of the gods; anything sweet, pleasant or delicious; + nectareus_A : A ; -- [XXXDX] :: sweet as nectar; + necto_V2 : V2 ; -- [XXXBX] :: tie, bind; + necubi_Adv : Adv ; -- [XXXDX] :: lest anywhere/at any place; lest on any occasion; that nowhere; + necunde_Adv : Adv ; -- [XXXDX] :: lest from anywhere; + nedum_Conj : Conj ; -- [XXXDX] :: still less; not to speak of; much more; + nefandus_A : A ; -- [XXXBX] :: impious, wicked; abominable; + nefarie_Adv : Adv ; -- [XXXES] :: wickedly, impiously; nefariously, abominably; heinously; + nefarium_N_N : N ; -- [XXXES] :: crime; wicked/impious/nefarious/heinous act; + nefarius_A : A ; -- [XXXCS] :: |impious; nefarious; execrable; heinous; abandoned (Cas); + nefas_N : N ; -- [XXXBX] :: sin, violation of divine law, impious act; [fas et nefas => right and wrong]; + nefastus_A : A ; -- [XXXDX] :: contrary to divine law; [dies nefasti => days unfit for public business]; + negatio_F_N : N ; -- [XXXDO] :: denial, refusal; negation (action); negative (Souter); betrayal; + negative_Adv : Adv ; -- [DXXES] :: negatively; in the negative (Souter); + negativus_A : A ; -- [XLXEO] :: restraining, inhibiting (legal actions); denied/refused; negative (of words); + negator_M_N : N ; -- [XXXFO] :: denier, one who denies; apostate; + negidius_M_N : N ; -- [ELXEX] :: Negidius; fictional name in Law; + negito_V : V ; -- [XXXDX] :: deny or refuse repeatedly; + neglectim_Adv : Adv ; -- [XXXFS] :: negligently; + neglectus_A : A ; -- [XXXCO] :: disregarded, not cared for, neglected, ignored; carelessly made/done; + neglectus_M_N : N ; -- [XXXEO] :: neglect; fact of taking no notice; + neglegens_A : A ; -- [XXXBO] :: heedless, neglectful, careless; unconcerned, indifferent; slovenly; unruly; + neglegenter_Adv : Adv ; -- [XXXCO] :: heedlessly, neglectfully, carelessly; unconcernedly, indifferently; slovenly; + neglegentia_F_N : N ; -- [XXXCO] :: heedlessness, neglect; carelessness, negligence; coldness; disrespect; + neglego_V2 : V2 ; -- [XXXAO] :: disregard, neglect, ignore, regard of no consequence; do nothing about; despise; + negligenter_Adv : Adv ; -- [XXXCS] :: heedlessly, neglectfully, carelessly; unconcernedly, indifferently; slovenly; + negligentia_F_N : N ; -- [XXXCS] :: heedlessness, neglect; carelessness, negligence; coldness; disrespect; + negligo_V2 : V2 ; -- [XXXBS] :: disregard, neglect, ignore, regard of no consequence; do nothing about; despise; + nego_V : V ; -- [XXXAX] :: deny, refuse; say ... not; + negotiatio_F_N : N ; -- [XXXDX] :: business; + negotiator_M_N : N ; -- [XXXDX] :: wholesale trader or dealer; + negotio_V : V ; -- [XXXDX] :: carry on business; trade; + negotiolum_N_N : N ; -- [XXXEC] :: little business; + negotior_V : V ; -- [XXXDX] :: do business, trade; + negotiosus_A : A ; -- [XXXDX] :: active, occupied; + negotium_N_N : N ; -- [XXXAX] :: pain, trouble, annoyance, distress; work, business, activity, job; nemo_F_N : N ; -- [XXXAX] :: no one, nobody; - nemo_M_N : N ; - nemoralis_A : A ; - nemorensis_A : A ; - nemorivagus_A : A ; - nemorosus_A : A ; - nempe_Conj : Conj ; - nemus_N_N : N ; - nenia_F_N : N ; - neo_V : V ; - neofitus_A : A ; - neolithicus_A : A ; - neologismus_M_N : N ; - neomenia_F_N : N ; - neonatus_M_N : N ; - neophytus_A : A ; - neophytus_M_N : N ; - neoplasia_F_N : N ; - nepa_F_N : N ; - nepiagogium_N_N : N ; + nemo_M_N : N ; -- [XXXAX] :: no one, nobody; + nemoralis_A : A ; -- [XXXDX] :: of/belonging to wood/forest, sylvan; + nemorensis_A : A ; -- [XAXEC] :: of woods or groves; sylvan; + nemorivagus_A : A ; -- [XXXDX] :: forest-roving; + nemorosus_A : A ; -- [XXXDX] :: well-wooded; + nempe_Conj : Conj ; -- [XXXDX] :: truly, certainly, of course; + nemus_N_N : N ; -- [XXXAX] :: wood, forest; + nenia_F_N : N ; -- [XXXDX] :: funeral dirge sung; incantation, jingle; + neo_V : V ; -- [XXXDX] :: spin; weave; produce by spinning; + neofitus_A : A ; -- [DXXIS] :: newly planted; (of newly converted Christians); + neolithicus_A : A ; -- [GXXEK] :: Neolithic; + neologismus_M_N : N ; -- [GXXEK] :: neologism; + neomenia_F_N : N ; -- [DSXES] :: new moon; + neonatus_M_N : N ; -- [GXXEK] :: new-born; + neophytus_A : A ; -- [DXXES] :: newly planted; (of newly converted Christians); + neophytus_M_N : N ; -- [DXXES] :: neophyte; (newly converted Christians); + neoplasia_F_N : N ; -- [GXXEK] :: neoplasm; tumor; + nepa_F_N : N ; -- [XXXEC] :: scorpion; a crab; + nepiagogium_N_N : N ; -- [GXXEK] :: children's garden; nepos_F_N : N ; -- [XXXAX] :: grandson/daughter; descendant; spendthrift, prodigal, playboy; secondary shoot; - nepos_M_N : N ; - neptis_F_N : N ; - nequam_A : A ; - nequando_Adv : Adv ; - nequaquam_Adv : Adv ; - neque_Adv : Adv ; - neque_Conj : Conj ; - nequedum_Conj : Conj ; - nequeo_1_VV : VV ; - nequeo_2_VV : VV ; - nequicquam_Adv : Adv ; - nequior_A : A ; - nequiquam_Adv : Adv ; - nequis_Adv : Adv ; - nequissimus_A : A ; - nequiter_Adv : Adv ; - nequitia_F_N : N ; - nequities_F_N : N ; - nervosus_A : A ; - nervulus_M_N : N ; - nervus_M_N : N ; - nescio_V2 : V2 ; - nescius_A : A ; - nete_F_N : N ; - neu_Conj : Conj ; - neuma_F_N : N ; - neuma_N_N : N ; - neuronum_N_N : N ; - neuter_A : A ; - neutiquam_Adv : Adv ; - neutralitas_F_N : N ; - neutralizatio_F_N : N ; - neutralizo_V : V ; - neutro_Adv : Adv ; - neutronium_N_N : N ; - neutrubi_Adv : Adv ; - neve_Conj : Conj ; - nex_F_N : N ; - nexilis_A : A ; - nexo_V2 : V2 ; - nexum_N_N : N ; - nexus_M_N : N ; - ni_Adv : Adv ; - ni_Conj : Conj ; - niceterium_N_N : N ; - nichelium_N_N : N ; - nichil_N : N ; - nichilum_N_N : N ; - nicotinum_N_N : N ; - nicto_V : V ; - nidificium_N_N : N ; - nidifico_V : V ; - nidificus_A : A ; - nidor_M_N : N ; - nidulus_M_N : N ; - nidus_M_N : N ; - nigellus_A : A ; - niger_A : A ; - nigrans_A : A ; - nigredo_F_N : N ; - nigreo_V : V ; - nigresco_V2 : V2 ; - nigrita_M_N : N ; - nigritia_F_N : N ; - nigrities_F_N : N ; - nigro_V : V ; - nihil_N : N ; - nihildum_N : N ; - nihilismus_M_N : N ; - nihilitas_F_N : N ; - nihilominus_Adv : Adv ; - nihilum_N_N : N ; - nil_N : N ; - nilum_N_N : N ; - nimbifer_A : A ; - nimbosus_A : A ; - nimbus_M_N : N ; - nimietas_F_N : N ; - nimio_Adv : Adv ; - nimirum_Adv : Adv ; - nimis_Adv : Adv ; - nimium_Adv : Adv ; - nimius_A : A ; - ningo_V : V ; - ningt_V0 : V ; - ninguis_F_N : N ; - ninguo_V : V ; - nisan_N : N ; - nisi_Conj : Conj ; - nisus_M_N : N ; - nitedula_F_N : N ; - nitella_F_N : N ; - niteo_V : V ; - nitesco_V2 : V2 ; - nitidus_A : A ; - nitor_M_N : N ; - nitor_V : V ; - nitrosus_A : A ; - nitrum_N_N : N ; - nivalis_A : A ; - niveus_A : A ; - nivosus_A : A ; - nix_F_N : N ; - nixor_V : V ; - nixus_M_N : N ; - no_V : V ; - nobilis_A : A ; - nobilis_M_N : N ; - nobilitas_F_N : N ; - nobilito_V : V ; - nocens_A : A ; - noceo_V : V ; - nocivus_A : A ; - noctesco_V : V ; - noctiluca_F_N : N ; - noctivagus_A : A ; - noctu_Adv : Adv ; - noctua_F_N : N ; - noctuabundus_A : A ; - nocturnalis_A : A ; - nocturnus_A : A ; - nocumentum_N_N : N ; - nocuus_A : A ; - nodo_V : V ; - nodosus_A : A ; - nodus_M_N : N ; - nola_F_N : N ; - nolo_V : V ; + nepos_M_N : N ; -- [XXXAX] :: grandson/daughter; descendant; spendthrift, prodigal, playboy; secondary shoot; + neptis_F_N : N ; -- [XXXDX] :: granddaughter; female descendant; + nequam_A : A ; -- [XXXBO] :: wicked/licentious/depraved; bad/vile; naughty/roguish; worthless/useless; + nequando_Adv : Adv ; -- [XXXCW] :: lest, lest ever; never, not ever; + nequaquam_Adv : Adv ; -- [XXXBX] :: by no means; + neque_Adv : Adv ; -- [XXXDX] :: nor; and not, not, neither; + neque_Conj : Conj ; -- [XXXAX] :: nor [neque..neque=>neither..nor; neque solum..sed etiam=>not only..but also]; + nequedum_Conj : Conj ; -- [XXXDX] :: and/but not yet; + nequeo_1_V : V ; -- [XXXBX] :: be unable, cannot; + nequeo_2_V : V ; -- [XXXBX] :: be unable, cannot; + nequicquam_Adv : Adv ; -- [XXXDX] :: in vain; + nequior_A : A ; -- [XXXCO] :: more wicked/licentious/depraved/vile; worse; more useless/worthless; (nequam); + nequiquam_Adv : Adv ; -- [XXXBX] :: in vain; + nequis_Adv : Adv ; -- [XXXDX] :: lest any one; + nequissimus_A : A ; -- [XXXCO] :: most wicked/vile/licentious/worthless, good for nothing; (nequam SUPER); + nequiter_Adv : Adv ; -- [XXXDX] :: badly; wickedly; + nequitia_F_N : N ; -- [XXXDX] :: wickedness; idleness; negligence; worthlessness; evil ways; + nequities_F_N : N ; -- [XXXFS] :: wickedness; idleness; worthlessness; (equivalent to nequitia); + nervosus_A : A ; -- [XXXDX] :: sinewy; vigorous; + nervulus_M_N : N ; -- [XXXEC] :: nerve, strength; + nervus_M_N : N ; -- [XXXAS] :: |string/cord; bowstring; bow; (leather) thong; fetter (for prisoner); prison; + nescio_V2 : V2 ; -- [XXXAO] :: not know (how); be ignorant/unfamiliar/unaware/unacquainted/unable/unwilling; + nescius_A : A ; -- [XXXBX] :: unaware, not knowing, ignorant; + nete_F_N : N ; -- [XDXFO] :: highest note in tetrachord; last/undermost string; + neu_Conj : Conj ; -- [XXXBX] :: or not, and not; (for negative of IMP); [neve ... neve => neither ... nor ]; + neuma_F_N : N ; -- [FDXEM] :: |prolonged/breathing notes in plainsong; plainsong notation signs; + neuma_N_N : N ; -- [FDXDM] :: neume/neum; prolonged group of notes sung to single syllable (in plainsong); + neuronum_N_N : N ; -- [HSXEK] :: neuron, nerve cell; + neuter_A : A ; -- [XXXDX] :: neither; + neutiquam_Adv : Adv ; -- [XXXEC] :: by no means, not at all; (ne utiquam); + neutralitas_F_N : N ; -- [GXXEK] :: neutrality; + neutralizatio_F_N : N ; -- [GXXEK] :: neutralization; + neutralizo_V : V ; -- [GXXEK] :: neutralize; + neutro_Adv : Adv ; -- [XXXDX] :: to neither side; + neutronium_N_N : N ; -- [HSXEK] :: neutron; + neutrubi_Adv : Adv ; -- [XXXFS] :: in neither place; neither way; + neve_Conj : Conj ; -- [XXXDX] :: or not, and not; (for negative of IMP); [neve ... neve => neither ... nor ]; + nex_F_N : N ; -- [XXXBX] :: death; murder; + nexilis_A : A ; -- [XXXDX] :: woven together, intertwined; + nexo_V2 : V2 ; -- [XXXFS] :: tie together; bind together; (see also nectere); + nexum_N_N : N ; -- [XLXCO] :: obligation between creditor/debtor; (pre-300 BC debtor bondman for non-payment); + nexus_M_N : N ; -- [XXXDX] :: obligation between creditor and debtor; + ni_Adv : Adv ; -- [XXXBX] :: if ... not; unless; [quid ni? => why not?]; + ni_Conj : Conj ; -- [XXXDX] :: if ... not; unless; + niceterium_N_N : N ; -- [XXXEC] :: reward of victory, prize; + nichelium_N_N : N ; -- [GSXEK] :: nickel; + nichil_N : N ; -- [FXXDM] :: nothing; no; trifle/thing not worth mentioning; nonentity; nonsense; no concern; + nichilum_N_N : N ; -- [FXXEM] :: nothing; nothingness, which does not exist; something valueless; no respect; + nicotinum_N_N : N ; -- [GXXEK] :: nicotine; + nicto_V : V ; -- [XXXDX] :: blink; + nidificium_N_N : N ; -- [XAXFO] :: nesting place; + nidifico_V : V ; -- [XAXEO] :: build a nest; + nidificus_A : A ; -- [XAXFO] :: nest-, concerned with the building of nests; + nidor_M_N : N ; -- [XXXDX] :: rich, strong smell, fumes; + nidulus_M_N : N ; -- [XXXEC] :: little nest; + nidus_M_N : N ; -- [XXXBX] :: nest; + nigellus_A : A ; -- [XXXFS] :: somewhat black; (pre-classical and medieval); Nigellus (proper name); + niger_A : A ; -- [XXXAX] :: black, dark; unlucky; + nigrans_A : A ; -- [XXXDX] :: black, dark colored; shadowy; murky; + nigredo_F_N : N ; -- [XXXFO] :: blackness; + nigreo_V : V ; -- [XXXFO] :: grow dark; darken; + nigresco_V2 : V2 ; -- [XXXDX] :: become black, grow dark; + nigrita_M_N : N ; -- [GXXEK] :: negro; + nigritia_F_N : N ; -- [EXXFS] :: blackness; black color; + nigrities_F_N : N ; -- [EXXFS] :: blackness; black color; + nigro_V : V ; -- [XXXEO] :: be black; make black; + nihil_N : N ; -- [XXXAO] :: nothing; no; trifle/thing not worth mentioning; nonentity; nonsense; no concern; + nihildum_N : N ; -- [XXXDX] :: nothing; nothing as yet; not a shred; less than nothing; + nihilismus_M_N : N ; -- [GXXEK] :: nihilism; + nihilitas_F_N : N ; -- [FEXEM] :: nothingness; + nihilominus_Adv : Adv ; -- [XXXDX] :: never/none the less, notwithstanding, just the same; likewise, as well; + nihilum_N_N : N ; -- [XXXBO] :: nothing; nothingness, which does not exist; something valueless; no respect; + nil_N : N ; -- [XXXAO] :: nothing; no; trifle/thing not worth mentioning; nonentity; nonsense; no concern; + nilum_N_N : N ; -- [XXXBO] :: nothing; nothingness, which does not exist; something valueless; no respect; + nimbifer_A : A ; -- [XXXEC] :: stormy; + nimbosus_A : A ; -- [XXXDX] :: full of/surrounded by rain clouds; + nimbus_M_N : N ; -- [XXXBX] :: rainstorm, cloud; + nimietas_F_N : N ; -- [XXXEO] :: excess; superabundance; too great a number/quantity. redundancy (L+S); + nimio_Adv : Adv ; -- [XXXDX] :: by a very great degree, far; + nimirum_Adv : Adv ; -- [XXXBX] :: without doubt, evidently, forsooth; + nimis_Adv : Adv ; -- [XXXAX] :: very much; too much; exceedingly; + nimium_Adv : Adv ; -- [XXXDX] :: too, too much; very, very much, beyond measure, excessive, too great; + nimius_A : A ; -- [XXXAX] :: excessive, too great; + ningo_V : V ; -- [XSXEC] :: snow; + ningt_V0 : V ; -- [XSXEC] :: it snows; + ninguis_F_N : N ; -- [XSXEO] :: snow; drifts of snow (pl.); + ninguo_V : V ; -- [XSXEC] :: snow; + nisan_N : N ; -- [EXQEW] :: Nisan, Jewish month; (1st in ecclesiastic year); (late January-early February); + nisi_Conj : Conj ; -- [XXXAX] :: if not; except, unless; + nisus_M_N : N ; -- [XXXDX] :: pressing upon/down; pressure, push; endeavor; exertion; strong muscular effort; + nitedula_F_N : N ; -- [XAXEC] :: dormouse; + nitella_F_N : N ; -- [XAXFS] :: small mouse; dormouse; + niteo_V : V ; -- [XXXBX] :: shine, glitter, look bright; be sleek/in good condition; bloom, thrive; + nitesco_V2 : V2 ; -- [XXXDX] :: begin to shine; + nitidus_A : A ; -- [XXXBX] :: shining, bright; + nitor_M_N : N ; -- [XXXBO] :: brightness, splendor; brilliance; gloss, sheen; elegance, style, polish; flash; + nitor_V : V ; -- [XXXDX] :: press/lean upon; struggle; advance; depend on (with abl.); strive, labor; + nitrosus_A : A ; -- [XXXFS] :: full of nitron; + nitrum_N_N : N ; -- [XXXCO] :: name of various alkalis (esp. soda and potash but probably not nitre); + nivalis_A : A ; -- [XXXDX] :: snowy, snow-covered; snow-like; + niveus_A : A ; -- [XXXBX] :: snowy, covered with snow; white; + nivosus_A : A ; -- [XXXDX] :: full of snow, snowy; + nix_F_N : N ; -- [XXXAX] :: snow; + nixor_V : V ; -- [XXXEO] :: support oneself, rest/lean (on) (w/ABL); struggle/strive, exert oneself (W/INF); + nixus_M_N : N ; -- [XXXDX] :: straining; the efforts of childbirth (pl.), travail; + no_V : V ; -- [XXXBX] :: swim, float; + nobilis_A : A ; -- [XXXAO] :: |famous, celebrated; well/generally known; remarkable, noteworthy (facts); + nobilis_M_N : N ; -- [XXXDX] :: nobles (pl.); + nobilitas_F_N : N ; -- [XXXBX] :: nobility/noble class; (noble) birth/descent; fame/excellence; the nobles; rank; + nobilito_V : V ; -- [XXXCO] :: make known/noted/renown; render famous/notorious; ennoble; make more majestic; + nocens_A : A ; -- [XXXDX] :: harmful; guilty; criminal; + noceo_V : V ; -- [XXXAX] :: harm, hurt; injure (with DAT); + nocivus_A : A ; -- [XXXEO] :: harmful, injurious; noxious; + noctesco_V : V ; -- [XXXFS] :: grow dark; + noctiluca_F_N : N ; -- [XXXEC] :: moon; + noctivagus_A : A ; -- [XXXDX] :: night-wandering; + noctu_Adv : Adv ; -- [XXXBX] :: by night, at night; + noctua_F_N : N ; -- [XXXDX] :: little owl; + noctuabundus_A : A ; -- [XXXEC] :: traveling by night; + nocturnalis_A : A ; -- [DXXES] :: nocturnal; + nocturnus_A : A ; -- [XXXAX] :: nocturnal, of night, at night, by night; + nocumentum_N_N : N ; -- [FLXFJ] :: nuisance; + nocuus_A : A ; -- [XXXEC] :: hurtful, injurious; + nodo_V : V ; -- [XXXDX] :: tie in a knot/knots; + nodosus_A : A ; -- [XXXDX] :: tied into many knots, full of knots, knotty; + nodus_M_N : N ; -- [XXXBX] :: knot; node; + nola_F_N : N ; -- [XXXDO] :: Nola (town in Campania); woman of Nola; (pun on nolo); bell (Erasmus); + nolo_V : V ; -- [XXXAX] :: be unwilling; wish not to; refuse to; 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 ; - nomenculator_M_N : N ; - nominatim_Adv : Adv ; - nominatio_F_N : N ; - nominativus_A : A ; - nominatus_M_N : N ; - nomine_Adv : Adv ; - nominetenus_Adv : Adv ; - nominito_V : V ; - nomino_V : V ; - nomisma_N_N : N ; - non_Adv : Adv ; - nonanus_A : A ; - nondum_Adv : Adv ; - nonne_Adv : Adv ; + nomas_2_N : N ; -- [XXXEO] :: nomad, esp. a Numidian; nomads (pl.), certain wandering pastoral tribes; + nomen_N_N : N ; -- [XXXAX] :: name, family name; noun; account, entry in debt ledger; sake; title, heading; + nomenclator_M_N : N ; -- [XXXCO] :: one who address person by name; slave who announced guests/dishes; an official; + nomenclatura_F_N : N ; -- [XXXNO] :: assigning of names to things, nomenclature; mentioning things by name; + nomenculator_M_N : N ; -- [XXXCO] :: one who address person by name; slave who announced guests/dishes; an official; + nominatim_Adv : Adv ; -- [XXXDX] :: by name; + nominatio_F_N : N ; -- [XXXDX] :: naming; nomination (to an office); + nominativus_A : A ; -- [XXXDX] :: nominative; + nominatus_M_N : N ; -- [XXXFS] :: naming; G:noun; + nomine_Adv : Adv ; -- [XXXDX] :: in name only, nominally (ABL S of nomen); + nominetenus_Adv : Adv ; -- [FXXEM] :: nominal; so-called; + nominito_V : V ; -- [XXXDX] :: name, term; + nomino_V : V ; -- [XXXAX] :: name, call; + nomisma_N_N : N ; -- [XXXDO] :: coin/piece of money; coinage; token/voucher; medal (L+S); stamp; image on coin; + non_Adv : Adv ; -- [XXXAX] :: not, by no means, no; [non modo ... sed etiam => not only ... but also]; + nonanus_A : A ; -- [XXXEC] :: of/belonging to ninth legion; + nondum_Adv : Adv ; -- [XXXBX] :: not yet; + nonne_Adv : Adv ; -- [XXXBX] :: not? (interog, expects the answer "Yes"); nonnemo_F_N : N ; -- [XXXDX] :: some persons, a few; - nonnemo_M_N : N ; - nonnihil_Adv : Adv ; - nonnihil_N : N ; - nonnisi_Conj : Conj ; - nonnullus_A : A ; - nonnullus_M_N : N ; - nonnumquam_Adv : Adv ; - nonnunquam_Adv : Adv ; - norma_F_N : N ; - normativus_A : A ; - noscito_V : V ; - nosco_V2 : V2 ; - nosocomium_N_N : N ; - nosocomus_M_N : N ; - nostalgia_F_N : N ; - noster_A : A ; - noster_M_N : N ; - nota_F_N : N ; - notabilis_A : A ; - notaculum_N_N : N ; - notariatus_M_N : N ; - notarius_M_N : N ; - notatio_F_N : N ; - noteo_V : V ; - notesco_V2 : V2 ; - nothus_A : A ; - notificatio_F_N : N ; - notio_F_N : N ; - notionalis_A : A ; - notionaliter_Adv : Adv ; - notitia_F_N : N ; - noto_V : V ; - notula_F_N : N ; - notum_N_N : N ; - notus_A : A ; - notus_M_N : N ; - novacula_F_N : N ; - novale_N_N : N ; - novalis_F_N : N ; - novamen_N_N : N ; - novatio_F_N : N ; - nove_Adv : Adv ; - novella_F_N : N ; - novello_V : V ; - novellus_A : A ; - novenarius_A : A ; - novendialis_A : A ; - noverca_F_N : N ; - noviciatus_M_N : N ; - novicius_A : A ; - novicius_M_N : N ; - novilunium_N_N : N ; - novissime_Adv : Adv ; - novissimum_N_N : N ; - novissimus_A : A ; - novitas_F_N : N ; - noviter_Adv : Adv ; - novitiatus_M_N : N ; - novitius_A : A ; - novitius_M_N : N ; - novo_V : V ; - novus_A : A ; - nox_F_N : N ; - noxa_F_N : N ; - noxalis_A : A ; - noxia_F_N : N ; - noxiosus_A : A ; - noxius_A : A ; - nubecula_F_N : N ; - nubeculatus_A : A ; - nubes_F_N : N ; - nubifer_A : A ; - nubigena_M_N : N ; - nubilis_A : A ; - nubilosus_A : A ; - nubilum_N_N : N ; - nubilus_A : A ; - nubis_M_N : N ; - nubo_V2 : V2 ; - nubs_M_N : N ; - nucatum_N_N : N ; - nucifrangibulum_N_N : N ; - nuclearis_A : A ; - nucleus_M_N : N ; - nuditas_F_N : N ; - nudius_Adv : Adv ; - nudiustertius_Adv : Adv ; - nudo_V : V ; - nudus_A : A ; - nuga_F_N : N ; - nugacitas_F_N : N ; - nugator_M_N : N ; - nugatorius_A : A ; - nugigerulus_M_N : N ; - nugivendus_M_N : N ; - nugor_V : V ; - nullatenus_Adv : Adv ; - nullibi_Adv : Adv ; - nullitas_F_N : N ; - nulliter_Adv : Adv ; - nullus_A : A ; - nullus_M_N : N ; - num_Adv : Adv ; - numen_N_N : N ; - numerabilis_A : A ; - numerarius_M_N : N ; - numeratio_F_N : N ; - numerator_M_N : N ; - numero_Adv : Adv ; - numero_V2 : V2 ; - numerose_Adv : Adv ; - numerositas_F_N : N ; - numerosus_A : A ; - numerus_M_N : N ; - numisma_N_N : N ; - nummarius_A : A ; - nummatus_A : A ; - nummischedula_F_N : N ; - nummisma_N_N : N ; - nummularius_A : A ; - nummularius_M_N : N ; - nummulus_M_N : N ; - nummus_M_N : N ; - numquam_Adv : Adv ; - numquid_Adv : Adv ; - nun_N : N ; - nunc_Adv : Adv ; - nuncia_F_N : N ; - nunciam_Adv : Adv ; - nunciatio_F_N : N ; - nunciator_M_N : N ; - nunciatrix_F_N : N ; - nuncio_V2 : V2 ; - nuncium_N_N : N ; - nuncius_A : A ; - nuncius_M_N : N ; - nuncupatio_F_N : N ; - nuncupatorius_A : A ; - nuncupatura_F_N : N ; - nuncupo_V : V ; - nundina_F_N : N ; - nundinor_V : V ; - nundinum_N_N : N ; - nunnullus_M_N : N ; - nunquam_Adv : Adv ; - nunquid_Adv : Adv ; - nuntia_F_N : N ; - nuntiatio_F_N : N ; - nuntiator_M_N : N ; - nuntiatrix_F_N : N ; - nuntiatura_F_N : N ; - nuntio_V2 : V2 ; - nuntium_N_N : N ; - nuntius_A : A ; - nuntius_M_N : N ; - nuo_V2 : V2 ; - nuper_Adv : Adv ; - nupta_F_N : N ; - nuptia_F_N : N ; - nuptialis_A : A ; - nurus_F_N : N ; - nusquam_Adv : Adv ; - nutabilis_A : A ; - nutabundus_A : A ; - nutamen_N_N : N ; - nuto_V : V ; - nutriamentus_M_N : N ; - nutricius_A : A ; - nutricius_M_N : N ; - nutrico_V2 : V2 ; - nutricor_V : V ; - nutricula_F_N : N ; - nutrimen_N_N : N ; - nutrimens_F_N : N ; - nutrimentum_N_N : N ; - nutrio_V2 : V2 ; - nutrior_V : V ; - nutrix_F_N : N ; - nutus_M_N : N ; - nux_F_N : N ; - nyctegreton_N_N : N ; - nyctegretos_F_N : N ; - nycticorax_M_N : N ; - nylonium_N_N : N ; - nylonius_A : A ; - nympha_F_N : N ; - nymphe_F_N : N ; - o_Interj : Interj ; - ob_Acc_Prep : Prep ; - obaeratus_A : A ; - obaeratus_M_N : N ; - obambulo_V : V ; - obarmo_V : V ; - obaro_V : V ; - obaudio_V : V ; - obba_F_N : N ; - obdo_V2 : V2 ; - obdormio_V2 : V2 ; - obdormisco_V : V ; - obduco_V2 : V2 ; - obductico_F_N : N ; - obductio_F_N : N ; - obducto_V2 : V2 ; - 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_V2 : V2 ; - obeliscus_M_N : N ; - obelus_M_N : N ; - obeo_1_V2 : V2 ; - obeo_2_V2 : V2 ; - obequito_V : V ; - obesus_A : A ; + nonnemo_M_N : N ; -- [XXXDX] :: some persons, a few; + nonnihil_Adv : Adv ; -- [XXXDX] :: in some measure; + nonnihil_N : N ; -- [XXXDX] :: certain amount; + nonnisi_Conj : Conj ; -- [XXXDO] :: not unless; not except; only (on specific terms); + nonnullus_A : A ; -- [XXXBX] :: some, several, a few; one and another; considerable; + nonnullus_M_N : N ; -- [XXXDX] :: some (pl.), several, a few; + nonnumquam_Adv : Adv ; -- [XXXDX] :: sometimes; + nonnunquam_Adv : Adv ; -- [XXXDX] :: sometimes; + norma_F_N : N ; -- [XXXDX] :: carpenter's square; standard, pattern; + normativus_A : A ; -- [GXXEK] :: normal; + noscito_V : V ; -- [XXXDX] :: recognize; be acquainted with; + nosco_V2 : V2 ; -- [XXXAO] :: |examine, study, inspect; try (case); recognize, accept as valid/true; recall; + nosocomium_N_N : N ; -- [GXXEK] :: hospital; + nosocomus_M_N : N ; -- [GXXEK] :: male nurse; + nostalgia_F_N : N ; -- [GXXEK] :: nostalgia; + noster_A : A ; -- [XXXAX] :: our; + noster_M_N : N ; -- [XXXDX] :: our men (pl.); + nota_F_N : N ; -- [XXXDX] :: mark, sign, letter, word, writing, spot brand, tattoo-mark; + notabilis_A : A ; -- [XXXDX] :: remarkable, notable; + notaculum_N_N : N ; -- [XXXEK] :: registration; + notariatus_M_N : N ; -- [GXXEK] :: notary's office; + notarius_M_N : N ; -- [GXXEK] :: notary; + notatio_F_N : N ; -- [XXXDX] :: marking; + noteo_V : V ; -- [FXXEM] :: notify; + notesco_V2 : V2 ; -- [XXXDX] :: become known; become famous; + nothus_A : A ; -- [XXXDX] :: illegitimate (known father); cross-bred, mixed, mongrel; false, spurious; + notificatio_F_N : N ; -- [FXXEM] :: notification; + notio_F_N : N ; -- [XXXDX] :: judicial examination or enquiry; + notionalis_A : A ; -- [FXXEM] :: conceptual; + notionaliter_Adv : Adv ; -- [FXXEM] :: conceptually; + notitia_F_N : N ; -- [XXXBX] :: notice; acquaintance; + noto_V : V ; -- [XXXBX] :: observe; record; brand; write, inscribe; + notula_F_N : N ; -- [DXXFS] :: little mark; + notum_N_N : N ; -- [XXXDX] :: notorious facts (pl.); scandal; + notus_A : A ; -- [XXXAX] :: well known, familiar, notable, famous, esteemed; notorious, of ill repute; + notus_M_N : N ; -- [XXXDX] :: friends (pl.), acquaintances; + novacula_F_N : N ; -- [XXXDX] :: razor; + novale_N_N : N ; -- [XXXCO] :: fallow/unplowed land; enclosed land; field; land/field cultivated first time; + novalis_F_N : N ; -- [XXXCO] :: fallow/unplowedland; enclosed land; field; land/field cultivated first time; + novamen_N_N : N ; -- [DXXFS] :: innovation; + novatio_F_N : N ; -- [XLXEO] :: substitution by stipulatio of new for existing obligation; renewing; renovation; + nove_Adv : Adv ; -- [XXXDX] :: newly, in new/unusual manner; recently/short time ago; finally/lastly; at last; + novella_F_N : N ; -- [GXXEK] :: news (literary kind); + novello_V : V ; -- [XAXFO] :: plant nurseries; + novellus_A : A ; -- [XXXDX] :: young, tender; + novenarius_A : A ; -- [DXXES] :: ninefold, consisting of nine; having crosssection of 9 square feet, 3 by 3 feet; + novendialis_A : A ; -- [XXXDX] :: lasting nine days; held on the ninth day after a person's death; + noverca_F_N : N ; -- [XXXDX] :: stepmother; + noviciatus_M_N : N ; -- [GXXEK] :: novitiate; apprenticeship; + novicius_A : A ; -- [XXXEC] :: new, fresh; esp. of persons new to slavery; + novicius_M_N : N ; -- [GXXEK] :: beginner; + novilunium_N_N : N ; -- [DSXES] :: new moon; + novissime_Adv : Adv ; -- [XXXCO] :: lately, very recently; last, after all else; for last time; lastly; in the end; + novissimum_N_N : N ; -- [XXXDX] :: rear (pl.), those at the rear (the freshest troops); + novissimus_A : A ; -- [XXXDX] :: last, rear; most recent; utmost; + novitas_F_N : N ; -- [XXXAO] :: |restored state (as new); being new appointed/promoted; surprise; modern times; + noviter_Adv : Adv ; -- [DXXES] :: recently, newly; + novitiatus_M_N : N ; -- [EEXEE] :: novitiate; + novitius_A : A ; -- [EEXEE] :: novice-; of a novice; + novitius_M_N : N ; -- [EEXDX] :: one newly come; novice (eccl.); + novo_V : V ; -- [XXXDX] :: make new, renovate; renew, refresh, change; + novus_A : A ; -- [XXXAX] :: new, fresh, young; unusual, extraordinary; (novae res, f. pl. = revolution); + nox_F_N : N ; -- [XXXAX] :: night [prima nocte => early in the night; multa nocte => late at night]; + noxa_F_N : N ; -- [XXXDX] :: hurt, injury; crime; punishment, harm; + noxalis_A : A ; -- [XLXDO] :: of injury done by person/other's animal; harm/damage/injury; power to harm; + noxia_F_N : N ; -- [XXXDX] :: crime, fault; + noxiosus_A : A ; -- [XXXES] :: very harmful, noxious; full of guilt, vicious; + noxius_A : A ; -- [XXXBX] :: harmful, noxious; guilty, criminal; + nubecula_F_N : N ; -- [XXXEC] :: little cloud; a troubled expression; + nubeculatus_A : A ; -- [GXXEK] :: comic; (fabula nubeculata = comic strip); + nubes_F_N : N ; -- [XXXAO] :: |frown, gloomy expression; gloom/anxiety; mourning veil; cloud/threat (of war); + nubifer_A : A ; -- [XXXDX] :: cloud capped; cloud bearing, that brings clouds; + nubigena_M_N : N ; -- [XXXDX] :: cloud-born; (of the Centaurs); + nubilis_A : A ; -- [XXXDX] :: marriageable; + nubilosus_A : A ; -- [XXXFO] :: cloudy, foggy; murky; + nubilum_N_N : N ; -- [XXXDX] :: clouds (pl.), rain clouds; + nubilus_A : A ; -- [XXXBX] :: cloudy; lowering; + nubis_M_N : N ; -- [BXXEO] :: |frown, gloomy expression; gloom/anxiety; mourning veil; cloud/threat (of war); + nubo_V2 : V2 ; -- [XXXAX] :: marry, be married to; + nubs_M_N : N ; -- [XXXFO] :: |frown, gloomy expression; gloom/anxiety; mourning veil; cloud/threat (of war); + nucatum_N_N : N ; -- [GXXEK] :: nougat; + nucifrangibulum_N_N : N ; -- [GXXEK] :: nutcracker; + nuclearis_A : A ; -- [HSXEK] :: nuclear; + nucleus_M_N : N ; -- [XXXDX] :: nucleus, inside of a nut, kernel; nut; central part; hard round mass/nodule; + nuditas_F_N : N ; -- [DXXCS] :: nakedness, bareness, nudity, exposure; bareness, want; + nudius_Adv : Adv ; -- [XXXEC] :: it is now the...day since; (always with ordinal numerals); + nudiustertius_Adv : Adv ; -- [XXXDX] :: day before yesterday; + nudo_V : V ; -- [XXXDX] :: lay bare, strip; leave unprotected; + nudus_A : A ; -- [XXXAX] :: nude; bare, stripped; + nuga_F_N : N ; -- [XXXDX] :: trifles (pl.), nonsense; trash; frivolities; bagatelle(s); + nugacitas_F_N : N ; -- [EXXES] :: drollery, trifling playfulness; + nugator_M_N : N ; -- [XXXDX] :: one who plays the fool; teller of tall stories; + nugatorius_A : A ; -- [XXXDX] :: trifling, worthless, futile, paltry; + nugigerulus_M_N : N ; -- [XXXFS] :: clothes-dealer (in female finery); + nugivendus_M_N : N ; -- [XXXFS] :: clothes-dealer (in female finery); + nugor_V : V ; -- [XXXDX] :: play the fool, talk nonsense; trifle; + nullatenus_Adv : Adv ; -- [FXXEF] :: not at all; in nowise, by no means; + nullibi_Adv : Adv ; -- [FXXEM] :: nowhere; + nullitas_F_N : N ; -- [GXXEK] :: non-existence; + nulliter_Adv : Adv ; -- [GXXEK] :: not at all; + nullus_A : A ; -- [XXXAX] :: no; none, not any; (PRONominal ADJ) + nullus_M_N : N ; -- [XXXDX] :: no one; + num_Adv : Adv ; -- [XXXBX] :: if, whether; now, surely not, really, then (asking question expecting neg); + numen_N_N : N ; -- [XXXAX] :: divine will, divinity; god; + numerabilis_A : A ; -- [XXXDX] :: possible/easy to count; + numerarius_M_N : N ; -- [DSXES] :: accountant, keeper of accounts; arithmetician; + numeratio_F_N : N ; -- [XSXDO] :: calculation, reckoning, counting; paying out (money); payment; enumeration; + numerator_M_N : N ; -- [GSXEK] :: numerator (math.); + numero_Adv : Adv ; -- [XXXDO] :: quickly, rapidly; prematurely, too soon; too much(?); + numero_V2 : V2 ; -- [XSXAO] :: count, add up, reckon/compute; consider; relate; number/enumerate, catalog; pay; + numerose_Adv : Adv ; -- [XXXDO] :: plentifully, in/with large numbers; into many parts; in many ways; rhythmically; + numerositas_F_N : N ; -- [XXXDS] :: multitude, great number; rhythm, harmony; + numerosus_A : A ; -- [XXXBO] :: |plentiful/abundant/populous; harmonious/melodious/rhythmic/proportioned; + numerus_M_N : N ; -- [XSXAO] :: |rhythm/cadence/frequency; meter/metrical foot/line; melody; exercise movements; + numisma_N_N : N ; -- [DXXES] :: coin/piece of money; coinage; token/voucher; medal (L+S); stamp; image on coin; + nummarius_A : A ; -- [XXXEC] :: of/belonging to money; bribed with money, venal; + nummatus_A : A ; -- [XXXDX] :: moneyed; + nummischedula_F_N : N ; -- [GXXEK] :: banknote; + nummisma_N_N : N ; -- [DXXFS] :: coin/piece of money; coinage; token/voucher; medal (L+S); stamp; image on coin; + nummularius_A : A ; -- [XLXFO] :: of/related to the changing of foreign currency; + nummularius_M_N : N ; -- [XLXCO] :: kind of small-change state banker; (to change foreign currency and test coins); + nummulus_M_N : N ; -- [XXXEC] :: little piece or sum of money; + nummus_M_N : N ; -- [XXXDX] :: coin; cash; money; sesterce; + numquam_Adv : Adv ; -- [XXXAX] :: never; + numquid_Adv : Adv ; -- [XXXCO] :: is it possible, surely ... not; can it be that; (question expecting negative); + nun_N : N ; -- [DEQEW] :: nun; (14th letter of Hebrew alphabet); (transliterate as N); + nunc_Adv : Adv ; -- [XXXAX] :: now, today, at present; + nuncia_F_N : N ; -- [DXXES] :: female messenger; she who brings tidings (L+S); + nunciam_Adv : Adv ; -- [XXXDX] :: here and now; now at last; + nunciatio_F_N : N ; -- [DXXCS] :: announcement of augur signs observed; notice/notification/laying of information; + nunciator_M_N : N ; -- [DXXES] :: announcer, he who lays information/stays neighbor's action; reporter; informer; + nunciatrix_F_N : N ; -- [DXXFS] :: announcer (female), she who lays information/stays neighbor's action; informer; + nuncio_V2 : V2 ; -- [DXXAS] :: announce/report/bring word/give warning; convey/deliver/relate message/greeting; + nuncium_N_N : N ; -- [DXXDS] :: message, announcement; news; notice of divorce/annulment of betrothal; + nuncius_A : A ; -- [DXXDS] :: announcing, bringing word (of occurrence); giving warning; prognosticatory; + nuncius_M_N : N ; -- [DXXAS] :: messenger/herald/envoy; message (oral), warning; report; messenger's speech; + nuncupatio_F_N : N ; -- [XXXCO] :: solemn pronouncement (vow); naming/declaring; ramification; nomination; name; + nuncupatorius_A : A ; -- [GXXEK] :: dedicatory; + nuncupatura_F_N : N ; -- [GXXEK] :: dedication; + nuncupo_V : V ; -- [XXXDX] :: call, name; express; + nundina_F_N : N ; -- [XXXDX] :: market day (pl.); traffic; [novem+dies => held every ninth day]; + nundinor_V : V ; -- [XXXDX] :: buy or sell in the market; practice trade of a discreditable kind; + nundinum_N_N : N ; -- [XXXDX] :: period from one market-day to the next; + nunnullus_M_N : N ; -- [XXXDX] :: some (pl.), several, a few; + nunquam_Adv : Adv ; -- [XXXDX] :: at no time, never; not in any circumstances; + nunquid_Adv : Adv ; -- [XXXCO] :: is it possible, surely ... not; can it be that; (question expecting negative); + nuntia_F_N : N ; -- [XXXEO] :: female messenger; she who brings tidings (L+S); + nuntiatio_F_N : N ; -- [XXXCO] :: announcement of augur signs observed; notice/notification/laying of information; + nuntiator_M_N : N ; -- [XXXEO] :: announcer, he who lays information/stays neighbor's action; reporter; informer; + nuntiatrix_F_N : N ; -- [DXXFS] :: announcer (female), she who lays information/stays neighbor's action; informer; + nuntiatura_F_N : N ; -- [GXXEK] :: nunciature, representation of Pope by nuncio; office/term of nuncio; + nuntio_V2 : V2 ; -- [XXXAO] :: announce/report/bring word/give warning; convey/deliver/relate message/greeting; + nuntium_N_N : N ; -- [XXXDO] :: message, announcement; news; notice of divorce/annulment of betrothal; + nuntius_A : A ; -- [XXXDO] :: announcing, bringing word (of occurrence); giving warning; prognosticatory; + nuntius_M_N : N ; -- [XXXAO] :: messenger/herald/envoy; message (oral), warning; report; messenger's speech; + nuo_V2 : V2 ; -- [XXXDX] :: nod; + nuper_Adv : Adv ; -- [XXXBO] :: recently, not long ago; in recent years/our own time; (SUPER) latest in series; + nupta_F_N : N ; -- [XXXDX] :: bride; + nuptia_F_N : N ; -- [XXXDX] :: marriage (pl.), nuptials, wedding; + nuptialis_A : A ; -- [XXXDX] :: of a wedding or marriage, nuptial; + nurus_F_N : N ; -- [XXXDX] :: daughter-in-law; prospective daughter-in-law; wife of grandson, etc. (leg.); + nusquam_Adv : Adv ; -- [XXXBX] :: nowhere; on no occasion; + nutabilis_A : A ; -- [XXXFO] :: tottering; insecure; + nutabundus_A : A ; -- [XXXFO] :: tottering; staggering; + nutamen_N_N : N ; -- [XXXFO] :: bobbing; movement upwards and downwards; + nuto_V : V ; -- [XXXDX] :: waver, give way; + nutriamentus_M_N : N ; -- [FXXEM] :: nourishment; + nutricius_A : A ; -- [XAXES] :: nourishing; suckling; + nutricius_M_N : N ; -- [XXXDX] :: tutor; foster-father; + nutrico_V2 : V2 ; -- [XXXCO] :: nurse/suckle; raise/rear/bring up; nourish/promote growth/well being; cherish; + nutricor_V : V ; -- [XXXEO] :: nurse/suckle; raise/rear/bring up; nourish/promote growth/well being; cherish; + nutricula_F_N : N ; -- [XXXDX] :: nurse; + nutrimen_N_N : N ; -- [XXXDX] :: nourishment, sustenance; + nutrimens_F_N : N ; -- [FXXEN] :: food, nourishment; + nutrimentum_N_N : N ; -- [XXXDX] :: nourishment, sustenance; + nutrio_V2 : V2 ; -- [XXXAO] :: |rear/raise; foster/encourage; tend/treat (wound/sick person); deal gently with; + nutrior_V : V ; -- [XXXEO] :: |rear/raise; foster/encourage; tend/treat (wound/sick person); deal gently with; + nutrix_F_N : N ; -- [XXXBX] :: nurse; + nutus_M_N : N ; -- [XXXBX] :: nod; command, will; [ad nutum => instantly; with the agreement of]; + nux_F_N : N ; -- [XXXDX] :: nut; + nyctegreton_N_N : N ; -- [XAQNO] :: thorny oriental plant (reputed to become luminous at night); + nyctegretos_F_N : N ; -- [XAQNO] :: thorny oriental plant (reputed to become luminous at night); + nycticorax_M_N : N ; -- [DAXES] :: night raven; + nylonium_N_N : N ; -- [GXXEK] :: nylon; + nylonius_A : A ; -- [GXXEK] :: of nylon; + nympha_F_N : N ; -- [XYHAO] :: nymph; (semi-divine female nature/water spirit); water; bride; young maiden; + nymphe_F_N : N ; -- [XYHCO] :: nymph; (semi-divine female nature/water spirit); water; bride; young maiden; + o_Interj : Interj ; -- [XXXAX] :: Oh!; + ob_Acc_Prep : Prep ; -- [XXXAX] :: on account of, for the sake of, for; instead of; right before; + obaeratus_A : A ; -- [XXXDX] :: in debt; + obaeratus_M_N : N ; -- [XXXDX] :: debtor; + obambulo_V : V ; -- [XXXDX] :: walk up to, so as to meet; traverse; + obarmo_V : V ; -- [XXXDX] :: arm; + obaro_V : V ; -- [XXXDX] :: plow up; + obaudio_V : V ; -- [XXXFO] :: obey, listen to; + obba_F_N : N ; -- [XXXFS] :: beaker; decanter; city in Africa near Carthage; + obdo_V2 : V2 ; -- [XXXDX] :: put before/against; shut, close, fasten; + obdormio_V2 : V2 ; -- [XXXCO] :: fall asleep; + obdormisco_V : V ; -- [XXXCO] :: fall asleep; go to sleep; (w/reference to death); + obduco_V2 : V2 ; -- [XXXDX] :: lead or draw before; cover/lay over; overspread; wrinkle; screen; + obductico_F_N : N ; -- [XXXDS] :: veiling; covering; + obductio_F_N : N ; -- [XXXFO] :: act of covering/veiling/enveloping; affliction/distress (Souter); + obducto_V2 : V2 ; -- [BXXFS] :: lead in rivalry; + obduresco_V2 : V2 ; -- [XXXDX] :: be persistent, endure; + obduro_V : V ; -- [XXXDX] :: be hard, persist, endure; + obedens_A : A ; -- [XXXCO] :: obedient, compliant, submissive to authority/commands/word (of); under orders; + obedienter_Adv : Adv ; -- [XXXEO] :: obediently, compliantly, without demur; willingly, readily (L+S); + obedientia_F_N : N ; -- [XXXCO] :: obedience, compliance, submission to authority; + obedientiarius_M_N : N ; -- [FXXFQ] :: official; E:obedientiary; holder of office in monastery; (OED); + obedientio_F_N : N ; -- [DXXCS] :: obedience, compliance, submission to authority; + obedio_V2 : V2 ; -- [XXXDX] :: obey; listen/harken/submit (to); be subject/obedient/responsible/a slave (to); + obeliscus_M_N : N ; -- [XXXEO] :: obelisk; critical mark (placed opposite suspected passages L+S); rose bud; + obelus_M_N : N ; -- [DGXES] :: obelus, critical mark (spit-shaped put by suspected passages); obelisk; pivot; + obeo_1_V : V ; -- [XXXAX] :: go to meet; attend to; fall; die; + obeo_2_V : V ; -- [XXXAX] :: go to meet; attend to; fall; die; + obequito_V : V ; -- [XXXDX] :: ride up to; + obesus_A : A ; -- [XXXDX] :: fat, stout, plump; obex_F_N : N ; -- [XXXDX] :: bolt, bar; barrier; obstacle; - obex_M_N : N ; - obfendo_V2 : V2 ; - obfirmo_V : V ; - obfringo_V2 : V2 ; - obfusco_V : V ; - obhaeresco_V : V ; - obicio_V2 : V2 ; - obiter_Adv : Adv ; - obitus_M_N : N ; - objaceo_V : V ; - objectatio_F_N : N ; - objectivitas_F_N : N ; - objectivum_N_N : N ; - objectivus_A : A ; - objecto_V : V ; - objectum_N_N : N ; - objectus_A : A ; - objectus_M_N : N ; - objicio_V2 : V2 ; - objrascor_V : V ; - objurgator_M_N : N ; - objurgatorius_A : A ; - objurgo_V : V ; - oblanguesco_V : V ; - oblaqueatio_F_N : N ; - oblaqueo_V : V ; - oblatio_F_N : N ; - oblatrix_F_N : N ; - oblatro_V : V ; - oblectamen_N_N : N ; - oblectamentum_N_N : N ; - oblectatio_F_N : N ; - oblecto_V : V ; - oblido_V2 : V2 ; - obligamentum_N_N : N ; - obligatio_F_N : N ; - obligo_V : V ; - oblimo_V : V ; - oblino_V : V ; - obliquus_A : A ; - oblitero_V : V ; - obliterus_A : A ; - oblitesco_V : V ; - oblittero_V : V ; - oblitterus_A : A ; - oblitus_A : A ; - obliurgatio_F_N : N ; - oblivio_F_N : N ; - obliviosus_A : A ; - obliviscor_V : V ; - oblivium_N_N : N ; - oblocutor_M_N : N ; - oblongus_A : A ; - obloquor_V : V ; - obluctor_V : V ; - obmolior_V : V ; - obmurmuro_V : V ; - obmutesco_V2 : V2 ; - obnatus_A : A ; - obnitor_V : V ; - obnixe_Adv : Adv ; - obnixie_Adv : Adv ; - obnixus_A : A ; - obnoxietas_F_N : N ; - obnoxiosus_A : A ; - obnoxius_A : A ; - obnubilatio_F_N : N ; - obnubilo_V2 : V2 ; - obnubo_V2 : V2 ; - obnuntiatio_F_N : N ; - obnuntio_V : V ; - oboedens_A : A ; - oboediens_A : A ; - oboedienter_Adv : Adv ; - oboedientia_F_N : N ; - oboedientio_F_N : N ; - oboedio_V2 : V2 ; - oboleo_V : V ; - obolus_M_N : N ; - oborior_V : V ; - obortus_A : A ; - obprobrium_N_N : N ; - obrepo_V2 : V2 ; - obreptio_F_N : N ; - obrepto_V : V ; - obretio_V2 : V2 ; - obrigesco_V2 : V2 ; - obrizum_N_N : N ; - obrizus_A : A ; - obrogo_V : V ; - obruo_V2 : V2 ; - obrussa_F_N : N ; - obrussus_A : A ; - obruza_F_N : N ; - obruzus_A : A ; - obrysum_N_N : N ; - obrysus_A : A ; - obryza_F_N : N ; - obryzatus_A : A ; - obryzum_N_N : N ; - obsaepio_V2 : V2 ; - obsaturo_V2 : V2 ; - obscaene_Adv : Adv ; - obscaenitas_F_N : N ; - obscaenum_N_N : N ; - obscaenus_A : A ; - obscaenus_M_N : N ; - obscene_Adv : Adv ; - obscenitas_F_N : N ; - obscenum_N_N : N ; - obscenus_A : A ; - obscenus_M_N : N ; - obscuratio_F_N : N ; - obscuritas_F_N : N ; - obscuro_V : V ; - obscurus_A : A ; - obsecratio_F_N : N ; - obsecro_V2 : V2 ; - obsecundanter_Adv : Adv ; - obsecundo_V2 : V2 ; - obsequella_F_N : N ; - obsequens_A : A ; - obsequenter_Adv : Adv ; - obsequentia_F_N : N ; - obsequiosus_A : A ; - obsequium_N_N : N ; - obsequor_V : V ; - obsero_V2 : V2 ; - observatio_F_N : N ; - observatorium_N_N : N ; - observito_V : V ; - observo_V : V ; + obex_M_N : N ; -- [XXXDX] :: bolt, bar; barrier; obstacle; + obfendo_V2 : V2 ; -- [XXXAO] :: ||come upon, meet, find, encounter, be faced with; run aground; violate/wrong; + obfirmo_V : V ; -- [DXXES] :: secure; bolt, lock, fasten, bar; be determined/inflexible; persevere in; + obfringo_V2 : V2 ; -- [XAXEO] :: break up (ground) by cross-plowing; + obfusco_V : V ; -- [XXXFS] :: darken; obscure; E:vilify; + obhaeresco_V : V ; -- [XXXFS] :: stick fast; adhere; + obicio_V2 : V2 ; -- [XXXAX] :: throw before/to, cast; object, oppose; upbraid; throw in one's teeth; present; + obiter_Adv : Adv ; -- [XXXEC] :: on the way, by the way, in passing; + obitus_M_N : N ; -- [XXXDX] :: approaching; approach, visit; setting (of the sun, etc), death; + objaceo_V : V ; -- [XXXDX] :: lie near by/at hand/opposite; lie in/block the way; lie exposed/at the mercy o; + objectatio_F_N : N ; -- [XXXEO] :: taunting; casting aspersions; reproach (L+S); + objectivitas_F_N : N ; -- [GXXEK] :: objectivity; + objectivum_N_N : N ; -- [GXXEK] :: objective (photo); + objectivus_A : A ; -- [GXXEK] :: objective; + objecto_V : V ; -- [XXXDX] :: expose/throw (to); throw/put in the way; lay to one's charge, put before; + objectum_N_N : N ; -- [XXXEO] :: accusation, charge; S:object, something presented to the senses; + objectus_A : A ; -- [XXXDX] :: opposite; + objectus_M_N : N ; -- [XXXDS] :: interposing; obstructing; + objicio_V2 : V2 ; -- [XXXCS] :: throw before/to, cast; object, oppose; upbraid; throw in one's teeth; present; + objrascor_V : V ; -- [XXXDO] :: be angry (with/at); grow angry at (Cas); + objurgator_M_N : N ; -- [XXXDS] :: rebuker; + objurgatorius_A : A ; -- [XXXEC] :: reproachful, scolding; + objurgo_V : V ; -- [XXXDX] :: scold, chide, reproach; + oblanguesco_V : V ; -- [XXXFS] :: become feeble; + oblaqueatio_F_N : N ; -- [EAXFS] :: tree-root digging; + oblaqueo_V : V ; -- [EAXFS] :: dig around tree-roots; E:surround, encircle; + oblatio_F_N : N ; -- [XXXEO] :: offer/offering (of something), tender, presentation; right to offer something; + oblatrix_F_N : N ; -- [BXXFS] :: nagging woman; + oblatro_V : V ; -- [XXXFS] :: bark at (+DAT or +ACC); + oblectamen_N_N : N ; -- [XXXDX] :: delight, pleasure, source of pleasure; + oblectamentum_N_N : N ; -- [XXXDX] :: delight, pleasure, source of pleasure; + oblectatio_F_N : N ; -- [XXXDX] :: delighting; + oblecto_V : V ; -- [XXXDX] :: delight, please, amuse; + oblido_V2 : V2 ; -- [XXXEC] :: crush; + obligamentum_N_N : N ; -- [XXXFS] :: band (for head); E:obligation? (as used in Tertullian); + obligatio_F_N : N ; -- [XXXCO] :: obligation (legal/money); bond; being liable; mortgaging/pledging/guaranteeing; + obligo_V : V ; -- [XXXDX] :: bind, oblige; + oblimo_V : V ; -- [XXXDX] :: cover/fill with mud; silt up; clog; + oblino_V : V ; -- [XXXDX] :: smear over; + obliquus_A : A ; -- [XXXDX] :: slanting; oblique; + oblitero_V : V ; -- [XXXDX] :: cause to be forgotten/fall into disuse/to disappear; assign to oblivion; + obliterus_A : A ; -- [XXXFO] :: forgotten; erased from memory; + oblitesco_V : V ; -- [XXXEC] :: conceal oneself; + oblittero_V : V ; -- [XXXDX] :: cause to be forgotten/fall into disuse/to disappear; assign to oblivion; + oblitterus_A : A ; -- [XXXFO] :: forgotten; erased from memory; + oblitus_A : A ; -- [XXXDX] :: forgetful (with gen.); + obliurgatio_F_N : N ; -- [XXXCO] :: reprimand, rebuke; action of reproving; + oblivio_F_N : N ; -- [XXXBX] :: oblivion; forgetfulness; + obliviosus_A : A ; -- [XXXEC] :: oblivious, forgetful; causing forgetfulness; + obliviscor_V : V ; -- [XXXAX] :: forget; (with GEN); + oblivium_N_N : N ; -- [XXXDX] :: forgetfulness, oblivion; + oblocutor_M_N : N ; -- [BXXFS] :: contradictor; + oblongus_A : A ; -- [XXXEC] :: oblong; + obloquor_V : V ; -- [XXXDX] :: interpose remarks, interrupt; + obluctor_V : V ; -- [XXXDX] :: struggle against; + obmolior_V : V ; -- [XXXDX] :: put in the way as an obstruction; block up; + obmurmuro_V : V ; -- [XXXDX] :: murmur in protest (at); + obmutesco_V2 : V2 ; -- [XXXDX] :: lose one's speech, become silent; + obnatus_A : A ; -- [XXXEC] :: growing on; + obnitor_V : V ; -- [XXXDX] :: thrust/press against; struggle against, offer resistance; make a stand; + obnixe_Adv : Adv ; -- [XXXEO] :: resolutely; strenuously; + obnixie_Adv : Adv ; -- [XXXEO] :: submissively, in a servile manner; in restricted manner, subject to hindrance; + obnixus_A : A ; -- [XXXDO] :: resolute, determined; obstinate; + obnoxietas_F_N : N ; -- [FXXEM] :: liability; dependence, interrelation, interrelationship (Red); + obnoxiosus_A : A ; -- [BXXDS] :: submissive; + obnoxius_A : A ; -- [XXXBX] :: liable; guilty; + obnubilatio_F_N : N ; -- [FXXFM] :: darkening; + obnubilo_V2 : V2 ; -- [XXXDO] :: obscure, render dark/obscure; darken/cloud/fog (the mind); render unconscious; + obnubo_V2 : V2 ; -- [XXXDX] :: veil, cover (the head); + obnuntiatio_F_N : N ; -- [XXXDS] :: announced bad omen; announcement of poor omen; + obnuntio_V : V ; -- [XXXDX] :: announce adverse omens; + oboedens_A : A ; -- [XXXCO] :: obedient, compliant, submissive to authority/commands/word (of); under orders; + oboediens_A : A ; -- [XXXDX] :: obedient, submissive; + oboedienter_Adv : Adv ; -- [XXXEO] :: obediently, compliantly, without demur; willingly, readily (L+S); + oboedientia_F_N : N ; -- [XXXCO] :: obedience, compliance, submission to authority; + oboedientio_F_N : N ; -- [DXXCS] :: obedience, compliance, submission to authority; + oboedio_V2 : V2 ; -- [XXXBX] :: obey; listen/harken/submit (to); be subject/obedient/responsible/a slave (to); + oboleo_V : V ; -- [XXXCO] :: stink, smell of; present an odor, give forth a smell, betray oneself w/smell; + obolus_M_N : N ; -- [XLHCO] :: obol/obole/obolus, Greek coin or Greek weight (of 1/6 drachma); (a nickel?); + oborior_V : V ; -- [XXXBO] :: arise, occur (thoughts); appear, spring/rise up before; well up (tears); + obortus_A : A ; -- [XXXDX] :: rising, flowing; + obprobrium_N_N : N ; -- [XXXDX] :: reproach, taunt; disgrace, shame, scandal; source of reproach/shame; + obrepo_V2 : V2 ; -- [XXXBO] :: creep up on/approach unawares/unobserved; sneak/drop in; pay surprise visit on; + obreptio_F_N : N ; -- [XXXEO] :: creeping/sneaking up unseen; surprise; fraudulent/improper means of obtaining; + obrepto_V : V ; -- [XXXEO] :: creep up on, approach stealthily; + obretio_V2 : V2 ; -- [XXXEC] :: catch in a net; + obrigesco_V2 : V2 ; -- [XXXES] :: stiffen; + obrizum_N_N : N ; -- [EXXFS] :: pure gold (Vulgate); (also written obrizum aurum); fine gold (Ecc); + obrizus_A : A ; -- [EXXFE] :: fine (gold); refined; assayed, tested (OLD); + obrogo_V : V ; -- [XLXFS] :: abrogate; oppose passage of law; partly repeal law; + obruo_V2 : V2 ; -- [XXXBX] :: cover up, hide, bury; overwhelm, ruin; crush; + obrussa_F_N : N ; -- [XXXCO] :: assay; test; assaying/testing of gold; [aurum ad ~ => tested/fine gold]; + obrussus_A : A ; -- [XXXFO] :: fine (gold); refined; assayed, tested (OLD); + obruza_F_N : N ; -- [XXXCO] :: assay; test; assaying/testing of gold; [aurum ad ~ => tested/fine gold]; + obruzus_A : A ; -- [XXXFO] :: fine (gold); refined; assayed, tested (OLD); + obrysum_N_N : N ; -- [EXXFE] :: fine gold; + obrysus_A : A ; -- [EXXFE] :: fine (gold); refined; assayed, tested (OLD); + obryza_F_N : N ; -- [DXXFS] :: standard gold; fine/pure gold (OLD); + obryzatus_A : A ; -- [DXXFS] :: made of standard gold); + obryzum_N_N : N ; -- [EXXFS] :: pure gold; (also written obryzum aurum); + obsaepio_V2 : V2 ; -- [XXXDX] :: enclose, seal up; block, obstruct; + obsaturo_V2 : V2 ; -- [XXXDS] :: sate, glut; + obscaene_Adv : Adv ; -- [XXXDO] :: obscenely, so as to involve obscenity (of language), indecently, lewdly; + obscaenitas_F_N : N ; -- [XXXCO] :: indecency, obscenity (language); indecent/obscene behavior/figures; ill omen; + obscaenum_N_N : N ; -- [XXXCO] :: |foul/indecent/obscene/lewd language/utterances/behavior (pl.); + obscaenus_A : A ; -- [XXXBO] :: |inauspicious/unpropitious; ill-omened/boding ill; filthy, polluted, disgusting; + obscaenus_M_N : N ; -- [XXXCO] :: sexual pervert; foul-mouthed person; + obscene_Adv : Adv ; -- [XXXDO] :: obscenely, so as to involve obscenity (of language), indecently, lewdly; + obscenitas_F_N : N ; -- [XXXCO] :: indecency, obscenity (language); indecent/obscene behavior/figures; ill omen; + obscenum_N_N : N ; -- [XXXCO] :: |foul/indecent/obscene/lewd language/utterances/behavior (pl.); + obscenus_A : A ; -- [XXXBO] :: |inauspicious/unpropitious; ill-omened/boding ill; filthy, polluted, disgusting; + obscenus_M_N : N ; -- [XXXCO] :: sexual pervert; foul-mouthed person; + obscuratio_F_N : N ; -- [XXXDS] :: darkening; obscuring; + obscuritas_F_N : N ; -- [XXXDX] :: darkness, obscurity unintelligibility; + obscuro_V : V ; -- [XXXDX] :: darken, obscure; conceal; make indistinct; cause to be forgotten; + obscurus_A : A ; -- [XXXAO] :: |||not open; vague/uncertain/dim/faint, poorly known; unclear; incomprehensible; + obsecratio_F_N : N ; -- [XXXDX] :: supplication, entreaty; public act of prayer; + obsecro_V2 : V2 ; -- [XXXBO] :: entreat/beseech/implore/pray; (w/deity as object); [fidem ~ => beg support]; + obsecundanter_Adv : Adv ; -- [DXXFS] :: according to; in compliance with; + obsecundo_V2 : V2 ; -- [DXXDS] :: obey, show obedience; comply with, be compliant, humor; fall in with, follow; + obsequella_F_N : N ; -- [XXXEC] :: compliance; + obsequens_A : A ; -- [XXXES] :: yielding; compliant; + obsequenter_Adv : Adv ; -- [XXXDX] :: compliantly; obediently; with deference; + obsequentia_F_N : N ; -- [XXXFS] :: obsequiousness; complaisance; + obsequiosus_A : A ; -- [BXXES] :: obsequent; compliant, yielding, obedient; complaisant; + obsequium_N_N : N ; -- [XXXBO] :: ||servility/subservience/obsequiousness; ceremony (Bee); attendance; retinue; + obsequor_V : V ; -- [XXXBX] :: yield to; humor; + obsero_V2 : V2 ; -- [XXXDX] :: sow, plant; cover; + observatio_F_N : N ; -- [XXXAO] :: observation, attention, action of watching/taking notice; surveillance; usage; + observatorium_N_N : N ; -- [GSXEK] :: observatory; + observito_V : V ; -- [XXXCS] :: observe; watch carefully; + observo_V : V ; -- [XXXBX] :: watch, observe; heed; obses_F_N : N ; -- [XWXDX] :: hostage; pledge, security; - obses_M_N : N ; - obsessio_F_N : N ; - obsessor_M_N : N ; - obsetricium_N_N : N ; - obsetricius_A : A ; - obsetrico_V : V ; - obsetrix_F_N : N ; - obsideo_V : V ; - obsidialis_A : A ; - obsidio_F_N : N ; - obsidionalis_A : A ; - obsidium_N_N : N ; - obsido_V : V ; - obsignator_M_N : N ; - obsigno_V : V ; - obsisto_V2 : V2 ; - obsitus_A : A ; - obsolefacio_V2 : V2 ; - obsolefio_V : V ; - obsolesco_V2 : V2 ; - obsoletus_A : A ; - obsonator_M_N : N ; - obsonatus_M_N : N ; - obsonium_N_N : N ; - obsono_V : V ; - obsonor_V : V ; - obsorbeo_V2 : V2 ; - obstaculum_N_N : N ; - obstantia_F_N : N ; - obstetricium_N_N : N ; - obstetricius_A : A ; - obstetrico_V : V ; - obstetritius_A : A ; - obstetrix_F_N : N ; - obstinate_Adv : Adv ; - obstinatio_F_N : N ; - obstinatus_A : A ; - obstino_V : V ; - obstipesco_V2 : V2 ; - obstipus_A : A ; - obstitrix_F_N : N ; - obsto_V : V ; - obstrepo_V2 : V2 ; - obstringo_V2 : V2 ; - obstructio_F_N : N ; - obstruo_V2 : V2 ; - obstupefacio_V2 : V2 ; - obstupefio_V : V ; - obstupesco_V2 : V2 ; - obstupidus_A : A ; - obsum_V : V ; - obsuo_V2 : V2 ; - obsurdesco_V : V ; - obtego_V2 : V2 ; - obtemperatio_F_N : N ; - obtempero_V : V ; - obtendo_V2 : V2 ; - obtenebresco_V : V ; - obtenebricatus_A : A ; - obtenebro_V2 : V2 ; - obtentus_M_N : N ; - obtero_V2 : V2 ; - obtestatio_F_N : N ; - obtestor_V : V ; - obtexo_V : V ; - obticeo_V : V ; - obticesco_V2 : V2 ; - obtineo_V : V ; - obtingo_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_V2 : V2 ; - obturgesco_V : V ; - obturo_V2 : V2 ; - obtusus_A : A ; - obtutus_M_N : N ; - obumbro_V : V ; - obuncus_A : A ; - obustus_A : A ; - obvallatus_A : A ; - obvenio_V2 : V2 ; - obversor_V : V ; - obversus_A : A ; - obversus_M_N : N ; - obverto_V2 : V2 ; - obviam_Adv : Adv ; - obvio_V2 : V2 ; - obvius_A : A ; - obvolvo_V2 : V2 ; - occaeco_V : V ; - occallesco_V2 : V2 ; - occano_V2 : V2 ; - occasio_F_N : N ; - occasiuncula_F_N : N ; - occasus_M_N : N ; - occatio_F_N : N ; - occator_M_N : N ; - occecatio_F_N : N ; - occedo_V2 : V2 ; - occento_V : V ; - occidens_A : A ; - occidens_M_N : N ; - occidentalis_A : A ; - occidio_F_N : N ; - occido_V2 : V2 ; - occiduus_A : A ; - occino_V2 : V2 ; - occipio_V2 : V2 ; - occipitium_N_N : N ; - occiput_N_N : N ; - occisio_F_N : N ; - occisor_M_N : N ; - occlamito_V : V ; - occludo_V2 : V2 ; - occo_V : V ; - occubo_V : V ; - occulco_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_V2 : V2 ; - occupatio_F_N : N ; - occupatus_A : A ; - occupo_V : V ; - occuro_V : V ; - occurro_V2 : V2 ; - occurso_V : V ; - occursus_M_N : N ; - ocellum_N_N : N ; - ocellus_M_N : N ; - ochraceus_A : A ; - ocimum_N_N : N ; - ocimus_M_N : N ; - ocinum_N_N : N ; - ocior_A : A ; - ocis_A : A ; - ocissimus_A : A ; - ocrea_F_N : N ; - ocreatus_A : A ; - octachordos_A : A ; + obses_M_N : N ; -- [XWXDX] :: hostage; pledge, security; + obsessio_F_N : N ; -- [XWXDX] :: blockade, siege; obsession (Cal); + obsessor_M_N : N ; -- [XWXDX] :: besieger, frequenter; + obsetricium_N_N : N ; -- [EBXFW] :: midwifery/obstetric care (pl.); + obsetricius_A : A ; -- [EBXEW] :: of/pertaining to a midwife/midwifery/obstetric care; + obsetrico_V : V ; -- [EBXEW] :: assist in childbirth, perform the office of a midwife, provide obstetric care; + obsetrix_F_N : N ; -- [EBXCW] :: midwife; + obsideo_V : V ; -- [XWXBX] :: blockade, besiege, invest, beset; take possession of; + obsidialis_A : A ; -- [XWXFO] :: of/connected with siege/blockade; [corona ~ => grass crown for raising siege]; + obsidio_F_N : N ; -- [XWXDX] :: siege; blockade; + obsidionalis_A : A ; -- [XWXCO] :: of/connected with siege/blockade; [corona ~ => grass crown for raising siege]; + obsidium_N_N : N ; -- [XWXDX] :: siege, blockade; + obsido_V : V ; -- [XWXDX] :: besiege; occupy; + obsignator_M_N : N ; -- [XXXDX] :: sealer, witness; + obsigno_V : V ; -- [XXXDX] :: sign, seal; + obsisto_V2 : V2 ; -- [XXXDX] :: oppose, resist; stand in the way; make a stand against, withstand; + obsitus_A : A ; -- [XXXDX] :: overgrown, covered (with); + obsolefacio_V2 : V2 ; -- [XXXDO] :: degrade/abase; lower worth/dignity of; make common; wear out (L+S); spoil/sully; + obsolefio_V : V ; -- [XXXDO] :: be degraded/sullied/abased; become worn out; (obsolefacio PASS); + obsolesco_V2 : V2 ; -- [XXXDX] :: fall into disuse, be forgotten about; + obsoletus_A : A ; -- [XXXDX] :: worn-out, dilapidated; hackneyed; + obsonator_M_N : N ; -- [XXXDS] :: buyer of victuals; caterer; + obsonatus_M_N : N ; -- [XXXDS] :: catering; marketing; + obsonium_N_N : N ; -- [XXXDX] :: food; provisions, shopping; food w/bread; victuals (esp. fish); + obsono_V : V ; -- [XXXCO] :: buy food, get/purchase provisions/(things for meal); go shopping; feast/banquet; + obsonor_V : V ; -- [XXXDO] :: buy food, get/purchase provisions/(things for meal); go shopping; feast/banquet; + obsorbeo_V2 : V2 ; -- [XPXDS] :: swallow; gulp down; + obstaculum_N_N : N ; -- [XXXDX] :: obstacle, obstruction; that which stands in the way; + obstantia_F_N : N ; -- [XXXDX] :: obstruction; resistance; hindrance; + obstetricium_N_N : N ; -- [XBXFO] :: midwifery/obstetric care (pl.); + obstetricius_A : A ; -- [XBXEO] :: of/pertaining to a midwife/midwifery/obstetric care; + obstetrico_V : V ; -- [DBXES] :: assist in childbirth, perform the office of a midwife, provide obstetric care; + obstetritius_A : A ; -- [DBXEO] :: of/pertaining to a midwife/midwifery/obstetric care; + obstetrix_F_N : N ; -- [XBXCO] :: midwife; + obstinate_Adv : Adv ; -- [XXXDX] :: resolutely, obstinately; + obstinatio_F_N : N ; -- [XXXDX] :: determination, stubbornness; + obstinatus_A : A ; -- [XXXDX] :: firm, resolved, resolute; obstinate; + obstino_V : V ; -- [XXXDX] :: be determined on; + obstipesco_V2 : V2 ; -- [XXXDX] :: be amazed; + obstipus_A : A ; -- [XXXDX] :: awry, crooked, bent sideways or at an angle; + obstitrix_F_N : N ; -- [DBXCS] :: midwife; + obsto_V : V ; -- [XXXBX] :: oppose, hinder; (w/DAT); + obstrepo_V2 : V2 ; -- [XXXDX] :: roar against; make a loud noise; + obstringo_V2 : V2 ; -- [XXXDX] :: confine; involve; oblige, put under an obligation, bind, bind by oath; + obstructio_F_N : N ; -- [XXXDS] :: barrier; obstruction; + obstruo_V2 : V2 ; -- [XXXDX] :: block up, barricade; + obstupefacio_V2 : V2 ; -- [XXXCO] :: strike dumb (w/powerful emotion)/stun/daze/paralyze; befuddle/stupefy (w/drink); + obstupefio_V : V ; -- [XXXCO] :: be astonished/dazed/paralyzed/stunned (w/emotion); (obstupefacio PASS); + obstupesco_V2 : V2 ; -- [XXXDX] :: be stupefied; be struck dumb; be astounded; + obstupidus_A : A ; -- [XXXDS] :: stupefied; confounded; + obsum_V : V ; -- [XXXDX] :: hurt; be a nuisance to, tell against; + obsuo_V2 : V2 ; -- [XXXDX] :: sew up; + obsurdesco_V : V ; -- [XXXEC] :: become deaf; turn a deaf ear; + obtego_V2 : V2 ; -- [XXXDX] :: cover over; conceal; protect; + obtemperatio_F_N : N ; -- [XXXFS] :: obedience; + obtempero_V : V ; -- [XXXCO] :: obey; comply with the demands of; be submissive to; (w/DAT); + obtendo_V2 : V2 ; -- [XXXDX] :: stretch/spread before/over; hide, envelop, conceal; plead as an excuse; + obtenebresco_V : V ; -- [XEXFS] :: grow dark; + obtenebricatus_A : A ; -- [EXXFW] :: darkened, made dark; + obtenebro_V2 : V2 ; -- [DXXCS] :: darken, make dark; obscure, conceal (Saxo); + obtentus_M_N : N ; -- [XXXDX] :: spreading before; cloaking, disguising, pretext; + obtero_V2 : V2 ; -- [XXXDX] :: crush; destroy; trample on, speak of or treat with the utmost contempt; + obtestatio_F_N : N ; -- [XXXDX] :: earnest entreaty, supplication; + obtestor_V : V ; -- [XXXDX] :: call to witness; implore; + obtexo_V : V ; -- [XXXDX] :: veil, cover, overspread; weave over; + obticeo_V : V ; -- [XXXEC] :: be silent; + obticesco_V2 : V2 ; -- [XXXDX] :: meet a situation with silence; + obtineo_V : V ; -- [XXXAO] :: get hold of; maintain; obtain; hold fast, occupy; prevail; + obtingo_V : V ; -- [XXXCO] :: befall, occur (to advantage/disadvantage); fall to as one's lot; + obtorpesco_V2 : V2 ; -- [XXXDX] :: become numb; lose feeling; + obtorqueo_V : V ; -- [XXXDX] :: bend back; twist or turn; + obtrectatio_F_N : N ; -- [XXXDX] :: disparagement; detraction; verbal attack inspired by malice or spite; + obtrectator_M_N : N ; -- [XXXDX] :: critic, disparager; + obtrecto_V : V ; -- [XXXDX] :: detract from; disparage, belittle; + obtrunco_V : V ; -- [XXXDX] :: kill; cut down; + obtueeor_V : V ; -- [XXXDS] :: gaze at; perceive; + obtundo_V2 : V2 ; -- [XXXDX] :: strike, beat, batter; make blunt; deafen; + obturgesco_V : V ; -- [XXXFS] :: swell up; + obturo_V2 : V2 ; -- [XXXEC] :: stop up; + obtusus_A : A ; -- [XXXDX] :: blunt; dull; obtuse; + obtutus_M_N : N ; -- [XXXDX] :: gaze; contemplation; + obumbro_V : V ; -- [XXXDX] :: overshadow, darken; conceal; defend; + obuncus_A : A ; -- [XXXDX] :: bent, hooked; + obustus_A : A ; -- [XXXDX] :: having extremity burnt to form a point; scorched by burning; + obvallatus_A : A ; -- [XXXDX] :: fortified (Collins = VPAR obvallo); + obvenio_V2 : V2 ; -- [XXXDX] :: meet; + obversor_V : V ; -- [XXXDX] :: appear before one; go to and fro publicly; + obversus_A : A ; -- [XXXCO] :: opposite, facing; turned towards; on the opposite side of the world; + obversus_M_N : N ; -- [XXXFQ] :: enemy (pl.); (Collins); + obverto_V2 : V2 ; -- [XXXDX] :: turn or direct towards; direct against; + obviam_Adv : Adv ; -- [XXXDX] :: in the way; against; + obvio_V2 : V2 ; -- [XXXDX] :: meet (with dat.); + obvius_A : A ; -- [XXXAX] :: in the way, easy; hostile; exposed (to); + obvolvo_V2 : V2 ; -- [XXXCO] :: wrap/muffle/cover up; cover (head/face) completely; wrap/wind (bandage) over; + occaeco_V : V ; -- [XXXDX] :: blind; blot out the light of day, darken; obscure, bury, conceal; seal/stop up; + occallesco_V2 : V2 ; -- [XXXDX] :: become callous; acquire a thick skin; + occano_V2 : V2 ; -- [XXXEC] :: sound; + occasio_F_N : N ; -- [XXXBX] :: opportunity; chance; pretext, occasion; + occasiuncula_F_N : N ; -- [XXXDS] :: opportunity; + occasus_M_N : N ; -- [XXXBX] :: setting; [solis occasus => sunset; west]; + occatio_F_N : N ; -- [XXXDS] :: harrowing; + occator_M_N : N ; -- [XXXDS] :: harrower; one who harrows; + occecatio_F_N : N ; -- [FBXFM] :: blindness; + occedo_V2 : V2 ; -- [XXXEC] :: go towards, meet; + occento_V : V ; -- [XXXEC] :: sing a serenade to; sing a lampoon against; + occidens_A : A ; -- [XSXEO] :: connected with sunset/evening; western, westerly; + occidens_M_N : N ; -- [XSXCO] :: west; region of the setting sun; western part of the world/its inhabitants; + occidentalis_A : A ; -- [XXXFO] :: of/pertaining to/connected with/coming from the west; westerly; + occidio_F_N : N ; -- [XXXDX] :: massacre; wholesale slaughter; + occido_V2 : V2 ; -- [XXXAX] :: kill, murder, slaughter, slay; cut/knock down; weary, be the death/ruin of; + occiduus_A : A ; -- [XXXDX] :: setting; westerly; + occino_V2 : V2 ; -- [XXXDX] :: break in with a song or call; interpose a call; sing inauspiciously, croak; + occipio_V2 : V2 ; -- [XXXDX] :: begin; + occipitium_N_N : N ; -- [XXXEC] :: back of the head, occiput; + occiput_N_N : N ; -- [XXXEC] :: back of the head, occiput; + occisio_F_N : N ; -- [XXXEO] :: murder, killing; slaughter; + occisor_M_N : N ; -- [BXXFS] :: slayer; + occlamito_V : V ; -- [BXXFS] :: cry aloud; bawl out; + occludo_V2 : V2 ; -- [XXXEC] :: shut up, close up; + occo_V : V ; -- [XXXDX] :: harrow (ground); + occubo_V : V ; -- [XXXCO] :: lie (against/on top of); lie dead; + occulco_V : V ; -- [XXXDX] :: trample down; + occulo_V2 : V2 ; -- [XXXDX] :: cover; cover up, hide, cover over, conceal; + occultatio_F_N : N ; -- [XXXDX] :: concealment; + occulte_Adv : Adv ; -- [XXXDX] :: secretly; + occultismus_M_N : N ; -- [GXXEK] :: occultism; + occulto_V : V ; -- [XXXBX] :: hide; conceal; + occultum_N_N : N ; -- [XXXES] :: secrecy; hiding; + occultus_A : A ; -- [XXXBX] :: hidden, secret; [in occulto => secretly]; + occumbo_V2 : V2 ; -- [XXXDX] :: meet with (death); meet one's death; + occupatio_F_N : N ; -- [XXXDX] :: occupation, employment; + occupatus_A : A ; -- [XXXDS] :: occupied; busy; + occupo_V : V ; -- [XXXBX] :: seize; gain; overtake; capture, occupy; attack; + occuro_V : V ; -- [FXXEN] :: occur, come about; happen; + occurro_V2 : V2 ; -- [XXXBX] :: run to meet; oppose, resist; come to mind, occur (with DAT); + occurso_V : V ; -- [XXXDX] :: run repeatedly or in large numbers; mob; obstruct; + occursus_M_N : N ; -- [XXXDX] :: meeting; + ocellum_N_N : N ; -- [GXXEK] :: buttonhole; + ocellus_M_N : N ; -- [XXXBX] :: (little) eye; darling; + ochraceus_A : A ; -- [GXXEK] :: ocher-colored; + ocimum_N_N : N ; -- [XAXCO] :: herb, basil (Ocimim basilicum); + ocimus_M_N : N ; -- [XAXCO] :: herb, basil (Ocimim basilicum); + ocinum_N_N : N ; -- [XAXES] :: fodder herb; clover-like plant; + ocior_A : A ; -- [XXXDX] :: swifter, more speedy/rapid; sooner, prompter; appearing/occurring earlier; + ocis_A : A ; -- [XXXCO] :: swift/rapid, at speed; (COMP) arriving/appearing/occurring earlier/sooner; + ocissimus_A : A ; -- [XXXDX] :: swiftest, most speedy/rapid; soonest, most prompt; appearing/occurring earliest; + ocrea_F_N : N ; -- [XXXDX] :: greave, armor for leg below the knee; leg-covering; + ocreatus_A : A ; -- [XXXEC] :: wearing greaves (armor for leg below the knee); + octachordos_A : A ; -- [XXXFS] :: octachord; 8-stringed; octaedros_F_N : N ; -- [FSXFS] :: octahedron; - octaedros_M_N : N ; - octipes_A : A ; - octogenarius_A : A ; - octoiugis_A : A ; - octonarius_A : A ; - octophoron_N_N : N ; - octophoros_A : A ; - octuplicatus_A : A ; - octuplum_N_N : N ; - octuplus_A : A ; - octussis_M_N : N ; - oculatus_A : A ; - oculus_M_N : N ; - odeo_V2 : V2 ; - odibilis_A : A ; - odio_V2 : V2 ; - odiose_Adv : Adv ; - odiosus_A : A ; - odium_N_N : N ; - odontalgia_F_N : N ; - odontologia_F_N : N ; - odor_M_N : N ; - odoramen_N_N : N ; - odoramentum_N_N : N ; - odoratio_F_N : N ; - odoratus_A : A ; - odoratus_M_N : N ; - odorifer_A : A ; - odoro_V : V ; - odoror_V : V ; - odorus_A : A ; - oecologia_F_N : N ; - oecologicus_A : A ; - oecologista_M_N : N ; - oeconomia_F_N : N ; - oeconomicus_A : A ; - oeconomus_M_N : N ; - oecosystema_N_N : N ; - oecumenicus_A : A ; - oecumenismus_M_N : N ; - oenanthe_F_N : N ; - oenococtus_A : A ; - oenophorum_N_N : N ; - oephi_N : N ; - oestrus_M_N : N ; - oesypum_N_N : N ; - ofella_F_N : N ; - offa_F_N : N ; - offendiculum_N_N : N ; - offendo_V2 : V2 ; - offensa_F_N : N ; - offensio_F_N : N ; - offensiuncula_F_N : N ; - offenso_V : V ; - offensum_N_N : N ; - offensus_A : A ; - offensus_M_N : N ; - offero_V : V ; - offertio_F_N : N ; - offertoria_F_N : N ; - offertorium_N_N : N ; - offerumenta_F_N : N ; - officialis_A : A ; - officialis_M_N : N ; - officiarius_M_N : N ; - officina_F_N : N ; - officio_V2 : V2 ; - officiosus_A : A ; - officium_N_N : N ; - offigo_V2 : V2 ; - offirmatus_A : A ; - offirmo_V : V ; - offlecto_V2 : V2 ; - offoco_V2 : V2 ; - offrenatus_A : A ; - offringo_V2 : V2 ; - offucia_F_N : N ; - offuco_V2 : V2 ; - offulgeo_V2 : V2 ; - offundo_V2 : V2 ; - offuscatio_F_N : N ; - ogdoas_F_N : N ; - ogganio_V : V ; - oggannio_V : V ; - oggero_V : V ; - oh_Interj : Interj ; - ohe_Interj : Interj ; - oi_Interj : Interj ; - oiei_Interj : Interj ; - olea_F_N : N ; - oleaginosus_A : A ; - oleaginus_A : A ; - olearius_A : A ; - olearius_M_N : N ; - oleaster_M_N : N ; - olefacio_V2 : V2 ; - olefacto_V2 : V2 ; - oleiductus_M_N : N ; - olens_A : A ; - oleo_V : V ; - oleosus_A : A ; - oleum_N_N : N ; - olfacio_V2 : V2 ; - olfacto_V2 : V2 ; - olfactoriolum_N_N : N ; - olfactorium_N_N : N ; - olfactorius_A : A ; - olidus_A : A ; - oligarcha_M_N : N ; - oligarchia_F_N : N ; - oligarchicus_A : A ; - olim_Adv : Adv ; - olitor_M_N : N ; - olitorius_A : A ; - oliva_F_N : N ; - olivaceus_A : A ; - olivetum_N_N : N ; - olivifer_A : A ; - olivitas_F_N : N ; - olivum_N_N : N ; - olla_F_N : N ; - ollus_A : A ; - olor_M_N : N ; - olorinus_A : A ; - olus_N_N : N ; - olyra_F_N : N ; - omasum_N_N : N ; - omega_N : N ; - omen_N_N : N ; - omentum_N_N : N ; - ominor_V : V ; - ominosus_A : A ; - omissus_A : A ; - omitto_V2 : V2 ; - omne_N_N : N ; - omnia_Adv : Adv ; - omnifariam_Adv : Adv ; - omnifer_A : A ; - omnigenus_A : A ; - omnimodis_Adv : Adv ; - omnimodo_Adv : Adv ; - omnimodus_A : A ; - omnino_Adv : Adv ; - omniparens_A : A ; - omnipotens_A : A ; - omnipotentia_F_N : N ; - omnipraesens_A : A ; - omnis_A : A ; + octaedros_M_N : N ; -- [FSXFS] :: octahedron; + octipes_A : A ; -- [XXXEC] :: having eight feet; + octogenarius_A : A ; -- [XXXEC] :: consisting of eighty; + octoiugis_A : A ; -- [XXXEC] :: yoked eight together; + octonarius_A : A ; -- [XXXEC] :: consisting of eight together; + octophoron_N_N : N ; -- [XXXEC] :: litter carried + octophoros_A : A ; -- [XXXEC] :: borne by eight; + octuplicatus_A : A ; -- [XXXEC] :: increased eightfold; + octuplum_N_N : N ; -- [XLXEC] :: eightfold penalty; + octuplus_A : A ; -- [XXXEC] :: eightfold; + octussis_M_N : N ; -- [XXXDX] :: eight asses (money); + oculatus_A : A ; -- [XXXEC] :: having eyes; catching the eye, conspicuous; + oculus_M_N : N ; -- [XXXAX] :: eye; + odeo_V2 : V2 ; -- [EXXCW] :: hate; dislike; be disinclined/reluctant/adverse to; (usu. PREFDEF); + odibilis_A : A ; -- [XXXFO] :: odious, hateful; that deserves to be hated; + odio_V2 : V2 ; -- [FXXCF] :: hate; dislike; be disinclined/reluctant/adverse to; (usu. PREFDEF); + odiose_Adv : Adv ; -- [XXXDO] :: distastefully, repugnantly; so as to be tiresome/a nuisance; + odiosus_A : A ; -- [XXXCO] :: distasteful. disagreeable, offensive; tiresome, boring, troublesome, annoying; + odium_N_N : N ; -- [XXXAO] :: |hatred (manifested by/towards group), hostility; object of hate/odium; + odontalgia_F_N : N ; -- [GXXEK] :: toothache; + odontologia_F_N : N ; -- [GTXEK] :: dentistry; + odor_M_N : N ; -- [XXXAX] :: scent, odor, aroma, smell; hint, inkling, suggestion; + odoramen_N_N : N ; -- [DXXFS] :: perfume, spice, balsam; + odoramentum_N_N : N ; -- [XXXDO] :: aromatic spice; perfume, spice, balsam, odoriferous substance (L+S); + odoratio_F_N : N ; -- [XXXFS] :: smelling; smell; sense of smell; + odoratus_A : A ; -- [XXXCO] :: smelling, having smell/odor/scent; fragrant/perfumed/sweet smelling; + odoratus_M_N : N ; -- [XXXDO] :: smelling (action); sense of smell; smell (L+S); + odorifer_A : A ; -- [XXXDX] :: fragrant, sweet smelling; producing/containing spices/perfumes (places/people); + odoro_V : V ; -- [XXXDX] :: perfume, make fragrant; + odoror_V : V ; -- [XXXBX] :: smell out, scent; get a smattering (of ); + odorus_A : A ; -- [XXXDX] :: odorous, fragrant; keen-scented; + oecologia_F_N : N ; -- [GXXEK] :: ecology; + oecologicus_A : A ; -- [GXXEK] :: ecological; + oecologista_M_N : N ; -- [GXXEK] :: environmentalist; + oeconomia_F_N : N ; -- [XXXEC] :: arrangement, division; economy (Cal); + oeconomicus_A : A ; -- [XXXEC] :: relating to domestic economy; orderly, methodical; economic; + oeconomus_M_N : N ; -- [GXXET] :: steward (Erasmus); arranger/manager; + oecosystema_N_N : N ; -- [HXXEK] :: ecosystem; + oecumenicus_A : A ; -- [GEXEK] :: ecumenical; + oecumenismus_M_N : N ; -- [GEXEK] :: ecumenism; + oenanthe_F_N : N ; -- [XAXES] :: wild grape; thorny plant; mother of Ptolemy Epiphanes; + oenococtus_A : A ; -- [EAXFS] :: stewed-in-wine; + oenophorum_N_N : N ; -- [XXXEC] :: basket for wine; + oephi_N : N ; -- [DEQFW] :: ephi/ephah, Jewish dry measure; (ten gomor, over twenty bushels); + oestrus_M_N : N ; -- [XXXDX] :: gad-fly; + oesypum_N_N : N ; -- [XXXDO] :: cosmetic; grease from unwashed wool (used in medicine/cosmetics); (lanolin?); + ofella_F_N : N ; -- [XXXEC] :: bit, morsel; + offa_F_N : N ; -- [XXXDX] :: lump of food, cake; + offendiculum_N_N : N ; -- [XXXEO] :: obstacle, stumbling block, hindrance; cause of offense (L+S); + offendo_V2 : V2 ; -- [XXXAO] :: ||come upon, meet, find, encounter, be faced with; run aground; violate/wrong; + offensa_F_N : N ; -- [XXXDX] :: offense, displeasure; offense to a person's feelings, resentment; + offensio_F_N : N ; -- [XXXDX] :: displeasure; accident; + offensiuncula_F_N : N ; -- [XXXEC] :: slight displeasure or check; + offenso_V : V ; -- [XXXDX] :: knock/strike against, bump into; + offensum_N_N : N ; -- [XXXES] :: offense; + offensus_A : A ; -- [XXXFS] :: offensive, odious; + offensus_M_N : N ; -- [XXXDX] :: collision, knock; + offero_V : V ; -- [XXXAX] :: offer; present; cause; bestow; + offertio_F_N : N ; -- [FEXFY] :: sacrifice of Mass; + offertoria_F_N : N ; -- [FEXDE] :: offering; + offertorium_N_N : N ; -- [DEXES] :: offertory; place where offerings were brought; linen cloth for holding paten; + offerumenta_F_N : N ; -- [BXXFS] :: present; gift; + officialis_A : A ; -- [XXXEO] :: official (post-classical); connected with duty/office/service/obligation; + officialis_M_N : N ; -- [XXXDO] :: official/servant attending a magistrate; an official; civil servant (Cal); + officiarius_M_N : N ; -- [GWXEK] :: officer (military rank); + officina_F_N : N ; -- [XXXDX] :: workshop; office; + officio_V2 : V2 ; -- [XXXDX] :: block the path (of ), check, impede; + officiosus_A : A ; -- [XXXDX] :: dutiful, attentive; officious; + officium_N_N : N ; -- [XXXAX] :: duty, obligation; kindness; service, office; + offigo_V2 : V2 ; -- [XXXDS] :: fasten; drive in; + offirmatus_A : A ; -- [XXXDS] :: resolute; firm; + offirmo_V : V ; -- [DXXES] :: secure; bolt, lock, fasten, bar; be determined/inflexible; persevere in; + offlecto_V2 : V2 ; -- [BXXFS] :: turn about; + offoco_V2 : V2 ; -- [XXXEO] :: choke, throttle; + offrenatus_A : A ; -- [XXXDS] :: curbed; tamed; + offringo_V2 : V2 ; -- [XAXEO] :: break up (ground) by cross-plowing; + offucia_F_N : N ; -- [XXXEC] :: paint, rouge; deceit; + offuco_V2 : V2 ; -- [XXXEO] :: choke, throttle; + offulgeo_V2 : V2 ; -- [XXXDX] :: shine forth in the path of, appear; shine on; + offundo_V2 : V2 ; -- [XXXDX] :: pour/spread over; + offuscatio_F_N : N ; -- [DXXES] :: darkening, obscuring; vilifying, degrading (eccl.); surliness (Vulgate); + ogdoas_F_N : N ; -- [XEXES] :: eight; one of eight Aeons of Valentinus; + ogganio_V : V ; -- [XXXEC] :: growl at; + oggannio_V : V ; -- [FXXFS] :: yelp; snarl, growl; + oggero_V : V ; -- [XBXFS] :: give; proffer; + oh_Interj : Interj ; -- [XXXDX] :: oh! ah!; + ohe_Interj : Interj ; -- [XXXDX] :: hey! hey there!; + oi_Interj : Interj ; -- [XXXEC] :: oh! ah!; + oiei_Interj : Interj ; -- [XXXDS] :: oh dear; (lamentation); + olea_F_N : N ; -- [XXXDX] :: olive; olive-tree; + oleaginosus_A : A ; -- [GXXEK] :: oily; oleaginous; greasy; + oleaginus_A : A ; -- [XAXEC] :: of the olive tree; + olearius_A : A ; -- [XAXEC] :: of or for oil; + olearius_M_N : N ; -- [XXXDS] :: oil-seller; + oleaster_M_N : N ; -- [XXXDX] :: wild olive-tree; + olefacio_V2 : V2 ; -- [XXXCO] :: smell/detect odor of; get wind of/hear about; smell/sniff at; cause to smell of; + olefacto_V2 : V2 ; -- [XXXEO] :: smell, sniff, perceive, detect; smell/sniff at; + oleiductus_M_N : N ; -- [GXXEK] :: pipeline; + olens_A : A ; -- [XPXDS] :: odorous; fragrant; stinking; + oleo_V : V ; -- [XXXDX] :: smell of, smell like; + oleosus_A : A ; -- [XXXFS] :: oily (Pliny); + oleum_N_N : N ; -- [XXXAX] :: oil; + olfacio_V2 : V2 ; -- [XXXCO] :: smell/detect odor of; get wind of/hear about; smell/sniff at; cause to smell of; + olfacto_V2 : V2 ; -- [XXXEO] :: smell, sniff, perceive, detect; smell/sniff at; + olfactoriolum_N_N : N ; -- [DXXES] :: little smelling/scent bottle; sweet ball (Douay); + olfactorium_N_N : N ; -- [XXXEO] :: smelling/scent bottle; nose-gay (L+S); + olfactorius_A : A ; -- [XXXFO] :: used to sniff at; (smelling/scent bottle); (nose-gay L+S); + olidus_A : A ; -- [XXXDX] :: stinking; + oligarcha_M_N : N ; -- [GXXEK] :: oligarch; + oligarchia_F_N : N ; -- [GXXEK] :: oligarchy; + oligarchicus_A : A ; -- [GXXEK] :: oligarchic; + olim_Adv : Adv ; -- [XXXAX] :: formerly; once, once upon a time; in the future; + olitor_M_N : N ; -- [XXXDX] :: vegetable-grower; + olitorius_A : A ; -- [XXXDX] :: pertaining to vegetables; + oliva_F_N : N ; -- [XXXDX] :: olive; olive tree; + olivaceus_A : A ; -- [GXXEK] :: olive-colored; + olivetum_N_N : N ; -- [XXXDX] :: olive-yard; + olivifer_A : A ; -- [XXXDX] :: olive-bearing; + olivitas_F_N : N ; -- [XXXFS] :: olive-gathering; olive harvest; + olivum_N_N : N ; -- [XXXDX] :: olive-oil; wrestling; + olla_F_N : N ; -- [XXXDX] :: pot, jar; + ollus_A : A ; -- [BXXES] :: that; those; that person; that thing; (archaic form of ille/a/ud); + olor_M_N : N ; -- [XXXDX] :: swan; constellation Cygnus; + olorinus_A : A ; -- [XXXDX] :: of/belonging to swan/swans; + olus_N_N : N ; -- [XXXDX] :: vegetables; cabbage, turnips, greens; kitchen/pot herbs; + olyra_F_N : N ; -- [DAXNS] :: spelt-like grain (Pliny); + omasum_N_N : N ; -- [XXXEC] :: bullock's tripe; + omega_N : N ; -- [XXHEW] :: omega; last letter of Greek alphabet; (transliterate as O); last; the end; + omen_N_N : N ; -- [XXXBX] :: omen, sign; token; + omentum_N_N : N ; -- [XXXEC] :: fat; entrails, bowels; + ominor_V : V ; -- [XXXDX] :: forebode, presage; + ominosus_A : A ; -- [XXXEC] :: foreboding, ominous; + omissus_A : A ; -- [XXXDS] :: remiss; negligent; + omitto_V2 : V2 ; -- [XXXBX] :: lay aside; omit; let go; disregard; + omne_N_N : N ; -- [XXXCC] :: all things (pl.); everything; a/the whole, entity, unit; + omnia_Adv : Adv ; -- [XXXEC] :: in all respects; + omnifariam_Adv : Adv ; -- [XXXEO] :: in every way; on every side; in all cases; + omnifer_A : A ; -- [XXXEC] :: bearing everything; + omnigenus_A : A ; -- [XXXDX] :: of every kind; + omnimodis_Adv : Adv ; -- [XXXEO] :: in every (possible) way; + omnimodo_Adv : Adv ; -- [XXXDO] :: always, in all circumstances; + omnimodus_A : A ; -- [XXXEO] :: of every sort; of all sorts/kinds (L+S); + omnino_Adv : Adv ; -- [XXXDX] :: entirely, altogether; [after negatives/with numerals => at all/in all]; + omniparens_A : A ; -- [XXXDX] :: parent or creator of all things; + omnipotens_A : A ; -- [XXXDX] :: all-powerful, omnipotent; + omnipotentia_F_N : N ; -- [XEXES] :: almighty power; omnipotence; + omnipraesens_A : A ; -- [FXXEM] :: omnipresent; + omnis_A : A ; -- [XXXAC] :: each, every, every one (of a number); all (pl.); all/the whole of; omnis_F_N : N ; -- [XXXBC] :: all men (pl.), all persons; - omnis_M_N : N ; - omniscientia_F_N : N ; - omnituens_A : A ; - omnivagus_A : A ; - omnivolus_A : A ; - omphacius_M_N : N ; - onager_M_N : N ; - onerarius_A : A ; - onero_V : V ; - onerosus_A : A ; - onocentaurus_M_N : N ; - onocrotalus_M_N : N ; - ontologia_F_N : N ; - onus_N_N : N ; - onustus_A : A ; - onycha_F_N : N ; - onyche_F_N : N ; - onychinus_A : A ; + omnis_M_N : N ; -- [XXXBC] :: all men (pl.), all persons; + omniscientia_F_N : N ; -- [FXXEM] :: omniscience; + omnituens_A : A ; -- [XXXFS] :: all-seeing; + omnivagus_A : A ; -- [XXXEC] :: wandering everywhere; + omnivolus_A : A ; -- [XXXFS] :: willing everything; + omphacius_M_N : N ; -- [XAXNS] :: juice of unripe fruit (olives or grapes); + onager_M_N : N ; -- [XXXDX] :: wild ass; + onerarius_A : A ; -- [XXXDX] :: of burden; [navis oneraria => transport/cargo ship]; + onero_V : V ; -- [XXXBX] :: load, burden; oppress; + onerosus_A : A ; -- [XXXDX] :: oppressive; burdensome; onerous; + onocentaurus_M_N : N ; -- [XYXES] :: ass-centaur; (fabulous creature); impure person; monster (Douay); + onocrotalus_M_N : N ; -- [XAXEO] :: pelican; + ontologia_F_N : N ; -- [GEXEE] :: ontology, study of being; metaphysics related to being/essence; (Scanlon); + onus_N_N : N ; -- [XXXBX] :: load, burden; cargo; + onustus_A : A ; -- [XXXDX] :: laden; + onycha_F_N : N ; -- [XAXNW] :: kind of mollusk; + onyche_F_N : N ; -- [XAXNO] :: kind of mollusk; + onychinus_A : A ; -- [XXXEO] :: onyx-, made of onyx marble; resembling/colored like onyx marble; 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 ; - opella_F_N : N ; - opera_F_N : N ; - operaria_F_N : N ; - operarius_A : A ; - operarius_M_N : N ; - operatio_F_N : N ; - operatorius_A : A ; - operculum_N_N : N ; - operimentum_N_N : N ; - operio_V2 : V2 ; - operistitium_N_N : N ; - opero_V : V ; - operor_V : V ; - operosus_A : A ; - opertorium_N_N : N ; - opertum_N_N : N ; - opertus_A : A ; - ophiomachus_M_N : N ; - ophites_M_N : N ; - ophthalmia_F_N : N ; - ophthalmologia_F_N : N ; - ophthalmologus_M_N : N ; - opicus_A : A ; - opifer_A : A ; - opifex_M_N : N ; - opilio_M_N : N ; - opimus_A : A ; - opinatus_A : A ; - opinatus_M_N : N ; - opinio_F_N : N ; - opiniosus_A : A ; - opinitas_F_N : N ; - opinor_V : V ; - opipare_Adv : Adv ; - opiparus_A : A ; - opisthotonos_A : A ; - opisthotonos_F_N : N ; - opitulatrix_F_N : N ; - opitulor_V : V ; - opium_N_N : N ; - opopanax_M_N : N ; - oporotheca_F_N : N ; - oporothece_F_N : N ; - oporteo_V : V ; - oportet_V0 : V ; - oportune_Adv : Adv ; - oportunitas_F_N : N ; - oportunus_A : A ; - oppando_V2 : V2 ; - oppansum_N_N : N ; - oppassum_N_N : N ; - oppedo_V2 : V2 ; - opperior_V : V ; - oppeto_V2 : V2 ; - oppidaneus_A : A ; - oppidanus_A : A ; - oppidanus_M_N : N ; - oppido_Adv : Adv ; - oppidulum_N_N : N ; - oppidum_N_N : N ; - oppilo_V : V ; - oppleo_V : V ; - oppono_V2 : V2 ; - opportune_Adv : Adv ; - opportunismus_M_N : N ; - opportunitas_F_N : N ; - opportunus_A : A ; - oppositus_A : A ; - oppositus_M_N : N ; - oppressio_F_N : N ; - oppressus_M_N : N ; - opprimo_V2 : V2 ; - opprobrium_N_N : N ; - opprobro_V2 : V2 ; - oppugnatio_F_N : N ; - oppugnator_M_N : N ; - oppugno_V : V ; - oprepo_V2 : V2 ; - opreptio_F_N : N ; - oprepto_V : V ; - ops_F_N : N ; - opscaene_Adv : Adv ; - opscaenitas_F_N : N ; - opscaenum_N_N : N ; - opscaenus_A : A ; - opscaenus_M_N : N ; - opscene_Adv : Adv ; - opscenitas_F_N : N ; - opscenum_N_N : N ; - opscenus_A : A ; - opscenus_M_N : N ; - opsecro_V2 : V2 ; - opsecundanter_Adv : Adv ; - opsecundo_V2 : V2 ; - opsequium_N_N : N ; - opservatio_F_N : N ; - opsono_V : V ; - opsonor_V : V ; - opstetricium_N_N : N ; - opstetricius_A : A ; - opstetrico_V : V ; - opstetritius_A : A ; - opstetrix_F_N : N ; - opstitrix_F_N : N ; - optabilis_A : A ; - optatio_F_N : N ; - optatum_N_N : N ; - optatus_A : A ; - optempero_V : V ; - opticus_A : A ; - opticus_M_N : N ; - optimas_A : A ; - optimas_M_N : N ; - optimismus_M_N : N ; - optimista_M_N : N ; - optimisticus_A : A ; - optineo_V : V ; - optingo_V : V ; - optio_F_N : N ; - optio_M_N : N ; - optivus_A : A ; - opto_V : V ; - optume_Adv : Adv ; - optumus_A : A ; - opulens_A : A ; - opulente_Adv : Adv ; - opulentia_F_N : N ; - opulentus_A : A ; - opupa_F_N : N ; - opus_N_N : N ; - opusculum_N_N : N ; - ora_F_N : N ; - oraclum_N_N : N ; - oraculum_N_N : N ; - oralis_A : A ; - orarium_N_N : N ; - orarius_A : A ; - oratio_F_N : N ; - oratiuncula_F_N : N ; - orator_M_N : N ; - oratorie_Adv : Adv ; - oratorius_A : A ; - oratrix_F_N : N ; - oratus_M_N : N ; - orbator_M_N : N ; - orbicularis_A : A ; - orbiculatus_A : A ; - orbiculus_M_N : N ; - orbis_M_N : N ; - orbita_F_N : N ; - orbitas_F_N : N ; - orbitosus_A : A ; - orbo_V : V ; - orbus_A : A ; - orca_F_N : N ; + onyx_M_N : N ; -- [XXXNO] :: |multicolored gem; variety of quartz; kind of razor-shell clam; female scallop; + opaco_V : V ; -- [XXXDX] :: shade, overshadow; + opacus_A : A ; -- [XXXBX] :: dark, shaded; opaque; + opella_F_N : N ; -- [XXXDX] :: little effort; trifling duties; + opera_F_N : N ; -- [XXXBX] :: work, care; aid; service, effort/trouble; [dare operam => pay attention to]; + operaria_F_N : N ; -- [XXXFO] :: worker (female), working woman, she who hires out her services; + operarius_A : A ; -- [XXXCO] :: laboring, working for hire; used in farm work (animals); used by laborers; + operarius_M_N : N ; -- [XXXCO] :: laborer, worker, mechanic, one who works for hire; + operatio_F_N : N ; -- [GBXEK] :: ||surgical operation; (Cal); + operatorius_A : A ; -- [GXXEK] :: operating; working; + operculum_N_N : N ; -- [XXXEC] :: lid, cover; + operimentum_N_N : N ; -- [XXXDX] :: cover, lid, covering; + operio_V2 : V2 ; -- [XXXAO] :: cover (over); bury; overspread; shut/close; conceal; clothe, cover/hide the head + operistitium_N_N : N ; -- [GXXEK] :: strike; + opero_V : V ; -- [EXXDX] :: work; operate (math.); + operor_V : V ; -- [XXXBX] :: labor, toil, work; perform (religious service), attend, serve; devote oneself; + operosus_A : A ; -- [XXXDX] :: painstaking; laborious; elaborate; + opertorium_N_N : N ; -- [XXXFO] :: blanket. covering for a bed; + opertum_N_N : N ; -- [XXXDS] :: secret; secret place; + opertus_A : A ; -- [XXXDX] :: hidden; obscure, secret; + ophiomachus_M_N : N ; -- [EAXFW] :: kind of locust; beetle; cricket; (interpretations of different Bibles); + ophites_M_N : N ; -- [DXXNS] :: spotted marble (like a snake); (Pliny); + ophthalmia_F_N : N ; -- [GBXEK] :: ophthalmia/ophthalmy/ophthalmitis; inflammation of (conjunctiva of) the eye; + ophthalmologia_F_N : N ; -- [GBXEK] :: ophthalmology, study of the eye; + ophthalmologus_M_N : N ; -- [GBXEK] :: ophthalmologist, eye doctor; + opicus_A : A ; -- [XXXDS] :: coarse; boorish; + opifer_A : A ; -- [XXXDX] :: bringing help; + opifex_M_N : N ; -- [XXXDX] :: workman; + opilio_M_N : N ; -- [XAXDO] :: shepherd, herdsman (for sheep/goats); kind of bird; + opimus_A : A ; -- [XXXBX] :: rich, fertile; abundant; fat, plump; [opima spolia => spoils from a general]; + opinatus_A : A ; -- [XXXDS] :: supposed; imagined; + opinatus_M_N : N ; -- [XXXDS] :: supposition; + opinio_F_N : N ; -- [XXXDX] :: belief, idea, opinion; rumor (Plater); + opiniosus_A : A ; -- [XXXEC] :: set in opinion; + opinitas_F_N : N ; -- [XXXDS] :: abundance; + opinor_V : V ; -- [XXXBX] :: suppose, imagine; + opipare_Adv : Adv ; -- [XXXEC] :: splendidly, richly, sumptuously; + opiparus_A : A ; -- [XXXEC] :: splendid, rich, sumptuous; + opisthotonos_A : A ; -- [FBXEM] :: curved-backwards; + opisthotonos_F_N : N ; -- [DBXES] :: opisthotonos, body-curving disease; (spasms arch body backward); ~ tetanus; + opitulatrix_F_N : N ; -- [GEXFZ] :: female-helper(JFW); + opitulor_V : V ; -- [XXXDX] :: bring aid to; help; bring relief to; + opium_N_N : N ; -- [GXXEK] :: opium; + opopanax_M_N : N ; -- [XAXES] :: Opopanax plant, supposed to heal all diseases; panacea, heal-all; + oporotheca_F_N : N ; -- [XAXEO] :: room for storing fruit; + oporothece_F_N : N ; -- [XAXEO] :: room for storing fruit; + oporteo_V : V ; -- [XXXEO] :: require (to be done), order; + oportet_V0 : V ; -- [XXXAX] :: it is right/proper/necessary; it is becoming; it behooves; ought; + oportune_Adv : Adv ; -- [XXXCO] :: suitably; advantageously; conveniently, opportunely, favorably; + oportunitas_F_N : N ; -- [XXXBO] :: convenience, advantageousness; right time; opportuneness; opportunity, chance; + oportunus_A : A ; -- [XXXAO] :: suitable; advantageous; useful, fit, favorable/opportune, ready; liable/exposed; + oppando_V2 : V2 ; -- [XXXDS] :: spread/stretch out/in the way; + oppansum_N_N : N ; -- [EEXFS] :: covering; envelop; + oppassum_N_N : N ; -- [EEXFS] :: covering; envelop; + oppedo_V2 : V2 ; -- [XPXDS] :: break wind; insult; + opperior_V : V ; -- [XXXDX] :: wait (for); await; + oppeto_V2 : V2 ; -- [XXXDX] :: meet, encounter; perish; + oppidaneus_A : A ; -- [EXXFS] :: of a town; + oppidanus_A : A ; -- [XXXDS] :: provincial; of a small town; + oppidanus_M_N : N ; -- [XXXDX] :: townspeople (pl.); + oppido_Adv : Adv ; -- [XXXDX] :: exceedingly, utterly, altogether; + oppidulum_N_N : N ; -- [XXXDX] :: small town; + oppidum_N_N : N ; -- [XXXBX] :: town; + oppilo_V : V ; -- [XXXDX] :: stop up, block; + oppleo_V : V ; -- [XXXDX] :: fill (completely); overspread; + oppono_V2 : V2 ; -- [XXXBX] :: oppose; place opposite; + opportune_Adv : Adv ; -- [XXXCO] :: suitably; advantageously; conveniently, opportunely, favorably; + opportunismus_M_N : N ; -- [GXXEK] :: opportunism; + opportunitas_F_N : N ; -- [XXXBO] :: convenience, advantageousness; right time; opportuneness; opportunity, chance; + opportunus_A : A ; -- [XXXAO] :: suitable; advantageous; useful, fit, favorable/opportune, ready; liable/exposed; + oppositus_A : A ; -- [XXXDS] :: opposite; against; + oppositus_M_N : N ; -- [XXXDS] :: opposing; intervention; + oppressio_F_N : N ; -- [XXXDS] :: force; oppression; seizure; B:catalepsy; + oppressus_M_N : N ; -- [XXXDS] :: pressure; + opprimo_V2 : V2 ; -- [XXXAX] :: press down; suppress; overthrow; crush, overwhelm, fall upon, oppress; + opprobrium_N_N : N ; -- [XXXDX] :: reproach, taunt; disgrace, shame, scandal; source of reproach/shame; + opprobro_V2 : V2 ; -- [XXXEC] :: taunt, reproach; + oppugnatio_F_N : N ; -- [XXXDX] :: assault, siege, attack; storming; + oppugnator_M_N : N ; -- [XXXDX] :: attacker; + oppugno_V : V ; -- [XXXDX] :: attack, assault, storm, besiege; + oprepo_V2 : V2 ; -- [XXXBO] :: creep up on/approach unawares/unobserved; sneak/drop in; pay surprise visit on; + opreptio_F_N : N ; -- [XXXEO] :: creeping/sneaking up unseen; surprise; fraudulent/improper means of obtaining; + oprepto_V : V ; -- [XXXEO] :: creep up on, approach stealthily; + ops_F_N : N ; -- [XXXAX] :: power, might; help; influence; resources/wealth (pl.); + opscaene_Adv : Adv ; -- [XXXDO] :: obscenely, so as to involve obscenity (of language), indecently, lewdly; + opscaenitas_F_N : N ; -- [XXXCO] :: indecency, obscenity (language); indecent/obscene behavior/figures; ill omen; + opscaenum_N_N : N ; -- [XXXCO] :: |foul/indecent/obscene/lewd language/utterances/behavior (pl.); + opscaenus_A : A ; -- [XXXBO] :: |inauspicious/unpropitious; ill-omened/boding ill; filthy, polluted, disgusting; + opscaenus_M_N : N ; -- [XXXCO] :: sexual pervert; foul-mouthed person; + opscene_Adv : Adv ; -- [XXXDO] :: obscenely, so as to involve obscenity (of language), indecently, lewdly; + opscenitas_F_N : N ; -- [XXXCO] :: indecency, obscenity (language); indecent/obscene behavior/figures; ill omen; + opscenum_N_N : N ; -- [XXXCO] :: |foul/indecent/obscene/lewd language/utterances/behavior (pl.); + opscenus_A : A ; -- [XXXBO] :: |inauspicious/unpropitious; ill-omened/boding ill; filthy, polluted, disgusting; + opscenus_M_N : N ; -- [XXXCO] :: sexual pervert; foul-mouthed person; + opsecro_V2 : V2 ; -- [XXXBO] :: entreat/beseech/implore/pray; (w/deity as object); [fidem ~ => beg support]; + opsecundanter_Adv : Adv ; -- [DXXFS] :: according to; in compliance with; + opsecundo_V2 : V2 ; -- [DXXDS] :: obey, show obedience; comply with, be compliant, humor; fall in with, follow; + opsequium_N_N : N ; -- [XXXBO] :: ||servility/subservience/obsequiousness; ceremony (Bee); attendance; retinue; + opservatio_F_N : N ; -- [XXXAO] :: observation, attention, action of watching/taking notice; surveillance; usage; + opsono_V : V ; -- [XXXCO] :: buy food, get/purchase provisions/(things for meal); go shopping; feast/banquet; + opsonor_V : V ; -- [XXXDO] :: buy food, get/purchase provisions/(things for meal); go shopping; feast/banquet; + opstetricium_N_N : N ; -- [XBXFO] :: midwifery/obstetric care (pl.); + opstetricius_A : A ; -- [XBXEO] :: of/pertaining to a midwife/midwifery/obstetric care; + opstetrico_V : V ; -- [DBXES] :: assist in childbirth, perform the office of a midwife, provide obstetric care; + opstetritius_A : A ; -- [DBXEO] :: of/pertaining to a midwife/midwifery/obstetric care; + opstetrix_F_N : N ; -- [XBXCO] :: midwife; + opstitrix_F_N : N ; -- [DBXCS] :: midwife; + optabilis_A : A ; -- [XXXDO] :: desirable, to be wished for; desired, longed for; + optatio_F_N : N ; -- [XXXEO] :: wish; expression of a wish; act of wishing; + optatum_N_N : N ; -- [XXXDS] :: wish, desire; + optatus_A : A ; -- [XXXCO] :: desired, wished for, welcome; chosen; + optempero_V : V ; -- [XXXCO] :: obey; comply with the demands of; be submissive to; (w/DAT); + opticus_A : A ; -- [GXXEK] :: optic; + opticus_M_N : N ; -- [GXXEK] :: optician; + optimas_A : A ; -- [XXXDS] :: aristocratic; + optimas_M_N : N ; -- [XXXBX] :: aristocrat, patrician; wellborn; nobles/patricians/"Good men" adherent/partisan; + optimismus_M_N : N ; -- [GXXEK] :: optimism; + optimista_M_N : N ; -- [GXXEK] :: optimist; + optimisticus_A : A ; -- [GXXEK] :: optimistic; + optineo_V : V ; -- [XXXAO] :: get hold of; maintain; obtain; hold fast, occupy; prevail; + optingo_V : V ; -- [XXXCO] :: befall, occur (to advantage/disadvantage); fall to as one's lot; + optio_F_N : N ; -- [XXXDX] :: option, (free) choice; power/act of choosing; right of hero to pick reward; + optio_M_N : N ; -- [XXXDX] :: adjutant, assistant, helper; junior officer chosen by centurion to assist; + optivus_A : A ; -- [XXXEC] :: chosen; + opto_V : V ; -- [XXXAX] :: choose, select; wish, wish for, desire; + optume_Adv : Adv ; -- [XXXCO] :: best; (SUPER of bene); most satisfactorily/aptly/wisely/favorably; certainly!; + optumus_A : A ; -- [XXXCO] :: best; (bonus SUPER); most apt/wise/noble/kind/loyal; ideal; highest; strongest; + opulens_A : A ; -- [XXXEO] :: wealthy; rich in wealth/resources; well supplied; sumptuous, opulent, rich; + opulente_Adv : Adv ; -- [XXXDX] :: richly, sumptuously, opulently; + opulentia_F_N : N ; -- [XXXDX] :: riches, wealth; sumptuousness; + opulentus_A : A ; -- [XXXBO] :: wealthy; rich in wealth/resources; well supplied; sumptuous, opulent, rich; + opupa_F_N : N ; -- [EXXDW] :: hoopoe (bird of family Upupidae); pickax/crowbar; (birdlike); mattock/hoe (L+S); + opus_N_N : N ; -- [XXXAX] :: need; work; fortifications (pl.), works; [opus est => is useful, beneficial]; + opusculum_N_N : N ; -- [XXXDX] :: little work, trifle; + ora_F_N : N ; -- [XXXBX] :: shore, coast; + oraclum_N_N : N ; -- [XXXBX] :: oracle (place/agency/mouthpiece); prophecy; oracular saying/precept/maxim; + oraculum_N_N : N ; -- [XXXBX] :: oracle (place/agency/mouthpiece); prophecy; oracular saying/precept/maxim; + oralis_A : A ; -- [GXXEK] :: oral; + orarium_N_N : N ; -- [XXXES] :: napkin; handkerchief; + orarius_A : A ; -- [XXXFO] :: coasting, used along the coast; + oratio_F_N : N ; -- [XXXAX] :: speech, oration; eloquence; prayer; + oratiuncula_F_N : N ; -- [XXXEC] :: little speech, short oration; + orator_M_N : N ; -- [XXXAX] :: speaker, orator; + oratorie_Adv : Adv ; -- [XXXDX] :: oratorically; in the manner of an orator; + oratorius_A : A ; -- [XXXDX] :: of an orator; oratorical; + oratrix_F_N : N ; -- [XXXFS] :: female supplicant; + oratus_M_N : N ; -- [XXXFS] :: request; entreaty; + orbator_M_N : N ; -- [XPXDS] :: bereaver; depriver of parents or children; + orbicularis_A : A ; -- [XSXFS] :: circular (of a planet); + orbiculatus_A : A ; -- [XXXDO] :: round, having circular shape; (as name of varieties of apple/pear); + orbiculus_M_N : N ; -- [XXXDO] :: disk, small circular object/wheel/roller/figure/form; revolving drum; ring; + orbis_M_N : N ; -- [XXXAX] :: circle; territory/region; sphere; [orbis terrarum => world/(circle of lands)]; + orbita_F_N : N ; -- [XXXDX] :: wheel-track, rut; orbit; + orbitas_F_N : N ; -- [XXXDX] :: bereavement; loss of a child; orphanhood; childlessness; + orbitosus_A : A ; -- [XPXES] :: rutted; full of cart-ruts; + orbo_V : V ; -- [XXXDX] :: bereave (of parents, children, etc), deprive (of); + orbus_A : A ; -- [XXXDX] :: bereft, deprived,childless; + orca_F_N : N ; -- [XXXEC] :: pot or jar with a large belly and narrow neck; large sea mammal (grampus?); orchas_1_N : N ; -- [XAXFO] :: species of olive; - orchas_2_N : N ; - orchestra_F_N : N ; - orchit_F_N : N ; - orcivus_A : A ; - orcus_M_N : N ; - ordeaceus_A : A ; - ordeacius_A : A ; - ordearius_A : A ; - ordeum_N_N : N ; - ordiaceus_A : A ; - ordiacius_A : A ; - ordiarius_A : A ; - ordinabiliter_Adv : Adv ; - ordinamentum_N_N : N ; - ordinarius_A : A ; - ordinate_Adv : Adv ; - ordinatim_Adv : Adv ; - ordinator_M_N : N ; - ordinatralis_A : A ; - ordinatraliter_Adv : Adv ; - ordinatrum_N_N : N ; - ordinatus_A : A ; - ordinatus_M_N : N ; - ordino_V : V ; - ordior_V : V ; - orditus_A : A ; - ordo_M_N : N ; - orestes_M_N : N ; - orexis_F_N : N ; - orfanus_M_N : N ; - organalis_A : A ; - organarius_M_N : N ; - organicos_A : A ; - organicus_A : A ; - organicus_M_N : N ; - organismus_M_N : N ; - organista_M_N : N ; - organizatio_F_N : N ; - organizo_V : V ; - organum_N_N : N ; - orgium_N_N : N ; - oricalcinus_A : A ; - oricalcum_N_N : N ; - orichalcinus_A : A ; - orichalcum_N_N : N ; - oricilla_F_N : N ; - oricula_F_N : N ; - oricularius_A : A ; - oricularius_M_N : N ; - oriens_A : A ; - oriens_M_N : N ; - orientalis_A : A ; - orificium_N_N : N ; - origa_M_N : N ; - origanum_N_N : N ; - originalis_A : A ; - origo_F_N : N ; - orior_V : V ; - oriundus_A : A ; - ornamentum_N_N : N ; - ornate_Adv : Adv ; - ornatrix_F_N : N ; - ornatus_A : A ; - ornithoboscion_N_N : N ; + orchas_2_N : N ; -- [XAXFO] :: species of olive; + orchestra_F_N : N ; -- [XXXDX] :: area in front of stage; (Greek, held chorus; Roman, seats for senators/VIPs); + orchit_F_N : N ; -- [XAXFS] :: oblong olive; + orcivus_A : A ; -- [XLXEO] :: appointed (to position/office) under terms of a will; (of freedmen); + orcus_M_N : N ; -- [FXXEN] :: Lower World; A:whale; (see also Orcus); + ordeaceus_A : A ; -- [XAXCO] :: barley-, of/connected to barley; + ordeacius_A : A ; -- [XAXCO] :: barley-, of/connected to barley; + ordearius_A : A ; -- [XAXCO] :: barley-, of/connected to barley; [~ pira => pears ripening w/barley]; + ordeum_N_N : N ; -- [XAXCO] :: barley (the plant or the grain from it); barley-corn; + ordiaceus_A : A ; -- [XAXCO] :: barley-, of/connected to barley; (used as term of contempt); + ordiacius_A : A ; -- [XAXCO] :: barley-, of/connected to barley; (used as term of contempt); + ordiarius_A : A ; -- [XAXCS] :: barley-, of/connected to barley; [~ pira => pears ripening w/barley]; + ordinabiliter_Adv : Adv ; -- [FXXEM] :: in good order; in orderly manner; + ordinamentum_N_N : N ; -- [XXXFZ] :: arrangement; + ordinarius_A : A ; -- [XXXDX] :: regular, ordinary; + ordinate_Adv : Adv ; -- [XXXDX] :: in order/regular formation; in an orderly manner, methodically; + ordinatim_Adv : Adv ; -- [XXXDX] :: in order/succession/sequence/good order; regularly, properly; symmetrically; + ordinator_M_N : N ; -- [GXXEK] :: producer; + ordinatralis_A : A ; -- [GTXEK] :: of computer; + ordinatraliter_Adv : Adv ; -- [GTXEK] :: by computer; + ordinatrum_N_N : N ; -- [GTXEK] :: computer; + ordinatus_A : A ; -- [XXXDS] :: well-ordered; appointed; + ordinatus_M_N : N ; -- [FEXFQ] :: ordinatus, one (clergy) who has a church (versus cardinatus); + ordino_V : V ; -- [XXXBX] :: order/arrange, set in order; adjust, regulate; compose; ordain/appoint (Bee); + ordior_V : V ; -- [XXXDX] :: begin; + orditus_A : A ; -- [EXXFS] :: set up, laid down (warp of a web); undertaken, embarked upon, begun; + ordo_M_N : N ; -- [XXXAX] :: row, order/rank; succession; series; class; bank (oars); order (of monks) (Bee); + orestes_M_N : N ; -- [XYHCO] :: Orestes; son of Agamennon and Clytaemnestra; play by Euripides; book by Varro; + orexis_F_N : N ; -- [XXXDX] :: craving, longing; appetite; + orfanus_M_N : N ; -- [DXXCS] :: orphan; + organalis_A : A ; -- [DDXFS] :: organ-; of/pertaining to organ/instrument; + organarius_M_N : N ; -- [GDXEK] :: organist; + organicos_A : A ; -- [XXXFO] :: instrumental; concerned with or employing mechanical device or instrument; + organicus_A : A ; -- [GBXEK] :: |organic; + organicus_M_N : N ; -- [XDXEO] :: musician, who plays musical instrument; + organismus_M_N : N ; -- [GBXEK] :: organism; + organista_M_N : N ; -- [GDXEK] :: organist; + organizatio_F_N : N ; -- [GXXEK] :: organization; + organizo_V : V ; -- [GXXEK] :: organize; + organum_N_N : N ; -- [XDXCO] :: organ; organ pipe; mechanical device; instrument; [~ hydraulicum=>water organ]; + orgium_N_N : N ; -- [XXXDX] :: secret rites (of Bacchus) (pl.), mysteries; orgies; + oricalcinus_A : A ; -- [EXXFW] :: made of brass, brass-; of a gold-colored metal; + oricalcum_N_N : N ; -- [EXXFW] :: brass, golden metal; yellow copper ore, "mountain copper"; brass objects (pl.); + orichalcinus_A : A ; -- [XXXEO] :: brass-, made of brass; in brass; of gold-colored metal; + orichalcum_N_N : N ; -- [XXXCO] :: brass; golden metal; yellow copper ore, "mountain copper"; brass objects (pl.); + oricilla_F_N : N ; -- [XXXFS] :: earlobe; + oricula_F_N : N ; -- [XBXDX] :: ear (part of body/organ of hearing); sense of hearing; + oricularius_A : A ; -- [XBXEO] :: of/for the ear/ears; [medicus auricularius => ear specialist]; + oricularius_M_N : N ; -- [DBXES] :: ear doctor/specialist, aurist; counselor; + oriens_A : A ; -- [XSXCO] :: rising (sun/star); eastern; beginning, in its early stage (period/activity); + oriens_M_N : N ; -- [XSXCO] :: daybreak/dawn/sunrise; east, sunrise quarter of the sky; the East/Orient; + orientalis_A : A ; -- [XXXDO] :: eastern, of/belonging to the east; easterly; oriental; + orificium_N_N : N ; -- [EXXES] :: opening; orifice; + origa_M_N : N ; -- [XXXDX] :: charioteer, driver; groom, ostler; helmsman; the Waggoner (constellation); + origanum_N_N : N ; -- [FXXEK] :: oregano; + originalis_A : A ; -- [XXXEO] :: original; existing at/marking beginning; from which thing derives existence; + origo_F_N : N ; -- [XXXBX] :: origin, source; birth, family; race; ancestry; + orior_V : V ; -- [XXXAO] :: |be born/created; be born of, descend/spring from; proceed/be derived (from); + oriundus_A : A ; -- [XXXDX] :: descended; originating from; + ornamentum_N_N : N ; -- [XXXBX] :: equipment; decoration; jewel; ornament, trappings; + ornate_Adv : Adv ; -- [XXXDX] :: richly, ornately; elaborately, with lavish appointments/literary embellishment; + ornatrix_F_N : N ; -- [XXXES] :: female adorner; hairdressing slave; + ornatus_A : A ; -- [XXXDX] :: well equipped/endowed, richly adorned, ornate; distinguished, honored; + ornithoboscion_N_N : N ; -- [XAXEO] :: enclosure for poultry or similar; 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 ; - oro_V : V ; - orphana_F_N : N ; - orphanotrophium_N_N : N ; - orphanus_M_N : N ; - orsum_N_N : N ; - orsus_M_N : N ; - orthodoxe_Adv : Adv ; - orthodoxus_A : A ; - orthodoxus_M_N : N ; - orthogonaliter_Adv : Adv ; - orthographia_F_N : N ; - orthopaeda_M_N : N ; - orthopaedia_F_N : N ; - orthopaedicus_A : A ; - orthopnoea_F_N : N ; - orthopnoicus_A : A ; - orto_V2 : V2 ; - ortor_V : V ; - ortus_A : A ; - ortus_M_N : N ; - ortygometra_F_N : N ; - ortygometras_F_N : N ; - ortyx_M_N : N ; - oryx_M_N : N ; - oryza_F_N : N ; - os_N_N : N ; + ornithon_2_N : N ; -- [XAXDO] :: enclosure for poultry or similar; + ornithotrophion_N_N : N ; -- [XAXFO] :: enclosure for poultry or similar; + orno_V : V ; -- [XXXAX] :: equip; dress; decorate, honor; furnish, adorn, garnish, trim; + ornus_F_N : N ; -- [XXXDX] :: ash-tree; + oro_V : V ; -- [EXXEX] :: burn; + orphana_F_N : N ; -- [FLXFM] :: orphan girl; + orphanotrophium_N_N : N ; -- [GXXEK] :: orphanage; + orphanus_M_N : N ; -- [DXXCS] :: orphan; + orsum_N_N : N ; -- [XXXDX] :: words (pl.), utterance; undertakings, enterprises; + orsus_M_N : N ; -- [XXXDX] :: web (weaving); beginning, start; attempt (ACC P), undertaking, initiative; + orthodoxe_Adv : Adv ; -- [DEXFS] :: in an orthodox manner; + orthodoxus_A : A ; -- [DEXDS] :: orthodox; believer; + orthodoxus_M_N : N ; -- [DEXET] :: orthodox believer; + orthogonaliter_Adv : Adv ; -- [GSXEK] :: orthogonally; + orthographia_F_N : N ; -- [XTXDO] :: orthography, art of writing words correctly; elevation of a building; + orthopaeda_M_N : N ; -- [GBXEK] :: orthopedist, one who treats (skeletal) deformities (in children); + orthopaedia_F_N : N ; -- [GBXEK] :: orthopedics, science/treatment of (skeletal) deformities (in children); + orthopaedicus_A : A ; -- [GBXEK] :: orthopedic, relating to bodily deformities;; + orthopnoea_F_N : N ; -- [XBXFS] :: breathing difficulty; asthma (Pliny); + orthopnoicus_A : A ; -- [XBXNS] :: asthmatic, of asthma; + orto_V2 : V2 ; -- [EXXDM] :: procreate; give birth/rise to; beget; engender/produce/generate (offspring); + ortor_V : V ; -- [EXXFM] :: procreate; give birth/rise to; beget; engender/produce/generate (offspring); + ortus_A : A ; -- [XXXDS] :: descended/born/sprung (from w/ex/ab/ABL); [a se ~ => w/out famous ancestors]; + ortus_M_N : N ; -- [XXXBO] :: |birth; ancestry; coming into being; source; springing up (wind); + ortygometra_F_N : N ; -- [XAXNO] :: bird (migrates with quail); corncrake/landrail; quail (L+S); quail-leader; + ortygometras_F_N : N ; -- [EAXFW] :: bird (migrates with quail); corncrake/landrail; quail (L+S); quail-leader; + ortyx_M_N : N ; -- [EAXEP] :: |quail; (Souter); + oryx_M_N : N ; -- [XAXDO] :: North African antelope/gazelle; wild goat (L+S); wild bull/ox (Vulgate); + oryza_F_N : N ; -- [XXXEO] :: rice; + os_N_N : N ; -- [XXXDX] :: bones (pl.); (dead people); 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 ; - oscillum_N_N : N ; - oscitans_A : A ; - oscitatio_F_N : N ; - oscito_V : V ; - osculatio_F_N : N ; - osculor_V : V ; - osculum_N_N : N ; - ossarium_N_N : N ; - osseus_A : A ; - ossiculatim_Adv : Adv ; - ossiculum_N_N : N ; - ossifraga_F_N : N ; - ossuarium_N_N : N ; - ossuarius_A : A ; - ossuculum_N_N : N ; - ossum_N_N : N ; - ostendeo_V2 : V2 ; - ostendo_V2 : V2 ; - ostensio_F_N : N ; - ostentatio_F_N : N ; - ostentator_M_N : N ; - ostento_V : V ; - ostentui_Adv : Adv ; - ostentum_N_N : N ; - ostentus_M_N : N ; - ostiarium_N_N : N ; - ostiarius_A : A ; - ostiarius_M_N : N ; - ostiolum_N_N : N ; - ostium_N_N : N ; - ostracismus_M_N : N ; - ostrea_F_N : N ; - ostreosus_A : A ; - ostreum_N_N : N ; - ostria_F_N : N ; - ostrifer_A : A ; - ostrinus_A : A ; - ostrum_N_N : N ; - otiolum_N_N : N ; - otior_V : V ; - otiosus_A : A ; - otiosus_M_N : N ; - otis_F_N : N ; - otitis_F_N : N ; - otium_N_N : N ; - otus_M_N : N ; - ovanter_Adv : Adv ; - ovarium_N_N : N ; - ovatio_F_N : N ; - ovicula_F_N : N ; - ovile_N_N : N ; - ovillus_A : A ; - ovis_F_N : N ; - ovo_V : V ; - ovulatio_F_N : N ; - ovulum_N_N : N ; - ovum_N_N : N ; - oxydatio_F_N : N ; - oxydo_V : V ; - oxygarum_N_N : N ; - oxygenium_N_N : N ; - oxyporus_A : A ; - ozonium_N_N : N ; - p_N : N ; - pabillus_M_N : N ; - pabulatio_F_N : N ; - pabulator_M_N : N ; - pabulor_V : V ; - pabulum_N_N : N ; - pacalis_A : A ; - pacatum_N_N : N ; - pacatus_A : A ; - paccator_M_N : N ; - paccatum_N_N : N ; - paciencia_F_N : N ; - paciens_A : A ; - pacienter_Adv : Adv ; - pacifer_A : A ; - pacificator_M_N : N ; - pacificatorius_A : A ; - pacifico_V : V ; - pacificus_A : A ; - pacifier_A : A ; - pacisco_V : V ; - paciscor_V : V ; - paco_V : V ; - pactio_F_N : N ; - pactor_M_N : N ; - pactum_N_N : N ; - pactus_A : A ; + oscen_M_N : N ; -- [XEXDO] :: bird which gives omens by its cry; song-bird; + oscillatorius_A : A ; -- [GXXEK] :: oscillating; + oscillatrum_N_N : N ; -- [GSXEK] :: oscillator; + oscillum_N_N : N ; -- [FXXEK] :: |swing; (Cal); + oscitans_A : A ; -- [XXXDS] :: listless; sluggish; sleepy; + oscitatio_F_N : N ; -- [XXXEC] :: gaping, yawning; + oscito_V : V ; -- [XXXDX] :: gape; yawn; + osculatio_F_N : N ; -- [XXXEO] :: kissing; action of kissing; + osculor_V : V ; -- [XXXDX] :: kiss; exchange kisses; + osculum_N_N : N ; -- [XXXAX] :: kiss; mouth; lips; orifice; mouthpiece (of a pipe); + ossarium_N_N : N ; -- [XXXEO] :: charnel-house; place for the bones of the dead; + osseus_A : A ; -- [XXXCO] :: bone-, made/consisting of bone; bone-like; bone rather than flesh, emaciated; + ossiculatim_Adv : Adv ; -- [XXXFO] :: bone-by-bone; + ossiculum_N_N : N ; -- [XXXDO] :: small bone; + ossifraga_F_N : N ; -- [XXXEO] :: |bone-breaker; (mutilator of children); + ossuarium_N_N : N ; -- [XXXDO] :: charnel-house; place for the bones of the dead; + ossuarius_A : A ; -- [XXXEO] :: used for the bones of the dead; + ossuculum_N_N : N ; -- [XXXDO] :: small bone; + ossum_N_N : N ; -- [BXXFO] :: bone; (implement, gnawed, dead); kernel (nut); heartwood (tree); stone (fruit); + ostendeo_V2 : V2 ; -- [EXXFW] :: show; reveal; make clear, point out, display, exhibit; + ostendo_V2 : V2 ; -- [XXXAX] :: show; reveal; make clear, point out, display, exhibit; + ostensio_F_N : N ; -- [XXXFO] :: presenting; exposing, exhibiting, action of exposing to view; + ostentatio_F_N : N ; -- [XXXDX] :: exhibition, display; showing off; + ostentator_M_N : N ; -- [XXXDS] :: displayer; boaster; + ostento_V : V ; -- [XXXDX] :: show, display; point out, declare; disclose, hold out (prospect); + ostentui_Adv : Adv ; -- [XXXEC] :: for a show; merely for show; as sign/indication or proof; + ostentum_N_N : N ; -- [XXXDX] :: prodigy, marvel; occurrence foreshadowing future events, portent; + ostentus_M_N : N ; -- [XXXDX] :: display, demonstration, advertisement; (DAT merely for show; as a sign); + ostiarium_N_N : N ; -- [XLXDS] :: door tax; + ostiarius_A : A ; -- [XXXDX] :: of/belonging to door; + ostiarius_M_N : N ; -- [EEXCV] :: porter, doorkeeper; cleric of minor orders (lowest/fourth level from deacon); + ostiolum_N_N : N ; -- [XXXEO] :: door (small); ticket window (Cal); + ostium_N_N : N ; -- [XXXBO] :: doorway; front door; starting gate; entrance (underworld); (river) mouth; + ostracismus_M_N : N ; -- [GXXEK] :: ostracism; + ostrea_F_N : N ; -- [XXXDX] :: oyster, sea-snail; + ostreosus_A : A ; -- [XAXDS] :: rich in oysters; + ostreum_N_N : N ; -- [XXXDX] :: oyster; + ostria_F_N : N ; -- [XAXFP] :: oyster; sea-snail; + ostrifer_A : A ; -- [XXXDX] :: bearing oysters; + ostrinus_A : A ; -- [XXXEC] :: purple; + ostrum_N_N : N ; -- [XXXCO] :: purple dye; purple color; material/garment/anything that has been dyed purple; + otiolum_N_N : N ; -- [XXXFS] :: little leisure; + otior_V : V ; -- [XXXDX] :: be at leisure, enjoy a holiday; + otiosus_A : A ; -- [XXXDX] :: idle; unemployed, unoccupied, at leisure; peaceful, disengaged, free of office; + otiosus_M_N : N ; -- [XXXDS] :: private citizen; + otis_F_N : N ; -- [XAXNO] :: bustard; (Otis tarda, great bustard, largest European bird); + otitis_F_N : N ; -- [GBXEK] :: otitis, inflammation of the ear; + otium_N_N : N ; -- [XXXAO] :: leisure; spare time; holiday; ease/rest/peace/quiet; tranquility/calm; lull; + otus_M_N : N ; -- [XAXNO] :: horned/eared owl; + ovanter_Adv : Adv ; -- [FXXEM] :: exultantly; + ovarium_N_N : N ; -- [GBXEK] :: ovary; + ovatio_F_N : N ; -- [XXXDS] :: ovation; minor triumph for an easy victory; + ovicula_F_N : N ; -- [FAXFM] :: little sheep; E:Christ's sheep; sheep of Christ's flock; + ovile_N_N : N ; -- [XAXDX] :: sheepfold; + ovillus_A : A ; -- [XAXEC] :: of sheep; + ovis_F_N : N ; -- [XAXAX] :: sheep; + ovo_V : V ; -- [XXXBX] :: rejoice; + ovulatio_F_N : N ; -- [GBXEK] :: ovulation; + ovulum_N_N : N ; -- [GBXEK] :: ovum; + ovum_N_N : N ; -- [XXXBX] :: egg; oval; + oxydatio_F_N : N ; -- [GSXEK] :: oxidization; + oxydo_V : V ; -- [GSXEK] :: oxidize; + oxygarum_N_N : N ; -- [XAXFS] :: vinegar-garum sauce; + oxygenium_N_N : N ; -- [GXXEK] :: oxygen; + oxyporus_A : A ; -- [XXXFS] :: quickly-passing; easily digested; + ozonium_N_N : N ; -- [GSXEK] :: ozone; + p_N : N ; -- [XXXDX] :: people, nation; abb. p.; [p. R. => populus Romani]; + pabillus_M_N : N ; -- [FXXEK] :: barrow; + pabulatio_F_N : N ; -- [XXXDX] :: foraging; + pabulator_M_N : N ; -- [XXXDX] :: forager; + pabulor_V : V ; -- [XXXDX] :: forage; + pabulum_N_N : N ; -- [XXXBO] :: fodder, forage, food for cattle; food/sustenance; fuel (for fire); + pacalis_A : A ; -- [XXXDX] :: associated with peace; + pacatum_N_N : N ; -- [XXXDS] :: friendly country; + pacatus_A : A ; -- [XXXDX] :: peaceful, calm; + paccator_M_N : N ; -- [EEXDX] :: sinner; + paccatum_N_N : N ; -- [EEXDX] :: sin; + paciencia_F_N : N ; -- [FXXBT] :: |tolerance/forbearance; complaisance/submissiveness; submission by prostitute; + paciens_A : A ; -- [FXXBW] :: |hardy; able/willing to endure; capable of bearing/standing up to hard use; + pacienter_Adv : Adv ; -- [FXXCW] :: patiently; with patience/toleration; + pacifer_A : A ; -- [XXXCO] :: that brings peace; (esp. of various gods); of olive/laurel peace symbols/tokens; + pacificator_M_N : N ; -- [XXXDS] :: peace-maker; + pacificatorius_A : A ; -- [XXXFS] :: peace-making; pacific; + pacifico_V : V ; -- [XXXDX] :: make peace, conclude peace; grant peace; pacify, appease; + pacificus_A : A ; -- [XXXDX] :: making or tending to make peace; + pacifier_A : A ; -- [XXXDX] :: bringing peace, peaceful; + pacisco_V : V ; -- [XXXDX] :: make a bargain or agreement; agree, enter into a marriage contract; negotiate; + paciscor_V : V ; -- [XXXDX] :: make a bargain or agreement; agree, enter into a marriage contract; negotiate; + paco_V : V ; -- [XXXBX] :: pacify, subdue; + pactio_F_N : N ; -- [XXXDX] :: bargain, agreement; + pactor_M_N : N ; -- [XXXFS] :: negotiator; + pactum_N_N : N ; -- [XXXBX] :: bargain, agreement; manner; + pactus_A : A ; -- [XXXDX] :: agreed upon, appointed; 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 ; - paedagogia_F_N : N ; - paedagogicus_A : A ; - paedagogus_M_N : N ; - paederastes_F_N : N ; - paederos_M_N : N ; - paediater_M_N : N ; - paediatria_F_N : N ; - paedicator_M_N : N ; - paedico_V : V ; - paedico_V2 : V2 ; - paedophilia_F_N : N ; - paedophilus_M_N : N ; - paedor_M_N : N ; - paelex_F_N : N ; - paene_Adv : Adv ; - paeninsula_F_N : N ; - paenitentia_F_N : N ; - paeniteo_V : V ; - paenitet_V0 : V ; - paenitudo_F_N : N ; - paenula_F_N : N ; - paenularius_M_N : N ; - paenulatus_A : A ; - paeon_M_N : N ; - paeonius_A : A ; - paetulus_A : A ; - paetus_A : A ; - paga_F_N : N ; - paganicus_A : A ; - paganismus_M_N : N ; - paganitas_F_N : N ; - paganum_N_N : N ; - paganus_A : A ; - paganus_M_N : N ; - pagatim_Adv : Adv ; - pagella_F_N : N ; - pagencis_M_N : N ; - pagensis_M_N : N ; - pagina_F_N : N ; - paginula_F_N : N ; - pagus_M_N : N ; - pala_F_N : N ; - palaeographia_F_N : N ; - palaeographicus_A : A ; - palaeontologia_F_N : N ; - palaeopola_M_N : N ; - palaeopolium_N_N : N ; - palaestra_F_N : N ; - palaestrice_Adv : Adv ; - palaestricus_A : A ; - palaestrita_M_N : N ; - palam_Abl_Prep : Prep ; - palam_Adv : Adv ; - palatum_N_N : N ; - palea_F_N : N ; - palear_N_N : N ; - paleatus_A : A ; - palifico_V : V ; - palimpsestus_M_N : N ; - palinodia_F_N : N ; - paliurus_M_N : N ; - palla_F_N : N ; - pallaca_F_N : N ; - pallas_F_N : N ; - pallens_A : A ; - palleo_V : V ; - pallesco_V2 : V2 ; - palliatus_A : A ; - pallidulus_A : A ; - pallidus_A : A ; - pallio_V : V ; - palliolum_N_N : N ; - pallium_N_N : N ; - pallolum_N_N : N ; - pallor_M_N : N ; - palma_F_N : N ; - palmaris_A : A ; - palmarium_N_N : N ; - palmatus_A : A ; - palmes_M_N : N ; - palmetum_N_N : N ; - palmeus_A : A ; - palmifer_A : A ; - palmosus_A : A ; - palmula_F_N : N ; - palmus_M_N : N ; - palor_V : V ; - palpator_M_N : N ; - palpebra_F_N : N ; - palpito_V : V ; - palpo_V2 : V2 ; - palpor_V : V ; - palpus_M_N : N ; - paludamentum_N_N : N ; - paludatus_A : A ; - paludester_A : A ; - paludismus_M_N : N ; - paludosus_A : A ; - palum_N_N : N ; + paean_2_N : N ; -- [XXXCO] :: hymn (usually of victory, to Apollo/other gods); Paean (Greek Apollo as healer); + paean_M_N : N ; -- [XXXCO] :: hymn (usually of victory, to Apollo/other gods); Paean (Greek Apollo as healer); + paedagogia_F_N : N ; -- [GXXEK] :: pedagogy; + paedagogicus_A : A ; -- [GXXEK] :: educational; + paedagogus_M_N : N ; -- [XXXDX] :: slave, who accompanied children to school; pedagogue; + paederastes_F_N : N ; -- [GXXEK] :: pederasty; + paederos_M_N : N ; -- [DSXNS] :: precious stone; A:bear's foot plant (Pliny); + paediater_M_N : N ; -- [GXXEK] :: paediatrician, children's doctor; + paediatria_F_N : N ; -- [GXXEK] :: paediatrics, medical science dealing with childhood diseases; + paedicator_M_N : N ; -- [XXXEO] :: sodomite, pedicstor; + paedico_V : V ; -- [XXXDX] :: commit sodomy/pederasty with, practice unnatural vice upon; + paedico_V2 : V2 ; -- [XXXCO] :: perform anal intercourse; commit sodomy with; + paedophilia_F_N : N ; -- [GXXEK] :: child molestation; + paedophilus_M_N : N ; -- [GXXEK] :: child molester; + paedor_M_N : N ; -- [XXXDX] :: filth, dirt; + paelex_F_N : N ; -- [XXXBO] :: mistress (installed as rival/in addition to wife), concubine; male prostitute; + paene_Adv : Adv ; -- [XXXAX] :: nearly, almost; mostly; + paeninsula_F_N : N ; -- [XXXDX] :: peninsula; + paenitentia_F_N : N ; -- [XXXBO] :: regret (for act); change of mind/attitude; repentance/contrition (Def); penance; + paeniteo_V : V ; -- [XXXAO] :: displease; (cause to) regret; repent, be sorry; [me paenitet => I am sorry]; + paenitet_V0 : V ; -- [XXXBO] :: it displeases, makes angry, offends, dissatisfies, makes sorry; + paenitudo_F_N : N ; -- [XXXFO] :: regret; repentance (L+S); + paenula_F_N : N ; -- [XXXDX] :: hooded weatherproof cloak; + paenularius_M_N : N ; -- [XXXES] :: mantle-maker; + paenulatus_A : A ; -- [XXXDX] :: wearing a paenula; + paeon_M_N : N ; -- [XPXEC] :: metrical foot, consisting of three short syllables and one long; + paeonius_A : A ; -- [XPXDS] :: healing; of the god of medicine; + paetulus_A : A ; -- [XXXEC] :: with a slight cast in the eyes, squinting; + paetus_A : A ; -- [XXXDX] :: having cast in the eye, squinting slightly; + paga_F_N : N ; -- [FLXFM] :: district; county (equiv. to pagus); + paganicus_A : A ; -- [XXXEO] :: rustic; belonging to village/country people; [pila ~ => feather stuffed ball]; + paganismus_M_N : N ; -- [FEXEM] :: Pagan World; + paganitas_F_N : N ; -- [FEXEM] :: paganism; + paganum_N_N : N ; -- [XXXEO] :: civilian affairs (pl.); + paganus_A : A ; -- [XXXCO] :: pagan; of a pagus (country district); rural/rustic; civilian (not military); + paganus_M_N : N ; -- [XXXBO] :: pagan; countryman, peasant; civilian (not soldier); civilians/locals (pl.); + pagatim_Adv : Adv ; -- [XXXES] :: in every village; in a village manner Nelson); + pagella_F_N : N ; -- [XXXEC] :: little page; + pagencis_M_N : N ; -- [FXXFM] :: inhabitants of a district; country-folk, peasants; + pagensis_M_N : N ; -- [FXXEM] :: inhabitants of a district; country-folk, peasants; + pagina_F_N : N ; -- [XXXBX] :: page, sheet; + paginula_F_N : N ; -- [XXXEC] :: little page; + pagus_M_N : N ; -- [XXXCO] :: country district/community, canton; + pala_F_N : N ; -- [XXXDX] :: spade; shovel (Cal); + palaeographia_F_N : N ; -- [GSXEK] :: paleography, study of ancient writing/inscriptions; + palaeographicus_A : A ; -- [GSXEK] :: paleographic, of the study/deciphering of ancient writing/inscriptions; + palaeontologia_F_N : N ; -- [GSXEK] :: paleontology, study of fossils/ancient life; + palaeopola_M_N : N ; -- [GXXEK] :: antiquarian; + palaeopolium_N_N : N ; -- [GXXEK] :: antiques store; + palaestra_F_N : N ; -- [XXXDX] :: palaestra, wrestling school; gymnasium; + palaestrice_Adv : Adv ; -- [XXXEC] :: gymnastically; + palaestricus_A : A ; -- [XXXEC] :: of the palaestra, gymnastic; + palaestrita_M_N : N ; -- [XXXEC] :: superintendent of a palaestra; + palam_Abl_Prep : Prep ; -- [XXXDS] :: in presence of; + palam_Adv : Adv ; -- [XXXBX] :: openly, publicly; plainly; + palatum_N_N : N ; -- [XXXBX] :: palate; sense of taste; + palea_F_N : N ; -- [XXXDX] :: chaff, husk; + palear_N_N : N ; -- [XXXDX] :: dewlap (usu.pl.), fold of skin hanging from throat of cattle; + paleatus_A : A ; -- [XAXNS] :: chaff-mixed; + palifico_V : V ; -- [FXXEN] :: make evident; + palimpsestus_M_N : N ; -- [XXXEC] :: palimpsest; + palinodia_F_N : N ; -- [FEXEM] :: recantation; + paliurus_M_N : N ; -- [XXXDX] :: shrub, Christ's thorn; + palla_F_N : N ; -- [XXXDX] :: palla, a lady's outer garment; + pallaca_F_N : N ; -- [XXXEO] :: concubine; + pallas_F_N : N ; -- [XAXFS] :: olive tree; E:goddess Minerva/Athene; + pallens_A : A ; -- [XXXCS] :: pale; greenish; + palleo_V : V ; -- [XXXBX] :: be/look pale; fade; become pale at; + pallesco_V2 : V2 ; -- [XXXDX] :: grow pale; blanch; fade; + palliatus_A : A ; -- [XXHEC] :: clad in a pallium; (i.e. as a Greek, not togatus);. + pallidulus_A : A ; -- [XXXEC] :: somewhat pale; + pallidus_A : A ; -- [XXXBX] :: pale, yellow-green; + pallio_V : V ; -- [FXXFM] :: disguise; cloak; palliate; + palliolum_N_N : N ; -- [XXHEC] :: little Greek cloak; a hood; + pallium_N_N : N ; -- [XXXDX] :: cover, coverlet; Greek cloak; + pallolum_N_N : N ; -- [XXXDX] :: small/little cloak; small Greek mantle; + pallor_M_N : N ; -- [XXXDX] :: wanness; paleness of complexion; pallidness; + palma_F_N : N ; -- [XXXAO] :: palm/width of the hand; hand; palm tree/branch; date; palm award/first place; + palmaris_A : A ; -- [XXXES] :: palm-wide; palm-, of palms; prize-worthy; + palmarium_N_N : N ; -- [XDXEC] :: masterpiece; + palmatus_A : A ; -- [XXXDX] :: embroidered with palm branches; + palmes_M_N : N ; -- [XXXDX] :: young vine branch/shoot/sprig/sprout; vine, bough, branch; + palmetum_N_N : N ; -- [XXXDX] :: palm-grove; + palmeus_A : A ; -- [XXXFS] :: hands-width; palm-, of palm; + palmifer_A : A ; -- [XXXDX] :: palm-bearing; + palmosus_A : A ; -- [XXXEC] :: full of palms; + palmula_F_N : N ; -- [XXXDX] :: oar; + palmus_M_N : N ; -- [XXXDO] :: palm of the hand; width of palm as unit of measure (4 inches); span (L+S); + palor_V : V ; -- [XXXDX] :: wander abroad stray; scatter; wander aimlessly; + palpator_M_N : N ; -- [XXXDS] :: flatterer; stroker; + palpebra_F_N : N ; -- [XXXEC] :: eyelid; + palpito_V : V ; -- [XXXDX] :: throb, beat, pulsate; + palpo_V2 : V2 ; -- [XXXEC] :: stroke; coax, flatter, wheedle; + palpor_V : V ; -- [XXXEC] :: stroke; coax, flatter, wheedle; + palpus_M_N : N ; -- [BXXFS] :: soft hand; coaxing; + paludamentum_N_N : N ; -- [XXXDX] :: general's cloak, of scarlet color; + paludatus_A : A ; -- [XXXDX] :: wearing a military cloak; + paludester_A : A ; -- [EXXFS] :: swampy; marshy; + paludismus_M_N : N ; -- [GBXEK] :: malaria; + paludosus_A : A ; -- [XXXDX] :: fenny, boggy, swampy, marshy; + palum_N_N : N ; -- [XXXBO] :: stake/pile/pole/unsplit wood; peg/pin; execution stake; wood sword; fence (pl.); 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 ; - palus_M_N : N ; - paluster_A : A ; - palux_F_N : N ; - pampinarium_N_N : N ; - pampinarius_A : A ; - pampinatio_F_N : N ; - pampineus_A : A ; - pampino_V : V ; - pampinus_C_N : N ; - panacea_F_N : N ; - panaces_M_N : N ; - panaces_N_N : N ; - panarium_N_N : N ; + palumbes_M_N : N ; -- [XAXCO] :: wood-pigeon, ringdove; dupe, pigeon, mark, gull, one deceived/fooled/cheated; + palumbus_M_N : N ; -- [XAXCO] :: wood-pigeon, ringdove; dupe, pigeon, mark, gull, one deceived/fooled/cheated; + palus_F_N : N ; -- [XXXBX] :: swamp, marsh; + palus_M_N : N ; -- [XXXBO] :: stake/pile/pole/unsplit wood; peg/pin; execution stake; wood sword; fence (pl.); + paluster_A : A ; -- [XXXDX] :: marshy; of marshes; + palux_F_N : N ; -- [XXSFO] :: gold-dust, gold-sand; (?); + pampinarium_N_N : N ; -- [XAXES] :: tendril-branch; + pampinarius_A : A ; -- [XAXES] :: of tendrils; + pampinatio_F_N : N ; -- [XAXES] :: trimming (of vines); + pampineus_A : A ; -- [XXXDX] :: of/covered with vine shoots/foliage/tendrils; + pampino_V : V ; -- [XAXES] :: trim (vines); + pampinus_C_N : N ; -- [XXXDX] :: vine shoot, vine foliage; + panacea_F_N : N ; -- [XAXCS] :: plant (medicinal); panacea, heal-all; kind of savory; daughter of Aesculapius; + panaces_M_N : N ; -- [XAXCO] :: plant, supposed to cure all diseases; panacea, heal-all; (species of Opoponax); + panaces_N_N : N ; -- [XAXCO] :: plant, supposed to cure all diseases; panacea, heal-all; (species of Opoponax); + panarium_N_N : N ; -- [XXXEC] :: breadbasket; 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 ; - pancratiastes_M_N : N ; - pancration_N_N : N ; - pancratium_N_N : N ; - pancreas_F_N : N ; - pancreatitis_F_N : N ; - pandectes_M_N : N ; - pandiculor_V : V ; - pando_V2 : V2 ; - pandus_A : A ; - pane_N_N : N ; - panegyris_A : A ; - pango_V2 : V2 ; - panicium_N_N : N ; - panicula_F_N : N ; - panicum_N_N : N ; - panicus_A : A ; - panifex_M_N : N ; - panifica_F_N : N ; - panificium_N_N : N ; - panis_M_N : N ; - panniculus_M_N : N ; - pannosus_A : A ; - pannuceus_A : A ; - pannucius_A : A ; - pannus_M_N : N ; - panoplia_F_N : N ; - pansa_F_N : N ; - pantex_M_N : N ; - pantheismus_M_N : N ; - pantheisticus_A : A ; - panthera_F_N : N ; - pantomima_F_N : N ; - pantomimus_M_N : N ; - panton_N_N : N ; - pantopolium_N_N : N ; - papaia_F_N : N ; - papainum_N_N : N ; - papalis_A : A ; - papas_M_N : N ; - papatus_M_N : N ; - papaver_N_N : N ; - papavereus_A : A ; - papilio_M_N : N ; - papilla_F_N : N ; - papissa_F_N : N ; - papista_M_N : N ; - pappo_V2 : V2 ; - pappus_M_N : N ; - papula_F_N : N ; - papyraceus_A : A ; - papyrifer_A : A ; - papyrio_M_N : N ; - papyrum_N_N : N ; - papyrus_C_N : N ; - par_A : A ; + panax_M_N : N ; -- [XAXCO] :: plant, supposed to cure all diseases; panacea, heal-all; (species of Opoponax); + panchrestus_A : A ; -- [XXXEC] :: good for everything; + panchristus_A : A ; -- [XXXEC] :: good for everything; + pancratiastes_M_N : N ; -- [XWXFS] :: wrestler (in Pancratium); + pancration_N_N : N ; -- [XXXEC] :: gymnastic contest; + pancratium_N_N : N ; -- [XXXEC] :: gymnastic contest; + pancreas_F_N : N ; -- [GBXEK] :: pancreas; + pancreatitis_F_N : N ; -- [GBXEK] :: pancreatitis, inflammation of the pancreas; + pandectes_M_N : N ; -- [XSXFO] :: encyclopedia, book of universal knowledge; + pandiculor_V : V ; -- [XXXDS] :: stretch oneself; + pando_V2 : V2 ; -- [XXXAX] :: spread out [passis manibus => with hands outstretched]; + pandus_A : A ; -- [XXXDX] :: spreading round in a wide curve arched; + pane_N_N : N ; -- [XXXDX] :: bread; + panegyris_A : A ; -- [FXXFM] :: fair; + pango_V2 : V2 ; -- [XXXAO] :: compose; insert, drive in, fasten; plant; fix, settle, agree upon, stipulate; + panicium_N_N : N ; -- [XXXFS] :: baked dough; anything baked; bread or cakes; + panicula_F_N : N ; -- [XAXDS] :: plant tuft; piece of thatch; B:swelling; + panicum_N_N : N ; -- [XXXDX] :: Italian millet; + panicus_A : A ; -- [GXXEK] :: panicky; + panifex_M_N : N ; -- [DXXFS] :: baker, bread maker; + panifica_F_N : N ; -- [EXXFS] :: baker (female), she who makes bread; + panificium_N_N : N ; -- [XXXDO] :: making/baking of bread; baked bread/loves/cakes (pl.); + panis_M_N : N ; -- [XXXAX] :: bread; loaf; + panniculus_M_N : N ; -- [XXXEC] :: little garment; + pannosus_A : A ; -- [XXXDX] :: dressed in rags, tattered; + pannuceus_A : A ; -- [XXXEC] :: ragged; wrinkled, shriveled; + pannucius_A : A ; -- [XXXEC] :: ragged; wrinkled, shriveled; + pannus_M_N : N ; -- [XXXBX] :: cloth, garment; charioteer's colored shirt; rags; + panoplia_F_N : N ; -- [GXXFT] :: equipment; (Erasmus); + pansa_F_N : N ; -- [XXXEC] :: splay-footed; + pantex_M_N : N ; -- [XXXDX] :: belly (usu. pl.), paunch, guts; bowels; of sausages; + pantheismus_M_N : N ; -- [GXXEK] :: pantheism; + pantheisticus_A : A ; -- [GXXEK] :: pantheistic; + panthera_F_N : N ; -- [XXXDX] :: leopard; the whole of a single catch made by a fowler; + pantomima_F_N : N ; -- [XXXDX] :: female mime performer in a pantomime; + pantomimus_M_N : N ; -- [XXXDX] :: mime performer in a pantomime; + panton_N_N : N ; -- [FXXEN] :: everything; + pantopolium_N_N : N ; -- [GXXEK] :: department store; + papaia_F_N : N ; -- [GAXEK] :: papaya/pawpaw (Carica papaya); + papainum_N_N : N ; -- [GSXEK] :: papain enzyme; (ferment from papaya, aids digestion, meat tenderizer); + papalis_A : A ; -- [GXXEK] :: papal; + papas_M_N : N ; -- [XXXDS] :: governor; tutor; + papatus_M_N : N ; -- [GXXEK] :: papacy; + papaver_N_N : N ; -- [XXXDX] :: poppy; poppy-seed; + papavereus_A : A ; -- [XXXDX] :: of poppy, poppy-; + papilio_M_N : N ; -- [XXXDX] :: butterfly, moth; + papilla_F_N : N ; -- [XXXDX] :: nipple, teat, dug (of mammals); + papissa_F_N : N ; -- [GXXEK] :: popess, supposed female pope; (Joan); + papista_M_N : N ; -- [GXXEK] :: papist; + pappo_V2 : V2 ; -- [XXXEC] :: eat; + pappus_M_N : N ; -- [XXXEC] :: woolly seed of certain plants; + papula_F_N : N ; -- [XXXDX] :: pimple, pustule; + papyraceus_A : A ; -- [GXXEK] :: of paper; + papyrifer_A : A ; -- [XXXDX] :: papyrus-bearing; + papyrio_M_N : N ; -- [XXXFS] :: papyrus marsh, place where papyrus grows abundantly; + papyrum_N_N : N ; -- [XXXDX] :: papyrus, the plant (reed); a garment or "paper" made from the papyrus plant; + papyrus_C_N : N ; -- [XXXDX] :: papyrus, the plant (reed); a garment or "paper" made from the papyrus plant; + par_A : A ; -- [XXXAS] :: ||||balanced/level; S:even, divisible by two; [~ facere => settle accounts]; par_F_N : N ; -- [XXXCO] :: |equal, counterpart; companion/partner at dinner; adversary, opponent; - par_M_N : N ; - par_N_N : N ; - parabilis_A : A ; - parabola_F_N : N ; - parabole_F_N : N ; - parabolicus_A : A ; - parabolois_A : A ; - parabula_F_N : N ; - paracharactes_M_N : N ; - paracharagma_N_N : N ; - paracletus_M_N : N ; - paraclitus_M_N : N ; - paradisus_M_N : N ; - paradoxum_N_N : N ; - paragauda_F_N : N ; - paragoge_F_N : N ; - paragraphum_N_N : N ; - paragraphus_M_N : N ; - paralios_A : A ; - parallaxis_F_N : N ; - parallelismus_M_N : N ; - parallelus_A : A ; - parallelus_M_N : N ; + par_M_N : N ; -- [XXXCO] :: |equal, counterpart; companion/partner at dinner; adversary, opponent; + par_N_N : N ; -- [XXXBO] :: pair, set of two; conjugal pair; pair of associates/adversaries/contestants; + parabilis_A : A ; -- [XXXDX] :: procurable, easily obtainable; + parabola_F_N : N ; -- [GSXEK] :: |parabola (math.); + parabole_F_N : N ; -- [XXXEO] :: comparison; explanatory illustration; parable (L+S), allegory; proverb; speech; + parabolicus_A : A ; -- [GSXEK] :: parabolic; + parabolois_A : A ; -- [GSXEK] :: paraboloid; + parabula_F_N : N ; -- [EXXEP] :: comparison; explanatory illustration; parable (L+S), allegory; proverb; speech; + paracharactes_M_N : N ; -- [FXXEK] :: counterfeiter; + paracharagma_N_N : N ; -- [FXXEK] :: forged currency; + paracletus_M_N : N ; -- [EXXDS] :: advocate, defender, protector, helper, comforter; (appellation for Holy Ghost); + paraclitus_M_N : N ; -- [EXXDS] :: advocate, defender, protector, helper, comforter; (appellation for Holy Ghost); + paradisus_M_N : N ; -- [XEXCS] :: Paradise, Garden of Eden; abode of the blessed; park, orchard; a town/river; + paradoxum_N_N : N ; -- [XSXEO] :: paradox; philosophical paradoxes (pl.); + paragauda_F_N : N ; -- [XXXFS] :: lace-border; laced garment; + paragoge_F_N : N ; -- [XGXFS] :: word-lengthening; paragoge, addition of letter/syllable to word (for emphasis); + paragraphum_N_N : N ; -- [FGXFM] :: paragraph; paragraph-mark; + paragraphus_M_N : N ; -- [FGXFM] :: paragraph; paragraph-mark; + paralios_A : A ; -- [XAXNS] :: seaside-growing (Pliny); + parallaxis_F_N : N ; -- [GSXEK] :: parallax; + parallelismus_M_N : N ; -- [GXXEK] :: parallelism; + parallelus_A : A ; -- [XSXFS] :: parallel (lines); + parallelus_M_N : N ; -- [GXXEK] :: parallel (geography); paralysis_1_N : N ; -- [XBHCO] :: paralysis; any of several forms of paralysis; apoplexy; palsy (L+S); - paralysis_2_N : N ; - paralysis_F_N : N ; - paralyticus_A : A ; - paralyticus_M_N : N ; - paramentum_N_N : N ; - paramese_F_N : N ; - parametrum_N_N : N ; - paranete_F_N : N ; - paraphrasis_F_N : N ; + paralysis_2_N : N ; -- [XBHCO] :: paralysis; any of several forms of paralysis; apoplexy; palsy (L+S); + paralysis_F_N : N ; -- [XBHCO] :: paralysis; any of several forms of paralysis; apoplexy; palsy (L+S); + paralyticus_A : A ; -- [XBHES] :: paralytic, paralyzed; palsied, struck with palsy (L+S); + paralyticus_M_N : N ; -- [XBHEO] :: paralytic, paralyzed person; palsied person (L+S); + paramentum_N_N : N ; -- [FXXFM] :: apparel; adornment; ship's rigging; + paramese_F_N : N ; -- [FDXFO] :: lowest note of tetrachord; next-to-middle-note; B-flat treble; ring finger; + parametrum_N_N : N ; -- [GXXEK] :: parameter; + paranete_F_N : N ; -- [XDXFO] :: next-to-highest-note on certain tetrachords; lowest-string-but-one; + paraphrasis_F_N : N ; -- [XGXFS] :: paraphrase; parapsis_1_N : N ; -- [XXXEO] :: dish for serving vegetables/fruit; desert dish (Cas); - parapsis_2_N : N ; - parapsis_F_N : N ; - parasceve_F_N : N ; - parasceves_F_N : N ; + parapsis_2_N : N ; -- [XXXEO] :: dish for serving vegetables/fruit; desert dish (Cas); + parapsis_F_N : N ; -- [XXXCO] :: dish for serving vegetables/fruit; desert dish (Cas); + parasceve_F_N : N ; -- [DEXDS] :: day of preparation, day before the Sabbath; + parasceves_F_N : N ; -- [EEXFT] :: day of preparation, day before the Sabbath; parasis_1_N : N ; -- [XXXFO] :: dish for serving vegetables/fruit; desert dish (Cas); - parasis_2_N : N ; - parasis_F_N : N ; - parasita_F_N : N ; - parasitaster_M_N : N ; - parasiticus_A : A ; - parasitus_M_N : N ; - parastatica_F_N : N ; - parastaticus_A : A ; - paraster_M_N : N ; - paratragoedo_V : V ; - paratus_A : A ; - paraveredus_M_N : N ; - parce_Adv : Adv ; - parco_V2 : V2 ; - parcometrum_N_N : N ; - parcus_A : A ; - pardus_M_N : N ; - parens_A : A ; + parasis_2_N : N ; -- [XXXFO] :: dish for serving vegetables/fruit; desert dish (Cas); + parasis_F_N : N ; -- [XXXDO] :: dish for serving vegetables/fruit; desert dish (Cas); + parasita_F_N : N ; -- [XXXDS] :: female parasite; + parasitaster_M_N : N ; -- [XXXDS] :: sorry parasite; + parasiticus_A : A ; -- [XXXDS] :: parasitic; + parasitus_M_N : N ; -- [XXXDX] :: guest; parasite; + parastatica_F_N : N ; -- [XXXES] :: square column; B:horse knee bone; + parastaticus_A : A ; -- [XXXES] :: square-columnar; of square columns; + paraster_M_N : N ; -- [FLXFM] :: step-father; + paratragoedo_V : V ; -- [BXXFS] :: talk theoretically; + paratus_A : A ; -- [XXXDX] :: prepared; ready; equipped, provided; + paraveredus_M_N : N ; -- [DXXES] :: extra post-horse; horse for special occasions; + parce_Adv : Adv ; -- [XXXDX] :: sparingly, moderately; economically, frugally, thriftily, stingily; + parco_V2 : V2 ; -- [XXXAO] :: forbear, refrain from; spare; show consideration; be economical/thrifty with; + parcometrum_N_N : N ; -- [GXXEK] :: parameter; + parcus_A : A ; -- [XXXBX] :: sparing, frugal; scanty, slight; + pardus_M_N : N ; -- [XAXEC] :: panther or leopard; + parens_A : A ; -- [XXXES] :: obedient; parens_F_N : N ; -- [XXXAX] :: parent, father, mother; - parens_M_N : N ; - parentale_N_N : N ; - parentalis_A : A ; - parenthesis_F_N : N ; - parentheticus_A : A ; - parento_V : V ; - pareo_V : V ; - parhypate_F_N : N ; - paries_M_N : N ; - parietarius_A : A ; - parietina_F_N : N ; - parilis_A : A ; - parilitas_F_N : N ; - pario_V : V ; - pario_V2 : V2 ; - parissumus_A : A ; - parisumus_A : A ; - paritarius_A : A ; - paritas_F_N : N ; - pariter_Adv : Adv ; - parito_V2 : V2 ; - parlamentaris_A : A ; - parlamentarius_A : A ; - parlamentum_N_N : N ; - parliamentum_N_N : N ; - parma_F_N : N ; - parmatus_A : A ; - parmula_F_N : N ; - paro_V2 : V2 ; - parocha_F_N : N ; - parochia_F_N : N ; - parochialis_A : A ; - parochianus_M_N : N ; - parochus_M_N : N ; - paroecia_F_N : N ; - paroecialis_A : A ; - paroecianus_M_N : N ; + parens_M_N : N ; -- [XXXAX] :: parent, father, mother; + parentale_N_N : N ; -- [XXXDS] :: Parentalia; festival for dead ancestors; + parentalis_A : A ; -- [XXXDX] :: of or belonging to parents; + parenthesis_F_N : N ; -- [FGXEK] :: bracket; + parentheticus_A : A ; -- [GXXEK] :: inserted; + parento_V : V ; -- [XXXDX] :: perform rites at tombs; make appeasement offering (to the dead); + pareo_V : V ; -- [XXXAO] :: |appear, be visible, be seen; be clear/evident (legal); + parhypate_F_N : N ; -- [XDXES] :: next-to-lowest tetrachord note; second-top string/note, next to highest (L+S); + paries_M_N : N ; -- [XXXDX] :: wall, house wall; + parietarius_A : A ; -- [FXXEK] :: mural; of a wall; + parietina_F_N : N ; -- [XXXEC] :: old walls (pl.), ruins; + parilis_A : A ; -- [XXXDX] :: like, equal; + parilitas_F_N : N ; -- [FXXEN] :: equality; level to make fit; + pario_V : V ; -- [XXXDO] :: acquire (accounts); settle a debt; settle up; + pario_V2 : V2 ; -- [BXXEO] :: bear; give birth to; beget, bring forth; produce, lay (eggs); create; acquire; + parissumus_A : A ; -- [BXXFS] :: equal (to); a match for; of equal size/rank/age; fit/suitable/right/proper; + parisumus_A : A ; -- [BXXIS] :: equal (to); a match for; of equal size/rank/age; fit/suitable/right/proper; + paritarius_A : A ; -- [GXXEK] :: equal; + paritas_F_N : N ; -- [EXXES] :: equality; parity; + pariter_Adv : Adv ; -- [XXXAX] :: equally; together; + parito_V2 : V2 ; -- [BXXFS] :: make ready; + parlamentaris_A : A ; -- [GXXEK] :: parliamentary; + parlamentarius_A : A ; -- [GXXEK] :: parliamentary; + parlamentum_N_N : N ; -- [FXXEM] :: discussion; conference/parley; parliament (Cal); + parliamentum_N_N : N ; -- [FXXFM] :: discussion; conference/parley; parlor; parliament (Cal); + parma_F_N : N ; -- [XXXDX] :: small round shield; + parmatus_A : A ; -- [XXXEC] :: armed with the parma (small round shield); + parmula_F_N : N ; -- [XXXDX] :: little shield; + paro_V2 : V2 ; -- [XXXAO] :: prepare; furnish/supply/provide; produce; obtain/get; buy; raise; put up; plan; + parocha_F_N : N ; -- [XXXFS] :: supplying of necessaries (to traveling public officials); purveyance; + parochia_F_N : N ; -- [FEXDF] :: parish; ecclesiastical district; + parochialis_A : A ; -- [FEXDF] :: parochial, of or belonging/pertaining to a parish; + parochianus_M_N : N ; -- [FEXDF] :: parishioner; inhabitant of a parish; + parochus_M_N : N ; -- [XXXDO] :: commissary; (person responsible to supply traveling officials w/shelter/food); + paroecia_F_N : N ; -- [EEXES] :: parish; ecclesiastical district; + paroecialis_A : A ; -- [GXXEK] :: parochial; + paroecianus_M_N : N ; -- [GEXEK] :: parishioner; paropsis_1_N : N ; -- [XXXEO] :: dish for serving vegetables/fruit; desert dish (Cas); - paropsis_2_N : N ; - paropsis_F_N : N ; + paropsis_2_N : N ; -- [XXXEO] :: dish for serving vegetables/fruit; desert dish (Cas); + paropsis_F_N : N ; -- [XXXCO] :: dish for serving vegetables/fruit; desert dish (Cas); parosis_1_N : N ; -- [XXXFO] :: dish for serving vegetables/fruit; desert dish (Cas); - parosis_2_N : N ; - parosis_F_N : N ; - parotis_F_N : N ; - paroxysmus_M_N : N ; - parricida_C_N : N ; - parricidalis_A : A ; - parricidium_N_N : N ; - pars_F_N : N ; - parsimonia_F_N : N ; - parthenice_F_N : N ; - parthenium_N_N : N ; - partibilis_A : A ; - particeps_A : A ; + parosis_2_N : N ; -- [XXXFO] :: dish for serving vegetables/fruit; desert dish (Cas); + parosis_F_N : N ; -- [XXXDO] :: dish for serving vegetables/fruit; desert dish (Cas); + parotis_F_N : N ; -- [XBXES] :: tumor near ear; bracket of hyperthyrum; + paroxysmus_M_N : N ; -- [GXXEK] :: paroxysm; + parricida_C_N : N ; -- [XLXBO] :: murderer of near relative (father?/parent); assassin of head of state, traitor; + parricidalis_A : A ; -- [XLXEO] :: parricidal, of/connected with parricide/murder of near relative; treasonous; + parricidium_N_N : N ; -- [XXXBO] :: parricide; murder of near relative; assassination (of head of state); treason; + pars_F_N : N ; -- [XXXAX] :: |role (of actor); office/function/duty (usu. pl.); [centesima ~ => 1% monthly]; + parsimonia_F_N : N ; -- [XXXDX] :: frugality, thrift, parsimony, temperance; + parthenice_F_N : N ; -- [XAXFS] :: plant (unknown); + parthenium_N_N : N ; -- [XAXFS] :: plant (several types); + partibilis_A : A ; -- [DXXES] :: divisible; + particeps_A : A ; -- [XXXDX] :: sharing in, taking part in; particeps_F_N : N ; -- [XXXDX] :: sharer, partaker; - particeps_M_N : N ; - participatio_F_N : N ; - participialis_A : A ; - participialiter_Adv : Adv ; - participio_F_N : N ; - participium_N_N : N ; - participo_V : V ; - particula_F_N : N ; - particularis_A : A ; - particularismus_M_N : N ; - particularista_M_N : N ; - particularisticus_A : A ; - particulariter_Adv : Adv ; - partim_Adv : Adv ; - partio_V2 : V2 ; - partior_V : V ; - partisanus_M_N : N ; - partite_Adv : Adv ; - partitio_F_N : N ; - partitura_F_N : N ; - partum_N_N : N ; - parturio_V2 : V2 ; - partus_M_N : N ; - parum_Adv : Adv ; - parumper_Adv : Adv ; - parvipendo_V : V ; - parvissimus_A : A ; - parvitas_F_N : N ; - parvolus_A : A ; - parvulus_A : A ; - parvulus_M_N : N ; - parvus_A : A ; - pasca_F_N : N ; - paschalis_A : A ; - pasco_V2 : V2 ; - pascua_F_N : N ; - pascuum_N_N : N ; - pascuus_A : A ; - passer_M_N : N ; - passerculus_M_N : N ; - passibilis_A : A ; - passibilitas_F_N : N ; - passim_Adv : Adv ; - passio_F_N : N ; - passive_Adv : Adv ; - passivus_A : A ; - passum_N_N : N ; - passus_A : A ; - passus_M_N : N ; - pastillus_M_N : N ; - pastinaca_F_N : N ; - pastinatum_N_N : N ; - pastino_V2 : V2 ; - pastoforium_N_N : N ; - pastoforius_M_N : N ; - pastophorium_N_N : N ; - pastophorius_M_N : N ; - pastor_M_N : N ; - pastoralis_A : A ; - pastoricius_A : A ; - pastorius_A : A ; - pastus_M_N : N ; - patefacio_V2 : V2 ; - patefio_V : V ; - patella_F_N : N ; - patens_A : A ; - pateo_V : V ; - pater_M_N : N ; - patera_F_N : N ; - paternitas_F_N : N ; - paternus_A : A ; - patesco_V2 : V2 ; - pathicus_A : A ; - pathicus_M_N : N ; - pathologia_F_N : N ; - pathologicus_A : A ; - patibilis_A : A ; - patibulatus_A : A ; - patibulum_N_N : N ; - patiens_A : A ; - patienter_Adv : Adv ; - patientia_F_N : N ; - patina_F_N : N ; - patinatio_F_N : N ; - patinator_M_N : N ; - patino_V : V ; - patinus_M_N : N ; - patior_V : V ; - pator_M_N : N ; - patrator_M_N : N ; - patria_F_N : N ; - patriarcha_M_N : N ; - patriarchatus_M_N : N ; - patriarches_M_N : N ; - patriciatus_M_N : N ; - patricida_M_N : N ; - patricius_A : A ; - patricius_M_N : N ; - patrimonium_N_N : N ; - patrimus_A : A ; - patrioticus_A : A ; - patriotismus_M_N : N ; - patritus_A : A ; - patrius_A : A ; - patrizo_V : V ; - patro_V : V ; - patrocinium_N_N : N ; - patrocinor_V : V ; - patrona_F_N : N ; - patronatus_M_N : N ; - patronus_M_N : N ; - patronymicus_A : A ; - patruelis_A : A ; - patruelis_M_N : N ; - patruus_M_N : N ; - patulus_A : A ; - paucitas_F_N : N ; - pauculus_A : A ; - paucum_N_N : N ; - paucus_A : A ; - paucus_M_N : N ; - paulatim_Adv : Adv ; - paulisper_Adv : Adv ; - paullatim_Adv : Adv ; - paullisper_Adv : Adv ; - paullo_Adv : Adv ; - paullulatim_Adv : Adv ; - paullulo_Adv : Adv ; - paullulum_Adv : Adv ; - paullulum_N_N : N ; - paullulus_A : A ; - paullum_Adv : Adv ; - paullum_N_N : N ; - paullumper_Adv : Adv ; - paullus_A : A ; - paulo_Adv : Adv ; - paululatim_Adv : Adv ; - paululo_Adv : Adv ; - paululum_Adv : Adv ; - paululum_N_N : N ; - paululus_A : A ; - paulum_Adv : Adv ; - paulum_N_N : N ; - paulumper_Adv : Adv ; - paulus_A : A ; - pauper_A : A ; - pauper_M_N : N ; - pauperculus_A : A ; - pauperies_F_N : N ; - paupero_V : V ; - paupertas_F_N : N ; - paupertinus_A : A ; - pausa_F_N : N ; - pausea_F_N : N ; - pausia_F_N : N ; - pauso_V : V ; - pauxillulus_A : A ; - pauxillum_N_N : N ; - pauxillus_A : A ; - pava_F_N : N ; - pavefacio_V2 : V2 ; - pavefio_V : V ; - paveo_V : V ; - pavesco_V : V ; - pavicula_F_N : N ; - pavidus_A : A ; - pavimentatus_A : A ; - pavimentum_N_N : N ; - pavio_V2 : V2 ; - pavito_V : V ; - pavo_M_N : N ; - pavor_M_N : N ; - pavus_M_N : N ; - pax_F_N : N ; - paxillus_M_N : N ; - peccabilis_A : A ; - peccabilitas_F_N : N ; - peccabundus_A : A ; - peccadillum_N_N : N ; - peccamen_N_N : N ; - peccatio_F_N : N ; - peccatissimus_A : A ; - peccator_M_N : N ; - peccatorius_A : A ; - peccatrix_A : A ; - peccatrix_F_N : N ; - peccatulum_N_N : N ; - peccatum_N_N : N ; - peccatus_M_N : N ; - pecco_V : V ; - pecorosus_A : A ; - pecten_M_N : N ; - pecto_V2 : V2 ; - pectunculus_M_N : N ; - pectus_N_N : N ; - pectusculum_N_N : N ; - pecu_N_N : N ; - pecuarium_N_N : N ; - pecuarius_A : A ; - pecuarius_M_N : N ; - pecuinus_A : A ; - peculator_M_N : N ; - peculatus_M_N : N ; - peculiaris_A : A ; - peculiatus_A : A ; - peculiosus_A : A ; - peculium_N_N : N ; - pecunia_F_N : N ; - pecuniarius_A : A ; - pecuniosus_A : A ; - pecus_F_N : N ; - pecus_N_N : N ; - pedale_N_N : N ; - pedalis_A : A ; - pedamen_N_N : N ; - pedamentum_N_N : N ; - pedarius_A : A ; - pedatura_F_N : N ; - pedatus_M_N : N ; - pedeplanum_N_N : N ; - pedes_A : A ; - pedes_M_N : N ; - pedester_A : A ; - pedetemptim_Adv : Adv ; - pedetemtim_Adv : Adv ; - pedica_F_N : N ; - pedicator_M_N : N ; - pedico_V2 : V2 ; - pediculosus_A : A ; - pediculus_M_N : N ; - pedicura_F_N : N ; - pedifollis_A : A ; - pedifollis_M_N : N ; - pedifollium_N_N : N ; - pediseca_F_N : N ; - pedisecus_A : A ; - pedisecus_M_N : N ; - pedisequa_F_N : N ; - pedisequus_A : A ; - pedisequus_M_N : N ; - pedissequa_F_N : N ; - pedissequus_A : A ; - pedissequus_M_N : N ; - peditatus_M_N : N ; - pedum_N_N : N ; - pegma_N_N : N ; - peiorativus_A : A ; - peioresceo_V : V ; - peioro_V : V ; - peiuro_V : V ; - pejeratus_A : A ; - pejero_V : V ; - pejerosus_A : A ; - pejuratus_A : A ; - pejuro_V : V ; - pejurosus_A : A ; - pelagius_A : A ; - pelagus_N_N : N ; - pelamis_F_N : N ; - pelamys_F_N : N ; - pelex_F_N : N ; - pelicatus_M_N : N ; - pellacia_F_N : N ; - pellax_A : A ; - pellectio_F_N : N ; - pellego_V2 : V2 ; - pellex_F_N : N ; - pelliceus_A : A ; - pellicio_V2 : V2 ; - pellicius_A : A ; - pellico_V2 : V2 ; - pellicula_F_N : N ; - pellis_F_N : N ; - pellitus_A : A ; - pello_V2 : V2 ; - pelluceeo_V : V ; - peloris_F_N : N ; - pelta_F_N : N ; - peltasta_M_N : N ; - peltastes_M_N : N ; - peltatus_A : A ; - pelusia_F_N : N ; - pelvis_F_N : N ; - pena_F_N : N ; - penarius_A : A ; - penatiger_A : A ; - pendeo_V : V ; - pendo_V2 : V2 ; - pendulus_A : A ; - pendulus_M_N : N ; + particeps_M_N : N ; -- [XXXDX] :: sharer, partaker; + participatio_F_N : N ; -- [XGXEO] :: participation, sharing (in); participle (grammar); + participialis_A : A ; -- [XGXES] :: participle-like; + participialiter_Adv : Adv ; -- [XGXES] :: participle-wise; + participio_F_N : N ; -- [XXXEO] :: participation, sharing (in); participle (grammar); + participium_N_N : N ; -- [XXXDX] :: participle; + participo_V : V ; -- [XXXDX] :: share; impart; partake of; participate in; + particula_F_N : N ; -- [XXXDX] :: small part, little bit, particle, atom; + particularis_A : A ; -- [DXXES] :: particular; partial, of/concerning a (small) part; + particularismus_M_N : N ; -- [GXXEK] :: particularity; specific; + particularista_M_N : N ; -- [GXXEK] :: particularist; one who is particular; + particularisticus_A : A ; -- [GXXEK] :: particular; + particulariter_Adv : Adv ; -- [DXXES] :: particularly; + partim_Adv : Adv ; -- [XXXBX] :: partly, for the most part; mostly; [partim ... partim => some ... others]; + partio_V2 : V2 ; -- [XXXDX] :: share, divide up, distribute; + partior_V : V ; -- [XXXBX] :: share, divide up, distribute; + partisanus_M_N : N ; -- [GXXEK] :: partisan; + partite_Adv : Adv ; -- [XXXDX] :: with proper division of subject into its parts; + partitio_F_N : N ; -- [XXXDX] :: distribution, share; classification, logical distinction; div. into sections; + partitura_F_N : N ; -- [GDXEK] :: partition (music); + partum_N_N : N ; -- [XXXCO] :: gains, acquisitions; savings; what one has acquired/saved; + parturio_V2 : V2 ; -- [XXXDX] :: be in labor; bring forth; produce; be pregnant with/ready to give birth; + partus_M_N : N ; -- [XXXDX] :: birth; offspring; + parum_Adv : Adv ; -- [XXXAX] :: too/very little, not enough/so good, insufficient; less; (SUPER) not at all; + parumper_Adv : Adv ; -- [XXXCO] :: for a short/little while; for a moment; in a short time; quickly, hurriedly; + parvipendo_V : V ; -- [XXXES] :: slight (Douay); pay little attention to, give little weight to; + parvissimus_A : A ; -- [XXXEX] :: small; + parvitas_F_N : N ; -- [XXXDO] :: smallness, minuteness; insignificance, unimportance; + parvolus_A : A ; -- [XXXDX] :: tiny, little, young; + parvulus_A : A ; -- [XXXBX] :: very small, very young; unimportant; slight, petty; + parvulus_M_N : N ; -- [XXXBX] :: infancy, childhood; small child, infant; + parvus_A : A ; -- [XXXAX] :: small, little, cheap; unimportant; (SUPER) smallest, least; + pasca_F_N : N ; -- [XWXCO] :: vinegar mixed in water; (field drink of Roman soldiers); (also for slaves); + paschalis_A : A ; -- [EEXDX] :: of Easter; Paschal; of Passover; + pasco_V2 : V2 ; -- [XXXDX] :: feed, feed on; graze; + pascua_F_N : N ; -- [XAXIO] :: pasture, pasture-land; piece of grazing land; + pascuum_N_N : N ; -- [XAXCO] :: pasture, pasture-land; piece of grazing land; + pascuus_A : A ; -- [XAXDO] :: used/suitable for pasture/grazing/pasture-land; + passer_M_N : N ; -- [XXXDX] :: sparrow; + passerculus_M_N : N ; -- [XXXEC] :: little sparrow; + passibilis_A : A ; -- [DXXDS] :: passible, capable of feeling/suffering/emotion; susceptible to sensations; + passibilitas_F_N : N ; -- [DXXFS] :: passiblity, capablity of feeling/suffering; susceptiblity to sensation/emotion; + passim_Adv : Adv ; -- [XXXDX] :: here and there; everywhere; + passio_F_N : N ; -- [EEXDX] :: suffering; passion; (esp. of Christ); disease (Bee); + passive_Adv : Adv ; -- [XXXEO] :: freely, indiscriminately; randomly; passively, in passive sense (Latham); + passivus_A : A ; -- [XXXEO] :: random, indiscriminate; passive, being acted on (Latham); + passum_N_N : N ; -- [XXXDX] :: raisin-wine; + passus_A : A ; -- [XXXDS] :: spread out; outstretched; dried; + passus_M_N : N ; -- [XXXBX] :: step, pace; [mille passus -> mile; duo milia passuum => two miles]; + pastillus_M_N : N ; -- [XXXEC] :: lozenge; + pastinaca_F_N : N ; -- [EXXFS] :: parsnip; carrot; fish-of-prey (sting-ray?); + pastinatum_N_N : N ; -- [XAXFO] :: plants (pl.) cultivated by preparing (ground) by digging and leveling; + pastino_V2 : V2 ; -- [XAXDO] :: prepare (ground) by digging and leveling; + pastoforium_N_N : N ; -- [DEXES] :: place in temple where image of deity was preserved and his servants abode; + pastoforius_M_N : N ; -- [XEXEO] :: priest (of Isis) who carried image of deity in little shrine to collect alms; + pastophorium_N_N : N ; -- [DEXES] :: place in temple where image of deity was preserved and his servants abode; + pastophorius_M_N : N ; -- [XEXEO] :: priest (of Isis) who carried image of deity in little shrine to collect alms; + pastor_M_N : N ; -- [XXXAX] :: shepherd, herdsman; + pastoralis_A : A ; -- [XXXDX] :: pastoral; + pastoricius_A : A ; -- [XAXDO] :: of/connected with herdsmen; + pastorius_A : A ; -- [XAXDS] :: shepherd's; + pastus_M_N : N ; -- [XXXDX] :: pasture, feeding ground; pasturage; + patefacio_V2 : V2 ; -- [XXXAO] :: |open (up); (gates); clear, make available; deploy (troops); expose (to attack); + patefio_V : V ; -- [XXXAO] :: be made known/opened/revealed/uncovered/disclosed/exposed; (patefacio PASS); + patella_F_N : N ; -- [XXXDX] :: small dish or plate; + patens_A : A ; -- [XXXDX] :: open, accessible; + pateo_V : V ; -- [XXXAX] :: stand open, be open; extend; be well known; lie open, be accessible; + pater_M_N : N ; -- [XXXAX] :: father; [pater familias, patris familias => head of family/household]; + patera_F_N : N ; -- [XXXDX] :: bowl; saucer; + paternitas_F_N : N ; -- [DXXES] :: fatherly feeling/care; paternity; descendants of one father; + paternus_A : A ; -- [XXXBX] :: father's, paternal; ancestral; + patesco_V2 : V2 ; -- [XXXDX] :: be opened/open/revealed; become clear/known; open; extend, spread; + pathicus_A : A ; -- [XXXCO] :: submitting to (anal) sex; lascivious (L+S); (of catamites/prostitutes/books); + pathicus_M_N : N ; -- [XXXEO] :: sodomite, one who submits to anal sex; + pathologia_F_N : N ; -- [GSXEK] :: pathology; + pathologicus_A : A ; -- [GBXEK] :: pathological; + patibilis_A : A ; -- [XXXDS] :: endurable; sensitive; + patibulatus_A : A ; -- [XXXDS] :: yoked; pilloried; + patibulum_N_N : N ; -- [XXXDX] :: fork-shaped yoke; gibbet; + patiens_A : A ; -- [XXXBO] :: |hardy; able/willing to endure; capable of bearing/standing up to hard use; + patienter_Adv : Adv ; -- [XXXCO] :: patiently; with patience/toleration; + patientia_F_N : N ; -- [XXXBX] :: |tolerance/forbearance; complaisance/submissiveness; submission by prostitute; + patina_F_N : N ; -- [XXXEC] :: dish; + patinatio_F_N : N ; -- [GXXEK] :: skating; + patinator_M_N : N ; -- [GXXEK] :: skater; + patino_V : V ; -- [GXXEK] :: skate; + patinus_M_N : N ; -- [GXXEK] :: skate; + patior_V : V ; -- [XXXAX] :: suffer; allow; undergo, endure; permit; + pator_M_N : N ; -- [EXXFS] :: opening; + patrator_M_N : N ; -- [DXXDS] :: accomplisher; + patria_F_N : N ; -- [XXXAX] :: native land; home, native city; one's country; + patriarcha_M_N : N ; -- [XXXDS] :: patriarch; father/chief of a tribe; chief bishop, Patriarch; + patriarchatus_M_N : N ; -- [GXXEK] :: patriarchy; + patriarches_M_N : N ; -- [XXXDS] :: patriarch; father/chief of a tribe; chief bishop, Patriarch; + patriciatus_M_N : N ; -- [XLXEO] :: patrician status/dignity; patriciate; dignity of imperial court; + patricida_M_N : N ; -- [XLXFO] :: patricide, one who kills his father; murderer of his own father; + patricius_A : A ; -- [XXXDX] :: patrician, noble; + patricius_M_N : N ; -- [XXXCS] :: patrician; aristocrat; + patrimonium_N_N : N ; -- [XXXDX] :: inheritance; + patrimus_A : A ; -- [XXXDX] :: having father still living; + patrioticus_A : A ; -- [XXXES] :: of one's native land; in mother tongue; + patriotismus_M_N : N ; -- [GXXEK] :: patriotism; + patritus_A : A ; -- [XXXEC] :: inherited from one's father; + patrius_A : A ; -- [XXXBX] :: father's, paternal; ancestral; + patrizo_V : V ; -- [FXXEM] :: take after one's father; + patro_V : V ; -- [XXXDX] :: accomplish, bring to completion; + patrocinium_N_N : N ; -- [XXXDX] :: protection, defense patronage, legal defense; + patrocinor_V : V ; -- [XXXEC] :: defend, protect; + patrona_F_N : N ; -- [XXXDX] :: protectress, patroness; + patronatus_M_N : N ; -- [XXXDO] :: status/position/rights of patron; patronage (L+S); [jus ~ => patronage rights]; + patronus_M_N : N ; -- [XXXBX] :: patron; advocate; defender, protector; + patronymicus_A : A ; -- [XXXES] :: of father's name; G:patronymic, derived from name of father/ancestor w/fix; + patruelis_A : A ; -- [XXXDX] :: of a cousin; + patruelis_M_N : N ; -- [XXXDX] :: cousin; + patruus_M_N : N ; -- [XXXCO] :: |severe reprover; type of harshness/censoriousness/finding fault; "Dutch uncle"; + patulus_A : A ; -- [XXXDX] :: wide open, gaping; wide-spreading; + paucitas_F_N : N ; -- [XXXDX] :: scarcity; paucity; + pauculus_A : A ; -- [XXXCO] :: not very much, a little; (only) a small number (pl.), few, a few; + paucum_N_N : N ; -- [XXXBO] :: only a small/an indefinite number of/few things (pl.), a few words/points; + paucus_A : A ; -- [XXXBO] :: little, small in quantity/extent; few (usu. pl.); just a few; small number of; + paucus_M_N : N ; -- [XXXBO] :: only a small/an indefinite number of people (pl.), few; a few; a select few; + paulatim_Adv : Adv ; -- [XXXCO] :: little by little, by degrees, gradually; a small amount at a time, bit by bit; + paulisper_Adv : Adv ; -- [XXXBO] :: for (only) a short time/brief while; + paullatim_Adv : Adv ; -- [XXXFO] :: little by little, by degrees, gradually; a small amount at a time, bit by bit; + paullisper_Adv : Adv ; -- [XXXCO] :: for (only) a short time/brief while; + paullo_Adv : Adv ; -- [XXXBO] :: by a little; by only a small amount; a little; somewhat; + paullulatim_Adv : Adv ; -- [XXXFO] :: little by little, by degrees, bit by bit, gradually; in small amounts; + paullulo_Adv : Adv ; -- [XXXCO] :: little/bit; to a small extent, somewhat; + paullulum_Adv : Adv ; -- [XXXCO] :: little; to small extent, somewhat; only a small amount/short while/distance; + paullulum_N_N : N ; -- [XXXCO] :: little bit, trifle; a little; (only a) small/little amount/quantity; + paullulus_A : A ; -- [XXXCO] :: little; small; (only a) small amount/quantity of/little bit of; + paullum_Adv : Adv ; -- [XXXCO] :: little/bit; to a small extent, somewhat; only a small amount/short while; + paullum_N_N : N ; -- [XXXCO] :: little/small; (only a) small amount/quantity/extent; little bit/while; trifle; + paullumper_Adv : Adv ; -- [XXXFO] :: for a short while/little bit; + paullus_A : A ; -- [XXXCO] :: little; small; (only a) small amount/quantity of/little bit of; + paulo_Adv : Adv ; -- [XXXBO] :: by a little; by only a small amount; a little; somewhat; + paululatim_Adv : Adv ; -- [XXXFO] :: little by little, by degrees, bit by bit, gradually; in small amounts; + paululo_Adv : Adv ; -- [XXXCO] :: little/bit; to a small extent, somewhat; + paululum_Adv : Adv ; -- [XXXCO] :: little; to small extent, somewhat; only a small amount/short while/distance; + paululum_N_N : N ; -- [XXXCO] :: little bit, trifle; a little; (only a) small/little amount/quantity;; + paululus_A : A ; -- [XXXCO] :: little; small; (only a) small amount/quantity of/little bit of; + paulum_Adv : Adv ; -- [XXXCO] :: little/bit; to a small extent, somewhat; only a small amount/short while; + paulum_N_N : N ; -- [XXXCO] :: little/small; (only a) small amount/quantity/extent; little bit/while; trifle; + paulumper_Adv : Adv ; -- [XXXFO] :: for a short while/little bit; + paulus_A : A ; -- [XXXAO] :: little; small; (only a) small amount/quantity of/little bit of; + pauper_A : A ; -- [XXXBO] :: poor/meager/unproductive; scantily endowed; cheap, of little worth; of poor man; + pauper_M_N : N ; -- [XXXDX] :: poor man; + pauperculus_A : A ; -- [XXXEC] :: poor; + pauperies_F_N : N ; -- [XXXDX] :: poverty; + paupero_V : V ; -- [XXXEC] :: make poor, deprive; + paupertas_F_N : N ; -- [XXXBX] :: poverty, need; humble circumstances; + paupertinus_A : A ; -- [XXXES] :: poor; sorry; + pausa_F_N : N ; -- [XXXEC] :: cessation, end; + pausea_F_N : N ; -- [XAXFS] :: olive species; olive with excellent oil; + pausia_F_N : N ; -- [XXXEC] :: species of olive; + pauso_V : V ; -- [XXXFS] :: pause; halt; cease; + pauxillulus_A : A ; -- [XXXEC] :: very small, very little; + pauxillum_N_N : N ; -- [XXXEC] :: little; + pauxillus_A : A ; -- [XXXEC] :: small, little; + pava_F_N : N ; -- [EAXFW] :: peacock; + pavefacio_V2 : V2 ; -- [XXXDO] :: terrify; alarm; scare/frighten + pavefio_V : V ; -- [XXXDO] :: be terrified/alarmed/scared/frightened; (pavefacio PASS); + paveo_V : V ; -- [XXXBX] :: be frightened or terrified at; + pavesco_V : V ; -- [XXXDX] :: become alarmed; + pavicula_F_N : N ; -- [XXXFS] :: rammer; + pavidus_A : A ; -- [XXXDX] :: fearful, terrified, panicstruck; + pavimentatus_A : A ; -- [XXXEX] :: paved (Collins); (VPAR of pavimentare); + pavimentum_N_N : N ; -- [XXXDX] :: pavement; + pavio_V2 : V2 ; -- [DXXES] :: beat, strike; push down; + pavito_V : V ; -- [XXXDX] :: be in a state of fear or trepidation (at); + pavo_M_N : N ; -- [XAXCO] :: peacock; + pavor_M_N : N ; -- [XXXBX] :: fear, panic; + pavus_M_N : N ; -- [XAXCO] :: peacock; + pax_F_N : N ; -- [XXXAX] :: peace; harmony; + paxillus_M_N : N ; -- [XXXDO] :: wooden pin/peg; small stake (L+S); + peccabilis_A : A ; -- [FXXEM] :: sinful; + peccabilitas_F_N : N ; -- [FXXEM] :: sinfulness; + peccabundus_A : A ; -- [FXXEM] :: sinful; + peccadillum_N_N : N ; -- [GXXEM] :: peccadillo, minor indiscretion; + peccamen_N_N : N ; -- [DXXES] :: fault; E:sin; + peccatio_F_N : N ; -- [XXXFO] :: wrongdoing, transgression, sin, wrong; + peccatissimus_A : A ; -- [FXXEM] :: overloaded with sin; deeply mired in sin; + peccator_M_N : N ; -- [DEXES] :: sinner; transgressor; + peccatorius_A : A ; -- [DXXES] :: sinful; + peccatrix_A : A ; -- [EXXEP] :: sinful; sinning; + peccatrix_F_N : N ; -- [EXXCS] :: sinner/transgressor (female); + peccatulum_N_N : N ; -- [GXXEM] :: peccadillo, minor indiscretion; + peccatum_N_N : N ; -- [XXXCO] :: sin; moral offense; error, mistake; lapse, misdemeanor; transgression; wrong; + peccatus_M_N : N ; -- [XXXEO] :: sin; moral offense; error, mistake; lapse, misdemeanor; transgression; wrong; + pecco_V : V ; -- [XXXAO] :: |make mistake; make slip in speaking; act incorrectly; go wrong, be faulty; + pecorosus_A : A ; -- [XXXEC] :: rich in cattle; + pecten_M_N : N ; -- [XXXBO] :: comb; rake; quill (playing lyre); comb-like thing, pubic bone/region; scallop; + pecto_V2 : V2 ; -- [XXXDX] :: comb; card (wool, etc); + pectunculus_M_N : N ; -- [XAXFS] :: small scallop; + pectus_N_N : N ; -- [XBXAX] :: breast, heart; feeling, soul, mind; + pectusculum_N_N : N ; -- [DBXES] :: breast; (breast of sacrificial animal as offering); little breast; + pecu_N_N : N ; -- [XAXCO] :: herd, flock; cattle, sheep; farm animals (pl.); pastures (L+S); money; + pecuarium_N_N : N ; -- [XXXDX] :: herds of sheep or cattle (pl.); + pecuarius_A : A ; -- [XXXDX] :: of sheep or cattle; + pecuarius_M_N : N ; -- [XXXDX] :: cattle-breeder, grazier; farmers of the public pastures (pl.); + pecuinus_A : A ; -- [XXXFS] :: beast-like; of cattle; + peculator_M_N : N ; -- [XXXDX] :: embezzler of public money; + peculatus_M_N : N ; -- [XXXDX] :: embezzlement of public money or property; + peculiaris_A : A ; -- [XXXBO] :: personal/private/special/peculiar/specific, one's own; singular/exceptional; + peculiatus_A : A ; -- [XLXDS] :: furnished with money; provided with property; + peculiosus_A : A ; -- [XXXDS] :: wealthy; with private property; + peculium_N_N : N ; -- [XXXDX] :: small savings; private property; + pecunia_F_N : N ; -- [XLXAX] :: money; property; + pecuniarius_A : A ; -- [XXXEC] :: of money, pecuniary; + pecuniosus_A : A ; -- [XXXDX] :: rich, wealthy; profitable; + pecus_F_N : N ; -- [XXXAX] :: sheep; animal; + pecus_N_N : N ; -- [XXXAX] :: cattle, herd, flock; + pedale_N_N : N ; -- [GXXEK] :: pedal; + pedalis_A : A ; -- [XXXDX] :: measuring a foot; + pedamen_N_N : N ; -- [XAXEO] :: prop, stake; (for vines); + pedamentum_N_N : N ; -- [XAXDO] :: prop, stake; (for vines); + pedarius_A : A ; -- [XXXEC] :: of a foot; [senatores pedarii => senators of inferior rank]; + pedatura_F_N : N ; -- [XXXES] :: space/extent of a foot; prop of a vine; + pedatus_M_N : N ; -- [XXXFS] :: attack; charge; + pedeplanum_N_N : N ; -- [FXXEK] :: ground floor; + pedes_A : A ; -- [XXXDS] :: on foot; + pedes_M_N : N ; -- [XWXBO] :: foot soldier, infantryman; pedestrian, who goes on foot; infantry (pl.); + pedester_A : A ; -- [XXXBO] :: |pedestrian; prosaic, commonplace; prose-; + pedetemptim_Adv : Adv ; -- [XXXCO] :: step-by-step; feeling one's way; gradually, cautiously; + pedetemtim_Adv : Adv ; -- [XXXCO] :: step-by-step; feeling one's way; gradually, cautiously; + pedica_F_N : N ; -- [XXXDX] :: shackle, fetter; snare; + pedicator_M_N : N ; -- [XXXEO] :: sodomite; + pedico_V2 : V2 ; -- [XXXCO] :: perform anal intercourse; commit sodomy with; + pediculosus_A : A ; -- [XXXEC] :: lousy; + pediculus_M_N : N ; -- [XXXES] :: little foot; A:foot-stalk; + pedicura_F_N : N ; -- [GXXEK] :: podiatrist; + pedifollis_A : A ; -- [GXXEK] :: football-/soccer-, footballing; + pedifollis_M_N : N ; -- [GXXEK] :: football; + pedifollium_N_N : N ; -- [GXXEK] :: soccer; + pediseca_F_N : N ; -- [BXXCO] :: female attendant; waiting woman, waitress; handmaiden; + pedisecus_A : A ; -- [BXXES] :: that follows on foot; (like an attendant); follow on the heels of/immediately; + pedisecus_M_N : N ; -- [BXXCO] :: male attendant, manservant; follower on foot; footman, page; lackey; + pedisequa_F_N : N ; -- [XXXCO] :: female attendant; waiting woman, waitress; handmaiden; + pedisequus_A : A ; -- [XXXES] :: that follows on foot; (like an attendant); follow on the heels of/immediately; + pedisequus_M_N : N ; -- [XXXCO] :: male attendant, manservant; follower on foot; footman, page; lackey; + pedissequa_F_N : N ; -- [XXXES] :: female attendant; waiting woman, waitress; handmaiden; + pedissequus_A : A ; -- [XXXFS] :: that follows on foot; (like an attendant); follow on the heels of/immediately; + pedissequus_M_N : N ; -- [XXXES] :: male attendant, manservant; follower on foot; footman, page; lackey; + peditatus_M_N : N ; -- [XXXDX] :: infantry; + pedum_N_N : N ; -- [XXXDX] :: shepherd's crook; + pegma_N_N : N ; -- [XXXDO] :: bookcase; bookshelf; scaffold, movable platform, stage fixture; scaffolding; + peiorativus_A : A ; -- [GXXEK] :: pejorative; + peioresceo_V : V ; -- [GXXEK] :: get worse; + peioro_V : V ; -- [GXXEK] :: aggravate; + peiuro_V : V ; -- [XXXFS] :: swear falsely; perjure oneself; (see also peiero); + pejeratus_A : A ; -- [XXXDX] :: hurt/offended by false oath; (jus pejeratum => false oath); + pejero_V : V ; -- [XXXDX] :: swear falsely; swear false oath; lie; + pejerosus_A : A ; -- [XXXDX] :: perjured; + pejuratus_A : A ; -- [XXXDX] :: hurt/offended by false oath; (jus pejuratum => false oath); + pejuro_V : V ; -- [XXXDX] :: swear falsely; swear false oath; lie; + pejurosus_A : A ; -- [XXXDX] :: perjured; + pelagius_A : A ; -- [XXXDX] :: marine, of the sea; + pelagus_N_N : N ; -- [XXXAX] :: sea; the open sea, the main; (-us neuter, only sing.); + pelamis_F_N : N ; -- [XAXEO] :: young/small tunny; (less than one year old L+S); + pelamys_F_N : N ; -- [XAXEO] :: young/small tunny; (less than one year old L+S); + pelex_F_N : N ; -- [XXXBO] :: mistress (installed as rival/in addition to wife), concubine; male prostitute; + pelicatus_M_N : N ; -- [XXXDX] :: concubinage, living together; + pellacia_F_N : N ; -- [XXXDS] :: enticement; seduction; attraction; + pellax_A : A ; -- [XXXDX] :: seductive, glib; + pellectio_F_N : N ; -- [XXXFS] :: reading through; + pellego_V2 : V2 ; -- [XXXCO] :: read over/through (silent/aloud); scan, survey, run one's eyes over; recount; + pellex_F_N : N ; -- [XXXBO] :: mistress (installed as rival/in addition to wife), concubine; male prostitute; + pelliceus_A : A ; -- [XAXEO] :: skin-, made of skins; + pellicio_V2 : V2 ; -- [XXXCO] :: attract/draw away; allure/seduce/entice/captivate; coax/induce/wheedle/win over; + pellicius_A : A ; -- [XAXEO] :: skin-, made of skins/furs; + pellico_V2 : V2 ; -- [EXXFW] :: attract/draw away; allure/seduce/entice/captivate; coax/induce/wheedle/win over; + pellicula_F_N : N ; -- [XXXDX] :: skin, hide; + pellis_F_N : N ; -- [XXXDX] :: skin, hide; pelt; + pellitus_A : A ; -- [XXXDX] :: covered with skins; + pello_V2 : V2 ; -- [XXXAX] :: beat; drive out; push; banish, strike, defeat, drive away, rout; + pelluceeo_V : V ; -- [XXXBO] :: transmit/admit/emit light; be transparent; shine through/out; be apparent; + peloris_F_N : N ; -- [XAXDO] :: mussel; giant mussel (L+S); large edible shellfish; clam (Cal); + pelta_F_N : N ; -- [XXXDX] :: crescent-shaped shield; + peltasta_M_N : N ; -- [XXXEC] :: soldier armed with the pelta (small light shield); + peltastes_M_N : N ; -- [XXXEC] :: soldier armed with the pelta (small light shield); + peltatus_A : A ; -- [XXXDX] :: armed with the pelta (crescent-shaped shield); + pelusia_F_N : N ; -- [GXXEK] :: blouse; + pelvis_F_N : N ; -- [XXXDX] :: shallow bowl or basin; + pena_F_N : N ; -- [FXXCZ] :: penalty, punishment; revenge/retribution; [poena dare => to pay the penalty]; + penarius_A : A ; -- [XXXEC] :: of or for provisions; + penatiger_A : A ; -- [XEIEC] :: carrying the Penates; + pendeo_V : V ; -- [XXXBX] :: hang, hang down; depend; [~ ab ore => hang upon the lips, listen attentively]; + pendo_V2 : V2 ; -- [XLXAX] :: weigh out; pay, pay out; + pendulus_A : A ; -- [XXXDX] :: hanging, hanging down, uncertain; + pendulus_M_N : N ; -- [GXXEK] :: pendulum; 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 ; - penetrabilis_A : A ; - penetrale_N_N : N ; - penetralis_A : A ; - penetranter_Adv : Adv ; - penetratio_F_N : N ; - penetro_V : V ; - penicillinum_N_N : N ; - penicillus_M_N : N ; - peniculus_M_N : N ; - penis_M_N : N ; - penitentialis_A : A ; - penitentiarius_M_N : N ; - peniteo_V : V ; - penitet_V0 : V ; - penitrale_N_N : N ; - penitus_A : A ; - penitus_Adv : Adv ; - penna_F_N : N ; - pennatus_A : A ; - penniger_A : A ; - pennipes_A : A ; - pennipotens_A : A ; - pennipotens_F_N : N ; - pennula_F_N : N ; - pensilis_A : A ; - pensio_F_N : N ; - pensitatio_F_N : N ; - pensito_V2 : V2 ; - penso_V : V ; - pensum_N_N : N ; - pentachordum_N_N : N ; - pentachordus_A : A ; - pentacontarchus_M_N : N ; - pentameter_M_N : N ; - pente_N : N ; - pentecontarcus_M_N : N ; - penteris_F_N : N ; - pentral_N_N : N ; - pentrale_N_N : N ; - penuarius_A : A ; - penum_N_N : N ; - penuria_F_N : N ; - penuriosus_A : A ; + penecostas_2_N : N ; -- [EEXEP] :: fifty; the number fifty; (7 Sundays after Easter); (Jewish 50th day of omer); + penecoste_F_N : N ; -- [EEXEP] :: Pentecost/Whitsunday; (7th Sunday after Easter); 50 days; Jewish harvest feast; + penes_Acc_Prep : Prep ; -- [XXXDX] :: in the power of, in the hands of (person); belonging to; + penetentiarius_M_N : N ; -- [FEXEM] :: confessor; penitentiary; + penetrabilis_A : A ; -- [XXXDX] :: that can be pierced; penetrable; piercing; + penetrale_N_N : N ; -- [FXXFE] :: |innermost parts/chambers/self (pl.); spirit, life of soul; gimlet (Latham); + penetralis_A : A ; -- [XXXDX] :: inner, innermost; + penetranter_Adv : Adv ; -- [FXXEM] :: deeply, penetratingly, searchingly; + penetratio_F_N : N ; -- [EXXES] :: piercing; penetration; + penetro_V : V ; -- [XXXAX] :: enter, penetrate; + penicillinum_N_N : N ; -- [GXXEK] :: penicillin; + penicillus_M_N : N ; -- [XXXEC] :: painter's brush or pencil; style; + peniculus_M_N : N ; -- [XXXCO] :: brush (of ox/horse tail); painter's brush; sponge; diminutive of penis (L+S); + penis_M_N : N ; -- [XXXDX] :: male sexual organ, penis; (sometimes rude); a tail; + penitentialis_A : A ; -- [XEXFM] :: penitent; + penitentiarius_M_N : N ; -- [FEXEM] :: confessor; penitentiary; + peniteo_V : V ; -- [FEXEM] :: |do penance; + penitet_V0 : V ; -- [FXXEZ] :: it displeases, makes angry, offends, dissatisfies, makes sorry; + penitrale_N_N : N ; -- [FXXFE] :: innermost parts/chambers/self (pl.); spirit, life of soul; gimlet (Latham); + penitus_A : A ; -- [XXXBX] :: inner, inward; + penitus_Adv : Adv ; -- [XXXBX] :: inside; deep within; thoroughly; + penna_F_N : N ; -- [XXXBX] :: feather, wing; + pennatus_A : A ; -- [XXXDX] :: winged; + penniger_A : A ; -- [XXXEC] :: feathered, winged; + pennipes_A : A ; -- [XYXEC] :: wing-footed; + pennipotens_A : A ; -- [XXXEC] :: able to fly, winged; + pennipotens_F_N : N ; -- [XAXEC] :: birds (pl.); + pennula_F_N : N ; -- [XXXEC] :: little wing; + pensilis_A : A ; -- [XXXEZ] :: hanging, pendant (Collins); + pensio_F_N : N ; -- [XXXBO] :: payment, installment, pension; paying out; rent; measured weight; recompense; + pensitatio_F_N : N ; -- [XXXEO] :: payment/compensation; expense (L+S); valuable/precious thing; pension (Douay); + pensito_V2 : V2 ; -- [XXXCO] :: weigh/ponder/consider; compare (with); pay/be subject to tax; bring in income; + penso_V : V ; -- [XXXBX] :: weigh (out); pay/punish for; counterbalance, compensate; ponder, examine; + pensum_N_N : N ; -- [XXXCO] :: allotment for weaving, wool given to be spun/woven; task/stint; homework; + pentachordum_N_N : N ; -- [DDXFS] :: 5-stringed instrument; + pentachordus_A : A ; -- [DDXFS] :: 5-stringed (instrument); + pentacontarchus_M_N : N ; -- [EWXFS] :: pentacontarch, commander of fifty men; (platoon commander); + pentameter_M_N : N ; -- [XPXES] :: pentameter; five metric feet; + pente_N : N ; -- [FDXEZ] :: musical fifth; + pentecontarcus_M_N : N ; -- [EWXFW] :: pentacontarch, commander of fifty men; (platoon commander); (1 Maccabbes 3:55); + penteris_F_N : N ; -- [XWXFO] :: quinquereme, large galley with five rowers to each room or five banks of oars; + pentral_N_N : N ; -- [FXXFM] :: gimlet; innermost parts/chambers/self (pl.) (Ecc); spirit, life of soul; + pentrale_N_N : N ; -- [FXXFM] :: gimlet; innermost parts/chambers/self (pl.) (Ecc); spirit, life of soul; + penuarius_A : A ; -- [XXXEO] :: used for food storage; + penum_N_N : N ; -- [XXXDX] :: provisions, food; stock of household; storeroom in temple of Vesta; + penuria_F_N : N ; -- [XXXDX] :: want, need, scarcity; + penuriosus_A : A ; -- [FXXEM] :: needy; penurious, poor, poverty-stricken; 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 ; - peplus_M_N : N ; - pepo_M_N : N ; - pepon_M_N : N ; - pepsinum_N_N : N ; - per_Acc_Prep : Prep ; - pera_F_N : N ; - perabsurdus_A : A ; - peraccedo_V : V ; - peraccommodatus_A : A ; - peracer_A : A ; - peracerbus_A : A ; - peracesco_V : V ; - peractio_F_N : N ; - peracutus_A : A ; - peradulescens_A : A ; - peraeque_Adv : Adv ; - peraequo_V2 : V2 ; - peragito_V : V ; - perago_V2 : V2 ; - peragratio_F_N : N ; - peragro_V : V ; - peramans_A : A ; - perambulo_V : V ; - peramo_V : V ; - peramoenus_A : A ; - peramplus_A : A ; - perangustus_A : A ; - perantiquus_A : A ; - perappositus_A : A ; - perarduus_A : A ; - perargutus_A : A ; - peraridus_A : A ; - peraro_V : V ; - perattente_Adv : Adv ; - perattentus_A : A ; - perbacchor_V : V ; - perbeatus_A : A ; - perbene_Adv : Adv ; - perbenevolus_A : A ; - perbibo_V2 : V2 ; - perbito_V : V ; - perblandus_A : A ; - perbonus_A : A ; - perca_F_N : N ; - percalefactus_A : A ; - percalesco_V : V ; - percallesco_V2 : V2 ; - percarus_A : A ; - percautus_A : A ; - percelebro_V : V ; - perceler_A : A ; - percello_V2 : V2 ; - percenseo_V2 : V2 ; - perceptibilis_A : A ; - percido_V2 : V2 ; - percieo_V : V ; - percio_V2 : V2 ; - percipio_V2 : V2 ; - percitus_A : A ; - percomis_A : A ; - percommodus_A : A ; - percontatio_F_N : N ; - percontator_M_N : N ; - percontor_V : V ; - percontumax_A : A ; - 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_V2 : V2 ; - percursatio_F_N : N ; - percursio_F_N : N ; - percurso_V : V ; - percusio_F_N : N ; - percussio_F_N : N ; - percussor_M_N : N ; - percussus_M_N : N ; - percutio_V2 : V2 ; - percuto_V : V ; - perdecorus_A : A ; - perdelirus_A : A ; - perdepso_V2 : V2 ; - perdignus_A : A ; - perdiligens_A : A ; - perdisco_V2 : V2 ; - perdite_Adv : Adv ; - perditim_Adv : Adv ; - perditio_F_N : N ; - perditor_M_N : N ; - perditrix_F_N : N ; - perditus_A : A ; - perditus_M_N : N ; - perdiu_Adv : Adv ; - perdiuturnus_A : A ; - perdives_A : A ; + penus_M_N : N ; -- [XXXDX] :: provisions, food; stock of household; storeroom in temple of Vesta; + penus_N_N : N ; -- [XXXDX] :: provisions, food; stock of a household; storeroom in temple of Vesta; + peplum_N_N : N ; -- [XXXEC] :: robe of state; + peplus_M_N : N ; -- [XXXEC] :: robe of state; + pepo_M_N : N ; -- [XAXDS] :: watermelon; (other such/guard); species of large melon (L+S); pumpkin; + pepon_M_N : N ; -- [XAXNO] :: watermelon; (other such/guard); + pepsinum_N_N : N ; -- [GBXEK] :: pepsin; + per_Acc_Prep : Prep ; -- [XXXAX] :: through (space); during (time); by, by means of; + pera_F_N : N ; -- [XXXDO] :: satchel; bag slung over shoulder (for day's provisions); (affected by Cynics); + perabsurdus_A : A ; -- [XXXDX] :: highly ridiculous; + peraccedo_V : V ; -- [EXXEP] :: succeed in reaching; + peraccommodatus_A : A ; -- [XXXEC] :: very convenient; + peracer_A : A ; -- [XXXDX] :: very sharp; + peracerbus_A : A ; -- [XXXEC] :: very sour, very harsh; + peracesco_V : V ; -- [BXXES] :: become very bitter/sour; become vexed/upset; get teed off; + peractio_F_N : N ; -- [XXXDS] :: completion; D:last act (of drama); + peracutus_A : A ; -- [XXXDX] :: very penetrating; very sharp; + peradulescens_A : A ; -- [XXXFS] :: very young; + peraeque_Adv : Adv ; -- [XXXDX] :: equally; + peraequo_V2 : V2 ; -- [DXXDS] :: equalize; make quite equal; + peragito_V : V ; -- [XXXDX] :: harass with repeated attacks; + perago_V2 : V2 ; -- [XXXAX] :: disturb; finish; kill; carry through to the end, complete; + peragratio_F_N : N ; -- [XXXFS] :: traveling; + peragro_V : V ; -- [XXXDX] :: travel over every part of, scour; + peramans_A : A ; -- [XXXDS] :: very fond; very loving; + perambulo_V : V ; -- [XXXDX] :: walk about in, tour; make the round of; + peramo_V : V ; -- [FXXFM] :: persevere in love; + peramoenus_A : A ; -- [XXXEC] :: very pleasant; + peramplus_A : A ; -- [XXXEC] :: very large; + perangustus_A : A ; -- [XXXDX] :: very narrow; + perantiquus_A : A ; -- [XXXDX] :: very ancient; + perappositus_A : A ; -- [XXXEC] :: very suitable; + perarduus_A : A ; -- [XXXEC] :: very difficult; + perargutus_A : A ; -- [XXXEC] :: very wittily; + peraridus_A : A ; -- [DXXDS] :: very dry; very arid; + peraro_V : V ; -- [XXXDX] :: furrow; inscribe (scratch on a waxen tablet); + perattente_Adv : Adv ; -- [XXXEC] :: very attentively; + perattentus_A : A ; -- [XXXEC] :: very attentive; + perbacchor_V : V ; -- [XXXEO] :: get through; waste (time) in revelry; carouse/revel throughout (L+S); + perbeatus_A : A ; -- [XXXDX] :: very fortunate; + perbene_Adv : Adv ; -- [XXXDX] :: very well; + perbenevolus_A : A ; -- [XXXEC] :: very well-disposed; + perbibo_V2 : V2 ; -- [XXXDX] :: drink deeply, drink in; + perbito_V : V ; -- [XXXDS] :: perish; go over; + perblandus_A : A ; -- [XXXEC] :: very charming; + perbonus_A : A ; -- [XXXDX] :: very good, excellent; finished, complete; + perca_F_N : N ; -- [XXXEC] :: fish, the perch; + percalefactus_A : A ; -- [XXXEC] :: thoroughly heated; + percalesco_V : V ; -- [XXXDS] :: become very warm; + percallesco_V2 : V2 ; -- [XXXDX] :: become callous; + percarus_A : A ; -- [XXXDS] :: very dear; much loved; very costly; + percautus_A : A ; -- [XXXEC] :: very cautious; + percelebro_V : V ; -- [XXXDX] :: make thoroughly known; + perceler_A : A ; -- [XXXDS] :: very quick; + percello_V2 : V2 ; -- [XXXBX] :: strike down; strike; overpower; dismay, demoralize, upset; + percenseo_V2 : V2 ; -- [XXXCO] :: |run one's mind over, review; survey, make complete/methodical assessment of; + perceptibilis_A : A ; -- [DEXES] :: perceptible; participating (in anything); + percido_V2 : V2 ; -- [XXXDX] :: hit/punch very hard; commit sodomy on; cut down/to pieces (troops); + percieo_V : V ; -- [XXXDX] :: excite; set in motion; + percio_V2 : V2 ; -- [XXXDX] :: excite, stir up, move (emotions); set in motion, propel; + percipio_V2 : V2 ; -- [XXXAX] :: secure, gain; perceive, learn, feel; + percitus_A : A ; -- [XXXDS] :: roused; excited; stirred up; propelled; + percomis_A : A ; -- [XXXDS] :: very friendly/kind/courteous/gracious;; + percommodus_A : A ; -- [XXXDX] :: very convenient; + percontatio_F_N : N ; -- [XXXDX] :: questioning, inquiry; + percontator_M_N : N ; -- [XXXDS] :: inquirer; + percontor_V : V ; -- [XXXDX] :: inquire; + percontumax_A : A ; -- [XXXFS] :: very obstinate; + percoquo_V2 : V2 ; -- [XXXDX] :: cook thoroughly; bake, heat; + percrebesco_V2 : V2 ; -- [XXXDX] :: become very frequent, become very widespread; + percrebresco_V2 : V2 ; -- [XXXDX] :: become very frequent, become very widespread; + percrepo_V : V ; -- [XXXDS] :: resound; make resound; + percupidus_A : A ; -- [XXXEC] :: very fond; + percupio_V : V ; -- [BXXES] :: be very eager for, long for; desire greatly, wish wholeheartedly; + percuriosus_A : A ; -- [XXXEC] :: very inquisitive; + percuro_V2 : V2 ; -- [XXXDS] :: heal completely; + percurro_V2 : V2 ; -- [XXXAO] :: |||travel quickly from end to end; make rapid tour, visit in quick succession; + percursatio_F_N : N ; -- [XXXEC] :: traveling through; + percursio_F_N : N ; -- [XXXDS] :: running over; hasty thinking; + percurso_V : V ; -- [XXXDS] :: rove about; + percusio_F_N : N ; -- [XXXEO] :: rapid review, running over in the mind; rapid treatment of subject (rhetoric); + percussio_F_N : N ; -- [XXXDO] :: beat (music); percussion, action of beating/striking/smiting; + percussor_M_N : N ; -- [XXXDX] :: murderer, assassin; + percussus_M_N : N ; -- [XXXDX] :: buffeting; beating; + percutio_V2 : V2 ; -- [XXXAX] :: beat, strike; pierce; + percuto_V : V ; -- [FXXEN] :: affect deeply; + perdecorus_A : A ; -- [XXXEC] :: very comely; + perdelirus_A : A ; -- [XXXEC] :: senseless; + perdepso_V2 : V2 ; -- [XXXFD] :: dishonor; have improper sex; (rude); + perdignus_A : A ; -- [XXXEC] :: very worthy; + perdiligens_A : A ; -- [XXXDS] :: very diligent; + perdisco_V2 : V2 ; -- [XXXDX] :: learn thoroughly; + perdite_Adv : Adv ; -- [XXXEO] :: desperately, in desperate/unrestrained way; recklessly; violently; + perditim_Adv : Adv ; -- [XXXFO] :: desperately, to desperation; + perditio_F_N : N ; -- [DXXDS] :: destruction, ruin, perdition; + perditor_M_N : N ; -- [XXXEO] :: destroyer; one who ruins/destroys; + perditrix_F_N : N ; -- [DXXES] :: destroyer (female); she who ruins/destroys; + perditus_A : A ; -- [XXXBO] :: |degenerate, morally depraved, wild, abandoned; reckless; desperate/hopeless; + perditus_M_N : N ; -- [XXXFO] :: ruination, ruin; + perdiu_Adv : Adv ; -- [XXXEO] :: for a long while; + perdiuturnus_A : A ; -- [XXXEC] :: lasting a very long time; + perdives_A : A ; -- [XXXDS] :: very rich; perdix_F_N : N ; -- [XXXDX] :: partridge; - perdix_M_N : N ; - perdo_V2 : V2 ; - perdoceo_V2 : V2 ; - perdoco_V2 : V2 ; - perdoleo_V : V ; - perdolesco_V : V ; - perdolo_V2 : V2 ; - perdomo_V2 : V2 ; - perdormisco_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_1_V2 : V2 ; - peredo_2_V2 : V2 ; - peregre_Adv : Adv ; - peregri_Adv : Adv ; - peregrinabundus_A : A ; - peregrinans_M_N : N ; - peregrinatio_F_N : N ; - peregrinator_M_N : N ; - peregrinitas_F_N : N ; - peregrinor_V : V ; - peregrinus_A : A ; - peregrinus_C_N : N ; - peregrinus_M_N : N ; - perelegans_A : A ; - pereloquens_A : A ; - peremnium_N_N : N ; - perendie_Adv : Adv ; - perendinus_A : A ; - perennis_A : A ; - perenno_V : V ; - pereo_1_V : V ; - pereo_2_V : V ; - perequito_V : V ; - pererro_V : V ; - pereruditus_A : A ; - perexcelsus_A : A ; - perexiguus_A : A ; - perfacete_Adv : Adv ; - perfacetus_A : A ; - perfacile_Adv : Adv ; - perfacilis_A : A ; - perfamiliaris_A : A ; - perfamiliaris_M_N : N ; - perfectio_F_N : N ; - perfectissimatus_M_N : N ; - perfectissimus_M_N : N ; - perfectus_A : A ; - perfero_V : V ; - perficio_V2 : V2 ; - perfidia_F_N : N ; - perfidiosus_A : A ; - perfidus_A : A ; - perfigo_V2 : V2 ; - perfinio_V2 : V2 ; - perflabilis_A : A ; - perflagitiosus_A : A ; - perflo_V : V ; - perfluctuo_V2 : V2 ; - perfluo_V2 : V2 ; - perfodio_V2 : V2 ; - perforaculum_N_N : N ; - perforo_V2 : V2 ; - perfossor_M_N : N ; - perfremo_V : V ; - perfrequens_A : A ; - perfrico_V2 : V2 ; - perfrictio_F_N : N ; - perfrictiuncula_F_N : N ; - perfrigefacio_V2 : V2 ; - perfrigesco_V2 : V2 ; - perfrigidus_A : A ; - perfringo_V2 : V2 ; - perfruor_V : V ; - perfuga_M_N : N ; - perfugio_V2 : V2 ; - perfugium_N_N : N ; - perfunctorie_Adv : Adv ; - perfundo_V2 : V2 ; - perfungor_V : V ; - perfuro_V : V ; - pergamenicus_A : A ; - pergamenum_N_N : N ; - pergaudeo_V : V ; - pergo_V2 : V2 ; - pergraecor_V : V ; - pergrandis_A : A ; - pergraphicus_A : A ; - pergratus_A : A ; - pergravis_A : A ; - pergula_F_N : N ; - perhibeo_V : V ; - perhilum_N_N : N ; - perhonorifice_Adv : Adv ; - perhonorificus_A : A ; - perhorreo_V2 : V2 ; - perhorresco_V2 : V2 ; - perhorridus_A : A ; - perhumaniter_Adv : Adv ; - perhumanus_A : A ; - peribolus_M_N : N ; - periclitatio_F_N : N ; - periclitor_V : V ; - periclum_N_N : N ; - periculosus_A : A ; - periculum_N_N : N ; - peridoneus_A : A ; - periegesis_F_N : N ; - periegetes_M_N : N ; - periegeticus_A : A ; - perimbecillus_A : A ; - perimetros_F_N : N ; - perimo_V2 : V2 ; - perincommode_Adv : Adv ; - perincommodus_A : A ; - perinde_Adv : Adv ; - perindulgens_A : A ; - perinfirmus_A : A ; - peringeniosus_A : A ; - periniquus_A : A ; - perinvitus_A : A ; - periodicum_N_N : N ; - periodus_M_N : N ; - peripetasma_N_N : N ; - peripheria_F_N : N ; - periphrasis_F_N : N ; - periphrasticus_A : A ; - peripneumonicus_A : A ; - peripneumonicus_M_N : N ; - peripsema_N_N : N ; - peripsima_N_N : N ; - peripteros_A : A ; - periratus_A : A ; + perdix_M_N : N ; -- [XXXDX] :: partridge; + perdo_V2 : V2 ; -- [XXXAX] :: ruin, destroy; lose; waste; + perdoceo_V2 : V2 ; -- [XXXES] :: instruct thoroughly; + perdoco_V2 : V2 ; -- [XXXDX] :: teach (thoroughly); + perdoleo_V : V ; -- [XXXDO] :: vex, bother, cause grief/annoyance; grieve, be annoyed; + perdolesco_V : V ; -- [XXXDS] :: feel great pain; + perdolo_V2 : V2 ; -- [XXXFO] :: hack, hew into shape, fashion by hewing/hacking; + perdomo_V2 : V2 ; -- [XXXCO] :: |crush (grain)/knead (dough) thoroughly; work/break up (soil) thoroughly; + perdormisco_V : V ; -- [BXXFS] :: sleep on; + perduco_V2 : V2 ; -- [XXXBX] :: lead, guide; prolong; induce, conduct, bring through; + perducto_V2 : V2 ; -- [BXXES] :: guide; + perductor_M_N : N ; -- [XXXDS] :: guide; pimp; + perdudum_Adv : Adv ; -- [XXXFO] :: for a very long time past; long time ago; + perduellio_F_N : N ; -- [XXXCO] :: treason; hostile action against one's country; + perduellis_M_N : N ; -- [XXXDX] :: national enemy; enemy; adherent of country with which one's own is at war; + perduro_V : V ; -- [XXXEC] :: last long, endure; + peredo_V : V ; -- [XXXDX] :: eat up, consume, waste; + peredo_V2 : V2 ; -- [XXXDX] :: eat up, consume, waste; + peregre_Adv : Adv ; -- [XXXDX] :: to/from abroad; + peregri_Adv : Adv ; -- [XXXFS] :: abroad; away from home; + peregrinabundus_A : A ; -- [XXXEC] :: traveling about; + peregrinans_M_N : N ; -- [EEXDX] :: pilgrim; (foreign) traveler; wanderer; + peregrinatio_F_N : N ; -- [XXXCO] :: traveling/staying/living abroad, sojourn abroad; travel; pilgrimage; + peregrinator_M_N : N ; -- [XXXDS] :: traveler; + peregrinitas_F_N : N ; -- [DXXFS] :: alienage; foreign habit; foreign tone; + peregrinor_V : V ; -- [XXXDX] :: travel about, be an alien, sojourn in strange country, go abroad, wander, roam; + peregrinus_A : A ; -- [XXXBX] :: foreign, strange, alien; exotic; + peregrinus_C_N : N ; -- [XXXDX] :: foreigner, stranger, alien; foreign woman (F); foreign residents (pl.); + peregrinus_M_N : N ; -- [GXXEK] :: pilgrim; + perelegans_A : A ; -- [XXXDS] :: very elegant; very polished; + pereloquens_A : A ; -- [XXXDS] :: very eloquent; + peremnium_N_N : N ; -- [XEXEC] :: auspices taken on crossing any running water; + perendie_Adv : Adv ; -- [XXXEC] :: day after tomorrow; + perendinus_A : A ; -- [XXXDX] :: after tomorrow; [perendino die => the day after tomorrow]; + perennis_A : A ; -- [XXXBX] :: continual; everlasting, perpetual, perennial; eternal; + perenno_V : V ; -- [XXXEC] :: last many years; + pereo_1_V : V ; -- [XXXAX] :: die, pass away; be ruined, be destroyed; go to waste; + pereo_2_V : V ; -- [XXXAX] :: die, pass away; be ruined, be destroyed; go to waste; + perequito_V : V ; -- [XXXDX] :: ride through; ride around; + pererro_V : V ; -- [XXXDX] :: wander through, roam or ramble over; + pereruditus_A : A ; -- [XXXEC] :: very learned; + perexcelsus_A : A ; -- [XXXDS] :: very high; + perexiguus_A : A ; -- [XXXDX] :: very small; + perfacete_Adv : Adv ; -- [XXXEC] :: very cleverly, very wisely, brilliantly; + perfacetus_A : A ; -- [XXXEC] :: very witty, brilliant; + perfacile_Adv : Adv ; -- [XXXDX] :: very easily; readily; + perfacilis_A : A ; -- [XXXDX] :: very easy, very courteous; + perfamiliaris_A : A ; -- [XXXDS] :: very intimate; + perfamiliaris_M_N : N ; -- [XXXDS] :: close friend; + perfectio_F_N : N ; -- [XXXCO] :: perfection, completion; bringing to completion/perfection; ideal/completed form; + perfectissimatus_M_N : N ; -- [ELXES] :: emperor's office; office of perfectissimus; + perfectissimus_M_N : N ; -- [DLXFS] :: most-perfect man; + perfectus_A : A ; -- [XXXDX] :: perfect, complete; excellent; + perfero_V : V ; -- [XXXAX] :: carry through; bear, endure to the end, suffer; announce; + perficio_V2 : V2 ; -- [XXXAX] :: complete, finish; execute; bring about, accomplish; do thoroughly; + perfidia_F_N : N ; -- [XXXDX] :: faithlessness, treachery, perfidy; + perfidiosus_A : A ; -- [XXXDX] :: treacherous; + perfidus_A : A ; -- [XXXBX] :: faithless, treacherous, false, deceitful; + perfigo_V2 : V2 ; -- [XXXDO] :: pierce; transfix; pierce through (L+S); penetrate; impale; run/thrust through; + perfinio_V2 : V2 ; -- [FXXFM] :: complete; + perflabilis_A : A ; -- [XXXDS] :: airy; susceptible; can be blown over; + perflagitiosus_A : A ; -- [XXXEC] :: very shameful; + perflo_V : V ; -- [XXXDX] :: blow through or over; + perfluctuo_V2 : V2 ; -- [XPXFS] :: flow through; + perfluo_V2 : V2 ; -- [XXXDX] :: flow/run through; flow on/along; stream (with moisture); flow (drapery); + perfodio_V2 : V2 ; -- [XXXES] :: bore/dig/make hole/passage/channel/break in/through; dig/pierce/stab/perforate; + perforaculum_N_N : N ; -- [GTXEK] :: drilling machine; + perforo_V2 : V2 ; -- [XXXCO] :: bore/pierce/make a hole/passage/break in/through; bore/pierce/stab/perforate; + perfossor_M_N : N ; -- [XXXDS] :: digger through; one who breaks in; + perfremo_V : V ; -- [BXXFO] :: fill place with roaring/snorting sounds; snort/roar along; + perfrequens_A : A ; -- [XXXDS] :: very crowded/full; much frequented; + perfrico_V2 : V2 ; -- [XXXCO] :: rub all over; rub smooth; [~ os/frontem/facium => wipe off blush/abandon shame]; + perfrictio_F_N : N ; -- [XBXEO] :: chill, thorough chilling; bad cold (L+S); abrasion, rubbing; + perfrictiuncula_F_N : N ; -- [XBXFO] :: slight chill/cold; + perfrigefacio_V2 : V2 ; -- [XXXDS] :: make cold; cause to shudder; + perfrigesco_V2 : V2 ; -- [XXXDX] :: catch cold; + perfrigidus_A : A ; -- [XXXEC] :: very cold; + perfringo_V2 : V2 ; -- [XXXDX] :: break through; + perfruor_V : V ; -- [XXXDX] :: have full enjoyment of, enjoy; + perfuga_M_N : N ; -- [XXXDX] :: deserter; + perfugio_V2 : V2 ; -- [XXXDX] :: flee, desert; take refuge; + perfugium_N_N : N ; -- [XXXDX] :: refuge; asylum; excuse; + perfunctorie_Adv : Adv ; -- [XXXES] :: carelessly; perfunctorily; + perfundo_V2 : V2 ; -- [XXXBX] :: pour over/through, wet, flood, bathe; overspread, coat, overlay; imbue; + perfungor_V : V ; -- [XXXDX] :: perform, discharge, have done with (w/ABL); + perfuro_V : V ; -- [XXXDX] :: rage, storm (throughout); + pergamenicus_A : A ; -- [EXXEK] :: of parchment; + pergamenum_N_N : N ; -- [EXXDP] :: parchment; document; + pergaudeo_V : V ; -- [XXXDS] :: rejoice greatly; + pergo_V2 : V2 ; -- [XXXAX] :: go on, proceed; + pergraecor_V : V ; -- [XXXDS] :: enjoy oneself; behave like the Greeks; + pergrandis_A : A ; -- [XXXDX] :: very large, huge; of very advanced age; + pergraphicus_A : A ; -- [BXXES] :: very skillful; most exquisite; + pergratus_A : A ; -- [XXXDX] :: very agreeable or pleasant; + pergravis_A : A ; -- [XXXDS] :: very grave; of great import; very heavy; + pergula_F_N : N ; -- [XAXCS] :: |framework supporting a vine/plant; hut, hovel; school; lecture room; brothel; + perhibeo_V : V ; -- [XXXDX] :: present, give, bestow; regard, hold; name; + perhilum_N_N : N ; -- [XXXEC] :: very little; + perhonorifice_Adv : Adv ; -- [XXXEC] :: very honorably, very respectfully; + perhonorificus_A : A ; -- [XXXEC] :: very honorable, very respectful; + perhorreo_V2 : V2 ; -- [DXXDS] :: tremble at; + perhorresco_V2 : V2 ; -- [XXXDX] :: tremble or shudder greatly; recoil in terror from; + perhorridus_A : A ; -- [XXXEC] :: very dreadful; + perhumaniter_Adv : Adv ; -- [XXXEC] :: very civilly; + perhumanus_A : A ; -- [XXXEC] :: very friendly, very civil; + peribolus_M_N : N ; -- [EXXES] :: circuit; enclosure; precinct (Souter); outer wall (Vulgate Ezechiel 42:7); + periclitatio_F_N : N ; -- [XXXFS] :: test; experiment; + periclitor_V : V ; -- [XXXDX] :: try, prove, test, make a trial of, put to the test/in peril; risk, endanger; + periclum_N_N : N ; -- [XLXAO] :: danger, peril; trial, attempt; risk; responsibility for damage, liability; + periculosus_A : A ; -- [XXXBX] :: dangerous, hazardous, perilous; threatening; + periculum_N_N : N ; -- [XLXAO] :: danger, peril; trial, attempt; risk; responsibility for damage, liability; + peridoneus_A : A ; -- [XXXDX] :: very suitable, very well-fitted; + periegesis_F_N : N ; -- [GXXEK] :: tourism; + periegetes_M_N : N ; -- [GXXEK] :: tourist; + periegeticus_A : A ; -- [GXXEK] :: touristy; + perimbecillus_A : A ; -- [XXXEC] :: very weak; + perimetros_F_N : N ; -- [DSXES] :: perimeter; circumference; + perimo_V2 : V2 ; -- [XXXBX] :: kill, destroy; + perincommode_Adv : Adv ; -- [XXXEC] :: very inconveniently; + perincommodus_A : A ; -- [XXXEC] :: very inconvenient; + perinde_Adv : Adv ; -- [XXXDX] :: in the same way/just as, equally; likewise [~ ac => just as if]; + perindulgens_A : A ; -- [XXXDS] :: very kind; very tender; + perinfirmus_A : A ; -- [XXXEC] :: very weak; + peringeniosus_A : A ; -- [XXXEC] :: very clever; + periniquus_A : A ; -- [XXXEC] :: very unfair; very discontented or unwilling; + perinvitus_A : A ; -- [XXXEC] :: very unwilling; + periodicum_N_N : N ; -- [GXXEK] :: periodical, magazine; + periodus_M_N : N ; -- [XGXEC] :: sentence, period; + peripetasma_N_N : N ; -- [XXXEC] :: curtain, hanging; + peripheria_F_N : N ; -- [DXXFS] :: circumference; periphery; + periphrasis_F_N : N ; -- [DGXFS] :: circumlocution; periphrase; + periphrasticus_A : A ; -- [GXXEK] :: periphrastic; + peripneumonicus_A : A ; -- [XBXFS] :: consumptive; + peripneumonicus_M_N : N ; -- [XBXFS] :: consumptive; + peripsema_N_N : N ; -- [EXXES] :: refuse; filth; offscouring (that which comes off in cleaning); + peripsima_N_N : N ; -- [EXXEP] :: refuse; filth; offscouring (that which comes off in cleaning); + peripteros_A : A ; -- [XTXDO] :: having single row of columns all around; + periratus_A : A ; -- [XXXEC] :: very angry; periscelis_1_N : N ; -- [XXXEO] :: garter, anklet, leg-band; - periscelis_2_N : N ; - peristasis_F_N : N ; - peristereos_M_N : N ; + periscelis_2_N : N ; -- [XXXEO] :: garter, anklet, leg-band; + peristasis_F_N : N ; -- [DXXDS] :: subject; theme; + peristereos_M_N : N ; -- [XAXNO] :: plant doves are fond of, a verbena(?); 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 ; - peristylon_N_N : N ; - peristylum_N_N : N ; - peritia_F_N : N ; - peritonitis_F_N : N ; - peritus_A : A ; - periurium_N_N : N ; - perizoma_N_N : N ; - perjucundus_A : A ; - perjuro_V : V ; - perjurus_A : A ; - perlabor_V : V ; - perlaetus_A : A ; - perlateo_V : V ; - perlego_V2 : V2 ; - perlevis_A : A ; - perlibens_A : A ; - perliberalis_A : A ; - perlibet_V0 : V ; - perlibro_V2 : V2 ; - perlicio_V2 : V2 ; - perligo_V2 : V2 ; - perlito_V : V ; - perlonge_Adv : Adv ; - perlongus_A : A ; - perluceo_V : V ; - perlucidulus_A : A ; - perlucidus_A : A ; - perluctuosus_A : A ; - perluo_V2 : V2 ; - perlustro_V : V ; - permadesco_V : V ; - permagnus_A : A ; - permanasco_V : V ; - permaneo_V : V ; - permano_V : V ; - permarinus_A : A ; - permaturesco_V : V ; - permaturo_V : V ; - permediocris_A : A ; - permeo_V : V ; - permetior_V : V ; - permirus_A : A ; - permisceo_V : V ; - permissio_F_N : N ; - permissivus_A : A ; - permissus_M_N : N ; - permistus_A : A ; - permitialis_A : A ; - permities_F_N : N ; - permitto_V2 : V2 ; - permixtio_F_N : N ; - permixtus_A : A ; - permodestus_A : A ; - permoleste_Adv : Adv ; - permolestus_A : A ; - permoveo_V : V ; - permulceo_V : V ; - permultus_A : A ; - permunio_V2 : V2 ; - permutatio_F_N : N ; - permuto_V : V ; - perna_F_N : N ; - pernecessarius_A : A ; - pernego_V : V ; - perniciabilis_A : A ; - pernicies_F_N : N ; - perniciosus_A : A ; - pernicitas_F_N : N ; - pernimius_A : A ; - pernio_M_N : N ; - pernix_A : A ; - pernobilis_A : A ; - pernocto_V : V ; - pernosco_V2 : V2 ; - pernot_A : A ; - pernotesco_V : V ; - pernotesct_V0 : V ; - pernox_A : A ; - pernumero_V2 : V2 ; - pero_M_N : N ; - perobscurus_A : A ; - perodiosus_A : A ; - peroleo_V : V ; - peronatus_A : A ; - peropportunus_A : A ; - peroptato_Adv : Adv ; - peropus_Adv : Adv ; - peroratio_F_N : N ; - perornatus_A : A ; - perorno_V2 : V2 ; - peroro_V : V ; - perosus_A : A ; - perpaco_V : V ; - perparum_Adv : Adv ; - perparvulus_A : A ; - perparvus_A : A ; - perpastus_A : A ; - perpauculus_A : A ; - perpaucum_N_N : N ; - perpaucus_A : A ; - perpaullum_N_N : N ; - perpaulum_N_N : N ; - perpauper_A : A ; - perpauxillum_N_N : N ; - perpello_V2 : V2 ; - perpendiculariter_Adv : Adv ; - perpendiculum_N_N : N ; - perpendo_V2 : V2 ; - perpensius_Adv : Adv ; - perperam_Adv : Adv ; - perpes_A : A ; - perpetim_Adv : Adv ; - perpetior_V : V ; - perpetro_V : V ; - perpetualis_A : A ; - perpetualiter_Adv : Adv ; - perpetue_Adv : Adv ; - perpetuitas_F_N : N ; - perpetuo_Adv : Adv ; - perpetuus_A : A ; - perplexor_V : V ; - perplexus_A : A ; - perplicatus_A : A ; - perpluo_V : V ; - perpolio_V2 : V2 ; - perpopulor_V : V ; - perpotatio_F_N : N ; - perpotior_V : V ; - perpoto_V : V ; - perprimo_V2 : V2 ; - perpropinquus_A : A ; - perpropinquus_M_N : N ; - perpugnax_A : A ; - perpurgo_V2 : V2 ; - perpusillus_A : A ; - perquam_Adv : Adv ; - perquiro_V2 : V2 ; - perrarus_A : A ; - perreconditus_A : A ; - perrepo_V2 : V2 ; - perrepto_V : V ; - perridicule_Adv : Adv ; - perridiculus_A : A ; - perrogatio_F_N : N ; - perrogo_V2 : V2 ; - perrumpo_V2 : V2 ; - persaepe_Adv : Adv ; - persalse_Adv : Adv ; - persalsus_A : A ; - persalutatio_F_N : N ; - persaluto_V2 : V2 ; - persano_V2 : V2 ; - persapiens_A : A ; - perscienter_Adv : Adv ; - perscindo_V2 : V2 ; - perscitus_A : A ; - perscribo_V2 : V2 ; - perscriptio_F_N : N ; - perscriptor_M_N : N ; - perscrutor_V : V ; - perseco_V2 : V2 ; - persector_V : V ; - persecutio_F_N : N ; - persecutor_M_N : N ; - persedeo_V : V ; - persegnis_A : A ; - persentisco_V : V ; - persequor_V : V ; - perseverans_A : A ; - perseveranter_Adv : Adv ; - perseverantia_F_N : N ; - persevero_V : V ; - perseverus_A : A ; - persicinus_A : A ; - persicum_N_N : N ; - persido_V : V ; - persigno_V2 : V2 ; - persimilis_A : A ; - persimplex_A : A ; - persolata_F_N : N ; - persolus_A : A ; - persolvo_V2 : V2 ; - persona_F_N : N ; - personalis_A : A ; - personatus_A : A ; - personificatio_F_N : N ; - personifico_V : V ; - persono_V2 : V2 ; - perspectiva_F_N : N ; - perspecto_V2 : V2 ; - perspectus_A : A ; - perspeculor_V : V ; - perspergo_V2 : V2 ; - perspicace_Adv : Adv ; - perspicax_A : A ; - perspicibilis_A : A ; - perspicientia_F_N : N ; - perspicillum_N_N : N ; - perspicio_V2 : V2 ; - perspicue_Adv : Adv ; - perspicuus_A : A ; - persterno_V2 : V2 ; - perstimulo_V2 : V2 ; - persto_V : V ; - perstringo_V2 : V2 ; - perstudiose_Adv : Adv ; - perstudiosus_A : A ; - persuadeo_V : V ; - persuasibilis_A : A ; - persuasibiliter_Adv : Adv ; - persubtilis_A : A ; - persulto_V : V ; - pertaedet_V0 : V ; - pertego_V2 : V2 ; - pertempto_V : V ; - pertendo_V2 : V2 ; - pertento_V : V ; - pertenuis_A : A ; - perterebro_V2 : V2 ; - pertergo_V2 : V2 ; - perterrefacio_V2 : V2 ; - perterrefactus_A : A ; - perterreo_V2 : V2 ; - perterricrepus_A : A ; - perterrito_V2 : V2 ; - perterritus_A : A ; - pertexo_V2 : V2 ; - pertica_F_N : N ; - pertimefactus_A : A ; - pertimesco_V2 : V2 ; - pertinacia_F_N : N ; - pertinaciter_Adv : Adv ; - pertinax_A : A ; - pertineo_V : V ; - pertingo_V : V ; - pertito_Adv : Adv ; - pertitus_A : A ; - pertolero_V2 : V2 ; - pertorqueo_V2 : V2 ; - pertractatio_F_N : N ; - pertraho_V2 : V2 ; - pertranseo_V : V ; - pertricosus_A : A ; - pertristis_A : A ; - pertundiculum_N_N : N ; - pertundo_V2 : V2 ; - perturbatio_F_N : N ; - perturbatrix_F_N : N ; - perturbatus_A : A ; - perturbo_V : V ; - perturpis_A : A ; - pertusus_A : A ; - perula_F_N : N ; - perurbanus_A : A ; - perurgueo_V : V ; - peruro_V2 : V2 ; - pervado_V2 : V2 ; - pervagor_V : V ; - pervagus_A : A ; - pervasto_V : V ; - perveho_V2 : V2 ; - pervenio_V2 : V2 ; - pervenor_V : V ; - perversus_A : A ; - perverto_V2 : V2 ; - pervesperi_Adv : Adv ; - pervestigatio_F_N : N ; - pervestigo_V : V ; - pervetus_A : A ; - pervicacia_F_N : N ; - pervicax_A : A ; - pervideo_V : V ; - pervigeo_V : V ; - pervigil_A : A ; - pervigilatio_F_N : N ; - pervigilo_V : V ; - pervilis_A : A ; - pervinco_V2 : V2 ; - pervius_A : A ; - pervolgo_V2 : V2 ; - pervolito_V : V ; - pervolo_V : V ; - pervoluto_V : V ; - pervorsus_A : A ; - pervulgo_V : V ; - pes_M_N : N ; - pessimismus_M_N : N ; - pessimista_M_N : N ; - pessimo_V2 : V2 ; - pessimus_A : A ; - pessona_F_N : N ; - pessulus_M_N : N ; - pessum_Adv : Adv ; - pessumdo_V2 : V2 ; - pessumum_N_N : N ; - pessumus_A : A ; - pessundo_V2 : V2 ; - pestifer_A : A ; - pestilens_A : A ; - pestilentia_F_N : N ; - pestilentiosus_A : A ; - pestilitas_F_N : N ; - pestis_F_N : N ; - petasatus_A : A ; - petasio_M_N : N ; - petaso_M_N : N ; - petasunculus_M_N : N ; - petasus_M_N : N ; - petaurista_M_N : N ; - petaurum_N_N : N ; - petesso_V2 : V2 ; - petilus_A : A ; - petisso_V2 : V2 ; - petitio_F_N : N ; - petitor_M_N : N ; - petiturio_V : V ; - peto_V2 : V2 ; - petoritum_N_N : N ; - petorritum_N_N : N ; - petra_F_N : N ; - petro_M_N : N ; - petrochemicus_A : A ; - petroleifus_A : A ; - petroleum_N_N : N ; - petroselinum_N_N : N ; - petrosum_N_N : N ; - petrosus_A : A ; - petulans_A : A ; - petulanter_Adv : Adv ; - petulantia_F_N : N ; - petulcus_A : A ; - peucedanum_N_N : N ; - pexatus_A : A ; - phala_F_N : N ; - phalaecius_A : A ; - phalanga_F_N : N ; - phalangion_N_N : N ; - phalangita_M_N : N ; - phalangius_N_N : N ; - phalanx_F_N : N ; - phalarica_F_N : N ; - phalera_F_N : N ; - phaleratus_A : A ; - phantasia_F_N : N ; - phantasio_V2 : V2 ; - phantasior_V : V ; - phantasma_N_N : N ; - phantasmaticus_A : A ; - phantasticus_A : A ; - pharetra_F_N : N ; - pharetratus_A : A ; - pharetraus_A : A ; - pharmaceuticus_A : A ; - pharmaceutria_F_N : N ; - pharmacopola_M_N : N ; - pharmacopoles_M_N : N ; - pharmacopolium_N_N : N ; - pharmacus_M_N : N ; - phaselus_C_N : N ; - phaselus_M_N : N ; - phasma_N_N : N ; - pherecratus_A : A ; - phiala_F_N : N ; - phiditium_N_N : N ; - philargyria_F_N : N ; - philargyros_A : A ; - philatelia_F_N : N ; - philatelista_M_N : N ; - philautia_F_N : N ; - philema_N_N : N ; - philitium_N_N : N ; - philologia_F_N : N ; - philologus_A : A ; - philologus_M_N : N ; - philomela_F_N : N ; - philomusicus_M_N : N ; - philosophia_F_N : N ; - philosophice_Adv : Adv ; - philosophicus_A : A ; - philosophor_V : V ; - philosophus_A : A ; - philosophus_M_N : N ; - philtrum_N_N : N ; - philyra_F_N : N ; - phimus_M_N : N ; - phito_F_N : N ; - phitonissa_F_N : N ; - phlebotomo_V : V ; - phlegma_N_N : N ; - phloginos_M_N : N ; - phoca_F_N : N ; - phoenicopterus_M_N : N ; - phoenix_M_N : N ; - phonascus_M_N : N ; - phonetica_F_N : N ; - phoneticus_A : A ; - phonodiscus_M_N : N ; - photochartula_F_N : N ; - photocopia_F_N : N ; - photocopiatrum_N_N : N ; - photocopio_V : V ; - photoelectricus_A : A ; - photographema_N_N : N ; - photographia_F_N : N ; - photographicus_A : A ; - photographo_V : V ; - photographus_M_N : N ; - photomachina_F_N : N ; - phraseologia_F_N : N ; - phrenesis_F_N : N ; - phreneticus_A : A ; - phrenocomium_N_N : N ; - phthiriasis_F_N : N ; - phthisis_F_N : N ; - phthongus_M_N : N ; - phy_Interj : Interj ; - phycis_F_N : N ; - phycitis_F_N : N ; - phylaca_F_N : N ; - phylacterium_N_N : N ; - phylarches_M_N : N ; - phylarchia_F_N : N ; - phylarchus_M_N : N ; - phyle_F_N : N ; - phyleticus_A : A ; - physica_F_N : N ; - physice_Adv : Adv ; - physice_F_N : N ; - physicos_A : A ; - physiculo_V2 : V2 ; - physicum_N_N : N ; - physicus_A : A ; - physicus_M_N : N ; - physiognomon_M_N : N ; - physiologia_F_N : N ; - physiologus_M_N : N ; - physiotherapia_F_N : N ; - piacularis_A : A ; - piaculum_N_N : N ; - piamen_N_N : N ; - piamentum_N_N : N ; - pica_F_N : N ; - picaria_F_N : N ; - picea_F_N : N ; - piceus_A : A ; - pico_V : V ; - pictor_M_N : N ; - pictura_F_N : N ; - picturatus_A : A ; - pictus_A : A ; - picus_M_N : N ; - piens_A : A ; - pietas_F_N : N ; - piger_A : A ; - piget_V0 : V ; - pigmentarius_A : A ; - pigmentum_N_N : N ; - pigneraticius_A : A ; - pignero_V2 : V2 ; - pigneror_V : V ; - pignoro_V2 : V2 ; - pignoror_V : V ; - pignus_N_N : N ; - pigo_V : V ; - pigredo_F_N : N ; - pigresco_V : V ; - pigritia_F_N : N ; - pigrities_F_N : N ; - pigro_V : V ; - pigror_M_N : N ; - pigror_V : V ; - piisimus_A : A ; - pila_F_N : N ; - pilamalleator_M_N : N ; - pilamalleus_M_N : N ; - pilanus_M_N : N ; - pilatus_A : A ; - pilentum_N_N : N ; - pileum_N_N : N ; - pileus_M_N : N ; - pilleolum_N_N : N ; - pilleolus_M_N : N ; - pilleum_N_N : N ; - pilleus_M_N : N ; - pilo_V : V ; - pilosus_A : A ; - pilum_N_N : N ; - pilus_M_N : N ; - pimenta_F_N : N ; - pimpinella_F_N : N ; - pinacotheca_F_N : N ; - pinacothece_F_N : N ; - pinaster_M_N : N ; - pincerna_M_N : N ; - pindaricus_A : A ; - pinetum_N_N : N ; - pineus_A : A ; - pingo_V2 : V2 ; - pingue_N_N : N ; - pinguedo_F_N : N ; - pinguesco_V : V ; - pinguido_F_N : N ; - pinguis_A : A ; - pinguitudo_F_N : N ; - pinifer_A : A ; - piniger_A : A ; - pinna_F_N : N ; - pinnaculum_N_N : N ; - pinnatus_A : A ; - pinniculum_N_N : N ; - pinniger_A : A ; - pinnipes_A : A ; - pinnirapus_M_N : N ; - pinnula_F_N : N ; - pinoteres_M_N : N ; - pinso_V2 : V2 ; - pinus_F_N : N ; - pio_V : V ; - pipa_F_N : N ; - piper_M_N : N ; - piper_N_N : N ; - piperatorium_N_N : N ; - piperatum_N_N : N ; - piperatus_A : A ; - piperitus_A : A ; - pipetta_F_N : N ; - pipilo_V2 : V2 ; - pipio_V : V ; - pipulum_N_N : N ; - pipulus_M_N : N ; - pirata_M_N : N ; - piratica_F_N : N ; - piraticus_A : A ; - pirum_N_N : N ; - pirus_F_N : N ; - piscarius_A : A ; - piscarius_M_N : N ; - piscator_M_N : N ; - piscatorius_A : A ; - piscatus_M_N : N ; - piscicultura_F_N : N ; - pisciculus_M_N : N ; - piscina_F_N : N ; - piscinarius_M_N : N ; - piscis_M_N : N ; - piscor_V : V ; - piscosus_A : A ; - pisculentum_N_N : N ; - pisculentus_A : A ; - pisselaeon_N_N : N ; - pissoceros_M_N : N ; - pistaceus_A : A ; - pistacium_N_N : N ; - pisticus_A : A ; - pistillum_N_N : N ; - pistolium_N_N : N ; - pistor_M_N : N ; - pistrilla_F_N : N ; - pistrina_F_N : N ; - pistrinarius_M_N : N ; - pistrinensis_A : A ; - pistrinum_N_N : N ; - pistris_F_N : N ; - pistrix_F_N : N ; - pisum_N_N : N ; - pithecium_N_N : N ; - pitta_F_N : N ; - pittacium_N_N : N ; - pittaria_F_N : N ; - pituinus_A : A ; - pituita_F_N : N ; - pituitosus_A : A ; - pituitosus_M_N : N ; - pityocampa_F_N : N ; - pityocampe_F_N : N ; - pius_A : A ; - pius_M_N : N ; - pix_F_N : N ; + peristeron_2_N : N ; -- [XAXFO] :: enclosure for pigeons, pigeon coop; + peristerotrophion_N_N : N ; -- [XAXFO] :: enclosure for pigeons, pigeon coop; + peristroma_N_N : N ; -- [XXXEC] :: curtain, coverlet, carpet, hanging; + peristylium_N_N : N ; -- [XTXEO] :: inner courtyard lined with rows of columns, peristyle; + peristylon_N_N : N ; -- [XTXEO] :: inner courtyard lined with rows of columns, peristyle; + peristylum_N_N : N ; -- [XTXEO] :: inner courtyard lined with rows of columns, peristyle; + peritia_F_N : N ; -- [XXXDX] :: practical knowledge, skill, expertise; experience; + peritonitis_F_N : N ; -- [GBXEK] :: peritonitis; + peritus_A : A ; -- [XXXBX] :: skilled, skillful; experienced, expert; with gen; + periurium_N_N : N ; -- [XXXDX] :: false oath, perjury; + perizoma_N_N : N ; -- [DXXES] :: girdle; + perjucundus_A : A ; -- [XXXDX] :: very welcome, agreeable; + perjuro_V : V ; -- [XXXDX] :: swear falsely; + perjurus_A : A ; -- [XXXDX] :: perjured; false, lying; + perlabor_V : V ; -- [XXXDX] :: glide along, over or through, skim; + perlaetus_A : A ; -- [XXXEC] :: very joyful; + perlateo_V : V ; -- [XXXDS] :: lie well hidden; + perlego_V2 : V2 ; -- [XXXCO] :: read over/through (silent/aloud); scan, survey, run one's eyes over; recount; + perlevis_A : A ; -- [XXXDS] :: very slight; very light; + perlibens_A : A ; -- [XXXDS] :: very willing; with pleasure; + perliberalis_A : A ; -- [XXXDS] :: very well-bred; very honorable/gentlemanly; + perlibet_V0 : V ; -- [XXXDS] :: it is very pleasing/agreeable; please very much; + perlibro_V2 : V2 ; -- [DXXDS] :: make level; + perlicio_V2 : V2 ; -- [XXXCO] :: attract/draw away; allure/seduce/entice/captivate; coax/induce/wheedle/win over; + perligo_V2 : V2 ; -- [XXXIO] :: read over/through (silent/aloud); scan, survey, run one's eyes over; recount; + perlito_V : V ; -- [XXXDX] :: make auspicious sacrifice; + perlonge_Adv : Adv ; -- [XXXEC] :: very far; tediously; + perlongus_A : A ; -- [XXXEC] :: very long, tedious; + perluceo_V : V ; -- [XXXBO] :: transmit/admit/emit light; be transparent; shine through/out; be apparent; + perlucidulus_A : A ; -- [XXXEC] :: transparent; + perlucidus_A : A ; -- [XXXDX] :: transparent, pellucid; + perluctuosus_A : A ; -- [XXXEC] :: very mournful; + perluo_V2 : V2 ; -- [XXXDX] :: wash off or thoroughly, bathe; + perlustro_V : V ; -- [XXXDX] :: go or wander all through; view all over, scan, scrutinize; + permadesco_V : V ; -- [DXXDO] :: become very/quite wet/sodden; be soaked through; be soft/effeminate; + permagnus_A : A ; -- [XXXDX] :: very great; + permanasco_V : V ; -- [BXXFS] :: penetrate; + permaneo_V : V ; -- [XXXBX] :: last, continue; remain; endure; + permano_V : V ; -- [XXXDX] :: flow through; leak through; permeate; + permarinus_A : A ; -- [XXXEC] :: going over the sea; + permaturesco_V : V ; -- [XXXDX] :: mature, ripen thoroughly; + permaturo_V : V ; -- [DAXDS] :: become quite ripe; + permediocris_A : A ; -- [XXXDS] :: very moderate; + permeo_V : V ; -- [XXXDX] :: go or pass through, cross, traverse; pervade; + permetior_V : V ; -- [XXXCO] :: measure (exactly); traverse/travel over; pass through; complete (time/process); + permirus_A : A ; -- [XXXEC] :: very wonderful; + permisceo_V : V ; -- [XXXDX] :: mix or mingle together; confound; embroil; disturb thoroughly; + permissio_F_N : N ; -- [XXXES] :: yielding (to another); permission; + permissivus_A : A ; -- [GXXEK] :: permissive; + permissus_M_N : N ; -- [XXXDX] :: permission, authorization; + permistus_A : A ; -- [DXXDS] :: confused; disordered; (=permixtus, = alt. vpar of permisceo); + permitialis_A : A ; -- [XXXEC] :: destructive, annihilating; + permities_F_N : N ; -- [XXXEC] :: destruction, annihilation; + permitto_V2 : V2 ; -- [XXXAX] :: let through; let go through; relinquish; permit, allow; entrust; hurl; + permixtio_F_N : N ; -- [XXXEO] :: mixture/blending; thorough mixing together; + permixtus_A : A ; -- [XXXDS] :: promiscuous; confused; + permodestus_A : A ; -- [XXXEC] :: very modest, very moderate; + permoleste_Adv : Adv ; -- [XXXEC] :: with much difficulty; + permolestus_A : A ; -- [XXXEC] :: very troublesome; + permoveo_V : V ; -- [XXXDX] :: stir up; move deeply; influence; agitate; + permulceo_V : V ; -- [XXXDX] :: rub gently, stroke, touch gently; charm, please, beguile; soothe, alleviate; + permultus_A : A ; -- [XXXDX] :: very much; very many (pl.); + permunio_V2 : V2 ; -- [XXXDX] :: fortify thoroughly, make very secure; finish constructing fortifications; + permutatio_F_N : N ; -- [XXXDX] :: change, exchange; + permuto_V : V ; -- [XXXDX] :: exchange (for); swap; + perna_F_N : N ; -- [XXXEC] :: ham; + pernecessarius_A : A ; -- [XXXEC] :: very necessary; very intimate; + pernego_V : V ; -- [XXXDS] :: deny completely; refuse completely; + perniciabilis_A : A ; -- [XXXDS] :: ruinous; + pernicies_F_N : N ; -- [XXXDX] :: ruin; disaster; pest, bane; curse; destruction, calamity; mischief; + perniciosus_A : A ; -- [XXXDX] :: destructive, dangerous, pernicious; + pernicitas_F_N : N ; -- [XXXDX] :: speed, agility; + pernimius_A : A ; -- [XXXDS] :: much too much; + pernio_M_N : N ; -- [XXXNS] :: chilblain; + pernix_A : A ; -- [XXXDX] :: persistent, preserving; nimble, brisk, active, agile, quick, swift, fleet; + pernobilis_A : A ; -- [XXXDS] :: very famous; + pernocto_V : V ; -- [XXXCO] :: spend the night; occupy the night (w/person or in place); guard all night; + pernosco_V2 : V2 ; -- [XXXDO] :: get to know well; become well acquainted/conversant with; get full knowledge of; + pernot_A : A ; -- [XXXEO] :: very well known; very familiar;; + pernotesco_V : V ; -- [XXXDO] :: become generally/well/everywhere known; + pernotesct_V0 : V ; -- [XXXES] :: it has become well known; it has been thoroughly investigated; + pernox_A : A ; -- [XXXCO] :: lasting all night; continuing throughout the night; + pernumero_V2 : V2 ; -- [XXXDS] :: count up; reckon; + pero_M_N : N ; -- [XXXDX] :: thick boot of raw hide; + perobscurus_A : A ; -- [XXXDX] :: very obscure, very vague; + perodiosus_A : A ; -- [XXXEC] :: very troublesome; + peroleo_V : V ; -- [XXXDS] :: emit strong odor; + peronatus_A : A ; -- [XXXEC] :: wearing leather boots; + peropportunus_A : A ; -- [XXXDX] :: very favorably situated, very convenient; + peroptato_Adv : Adv ; -- [XXXEC] :: just as one would wish; + peropus_Adv : Adv ; -- [XXXDS] :: very necessary; + peroratio_F_N : N ; -- [XXXES] :: finish of speech; + perornatus_A : A ; -- [XXXEC] :: very ornate; + perorno_V2 : V2 ; -- [XXXDS] :: adorn highly/greatly; + peroro_V : V ; -- [XXXDX] :: deliver the final part of a speech, conclude; + perosus_A : A ; -- [XXXDS] :: detesting; + perpaco_V : V ; -- [XXXDX] :: subdue completely; + perparum_Adv : Adv ; -- [EXXES] :: very little; + perparvulus_A : A ; -- [XXXEC] :: very little; + perparvus_A : A ; -- [XXXDX] :: very little, very trifling; + perpastus_A : A ; -- [XXXDS] :: well-fed; + perpauculus_A : A ; -- [XXXEC] :: very few (pl.); + perpaucum_N_N : N ; -- [XXXDX] :: very few (pl.), very little; + perpaucus_A : A ; -- [XXXDX] :: very few (pl.); select; + perpaullum_N_N : N ; -- [XXXEC] :: very little; + perpaulum_N_N : N ; -- [XXXEC] :: very little; + perpauper_A : A ; -- [XXXFO] :: very poor; very hard up; + perpauxillum_N_N : N ; -- [XXXDS] :: very little (amount); + perpello_V2 : V2 ; -- [XXXDX] :: compel, constrain, prevail upon; enforce; + perpendiculariter_Adv : Adv ; -- [GXXEK] :: perpendicularly; + perpendiculum_N_N : N ; -- [XXXDX] :: plummet; plumbline; [ad perpendiculum => perpendicularly]; + perpendo_V2 : V2 ; -- [XXXDX] :: weigh carefully; assess carefully; + perpensius_Adv : Adv ; -- [FXXFM] :: more deliberately; + perperam_Adv : Adv ; -- [XXXDX] :: wrongly, incorrectly; + perpes_A : A ; -- [XXXCO] :: continuous, lasting, unbroken in time, perpetual, neverending; whole period; + perpetim_Adv : Adv ; -- [DXXES] :: |continually/unceasingly (Ecc); forever (Z); + perpetior_V : V ; -- [XXXDX] :: endure to the full; + perpetro_V : V ; -- [XXXDX] :: carry through, accomplish; + perpetualis_A : A ; -- [FXXEM] :: perpetual; + perpetualiter_Adv : Adv ; -- [FXXEM] :: perpetually; + perpetue_Adv : Adv ; -- [XXXEO] :: constantly, uninterruptedly, continually, without interruption/pause/let up; + perpetuitas_F_N : N ; -- [XXXDX] :: continuity; permanence; + perpetuo_Adv : Adv ; -- [XXXDX] :: without interruption; constantly; forever; continually; perpetual; + perpetuus_A : A ; -- [XXXAX] :: continuous, uninterpreted; whole; perpetual, lasting; everlasting; + perplexor_V : V ; -- [XXXEC] :: perplex; + perplexus_A : A ; -- [XXXDX] :: entangled, muddled; intricate, cryptic; confused; + perplicatus_A : A ; -- [XXXEC] :: entangled, involved; + perpluo_V : V ; -- [XXXDS] :: rain through; allow rain through; + perpolio_V2 : V2 ; -- [XXXDX] :: polish thoroughly; put the finishing touches to; + perpopulor_V : V ; -- [XXXDX] :: ravage, devastate completely; + perpotatio_F_N : N ; -- [XXXDS] :: drinking bout; + perpotior_V : V ; -- [ELXES] :: enjoy completely; + perpoto_V : V ; -- [XXXDX] :: drink heavily; drink up; + perprimo_V2 : V2 ; -- [XXXEC] :: press hard; + perpropinquus_A : A ; -- [XXXDX] :: very near; + perpropinquus_M_N : N ; -- [XXXDX] :: relative; + perpugnax_A : A ; -- [XXXDS] :: very pugnacious; + perpurgo_V2 : V2 ; -- [XXXDS] :: purge well; clear up; explain fully; + perpusillus_A : A ; -- [XXXEC] :: very small; + perquam_Adv : Adv ; -- [XXXDX] :: extremely; + perquiro_V2 : V2 ; -- [XXXDX] :: search everywhere for; + perrarus_A : A ; -- [XXXDX] :: very rare, exceptional; + perreconditus_A : A ; -- [XXXEC] :: very abstruse; + perrepo_V2 : V2 ; -- [XXXDS] :: crawl over; crawl along; + perrepto_V : V ; -- [XXXEC] :: crawl through, crawl about; + perridicule_Adv : Adv ; -- [XXXEC] :: very laughably; + perridiculus_A : A ; -- [XXXEC] :: very laughable; + perrogatio_F_N : N ; -- [XXXEO] :: poll, successive asking persons for opinion; L:passage of law (L+S); decree; + perrogo_V2 : V2 ; -- [XLXDO] :: ask/question/solicit in turn; L:propose/pass a law; carry (bill); + perrumpo_V2 : V2 ; -- [XXXDX] :: break through; + persaepe_Adv : Adv ; -- [XXXDX] :: very often; + persalse_Adv : Adv ; -- [XXXEC] :: very witty; + persalsus_A : A ; -- [XXXEC] :: very witty; + persalutatio_F_N : N ; -- [XXXEC] :: general greeting; + persaluto_V2 : V2 ; -- [XXXDS] :: salute/greet in turn; + persano_V2 : V2 ; -- [DBXDS] :: cure completely; + persapiens_A : A ; -- [XXXDS] :: very wise; + perscienter_Adv : Adv ; -- [XXXEC] :: very discreetly; + perscindo_V2 : V2 ; -- [XXXDS] :: tear apart; + perscitus_A : A ; -- [XXXEC] :: very clever; + perscribo_V2 : V2 ; -- [XXXDX] :: report; describe; write out in full; finish writing, write a detailed record; + perscriptio_F_N : N ; -- [XXXDS] :: entry; assignment; + perscriptor_M_N : N ; -- [XXXDS] :: scribe; writer; + perscrutor_V : V ; -- [XXXCO] :: search/look though; search high and low; study/investigate carefully; + perseco_V2 : V2 ; -- [XXXDS] :: dissect; cut up; + persector_V : V ; -- [XXXDO] :: pursue/follow closely/eagerly; follow up; investigate (question); + persecutio_F_N : N ; -- [FEXEF] :: |persecution (esp. of Christians); suffering (Bee); + persecutor_M_N : N ; -- [DXXCS] :: persecutor; (of Christians); prosecutor, plaintiff; + persedeo_V : V ; -- [XXXDS] :: remain sitting; stay seated; + persegnis_A : A ; -- [XXXDS] :: very slow; + persentisco_V : V ; -- [XXXEC] :: begin to perceive distinctly or feel deeply; + persequor_V : V ; -- [XXXBX] :: follow up, pursue; overtake; attack; take vengeance on; accomplish; + perseverans_A : A ; -- [XXXCO] :: steadfast, persistent, untiring; continually maintained, persistent (activity); + perseveranter_Adv : Adv ; -- [XXXCO] :: steadfastly, persistently; with continued action; + perseverantia_F_N : N ; -- [XXXCO] :: steadfastness; persistence (affliction); continued existence; + persevero_V : V ; -- [XXXBX] :: persist, persevere; continue; + perseverus_A : A ; -- [XXXEC] :: very strict; + persicinus_A : A ; -- [GXXEK] :: peach-colored; + persicum_N_N : N ; -- [FAXEK] :: peach; + persido_V : V ; -- [XPXDS] :: settle down; sink into; + persigno_V2 : V2 ; -- [XXXFS] :: note down; record; + persimilis_A : A ; -- [XXXDS] :: very like; very similar; + persimplex_A : A ; -- [XXXDS] :: very simple; very plain; + persolata_F_N : N ; -- [XAXFS] :: brown mullen plant (Pliny); + persolus_A : A ; -- [BXXFS] :: quite alone; + persolvo_V2 : V2 ; -- [XXXDX] :: pay; + persona_F_N : N ; -- [XXXAX] :: mask; character; personality; + personalis_A : A ; -- [XXXEO] :: personal; of/relating to an individual; + personatus_A : A ; -- [XXXDX] :: masked; + personificatio_F_N : N ; -- [GXXEK] :: personification; + personifico_V : V ; -- [GXXEK] :: personify; + persono_V2 : V2 ; -- [XXXBS] :: make loud/continuous/pervasive noise/loud music; ring/resound; chant/shout out; + perspectiva_F_N : N ; -- [GSXEK] :: perspective (geometry); + perspecto_V2 : V2 ; -- [XXXDS] :: look through to end; examine closely; + perspectus_A : A ; -- [XXXDS] :: evident; well-known; + perspeculor_V : V ; -- [XXXDS] :: reconnoiter; examine well; + perspergo_V2 : V2 ; -- [XXXEC] :: sprinkle, moisten; + perspicace_Adv : Adv ; -- [XXXFO] :: watchfully; observantly; + perspicax_A : A ; -- [XXXCO] :: observant, attentive to what is going on; having keen/penetrating sight/vision; + perspicibilis_A : A ; -- [XXXFO] :: clearly visible; + perspicientia_F_N : N ; -- [XXXDS] :: full knowledge; + perspicillum_N_N : N ; -- [GXXEK] :: spectacles; glasses; + perspicio_V2 : V2 ; -- [XXXBX] :: see through; examine; observe; + perspicue_Adv : Adv ; -- [XXXDX] :: clearly, evidently; + perspicuus_A : A ; -- [XXXDX] :: transparent, clear; evident; + persterno_V2 : V2 ; -- [XXXDS] :: pave all over; + perstimulo_V2 : V2 ; -- [XXXDS] :: stimulate violently; + persto_V : V ; -- [XXXDX] :: stand firm; last, endure; persevere, persist in; + perstringo_V2 : V2 ; -- [XXXDX] :: graze, graze against; make tight all over; offend, make unfavorable mention; + perstudiose_Adv : Adv ; -- [XXXEC] :: very eagerly; + perstudiosus_A : A ; -- [XXXEC] :: very eager; + persuadeo_V : V ; -- [XXXBX] :: persuade, convince (with dat.); + persuasibilis_A : A ; -- [XXXFO] :: persuasive, convincing; + persuasibiliter_Adv : Adv ; -- [XXXFO] :: persuasively, convincingly; + persubtilis_A : A ; -- [XXXDS] :: very subtle; very delicate; + persulto_V : V ; -- [XXXDX] :: leap or skip or prance about, range (over), scour; + pertaedet_V0 : V ; -- [XXXDX] :: it wearies; it disgusts; it bores; + pertego_V2 : V2 ; -- [BXXES] :: cover over; + pertempto_V : V ; -- [XXXDX] :: test, try out; explore thoroughly; agitate thoroughly; + pertendo_V2 : V2 ; -- [XXXDX] :: persevere, persist; press on; + pertento_V : V ; -- [XXXDX] :: test, try out; explore thoroughly; agitate thoroughly; + pertenuis_A : A ; -- [XXXDS] :: very thin; very slender; + perterebro_V2 : V2 ; -- [XXXDS] :: bore through; + pertergo_V2 : V2 ; -- [XXXDS] :: wipe over; touch lightly; + perterrefacio_V2 : V2 ; -- [XXXCO] :: make extremely frightened; terrify thoroughly; + perterrefactus_A : A ; -- [XXXDS] :: terribly/extremely frightened, thoroughly terrified; + perterreo_V2 : V2 ; -- [XXXBO] :: frighten greatly, terrify; + perterricrepus_A : A ; -- [XXXFO] :: making/characterized by terrifying crashing/clattering sound; rattling terribly; + perterrito_V2 : V2 ; -- [DXXFS] :: frighten thoroughly/greatly, terrify; + perterritus_A : A ; -- [DXXFS] :: very frightened, thoroughly frightened; completely terrified; + pertexo_V2 : V2 ; -- [XXXDS] :: accomplish; interweave; + pertica_F_N : N ; -- [XXXDX] :: pole, long staff; measuring rod; perch; + pertimefactus_A : A ; -- [XXXDS] :: very frightened; + pertimesco_V2 : V2 ; -- [XXXDX] :: become very scared (of ); + pertinacia_F_N : N ; -- [XXXBO] :: determination/perseverance; persistence; obstinacy, stubbornness, defiance; + pertinaciter_Adv : Adv ; -- [XXXCO] :: tenaciously; obstinately, stubbornly, determinedly; through thick and thin; + pertinax_A : A ; -- [XXXDX] :: persevering, obstinate; pertinacious; + pertineo_V : V ; -- [XXXAX] :: reach; extend; relate to; concerns, pertain to; + pertingo_V : V ; -- [XXXCO] :: reach, get as far as; extend (in a direction); concern, affect; + pertito_Adv : Adv ; -- [ESXDX] :: in X divisions (only with numerical prefix), in X parts/categories; + pertitus_A : A ; -- [ESXDX] :: divided in X parts (only with numerical prefix), divisible by X, X-fold; + pertolero_V2 : V2 ; -- [XXXDS] :: endure; + pertorqueo_V2 : V2 ; -- [XXXDS] :: distort; + pertractatio_F_N : N ; -- [XXXEC] :: thorough handling, detailed treatment; + pertraho_V2 : V2 ; -- [XXXDX] :: draw or drag through or to, bring or conduct forcibly to; draw on, lure; + pertranseo_V : V ; -- [XXXNO] :: pass right through; go/pass by (L+S); pass away; cross (Bee); + pertricosus_A : A ; -- [XXXDX] :: very confused; very strange; completely taken up with trifles; + pertristis_A : A ; -- [XXXDS] :: very sad; very morose; + pertundiculum_N_N : N ; -- [GXXEK] :: piercing; + pertundo_V2 : V2 ; -- [XXXDX] :: bore through, perforate; + perturbatio_F_N : N ; -- [XXXDX] :: disturbance; commotion; + perturbatrix_F_N : N ; -- [XXXDS] :: disturberess; she who disturbs; + perturbatus_A : A ; -- [XXXDS] :: troubled; + perturbo_V : V ; -- [XXXDX] :: confuse, throw into confusion; disturb, perturb, trouble; alarm; + perturpis_A : A ; -- [XXXDS] :: scandalous; + pertusus_A : A ; -- [XXXDS] :: perforated; leaky; + perula_F_N : N ; -- [FXXEK] :: purse; + perurbanus_A : A ; -- [XXXEC] :: very polite or witty; oversophisticated; + perurgueo_V : V ; -- [EXXEP] :: press hard on; oppress; take pains; (=perurgeo); + peruro_V2 : V2 ; -- [XXXBO] :: burn up/through, consume w/fire; fire (w/passion); burn/scorch; chafe/irritate; + pervado_V2 : V2 ; -- [XXXDX] :: go or come through; spread through; penetrate; pervade; + pervagor_V : V ; -- [XXXDX] :: wander or range through, rove about; pervade, spread widely; extend; + pervagus_A : A ; -- [XXXEC] :: wandering everywhere; + pervasto_V : V ; -- [XXXDX] :: devastate completely; + perveho_V2 : V2 ; -- [XXXDX] :: bear, carry or convey through; [pervehi, pass => to sail to, ride to]; + pervenio_V2 : V2 ; -- [XXXAX] :: come to; reach; arrive; + pervenor_V : V ; -- [BXXFS] :: chase through; + perversus_A : A ; -- [XXXDX] :: askew, awry; perverse, evil, bad; + perverto_V2 : V2 ; -- [XXXDX] :: overthrow; subvert; destroy, ruin, corrupt; + pervesperi_Adv : Adv ; -- [XXXEC] :: very late in the evening; + pervestigatio_F_N : N ; -- [XXXDS] :: investigation; + pervestigo_V : V ; -- [XXXDX] :: make a thorough search of; explore fully; + pervetus_A : A ; -- [XXXDX] :: very old, that lasted very long; most/extremely ancient, of far distant past; + pervicacia_F_N : N ; -- [XXXDX] :: stubbornness, obstinacy, firmness, steadiness; + pervicax_A : A ; -- [XXXDX] :: stubborn, obstinate; firm, steadfast; + pervideo_V : V ; -- [XXXDX] :: take in with the eyes or mind; + pervigeo_V : V ; -- [XXXDS] :: continue to bloom; + pervigil_A : A ; -- [XXXDX] :: keeping watch or sleepless all night long; always watchful; + pervigilatio_F_N : N ; -- [XXXDS] :: vigil; + pervigilo_V : V ; -- [XXXDX] :: remain awake all night; keep watch all night; keep a religious vigil; + pervilis_A : A ; -- [XXXDS] :: very cheap; + pervinco_V2 : V2 ; -- [XXXDX] :: conquer completely; carry (proposal), gain an objective, persuade; + pervius_A : A ; -- [XXXDX] :: passable, traversable; penetrable; + pervolgo_V2 : V2 ; -- [XXXDS] :: proclaim; spread abroad; (pervulo); + pervolito_V : V ; -- [XXXCO] :: flit across; fly repeatedly over/through; move rapidly through space/heavens; + pervolo_V : V ; -- [DXXDS] :: fly through; fly; + pervoluto_V : V ; -- [XXXDS] :: roll about; be busied with; + pervorsus_A : A ; -- [XXXDS] :: askew, awry; perverse, evil, bad; (perversus); + pervulgo_V : V ; -- [XXXDX] :: make publicly known, spread abroad; + pes_M_N : N ; -- [XBXAX] :: foot; [pedem referre => to retreat]; + pessimismus_M_N : N ; -- [GXXEK] :: pessimism; + pessimista_M_N : N ; -- [GXXEK] :: pessimist; + pessimo_V2 : V2 ; -- [EEXDS] :: ruin, debase; spoil completely, make utterly bad; harm, injure, bring calamity; + pessimus_A : A ; -- [XXXAO] :: worst, most incapable; wickedest; most disloyal/unkind; lowest in quality/rank; + pessona_F_N : N ; -- [FAXEM] :: pig-food; + pessulus_M_N : N ; -- [XXXEC] :: bolt; + pessum_Adv : Adv ; -- [XXXDX] :: to the lowest part, to the bottom, [~ dare => destroy, ruin]; + pessumdo_V2 : V2 ; -- [XXXCO] :: destroy, ruin; sink, send to the bottom; put an end to; do away with, remove; + pessumum_N_N : N ; -- [XXXES] :: pessary/medicated wool plug (for womb/vagina/other); suppository; contraceptive; + pessumus_A : A ; -- [XXXAO] :: worst, most incapable; wickedest; most disloyal/unkind; lowest in quality/rank; + pessundo_V2 : V2 ; -- [XXXCO] :: destroy, ruin; sink, send to the bottom; put an end to; do away with, remove; + pestifer_A : A ; -- [XXXDX] :: pestilential; destructive; + pestilens_A : A ; -- [XXXDX] :: pestilential, unhealthy, unwholesome; destructive; + pestilentia_F_N : N ; -- [XXXDX] :: plague; pestilence; fever; + pestilentiosus_A : A ; -- [DXXDS] :: pestilential; unhealthy; + pestilitas_F_N : N ; -- [XPXFS] :: plague; + pestis_F_N : N ; -- [XXXBX] :: plague, pestilence, curse, destruction; + petasatus_A : A ; -- [XXXEC] :: wearing the petasus/hat; (hence equipped for a journey); + petasio_M_N : N ; -- [XXXEC] :: forequarter/shoulder of pork; + petaso_M_N : N ; -- [XXXEC] :: forequarter/shoulder of pork; + petasunculus_M_N : N ; -- [XXXFS] :: small pork leg; traveling cap; + petasus_M_N : N ; -- [FXXEO] :: hat; broadbrimmed hat (worn by travelers); conical superstructure; + petaurista_M_N : N ; -- [FXXEK] :: acrobat; + petaurum_N_N : N ; -- [XXXEC] :: springboard; + petesso_V2 : V2 ; -- [XXXEC] :: long for, strive after; + petilus_A : A ; -- [BXXFS] :: thin; slender (archaic); + petisso_V2 : V2 ; -- [XXXEC] :: long for, strive after; + petitio_F_N : N ; -- [XXXDX] :: candidacy; petition; + petitor_M_N : N ; -- [XXXDX] :: seeker striver after, applicant, candidate, claimant, plaintiff; + petiturio_V : V ; -- [XLXEC] :: desire to stand for election; + peto_V2 : V2 ; -- [XXXAX] :: attack; aim at; desire; beg, entreat, ask (for); reach towards, make for; + petoritum_N_N : N ; -- [XXXEC] :: open four-wheeled carriage; + petorritum_N_N : N ; -- [XXXEC] :: open four-wheeled carriage; + petra_F_N : N ; -- [XXXCO] :: rock, boulder; shaped stone as used in building; + petro_M_N : N ; -- [XXXDX] :: young/breeding ram; a rustic, dolt, rube, bumpkin; + petrochemicus_A : A ; -- [GXXEK] :: petrochemical; + petroleifus_A : A ; -- [GXXEK] :: oil-bearing; + petroleum_N_N : N ; -- [GXXEK] :: oil; + petroselinum_N_N : N ; -- [XAXNS] :: rock-parsley; parsley (Cal); + petrosum_N_N : N ; -- [DXXES] :: rocky place; + petrosus_A : A ; -- [DXXES] :: rocky; + petulans_A : A ; -- [XXXCO] :: insolent, unruly, smart-alecky; forward, aggressive; impudent; reprobate/wanton; + petulanter_Adv : Adv ; -- [XXXDO] :: rudely, insolently; petulantly; waywardly; with impudently aggressiveness; + petulantia_F_N : N ; -- [XXXDX] :: impudent or boisterous aggressiveness; wantonness, immodesty; + petulcus_A : A ; -- [XXXDX] :: butting; + peucedanum_N_N : N ; -- [XAXES] :: sulfur-wort; + pexatus_A : A ; -- [XXXEC] :: wearing a garment with the nap on; + phala_F_N : N ; -- [XXXEC] :: wooden tower or pillar; + phalaecius_A : A ; -- [XPXFS] :: Phalaecian; kind of Greek verse; + phalanga_F_N : N ; -- [XXXDX] :: roller to move ships/military engines; carrying pole; cut length of wood/rod; + phalangion_N_N : N ; -- [XAXES] :: venomous spider; spider-root plant; + phalangita_M_N : N ; -- [XWHEC] :: soldiers (pl.) belonging to a phalanx; + phalangius_N_N : N ; -- [XAXES] :: venomous spider; spider-root plant; + phalanx_F_N : N ; -- [XXXDX] :: phalanx, compact body of heavy infantry; battalion; men in battle formation; + phalarica_F_N : N ; -- [XXXDX] :: heavy missile (orig. by siege tower catapult w/tow+pitch+fire); like hand spear; + phalera_F_N : N ; -- [XXXDX] :: ornaments (pl.) worn by men of arms and horses; + phaleratus_A : A ; -- [XXXEC] :: wearing phalerae/ornaments; + phantasia_F_N : N ; -- [ESXEP] :: phase; (of the moon); + phantasio_V2 : V2 ; -- [FXXEF] :: imagine, fancy; + phantasior_V : V ; -- [FXXFF] :: imagine, fancy; + phantasma_N_N : N ; -- [EEXDX] :: ghost; phantom; spirit; + phantasmaticus_A : A ; -- [EXXEP] :: imaginary; + phantasticus_A : A ; -- [FXXFM] :: imaginary; visionary; + pharetra_F_N : N ; -- [XXXBX] :: quiver; + pharetratus_A : A ; -- [XXXEC] :: wearing a quiver; + pharetraus_A : A ; -- [XXXDX] :: wearing a quiver; + pharmaceuticus_A : A ; -- [GXXEK] :: pharmaceutical; + pharmaceutria_F_N : N ; -- [XXXEC] :: sorceress; + pharmacopola_M_N : N ; -- [XBXDO] :: medicine/drug seller (usu. derogatory), quack; pharmacist (Cal); + pharmacopoles_M_N : N ; -- [XBXDO] :: medicine/drug seller (usu. derogatory), quack; pharmacist (Cal); + pharmacopolium_N_N : N ; -- [GXXEK] :: pharmacy; + pharmacus_M_N : N ; -- [DXXFS] :: poisoner; sorcerer; + phaselus_C_N : N ; -- [XXXDX] :: kidney-bean; light ship; + phaselus_M_N : N ; -- [GXXEK] :: snap bean; + phasma_N_N : N ; -- [XXXEC] :: ghost, specter; + pherecratus_A : A ; -- [XPXFS] :: Pherecratian; kind of Greek verse; + phiala_F_N : N ; -- [XXXEC] :: drinking vessel; a bowl, saucer; + phiditium_N_N : N ; -- [XXXFS] :: Spartan public meal; + philargyria_F_N : N ; -- [GXXET] :: love of money; (Erasmus); + philargyros_A : A ; -- [XXXFO] :: fond of money; + philatelia_F_N : N ; -- [GXXEK] :: philately; + philatelista_M_N : N ; -- [GXXEK] :: philatelist; + philautia_F_N : N ; -- [FXXFM] :: self-love; + philema_N_N : N ; -- [XXXFO] :: kiss; + philitium_N_N : N ; -- [XXXFS] :: Spartan public meal; + philologia_F_N : N ; -- [XXXEC] :: love of learning, study of literature; + philologus_A : A ; -- [XGXEC] :: learned, literary; + philologus_M_N : N ; -- [XGXEC] :: scholar; + philomela_F_N : N ; -- [XAXDX] :: nightingale; + philomusicus_M_N : N ; -- [GXXEK] :: music-lover; + philosophia_F_N : N ; -- [XSXBX] :: philosophy, love of wisdom; + philosophice_Adv : Adv ; -- [XSXFS] :: philosophically; + philosophicus_A : A ; -- [XSXDS] :: philosophical, philosophic; of/concerning philosophy; + philosophor_V : V ; -- [XSXDX] :: philosophize; + philosophus_A : A ; -- [XXXDS] :: philosophical; + philosophus_M_N : N ; -- [XSXAX] :: philosopher; + philtrum_N_N : N ; -- [XXXDX] :: love-potion; + philyra_F_N : N ; -- [XAXDX] :: linden-tree, lime-tree; + phimus_M_N : N ; -- [XXXEC] :: dice box; + phito_F_N : N ; -- [FEXFM] :: divination-spirit; + phitonissa_F_N : N ; -- [FEXFM] :: witch; sorceress; + phlebotomo_V : V ; -- [XXXES] :: let blood; bleed; + phlegma_N_N : N ; -- [FXXES] :: phlegm; + phloginos_M_N : N ; -- [XXXNS] :: flame-colored gem (otherwise unknown); + phoca_F_N : N ; -- [XAXCO] :: seal; (marine mammal); + phoenicopterus_M_N : N ; -- [XAXDO] :: flamingo; + phoenix_M_N : N ; -- [XAXCC] :: phoenix, a fabulous bird of Arabia; + phonascus_M_N : N ; -- [XGXEO] :: teacher of singing/music or elocution; + phonetica_F_N : N ; -- [GXXEK] :: phonetics; + phoneticus_A : A ; -- [GXXEK] :: phonetics; + phonodiscus_M_N : N ; -- [XDXEK] :: music disk; + photochartula_F_N : N ; -- [GXXEK] :: illustrated post card; + photocopia_F_N : N ; -- [HXXEK] :: photocopy; + photocopiatrum_N_N : N ; -- [HTXEK] :: photocopier; + photocopio_V : V ; -- [HXXEK] :: photocopy; + photoelectricus_A : A ; -- [HSXEK] :: photoelectric; + photographema_N_N : N ; -- [GXXEK] :: photograph (picture); + photographia_F_N : N ; -- [GXXEK] :: photograph (art); + photographicus_A : A ; -- [GXXEK] :: photographic; + photographo_V : V ; -- [GXXEK] :: photograph; + photographus_M_N : N ; -- [GXXEK] :: photographer; + photomachina_F_N : N ; -- [GTXEK] :: camera; + phraseologia_F_N : N ; -- [GXXEK] :: phraseology; + phrenesis_F_N : N ; -- [XXXEC] :: madness, frenzy; + phreneticus_A : A ; -- [XXXEC] :: mad, frantic; + phrenocomium_N_N : N ; -- [GXXEK] :: mad asylum; + phthiriasis_F_N : N ; -- [DBXNS] :: pthiriasis; louse-disease (Pliny); + phthisis_F_N : N ; -- [XXXEC] :: consumption; + phthongus_M_N : N ; -- [XDXFO] :: sound; tone; + phy_Interj : Interj ; -- [XXXFO] :: pish! tush!; (expression of disgust); + phycis_F_N : N ; -- [DAXNS] :: seaweed-dwelling fish (lamprey?); (Pliny); + phycitis_F_N : N ; -- [ASXNS] :: precious stone (Pliny); + phylaca_F_N : N ; -- [BXXFS] :: prison; + phylacterium_N_N : N ; -- [XXXDS] :: amulet; phylactery, scripture text in box on forehead of Jews; gladiator medal; + phylarches_M_N : N ; -- [EXHDW] :: head of a tribe/phyle (Greek), magistrate; emir; army/cavalry commander; + phylarchia_F_N : N ; -- [GXXEK] :: emirate; + phylarchus_M_N : N ; -- [EXHEC] :: head of a tribe/phyle (Greek), magistrate; emir; army/cavalry commander; + phyle_F_N : N ; -- [GXXEK] :: race; + phyleticus_A : A ; -- [GXXEK] :: racial; + physica_F_N : N ; -- [XSXDS] :: physics; + physice_Adv : Adv ; -- [XXXDX] :: from the scientific/natural science point of view; + physice_F_N : N ; -- [XSXDS] :: physics; + physicos_A : A ; -- [XXXDO] :: pertaining/relating to physics/natural science/physical nature; natural, inborn; + physiculo_V2 : V2 ; -- [FXXEV] :: prophesy, foresee, divine; + physicum_N_N : N ; -- [XXXCO] :: physics (pl.), natural science; + physicus_A : A ; -- [XXXCO] :: pertaining/relating to physics/natural science/physical nature; natural, inborn; + physicus_M_N : N ; -- [XXXCO] :: physicist, natural philosopher; natural scientist; + physiognomon_M_N : N ; -- [XBXEC] :: physiognomist, one who reads character/foretells destiny from the face; + physiologia_F_N : N ; -- [XXXEC] :: natural science; physiology (Cal); + physiologus_M_N : N ; -- [FSXEM] :: chemist; natural science (Nelson); + physiotherapia_F_N : N ; -- [GBXEK] :: physiotherapy; + piacularis_A : A ; -- [XXXDX] :: atoning, expiatory; + piaculum_N_N : N ; -- [XXXDX] :: expiatory offering or rite; sin; crime; + piamen_N_N : N ; -- [XXXDX] :: atonement; + piamentum_N_N : N ; -- [XEXFS] :: atoning sacrifice; + pica_F_N : N ; -- [XXXDX] :: magpie; jay; + picaria_F_N : N ; -- [XXXEC] :: place where pitch is made; + picea_F_N : N ; -- [XXXDX] :: spruce; + piceus_A : A ; -- [XXXDX] :: pitch black; + pico_V : V ; -- [XXXEC] :: smear with pitch; + pictor_M_N : N ; -- [XXXDX] :: painter; + pictura_F_N : N ; -- [XXXBX] :: painting, picture; + picturatus_A : A ; -- [XXXDX] :: decorated with color; + pictus_A : A ; -- [XXXCO] :: painted; colored; decorated, embroidered in color (fabrics); + picus_M_N : N ; -- [XXXEC] :: woodpecker; + piens_A : A ; -- [XXXIS] :: dutiful; conscientious; affectionate, tender; pious, patriotic; holy, godly; + pietas_F_N : N ; -- [XXXAX] :: responsibility, sense of duty; loyalty; tenderness, goodness; pity; piety (Bee); + piger_A : A ; -- [XXXBX] :: lazy, slow, dull; + piget_V0 : V ; -- [XXXDX] :: it disgusts, irks, pains, chagrins, afflicts, grieves; + pigmentarius_A : A ; -- [XXXEC] :: seller of paints and unguents; + pigmentum_N_N : N ; -- [XXXCO] :: coloring/dye/pigment/tint/paint; ingredient; drug; sauce (Bee); (wine w/)spices; + pigneraticius_A : A ; -- [XLXCO] :: of/concerned with pledge/mortgage; pledged/mortgaged (property); + pignero_V2 : V2 ; -- [XXXCO] :: pledge, pawn, give a pledge; bind/engage; guarantee/assure; + pigneror_V : V ; -- [XXXEO] :: appropriate; assert one's claim to; make certain, assure; guarantee, pledge; + pignoro_V2 : V2 ; -- [XXXDO] :: pledge, pawn, give a pledge; bind/engage; guarantee/assure; + pignoror_V : V ; -- [XXXFO] :: appropriate; assert one's claim to; make certain, assure; guarantee, pledge; + pignus_N_N : N ; -- [XXXBX] :: pledge (security for debt), hostage, mortgage; bet, stake; symbol; relict; + pigo_V : V ; -- [EXXFW] :: be weakened (Douay); + pigredo_F_N : N ; -- [EXXFS] :: slothfulness, indolence; + pigresco_V : V ; -- [XXXES] :: become slow; + pigritia_F_N : N ; -- [XXXDX] :: sloth, sluggishness, laziness, indolence; + pigrities_F_N : N ; -- [XXXDX] :: sloth, sluggishness, laziness, indolence; + pigro_V : V ; -- [XXXDO] :: hesitate; hang back; + pigror_M_N : N ; -- [XXXFO] :: sluggishness; hesitation; + pigror_V : V ; -- [XXXFO] :: hesitate; hang back; + piisimus_A : A ; -- [XXXES] :: conscientious; affectionate/tender; most pious/holy/godly; patriotic/dutiful; + pila_F_N : N ; -- [XXXCO] :: squared pillar; pier, pile; low pillar monument; funerary monument w/cavity; + pilamalleator_M_N : N ; -- [GXXEK] :: golfer; + pilamalleus_M_N : N ; -- [GXXEK] :: golf; + pilanus_M_N : N ; -- [XXXDX] :: soldier of the third rank; + pilatus_A : A ; -- [XWXFS] :: javelin-armed; + pilentum_N_N : N ; -- [XXXDX] :: luxurious carriage used by women; + pileum_N_N : N ; -- [XXXCO] :: felt cap (worn at Saturnalia/by manumited slaves); freedom/liberty; beret; + pileus_M_N : N ; -- [XXXCO] :: felt cap (worn at Saturnalia/by manumited slaves); freedom/liberty; beret; + pilleolum_N_N : N ; -- [XXXDS] :: skull-cap; + pilleolus_M_N : N ; -- [XXXDS] :: skull-cap; + pilleum_N_N : N ; -- [XXXCO] :: felt cap (worn at Saturnalia/by manumited slaves); freedom/liberty; beret; + pilleus_M_N : N ; -- [XXXCO] :: felt cap (worn at Saturnalia/by manumited slaves); freedom/liberty; beret; + pilo_V : V ; -- [XXXFS] :: grow hairy; depilate; plunder; + pilosus_A : A ; -- [XXXCO] :: hairy, shaggy, covered with hair; uncouth; + pilum_N_N : N ; -- [XXXDO] :: pestle, pounding tool; [~ graecum => mechanical pounder]; + pilus_M_N : N ; -- [XXXCO] :: hair; bit/whit (thing of minimal size/value); hair shirt/garment (pl.) (L+S); + pimenta_F_N : N ; -- [GXXEK] :: pimento; + pimpinella_F_N : N ; -- [GXXEK] :: burnet; pimpernel; + pinacotheca_F_N : N ; -- [XDXDO] :: picture gallery; + pinacothece_F_N : N ; -- [XDXDO] :: picture gallery; + pinaster_M_N : N ; -- [DSXNS] :: wild pine (Pliny); + pincerna_M_N : N ; -- [EXXCS] :: cupbearer, butler, one who mixes drinks/serves wine; bartender; sommelier; + pindaricus_A : A ; -- [XPXFS] :: Pindaric; kind of Greek verse; + pinetum_N_N : N ; -- [XXXDX] :: pine-wood; + pineus_A : A ; -- [XXXDX] :: of the pine, covered in pines; + pingo_V2 : V2 ; -- [XXXAO] :: |decorate/embellish; depict in embroidery; [acu ~ => embroidery, needle-work]; + pingue_N_N : N ; -- [XXXDS] :: grease; + pinguedo_F_N : N ; -- [XXXCS] :: fat/fatness; oiliness; richness/abundance (L+S); fullness; exuberance (Def); + pinguesco_V : V ; -- [XXXDX] :: grow fat; become strong or fertile; + pinguido_F_N : N ; -- [XXXCW] :: fat/fatness; oiliness; richness/abundance (L+S); fullness; exuberance (Def); + pinguis_A : A ; -- [XXXAX] :: fat; rich, fertile; thick; dull, stupid; + pinguitudo_F_N : N ; -- [XXXES] :: fatness; richness; G:broadness; + pinifer_A : A ; -- [XXXDX] :: covered with/bearing/carrying/producing pine/fir trees; + piniger_A : A ; -- [XXXDX] :: covered with/bearing pine/fir trees/foliage; + pinna_F_N : N ; -- [EBXFP] :: lobe (of the liver/lung); + pinnaculum_N_N : N ; -- [EAXEP] :: small/little/puny wing; (Vulgate 4 Ezra 11); little fin; + pinnatus_A : A ; -- [XXXEC] :: feathered, winged; + pinniculum_N_N : N ; -- [FXXFM] :: quill pen (small); + pinniger_A : A ; -- [XXXDX] :: winged; finny; + pinnipes_A : A ; -- [XXXDX] :: wing-footed (Collins); + pinnirapus_M_N : N ; -- [XXXEC] :: crestsnatcher, a kind of gladiator; + pinnula_F_N : N ; -- [XAXDO] :: small/little wing/feather; little fin; skirt (of garment) (Souter); + pinoteres_M_N : N ; -- [XAXDS] :: hermit crab; + pinso_V2 : V2 ; -- [XXXEC] :: stamp, pound, crush + pinus_F_N : N ; -- [XXXDX] :: pine/fir tree/wood/foliage; ship/mast/oar; pinewood torch; + pio_V : V ; -- [XXXDX] :: appease, propitiate; cleanse, expiate; + pipa_F_N : N ; -- [GXXEK] :: pipe; + piper_M_N : N ; -- [XAXEC] :: pepper; + piper_N_N : N ; -- [FXXEK] :: pepper; + piperatorium_N_N : N ; -- [FXXEK] :: pepper pot; + piperatum_N_N : N ; -- [FXXEK] :: pepper sauce; + piperatus_A : A ; -- [XAXES] :: peppered; peppery; sharp; + piperitus_A : A ; -- [GXXEK] :: peppered; + pipetta_F_N : N ; -- [GTXEK] :: pipette; + pipilo_V2 : V2 ; -- [XXXEC] :: twitter, chirp; + pipio_V : V ; -- [XXXDX] :: chirp, pipe; + pipulum_N_N : N ; -- [XXXEC] :: outcry; + pipulus_M_N : N ; -- [XXXEC] :: outcry; + pirata_M_N : N ; -- [XXXDX] :: pirate; + piratica_F_N : N ; -- [XWXDS] :: piracy; + piraticus_A : A ; -- [XXXDX] :: piratical; + pirum_N_N : N ; -- [XXXDX] :: pear; + pirus_F_N : N ; -- [XXXDX] :: pear-tree; + piscarius_A : A ; -- [XAXDS] :: fish-; fishing-; + piscarius_M_N : N ; -- [XXXES] :: fishmonger; + piscator_M_N : N ; -- [XXXDX] :: fisherman; + piscatorius_A : A ; -- [XXXDX] :: of or for fishing; + piscatus_M_N : N ; -- [XAXDS] :: fishing; fish; catch of fish; + piscicultura_F_N : N ; -- [GXXEK] :: pisciculture, raising/breeding of fish artificially, fish farming; + pisciculus_M_N : N ; -- [XXXDX] :: little fish; + piscina_F_N : N ; -- [XXXDX] :: pool; fishpond; swiming pool, spa; tank, vat, basin; + piscinarius_M_N : N ; -- [XXXEC] :: one fond of fish ponds; + piscis_M_N : N ; -- [XAXAX] :: fish; + piscor_V : V ; -- [XXXDX] :: fish; + piscosus_A : A ; -- [XXXDX] :: teeming with fish; + pisculentum_N_N : N ; -- [XBXFS] :: fish remedy; remedy made from fish; + pisculentus_A : A ; -- [XXXDS] :: full-of-fish; + pisselaeon_N_N : N ; -- [DAXNS] :: cedar-resin oil (Pliny); + pissoceros_M_N : N ; -- [DAXNS] :: pitch-wax (Pliny); + pistaceus_A : A ; -- [GXXEK] :: pistachio-colored; + pistacium_N_N : N ; -- [GXXEK] :: pistachio; + pisticus_A : A ; -- [EXXES] :: pure; genuine; + pistillum_N_N : N ; -- [XXXEC] :: pestle; + pistolium_N_N : N ; -- [GXXEK] :: gun; + pistor_M_N : N ; -- [XAXCO] :: pounder of far (emmer wheat); miller/baker; + pistrilla_F_N : N ; -- [XXXES] :: little mortar; + pistrina_F_N : N ; -- [XXXEO] :: mill/bakery; + pistrinarius_M_N : N ; -- [XAXEO] :: owner of a pistrium (mill/bakery); + pistrinensis_A : A ; -- [XAXFO] :: of/belonging to/kept in a pistrinum (mill/bakery); + pistrinum_N_N : N ; -- [XXXCO] :: mill/bakery; (as a place of punishment of slaves or of drudgery); + pistris_F_N : N ; -- [XAXCO] :: sea monster; whale; sawfish; light oared vessel; + pistrix_F_N : N ; -- [XAXCO] :: sea monster; whale; sawfish; light oared vessel; + pisum_N_N : N ; -- [FXXEK] :: pea; + pithecium_N_N : N ; -- [XAXFS] :: little ape; antirrhinon plant, antirrhinum, calf's-snout/mouth, snapdragon; + pitta_F_N : N ; -- [GXXEK] :: pizza; + pittacium_N_N : N ; -- [XXXDO] :: small piece of cloth; label, ticket; + pittaria_F_N : N ; -- [GXXEK] :: pizzeria; + pituinus_A : A ; -- [XAXFS] :: pine-; from pines; + pituita_F_N : N ; -- [XBXCO] :: mucus, catarrh, phlegm; pip, disease of poultry; morbid/viscous discharge; + pituitosus_A : A ; -- [XBXEO] :: suffering from catarrh, rheumy; full of phlegm; + pituitosus_M_N : N ; -- [XBXFO] :: person suffering from catarrh/rheumy/full of phlegm; + pityocampa_F_N : N ; -- [DAXNS] :: pine-grub (Pliny); + pityocampe_F_N : N ; -- [DAXNS] :: pine-grub (Pliny); + pius_A : A ; -- [XXXAO] :: |affectionate, tender, devoted, loyal (to family); pious, devout; holy, godly; + pius_M_N : N ; -- [XEXDS] :: blessed dead; + pix_F_N : N ; -- [XXXDX] :: pitch, tar; 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 ; - placamen_N_N : N ; - placamentum_N_N : N ; - placatus_A : A ; - placenta_F_N : N ; - placeo_V2 : V2 ; - placet_V0 : V ; - placide_Adv : Adv ; - placidus_A : A ; - placito_V : V ; - placitum_N_N : N ; - placitus_A : A ; - placius_M_N : N ; - placo_V : V ; - placza_F_N : N ; - plaga_F_N : N ; - plagalis_A : A ; - plagatus_A : A ; - plagiarius_M_N : N ; - plagigerulus_A : A ; - plago_V : V ; - plagosus_A : A ; - plagula_F_N : N ; - planctus_M_N : N ; - plancus_M_N : N ; - plane_Adv : Adv ; - planes_M_N : N ; - planeta_M_N : N ; - plango_V2 : V2 ; - plangor_M_N : N ; - planipes_M_N : N ; - planitas_F_N : N ; - planitia_F_N : N ; - planities_F_N : N ; - planta_F_N : N ; - plantago_F_N : N ; - plantar_N_N : N ; - plantaris_A : A ; - plantarium_N_N : N ; - plantatio_F_N : N ; - planto_V2 : V2 ; - planum_N_N : N ; - planus_A : A ; - plas_Adv : Adv ; - plascisco_V2 : V2 ; - plasma_N_N : N ; - plasmatio_F_N : N ; - plasmator_M_N : N ; - plasmo_V2 : V2 ; - plastes_M_N : N ; - plasticus_A : A ; - platalea_F_N : N ; - platanus_F_N : N ; - platea_F_N : N ; - platinum_N_N : N ; - plaudeo_V : V ; - plaudo_V2 : V2 ; - plausibilis_A : A ; - plausor_M_N : N ; - plaustrum_N_N : N ; - plausus_M_N : N ; - plebecula_F_N : N ; - plebeius_A : A ; - plebes_F_N : N ; - plebesco_V : V ; - plebicola_M_N : N ; - 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 ; - plegius_M_N : N ; - plenarie_Adv : Adv ; - plenarius_A : A ; - plene_Adv : Adv ; - pleniter_Adv : Adv ; - plenitudo_F_N : N ; - plennus_A : A ; - plenus_A : A ; - pleps_F_N : N ; - plerumque_Adv : Adv ; - plerus_A : A ; - pleuriticus_A : A ; - pleuriticus_M_N : N ; - plevina_F_N : N ; - plex_A : A ; - plexus_A : A ; - plicato_Adv : Adv ; - plicatrix_F_N : N ; - plicatus_A : A ; - pliciter_Adv : Adv ; - plico_V2 : V2 ; - plio_F_N : N ; - plipio_V : V ; - plo_V : V ; - plodo_V2 : V2 ; - plorabundus_A : A ; - ploratus_M_N : N ; - ploro_V : V ; - plostellum_N_N : N ; - plostrum_N_N : N ; - ploxenum_N_N : N ; - pluma_F_N : N ; - plumarius_A : A ; - plumarius_M_N : N ; - plumatus_A : A ; - plumbarius_M_N : N ; - plumbata_F_N : N ; - plumbeus_A : A ; - plumbo_V2 : V2 ; - plumbum_N_N : N ; - plumesco_V : V ; - plumeus_A : A ; - plumipes_A : A ; - plumosus_A : A ; - pluo_V2 : V2 ; - pluralis_A : A ; - pluralismus_M_N : N ; - pluralisticus_A : A ; - pluralitas_F_N : N ; - pluraliter_Adv : Adv ; - plurativum_N_N : N ; - plurativus_A : A ; - plurifariam_Adv : Adv ; - plurilaterus_A : A ; - plurimum_N_N : N ; - plurimus_A : A ; - plurimus_M_N : N ; - plurumus_A : A ; - plus_A : A ; - plus_N_N : N ; - plusculus_A : A ; - plut_V0 : V ; - pluteus_M_N : N ; - pluvia_F_N : N ; - pluvialis_A : A ; - pluviosus_A : A ; - pluvius_A : A ; - pneuma_N_N : N ; - pneumaticus_A : A ; - pneumococcus_M_N : N ; - pneumonia_F_N : N ; - pocillator_M_N : N ; - pocillum_N_N : N ; - poclum_N_N : N ; - poculentus_A : A ; - poculum_N_N : N ; - podagra_F_N : N ; - podagrosus_A : A ; - podex_M_N : N ; - podium_N_N : N ; - poema_N_N : N ; - poena_F_N : N ; - poenicans_A : A ; - poeniceus_A : A ; - poenio_V2 : V2 ; - poenior_V : V ; - poenitentia_F_N : N ; - poeniteo_V : V ; - poenitet_V0 : V ; - poenitor_M_N : N ; - poenitudo_F_N : N ; - poesis_F_N : N ; - poeta_M_N : N ; - poetica_F_N : N ; - poeticus_A : A ; - poetria_F_N : N ; - polaris_A : A ; - polemonia_F_N : N ; - polenta_F_N : N ; - polimen_N_N : N ; - polio_V2 : V2 ; - polion_N_N : N ; - politicus_A : A ; - politus_A : A ; - polium_N_N : N ; - pollen_N_N : N ; + pixis_2_N : N ; -- [XXXCO] :: small box/casket (originally boxwood) for medicine; iron heel on pestle (L+S); + pl_A : A ; -- [XXXDX] :: of the common people/plebeians; abb. pl. for plebei/plebis; (tr. pl.); + placabilis_A : A ; -- [XXXDX] :: easily appeased, placable, appeasing, pacifying; + placabilitas_F_N : N ; -- [XXXDX] :: readiness to condone (Collins); + placamen_N_N : N ; -- [XXXEC] :: means of appeasing; + placamentum_N_N : N ; -- [XXXEC] :: means of appeasing; + placatus_A : A ; -- [XXXDX] :: kindly disposed; peaceful, calm; + placenta_F_N : N ; -- [XXXCO] :: cake; kind of flat cake; + placeo_V2 : V2 ; -- [XXXAX] :: please, satisfy, give pleasure to (with dat.); + placet_V0 : V ; -- [XXXDX] :: it is pleasing/satisfying, gives pleasure; is believed/settled/agreed/decided; + placide_Adv : Adv ; -- [XXXDX] :: gently, calmly, gradually, peacefully, quietly; in a conciliatory manner; + placidus_A : A ; -- [XXXAX] :: gentle, calm, mild, peaceful, placid; + placito_V : V ; -- [FLXFJ] :: plead; + placitum_N_N : N ; -- [FLXFJ] :: plea; + placitus_A : A ; -- [XPXDS] :: pleasing; agreed upon; + placius_M_N : N ; -- [FAXFM] :: plaice (fish); + placo_V : V ; -- [XXXBX] :: appease; placate; reconcile; + placza_F_N : N ; -- [FXXFX] :: central plain; plain in mid-community; (defined in medieval text); + plaga_F_N : N ; -- [XXXBO] :: ||hunting net, web, trap/snare; curtain; coverlet/counterpane; L:fine (L+S); + plagalis_A : A ; -- [ELXFM] :: penal; + plagatus_A : A ; -- [FXXEN] :: wounded; + plagiarius_M_N : N ; -- [XXXEC] :: kidnapper; a plagiarist; + plagigerulus_A : A ; -- [BXXFS] :: much flogged; + plago_V : V ; -- [EXXFS] :: strike; wound; + plagosus_A : A ; -- [XXXDX] :: fond of flogging; + plagula_F_N : N ; -- [XXXEC] :: bed-curtain; + planctus_M_N : N ; -- [XXXDX] :: wailing, lamentation, lament, beating of the breast; mourning; + plancus_M_N : N ; -- [DAXNS] :: eagle (Pliny); + plane_Adv : Adv ; -- [XXXDX] :: clearly, plainly, distinctly; completely; + planes_M_N : N ; -- [XXXDX] :: planet; + planeta_M_N : N ; -- [XXXDX] :: planet; + plango_V2 : V2 ; -- [XXXBX] :: strike, beat; bewail; lament for, mourn; + plangor_M_N : N ; -- [XXXDX] :: outcry, shriek; + planipes_M_N : N ; -- [XDXEC] :: actor who wore no shoes; + planitas_F_N : N ; -- [XXXFS] :: distinctness; + planitia_F_N : N ; -- [XXXDX] :: plain, plateau, a flat/plane/level surface; a plane (geometry); flatness; + planities_F_N : N ; -- [XXXDX] :: plain, plateau, a flat/plane/level surface; a plane (geometry); flatness; + planta_F_N : N ; -- [XBXCO] :: sole (of foot); (esp. as placed on ground in standing/treading); foot; + plantago_F_N : N ; -- [XAXNS] :: plantain; + plantar_N_N : N ; -- [XXXFO] :: sandals (pl.); winged shoes/sandals (of Mercury L+S); + plantaris_A : A ; -- [XBXEO] :: of/connected with the soles of the feet; (of Mercury L+S); + plantarium_N_N : N ; -- [XAXEO] :: |place for planting out cuttings/seedlings; + plantatio_F_N : N ; -- [XAXNO] :: propagation from cuttings; planting, transplanting (L+S); plant transplanted; + planto_V2 : V2 ; -- [XAXEO] :: propagate from cuttings; set out, transplant (L+S); fix in place; form, make; + planum_N_N : N ; -- [GTXEK] :: plan (drawing); + planus_A : A ; -- [XXXBX] :: level, flat; + plas_Adv : Adv ; -- [XXXDX] :: more; + plascisco_V2 : V2 ; -- [FXXFY] :: compose; settle; + plasma_N_N : N ; -- [XXXEO] :: modulation of the voice (affected); image, figure, creature (L+S); fiction; + plasmatio_F_N : N ; -- [DEXES] :: forming, fashioning, creating; creation; + plasmator_M_N : N ; -- [DEXES] :: creator, fashioner, former; + plasmo_V2 : V2 ; -- [DEXDS] :: form, mold, fashion; + plastes_M_N : N ; -- [XXXCS] :: modeler, molder, potter; creator, maker (eccl.); statuary; + plasticus_A : A ; -- [HXXEK] :: plastic (matter); + platalea_F_N : N ; -- [XXXEC] :: water bird, the spoonbill; + platanus_F_N : N ; -- [XXXDX] :: plane-tree; + platea_F_N : N ; -- [XXXDX] :: broad way, street; + platinum_N_N : N ; -- [HXXEK] :: turntable; + plaudeo_V : V ; -- [EXXFP] :: clap, strike (w/flat hand), pat; beat (wings); applaud; express (dis)approval; + plaudo_V2 : V2 ; -- [XXXBO] :: clap, strike (w/flat hand), pat; beat (wings); applaud; express (dis)approval; + plausibilis_A : A ; -- [XXXEC] :: worthy of applause; + plausor_M_N : N ; -- [XXXDX] :: applauder; + plaustrum_N_N : N ; -- [XXXCO] :: wagon, cart, wain; constellation of Great Bear/Big Dipper; + plausus_M_N : N ; -- [XXXCO] :: clapping/applause; approval; striking w/palm/flat surface; beating of wings; + plebecula_F_N : N ; -- [XXXDX] :: mob, common people; + plebeius_A : A ; -- [XXXDX] :: plebeian; + plebes_F_N : N ; -- [XXXBO] :: common people, general citizens, commons/plebeians; lower class/ranks; mob/mass; + plebesco_V : V ; -- [FXXFM] :: become notorious; associate with common people; + plebicola_M_N : N ; -- [XXXDX] :: one who courts the favor of the people; + plebiscitum_N_N : N ; -- [XXXDX] :: resolution of the people; + plebs_F_N : N ; -- [XXXBO] :: common people, general citizens, commons/plebeians; lower class/ranks; mob/mass; + plecto_V : V ; -- [XXXDX] :: buffet, beat; punish; + plecto_V2 : V2 ; -- [XXXDX] :: plait, twine; + plectrologium_N_N : N ; -- [GDXEK] :: keyboard; + plectrum_N_N : N ; -- [XDXCO] :: quill/ plectrum/pick (to strike strings of musical instrument); keyboard key; + plegio_V : V ; -- [FLXFJ] :: pledge; + plegius_M_N : N ; -- [FLXFJ] :: pledge; + plenarie_Adv : Adv ; -- [FXXFF] :: plenarily; fully; + plenarius_A : A ; -- [FXXDF] :: plenary; full (in all respects/requisites); entire; absolute; having full power; + plene_Adv : Adv ; -- [XXXCO] :: abundantly/fully/clearly; richly/lavishly/generously; entirely/completely/widely + pleniter_Adv : Adv ; -- [EXXEP] :: abundantly/fully/clearly; richly/lavishly/generously; entirely/completely/widely + plenitudo_F_N : N ; -- [XXXDO] :: fullness, abundance of content; thickness, fullness of shape; whole/full amount; + plennus_A : A ; -- [XXXEO] :: driveling, slavering, dribbling; silly, childish, idiotic; + plenus_A : A ; -- [XXXAX] :: full, plump; satisfied; + pleps_F_N : N ; -- [XXXDO] :: common people, general citizens, commons/plebeians; lower class/ranks; mob/mass; + plerumque_Adv : Adv ; -- [XXXDX] :: generally, commonly; mostly, for the most part; often, frequently; + plerus_A : A ; -- [XXXAX] :: (w/que) the majority, most, very great part; about all; very many, a good many; + pleuriticus_A : A ; -- [XBXES] :: pleuritic; afflicted with pleurisy; + pleuriticus_M_N : N ; -- [XBXNS] :: pleuritic patient, one suffering from pleurisy; + plevina_F_N : N ; -- [FLXFJ] :: bail; + plex_A : A ; -- [DSXDX] :: fold (times) (multiplicative numeral); of X-parts; tuple; w/num prefix; + plexus_A : A ; -- [XXXDS] :: interwoven; intricate; + plicato_Adv : Adv ; -- [ESXDX] :: in an X-fold manner (only with numerical prefix), X times the price; + plicatrix_F_N : N ; -- [BXXFS] :: clothes-folder; she who folds clothes; + plicatus_A : A ; -- [XXXDX] :: multiplied by; tupled; usually with numerical prefix; + pliciter_Adv : Adv ; -- [ESXDX] :: in X ways (only with numerical prefix), in X parts/categories; + plico_V2 : V2 ; -- [DXXCS] :: fold (up), bend, flex; roll up; twine/coil; wind/fold together (L+S); double up; + plio_F_N : N ; -- [ESXDX] :: X times the amount (only with numerical prefix), X times as much; + plipio_V : V ; -- [XAXFO] :: screech; (emit the cry of the hawk); + plo_V : V ; -- [ESXDX] :: multiply by X (only with numerical prefix), X-tuple, increase X fold; + plodo_V2 : V2 ; -- [XXXEO] :: clap, strike (w/flat hand), pat; beat (wings); applaud; express (dis)approval; + plorabundus_A : A ; -- [FXXEV] :: lamentable, causing/worthy of/accompanied by tears; doleful; + ploratus_M_N : N ; -- [XXXDX] :: wailing, crying; + ploro_V : V ; -- [XXXBX] :: cry over, cry aloud; lament, weep; deplore; + plostellum_N_N : N ; -- [XAXEC] :: little wagon; + plostrum_N_N : N ; -- [XXXCO] :: wagon, cart, wain; constellation of Great Bear/Big Dipper; + ploxenum_N_N : N ; -- [GXXEK] :: bodywork; + pluma_F_N : N ; -- [XXXBX] :: feather; plume; + plumarius_A : A ; -- [XXXDO] :: embroidered; brocaded with a feather pattern; of embroidery; of soft feathers; + plumarius_M_N : N ; -- [XXXEO] :: embroiderer; maker of embroidery/brocade; + plumatus_A : A ; -- [XXXEC] :: covered with feathers; + plumbarius_M_N : N ; -- [FXXEK] :: plumber; + plumbata_F_N : N ; -- [EXXFS] :: lead ball; + plumbeus_A : A ; -- [XXXDX] :: leaden; blunt, dull; heavy; stupid; lead-colored (Cal); + plumbo_V2 : V2 ; -- [FXXFS] :: solder, lead; make of lead; + plumbum_N_N : N ; -- [XXXDX] :: lead; [plumbum album => tin]; + plumesco_V : V ; -- [XXXNO] :: grow feathers; begin to get feathers; become feathered/fledged; + plumeus_A : A ; -- [XXXDX] :: feathery, composed of or filled with feathers; + plumipes_A : A ; -- [XXXES] :: feather-footed; + plumosus_A : A ; -- [XXXDX] :: feathered; + pluo_V2 : V2 ; -- [XXXDX] :: rain; fall like rain; rain down; drip with rain; + pluralis_A : A ; -- [EXXEP] :: plural; + pluralismus_M_N : N ; -- [GXXEK] :: pluralism; + pluralisticus_A : A ; -- [GXXEK] :: pluralistic; + pluralitas_F_N : N ; -- [EXXDP] :: plurality; multitude; the plural number; + pluraliter_Adv : Adv ; -- [EXXDP] :: in the bulk; in the plural (Latham); in several places; at several times; + plurativum_N_N : N ; -- [DXXFS] :: plural (of number); + plurativus_A : A ; -- [DXXFS] :: plural; + plurifariam_Adv : Adv ; -- [XXXCO] :: in many places, extensively; in many ways; + plurilaterus_A : A ; -- [EXXFS] :: several-sided; + plurimum_N_N : N ; -- [XXXDX] :: most/great number of things; greatest amount; very much; the most possible; + plurimus_A : A ; -- [XXXAX] :: most, greatest number/amount; very many; most frequent; highest price/value; + plurimus_M_N : N ; -- [XXXDX] :: very many, many a one; the most people, very many/great number of people; + plurumus_A : A ; -- [XXXDX] :: most, greatest number/amount; very many; most frequent; highest price/value; + plus_A : A ; -- [XSXDX] :: X times as great/many (only w/numerical prefix) (proportion), -fold, tuple; + plus_N_N : N ; -- [XXXDX] :: more, too much, more than enough; more than (w/NUM); higher price/value (GEN); + plusculus_A : A ; -- [XXXEC] :: somewhat more, rather more; + plut_V0 : V ; -- [XXXDX] :: it rains; + pluteus_M_N : N ; -- [XXXDX] :: movable screen; breastwork, shed; + pluvia_F_N : N ; -- [XXXDX] :: rain, shower; + pluvialis_A : A ; -- [XXXDX] :: rain bringing, rainy; + pluviosus_A : A ; -- [EXXFS] :: rainy; + pluvius_A : A ; -- [XXXBX] :: rainy, causing or bringing rain; + pneuma_N_N : N ; -- [FEXDM] :: breath; spirit; [pneuma sacrum/sanctum => Holy Spirit/Ghost]; + pneumaticus_A : A ; -- [XTXEO] :: pneumatic; wind-; concerned w/air pressure; operated by air/wind pressure; + pneumococcus_M_N : N ; -- [GBXEK] :: pneumococcus; + pneumonia_F_N : N ; -- [GBXEK] :: pneumonia; + pocillator_M_N : N ; -- [XXXFO] :: cupbearer; + pocillum_N_N : N ; -- [XXXDO] :: little cup; small cupful; cup (Cal); + poclum_N_N : N ; -- [XXXCO] :: cup, bowl, drinking vessel; drink/draught; social drinking (pl.); drink; + poculentus_A : A ; -- [XXXFO] :: potable, suitable for drinking; + poculum_N_N : N ; -- [XXXBO] :: cup, bowl, drinking vessel; drink/draught; social drinking (pl.); drink; + podagra_F_N : N ; -- [XXXDX] :: gout; + podagrosus_A : A ; -- [BBXFS] :: gouty; + podex_M_N : N ; -- [XBXEC] :: fundament, buttocks; anus; + podium_N_N : N ; -- [XXXEC] :: balcony, esp. in the amphitheater; + poema_N_N : N ; -- [XPXCO] :: poem, composition in verse; poetic piece (even nonmetrical); (pl.) poetry; + poena_F_N : N ; -- [XXXAO] :: penalty, punishment; revenge/retribution; [poena dare => to pay the penalty]; + poenicans_A : A ; -- [XXXEO] :: inclining to bright red; red/reddish/ruddy (L+S); blushing; Punic, Carthaginian; + poeniceus_A : A ; -- [XXXFS] :: Phoenician; + poenio_V2 : V2 ; -- [XXXBO] :: punish (person/offense), inflict punishment; avenge, extract retribution; + poenior_V : V ; -- [XXXCO] :: punish (person/offense), inflict punishment; avenge, extract retribution; + poenitentia_F_N : N ; -- [XXXCO] :: regret (for act); change of mind/attitude; repentance/contrition (Def); penance; + poeniteo_V : V ; -- [XXXAO] :: displease; (cause to) regret; repent, be sorry; [me paenitet => I am sorry]; + poenitet_V0 : V ; -- [XXXCO] :: it displeases, makes angry, offends, dissatisfies, makes sorry; + poenitor_M_N : N ; -- [XXXDX] :: punisher, one who punishes; one who extracts retribution; avenger; + poenitudo_F_N : N ; -- [XXXFO] :: regret; repentance (L+S); + poesis_F_N : N ; -- [XPXDX] :: poetry; poem; + poeta_M_N : N ; -- [XPXAX] :: poet; + poetica_F_N : N ; -- [XPXDS] :: poetry; poetic art; + poeticus_A : A ; -- [XPXDX] :: poetic; + poetria_F_N : N ; -- [XPXEC] :: poetess; + polaris_A : A ; -- [GXXEK] :: polar; + polemonia_F_N : N ; -- [XAXNO] :: unidentified plant; + polenta_F_N : N ; -- [XAXCO] :: barley-meal/groats; hulled and crushed grain; parched grain (Douay); + polimen_N_N : N ; -- [XXXFS] :: brightness; B:testicle; + polio_V2 : V2 ; -- [XXXDX] :: smooth, polish; refine, give finish to; + polion_N_N : N ; -- [DAXFS] :: strong smelling plant (poley-germander, Teucrium polium?); + politicus_A : A ; -- [XLXEC] :: of the state, political; + politus_A : A ; -- [XXXDX] :: refined, polished; + polium_N_N : N ; -- [DAXFS] :: strong smelling plant (poley-germander, Teucrium polium?); + pollen_N_N : N ; -- [XXXCO] :: finely ground flour; powder (of anything produced by grinding); 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 ; - polleo_V : V ; - pollex_M_N : N ; - pollicaris_A : A ; - polliceor_V : V ; - pollicitatio_F_N : N ; - pollicitor_V : V ; - pollicitum_N_N : N ; - pollinctor_M_N : N ; - pollingo_V2 : V2 ; - polluceo_V2 : V2 ; - polluctum_N_N : N ; - polluctus_A : A ; - pollueo_V : V ; - pollulum_N_N : N ; - pollulus_A : A ; - pollum_N_N : N ; - polluo_V2 : V2 ; - pollus_A : A ; - pollutio_F_N : N ; - polulum_N_N : N ; - polulus_A : A ; - polum_N_N : N ; - polus_A : A ; - polus_M_N : N ; - polybolum_N_N : N ; - polyclinica_F_N : N ; - polymitarium_N_N : N ; - polymitarius_A : A ; - polymitarius_M_N : N ; - polymitum_N_N : N ; - polymitus_A : A ; - polyphagia_F_N : N ; - polyphonia_F_N : N ; - polyphonicus_A : A ; - polypus_M_N : N ; - polysemus_A : A ; - polysyllabicus_A : A ; - polytheismus_M_N : N ; - polytheus_M_N : N ; - pomarium_N_N : N ; - pomarius_M_N : N ; - pomeridianus_A : A ; - pomerium_N_N : N ; - pomifer_A : A ; - pomoerium_N_N : N ; - pomosus_A : A ; - pompa_F_N : N ; - pompatice_Adv : Adv ; - pompaticus_A : A ; - pompatus_A : A ; - pompelmus_M_N : N ; - pompholyx_F_N : N ; - pompilus_M_N : N ; - pompo_V : V ; - pomposus_A : A ; - pomum_N_N : N ; - pomus_F_N : N ; - ponderatio_F_N : N ; - pondero_V : V ; - ponderosus_A : A ; - pondo_Adv : Adv ; - pondus_N_N : N ; - pone_Acc_Prep : Prep ; - pono_V2 : V2 ; - pons_M_N : N ; - ponticulus_M_N : N ; - pontifex_M_N : N ; - pontificalis_A : A ; - pontificatus_M_N : N ; - pontificius_A : A ; - pontificus_A : A ; - ponto_M_N : N ; - pontufex_M_N : N ; - pontus_M_N : N ; - pop_N : N ; - popa_F_N : N ; - popa_M_N : N ; - popanum_N_N : N ; - popellus_M_N : N ; - popina_F_N : N ; - popino_M_N : N ; - poples_M_N : N ; - poplus_M_N : N ; - poppysma_N_N : N ; - poppysmus_M_N : N ; - populabilis_A : A ; - populabundus_A : A ; - popularis_A : A ; + pollenis_M_N : N ; -- [BXXEO] :: finely ground flour; powder (of anything produced by grinding); + pollens_A : A ; -- [XXXCO] :: strong; having strength, potent (things); exerting power (people); important; + pollentia_F_N : N ; -- [BXXFS] :: power; + polleo_V : V ; -- [XXXBX] :: exert power or influence; be strong; + pollex_M_N : N ; -- [XXXBX] :: thumb; + pollicaris_A : A ; -- [EBXFS] :: of a thumb; + polliceor_V : V ; -- [XXXBX] :: promise; + pollicitatio_F_N : N ; -- [XXXDX] :: promise; + pollicitor_V : V ; -- [XXXDX] :: promise (assiduously); + pollicitum_N_N : N ; -- [XXXDX] :: promise; + pollinctor_M_N : N ; -- [XXXEC] :: undertaker; + pollingo_V2 : V2 ; -- [XXXDS] :: wash corpse; + polluceo_V2 : V2 ; -- [XXXEC] :: offer, serve up; + polluctum_N_N : N ; -- [XXXDS] :: offering; + polluctus_A : A ; -- [XXXDX] :: offered-up (Collins); (=VPAR); + pollueo_V : V ; -- [FXXEK] :: pollute; + pollulum_N_N : N ; -- [XXXCO] :: little bit, trifle; a little; (only a) small/little amount/quantity; + pollulus_A : A ; -- [XXXCO] :: little; small; (only a) small amount/quantity of/little bit of; + pollum_N_N : N ; -- [XXXCO] :: little bit, trifle; a little; (only a) small/little amount/quantity; + polluo_V2 : V2 ; -- [XXXDX] :: |violate; dishonor/defile/degrade (w/illicit sexual conduct/immoral actions); + pollus_A : A ; -- [XXXCO] :: little; small; (only a) small amount/quantity of/little bit of; + pollutio_F_N : N ; -- [GXXEK] :: pollution; + polulum_N_N : N ; -- [XXXCO] :: little bit, trifle; a little; (only a) small/little amount/quantity; + polulus_A : A ; -- [XXXCO] :: little; small; (only a) small amount/quantity of/little bit of; + polum_N_N : N ; -- [XXXCO] :: little; small; (only a) small amount/quantity; a little bit; trifle; + polus_A : A ; -- [XXXAO] :: little; small; (only a) small amount/quantity of/little bit of; + polus_M_N : N ; -- [XXXDX] :: pole (e.g., north pole), end of an axis; heaven, sky, celestial vault; + polybolum_N_N : N ; -- [GXXEK] :: machine gun; + polyclinica_F_N : N ; -- [GXXEK] :: polyclinic, general clinic; + polymitarium_N_N : N ; -- [EXXES] :: damask (usu.pl.); (fine fabric); + polymitarius_A : A ; -- [EXXFO] :: of damask; highly wrought/finished; + polymitarius_M_N : N ; -- [EXXES] :: weaver; one doing damask/fine weaving; + polymitum_N_N : N ; -- [XXXES] :: damask (usu.pl.); (fine fabric) + polymitus_A : A ; -- [XXXDO] :: damasked, woven w/different colored threads; with many threads (L+S); weaving; + polyphagia_F_N : N ; -- [GXXEK] :: gluttony; + polyphonia_F_N : N ; -- [GXXEK] :: polyphony; + polyphonicus_A : A ; -- [GXXEK] :: polyphonic; + polypus_M_N : N ; -- [XXXDX] :: octopus, cuttle-fish; nasal tumor; (modern) growth in the colon/uterus; + polysemus_A : A ; -- [EGXFS] :: with many significances; + polysyllabicus_A : A ; -- [GGXEK] :: polysyllabic; + polytheismus_M_N : N ; -- [GEXEK] :: polytheism; + polytheus_M_N : N ; -- [GEXEK] :: polytheist; + pomarium_N_N : N ; -- [XXXDX] :: orchard; + pomarius_M_N : N ; -- [XXXES] :: fruit-seller; + pomeridianus_A : A ; -- [XXXES] :: post-meridian; in the afternoon; + pomerium_N_N : N ; -- [XXXCO] :: |space left free from buildings round walls of Roman/Etruscan town (esp. Rome); + pomifer_A : A ; -- [XXXDX] :: fruit-bearing; + pomoerium_N_N : N ; -- [XXXCO] :: |space left free from buildings round walls of Roman/Etruscan town (esp. Rome); + pomosus_A : A ; -- [XXXDX] :: rich in fruit; + pompa_F_N : N ; -- [XXXDX] :: procession; retinue; pomp, ostentation; + pompatice_Adv : Adv ; -- [XXXFS] :: showily; + pompaticus_A : A ; -- [EXXFS] :: with pomp; splendid; + pompatus_A : A ; -- [EXXFS] :: with pomp; splendid; + pompelmus_M_N : N ; -- [GAXEK] :: grapefruit; + pompholyx_F_N : N ; -- [DTXNS] :: smoke-deposit (from furnace); (Pliny); + pompilus_M_N : N ; -- [XAXEC] :: pilot fish; + pompo_V : V ; -- [EXXFS] :: perform with pomp; + pomposus_A : A ; -- [DXXFS] :: pompous; dignified; + pomum_N_N : N ; -- [XXXAX] :: fruit, apple; fruit-tree; + pomus_F_N : N ; -- [XXXDX] :: fruit, fruit-tree; + ponderatio_F_N : N ; -- [XXXDX] :: weight; + pondero_V : V ; -- [XXXDX] :: weigh; weigh up; + ponderosus_A : A ; -- [XXXEC] :: heavy, weighty; significant; + pondo_Adv : Adv ; -- [XXXDX] :: in or by weight; + pondus_N_N : N ; -- [XXXAX] :: weight, burden, impediment; + pone_Acc_Prep : Prep ; -- [XXXDX] :: behind (in local relations) (rare); + pono_V2 : V2 ; -- [XXXAO] :: ||||esteem/value/count; impose; ordain; lend, put out, offer, wager; rid/drop; + pons_M_N : N ; -- [XXXBX] :: bridge; + ponticulus_M_N : N ; -- [XXXDX] :: little bridge; + pontifex_M_N : N ; -- [XXXBO] :: high priest/pontiff; (of Roman supreme college of priests); bishop (Bee); pope; + pontificalis_A : A ; -- [XXXDX] :: pontifical, of or pertaining to a pontifex; + pontificatus_M_N : N ; -- [XXXDX] :: pontificate, the office of pontifex; + pontificius_A : A ; -- [XXXDX] :: pontifical, of or pertaining to a pontifex; + pontificus_A : A ; -- [XEXEC] :: pontifical; + ponto_M_N : N ; -- [XXXDX] :: large flat boat, barge; punt; pontoon; ferry boat; + pontufex_M_N : N ; -- [XXXCO] :: high priest/pontiff; (of Roman supreme college of priests); bishop (Bee); pope; + pontus_M_N : N ; -- [XXXAX] :: sea; + pop_N : N ; -- [XXXEX] :: people (abb. for populus), nation; + popa_F_N : N ; -- [XXXES] :: she who sells animals for sacrifice; + popa_M_N : N ; -- [XXXES] :: lower priest; priest's assistant; (fells sacrifice with ax); + popanum_N_N : N ; -- [XXXEC] :: sacrificial cake; + popellus_M_N : N ; -- [XXXEC] :: common people, rabble; + popina_F_N : N ; -- [XXXDX] :: cook-shop, bistro, low-class eating house; + popino_M_N : N ; -- [XXXEC] :: glutton; + poples_M_N : N ; -- [XXXDX] :: knee; + poplus_M_N : N ; -- [XXXFS] :: people, nation, State; public, populace; (= populus); + poppysma_N_N : N ; -- [XXXFS] :: tongue-clicking; + poppysmus_M_N : N ; -- [XXXFS] :: tongue-clicking; + populabilis_A : A ; -- [XXXDX] :: that may be ravaged or laid waste; + populabundus_A : A ; -- [XXXEC] :: laying waste, devastating; + popularis_A : A ; -- [XXXBX] :: of the people; popular; 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 ; - populatio_F_N : N ; - populator_M_N : N ; - populatus_M_N : N ; - populeus_A : A ; - populifer_A : A ; - populista_M_N : N ; - populo_V2 : V2 ; - populor_V : V ; - populus_F_N : N ; - populus_M_N : N ; - porca_F_N : N ; - porcella_F_N : N ; - porcellana_F_N : N ; - porcellanum_N_N : N ; - porcellanus_A : A ; - porcellio_M_N : N ; - porcellus_M_N : N ; - porceo_V : V ; - porcetra_F_N : N ; - porcillaca_F_N : N ; - porcillus_M_N : N ; - porcinarius_M_N : N ; - porcinus_A : A ; - porculus_M_N : N ; - porcus_M_N : N ; - porisma_N_N : N ; - porna_F_N : N ; - pornographia_F_N : N ; - pornographicus_A : A ; - porosus_A : A ; - porphirio_M_N : N ; - porphyrio_M_N : N ; - porrectio_F_N : N ; - porrectus_A : A ; - porricio_V2 : V2 ; - porrigo_V2 : V2 ; - porro_Adv : Adv ; - porrum_N_N : N ; - porrus_M_N : N ; - porta_F_N : N ; - portale_N_N : N ; - portarius_M_N : N ; - portatio_F_N : N ; - portendo_V2 : V2 ; - portentificus_A : A ; - portentum_N_N : N ; - portentuosus_A : A ; + popularis_M_N : N ; -- [XLXBO] :: |member of "Popular" party, promoter of "Popular" policies, "Men of the People"; + popularitas_F_N : N ; -- [XXXDX] :: courting of popular favor; + populariter_Adv : Adv ; -- [XXXDX] :: in everyday language; in a manner designed to win popular support; + populatio_F_N : N ; -- [XXXDX] :: plundering, ravaging, spoiling; laying waste, devastation; plunder, booty; + populator_M_N : N ; -- [XXXDX] :: devastator, ravager, plunderer; + populatus_M_N : N ; -- [XPXFS] :: devastation; laying-waste; + populeus_A : A ; -- [XXXDX] :: of a poplar; + populifer_A : A ; -- [XAXEC] :: producing poplars; + populista_M_N : N ; -- [GXXEK] :: populist; + populo_V2 : V2 ; -- [XXXCO] :: ravage, devastate, lay waste; plunder; despoil, strip; + populor_V : V ; -- [XXXBO] :: ravage, devastate, lay waste; plunder; despoil, strip; + populus_F_N : N ; -- [XAXCO] :: poplar tree; (long o); + populus_M_N : N ; -- [XXXAO] :: |members of a society/sex; region/district (L+S); army (Bee); + porca_F_N : N ; -- [XXXDX] :: sow, female swine; + porcella_F_N : N ; -- [XAXDS] :: female piglet; + porcellana_F_N : N ; -- [GXXEK] :: porcelain; china; + porcellanum_N_N : N ; -- [GXXEK] :: porcelain; china; + porcellanus_A : A ; -- [GXXEK] :: of porcelain, china; + porcellio_M_N : N ; -- [FXXEK] :: woodlouse; + porcellus_M_N : N ; -- [XAXCO] :: piglet; suckling pig; + porceo_V : V ; -- [BXXFS] :: keep off; (archaic); + porcetra_F_N : N ; -- [XAXFS] :: once-littered sow; + porcillaca_F_N : N ; -- [DAXNS] :: purslain plant (Pliny); + porcillus_M_N : N ; -- [XAXCO] :: piglet; suckling pig; + porcinarius_M_N : N ; -- [BXXFS] :: pork-seller; + porcinus_A : A ; -- [XXXEC] :: of a swine or hog; + porculus_M_N : N ; -- [XAXDS] :: young pig; porpoise; hook in wine press; + porcus_M_N : N ; -- [XXXDX] :: pig, hog; tame swine; glutton; (boar = verres); + porisma_N_N : N ; -- [ESXEP] :: deduction; + porna_F_N : N ; -- [XXHEW] :: harlot; (Greek borrowed word); whore; streetwalker; + pornographia_F_N : N ; -- [GXXEK] :: pornography; + pornographicus_A : A ; -- [GXXEK] :: pornographic; + porosus_A : A ; -- [GXXEK] :: porous; + porphirio_M_N : N ; -- [EAXFW] :: kind of waterfowl, purple gallinule; purple coot, sultana, water-hen (OED); + porphyrio_M_N : N ; -- [XAXEO] :: kind of waterfowl, purple gallinule; purple coot, sultana, water-hen (OED); + porrectio_F_N : N ; -- [XXXDS] :: extension; straight line; + porrectus_A : A ; -- [XXXDS] :: stretched-out; protracted; dead; + porricio_V2 : V2 ; -- [XEXCO] :: offer as a sacrifice, make sacrifice/oblation of; lay before (L+S); produce; + porrigo_V2 : V2 ; -- [XXXAX] :: stretch out, extend; + porro_Adv : Adv ; -- [XXXBX] :: at distance, further on, far off, onward; of old, formerly, hereafter; again; + porrum_N_N : N ; -- [XXXDX] :: leek; + porrus_M_N : N ; -- [XXXDX] :: leek; + porta_F_N : N ; -- [XXXAX] :: gate, entrance; city gates; door; avenue; goal (soccer); + portale_N_N : N ; -- [GXXEK] :: portal; + portarius_M_N : N ; -- [GDXEK] :: goal-keeper; + portatio_F_N : N ; -- [XXXFS] :: conveyance; + portendo_V2 : V2 ; -- [XXXDX] :: predict, foretell; point out; + portentificus_A : A ; -- [XXXEC] :: marvelous, miraculous; + portentum_N_N : N ; -- [XXXDX] :: omen, portent; + portentuosus_A : A ; -- [XXXES] :: monstrous; unnatural; full of monsters; (portentosus); porthmeus_1_N : N ; -- [XXXEO] :: ferryman; (Charon); - porthmeus_2_N : N ; - porticula_F_N : N ; + porthmeus_2_N : N ; -- [XXXEO] :: ferryman; (Charon); + porticula_F_N : N ; -- [XXXEC] :: little gallery or portico; 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 ; - portitor_M_N : N ; - portiuncula_F_N : N ; - porto_V : V ; - portorium_N_N : N ; - portula_F_N : N ; - portulaca_F_N : N ; - portuosus_A : A ; - portus_M_N : N ; - posco_V2 : V2 ; - posculentus_A : A ; - posea_F_N : N ; - positio_F_N : N ; - positivus_A : A ; - positor_M_N : N ; - positus_M_N : N ; - possessio_F_N : N ; - possessiuncula_F_N : N ; - possessor_M_N : N ; - possibilis_A : A ; - possideo_V : V ; - possido_V : V ; - possum_V : V ; - post_Acc_Prep : Prep ; - post_Adv : Adv ; - postalis_A : A ; - postatus_A : A ; - postea_Adv : Adv ; - posteaquam_Conj : Conj ; - posterga_Adv : Adv ; - postergum_Adv : Adv ; - posterioritas_F_N : N ; - posteritas_F_N : N ; - posterius_Adv : Adv ; - posterus_A : A ; - posterus_M_N : N ; - postestas_F_N : N ; - postfactus_A : A ; - postfero_V : V ; - postgenitus_M_N : N ; - posthabeo_V : V ; - posthac_Adv : Adv ; - posthaec_Adv : Adv ; - posthanc_Adv : Adv ; - posthinc_Adv : Adv ; - posthoc_Adv : Adv ; - posthumus_A : A ; - postibi_Adv : Adv ; - posticulum_N_N : N ; - posticum_N_N : N ; - posticus_A : A ; - postidea_Adv : Adv ; - postilena_F_N : N ; - postilla_Adv : Adv ; - postis_M_N : N ; - postliminium_N_N : N ; - postmeridianus_A : A ; - postmodo_Adv : Adv ; - postmodum_Adv : Adv ; - postnatus_A : A ; - postnatus_M_N : N ; - postpartor_M_N : N ; - postpono_V2 : V2 ; - postputo_V2 : V2 ; - postquam_Conj : Conj ; - postremitas_F_N : N ; - postremo_Adv : Adv ; - postremum_Adv : Adv ; - postremus_A : A ; - postridie_Adv : Adv ; - postscaenium_N_N : N ; - postscribo_V2 : V2 ; - postulatio_F_N : N ; - postulatum_N_N : N ; - postulo_V : V ; - postumus_A : A ; - postuum_N_N : N ; - postuus_M_N : N ; - potator_M_N : N ; - pote_A : A ; - potens_A : A ; - potentatus_M_N : N ; - potenter_Adv : Adv ; - potentia_F_N : N ; - poterium_N_N : N ; - potestas_F_N : N ; - potio_F_N : N ; - potionatus_A : A ; - potiono_V2 : V2 ; - potior_A : A ; - potior_V : V ; - potis_A : A ; - potissime_Adv : Adv ; - potissimum_Adv : Adv ; - potissimus_A : A ; - potissume_Adv : Adv ; - potissumum_Adv : Adv ; - potito_V : V ; - potius_Adv : Adv ; - poto_V : V ; - potor_M_N : N ; - potorium_N_N : N ; - potorius_A : A ; - potrix_F_N : N ; - potulentum_N_N : N ; - potulentus_A : A ; - potus_A : A ; - potus_M_N : N ; - pr_Adv : Adv ; - pr_N : N ; - practicus_A : A ; - pradatorius_A : A ; - prae_Abl_Prep : Prep ; - prae_Adv : Adv ; - praeacutus_A : A ; - praealtus_A : A ; - praeambula_F_N : N ; - praeambulo_V : V ; - praeambulum_N_N : N ; - praeambulus_A : A ; - praeambulus_M_N : N ; - praebalteatus_A : A ; - praebeo_V2 : V2 ; - praebibo_V2 : V2 ; - praebitor_M_N : N ; - praecalidus_A : A ; - praecantrix_F_N : N ; - praecanus_A : A ; - praecaveo_V : V ; - praecedentia_F_N : N ; - praecedo_V2 : V2 ; - praecelero_V : V ; - praecellens_A : A ; - praecellentia_F_N : N ; - praecello_V : V ; - praecelsus_A : A ; - praecentio_F_N : N ; - praecento_V : V ; - praeceps_A : A ; - praeceps_Adv : Adv ; - praeceps_N_N : N ; - praeceptio_F_N : N ; - praeceptor_M_N : N ; - praeceptum_N_N : N ; - praecerpo_V2 : V2 ; - praecidentius_Adv : Adv ; - 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_V2 : V2 ; - praecluis_A : A ; - praeco_M_N : N ; - praecognosco_V2 : V2 ; - praecompositus_A : A ; - praeconium_N_N : N ; - praeconius_A : A ; - praeconor_V : V ; - praeconsumo_V2 : V2 ; - praecontrecto_V2 : V2 ; - praecoquis_A : A ; - praecordia_F_N : N ; - praecordium_N_N : N ; - praecorrumpo_V2 : V2 ; - praecox_A : A ; - praecumbrans_A : A ; - praecurrentium_N_N : N ; - praecurro_V2 : V2 ; - praecursor_M_N : N ; - praecutio_V2 : V2 ; - praeda_F_N : N ; - praedabundus_A : A ; - praedator_M_N : N ; - praedatorius_A : A ; - praedecessor_M_N : N ; - praedelasso_V : V ; - praedesignatus_A : A ; - praedestinatio_F_N : N ; - praedestino_V2 : V2 ; - praedetermino_V2 : V2 ; - praediator_M_N : N ; - praediatorius_A : A ; - praedicamentum_N_N : N ; - praedicatio_F_N : N ; - praedico_V2 : V2 ; - praedictum_N_N : N ; - praedictus_A : A ; - praediolum_N_N : N ; - praedisco_V : V ; - praedisponeo_V : V ; - praedispositio_F_N : N ; - praedispositus_A : A ; - praeditus_A : A ; - praedium_N_N : N ; - praedives_A : A ; - praedivino_V2 : V2 ; - praedo_M_N : N ; - praedo_V2 : V2 ; - praedominium_N_N : N ; - praedor_V : V ; - praeduco_V2 : V2 ; - praedulcis_A : A ; - praeduro_V2 : V2 ; - praedurus_A : A ; - praeeo_1_V : V ; - praeeo_2_V : V ; - praefabricatus_A : A ; - praefatio_F_N : N ; - praefectianus_A : A ; - praefectianus_M_N : N ; - praefectura_F_N : N ; - praefectus_M_N : N ; - praefecus_M_N : N ; - praefero_V : V ; - praeferox_A : A ; - praeferratus_A : A ; - praefervidus_A : A ; - praefestino_V : V ; - praeficio_V2 : V2 ; - praefigo_V2 : V2 ; - praefiguratio_F_N : N ; - praefinio_V2 : V2 ; - praefiscine_Adv : Adv ; - praefiscini_Adv : Adv ; - praefloro_V : V ; - praefluo_V2 : V2 ; - praefoco_V : V ; - praefodio_V2 : V2 ; - praefor_V : V ; - praefractus_A : A ; - praefrigidus_A : A ; - praefringo_V2 : V2 ; - praefulcio_V2 : V2 ; - praefulgeo_V : V ; - praefulgidus_A : A ; - praefurnium_N_N : N ; - praegelidus_A : A ; - praegestio_V : V ; - praegnans_A : A ; - praegnas_A : A ; - praegnatio_F_N : N ; - praegracilis_A : A ; - praegravis_A : A ; - praegravo_V : V ; - praegredior_V : V ; - praegusto_V : V ; - praegustus_M_N : N ; - praehendo_V2 : V2 ; - praehistoria_F_N : N ; - praehistoricus_A : A ; - praeicio_V2 : V2 ; - praeintelligo_V : V ; - praejaceo_V2 : V2 ; - praejacio_V2 : V2 ; - praejicio_V2 : V2 ; - praejudicatum_N_N : N ; - praejudicialis_A : A ; - praejudicium_N_N : N ; - praejudico_V2 : V2 ; - praejuvo_V2 : V2 ; - praelabor_V : V ; - praelambo_V2 : V2 ; - praelargus_A : A ; - praelego_V : V ; - praelego_V2 : V2 ; - praeligo_V2 : V2 ; - praelior_V : V ; - praelium_N_N : N ; - praelongus_A : A ; - praelonguus_A : A ; - praeloquor_V : V ; - praeluceo_V : V ; - praelusio_F_N : N ; - praelustris_A : A ; - praemandatatum_N_N : N ; - praemando_V2 : V2 ; - praematurus_A : A ; - praemedicatus_A : A ; - praemeditor_V : V ; - praememoro_V2 : V2 ; - praemetuo_V : V ; - praemico_V : V ; - praemineo_V : V ; - praeminister_M_N : N ; - praeministra_F_N : N ; - praeministro_V : V ; - praemitto_V2 : V2 ; - praemium_N_N : N ; - praemolestia_F_N : N ; - praemolior_V : V ; - praemoneo_V : V ; - praemonitus_M_N : N ; - praemonstrator_M_N : N ; - praemordeo_V2 : V2 ; - praemorior_V : V ; - praemoveo_V2 : V2 ; - praemunio_V2 : V2 ; - praemunitio_F_N : N ; - praenarro_V2 : V2 ; - praenatalis_A : A ; - praenato_V : V ; - praenavigatio_F_N : N ; - praenavigo_V : V ; - praendo_V2 : V2 ; - praeniteo_V : V ; - praenomen_N_N : N ; - praenosco_V : V ; - praenotio_F_N : N ; - praenoto_V : V ; - praenubilus_A : A ; - praenuntio_V : V ; - praenuntius_A : A ; - praeoccupo_V : V ; - praeolit_V0 : V ; - praeopto_V : V ; - praepando_V2 : V2 ; - praeparatio_F_N : N ; - praeparo_V : V ; - praepedio_V2 : V2 ; - praependeo_V : V ; - praepes_A : A ; - praepes_F_N : N ; - praepilatus_A : A ; - praepinguis_A : A ; - praepolleo_V : V ; - praepondero_V2 : V2 ; - praepono_V2 : V2 ; - praeporto_V2 : V2 ; - praepositio_F_N : N ; - praepositus_M_N : N ; - praepossum_V : V ; - praeposterus_A : A ; - praepotens_A : A ; - praeproperanter_Adv : Adv ; - praeproperus_A : A ; - praeputiatio_F_N : N ; - praeputiatus_A : A ; - praeputio_V2 : V2 ; - praeputium_N_N : N ; - praequeror_V : V ; - praeradio_V2 : V2 ; - praerapidus_A : A ; - praerigesco_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_V2 : V2 ; - praeruptus_A : A ; - praes_M_N : N ; - praesaepe_N_N : N ; - praesaepes_F_N : N ; - praesaepio_V2 : V2 ; - praesaepium_N_N : N ; - praesaeptus_A : A ; - praesagio_V2 : V2 ; - praesagitio_F_N : N ; - praesagium_N_N : N ; - praesagus_A : A ; - praescienter_Adv : Adv ; - praescientia_F_N : N ; - praescio_V2 : V2 ; - praescisco_V2 : V2 ; - praescitio_F_N : N ; - praescitum_N_N : N ; - praescius_A : A ; - praescribo_V2 : V2 ; - praescriptio_F_N : N ; - praescriptum_N_N : N ; - praeseco_V : V ; - praesegmen_N_N : N ; - praeselectorius_A : A ; - praesens_A : A ; - praesentarie_Adv : Adv ; - praesentarius_A : A ; - praesentatio_F_N : N ; - praesente_N_N : N ; - praesenter_Adv : Adv ; - praesentia_F_N : N ; - praesentialis_A : A ; - praesentialiter_Adv : Adv ; - praesentio_V2 : V2 ; - praesento_V2 : V2 ; - praesepe_N_N : N ; - praesepes_F_N : N ; - praesepio_V2 : V2 ; - praesepium_N_N : N ; - praesertim_Adv : Adv ; - praeservativum_N_N : N ; - praeservio_V : V ; + porticus_M_N : N ; -- [XXXBO] :: colonnade, covered walk; portico; covered gallery atop amphitheater/siege works; + portio_F_N : N ; -- [XXXDX] :: part, portion, share; proportion; [pro portione => proportionally]; + portisculus_M_N : N ; -- [XXXFS] :: timing-hammer (to keep beat); guidance; + portitor_M_N : N ; -- [XXXDX] :: ferry man; + portiuncula_F_N : N ; -- [EXXFS] :: portion; small part; + porto_V : V ; -- [XXXAX] :: carry, bring; + portorium_N_N : N ; -- [XXXDX] :: port duty; customs duty; tax; + portula_F_N : N ; -- [XXXEC] :: little gate, postern; + portulaca_F_N : N ; -- [XAXES] :: purslain plant; + portuosus_A : A ; -- [XXXDX] :: well provided with harbors; + portus_M_N : N ; -- [XXXBX] :: port, harbor; refuge, haven, place of refuge; + posco_V2 : V2 ; -- [XXXAX] :: ask, demand; + posculentus_A : A ; -- [XAXFX] :: POSCULENT (similar to esculent/eatable); + posea_F_N : N ; -- [XAXFS] :: olive species; olive with excellent oil; + positio_F_N : N ; -- [XXXBO] :: ||attitude, mental position, condition/state; [prima ~ => word base form]; + positivus_A : A ; -- [GXXEK] :: positive; + positor_M_N : N ; -- [XXXDX] :: builder, founder; + positus_M_N : N ; -- [XXXDX] :: situation, position; arrangement; + possessio_F_N : N ; -- [XXXBX] :: possession, property; + possessiuncula_F_N : N ; -- [XXXEC] :: small property; + possessor_M_N : N ; -- [XXXDX] :: owner, occupier; + possibilis_A : A ; -- [XXXDX] :: possible; + possideo_V : V ; -- [XXXBX] :: seize, hold, be master of; possess, take/hold possession of, occupy; inherit; + possido_V : V ; -- [XXXDX] :: seize, hold, be master of; possess, take/hold possession of, occupy; inherit; + possum_V : V ; -- [XXXAX] :: be able, can; [multum posse => have much/more/most influence/power]; + post_Acc_Prep : Prep ; -- [XXXAX] :: behind (space), after (time); subordinate to (rank); + post_Adv : Adv ; -- [XXXAX] :: behind, afterwards, after; + postalis_A : A ; -- [GXXEK] :: postal; + postatus_A : A ; -- [XXXEX] :: door-guarding; posted at door; + postea_Adv : Adv ; -- [XXXAX] :: afterwards; + posteaquam_Conj : Conj ; -- [XXXDX] :: after; + posterga_Adv : Adv ; -- [EXXFP] :: behind; behind one's back; + postergum_Adv : Adv ; -- [EXXFP] :: behind; behind one's back; + posterioritas_F_N : N ; -- [EXXFP] :: inferior/later position; + posteritas_F_N : N ; -- [XXXDX] :: future time; posterity; + posterius_Adv : Adv ; -- [XXXDX] :: later, at a later day; by and by; + posterus_A : A ; -- [XXXBO] :: coming after, following, next; COMP next in order, latter; SUPER last/hindmost; + posterus_M_N : N ; -- [XXXCO] :: descendants (pl.); posterity, future generations/ages; the future; successors; + postestas_F_N : N ; -- [FXXFM] :: power, rule, force; strength, ability; chance, opportunity; (also potestas); + postfactus_A : A ; -- [EXXFS] :: done afterwards; + postfero_V : V ; -- [XXXEC] :: consider of less account; + postgenitus_M_N : N ; -- [XXXEC] :: posterity (pl.), descendants; + posthabeo_V : V ; -- [XXXDX] :: esteem less, subordinate (to); postpone; + posthac_Adv : Adv ; -- [XXXCO] :: after this, in the future, hereafter, from now on; thereafter, from then on; + posthaec_Adv : Adv ; -- [XXXES] :: after this, in the future, hereafter, from now on; thereafter, from then on; + posthanc_Adv : Adv ; -- [XXXES] :: after this, in the future, hereafter, from now on; thereafter, from then on; + posthinc_Adv : Adv ; -- [XXXEW] :: after this, in the future, hereafter, from now on; thereafter, from then on; + posthoc_Adv : Adv ; -- [XXXES] :: after this, in the future, hereafter, from now on; thereafter, from then on; + posthumus_A : A ; -- [XLXES] :: late/last born (child), born late in life/after will; posthumous; last/final; + postibi_Adv : Adv ; -- [BXXFS] :: hereupon; afterwards; + posticulum_N_N : N ; -- [BXXFS] :: small outhouse; + posticum_N_N : N ; -- [XXXDX] :: back door; + posticus_A : A ; -- [XXXDX] :: back, rear; + postidea_Adv : Adv ; -- [BXXFS] :: afterwards; + postilena_F_N : N ; -- [XXXEC] :: crupper?, strap from back of saddle under horse's tail to prevent slipping; + postilla_Adv : Adv ; -- [XXXDO] :: afterwards, after that time; + postis_M_N : N ; -- [XXXBX] :: doorpost; + postliminium_N_N : N ; -- [XXXEC] :: right to return home; + postmeridianus_A : A ; -- [XXXEC] :: of the afternoon; + postmodo_Adv : Adv ; -- [XXXBX] :: afterwards, presently, later; + postmodum_Adv : Adv ; -- [XXXDX] :: after a while, later, a little later; afterwards; presently; + postnatus_A : A ; -- [FXXFM] :: younger; + postnatus_M_N : N ; -- [FLXFJ] :: eldest son; + postpartor_M_N : N ; -- [XLXEC] :: heir; + postpono_V2 : V2 ; -- [XXXDX] :: neglect; disregard; put after, consider secondary; set aside, postpone; + postputo_V2 : V2 ; -- [XXXES] :: consider less important; disregard; + postquam_Conj : Conj ; -- [XXXAX] :: after; + postremitas_F_N : N ; -- [EXXFP] :: inferior/later position; + postremo_Adv : Adv ; -- [XXXDX] :: at last, finally; + postremum_Adv : Adv ; -- [XXXDX] :: for the last time, last of all; finally; + postremus_A : A ; -- [XXXAO] :: last/final/latest/most recent; nearest end/farthest back/hindmost; worst/lowest; + postridie_Adv : Adv ; -- [XXXDX] :: on the following day; + postscaenium_N_N : N ; -- [XXXEC] :: theater behind scenes; + postscribo_V2 : V2 ; -- [XXXEC] :: write after; + postulatio_F_N : N ; -- [XXXDX] :: petition, request; + postulatum_N_N : N ; -- [XXXDX] :: demand, request; + postulo_V : V ; -- [XXXAX] :: demand, claim; require; ask/pray for; + postumus_A : A ; -- [XLXCO] :: late/last born (child), born late in life/after will; posthumous; last/final; + postuum_N_N : N ; -- [XXXFS] :: the end; that which is last/final; extremity; + postuus_M_N : N ; -- [XLXCS] :: posthumous child; + potator_M_N : N ; -- [XXXEO] :: drinker, one who drinks; tippler, drinker of intoxicants; + pote_A : A ; -- [XXXDX] :: able, capable; possible (early Latin); + potens_A : A ; -- [XXXAX] :: powerful, strong; capable; mighty; + potentatus_M_N : N ; -- [XXXDX] :: rule; political power; + potenter_Adv : Adv ; -- [XXXDO] :: effectively/cogently; in overbearing manner; powerfully, w/force; competently; + potentia_F_N : N ; -- [XXXBX] :: force, power, political power; + poterium_N_N : N ; -- [BXXFS] :: goblet; + potestas_F_N : N ; -- [XXXAX] :: power, rule, force; strength, ability; chance, opportunity; + potio_F_N : N ; -- [XXXDX] :: drinking, drink; + potionatus_A : A ; -- [XBXFO] :: dosed; that has had a potion given him to drink (L+S); + potiono_V2 : V2 ; -- [DXXES] :: give to drink; + potior_A : A ; -- [XLXAO] :: ||having better claim, more entitled/qualified, carrying greater weight; + potior_V : V ; -- [XXXAO] :: ||be/become master of (w/GEN/ABL), get possession/submission/hold of; + potis_A : A ; -- [XXXAX] :: able, capable; possible; (early Latin potis sum becomes possum); + potissime_Adv : Adv ; -- [XXXES] :: chiefly, principally, especially; eminently; above/before all; in best way; + potissimum_Adv : Adv ; -- [XXXBO] :: chiefly, principally, especially; eminently; above/before all; in best way; + potissimus_A : A ; -- [XXXDX] :: chief, principal, most prominent/powerful; strongest; foremost; + potissume_Adv : Adv ; -- [XXXES] :: chiefly, principally, especially; eminently; above/before all; in best way; + potissumum_Adv : Adv ; -- [XXXBO] :: chiefly, principally, especially; eminently; above/before all; in best way; + potito_V : V ; -- [XXXDX] :: drink; + potius_Adv : Adv ; -- [XXXDX] :: rather, more, preferably; + poto_V : V ; -- [XXXBO] :: drink; drink heavily/convivially, tipple; swallow; absorb, soak up; + potor_M_N : N ; -- [XXXCS] :: hard drinker; + potorium_N_N : N ; -- [XXXFO] :: drinking vessel; (usu. pl.) drinking vessels/bowls/cups/flagons; + potorius_A : A ; -- [XXXEO] :: used for drinking; (vessel); + potrix_F_N : N ; -- [XXXFO] :: drinker/tippler (female); she habitually with intoxicating drink; + potulentum_N_N : N ; -- [XXXDS] :: drink; + potulentus_A : A ; -- [XXXEO] :: tipsy, rather drunk; potable, suitable for drinking, drinkable; + potus_A : A ; -- [XXXDX] :: drunk; drunk up, drained; having drunk; being drunk, drunken, intoxicated; + potus_M_N : N ; -- [XXXCO] :: drink/draught; something to drink; (action of) drinking (intoxicating drink); + pr_Adv : Adv ; -- [XXXDX] :: day before (pridie), abb. pr; used in calendar expressions; + pr_N : N ; -- [XXXDX] :: praetor (official elected by the Romans who served as a judge); abb. pr.; + practicus_A : A ; -- [ESXDX] :: practical; + pradatorius_A : A ; -- [XXXEC] :: plundering, predatory; + prae_Abl_Prep : Prep ; -- [XXXAX] :: before, in front; in view of, because of; + prae_Adv : Adv ; -- [XXXBX] :: before, in front of; forward [prae sequor => go on before]; + praeacutus_A : A ; -- [XXXDX] :: sharpened, pointed; + praealtus_A : A ; -- [XXXDX] :: very high; very deep; + praeambula_F_N : N ; -- [FXXEM] :: forerunner; + praeambulo_V : V ; -- [DXXFS] :: walk before; precede; + praeambulum_N_N : N ; -- [FXXEM] :: preamble; preface; + praeambulus_A : A ; -- [DXXFS] :: walking before; preceding (Def); preparatory; preliminary (Latham); previous; + praeambulus_M_N : N ; -- [FXXEM] :: forerunner; + praebalteatus_A : A ; -- [FXXEN] :: girded; + praebeo_V2 : V2 ; -- [XXXAO] :: |make available, supply, provide; be the cause, occasion, produce; render; + praebibo_V2 : V2 ; -- [XXXFS] :: toast; drink a toast; + praebitor_M_N : N ; -- [XXXDS] :: purveyor; supplier; + praecalidus_A : A ; -- [XXXEC] :: very hot; + praecantrix_F_N : N ; -- [XXXEC] :: witch; + praecanus_A : A ; -- [XXXEC] :: prematurely gray; + praecaveo_V : V ; -- [XXXDX] :: guard (against), beware; + praecedentia_F_N : N ; -- [GXXEK] :: priority; + praecedo_V2 : V2 ; -- [XXXBX] :: go before, precede; surpass, excel; + praecelero_V : V ; -- [DPXDS] :: hasten before; + praecellens_A : A ; -- [EXXEF] :: surpassing, excellent, distinguished; preeminent; + praecellentia_F_N : N ; -- [EXXEP] :: preeminence; excellence; + praecello_V : V ; -- [XXXDX] :: excel; surpass; + praecelsus_A : A ; -- [XXXDX] :: exceptionally high or tall; + praecentio_F_N : N ; -- [XXXDS] :: prelude; + praecento_V : V ; -- [XXXDS] :: sing consolation for; + praeceps_A : A ; -- [XXXBX] :: head first, headlong; steep, precipitous; + praeceps_Adv : Adv ; -- [XXXDS] :: headlong; into danger; + praeceps_N_N : N ; -- [XXXDS] :: edge of abyss; great danger; + praeceptio_F_N : N ; -- [XXXCO] :: instruction; practical rule; preconception; preception, receiving legacy early; + praeceptor_M_N : N ; -- [XXXDX] :: teacher, instructor; + praeceptum_N_N : N ; -- [XXXDX] :: teaching, lesson, precept; order, command; + praecerpo_V2 : V2 ; -- [XXXDX] :: pluck before time; pluck or cut off; gather before it's time; + praecidentius_Adv : Adv ; -- [FXXEN] :: cautiously; + praecido_V2 : V2 ; -- [XXXDX] :: cut off in front; cut back, cut short; + praecingo_V2 : V2 ; -- [XXXDX] :: gird, surround, encircle; + praecino_V2 : V2 ; -- [XXXDX] :: predict; + praecipio_V2 : V2 ; -- [XXXAX] :: take or receive in advance; anticipate; warn; order; teach, instruct; + praecipito_V : V ; -- [XXXDX] :: throw headlong, cast down; + praecipue_Adv : Adv ; -- [XXXDX] :: especially; chiefly; + praecipuus_A : A ; -- [XXXAX] :: particular, especial; + praecisus_A : A ; -- [XXXDX] :: abrupt, precipitous; clipped, staccato; + praeclarus_A : A ; -- [XXXBX] :: very clear; splendid; famous; bright, illustrious; noble, distinguished; + praecludo_V2 : V2 ; -- [XXXDX] :: close, block; + praecluis_A : A ; -- [DXXDS] :: very famous; + praeco_M_N : N ; -- [XXXDX] :: herald, crier; + praecognosco_V2 : V2 ; -- [XXXEO] :: have foreknowledge of, get to know/become aware of/learn beforehand; + praecompositus_A : A ; -- [XXXEC] :: composed beforehand, studied; + praeconium_N_N : N ; -- [GXXEK] :: advertisement; + praeconius_A : A ; -- [GXXEK] :: |advertising; + praeconor_V : V ; -- [DXXDS] :: herald; proclaim; + praeconsumo_V2 : V2 ; -- [XXXDX] :: use up prematurely; + praecontrecto_V2 : V2 ; -- [XXXDS] :: pre-consider; feel in advance; + praecoquis_A : A ; -- [XXXDS] :: ripened too soon; premature; unseasonable; precocious; first-ripe; + praecordia_F_N : N ; -- [XXXCS] :: midriff; diaphragm; P:breast; + praecordium_N_N : N ; -- [XXXDX] :: vitals (pl.), diaphragm; breast; chest as the seat of feelings; + praecorrumpo_V2 : V2 ; -- [XXXDS] :: pre-bribe; bribe in advance; + praecox_A : A ; -- [XXXDX] :: ripened too soon; premature; unseasonable; precocious; + praecumbrans_A : A ; -- [DXXDS] :: darkening; obscuring; + praecurrentium_N_N : N ; -- [XXXDS] :: antecedent; + praecurro_V2 : V2 ; -- [XXXDX] :: run before, hasten on before; precede; anticipate; + praecursor_M_N : N ; -- [XXXDX] :: forerunner; member of advance-guard; + praecutio_V2 : V2 ; -- [XXXEC] :: shake before, brandish before; + praeda_F_N : N ; -- [XXXAX] :: booty, loot, spoils, plunder, prey; + praedabundus_A : A ; -- [XXXDX] :: pillaging; + praedator_M_N : N ; -- [XXXDX] :: plunderer, pillager; hunter; + praedatorius_A : A ; -- [XXXDX] :: plundering, rapacious; piratical; + praedecessor_M_N : N ; -- [EXXEP] :: predecessor; + praedelasso_V : V ; -- [XXXEC] :: weary beforehand; + praedesignatus_A : A ; -- [DXXFS] :: predesignated, designated beforehand; + praedestinatio_F_N : N ; -- [DEXES] :: predestination, determining beforehand; + praedestino_V2 : V2 ; -- [DXXDS] :: predestine, predetermine, determine beforehand; provide beforehand; + praedetermino_V2 : V2 ; -- [DXXFS] :: fix beforehand; + praediator_M_N : N ; -- [XXXEC] :: buyer of landed estates; + praediatorius_A : A ; -- [XXXEC] :: relating to the sale of land; + praedicamentum_N_N : N ; -- [FXXES] :: predicated event; + praedicatio_F_N : N ; -- [XXXCS] :: |publication, public proclamation; prediction/prophecy/soothsaying; preaching; + praedico_V2 : V2 ; -- [XXXBO] :: say beforehand, mention in advance; warn/predict/foretell; recommend/prescribe; + praedictum_N_N : N ; -- [XXXDX] :: prediction; forewarning; command; + praedictus_A : A ; -- [XXXDS] :: preceding, previously named, afore mentioned; predicted, foretold, warned; + praediolum_N_N : N ; -- [XXXEC] :: small estate, little farm; + praedisco_V : V ; -- [XXXDX] :: learn in advance; + praedisponeo_V : V ; -- [GXXEK] :: plan; + praedispositio_F_N : N ; -- [GXXEK] :: plan (project); + praedispositus_A : A ; -- [XXXEC] :: arranged at intervals beforehand; + praeditus_A : A ; -- [XXXDX] :: gifted; provided with; + praedium_N_N : N ; -- [XXXDX] :: farm, estate; + praedives_A : A ; -- [XXXDX] :: very rich; richly supplied; + praedivino_V2 : V2 ; -- [DXXDS] :: pre-divine; divine in advance; + praedo_M_N : N ; -- [XXXDX] :: robber, thief; pirate (if at sea); + praedo_V2 : V2 ; -- [XXXDX] :: pillage, despoil, plunder; rob/ravish/take; acquire loot (robbery/war); catch; + praedominium_N_N : N ; -- [GXXEK] :: pre-eminence; + praedor_V : V ; -- [XXXBO] :: |pillage, despoil; plunder, loot; take as prey/catch; + praeduco_V2 : V2 ; -- [XXXDX] :: extend; construct; + praedulcis_A : A ; -- [XXXDX] :: very sweet; + praeduro_V2 : V2 ; -- [DXXDS] :: harden; make very hard; + praedurus_A : A ; -- [XXXDX] :: very hard; very strong; + praeeo_1_V : V ; -- [XXXDX] :: go before, precede; dictate; + praeeo_2_V : V ; -- [XXXDX] :: go before, precede; dictate; + praefabricatus_A : A ; -- [GXXEK] :: prefabricated; + praefatio_F_N : N ; -- [XXXDX] :: preliminary form of words, formula of announcement; preface; + praefectianus_A : A ; -- [ELXFS] :: praetorian-perfectly; of the praetorian prefect; + praefectianus_M_N : N ; -- [ELXFS] :: praetorian prefect; + praefectura_F_N : N ; -- [XXXDX] :: command; office of praefectus; + praefectus_M_N : N ; -- [XXXDX] :: commander; prefect; + praefecus_M_N : N ; -- [XXXDX] :: director, president, chief, governor; + praefero_V : V ; -- [XXXBX] :: carry in front; prefer; display; offer; give preference to; + praeferox_A : A ; -- [XXXDX] :: very high-spirited; + praeferratus_A : A ; -- [XXXEC] :: tipped with iron; + praefervidus_A : A ; -- [XXXEC] :: burning hot, very hot; + praefestino_V : V ; -- [XXXES] :: be too hasty; hurry past; + praeficio_V2 : V2 ; -- [XXXAX] :: put in charge, place in command (with ACC and DAT); + praefigo_V2 : V2 ; -- [XXXDX] :: set in front; + praefiguratio_F_N : N ; -- [EXXEP] :: prototype, prefiguration; prophecy; anticipation; + praefinio_V2 : V2 ; -- [XXXDX] :: fix the range of; determine; + praefiscine_Adv : Adv ; -- [ELXFS] :: meaning no evil; without offense; + praefiscini_Adv : Adv ; -- [ELXFS] :: meaning no evil; without offense; + praefloro_V : V ; -- [XXXEC] :: deprive of blossoms; diminish, lessen; + praefluo_V2 : V2 ; -- [XXXEC] :: flow past; + praefoco_V : V ; -- [XXXEC] :: choke, suffocate; + praefodio_V2 : V2 ; -- [XXXDX] :: dig a trench in front of; bury beforehand; + praefor_V : V ; -- [XXXDX] :: say/utter/mention beforehand/in advance; recite (preliminary formula); + praefractus_A : A ; -- [XXXDS] :: broken; abrupt; stern (of character); + praefrigidus_A : A ; -- [XXXDX] :: very cold; + praefringo_V2 : V2 ; -- [XXXDX] :: break off at the end, break off short; + praefulcio_V2 : V2 ; -- [XXXDS] :: prop up; support; use as prop; + praefulgeo_V : V ; -- [XXXDX] :: shine with outstanding brightness, bean/shine forth; be outstanding, outshine; + praefulgidus_A : A ; -- [DXXDS] :: very bright; + praefurnium_N_N : N ; -- [XXXES] :: furnace-opening; heating room; + praegelidus_A : A ; -- [XXXDX] :: outstandingly cold; + praegestio_V : V ; -- [XXXES] :: be very eager; + praegnans_A : A ; -- [XXXDX] :: with child, pregnant; + praegnas_A : A ; -- [XXXDX] :: with child, pregnant; + praegnatio_F_N : N ; -- [XAXES] :: making pregnant; being pregnant; cause of fertility; + praegracilis_A : A ; -- [DXXDS] :: very slender; + praegravis_A : A ; -- [XXXDX] :: very heavy; burdensome; + praegravo_V : V ; -- [XXXDX] :: weigh down, burden; + praegredior_V : V ; -- [XXXDX] :: go ahead; go before, precede; surpass; + praegusto_V : V ; -- [XXXDX] :: taste in advance; + praegustus_M_N : N ; -- [GXXEK] :: foretaste; + praehendo_V2 : V2 ; -- [XXXAS] :: |catch up with; reach shore/harbor; understand, comprehend; get a grip on; + praehistoria_F_N : N ; -- [GXXEK] :: prehistory; + praehistoricus_A : A ; -- [GXXEK] :: prehistoric; + praeicio_V2 : V2 ; -- [XXXEO] :: throw/cast before/in front of; reject (L+S); utter reproachfully; oppose (Sax); + praeintelligo_V : V ; -- [EXXEP] :: have foreknowledge; + praejaceo_V2 : V2 ; -- [DXXDS] :: lie before; + praejacio_V2 : V2 ; -- [XXXEO] :: throw/cast before/in front of; reject (L+S); utter reproachfully; oppose (Sax); + praejicio_V2 : V2 ; -- [DXXFS] :: throw/cast before/in front of; reject (L+S); utter reproachfully; oppose (Sax); + praejudicatum_N_N : N ; -- [XXXES] :: pre-judgment; + praejudicialis_A : A ; -- [XLXES] :: prejudged; of predecision; prejudicial; + praejudicium_N_N : N ; -- [XXXDX] :: precedent, example; prejudgment; + praejudico_V2 : V2 ; -- [XXXDX] :: prejudge; decide beforehand; + praejuvo_V2 : V2 ; -- [DXXDS] :: aid before; give aid previously; + praelabor_V : V ; -- [XXXDX] :: flow/glide ahead/forward/past; + praelambo_V2 : V2 ; -- [XXXDS] :: lick first; P:wash lightly; + praelargus_A : A ; -- [DXXDS] :: very abundant; + praelego_V : V ; -- [ELXES] :: pre-bequeath; bequeath before inheritance is divided; + praelego_V2 : V2 ; -- [XXXDX] :: sail along; + praeligo_V2 : V2 ; -- [DXXDS] :: pre-bind; tie around; tether; + praelior_V : V ; -- [XXXES] :: do battle; (variant of proelior); + praelium_N_N : N ; -- [XWXAO] :: battle/fight/bout/conflict/dispute; armed/hostile encounter; bout of strength; + praelongus_A : A ; -- [XXXEC] :: very long; + praelonguus_A : A ; -- [XXXDX] :: exceptionally long; + praeloquor_V : V ; -- [XXXCO] :: speak/say first; forestall in speaking/saying; make preface/preliminary remarks; + praeluceo_V : V ; -- [XXXDX] :: shine forth, outshine; light the way (for); + praelusio_F_N : N ; -- [XXXEC] :: prelude; + praelustris_A : A ; -- [XXXEC] :: very fine; + praemandatatum_N_N : N ; -- [XXXDS] :: arrest warrant; + praemando_V2 : V2 ; -- [DXXFS] :: pre-order; + praematurus_A : A ; -- [XXXEC] :: too early, premature; + praemedicatus_A : A ; -- [XXXEC] :: protected by medicine or charms; + praemeditor_V : V ; -- [XXXDX] :: consider in advance; + praememoro_V2 : V2 ; -- [EXXEP] :: mention first; + praemetuo_V : V ; -- [XXXDX] :: fear beforehand; + praemico_V : V ; -- [DXXDS] :: glitter forth; + praemineo_V : V ; -- [DXXDS] :: excel; be prominent; (prae-emineo); + praeminister_M_N : N ; -- [DXXDS] :: servant; + praeministra_F_N : N ; -- [DXXDS] :: female servant; + praeministro_V : V ; -- [DXXDS] :: attend to; minister to; + praemitto_V2 : V2 ; -- [XXXDX] :: send ahead or forward; + praemium_N_N : N ; -- [XXXAX] :: prize, reward; gift; recompense; + praemolestia_F_N : N ; -- [XXXEC] :: trouble beforehand; + praemolior_V : V ; -- [XXXEO] :: soften beforehand; prepare/make preparations beforehand (L+S); + praemoneo_V : V ; -- [XXXDX] :: forewarn; + praemonitus_M_N : N ; -- [XXXDX] :: forewarning; + praemonstrator_M_N : N ; -- [XXXFS] :: guide; + praemordeo_V2 : V2 ; -- [XXXDS] :: bite off; pilfer; + praemorior_V : V ; -- [XXXDX] :: die beforehand (esp. body parts/facilities which cease before person's death); + praemoveo_V2 : V2 ; -- [DXXDS] :: pre-move; move beforehand; stir greatly; + praemunio_V2 : V2 ; -- [XXXDX] :: fortify, defend in advance; safeguard; + praemunitio_F_N : N ; -- [XGXDS] :: preparation; pre-strengthening; + praenarro_V2 : V2 ; -- [XXXDS] :: tell beforehand; + praenatalis_A : A ; -- [GBXEK] :: prenatal; + praenato_V : V ; -- [XXXDX] :: swim by; flow by; + praenavigatio_F_N : N ; -- [DXXDS] :: sailing by; + praenavigo_V : V ; -- [DXXDS] :: sail along; sail past; + praendo_V2 : V2 ; -- [XXXAS] :: |catch up with; reach shore/harbor; understand, comprehend; get a grip on; + praeniteo_V : V ; -- [XXXDS] :: shine forth; + praenomen_N_N : N ; -- [XXXDX] :: first name, personal name; noun which precedes another noun (gram.); + praenosco_V : V ; -- [XXXDX] :: foreknow; + praenotio_F_N : N ; -- [XXXEC] :: preconception, innate idea; + praenoto_V : V ; -- [XXXFS] :: mark before; note down; predict; L:entitle; + praenubilus_A : A ; -- [XXXEC] :: very cloudy or dark; + praenuntio_V : V ; -- [XXXDX] :: announce in advance; + praenuntius_A : A ; -- [XXXDX] :: acting as harbinger; heralding; + praeoccupo_V : V ; -- [XXXDX] :: seize upon beforehand; anticipate; + praeolit_V0 : V ; -- [XXXFS] :: pre-perceive; perceive before; + praeopto_V : V ; -- [XXXDX] :: prefer; + praepando_V2 : V2 ; -- [XXXEC] :: open wide in front, extend before; + praeparatio_F_N : N ; -- [XXXDX] :: preparation; + praeparo_V : V ; -- [XXXAX] :: prepare; + praepedio_V2 : V2 ; -- [XXXCO] :: shackle, fetter, tie by an extremity; hinder/obstruct/impede; entangle the feet; + praependeo_V : V ; -- [XXXDX] :: hang down in front; + praepes_A : A ; -- [XXXDX] :: flying straight ahead; nimble, fleet; winged; + praepes_F_N : N ; -- [XXXDS] :: bird; bird of omen; + praepilatus_A : A ; -- [XXXEC] :: having button in front (of foils, etc.); + praepinguis_A : A ; -- [XXXDX] :: outstandingly/exceptionally rich/fat, "filthy rich"; very thick (voice); + praepolleo_V : V ; -- [XXXDS] :: be very powerful; be very strong; + praepondero_V2 : V2 ; -- [XXXDS] :: outweigh; be of more weight; + praepono_V2 : V2 ; -- [XXXBX] :: place in command, in front of or before; put X (ACC) in front of Y (DAT); + praeporto_V2 : V2 ; -- [XXXDS] :: carry before; + praepositio_F_N : N ; -- [XGXCO] :: prefixing (word); preposition, prefix; placing in front/in charge; preference; + praepositus_M_N : N ; -- [XXXDS] :: overseer; commander; + praepossum_V : V ; -- [DXXDS] :: be very powerful; gain upper hand; + praeposterus_A : A ; -- [XXXDX] :: in the wrong order; wrong-headed; topsy-turvy; + praepotens_A : A ; -- [XXXDX] :: very powerful; + praeproperanter_Adv : Adv ; -- [XXXEC] :: very hastily; + praeproperus_A : A ; -- [XXXDX] :: very hurried, precipitate; too hasty; + praeputiatio_F_N : N ; -- [XEXFS] :: having/retaining foreskin/prepuce (state of), being uncircumcised; + praeputiatus_A : A ; -- [XEXFS] :: uncircumcised, having/retaining foreskin/prepuce, uncut; + praeputio_V2 : V2 ; -- [XEXFS] :: drawing out the foreskin/prepuce; + praeputium_N_N : N ; -- [XBXEO] :: foreskin, prepuce; (usu.pl.); state of not being circumcised, having prepuce; + praequeror_V : V ; -- [XXXFO] :: complain beforehand; + praeradio_V2 : V2 ; -- [XPXDS] :: outshine; + praerapidus_A : A ; -- [XXXEC] :: very rapid; + praerigesco_V : V ; -- [DXXFS] :: become very stiff; + praeripio_V2 : V2 ; -- [XXXDX] :: snatch away (before the proper time); seize first; forestall; + praerodo_V2 : V2 ; -- [XXXDS] :: bite off end; nibble off; + praerogatio_F_N : N ; -- [DXXDS] :: pre-distribution; + praerogativa_F_N : N ; -- [XXXDX] :: tribe/centuria which voted first; its verdict; omen; prior right/prerogative; + praerogativus_A : A ; -- [XXXEC] :: asked before others (for vote, opinion, etc.); + praerogatus_A : A ; -- [DXXDS] :: pre-asked; asked before; + praerogo_V2 : V2 ; -- [DXXDS] :: ask first; pay in advance; + praerumpo_V2 : V2 ; -- [XXXDX] :: break off; + praeruptus_A : A ; -- [XXXDX] :: steep; + praes_M_N : N ; -- [XXXDX] :: surety, bondsman; + praesaepe_N_N : N ; -- [XXXCO] :: crib; manger; stall (cattle/horses feed); brothel; haunt; lodging; home turf; + praesaepes_F_N : N ; -- [XXXDX] :: crib, manger, stall (cattle/horses feed); brothel; haunt, lodging, home turf; + praesaepio_V2 : V2 ; -- [XXXDX] :: block up/fence in front; + praesaepium_N_N : N ; -- [XXXDX] :: crib, manger, stall (cattle/horses feed); brothel; haunt, lodging, home turf; + praesaeptus_A : A ; -- [XXXDX] :: blocked; + praesagio_V2 : V2 ; -- [XXXDX] :: have presentiment (of); portend; + praesagitio_F_N : N ; -- [XXXEC] :: foreboding, presentiment; + praesagium_N_N : N ; -- [XXXDX] :: sense of foreboding; prognostication; + praesagus_A : A ; -- [XXXDX] :: having foreboding; ominous; + praescienter_Adv : Adv ; -- [DXXES] :: with foreknowledge, presciently; + praescientia_F_N : N ; -- [DXXDS] :: foreknowledge, prescience; + praescio_V2 : V2 ; -- [DXXDS] :: foreknow; know in advance; + praescisco_V2 : V2 ; -- [XXXCO] :: get to know/find out/learn beforehand; + praescitio_F_N : N ; -- [DXXFS] :: foreknowledge; prognostic; pre-knowledge; prescience; + praescitum_N_N : N ; -- [XXXNO] :: foreknowledge; something known beforehand; a prognostication; + praescius_A : A ; -- [XXXCO] :: having foreknowledge, prescient; + praescribo_V2 : V2 ; -- [XXXDX] :: order, direct; + praescriptio_F_N : N ; -- [XLXCO] :: preface/preamble/title/heading; preliminary; precept/rule; pretext/excuse/cover; + praescriptum_N_N : N ; -- [XXXDX] :: precept, rule; route; + praeseco_V : V ; -- [XXXDX] :: cut in front, cut; + praesegmen_N_N : N ; -- [XXXDX] :: paring; + praeselectorius_A : A ; -- [GXXEK] :: prefixed; pre-selected; + praesens_A : A ; -- [XXXAX] :: present; at hand; existing; prompt, in person; propitious; + praesentarie_Adv : Adv ; -- [EXXFP] :: in a moment; promptly/quickly; instantly; + praesentarius_A : A ; -- [XXXCS] :: present; that is at hand; existing; prompt/quick/ready; that operates instantly; + praesentatio_F_N : N ; -- [DXXCS] :: presentation, placing before; exhibition, showing, representation; + praesente_N_N : N ; -- [XXXDS] :: present circumstance; + praesenter_Adv : Adv ; -- [EXXFP] :: face to face; in the presence; + praesentia_F_N : N ; -- [XXXBX] :: present time; presence; + praesentialis_A : A ; -- [EXXEP] :: present; that is at hand; existing; prompt/quick/ready; + praesentialiter_Adv : Adv ; -- [EXXFP] :: face to face; in the presence; + praesentio_V2 : V2 ; -- [XXXBX] :: feel or perceive beforehand; have a presentiment of; + praesento_V2 : V2 ; -- [XXXEO] :: present (to mind/senses), exhibit (to view), show (oneself); hold out; hand to; + praesepe_N_N : N ; -- [XXXCO] :: crib; manger; stall (cattle/horses feed); brothel; haunt; lodging; home turf; + praesepes_F_N : N ; -- [XXXDX] :: crib, manger, stall (cattle/horses feed); brothel; haunt, lodging, home turf; + praesepio_V2 : V2 ; -- [XXXDX] :: block up/fence in front; + praesepium_N_N : N ; -- [XXXDX] :: crib, manger, stall (cattle/horses feed); brothel; haunt, lodging, home turf; + praesertim_Adv : Adv ; -- [XXXBX] :: especially; particularly; + praeservativum_N_N : N ; -- [GXXEK] :: preservative; condom; + praeservio_V : V ; -- [XXXDS] :: serve as slave; praeses_F_N : N ; -- [XXXDX] :: protector; guard; guardian; defender; chief; president, governor, procurator; - praeses_M_N : N ; - praesidalis_A : A ; - praesidentia_F_N : N ; - praesidentialis_A : A ; - praesideo_V2 : V2 ; - praesidialis_A : A ; - praesidiarius_A : A ; - praesidium_N_N : N ; - praesignis_A : A ; - praespargo_V2 : V2 ; - praestabilis_A : A ; - praestans_A : A ; - praestantia_F_N : N ; - praestat_V0 : V ; - praestatio_F_N : N ; - praesterno_V2 : V2 ; - praestigia_F_N : N ; - praestigiator_M_N : N ; - praestigiatrix_F_N : N ; - praestigiosus_A : A ; - praestigium_N_N : N ; - praestino_V : V ; - praestituo_V2 : V2 ; - praesto_Adv : Adv ; - praesto_V : V ; - praestolatio_F_N : N ; - praestolor_V : V ; - praestrigia_F_N : N ; - praestringo_V2 : V2 ; - praestruo_V2 : V2 ; + praeses_M_N : N ; -- [XXXDX] :: protector; guard; guardian; defender; chief; president, governor, procurator; + praesidalis_A : A ; -- [DLXDS] :: gubernatorial; of/belonging to the governor of a province; + praesidentia_F_N : N ; -- [GXXEK] :: presidency; + praesidentialis_A : A ; -- [GXXEK] :: presidential; + praesideo_V2 : V2 ; -- [XXXBO] :: keep/watch/stand//guard (over); preside (over); supervise/govern/control; + praesidialis_A : A ; -- [DLXDS] :: gubernatorial; of/belonging to the governor of a province; + praesidiarius_A : A ; -- [XXXEC] :: on guard; + praesidium_N_N : N ; -- [XXXAX] :: protection; help; guard; garrison, detachment; + praesignis_A : A ; -- [XXXDX] :: pre-eminent, outstanding; + praespargo_V2 : V2 ; -- [XXXDS] :: scatter before; + praestabilis_A : A ; -- [XXXDX] :: pre-eminent, superior; distinguished, excellent; + praestans_A : A ; -- [XXXBO] :: excellent, outstanding (in quality/worth/degree/importance), surpassing all; + praestantia_F_N : N ; -- [XXXDX] :: excellence, outstanding excellence, pre-eminence, superiority; + praestat_V0 : V ; -- [XXXDX] :: it is better; + praestatio_F_N : N ; -- [XXXCO] :: payment (money/goods/services obligated); warranty/immunity/guarantee (against); + praesterno_V2 : V2 ; -- [DXXDS] :: pre-spread; prepare; + praestigia_F_N : N ; -- [XXXCO] :: deception (pl.), illusion, tricks; action to deceive/hoodwink; juggling (L+S); + praestigiator_M_N : N ; -- [XXXCO] :: trickster, one who practices deceit; juggler; impostor, cheat, deceiver (L+S); + praestigiatrix_F_N : N ; -- [XXXDS] :: trickster; conjurer; + praestigiosus_A : A ; -- [EXXFS] :: deceitful; + praestigium_N_N : N ; -- [DXXES] :: delusion, illusion, tricks; magic (Sax); + praestino_V : V ; -- [XXXFS] :: buy; purchase; + praestituo_V2 : V2 ; -- [XXXDX] :: determine in advance; + praesto_Adv : Adv ; -- [XXXBO] :: ready, available, at hand, waiting, on the spot, at one's service; + praesto_V : V ; -- [XXXAO] :: ||apply, bring to bear; fulfill, make good; keep word; be responsible for; + praestolatio_F_N : N ; -- [DXXES] :: expectation, waiting for; + praestolor_V : V ; -- [XXXDX] :: stand ready for, expect, wait for (w/DAT or ACC); + praestrigia_F_N : N ; -- [XXXDO] :: deception (pl.), illusion, tricks; action to deceive/hoodwink; juggling (L+S); + praestringo_V2 : V2 ; -- [XXXDX] :: bind or tie up; graze, weaken, blunt; + praestruo_V2 : V2 ; -- [XXXDX] :: block up, contrive beforehand; 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 ; - praesultator_M_N : N ; - praesulto_V : V ; - praesum_V : V ; - praesumo_V2 : V2 ; - praesumptio_F_N : N ; - praesumptive_Adv : Adv ; - praesumptivus_A : A ; - praesumptor_M_N : N ; - praesupponeo_V : V ; - praesuppositio_F_N : N ; - praesutus_A : A ; - praetempto_V2 : V2 ; - praetendo_V2 : V2 ; - praetento_V2 : V2 ; - praetenuis_A : A ; - praetepeo_V : V ; - praeter_Acc_Prep : Prep ; - praeterago_V2 : V2 ; - praeterbito_V : V ; - praeterduco_V2 : V2 ; - praeterea_Adv : Adv ; - praetereo_1_V2 : V2 ; - praetereo_2_V2 : V2 ; - praeterequitans_A : A ; - praeterfluo_V : V ; - praetergredior_V : V ; - praeteritum_N_N : N ; - praeteritus_A : A ; - praeterlabor_V : V ; - praeterlatus_A : A ; - praetermissio_F_N : N ; - praetermitto_V2 : V2 ; - praeternavigo_V : V ; - praeterquam_Acc_Prep : Prep ; - praeterquam_Adv : Adv ; - praetervectio_F_N : N ; - praetervehor_V : V ; - praetervolo_V : V ; - praetexo_V2 : V2 ; - praetexta_F_N : N ; - praetextatus_A : A ; - praetextum_N_N : N ; - praetextus_A : A ; - praetimeo_V : V ; - praetinctus_A : A ; - praetor_M_N : N ; - praetorianus_A : A ; - praetorianus_M_N : N ; - praetorium_N_N : N ; - praetorius_A : A ; - praetorius_M_N : N ; - praetorqueo_V2 : V2 ; - praetrepido_V : V ; - praetrepidus_A : A ; - praetrunco_V2 : V2 ; - praetumidus_A : A ; - praetura_F_N : N ; - praeuro_V2 : V2 ; - praeustus_A : A ; - praevaleo_V : V ; - praevalidus_A : A ; - praevaricatio_F_N : N ; - praevaricator_M_N : N ; - praevaricatrix_F_N : N ; - praevarico_V : V ; - praevaricor_V : V ; - praevehor_V : V ; - praevenio_V2 : V2 ; - praeverbium_N_N : N ; - praeverro_V2 : V2 ; - praeverto_V2 : V2 ; - praevideo_V : V ; - praevitio_V2 : V2 ; - praevius_A : A ; - praevolo_V : V ; - praevorto_V2 : V2 ; - pragmaticus_A : A ; - pragmatismus_M_N : N ; - prandeo_V : V ; - prandiolum_N_N : N ; - prandium_N_N : N ; - pransor_M_N : N ; - prasinus_A : A ; - prasius_M_N : N ; - pratensis_A : A ; - pratulum_N_N : N ; - pratum_N_N : N ; - pratus_M_N : N ; - pravicordius_A : A ; - pravicors_A : A ; - pravitas_F_N : N ; - pravo_V : V ; - pravus_A : A ; - preambula_F_N : N ; - preambulum_N_N : N ; - preambulus_A : A ; - preambulus_M_N : N ; - prebeo_V2 : V2 ; - precabundus_A : A ; - precarius_A : A ; - precatio_F_N : N ; - precatus_M_N : N ; - precia_F_N : N ; - precium_N_N : N ; - preconcipio_V2 : V2 ; - precor_V : V ; - precordialis_A : A ; - predictus_A : A ; - predignus_A : A ; - preexisto_V : V ; - prehendo_V2 : V2 ; - prehenso_V2 : V2 ; - preludium_N_N : N ; - prelum_N_N : N ; - premagnus_A : A ; - premo_V2 : V2 ; - premotio_F_N : N ; - prenda_F_N : N ; - prendo_V2 : V2 ; - prensatio_F_N : N ; - prensio_F_N : N ; - prenso_V2 : V2 ; - presbyta_F_N : N ; - presbyter_M_N : N ; - presbyteralis_A : A ; - presbyterissa_F_N : N ; - presbyterium_N_N : N ; - presbyterus_M_N : N ; - presbytia_F_N : N ; - presignio_V2 : V2 ; - pressio_F_N : N ; - presso_V : V ; - pressule_Adv : Adv ; - pressulus_A : A ; - pressus_A : A ; - pressus_M_N : N ; - prester_M_N : N ; - pretiositas_F_N : N ; - pretiosus_A : A ; - pretium_N_N : N ; - prex_F_N : N ; - priapeus_A : A ; - pridem_Adv : Adv ; - pridianum_N_N : N ; - pridianus_A : A ; - pridie_Adv : Adv ; - pridile_Adv : Adv ; - primaevus_A : A ; - primanus_M_N : N ; - primarius_A : A ; - primas_A : A ; - primatus_M_N : N ; - primicauponius_M_N : N ; - primicerius_M_N : N ; - primigenius_A : A ; - primigenus_A : A ; - primipilaris_A : A ; - primipilus_M_N : N ; - primiscrinius_M_N : N ; - primitia_F_N : N ; - primitivus_A : A ; - primitus_Adv : Adv ; - primo_Adv : Adv ; - primogenitalis_A : A ; - primogenitum_N_N : N ; - primogenitus_A : A ; - primogenius_A : A ; - primopilaris_A : A ; - primopilus_M_N : N ; - primordium_N_N : N ; - primoris_A : A ; - primoris_M_N : N ; - primula_F_N : N ; - primulus_A : A ; - primum_Adv : Adv ; - primus_A : A ; - primus_M_N : N ; - princeps_A : A ; - princeps_M_N : N ; - principalis_A : A ; - principalitas_F_N : N ; - principaliter_Adv : Adv ; - principatus_M_N : N ; - principialis_A : A ; - principio_V : V ; - principissa_F_N : N ; - principium_N_N : N ; - principor_V : V ; - prinus_F_N : N ; - prior_A : A ; - prior_M_N : N ; - prioratus_M_N : N ; - priorissa_F_N : N ; - prioritas_F_N : N ; - priscus_A : A ; - prisona_F_N : N ; - pristinus_A : A ; - pristis_F_N : N ; - prius_Adv : Adv ; - prius_N_N : N ; - priusquam_Conj : Conj ; - privatim_Adv : Adv ; - privatus_A : A ; - privatus_M_N : N ; - privigna_F_N : N ; - privignus_M_N : N ; - privilegiatus_A : A ; - privilegium_N_N : N ; - privo_V : V ; - privus_A : A ; - pro_Abl_Prep : Prep ; - proagorus_M_N : N ; - proavia_F_N : N ; - proavitus_A : A ; - proavus_M_N : N ; - proba_F_N : N ; - probabilis_A : A ; - probabilitas_F_N : N ; - probabiliter_Adv : Adv ; - probalis_A : A ; - probatio_F_N : N ; - probator_M_N : N ; - probe_Adv : Adv ; - probitas_F_N : N ; - problema_N_N : N ; - problematicum_N_N : N ; - problematicus_A : A ; - problematum_N_N : N ; - probo_V2 : V2 ; - proboscis_F_N : N ; - probrosus_A : A ; - probrum_N_N : N ; - probus_A : A ; - procacitas_F_N : N ; - procax_A : A ; - procedo_V2 : V2 ; - proceleumaticus_M_N : N ; - procella_F_N : N ; - procellosus_A : A ; - procer_M_N : N ; - procere_Adv : Adv ; - proceritas_F_N : N ; - procerus_A : A ; - processus_M_N : N ; - procido_V2 : V2 ; - prociedo_V2 : V2 ; - procinctualis_A : A ; - procinctus_M_N : N ; - procingo_V2 : V2 ; - proclamator_M_N : N ; - proclamo_V : V ; - proclino_V : V ; - proclivis_A : A ; - proclivitas_F_N : N ; - proclivus_A : A ; - proco_V2 : V2 ; - procoeton_M_N : N ; - proconsul_M_N : N ; - proconsularis_A : A ; - proconsulatus_M_N : N ; - procor_V : V ; - procrastinatio_F_N : N ; - procrastino_V : V ; - procreo_V : V ; - procresco_V : V ; - procubo_V : V ; - procudo_V2 : V2 ; - procul_Adv : Adv ; - proculco_V : V ; - procumbo_V2 : V2 ; - procuratio_F_N : N ; - procurator_M_N : N ; - procuratorius_A : A ; - procuro_V : V ; - procurro_V2 : V2 ; - procursatio_F_N : N ; - procursator_M_N : N ; - procurso_V : V ; - procursus_M_N : N ; - procurvus_A : A ; - procus_M_N : N ; - prodeambulo_V : V ; - prodecessor_M_N : N ; - prodeo_V : V ; - prodico_V2 : V2 ; - prodictator_M_N : N ; - prodigentia_F_N : N ; - prodigialiter_Adv : Adv ; - prodigialus_A : A ; - prodigilitas_F_N : N ; - prodigiosus_A : A ; - prodigium_N_N : N ; - prodigo_V2 : V2 ; - prodigus_A : A ; - prodio_V : V ; - proditio_F_N : N ; - proditiose_Adv : Adv ; - proditor_M_N : N ; - proditrix_F_N : N ; - prodo_V2 : V2 ; - prodoceo_V : V ; - prodromus_M_N : N ; - produco_V2 : V2 ; - productio_F_N : N ; - producto_V : V ; - productum_N_N : N ; - proegmenon_N_N : N ; - proeliator_M_N : N ; - proelior_V : V ; - proelium_N_N : N ; - profano_V : V ; - profanus_A : A ; - profecticius_A : A ; - profectio_F_N : N ; - profectitius_A : A ; - profecto_Adv : Adv ; - profectus_M_N : N ; - profero_V : V ; - professio_F_N : N ; - professionalis_A : A ; - professorius_A : A ; - profestus_A : A ; - proficio_V2 : V2 ; - proficiscor_V : V ; - proficuus_A : A ; - profisceo_V : V ; - profiteor_V : V ; - profligatus_A : A ; - profligo_V : V ; - proflo_V : V ; - profluentia_F_N : N ; - profluo_V2 : V2 ; - profluus_A : A ; - profluvium_N_N : N ; - profor_V : V ; - profugio_V2 : V2 ; - profugus_A : A ; - profugus_C_N : N ; - profunditas_F_N : N ; - profundo_V2 : V2 ; - profundum_N_N : N ; - profundus_A : A ; - profusio_F_N : N ; - profusus_A : A ; - progagus_M_N : N ; - progener_M_N : N ; - progenero_V2 : V2 ; - progenies_F_N : N ; - progenitor_M_N : N ; - progero_V2 : V2 ; - progigno_V2 : V2 ; - prognariter_Adv : Adv ; - prognatus_A : A ; - programma_N_N : N ; - programmatio_F_N : N ; - programmator_M_N : N ; - programmo_V : V ; - progredior_V : V ; - progressio_F_N : N ; - progressus_M_N : N ; - progymnasma_F_N : N ; - prohemium_N_N : N ; - prohibeo_V : V ; - prohibesseo_V : V ; - prohibitio_F_N : N ; - prohibitorius_A : A ; - prohoemium_N_N : N ; - proicio_V2 : V2 ; - proiectorium_N_N : N ; - proin_Adv : Adv ; - proinde_Adv : Adv ; - projecticius_A : A ; - projectilis_M_N : N ; - projectio_F_N : N ; - projectitius_A : A ; - projectus_A : A ; - projicio_V2 : V2 ; - prolabor_V : V ; - prolapsio_F_N : N ; - prolatio_F_N : N ; - prolato_V : V ; - prolecto_V : V ; - proles_F_N : N ; - proletariatus_M_N : N ; - proletarius_A : A ; - proletarius_M_N : N ; - prolicio_V : V ; - prolixe_Adv : Adv ; - prolixitas_F_N : N ; - prolixo_V2 : V2 ; - prolixus_A : A ; - prologus_M_N : N ; - prolongo_V2 : V2 ; - proloquium_N_N : N ; - proloquor_V : V ; - proludo_V2 : V2 ; - proluo_V2 : V2 ; + praesul_M_N : N ; -- [EEXEE] :: patron/protector; prelate/bishop/Church dignitary; dancer leading procession; + praesulatus_M_N : N ; -- [EEXFS] :: superintendent's office; + praesulsus_A : A ; -- [XXXFO] :: very salty, very salt, salted very heavily;; + praesultator_M_N : N ; -- [XXXDS] :: public dancer; + praesulto_V : V ; -- [XXXDX] :: dance/leap before/in front of; + praesum_V : V ; -- [XXXBX] :: be in charge/control/head (of) (w/DAT); take the lead (in); be present (at); + praesumo_V2 : V2 ; -- [XXXBO] :: consume/perform/employ beforehand; anticipate; presuppose/presume/assume; dare; + praesumptio_F_N : N ; -- [XXXCO] :: presumption; anticipation of objection; stubbornness; enjoying anticipation; + praesumptive_Adv : Adv ; -- [XXXES] :: presumptuously; + praesumptivus_A : A ; -- [FXXFM] :: presumptuous; presumptive; + praesumptor_M_N : N ; -- [XLXES] :: possession-taker; reckless or presumptuous fellow; + praesupponeo_V : V ; -- [GXXEK] :: presuppose; + praesuppositio_F_N : N ; -- [FXXEM] :: assumption; presupposition; + praesutus_A : A ; -- [XXXEC] :: sewn over in front; + praetempto_V2 : V2 ; -- [XXXDO] :: pre-test, try out in advance; feel/search/grope out beforehand; + praetendo_V2 : V2 ; -- [XXXDX] :: stretch out; spread before; extend in front; allege in excuse; + praetento_V2 : V2 ; -- [XXXFO] :: allege; hold out as a reason; + praetenuis_A : A ; -- [DXXDS] :: very thin; very slender; very shrill; + praetepeo_V : V ; -- [XPXDS] :: glow before; + praeter_Acc_Prep : Prep ; -- [XXXAX] :: besides, except, contrary to; beyond (rank), in front of, before; more than; + praeterago_V2 : V2 ; -- [XXXDS] :: drive past/by; + praeterbito_V : V ; -- [XXXDS] :: pass by; drive past/by; + praeterduco_V2 : V2 ; -- [XXXDS] :: lead past; + praeterea_Adv : Adv ; -- [XXXAX] :: besides, thereafter; in addition; + praetereo_1_V : V ; -- [XXXAO] :: pass/go by; disregard/neglect/omit/miss; surpass/excel; go overdue; pass over; + praetereo_2_V : V ; -- [XXXAO] :: pass/go by; disregard/neglect/omit/miss; surpass/excel; go overdue; pass over; + praeterequitans_A : A ; -- [XXXDS] :: riding past; + praeterfluo_V : V ; -- [XXXDX] :: flow past; + praetergredior_V : V ; -- [XXXDX] :: march or go past; + praeteritum_N_N : N ; -- [XXXDX] :: past (pl.); past times; bygone events; + praeteritus_A : A ; -- [XXXDX] :: past; + praeterlabor_V : V ; -- [XXXDX] :: glide or slip past; + praeterlatus_A : A ; -- [XXXDS] :: driving past; flying past; + praetermissio_F_N : N ; -- [XXXES] :: omission; passing over; neglect; + praetermitto_V2 : V2 ; -- [XXXDX] :: let pass; pass over; omit; overlook; + praeternavigo_V : V ; -- [DXXDS] :: sail by; + praeterquam_Acc_Prep : Prep ; -- [XXXDX] :: except, besides, beyond, contrary to; + praeterquam_Adv : Adv ; -- [XXXDX] :: except, besides; + praetervectio_F_N : N ; -- [XXXDS] :: passing by; + praetervehor_V : V ; -- [XXXDX] :: sail by, pass by, ride by; be born by; + praetervolo_V : V ; -- [XXXDX] :: fly past; slip by; + praetexo_V2 : V2 ; -- [XXXDS] :: border; adorn; D:tragedy; + praetexta_F_N : N ; -- [XXXDX] :: toga bordered with purple worn by children over 16 and magistrates; + praetextatus_A : A ; -- [XXXDX] :: underage; juvenile; wearing a toga praetexta; + praetextum_N_N : N ; -- [XXXEC] :: pretense; pretext; + praetextus_A : A ; -- [XXXDX] :: bordered; wearing a toga ~; [toga ~ => high magistrate's purple bordered toga]; + praetimeo_V : V ; -- [XXXDS] :: fear in advance; + praetinctus_A : A ; -- [XXXEC] :: moistened beforehand; + praetor_M_N : N ; -- [XXXDX] :: praetor (official elected by the Romans who served as a judge); abb. pr.; + praetorianus_A : A ; -- [XWXDO] :: praetorian; of/belonging to the praetorian cohorts/Imperial bodyguard; + praetorianus_M_N : N ; -- [XWXEO] :: praetorian; soldier belonging to the praetorian cohorts/Imperial bodyguard; + praetorium_N_N : N ; -- [XWXDX] :: general's tent; headquarters; governor's residence, government house; palace; + praetorius_A : A ; -- [XWXDX] :: praetorian; [porta praetoria => the praetorian gate, front gate of the camp]; + praetorius_M_N : N ; -- [XLXDS] :: ex-praetor; + praetorqueo_V2 : V2 ; -- [XXXDS] :: twist round; + praetrepido_V : V ; -- [XXXEC] :: be hasty or impatient; + praetrepidus_A : A ; -- [DXXDS] :: much-trembling; + praetrunco_V2 : V2 ; -- [XXXDS] :: cut off; clip; + praetumidus_A : A ; -- [DXXDS] :: very swollen; + praetura_F_N : N ; -- [XXXDX] :: praetorship; + praeuro_V2 : V2 ; -- [XXXDX] :: scorch at the extremity or on the surface; + praeustus_A : A ; -- [XXXDX] :: burnt at the end; hardened by burning; + praevaleo_V : V ; -- [XXXDX] :: prevail; have superior power/force/weight/influence/worth/efficacy (medicine); + praevalidus_A : A ; -- [XXXDX] :: very strong; strong in growth; + praevaricatio_F_N : N ; -- [XLXEC] :: collusion; transgression (Plater); + praevaricator_M_N : N ; -- [XLXEC] :: advocate guilty of collusion; transgressor (Plater); + praevaricatrix_F_N : N ; -- [XEXFS] :: female sinner; + praevarico_V : V ; -- [DXXDS] :: transgress, sin against; violate; be in collusion; be/walk crooked/not upright; + praevaricor_V : V ; -- [XLXDO] :: |straddle; have secret understanding w/enemy; + praevehor_V : V ; -- [XXXDX] :: travel past or along; + praevenio_V2 : V2 ; -- [XXXBO] :: arrive/occur/come first/before/too soon; precede; surpass; anticipate/forestall; + praeverbium_N_N : N ; -- [XXXDX] :: prefix (gram.); + praeverro_V2 : V2 ; -- [XPXDS] :: presweep; sweep before; + praeverto_V2 : V2 ; -- [XXXDX] :: anticipate; preoccupy, attend to first; outstrip, outrun; + praevideo_V : V ; -- [XXXDX] :: foresee, see in advance; + praevitio_V2 : V2 ; -- [XXXDS] :: precorrupt; corrupt in advance; + praevius_A : A ; -- [XXXDX] :: going before, leading the way; + praevolo_V : V ; -- [XXXDS] :: fly before; + praevorto_V2 : V2 ; -- [XXXFS] :: anticipate; preoccupy, attend to first; outstrip, outrun; + pragmaticus_A : A ; -- [GXXEK] :: |pragmatic; + pragmatismus_M_N : N ; -- [GXXEK] :: pragmatism; + prandeo_V : V ; -- [XXXDX] :: eat one's morning or midday meal; + prandiolum_N_N : N ; -- [XXXEK] :: meal; + prandium_N_N : N ; -- [FXXEK] :: lunch; + pransor_M_N : N ; -- [BXXFS] :: lunch guest; + prasinus_A : A ; -- [XXXEC] :: leek-green; + prasius_M_N : N ; -- [XXXFS] :: prase, green coloured gem (Pliny); leek-green crystal translucent quartz (OED); + pratensis_A : A ; -- [XXXEC] :: of a meadow; + pratulum_N_N : N ; -- [XXXEC] :: little meadow; + pratum_N_N : N ; -- [XAXAO] :: meadow, meadowland; meadow grass/crop; broad expanse/field/plain (land/sea); + pratus_M_N : N ; -- [DAXEP] :: meadow, meadowland; meadow grass/crop; broad expanse/field/plain (land/sea); + pravicordius_A : A ; -- [EEXDS] :: evil-minded; mean-spirited; that has a depraved heart; + pravicors_A : A ; -- [EEXES] :: evil-minded; mean-spirited; that has a depraved heart; + pravitas_F_N : N ; -- [XXXDX] :: bad condition; viciousness, perverseness, depravity; + pravo_V : V ; -- [EXXFM] :: misrule; be crooked/bad/vicious/evil/corrupt; bend; + pravus_A : A ; -- [XXXBX] :: crooked; misshapen, deformed; perverse, vicious, corrupt; faulty; bad; + preambula_F_N : N ; -- [FXXEM] :: forerunner; + preambulum_N_N : N ; -- [FXXEM] :: preamble; preface; + preambulus_A : A ; -- [FXXFS] :: walking before; preceding (Def); preparatory; preliminary (Latham); previous; + preambulus_M_N : N ; -- [FXXEM] :: forerunner; + prebeo_V2 : V2 ; -- [XXXAO] :: |make available, supply, provide; be the cause, occasion, produce; render; + precabundus_A : A ; -- [EXXES] :: entreating; beseeching; + precarius_A : A ; -- [XXXDX] :: obtained by prayer; doubtful, precarious; + precatio_F_N : N ; -- [XXXDX] :: prayer, supplication; + precatus_M_N : N ; -- [EEXES] :: prayer; request; + precia_F_N : N ; -- [XAXEC] :: kind of vine (pl.); + precium_N_N : N ; -- [FXXEM] :: price; reward; worth; pay; [~ natalis/nativitatis => weregeld]; + preconcipio_V2 : V2 ; -- [FXXFM] :: preconceive; foreordain; + precor_V : V ; -- [XXXAO] :: beg/implore/entreat; wish/pray for/to; pray, supplicate, beseech; + precordialis_A : A ; -- [FXXFM] :: heartfelt; B:cardiac; + predictus_A : A ; -- [XXXDS] :: preceding, previously named, afore mentioned; predicted, foretold, warned; + predignus_A : A ; -- [FXXFM] :: right-worthy; + preexisto_V : V ; -- [FXXFM] :: pre-exist; be previously; + prehendo_V2 : V2 ; -- [EXXEW] :: |catch up with; reach shore/harbor; understand, comprehend; get a grip on; + prehenso_V2 : V2 ; -- [XXXDS] :: grasp/clutch at/constantly; lay hold of; accost/buttonhole; canvass, solicit; + preludium_N_N : N ; -- [FBXDM] :: prelude; preliminary; + prelum_N_N : N ; -- [XXXDX] :: wine or oil-press; + premagnus_A : A ; -- [XXXBO] :: very great/large/powerful/important/exalted; very great number/amount/price; + premo_V2 : V2 ; -- [XXXAX] :: press, press hard, pursue; oppress; overwhelm; + premotio_F_N : N ; -- [FXXFM] :: previous motion; + prenda_F_N : N ; -- [FXXEN] :: booty, loot; stolen goods; + prendo_V2 : V2 ; -- [EXXEW] :: catch, take hold of; arrest, capture; reach; understand; seize, grasp; occupy; + prensatio_F_N : N ; -- [XXXFS] :: soliciting; canvassing; + prensio_F_N : N ; -- [XXXDS] :: seizing; taking hold (of); + prenso_V2 : V2 ; -- [XXXCO] :: grasp/clutch at/constantly; lay hold of; accost/buttonhole; canvass, solicit; + presbyta_F_N : N ; -- [GBXEK] :: long-sighted; + presbyter_M_N : N ; -- [DEXAS] :: elder/presbyter (in Christian Church); priest; + presbyteralis_A : A ; -- [FEXEE] :: priestly; + presbyterissa_F_N : N ; -- [FEXEQ] :: presbyter (female), widow/matron devoted to church service (order); (Du Cange); + presbyterium_N_N : N ; -- [DEXES] :: assembly of elders/presbyters; priest's house?; + presbyterus_M_N : N ; -- [DEXES] :: office of elder/presbyter (in Christian Church); or of priest, priesthood; + presbytia_F_N : N ; -- [GBXEK] :: farsightedness, longsightedness; + presignio_V2 : V2 ; -- [FXXFM] :: ennoble; make famous; + pressio_F_N : N ; -- [XXXDS] :: pressing-down; T:lever-fulcrum; + presso_V : V ; -- [XXXDX] :: press, squeeze; + pressule_Adv : Adv ; -- [DXXFS] :: while pressing against; + pressulus_A : A ; -- [DXXFS] :: rather compressed; + pressus_A : A ; -- [XXXDX] :: firmly planted, deliberate; + pressus_M_N : N ; -- [XXXDS] :: pressing; pressure; exertion of pressure; + prester_M_N : N ; -- [XXXEC] :: fiery whirlwind or a waterspout; + pretiositas_F_N : N ; -- [XXXFS] :: preciousness; costliness; + pretiosus_A : A ; -- [XXXBX] :: expensive, costly, of great value, precious; rich in; + pretium_N_N : N ; -- [FXXEM] :: price/value/worth; reward/pay; money; prayer/request; [~ natalis => weregeld]; + prex_F_N : N ; -- [XXXAX] :: prayer, request; + priapeus_A : A ; -- [XXXFS] :: Priapan; of Priapus (the city or the god of procreation); + pridem_Adv : Adv ; -- [XXXDX] :: some time ago, previously; + pridianum_N_N : N ; -- [XWXEO] :: annual register of the total strength of a unit; (taken on 31 December); prim + pridianus_A : A ; -- [XXXEO] :: of the day before; + pridie_Adv : Adv ; -- [XXXDX] :: day before; + pridile_Adv : Adv ; -- [XXXDX] :: day before; + primaevus_A : A ; -- [XXXDX] :: youthful; + primanus_M_N : N ; -- [XWXEC] :: soldiers (pl.) of the first legion; + primarius_A : A ; -- [XXXEC] :: in the first rank, distinguished; + primas_A : A ; -- [XXXEO] :: noble; of the highest rank; principle; + primatus_M_N : N ; -- [XXXEO] :: supremacy; first place; + primicauponius_M_N : N ; -- [GXXEK] :: headwaiter; + primicerius_M_N : N ; -- [DXXDS] :: chief, head, superintendent; chief clerk; (first-named on wax tablet); + primigenius_A : A ; -- [XXXDX] :: first born; original, primitive; serving as root for derivatives (gram.); + primigenus_A : A ; -- [XXXEC] :: original, primitive; + primipilaris_A : A ; -- [XXXES] :: of first maniple/centurion; of/belonging to a commissary; + primipilus_M_N : N ; -- [XWXCO] :: first centurion; [~/primi pili centurio => primary/chief centurion of a legion]; + primiscrinius_M_N : N ; -- [EXXES] :: departmental chief; + primitia_F_N : N ; -- [XXXDX] :: first-fruits (pl.), first offerings; beginnings; [a ~ => from the beginning]; + primitivus_A : A ; -- [XXXEO] :: early; first formed; + primitus_Adv : Adv ; -- [XXXCO] :: at first; to begin with; for the first time; originally; in the beginning; + primo_Adv : Adv ; -- [XXXDX] :: at first; in the first place; at the beginning; + primogenitalis_A : A ; -- [DEXFS] :: original, first of all (in origin); + primogenitum_N_N : N ; -- [DXXES] :: birth-right, right of the first-born/oldest (child); + primogenitus_A : A ; -- [DXXCS] :: first-born; oldest (child); + primogenius_A : A ; -- [XXXDX] :: first born; original, primitive; serving as root for derivatives (gram.); + primopilaris_A : A ; -- [XXXES] :: of first maniple/centurion; of/belonging to a commissary; + primopilus_M_N : N ; -- [XXXDX] :: senior centurion of a legion; + primordium_N_N : N ; -- [XXXDX] :: first beginning, origin, commencement, beginnings; + primoris_A : A ; -- [XXXDX] :: first; foremost, extreme; + primoris_M_N : N ; -- [XXXDX] :: nobles (pl.), men of the first rank; + primula_F_N : N ; -- [GAXEK] :: primrose; + primulus_A : A ; -- [BXXFS] :: very first; + primum_Adv : Adv ; -- [XXXDX] :: at first; in the first place; + primus_A : A ; -- [XXXAX] :: first, foremost/best, chief, principal; nearest/next; [in primis => especially]; + primus_M_N : N ; -- [XXXDX] :: chiefs (pl.), nobles; + princeps_A : A ; -- [XXXBO] :: first, foremost, leading, chief, front; earliest, original; most necessary; + princeps_M_N : N ; -- [XXXAO] :: |Princeps (non-military title of Roman Emperor); senior Senator; leader of pack; + principalis_A : A ; -- [XXXDX] :: chief, principal; + principalitas_F_N : N ; -- [XXXES] :: superiority, pre-eminence, excellence; first place; + principaliter_Adv : Adv ; -- [XXXCO] :: primarily/principally/in first place; directly/without intermediary; imperially; + principatus_M_N : N ; -- [XXXDX] :: first place; rule; leadership; supremacy; chief command; + principialis_A : A ; -- [XPXES] :: original; from the beginning; + principio_V : V ; -- [EXXFS] :: begin to speak; begin to peak (medieval); + principissa_F_N : N ; -- [GXXEK] :: princess; + principium_N_N : N ; -- [XXXAX] :: beginning; + principor_V : V ; -- [DEXDS] :: rule; rule over (w/GEN/DAT) (Souter); + prinus_F_N : N ; -- [EAXFS] :: holm-oak, great scarlet oak; evergreen oak (Vulgate Susanna 1:58); + prior_A : A ; -- [XXXAX] :: ahead, in front, leading; previous, earlier, preceding, prior; former; basic; + prior_M_N : N ; -- [EEXCB] :: superior/elder monk; (later) second in dignity to abbot/head of priory, prior; + prioratus_M_N : N ; -- [FLXCJ] :: priory; + priorissa_F_N : N ; -- [FXXEM] :: prioress; + prioritas_F_N : N ; -- [FXXEZ] :: priority; + priscus_A : A ; -- [XXXBX] :: ancient, early, former; + prisona_F_N : N ; -- [FLXDJ] :: prison; + pristinus_A : A ; -- [XXXBX] :: former, oldtime, original; pristine; + pristis_F_N : N ; -- [XAXCO] :: sea monster; whale; sawfish; light oared vessel; + prius_Adv : Adv ; -- [XXXAX] :: earlier, before, previously, first; + prius_N_N : N ; -- [XXXDX] :: earlier times/events/actions; a logically prior proposition + priusquam_Conj : Conj ; -- [XXXBX] :: before; until; sooner than; + privatim_Adv : Adv ; -- [XXXDX] :: in private; as a private citizen; + privatus_A : A ; -- [XXXBX] :: private; personal; ordinary; + privatus_M_N : N ; -- [XXXDX] :: private citizen; + privigna_F_N : N ; -- [XXXDX] :: stepdaughter; + privignus_M_N : N ; -- [XXXDX] :: stepson; + privilegiatus_A : A ; -- [FLXEJ] :: privileged; + privilegium_N_N : N ; -- [XLXCO] :: law in favor of/against specific individual; (claim of) special right/privilege; + privo_V : V ; -- [XXXBX] :: deprive, rob, free; + privus_A : A ; -- [XXXDX] :: one's own, private; separate, single; + pro_Abl_Prep : Prep ; -- [XXXAX] :: on behalf of; before; in front/instead of; for; about; according to; as, like; + proagorus_M_N : N ; -- [XLXDS] :: chief magistrate; chief magistrate in Sicilian town; + proavia_F_N : N ; -- [XXXDX] :: great-grandmother; + proavitus_A : A ; -- [XXXDX] :: ancestral; + proavus_M_N : N ; -- [XXXDX] :: great-grandfather; remote ancestor; + proba_F_N : N ; -- [FLXEM] :: proof; evidence; + probabilis_A : A ; -- [XXXAO] :: commendable/admirable; justifiable; plausible/credible/demonstrable; probable; + probabilitas_F_N : N ; -- [XXXEO] :: probability; appearance of truth; approvability (Latham); soundness (Red); + probabiliter_Adv : Adv ; -- [XXXCO] :: commendably, worthy of approval; plausibly/credibly; probably; + probalis_A : A ; -- [FXXEM] :: demonstrable; conclusive; + probatio_F_N : N ; -- [GXXEK] :: |test; + probator_M_N : N ; -- [XXXDX] :: one who approves; + probe_Adv : Adv ; -- [XXXDX] :: properly, rightly; + probitas_F_N : N ; -- [XXXDX] :: uprightness, honesty, probity; + problema_N_N : N ; -- [DSXCO] :: problems, questions for debate/academic discussion (pl.); enigma/riddle/puzzle; + problematicum_N_N : N ; -- [DSXFS] :: problems, cases set forth as problems (pl.); + problematicus_A : A ; -- [DSXFS] :: problematic; + problematum_N_N : N ; -- [XSXEO] :: problems, questions for debate/academic discussion (pl.); enigma/riddle/puzzle; + probo_V2 : V2 ; -- [XXXAO] :: |let; show to be real/true; examine/test/try/prove/demonstrate; get accepted; + proboscis_F_N : N ; -- [XXXFS] :: trunk; proboscis; snout; + probrosus_A : A ; -- [XXXDX] :: shameful; disreputable; + probrum_N_N : N ; -- [XXXDX] :: disgrace; abuse, insult; disgrace, shame; + probus_A : A ; -- [XXXBX] :: good, honest; + procacitas_F_N : N ; -- [XXXDO] :: effrontery, forwardness; wantonness, license; + procax_A : A ; -- [XXXDX] :: pushing, impudent; undisciplined; frivolous; + procedo_V2 : V2 ; -- [XXXAX] :: proceed; advance; appear; + proceleumaticus_M_N : N ; -- [XPXFS] :: metric foot (with four short syllables); + procella_F_N : N ; -- [XXXBX] :: storm, gale; tumult, commotion; + procellosus_A : A ; -- [XXXDX] :: stormy, boisterous; + procer_M_N : N ; -- [XXXBX] :: nobles (pl.), chiefs, princes; leading men of the country/society/profession; + procere_Adv : Adv ; -- [XXXDX] :: far, to a great distance; extensively (COMP); + proceritas_F_N : N ; -- [XXXCO] :: height/tallness; altitude, distance up; great length (some up); metrical feet; + procerus_A : A ; -- [XXXDX] :: tall; long; high, lofty, upraised; grown/extended to great height/length; + processus_M_N : N ; -- [FXXEK] :: |process; + procido_V2 : V2 ; -- [XXXDX] :: fall prostrate, collapse; + prociedo_V2 : V2 ; -- [XXXDX] :: go forward, proceed; advance; + procinctualis_A : A ; -- [EWXFS] :: army-deploying; of the setting out of an army; + procinctus_M_N : N ; -- [XXXDX] :: readiness for battle; + procingo_V2 : V2 ; -- [XXXFS] :: gird-up; prepare; + proclamator_M_N : N ; -- [XXXFS] :: bawler; + proclamo_V : V ; -- [XXXDX] :: call/cry out, raise an outcry; appeal noisily; take claim to court; proclaim; + proclino_V : V ; -- [XXXDX] :: tilt forward; cause to totter; + proclivis_A : A ; -- [XXXDX] :: sloping down; downward; prone (to); easy; + proclivitas_F_N : N ; -- [FXXEM] :: propensity to evil; + proclivus_A : A ; -- [XXXEC] :: inclined forward, sloping downwards; inclined, ready; + proco_V2 : V2 ; -- [XXXCO] :: urge/press (w/commands/suits); woo, importune for one's hand; ask/demand (L+S); + procoeton_M_N : N ; -- [EXXES] :: antechamber; + proconsul_M_N : N ; -- [XXXDX] :: proconsul, governor of a province; + proconsularis_A : A ; -- [XXXDX] :: proconsular; + proconsulatus_M_N : N ; -- [XLXDO] :: proconsulship; office/position of proconsul; + procor_V : V ; -- [XXXDO] :: urge/press (w/commands/suits); woo, importune for one's hand; ask/demand (L+S); + procrastinatio_F_N : N ; -- [XXXDS] :: procrastination; + procrastino_V : V ; -- [XXXDX] :: put off till the next day, postpone; delay; + procreo_V : V ; -- [XXXDX] :: bring into existence, beget, procreate; produce, create; + procresco_V : V ; -- [XXXDX] :: grow on to maturity, grow larger; + procubo_V : V ; -- [XXXDX] :: lie outstretched; + procudo_V2 : V2 ; -- [XXXDX] :: forge, hammer out, beat out; + procul_Adv : Adv ; -- [XXXAX] :: away; at distance, far off; + proculco_V : V ; -- [XXXDX] :: trample on; + procumbo_V2 : V2 ; -- [XXXDX] :: sink down, lie down, lean forward; + procuratio_F_N : N ; -- [XXXDX] :: management; administration; charge, responsibility; + procurator_M_N : N ; -- [XXXDX] :: manager, overseer; agent, deputy; + procuratorius_A : A ; -- [XXXEO] :: procuratory; of/concerning a procurator; of an agent or manager (L+S); + procuro_V : V ; -- [XXXBX] :: manage; administer; attend to; + procurro_V2 : V2 ; -- [XXXDX] :: run out ahead; jut out; + procursatio_F_N : N ; -- [XXXDX] :: sudden charge, sally; + procursator_M_N : N ; -- [XWXES] :: skirmisher; fore-runner; + procurso_V : V ; -- [XXXDX] :: run frequently forward, dash out; + procursus_M_N : N ; -- [XXXDX] :: forward movement; outbreak; + procurvus_A : A ; -- [XXXDX] :: curved outwards or forwards; + procus_M_N : N ; -- [XXXDX] :: wooer, gigolo. suitor; canvasser; noble; + prodeambulo_V : V ; -- [XXXFS] :: take a walk; + prodecessor_M_N : N ; -- [FXXEM] :: predecessor; + prodeo_V : V ; -- [XXXAO] :: go/come forth/out, advance; appear; sprout/spring up; issue/extend/project; + prodico_V2 : V2 ; -- [XXXDX] :: give notice of or fix a day; + prodictator_M_N : N ; -- [XLXDS] :: vice-dictator; + prodigentia_F_N : N ; -- [XXXDS] :: profusion; extravagance; + prodigialiter_Adv : Adv ; -- [FXXEM] :: amazingly, wonderfully; + prodigialus_A : A ; -- [FXXDM] :: prodigal; lavish; + prodigilitas_F_N : N ; -- [FBXDM] :: prodigality; + prodigiosus_A : A ; -- [XXXDX] :: freakish; prodigious; + prodigium_N_N : N ; -- [XXXDX] :: portent; prodigy, wonder; + prodigo_V2 : V2 ; -- [XXXBS] :: drive forth/out; get rid of; use up, consume; waste/dissipate/squander; lavish; + prodigus_A : A ; -- [XXXDX] :: wasteful, lavish, prodigal; + prodio_V : V ; -- [EXXEE] :: go/come forth/out, advance; appear; sprout/spring up; issue/extend/project; + proditio_F_N : N ; -- [XXXDX] :: treason, betrayal; + proditiose_Adv : Adv ; -- [FXXFM] :: treacherously; + proditor_M_N : N ; -- [XXXDX] :: traitor; + proditrix_F_N : N ; -- [EXXFS] :: betrayer (female), treacherous woman, traitress/traitoress; + prodo_V2 : V2 ; -- [XXXAO] :: ||put out; assert; betray; give up, abandon, forsake; + prodoceo_V : V ; -- [XXXES] :: preach (Collins); teach, inculcate; indoctrinate (Nelson); + prodromus_M_N : N ; -- [XXXEC] :: forerunner; + produco_V2 : V2 ; -- [XXXBX] :: lead forward, bring out; reveal; induce; promote; stretch out; prolong; bury; + productio_F_N : N ; -- [FXXDF] :: production; bringing-forth; + producto_V : V ; -- [XXXDX] :: prolong; throw before, interpose; + productum_N_N : N ; -- [GXXEK] :: product; + proegmenon_N_N : N ; -- [XXXDS] :: preferable thing; + proeliator_M_N : N ; -- [DWXDS] :: fighter; combatant; + proelior_V : V ; -- [XXXDX] :: fight; + proelium_N_N : N ; -- [XWXAO] :: battle/fight/bout/conflict/dispute; armed/hostile encounter; bout of strength; + profano_V : V ; -- [XXXDX] :: desecrate, profane; + profanus_A : A ; -- [XXXDX] :: secular, profane; not initiated; impious; + profecticius_A : A ; -- [DXXEO] :: derived in ordinary course of law from bride's family (dowry); deriving from; + profectio_F_N : N ; -- [XXXDX] :: departure; + profectitius_A : A ; -- [DXXES] :: derived in ordinary course of law from bride's family (dowry); deriving from; + profecto_Adv : Adv ; -- [XXXBX] :: surely, certainly; + profectus_M_N : N ; -- [XXXDX] :: progress, success; + profero_V : V ; -- [XXXAX] :: bring forward; advance; defer; discover; mention; + professio_F_N : N ; -- [GXXEK] :: profession; + professionalis_A : A ; -- [GXXEK] :: professional; + professorius_A : A ; -- [XXXEC] :: authoritative; + profestus_A : A ; -- [XXXDX] :: not kept as a holiday, common, ordinary; + proficio_V2 : V2 ; -- [XXXAX] :: make, accomplish, effect; + proficiscor_V : V ; -- [XXXBX] :: depart, set out; proceed; + proficuus_A : A ; -- [DXXFS] :: beneficial, advantageous; conducive; + profisceo_V : V ; -- [BXXFS] :: set out; depart; + profiteor_V : V ; -- [XXXBX] :: declare; profess; + profligatus_A : A ; -- [XXXDX] :: profligate, depraved; + profligo_V : V ; -- [XXXDX] :: overthrow, rout; + proflo_V : V ; -- [XXXDX] :: blow out, exhale; + profluentia_F_N : N ; -- [XXXFS] :: fluency; + profluo_V2 : V2 ; -- [XXXDX] :: flow forth or along; emanate (from); + profluus_A : A ; -- [DXXES] :: flowing forth; flowing, streaming; + profluvium_N_N : N ; -- [XXXEC] :: flowing forth; + profor_V : V ; -- [XXXDX] :: speak out; + profugio_V2 : V2 ; -- [XXXDX] :: escape, escape from; run away from; + profugus_A : A ; -- [XXXBX] :: fugitive/fleeing/escaping; exiled; shrinking (from task); P:eluding one's grasp; + profugus_C_N : N ; -- [XXXDX] :: fugitive; runaway; refugee; exile; + profunditas_F_N : N ; -- [DXXCS] :: depth; intensity; vastness, immensity; darkness; + profundo_V2 : V2 ; -- [XXXBX] :: pour, pour out; utter; squander; + profundum_N_N : N ; -- [XXXDX] :: depths, abyss, chasm; boundless expanse; + profundus_A : A ; -- [XXXAX] :: deep, profound; boundless; insatiable; + profusio_F_N : N ; -- [XBXCO] :: extravagance, lavish spending; (morbid) discharge of body fluid; libation; + profusus_A : A ; -- [XXXDX] :: excessive; lavish; extravagant; + progagus_M_N : N ; -- [FXXEN] :: offspring; + progener_M_N : N ; -- [XXXES] :: grandson-in-law (Collins); grand-daughter's husband; + progenero_V2 : V2 ; -- [XXXEC] :: engender, produce; + progenies_F_N : N ; -- [XXXBX] :: race, family, progeny; + progenitor_M_N : N ; -- [XXXDX] :: ancestor; + progero_V2 : V2 ; -- [DXXDS] :: carry forth; clear out; carry before; + progigno_V2 : V2 ; -- [XXXDX] :: beget; produce; + prognariter_Adv : Adv ; -- [BXXFS] :: very skillfully; + prognatus_A : A ; -- [XXXDX] :: sprung from; descended; + programma_N_N : N ; -- [DLXES] :: proclamation; edict; program (Cal); + programmatio_F_N : N ; -- [HXXEK] :: programming; + programmator_M_N : N ; -- [HXXEK] :: programmer; + programmo_V : V ; -- [HXXEK] :: program (data processing); + progredior_V : V ; -- [XXXBX] :: go, come forth, go forward, march forward; advance. proceed. make progress; + progressio_F_N : N ; -- [XXXDO] :: progress/development; advance/forward movement; rising figure of speech; climax; + progressus_M_N : N ; -- [XXXDX] :: advance, progress; + progymnasma_F_N : N ; -- [GGXEM] :: essay; exercise (Erasmus); + prohemium_N_N : N ; -- [XXXCO] :: preface, introduction, preamble; beginning, prelude; overture (music); + prohibeo_V : V ; -- [XXXAX] :: hinder, restrain; forbid, prevent; + prohibesseo_V : V ; -- [BXXFS] :: hinder, restrain; forbid, prevent; (archaic form of prohibeo); + prohibitio_F_N : N ; -- [XLXDO] :: prohibition; prevention, making impossible/unlawful; stopping (a legal action); + prohibitorius_A : A ; -- [XLXEO] :: restraining; prohibitory; that restrains/prohibits; + prohoemium_N_N : N ; -- [XXXCO] :: preface, introduction, preamble; beginning, prelude; overture (music); + proicio_V2 : V2 ; -- [XXXAX] :: throw down, throw out; abandon; throw away; + proiectorium_N_N : N ; -- [GXXEK] :: spotlight; + proin_Adv : Adv ; -- [XXXCO] :: hence, so then; according to/in the same manner/degree/proportion (as/in which); + proinde_Adv : Adv ; -- [XXXAO] :: hence, so then; according to/in the same manner/degree/proportion (as/in which); + projecticius_A : A ; -- [DXXDS] :: cast out; rejected; + projectilis_M_N : N ; -- [ESXDX] :: projectile; + projectio_F_N : N ; -- [XXXDS] :: throwing forward; extension; projection; + projectitius_A : A ; -- [DXXDS] :: cast out; rejected; + projectus_A : A ; -- [XXXDX] :: jutting out, projecting; precipitate; abject, groveling; + projicio_V2 : V2 ; -- [XXXCS] :: throw down, throw out; abandon; throw away; + prolabor_V : V ; -- [XXXDX] :: glide or slip forwards, fall into decay, go to ruin; collapse; + prolapsio_F_N : N ; -- [XXXDS] :: falling; error; + prolatio_F_N : N ; -- [XXXDX] :: postponement; enlargement; + prolato_V : V ; -- [XXXDX] :: lengthen, enlarge; prolong; put off, defer; + prolecto_V : V ; -- [XXXDX] :: lure, entice; + proles_F_N : N ; -- [XXXBO] :: offspring, descendant; that springs by birth/descent; generation; race, breed; + proletariatus_M_N : N ; -- [GXXEK] :: proletariat; + proletarius_A : A ; -- [BXXDO] :: proletarian, of lowest class; common, vulgar; + proletarius_M_N : N ; -- [XXXCO] :: lowest class citizen (serving the state only by fathering); proletarian (Cal); + prolicio_V : V ; -- [XXXDX] :: lure forward, lead on; + prolixe_Adv : Adv ; -- [XXXCO] :: |amply; lavishly, generously, wholeheartedly, without let/skimping/reserve; + prolixitas_F_N : N ; -- [XXXEO] :: extent; extension in space, elongation; extension in time, long duration; + prolixo_V2 : V2 ; -- [XXXFO] :: extend in space; elongate; + prolixus_A : A ; -- [XXXBO] :: |lengthy/copious (writings); extended, wide; long, drawn-out; ample/abundant; + prologus_M_N : N ; -- [XXXEC] :: prologue; + prolongo_V2 : V2 ; -- [DXXCD] :: prolong, extend, lengthen; + proloquium_N_N : N ; -- [DXXES] :: introduction; G:assertion; L:judicial sentence; utterance (Nelson); + proloquor_V : V ; -- [XXXDX] :: speak out; + proludo_V2 : V2 ; -- [XXXDX] :: carry out preliminary exercises before a fight; rehearse for; + proluo_V2 : V2 ; -- [XXXDX] :: wash out; wash away; wash up; purify; proluvier_F_N : N ; -- [FXXEN] :: inundation; scouring; discharge; - proluvier_M_N : N ; - proluvies_F_N : N ; - promachus_M_N : N ; - promagister_M_N : N ; - promatertera_F_N : N ; - promercalis_A : A ; - promercium_N_N : N ; - promereo_V : V ; - promereor_V : V ; - prominens_A : A ; - prominens_F_N : N ; - prominentia_F_N : N ; - promineo_V : V ; - promiscus_A : A ; - promiscuus_A : A ; - promissio_F_N : N ; - promissor_M_N : N ; - promissum_N_N : N ; - promissus_A : A ; - promitto_V2 : V2 ; - promo_V2 : V2 ; - promono_V : V ; - promontorium_N_N : N ; - promonturium_N_N : N ; - promotio_F_N : N ; - promotum_N_N : N ; - promoveo_V : V ; - promptarium_N_N : N ; - promptarius_A : A ; - prompte_Adv : Adv ; - prompto_V2 : V2 ; - promptuarium_N_N : N ; - promptuarius_A : A ; - promptus_A : A ; - promptus_M_N : N ; - promtuarium_N_N : N ; - promtuarius_A : A ; - promulgatio_F_N : N ; - promulgo_V : V ; - promulsis_F_N : N ; - promunctorium_N_N : N ; - promunturium_N_N : N ; - promus_M_N : N ; - promutuus_A : A ; - pronepos_M_N : N ; - proneptis_F_N : N ; - pronitas_F_N : N ; - pronoea_F_N : N ; - pronuba_F_N : N ; - pronuntiatio_F_N : N ; - pronuntiator_M_N : N ; - pronuntio_V : V ; - pronus_A : A ; - prooemior_V : V ; - prooemium_N_N : N ; - propaganda_F_N : N ; - propagatio_F_N : N ; - propago_F_N : N ; - propago_V : V ; - propalam_Adv : Adv ; - propalo_V : V ; - proparte_Adv : Adv ; - propatruus_M_N : N ; - propatulum_N_N : N ; - propatulus_A : A ; - prope_Acc_Prep : Prep ; - prope_Adv : Adv ; - propediem_Adv : Adv ; - propello_V2 : V2 ; - propemodo_Adv : Adv ; - propemodum_Adv : Adv ; - propendeo_V : V ; - propensio_F_N : N ; - propensus_A : A ; - properanter_Adv : Adv ; - properantia_F_N : N ; - properantim_Adv : Adv ; - properatio_F_N : N ; - properipes_A : A ; - propero_V : V ; - properus_A : A ; - propexus_A : A ; - propheta_M_N : N ; - prophetes_M_N : N ; - prophetia_F_N : N ; - prophetizo_V2 : V2 ; - propheto_V : V ; - prophylacticus_A : A ; - propie_Adv : Adv ; - propinatio_F_N : N ; - propino_V : V ; - propinquitas_F_N : N ; - propinquo_V : V ; - propinquus_A : A ; - propinquus_M_N : N ; - propior_A : A ; - propitabilis_A : A ; - propitiatio_F_N : N ; - propitiator_M_N : N ; - propitiatorium_N_N : N ; - propitiatorius_A : A ; - propitio_V2 : V2 ; - propitius_A : A ; - propola_M_N : N ; - propoma_N_N : N ; - propono_V2 : V2 ; - proporro_Adv : Adv ; - proportio_F_N : N ; - proportionalis_A : A ; - proportionalitas_F_N : N ; - propositio_F_N : N ; - propositum_N_N : N ; - propraetor_M_N : N ; - proprie_Adv : Adv ; - proprietas_F_N : N ; - propritim_Adv : Adv ; - proprius_A : A ; - propter_Acc_Prep : Prep ; - propterea_Adv : Adv ; - propudium_N_N : N ; - propugnaculum_N_N : N ; - propugnatio_F_N : N ; - propugnator_M_N : N ; - propugno_V : V ; - propulluo_V2 : V2 ; - propulsatio_F_N : N ; - propulso_V : V ; - propulsorius_A : A ; - proquaestor_M_N : N ; - proquam_Adv : Adv ; - prora_F_N : N ; - prorepo_V2 : V2 ; - proreta_M_N : N ; - proreus_M_N : N ; - prorex_M_N : N ; - proripio_V2 : V2 ; - prorito_V : V ; - prorogatio_F_N : N ; - prorogo_V : V ; - prorsum_Adv : Adv ; - prorsus_A : A ; - prorsus_Adv : Adv ; - prorumpo_V2 : V2 ; - proruo_V2 : V2 ; - prosa_F_N : N ; - prosaicus_A : A ; - prosapia_F_N : N ; - proscaenium_N_N : N ; - proscindo_V2 : V2 ; - proscribo_V2 : V2 ; - proscriptio_F_N : N ; - proscripturio_V : V ; - proscriptus_M_N : N ; - prosectum_N_N : N ; - proseda_F_N : N ; - proselyta_F_N : N ; - proselytismus_M_N : N ; - proselytus_A : A ; - proselytus_M_N : N ; - prosentio_V2 : V2 ; - prosequor_V : V ; - prosero_V2 : V2 ; - proserpo_V : V ; - proseucha_F_N : N ; - prosilio_V : V ; - proslambanomenos_M_N : N ; - prosocer_M_N : N ; - prosodia_F_N : N ; - prosopopoeia_F_N : N ; - prospecto_V : V ; - prospectus_M_N : N ; - prospeculor_V : V ; - prosper_A : A ; - prosperitas_F_N : N ; - prospero_V : V ; - prosperus_A : A ; - prospicientia_F_N : N ; - prospicio_V2 : V2 ; - prosterno_V2 : V2 ; - prosthaphaeresis_F_N : N ; - prosthapheresis_F_N : N ; - prostibilis_A : A ; - prostibulum_N_N : N ; - prostituo_V2 : V2 ; - prostituta_F_N : N ; - prostitutio_F_N : N ; - prostitutus_M_N : N ; - prosto_V : V ; - prosubigo_V : V ; - prosum_V : V ; - prosus_A : A ; - prosus_Adv : Adv ; - protectio_F_N : N ; - protector_M_N : N ; - protego_V2 : V2 ; - proteinum_N_N : N ; - protelo_V2 : V2 ; - protelum_N_N : N ; - protendo_V2 : V2 ; - protero_V2 : V2 ; - proterreo_V : V ; - proteruitas_F_N : N ; - protervus_A : A ; - protestans_M_N : N ; - protestantismus_M_N : N ; - protestatio_F_N : N ; - protesto_V2 : V2 ; - protestor_V : V ; - prothesis_F_N : N ; - prothonotarius_M_N : N ; - prothoplastus_M_N : N ; - prothyrum_N_N : N ; - protinam_Adv : Adv ; - protinus_Adv : Adv ; - protogenes_A : A ; - protollo_V2 : V2 ; - protomartyr_M_N : N ; - protos_N_N : N ; - protraho_V2 : V2 ; - protritus_A : A ; - protropum_N_N : N ; - protrudo_V2 : V2 ; - protubero_V : V ; - proturbero_V : V ; - proturbo_V2 : V2 ; - protus_A : A ; - prout_Conj : Conj ; - provectio_F_N : N ; - provectus_A : A ; - proveho_V2 : V2 ; - provenio_V2 : V2 ; - proventus_M_N : N ; - proverbialis_A : A ; - proverbialiter_Adv : Adv ; - proverbium_N_N : N ; - providentia_F_N : N ; - provideo_V : V ; - providus_A : A ; - provincia_F_N : N ; - provincialis_A : A ; - provincialis_M_N : N ; - provinco_V2 : V2 ; - provisor_M_N : N ; - provivo_V : V ; - provocatio_F_N : N ; - provoco_V : V ; - provolo_V : V ; - provolvo_V2 : V2 ; - provolvor_V : V ; - provomo_V2 : V2 ; - provulgo_V2 : V2 ; - proxeneta_M_N : N ; - proxeneticum_N_N : N ; - proximior_A : A ; - proximitas_F_N : N ; - proximo_Adv : Adv ; - proximo_V : V ; - proximus_A : A ; - proximus_M_N : N ; - proxior_A : A ; - proxumus_A : A ; - prudens_A : A ; - prudenter_Adv : Adv ; - prudentia_F_N : N ; - pruina_F_N : N ; - pruinosus_A : A ; - pruna_F_N : N ; - prunitius_A : A ; - prunum_N_N : N ; - prunus_F_N : N ; - prurigo_F_N : N ; - prurio_V : V ; - pruritus_M_N : N ; - prytaneum_N_N : N ; + proluvier_M_N : N ; -- [FXXEN] :: inundation; scouring; discharge; + proluvies_F_N : N ; -- [XXXDX] :: overflow, flood; bodily discharge; + promachus_M_N : N ; -- [GXXEK] :: champion; + promagister_M_N : N ; -- [XLXCS] :: deputy magistrate; one who presides in place of another; vice-president; + promatertera_F_N : N ; -- [XLXES] :: great-grand-aunt; great grandmother's sister; + promercalis_A : A ; -- [XXXCO] :: sold in the open market; + promercium_N_N : N ; -- [XXXEO] :: putting out (of goods) for sale; + promereo_V : V ; -- [XXXDX] :: deserve, merit; deserve well of; earn; gain; + promereor_V : V ; -- [XXXDX] :: deserve, merit; deserve well of; earn; gain; + prominens_A : A ; -- [XXXDX] :: projecting; prominent; + prominens_F_N : N ; -- [XXXDX] :: projection; + prominentia_F_N : N ; -- [XXXDX] :: projection; the fact of jutting out/standing out/projecting; + promineo_V : V ; -- [XXXDX] :: jut out, stick up; + promiscus_A : A ; -- [XXXEC] :: mixed, indiscriminate, promiscuous; commonplace, usual; + promiscuus_A : A ; -- [XXXDX] :: common, shared general, indiscriminate; + promissio_F_N : N ; -- [XXXCO] :: promise; act/instance of promising; guarantee that proof will come (rhetoric); + promissor_M_N : N ; -- [XLXCO] :: promiser; one who promises/guarantees (usu. legal); + promissum_N_N : N ; -- [XXXDX] :: promise; + promissus_A : A ; -- [XXXDX] :: flowing, hanging down; + promitto_V2 : V2 ; -- [XXXAX] :: promise; + promo_V2 : V2 ; -- [XXXDX] :: take/bring out/forth; bring into view; bring out/display on the stage; + promono_V : V ; -- [FXXFM] :: emanate; + promontorium_N_N : N ; -- [XXXDX] :: promontory, headland, cape; + promonturium_N_N : N ; -- [XXXDX] :: promontory, headland, spur, projecting part of a mountain (into the sea); + promotio_F_N : N ; -- [FXXEM] :: advance; preferment; furtherance; advantage; + promotum_N_N : N ; -- [XXXES] :: preferred thing (as pl.); + promoveo_V : V ; -- [XXXDX] :: move forward; + promptarium_N_N : N ; -- [XXXFS] :: storeroom; cupboard; place where things are stored for ready use; repository; + promptarius_A : A ; -- [XXXEO] :: that serves for storing things ready for use; + prompte_Adv : Adv ; -- [XXXDX] :: so as to be ready at hand; readily, willingly, unhesitatingly, fluently; + prompto_V2 : V2 ; -- [XXXDS] :: distribute widely; + promptuarium_N_N : N ; -- [XXXDO] :: storeroom; cupboard; place where things are stored for ready use; repository; + promptuarius_A : A ; -- [XXXEO] :: |that serves for storing things ready for use; + promptus_A : A ; -- [XXXBX] :: set forth, brought forward, manifest, disclosed; willing, ready, eager, quick; + promptus_M_N : N ; -- [XXXDS] :: readiness; ease; exposing to view; + promtuarium_N_N : N ; -- [XXXDS] :: storeroom; cupboard; place where things are stored for ready use; repository; + promtuarius_A : A ; -- [XXXDS] :: of/belonging to distribution, distributing; (like storehouse/repository/prison); + promulgatio_F_N : N ; -- [XXXDS] :: proclaiming; promulgation; + promulgo_V : V ; -- [XXXDX] :: make known by public proclamation; publish; + promulsis_F_N : N ; -- [XXXEO] :: hors d'oeuvres, dish to stimulate appetite, first dish, entree; + promunctorium_N_N : N ; -- [FXXFM] :: promontory; headland; ridge; + promunturium_N_N : N ; -- [XXXDX] :: promontory, headland, spur, projecting part of a mountain (into the sea); + promus_M_N : N ; -- [XXXDX] :: butler; steward; + promutuus_A : A ; -- [XXXDX] :: advanced, lent in advance; paid beforehand; + pronepos_M_N : N ; -- [XXXDX] :: great grandson; + proneptis_F_N : N ; -- [XXXDO] :: great-granddaughter; + pronitas_F_N : N ; -- [DXXFS] :: inclination, propensity, proneness; (dubious); + pronoea_F_N : N ; -- [XXXEC] :: providence; + pronuba_F_N : N ; -- [XXXDX] :: married woman who conducted the bride to the bridal chamber; + pronuntiatio_F_N : N ; -- [XXXDX] :: proclamation; delivery; verdict; + pronuntiator_M_N : N ; -- [XXXDS] :: narrator; one who delivers; + pronuntio_V : V ; -- [XXXBX] :: announce; proclaim; relate; divulge; recite; utter; + pronus_A : A ; -- [XXXBX] :: leaning forward; prone; + prooemior_V : V ; -- [XXXFO] :: make a prooemium/preface/introduction to a speech; + prooemium_N_N : N ; -- [XXXCO] :: preface, introduction, preamble; beginning, prelude; overture (music); + propaganda_F_N : N ; -- [GXXEK] :: propaganda; + propagatio_F_N : N ; -- [XXXDX] :: propagation; reproduction (human); prolongation; the action of extending; + propago_F_N : N ; -- [XXXDX] :: layer or set by which a plant is propagated; offspring, children, race, breed; + propago_V : V ; -- [XXXDX] :: propagate; extend, enlarge, increase; + propalam_Adv : Adv ; -- [XXXDX] :: openly; + propalo_V : V ; -- [XXXDX] :: stake out (like a plant); make visible/manifest; + proparte_Adv : Adv ; -- [FLXFJ] :: concerning; + propatruus_M_N : N ; -- [XLXES] :: great-grand-uncle; great grandfather's brother; + propatulum_N_N : N ; -- [XXXEC] :: open place, unroofed space; + propatulus_A : A ; -- [XXXEC] :: open, uncovered; + prope_Acc_Prep : Prep ; -- [XXXAX] :: near; + prope_Adv : Adv ; -- [XXXDX] :: near, nearly; close by; almost; + propediem_Adv : Adv ; -- [XXXDX] :: before long, shortly; + propello_V2 : V2 ; -- [XXXDX] :: drive forward/forth; drive away/out/off; defeat; + propemodo_Adv : Adv ; -- [XXXDX] :: just about, pretty well; + propemodum_Adv : Adv ; -- [XXXDX] :: just about, pretty well; + propendeo_V : V ; -- [XXXFS] :: hand down; weigh more; be inclined; + propensio_F_N : N ; -- [XXXEC] :: inclination, propensity; consideration (Latham); + propensus_A : A ; -- [XXXDX] :: ready, eager, willing; favorably disposed; + properanter_Adv : Adv ; -- [XXXDO] :: hurriedly, hastily; in a hurried manner; speedily; + properantia_F_N : N ; -- [XXXEO] :: haste, hurry; precipitancy; + properantim_Adv : Adv ; -- [XXXEO] :: hurriedly, hastily; + properatio_F_N : N ; -- [XXXES] :: haste; + properipes_A : A ; -- [XXXDS] :: fleet-footed; + propero_V : V ; -- [XXXAX] :: hurry, speed up; be quick; + properus_A : A ; -- [XXXDX] :: quick, speedy; + propexus_A : A ; -- [XXXDX] :: combed so as to hang down; + propheta_M_N : N ; -- [XEXBO] :: prophet; spokesman/interpreter of a god; foreteller, soothsayer (L+S); + prophetes_M_N : N ; -- [DEXCS] :: prophet; spokesman/interpreter of a god; foreteller, soothsayer (L+S); + prophetia_F_N : N ; -- [DEXCS] :: prophecy; prediction; body of prophets/singers; + prophetizo_V2 : V2 ; -- [EEXES] :: prophesy, foretell, predict; + propheto_V : V ; -- [EEXCS] :: prophesy, foretell, predict; + prophylacticus_A : A ; -- [GXXEK] :: prophylactic; + propie_Adv : Adv ; -- [EXXEP] :: individually; according to species; + propinatio_F_N : N ; -- [XXXDX] :: toasting, a drinking to a person's health; proposal of a toast; + propino_V : V ; -- [XXXDX] :: drink to anyone (his health), pledge; give to drink; hand over, yield up; make; + propinquitas_F_N : N ; -- [XXXDX] :: nearness, vicinity; propinquity; relationship; + propinquo_V : V ; -- [XXXDX] :: bring near; draw near; + propinquus_A : A ; -- [XXXBX] :: near, neighboring; + propinquus_M_N : N ; -- [XXXDX] :: relative; + propior_A : A ; -- [XXXAO] :: nearer, closer; more recent; + propitabilis_A : A ; -- [XXXEO] :: able to be propitiated/appeased; + propitiatio_F_N : N ; -- [DEXDS] :: atonement, propitiation, appeasement; + propitiator_M_N : N ; -- [DEXES] :: atoner, propitiator; (often Christ in eccl.); + propitiatorium_N_N : N ; -- [DEXDS] :: atonement; means of reconciliation; place of atonement; + propitiatorius_A : A ; -- [DEXES] :: propitiating, reconciling; atoning; + propitio_V2 : V2 ; -- [XXXCO] :: propitiate, render favorable, win over; sooth (feelings); + propitius_A : A ; -- [XXXDX] :: favorably inclined, well-disposed, propitious; + propola_M_N : N ; -- [XXXEC] :: retailer, huckster; + propoma_N_N : N ; -- [GXXEK] :: aperitif; + propono_V2 : V2 ; -- [XXXAX] :: display; propose; relate; put or place forward; + proporro_Adv : Adv ; -- [XXXEC] :: further, moreover, or altogether; + proportio_F_N : N ; -- [XXXCO] :: proportion, proper spatial relation between parts; symmetry; analogy (grammar); + proportionalis_A : A ; -- [ESXDX] :: proportional; + proportionalitas_F_N : N ; -- [DXXFS] :: proportion; proportionality; + propositio_F_N : N ; -- [EEQEP] :: shew; [w/pane => shew-bread, 12 loaves placed on altar before Lord on Sabbath]; + propositum_N_N : N ; -- [XXXBO] :: |mode/manner/way of life/conduct, practice; proposition; decree; issued summons; + propraetor_M_N : N ; -- [XXXDX] :: ex-praetor; one sent to govern a province as praetor; + proprie_Adv : Adv ; -- [XXXDX] :: particularly, specifically, especially; properly, appropriately, rightly; + proprietas_F_N : N ; -- [XXXDX] :: quality; special character; ownership; + propritim_Adv : Adv ; -- [XXXEC] :: peculiarly, specially; + proprius_A : A ; -- [XXXAX] :: own, very own; individual; special, particular, characteristic; + propter_Acc_Prep : Prep ; -- [XXXAX] :: near; on account of; by means of; because of; + propterea_Adv : Adv ; -- [XXXDX] :: therefore, for this reason; [propterea quod => because]; + propudium_N_N : N ; -- [XXXEC] :: shameful action; a wretch, villain; + propugnaculum_N_N : N ; -- [XXXDX] :: bulwark, rampart; defense; + propugnatio_F_N : N ; -- [DXXDS] :: defense; + propugnator_M_N : N ; -- [XXXDX] :: defender; champion; + propugno_V : V ; -- [XXXDX] :: fight (on the defensive); + propulluo_V2 : V2 ; -- [XXXFS] :: defile; pollute; + propulsatio_F_N : N ; -- [XXXES] :: repulse; driving back; + propulso_V : V ; -- [XXXDX] :: repulse, drive back/off; ward off, repel, avert; pound, batter; + propulsorius_A : A ; -- [GXXEK] :: propelling; + proquaestor_M_N : N ; -- [XXXDX] :: ex-quaestor or junior official appointed to fill vacancy of departed quaestor; + proquam_Adv : Adv ; -- [XXXEC] :: in proportion as, according as; + prora_F_N : N ; -- [XXXDX] :: prow; + prorepo_V2 : V2 ; -- [XXXDX] :: crawl or creep forth; + proreta_M_N : N ; -- [XXXEC] :: look-out man; + proreus_M_N : N ; -- [XXXEC] :: look-out man; + prorex_M_N : N ; -- [FLXFM] :: viceroy; + proripio_V2 : V2 ; -- [XXXDX] :: drag or snatch away; rush or burst forth; + prorito_V : V ; -- [EXXFS] :: prove, cause; incite; tempt; + prorogatio_F_N : N ; -- [XXXDX] :: extension of a term of office; postponement; + prorogo_V : V ; -- [XXXDX] :: prolong, keep going; put off, defer; + prorsum_Adv : Adv ; -- [XXXDX] :: forwards, right onward; absolutely, entirely, utterly, by all means; in short; + prorsus_A : A ; -- [EXXES] :: straight forwards; + prorsus_Adv : Adv ; -- [XXXBX] :: forwards, right onward; absolutely, entirely, utterly, by all means; in short; + prorumpo_V2 : V2 ; -- [XXXDX] :: rush forth, break out; + proruo_V2 : V2 ; -- [XXXDX] :: rush forward; tumble down; overthrow; hurl forward; + prosa_F_N : N ; -- [FGXEM] :: prose; + prosaicus_A : A ; -- [FXXEM] :: in prose; prosaic (Red); + prosapia_F_N : N ; -- [XXXDX] :: family, lineage; + proscaenium_N_N : N ; -- [XXXDX] :: stage, portion of theater lying between orchestra and back wall; + proscindo_V2 : V2 ; -- [XXXDX] :: cut (surface), slit, gash; plow (unbroken land); flay with words, castigate; + proscribo_V2 : V2 ; -- [XXXDX] :: announce, make public, post, advertise; proscribe, deprive of property; + proscriptio_F_N : N ; -- [XXXDX] :: advertisement; notice of confiscation; proscription, pub of names of outlaws; + proscripturio_V : V ; -- [XLXEC] :: desire a proscription; + proscriptus_M_N : N ; -- [XXXDX] :: proscribed person, outlaw; + prosectum_N_N : N ; -- [DEXES] :: entrails, that which is cut-off for sacrifice; severed portion/organ of victim; + proseda_F_N : N ; -- [XXXEC] :: prostitute; + proselyta_F_N : N ; -- [EEQFS] :: proselyte (female), convert; she who converted (to Judism); sojourner/stranger; + proselytismus_M_N : N ; -- [GXXEK] :: proselytism; + proselytus_A : A ; -- [EEXFS] :: foreign, strange, come from abroad; + proselytus_M_N : N ; -- [EEQCS] :: proselyte (male), convert; converted heathen (to Judism); sojourner/stranger; + prosentio_V2 : V2 ; -- [BXXFS] :: see beforehand; + prosequor_V : V ; -- [XXXBX] :: pursue; escort; describe in detail; + prosero_V2 : V2 ; -- [XXXFS] :: beget; bring forth, beget; produce by sowing; + proserpo_V : V ; -- [XXXES] :: creep forward; + proseucha_F_N : N ; -- [XXXEC] :: house of prayer (Jewish); a conventicle; + prosilio_V : V ; -- [XXXBO] :: jump/leap up/forward; rush/leap/spring forth/to; gush/break/jut out; + proslambanomenos_M_N : N ; -- [XDXFO] :: added note at bottom of system of tetrachord; A-note (L+S); + prosocer_M_N : N ; -- [XXXES] :: wife's grandfather; + prosodia_F_N : N ; -- [EDXES] :: syllable-accent; + prosopopoeia_F_N : N ; -- [XDXES] :: personification; dramatization; + prospecto_V : V ; -- [XXXDX] :: gaze out (at); look out on; + prospectus_M_N : N ; -- [XXXDX] :: view, sight; + prospeculor_V : V ; -- [XXXDX] :: look out, survey the situation; look out/watch for; + prosper_A : A ; -- [XXXEC] :: fortunate, favorable, lucky, prosperous; + prosperitas_F_N : N ; -- [XXXDX] :: success; good fortune; + prospero_V : V ; -- [XXXDX] :: cause to succeed, further; + prosperus_A : A ; -- [XXXBX] :: prosperous, successful/triumphal; lucky/favorable/propitious (omens/prospects); + prospicientia_F_N : N ; -- [XXXDS] :: foresight; appearance; + prospicio_V2 : V2 ; -- [XXXBX] :: foresee; see far off; watch for, provide for, look out for; + prosterno_V2 : V2 ; -- [XXXAO] :: knock over, lay low; strike down, overthrow; exhaust; debase/demean; prostrate; + prosthaphaeresis_F_N : N ; -- [GSXFM] :: equation of center of movement (of planetary body/moon); + prosthapheresis_F_N : N ; -- [GSXFM] :: equation of center of movement (of planetary body/moon); + prostibilis_A : A ; -- [XXXFO] :: available as a prostitute; + prostibulum_N_N : N ; -- [XXXEO] :: prostitute, whore; inmate of a brothel; + prostituo_V2 : V2 ; -- [XXXCO] :: prostitute; put to improper sexual/unworthy use; dishonor, expose to shame; + prostituta_F_N : N ; -- [XXXDO] :: prostitute; whore; + prostitutio_F_N : N ; -- [DXXES] :: prostitution; dishonoring, profaning; + prostitutus_M_N : N ; -- [XXXFO] :: male prostitute; + prosto_V : V ; -- [XXXDX] :: offer goods for sale to public; be on sale, expose for sale/prostitute oneself; + prosubigo_V : V ; -- [XXXDX] :: dig up in front of one; dig up, cast up; hammer out into an extended shape; + prosum_V : V ; -- [XXXAX] :: be useful, be advantageous, benefit, profit (with DAT); + prosus_A : A ; -- [GXXET] :: straightforward (of style) (i.e. prose); (Erasmus); + prosus_Adv : Adv ; -- [EXXCS] :: forwards, right on; absolutely, entirely, utterly, by all means; in short; + protectio_F_N : N ; -- [XXXFO] :: protection; shelter; + protector_M_N : N ; -- [XXXDO] :: protector, guardian, defender; member of corps of guards (Souter); + protego_V2 : V2 ; -- [XXXBX] :: cover, protect; + proteinum_N_N : N ; -- [GBXEK] :: protein; + protelo_V2 : V2 ; -- [XWXCO] :: drive/cause to retreat before one; drive forth, hound out, rout; beat back/off; + protelum_N_N : N ; -- [XAXCO] :: team/tandem of oxen/draught animals; series, succession; + protendo_V2 : V2 ; -- [XXXCS] :: stretch out/forth, extend, distend; hold out; prolong; lengthen; + protero_V2 : V2 ; -- [XXXDX] :: crush, tread under foot; oppress; + proterreo_V : V ; -- [XXXDX] :: frighten; + proteruitas_F_N : N ; -- [XXXES] :: impudence; boldness; + protervus_A : A ; -- [XXXDX] :: violent, reckless; impudent, shameless; + protestans_M_N : N ; -- [FEXEK] :: Protestant; + protestantismus_M_N : N ; -- [GEXEK] :: Protestantism; + protestatio_F_N : N ; -- [EXXES] :: declaration; protestation; + protesto_V2 : V2 ; -- [XXXFS] :: testify, testify publicly, bear witness to; protest (L+S); assert (Bee); + protestor_V : V ; -- [XXXDO] :: testify, testify publicly, bear witness to; protest (L+S); assert (Bee); + prothesis_F_N : N ; -- [GXXEK] :: prosthesis; + prothonotarius_M_N : N ; -- [FXXDM] :: protonotary, chief court notary/clerk/recorder; E:secretary/record keeper; + prothoplastus_M_N : N ; -- [FXXDM] :: first created man; (the very first man); + prothyrum_N_N : N ; -- [XXXFS] :: |space-before-door; door wicket; + protinam_Adv : Adv ; -- [XXXEC] :: immediately, at once; + protinus_Adv : Adv ; -- [XXXAX] :: straight on, forward; immediately; without pause; at once; + protogenes_A : A ; -- [FXXFM] :: first-of-kind; + protollo_V2 : V2 ; -- [XXXDS] :: stretch out; put off; raise up; + protomartyr_M_N : N ; -- [FEXFM] :: first martyr; (St Stephen or St Alban); + protos_N_N : N ; -- [FXHEW] :: first, foremost; best, top; initial; elementary; prime; (Greek); + protraho_V2 : V2 ; -- [XXXDX] :: drag forward, produce; bring to light, reveal; prolong, protract; + protritus_A : A ; -- [XXXEO] :: common, trite, commonplace; + protropum_N_N : N ; -- [XAXFS] :: first wine; new wine from grapes before pressing; + protrudo_V2 : V2 ; -- [XXXDX] :: thrust forwards or out; put off; + protubero_V : V ; -- [DXXDS] :: swell/bulge out; grow forth; stand out (Sax); + proturbero_V : V ; -- [DXXDS] :: bulge/swell out; grow forth; stand out (Sax); be prominent, project; + proturbo_V2 : V2 ; -- [XXXDX] :: drive/push away/out of the way; drive out in confusion; repulse; pitch forward; + protus_A : A ; -- [EXXEM] :: first; original; + prout_Conj : Conj ; -- [XXXBX] :: as, just as; exactly as; + provectio_F_N : N ; -- [FXXEM] :: promotion, progress; + provectus_A : A ; -- [XXXDX] :: advanced, late; elderly; + proveho_V2 : V2 ; -- [XXXDX] :: carry; pass, be carried, ride, sail; + provenio_V2 : V2 ; -- [XXXDX] :: come forth; come into being; prosper; + proventus_M_N : N ; -- [XXXDX] :: outcome, result; success; + proverbialis_A : A ; -- [EXXES] :: proverbial; + proverbialiter_Adv : Adv ; -- [EXXES] :: proverbially; + proverbium_N_N : N ; -- [XXXDX] :: proverb, saying; + providentia_F_N : N ; -- [XXXDX] :: foresight, foreknowledge; providence; + provideo_V : V ; -- [XXXBX] :: foresee; provide for, make provision; with DAT; + providus_A : A ; -- [XXXDX] :: prophetic; provident, characterized by forethought; + provincia_F_N : N ; -- [XXXBX] :: province; office; duty; command; + provincialis_A : A ; -- [XXXDX] :: provincial; + provincialis_M_N : N ; -- [XXXDS] :: provincial (person); + provinco_V2 : V2 ; -- [XXXFS] :: conquer before; + provisor_M_N : N ; -- [XXXEO] :: one who foresees; one who takes care (of); headmaster (Cal); + provivo_V : V ; -- [XXXDS] :: live on; sustain oneself with; + provocatio_F_N : N ; -- [XXXDX] :: challenge; + provoco_V : V ; -- [XXXBX] :: call forth; challenge; provoke; + provolo_V : V ; -- [XXXDX] :: fly forward; dash forth; + provolvo_V2 : V2 ; -- [XXXDX] :: roll forward or along, bowl over; + provolvor_V : V ; -- [XXXDX] :: prostrate oneself; + provomo_V2 : V2 ; -- [XXXDS] :: vomit forth; + provulgo_V2 : V2 ; -- [DXXDS] :: publish; make known; + proxeneta_M_N : N ; -- [XXXFS] :: negotiator; agent; + proxeneticum_N_N : N ; -- [ELXFS] :: brokerage; + proximior_A : A ; -- [FXXDM] :: nearer, closer; more recent; + proximitas_F_N : N ; -- [XXXDX] :: near relationship; resemblance; similarity; + proximo_Adv : Adv ; -- [XXXFS] :: very lately; + proximo_V : V ; -- [DXXCS] :: come/draw near, approach; be near; + proximus_A : A ; -- [XXXAO] :: nearest/closest/next; most recent, immediately preceding, last; most/very like; + proximus_M_N : N ; -- [XXXDX] :: neighbor; nearest one; + proxior_A : A ; -- [XXXEO] :: nearer, closer; more recent; + proxumus_A : A ; -- [XXXAO] :: nearest/closest/next; most recent, immediately preceding, last; most/very like; + prudens_A : A ; -- [XXXBX] :: aware, skilled; sensible, prudent; farseeing; experienced; + prudenter_Adv : Adv ; -- [XXXDX] :: wisely, discreetly; sensibly, prudently; + prudentia_F_N : N ; -- [XXXBX] :: discretion; good sense, wisdom; prudence; foresight; + pruina_F_N : N ; -- [XXXDX] :: hoar-frost, rime; + pruinosus_A : A ; -- [XXXDX] :: frosty; + pruna_F_N : N ; -- [XXXDX] :: glowing charcoal, a live coal; + prunitius_A : A ; -- [XXXEC] :: of plum tree wood; + prunum_N_N : N ; -- [XXXDX] :: plum; + prunus_F_N : N ; -- [XAXEC] :: plum tree; + prurigo_F_N : N ; -- [XXXEC] :: itch; + prurio_V : V ; -- [XXXDX] :: itch, tingle (in anticipation); be sexually excited, have sexual craving; + pruritus_M_N : N ; -- [XBXFS] :: itching; + prytaneum_N_N : N ; -- [XXXEC] :: town hall in a Greek city; 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 ; - psalterium_N_N : N ; - psaltes_M_N : N ; - psaltria_F_N : N ; - psecas_F_N : N ; - psephisma_N_N : N ; - pseudapostulus_M_N : N ; - pseudochristus_M_N : N ; - pseudodictamnum_N_N : N ; - pseudonymum_N_N : N ; - pseudopropheta_M_N : N ; - pseudoprophetia_F_N : N ; - pseudothyrum_N_N : N ; - psithia_F_N : N ; - psithium_N_N : N ; - psithius_A : A ; - psittacus_M_N : N ; - psora_F_N : N ; - psychiater_M_N : N ; - psychiatria_F_N : N ; - psychicus_A : A ; - psychoanalysis_F_N : N ; - psychoanalysta_M_N : N ; - psychoanalyticus_A : A ; - psychologia_F_N : N ; - psychologicus_A : A ; - psychologus_M_N : N ; - psychomanteum_N_N : N ; - psychomantium_N_N : N ; - psychomotorius_A : A ; - psychopathicus_M_N : N ; - psychopathologia_F_N : N ; - psychosis_F_N : N ; - psychosomaticus_A : A ; - psychotherapeuta_M_N : N ; - psychotherapia_F_N : N ; - psychotropicum_N_N : N ; - psychotropicus_A : A ; - psylleum_N_N : N ; - psyllion_N_N : N ; - psyllium_N_N : N ; - psythia_F_N : N ; - psythium_N_N : N ; - psythius_A : A ; - pterygium_N_N : N ; - ptisana_F_N : N ; - ptisanarium_N_N : N ; - ptochium_N_N : N ; - ptongus_M_N : N ; - pubens_A : A ; - pubertas_F_N : N ; - pubes_A : A ; - pubes_F_N : N ; - pubesco_V2 : V2 ; - publicanus_A : A ; - publicanus_M_N : N ; - publicatio_F_N : N ; - publice_Adv : Adv ; - publicitus_Adv : Adv ; - publico_Adv : Adv ; - publico_V : V ; - publicus_A : A ; - publicus_M_N : N ; - pudendus_A : A ; - pudens_A : A ; - pudenter_Adv : Adv ; - pudeo_V : V ; - pudet_V0 : V ; - pudibundus_A : A ; - pudicitia_F_N : N ; - pudicus_A : A ; - pudor_M_N : N ; - puella_F_N : N ; - puellaris_A : A ; - puellula_F_N : N ; - puellus_M_N : N ; - puer_M_N : N ; - puera_F_N : N ; - puerilis_A : A ; - pueriliter_Adv : Adv ; - pueritia_F_N : N ; - puerpera_F_N : N ; - puerperium_N_N : N ; - puerperus_A : A ; - puertia_F_N : N ; - puerulus_M_N : N ; - puga_F_N : N ; - pugil_M_N : N ; - pugilatio_F_N : N ; - pugilator_M_N : N ; - pugilatus_M_N : N ; - pugillare_N_N : N ; - pugillaris_A : A ; - pugillaris_M_N : N ; - pugillatorius_A : A ; - pugillus_M_N : N ; - pugilo_V : V ; - pugilus_M_N : N ; - pugio_M_N : N ; - pugiunculus_M_N : N ; - pugna_F_N : N ; - pugnacitas_F_N : N ; - pugnaculum_N_N : N ; - pugnator_M_N : N ; - pugnax_A : A ; - pugneus_A : A ; - pugno_V : V ; - pugnus_M_N : N ; - pulcer_A : A ; - pulchellus_A : A ; - pulcher_A : A ; - pulchre_Adv : Adv ; - pulchresco_V : V ; - pulchritudo_F_N : N ; - pulcre_Adv : Adv ; - pulcritudo_F_N : N ; - pulegium_N_N : N ; - puleium_N_N : N ; - pulenta_F_N : N ; - pulex_M_N : N ; - pulicaris_A : A ; - pulicarius_A : A ; - pullarius_M_N : N ; - pullatus_A : A ; - pullulo_V : V ; - pullum_N_N : N ; - pullus_A : A ; - pullus_M_N : N ; - pulmentarium_N_N : N ; - pulmentum_N_N : N ; - pulmo_M_N : N ; - pulmoneus_A : A ; - pulpa_F_N : N ; - pulpamentum_N_N : N ; - pulpitum_N_N : N ; - puls_F_N : N ; - pulsabulum_N_N : N ; - pulsatilis_A : A ; - pulsatio_F_N : N ; - pulso_V : V ; - pulsus_M_N : N ; - pultiphagus_M_N : N ; - pulto_V2 : V2 ; - pulvereus_A : A ; - pulverizo_V : V ; - pulverulentus_A : A ; - pulvillus_M_N : N ; - pulvinar_N_N : N ; - pulvinatus_A : A ; - pulvinus_M_N : N ; - pulvis_M_N : N ; - pulvisculus_M_N : N ; - pumex_M_N : N ; - pumiceus_A : A ; - pumico_V2 : V2 ; - pumicosus_A : A ; + prytanis_2_N : N ; -- [XLHEC] :: chief magistrate in a Greek state; + psallo_V2 : V2 ; -- [XXXDX] :: play on the cithara (by plucking with fingers); sing the Psalms (eccl.) (L+S); + psalmista_M_N : N ; -- [EEXDX] :: psalmist; + psalmodia_F_N : N ; -- [FEXFF] :: psalmody; art/practice of singing psalms; arranging/composing psalms; psalms; + psalmus_M_N : N ; -- [EEXDX] :: psalm; Psalm of David; + psalterium_N_N : N ; -- [XXXEC] :: stringed instrument; + psaltes_M_N : N ; -- [XDXDS] :: musician, minstrel; player on a plucked instrument/cithara; + psaltria_F_N : N ; -- [XXXDX] :: female player on the cithara; + psecas_F_N : N ; -- [XXXEC] :: anointer of hair; + psephisma_N_N : N ; -- [DLXES] :: plebiscite; People's decree/order, order of the People (Pliny); + pseudapostulus_M_N : N ; -- [XEXES] :: false apostle; + pseudochristus_M_N : N ; -- [DEXFS] :: false-Christ; + pseudodictamnum_N_N : N ; -- [XXXFS] :: bastard-dittany (Pliny); + pseudonymum_N_N : N ; -- [GXXEK] :: pseudonym; + pseudopropheta_M_N : N ; -- [DEXDS] :: false prophet; + pseudoprophetia_F_N : N ; -- [DEXDS] :: false prophecy; + pseudothyrum_N_N : N ; -- [XXXEC] :: secret door; + psithia_F_N : N ; -- [XAXDS] :: phythian, a variety of grape; + psithium_N_N : N ; -- [XAXDS] :: phythian, a kind of raisin wine; + psithius_A : A ; -- [XAXDS] :: phythian, name of a kind of vine; + psittacus_M_N : N ; -- [XXXDX] :: parrot; + psora_F_N : N ; -- [XBXNS] :: itch, mange; + psychiater_M_N : N ; -- [GBXEK] :: psychiatrist; + psychiatria_F_N : N ; -- [GBXEK] :: psychiatry; + psychicus_A : A ; -- [XEXES] :: animal; carnal; psychic (Cal); + psychoanalysis_F_N : N ; -- [GBXEK] :: psychoanalysis; + psychoanalysta_M_N : N ; -- [GBXEK] :: psychoanalyst; + psychoanalyticus_A : A ; -- [GBXEK] :: psychoanalytical; + psychologia_F_N : N ; -- [GBXEK] :: psychology; + psychologicus_A : A ; -- [GBXEK] :: psychological; + psychologus_M_N : N ; -- [GBXEK] :: psychologist; + psychomanteum_N_N : N ; -- [XEXDS] :: place of necromancy; + psychomantium_N_N : N ; -- [XXXEC] :: place of necromancy; + psychomotorius_A : A ; -- [GBXEK] :: psychomotor; + psychopathicus_M_N : N ; -- [GBXEK] :: psychopath; + psychopathologia_F_N : N ; -- [GBXEK] :: psychopathology; + psychosis_F_N : N ; -- [GBXEK] :: psychosis; + psychosomaticus_A : A ; -- [GBXEK] :: psychosomatic; + psychotherapeuta_M_N : N ; -- [GBXEK] :: psychotherapist; + psychotherapia_F_N : N ; -- [GBXEK] :: psychotherapy; + psychotropicum_N_N : N ; -- [GBXEK] :: drug; + psychotropicus_A : A ; -- [GBXEK] :: psychotropic; + psylleum_N_N : N ; -- [XAXEO] :: plant; (prob. Plantago psyllium); + psyllion_N_N : N ; -- [XAXEO] :: plant; (prob. Plantago psyllium); + psyllium_N_N : N ; -- [XAXEO] :: plant; (prob. Plantago psyllium); + psythia_F_N : N ; -- [XAXDS] :: phythian, a variety of grape; + psythium_N_N : N ; -- [XAXDS] :: phythian, a kind of raisin wine; + psythius_A : A ; -- [XAXDS] :: phythian, name of a kind of vine; + pterygium_N_N : N ; -- [XXXES] :: cloudy spot; B:film over eye; skin over nail; + ptisana_F_N : N ; -- [XXXCO] :: barley with the outer covering removed, pearl barley; barley water (drink); + ptisanarium_N_N : N ; -- [XXXFO] :: drink made in the manner of barley water; decoction of crushed barley; + ptochium_N_N : N ; -- [ELXFS] :: poor-house; (also ptocheum); + ptongus_M_N : N ; -- [FDXES] :: sound; tone; + pubens_A : A ; -- [XXXDX] :: full of sap, vigorous; + pubertas_F_N : N ; -- [XXXDX] :: puberty; virility; + pubes_A : A ; -- [XXXBX] :: adult, grown-up; full of sap; + pubes_F_N : N ; -- [XXXDX] :: manpower, adult population; private/pubic parts/hair; age/condition of puberty; + pubesco_V2 : V2 ; -- [XXXDX] :: reach physical maturity, grow body hair/to manhood; ripen (fruit), mature; + publicanus_A : A ; -- [XLXDS] :: of public revenue; + publicanus_M_N : N ; -- [XXXDX] :: contractor for public works, farmer of the Roman taxes; + publicatio_F_N : N ; -- [XXXDO] :: publication, proclamation; disclosure; manifestation (Def); preaching (Latham); + publice_Adv : Adv ; -- [XXXDX] :: publicly; at public expense; + publicitus_Adv : Adv ; -- [XXXCO] :: at public expense; publicly, in public (presence/knowledge); as a state concern; + publico_Adv : Adv ; -- [XXXDX] :: public, publicly (in publico); + publico_V : V ; -- [XXXDX] :: confiscate; make public property; publish; + publicus_A : A ; -- [XXXAX] :: public; common, of the people/state; official; [res publica => the state]; + publicus_M_N : N ; -- [XXXDS] :: public officer; + pudendus_A : A ; -- [XXXDX] :: causing shame, shameful, scandalous, disgraceful, abominable; + pudens_A : A ; -- [XXXDX] :: shameful; bashful, modest, shy, chaste, honorable; + pudenter_Adv : Adv ; -- [XXXDX] :: bashfully, modestly, shyly, chastely, honorably; + pudeo_V : V ; -- [XXXDX] :: be ashamed; make ashamed; [me pudet => I am ashamed]; + pudet_V0 : V ; -- [XXXAX] :: it shames, make ashamed; [me tui pudet => I am ashamed of you]; + pudibundus_A : A ; -- [XXXDX] :: shamefaced, blushing; + pudicitia_F_N : N ; -- [XXXBX] :: chastity; modesty; purity; + pudicus_A : A ; -- [XXXBX] :: chaste, modest; virtuous; pure; + pudor_M_N : N ; -- [XXXAX] :: decency, shame; sense of honor; modesty; bashfulness; + puella_F_N : N ; -- [XXXBO] :: girl, (female) child/daughter; maiden; young woman/wife; sweetheart; slavegirl; + puellaris_A : A ; -- [XXXDX] :: girlish; youthful; maidenly; of a young girl; + puellula_F_N : N ; -- [XXXEO] :: girl (young/little), lass, (female) child; maiden; + puellus_M_N : N ; -- [XXXEO] :: boy (young/little); catamite (when in erotic context); + puer_M_N : N ; -- [XXXAX] :: boy, lad, young man; servant; (male) child; [a puere => from boyhood]; + puera_F_N : N ; -- [XXXFS] :: girl; lass; + puerilis_A : A ; -- [XXXBX] :: boyish; youthful, childish; + pueriliter_Adv : Adv ; -- [XXXDX] :: childishly, foolishly; + pueritia_F_N : N ; -- [XXXCO] :: childhood, boyhood; callowness, childish nature; state/fact of being boy; + puerpera_F_N : N ; -- [XXXDX] :: woman in labor, woman who has been/is in process of being delivered of child; + puerperium_N_N : N ; -- [XXXDX] :: childbirth, delivery; offspring born at a single delivery; + puerperus_A : A ; -- [XXXEC] :: of childbirth; + puertia_F_N : N ; -- [XXXCO] :: childhood, boyhood; callowness, childish nature; state/fact of being boy; + puerulus_M_N : N ; -- [XXXBX] :: little boy; + puga_F_N : N ; -- [XBXEO] :: rump, buttocks; (usu. pl.); (pure Latin nates); + pugil_M_N : N ; -- [XXXDX] :: boxer, pugilist; + pugilatio_F_N : N ; -- [XXXEC] :: fighting with the caestus; boxing; + pugilator_M_N : N ; -- [GXXEK] :: boxer; + pugilatus_M_N : N ; -- [GXXEK] :: boxing; + pugillare_N_N : N ; -- [XXXDO] :: writing-tablets (pl.); (those small enough to be held in the hand); + pugillaris_A : A ; -- [XXXDS] :: hand-holdable; that can be held in hand; + pugillaris_M_N : N ; -- [XXXDO] :: writing-tablets (pl.); (those small enough to be held in the hand); + pugillatorius_A : A ; -- [XXXFS] :: fistable; can be struck with the fist; + pugillus_M_N : N ; -- [XXXEO] :: handful, what can be held in a fist; + pugilo_V : V ; -- [GXXEK] :: box; + pugilus_M_N : N ; -- [XXXEO] :: handful, a amount that can be held in the hand/fist; + pugio_M_N : N ; -- [XWXDX] :: dagger; + pugiunculus_M_N : N ; -- [XWXEC] :: little dagger; + pugna_F_N : N ; -- [XWXAX] :: battle, fight; + pugnacitas_F_N : N ; -- [DXXES] :: bellicosity, aggressiveness; desire to fight; pugnacity; aggression; + pugnaculum_N_N : N ; -- [XWXEC] :: fortress; + pugnator_M_N : N ; -- [XWXDX] :: fighter, combatant; + pugnax_A : A ; -- [XXXDX] :: pugnacious; + pugneus_A : A ; -- [BXXFS] :: of the fist; + pugno_V : V ; -- [XWXAX] :: fight; dispute; [pugnatum est => the battle raged]; + pugnus_M_N : N ; -- [XXXDX] :: fist; + pulcer_A : A ; -- [FXXEW] :: pretty; beautiful; handsome; noble, illustrious; + pulchellus_A : A ; -- [XXXEC] :: pretty; + pulcher_A : A ; -- [XXXAX] :: pretty; beautiful; handsome; noble, illustrious; + pulchre_Adv : Adv ; -- [XXXDX] :: fine, beautifully; + pulchresco_V : V ; -- [EXXFS] :: grow beautiful; + pulchritudo_F_N : N ; -- [XXXBX] :: beauty, excellence; + pulcre_Adv : Adv ; -- [EXXDP] :: aptly; finely; nicely; (often used at beginning of sentence); + pulcritudo_F_N : N ; -- [XXXDX] :: beauty, attractiveness; + pulegium_N_N : N ; -- [XAXEC] :: fleabane, penny-royal; + puleium_N_N : N ; -- [XAXEC] :: fleabane, penny-royal; + pulenta_F_N : N ; -- [XAXCO] :: barley-meal/groats; hulled and crushed grain; parched grain (Douay); + pulex_M_N : N ; -- [XXXDX] :: flea; insect that attacks plants; + pulicaris_A : A ; -- [EXXFS] :: flea-; flea-bearing; + pulicarius_A : A ; -- [EXXFS] :: flea-; flea-bearing; + pullarius_M_N : N ; -- [XXXDX] :: keeper of the sacred chickens; + pullatus_A : A ; -- [XXXEC] :: clad in dirty or black garments; + pullulo_V : V ; -- [XXXDX] :: sprout, send forth new growth; spring forth; + pullum_N_N : N ; -- [XXXDS] :: dark-gray cloth(es) (as pl.); + pullus_A : A ; -- [XXXDX] :: blackish, dark colored, of undyed wool as worn in morning; + pullus_M_N : N ; -- [XXXDX] :: chicken, young hen; + pulmentarium_N_N : N ; -- [XXXEC] :: relish; + pulmentum_N_N : N ; -- [XXXCO] :: appetizer, small meat/fish starter portion; savory; relish/condiment/food (L+S); + pulmo_M_N : N ; -- [XBXCO] :: lungs (sg. or pl.); [~ marinus => lung-like marine creature, kind of jellyfish]; + pulmoneus_A : A ; -- [XXXDS] :: of the lungs; spongy; + pulpa_F_N : N ; -- [XXXEC] :: flesh; + pulpamentum_N_N : N ; -- [XXXEC] :: flesh, esp. tit-bits; + pulpitum_N_N : N ; -- [XXXCO] :: stage, wooden platform (for performance); lectern/pulpit/bookstand; desk (Cal); + puls_F_N : N ; -- [XXXDX] :: meal, porridge, mush (used in sacrifice and given to sacred chickens); + pulsabulum_N_N : N ; -- [FXXEK] :: buffer; + pulsatilis_A : A ; -- [GXXET] :: produced by beating; (Erasmus); + pulsatio_F_N : N ; -- [XXXDS] :: striking; beating; D:playing; + pulso_V : V ; -- [XXXAX] :: beat; pulsate; + pulsus_M_N : N ; -- [XXXDX] :: stroke; beat; pulse; impulse; + pultiphagus_M_N : N ; -- [XXXDS] :: porridge-eater; + pulto_V2 : V2 ; -- [XXXEC] :: knock, strike; + pulvereus_A : A ; -- [XXXDX] :: dusty; + pulverizo_V : V ; -- [GXXEK] :: pulverize; + pulverulentus_A : A ; -- [XXXDX] :: dusty; + pulvillus_M_N : N ; -- [XXXEC] :: little pillow; + pulvinar_N_N : N ; -- [XXXCO] :: cushioned couch (on which images of the gods were placed); couch for deity; + pulvinatus_A : A ; -- [XXXFS] :: cushion-shaped; B:swelling; + pulvinus_M_N : N ; -- [XXXBO] :: cushion/pillow; raised bed of earth; raised border; bath back; platform/socket; + pulvis_M_N : N ; -- [XXXBX] :: dust, powder; sand; + pulvisculus_M_N : N ; -- [XXXES] :: fine dust; dust-and-all; + pumex_M_N : N ; -- [XXXCO] :: pumice stone, similar volcanic rock; (esp. used to polish books/depilatory); + pumiceus_A : A ; -- [XXXCO] :: made of pumice stone or similar volcanic rock; + pumico_V2 : V2 ; -- [XXXCO] :: polish/rub smooth with pumice stone; (esp. book); + pumicosus_A : A ; -- [XXXCO] :: resembling pumice stone; pumilio_F_N : N ; -- [XXXEC] :: dwarf; - pumilio_M_N : N ; - pumilus_M_N : N ; - punctatus_A : A ; - punctim_Adv : Adv ; - punctio_F_N : N ; - punctum_N_N : N ; - pungo_V2 : V2 ; - punicans_A : A ; - puniceus_A : A ; - punio_V2 : V2 ; - punior_V : V ; - punitor_M_N : N ; - punnulis_F_N : N ; - pupa_F_N : N ; - pupilla_F_N : N ; - pupillaris_A : A ; - pupillus_M_N : N ; - puplicus_A : A ; - puppis_F_N : N ; - pupula_F_N : N ; - pupulus_M_N : N ; - purgamen_N_N : N ; - purgamentum_N_N : N ; - purgatio_F_N : N ; - purgatorium_N_N : N ; - purgo_V : V ; - purificatio_F_N : N ; - purifico_V2 : V2 ; - purismus_M_N : N ; - purista_M_N : N ; - puritanismus_M_N : N ; - puritanus_M_N : N ; - purpura_F_N : N ; - purpuratus_A : A ; - purpuratus_M_N : N ; - purpureus_A : A ; - purulente_Adv : Adv ; - purulentus_A : A ; - purum_N_N : N ; - purus_A : A ; - pus_N_N : N ; - pusa_F_N : N ; - pusillanimis_A : A ; - pusillanimitas_F_N : N ; - pusillanimus_A : A ; - pusillianimis_A : A ; - pusillitas_F_N : N ; - pusillulus_A : A ; - pusillum_N_N : N ; - pusillus_A : A ; - pusio_M_N : N ; - pussula_F_N : N ; - pustula_F_N : N ; - pusula_F_N : N ; - pusus_M_N : N ; - putamen_N_N : N ; - putatio_F_N : N ; - putator_M_N : N ; - puteal_N_N : N ; - putealis_A : A ; - puteo_V : V ; - puter_A : A ; - putesco_V : V ; - puteulanus_A : A ; - puteus_M_N : N ; - putidiusculus_A : A ; - putidus_A : A ; - puto_V2 : V2 ; - putorius_M_N : N ; - putredo_F_N : N ; - putrefacio_V2 : V2 ; - putrefactio_F_N : N ; - putrefio_V : V ; - putresco_V : V ; - putridus_A : A ; - putris_A : A ; - putro_V : V ; - putus_A : A ; + pumilio_M_N : N ; -- [XXXEC] :: dwarf; + pumilus_M_N : N ; -- [XXXEC] :: dwarf; + punctatus_A : A ; -- [GXXEK] :: punctuated; pointed; + punctim_Adv : Adv ; -- [XXXDX] :: with the point; + punctio_F_N : N ; -- [XBXDS] :: puncture; pricking pain; + punctum_N_N : N ; -- [FGXEK] :: |point; full-stop; period (sign of punctuation); + pungo_V2 : V2 ; -- [XXXBO] :: prick, puncture; sting (insect); jab/poke; mark with points/pricks; vex/trouble; + punicans_A : A ; -- [XXXEO] :: inclining to bright red; red/reddish/ruddy (L+S); blushing; Punic, Carthaginian; + puniceus_A : A ; -- [XXXDX] :: scarlet, crimson; + punio_V2 : V2 ; -- [XXXBO] :: punish (person/offense), inflict punishment; avenge, extract retribution; + punior_V : V ; -- [XXXCO] :: punish (person/offense), inflict punishment; avenge, extract retribution; + punitor_M_N : N ; -- [XXXDX] :: punisher, one who punishes; one who extracts retribution; avenger; + punnulis_F_N : N ; -- [FAXFT] :: small/little wing/feather; little fin; skirt (of garment) (Souter); + pupa_F_N : N ; -- [XXXEC] :: little girl; a doll; + pupilla_F_N : N ; -- [XBXEC] :: pupil of the eye; + pupillaris_A : A ; -- [XLXCO] :: of a ward/orphan; of/involving/suitable to minor under care of a guardian; + pupillus_M_N : N ; -- [XXXDX] :: orphan, ward; + puplicus_A : A ; -- [XXXES] :: public; (publicus); + puppis_F_N : N ; -- [XXXBO] :: stern/aft (of ship); poop; ship; back (L+S); [a ~ => abaft]; + pupula_F_N : N ; -- [XXXDX] :: pupil of the eye; + pupulus_M_N : N ; -- [XXXDS] :: little boy; puppet; + purgamen_N_N : N ; -- [XXXDX] :: impurity, that which is cleaned away; means of purification, which cleans; + purgamentum_N_N : N ; -- [XXXEC] :: sweepings, rubbish, filth; + purgatio_F_N : N ; -- [XXXDX] :: purification; + purgatorium_N_N : N ; -- [GEXEK] :: purgatory; + purgo_V : V ; -- [XXXBX] :: make clean, cleanse; excuse; + purificatio_F_N : N ; -- [XXXEO] :: purification, purifying; making (something) ritually clean; + purifico_V2 : V2 ; -- [XXXCO] :: purify/make ceremonially/ritually pure; clean/clear; free of dirt/encumbrances; + purismus_M_N : N ; -- [GXXEK] :: purism; + purista_M_N : N ; -- [GXXEK] :: purist; + puritanismus_M_N : N ; -- [GEXEK] :: Puritanism; + puritanus_M_N : N ; -- [GEXEK] :: Puritan; + purpura_F_N : N ; -- [XXXBX] :: purple color, purple; purple dye; purple-dyed cloth; + purpuratus_A : A ; -- [XXXDX] :: dressed in purple; + purpuratus_M_N : N ; -- [XXXDS] :: courtier; purple-clad attendant; + purpureus_A : A ; -- [XXXAX] :: purple, dark red; + purulente_Adv : Adv ; -- [XBXES] :: purulently; festeringly; + purulentus_A : A ; -- [XBXES] :: festering; purulent; + purum_N_N : N ; -- [XPXES] :: clear/bright/unclouded sky; + purus_A : A ; -- [XXXAO] :: ||clear, limpid, free of mist/cloud; ringing (voice); open (land); net; simple; + pus_N_N : N ; -- [XXXCO] :: pus; foul/corrupt matter (from a sore); bitterness, gall, venom (Cas); + pusa_F_N : N ; -- [XXXFO] :: girl; little girl; + pusillanimis_A : A ; -- [DXXDS] :: fainthearted, timid, pusillanimous; discouraged/worried (Souter); meanspirited; + pusillanimitas_F_N : N ; -- [EXXES] :: faintheartedness, timidity, cowardness, lack of courage; despondency; + pusillanimus_A : A ; -- [DXXFP] :: fainthearted, timid, pusillanimous; discouraged/worried (Souter); meanspirited; + pusillianimis_A : A ; -- [EXXEP] :: fainthearted, timid, pusillanimous; discouraged/worried (Souter); meanspirited; + pusillitas_F_N : N ; -- [XXXFO] :: tininess/insignificance; pettiness (Souter); trifling thing; faintheartedness; + pusillulus_A : A ; -- [DXXES] :: very little/small; + pusillum_N_N : N ; -- [XXXCO] :: small/tiny/little amount; trifle (L+S); little while; very little; + pusillus_A : A ; -- [XXXBO] :: |petty, trifling, insignificant; petty/mean/ungenerous (person/character); + pusio_M_N : N ; -- [XXXDO] :: boy; little boy (L+S); youth, lad; + pussula_F_N : N ; -- [XBXCO] :: inflamed sore/blister/pustule; small prominence of a surface, bubble; + pustula_F_N : N ; -- [XBXCO] :: inflamed sore/blister/pustule; small prominence of a surface, bubble; + pusula_F_N : N ; -- [XBXCO] :: inflamed sore/blister/pustule; small prominence of a surface, bubble; + pusus_M_N : N ; -- [XXXFO] :: boy; little boy (L+S); + putamen_N_N : N ; -- [XXXEC] :: cutting, paring, shell; + putatio_F_N : N ; -- [XAXEZ] :: pruning (Collins); + putator_M_N : N ; -- [XXXDX] :: pruner; + puteal_N_N : N ; -- [XXXDX] :: structure surrounding the mouth of a well (in the Comitium at Rome); + putealis_A : A ; -- [XXXDX] :: derived from a well; + puteo_V : V ; -- [XXXCO] :: stink, be rotten/putrid; smell bad; rot/decompose (in such a way as to stink); + puter_A : A ; -- [XXXDX] :: rotten, decaying; stinking, putrid, crumbling; + putesco_V : V ; -- [XXXDX] :: begin to rot, go off; + puteulanus_A : A ; -- [FXXEN] :: blue; + puteus_M_N : N ; -- [XXXBX] :: well; + putidiusculus_A : A ; -- [XXXFS] :: somewhat sickening; + putidus_A : A ; -- [XXXBO] :: rotten/decaying; foul/stinking; unpleasant/offensive/tiresome/affected/pedantic; + puto_V2 : V2 ; -- [XXXAX] :: think, believe, suppose, hold; reckon, estimate, value; clear up, settle; + putorius_M_N : N ; -- [GXXEK] :: skunk; + putredo_F_N : N ; -- [XXXEO] :: putrefaction, rottenness; [w/vulnerum => festering wound]; + putrefacio_V2 : V2 ; -- [XXXCO] :: cause to rot/decay/crumble/disintegrate; putrefy; make friable; soften; + putrefactio_F_N : N ; -- [EXXFS] :: rotting; + putrefio_V : V ; -- [XXXCO] :: be/become rotten/decayed/putrefied/crumbled/softened/soft; (putrefacio PASS); + putresco_V : V ; -- [XXXFO] :: rot, putrefy, be in a state of decay; + putridus_A : A ; -- [XXXEC] :: rotten, decayed; + putris_A : A ; -- [XXXDX] :: rotten, decaying; stinking, putrid, crumbling; + putro_V : V ; -- [XXXCO] :: decay, rot, putrefy; fester; become stale (water)/loose (soil); crumble, molder; + putus_A : A ; -- [XXXEC] :: pure, unmixed, unadulterated; 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 ; - pyelus_M_N : N ; - pyga_F_N : N ; - pygargos_M_N : N ; - pygargus_M_N : N ; - pylorus_M_N : N ; - pyra_F_N : N ; + puxis_2_N : N ; -- [XXXCO] :: small box/casket (originally boxwood) for medicine; iron heel on pestle (L+S); + pycnostylos_A : A ; -- [XXXFS] :: close-columned; + pycta_M_N : N ; -- [XXXDS] :: boxer; + pyctes_M_N : N ; -- [XXXDS] :: boxer; + pyelus_M_N : N ; -- [FXXEK] :: tub; + pyga_F_N : N ; -- [XBXES] :: rump, buttocks; (usu. pl.); (pure Latin nates); + pygargos_M_N : N ; -- [XAXEW] :: creature with white rump, pygarg; kind of antelope (addax?); kind of eagle/hawk; + pygargus_M_N : N ; -- [XAXEO] :: creature with white rump, pygarg; kind of antelope (addax?); kind of eagle/hawk; + pylorus_M_N : N ; -- [GBXEK] :: pylorus, lower orifice of stomach, opening from stomach to duodenum; + pyra_F_N : N ; -- [XXXDX] :: funeral pile, pyre; 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 ; + pyramis_2_N : N ; -- [XXXDX] :: pyramid; + pyrauloplanum_N_N : N ; -- [HTXEK] :: jet, jet plane; + pyrethrum_N_N : N ; -- [XAXEZ] :: Spanish camomile (Collins); + pyrites_F_N : N ; -- [DSXNS] :: flint; millstone; iron sulfide; + pyrius_A : A ; -- [GXXEK] :: fiery; pyrogenic; [pulvis pyrius => gunpowder]; + pyrobolum_N_N : N ; -- [GWXEK] :: bomb; + pyrobolus_M_N : N ; -- [GWXEK] :: bomb; pyromis_1_N : N ; -- [EXXFW] :: pyramid; - pyromis_2_N : N ; - pyropus_M_N : N ; - pyrrhica_F_N : N ; - pyrrhice_F_N : N ; - pyrrhicha_F_N : N ; - pyrrhiche_F_N : N ; - pyrrhichius_A : A ; - pyrrica_F_N : N ; - pyrrice_F_N : N ; - pyrricha_F_N : N ; - pyrriche_F_N : N ; - pyrricius_A : A ; - pythonicus_A : A ; - pythonissa_F_N : N ; - pytisma_N_N : N ; - pytisso_V : V ; + pyromis_2_N : N ; -- [EXXFW] :: pyramid; + pyropus_M_N : N ; -- [XXXDX] :: alloy of gold and bronze; red precious stone; + pyrrhica_F_N : N ; -- [XWXCO] :: kind of war-dance or reel; dance in armor (L+S); Pyrrhic dance; + pyrrhice_F_N : N ; -- [XWXCO] :: kind of war-dance or reel; dance in armor (L+S); Pyrrhic dance; + pyrrhicha_F_N : N ; -- [XWXCO] :: kind of war-dance or reel; dance in armor (L+S); Pyrrhic dance; + pyrrhiche_F_N : N ; -- [XWXCO] :: kind of war-dance or reel; dance in armor (L+S); Pyrrhic dance; + pyrrhichius_A : A ; -- [DPXES] :: pyrrhic, poetical foot of two short syllables; + pyrrica_F_N : N ; -- [XWXCO] :: kind of war-dance or reel; dance in armor (L+S); Pyrrhic dance; + pyrrice_F_N : N ; -- [XWXCO] :: kind of war-dance or reel; dance in armor (L+S); Pyrrhic dance; + pyrricha_F_N : N ; -- [XWXCO] :: kind of war-dance or reel; dance in armor (L+S); Pyrrhic dance; + pyrriche_F_N : N ; -- [XWXCO] :: kind of war-dance or reel; dance in armor (L+S); Pyrrhic dance; + pyrricius_A : A ; -- [DPXES] :: pyrrhic, poetical foot of two short syllables; + pythonicus_A : A ; -- [EEXES] :: prophetic; magical; + pythonissa_F_N : N ; -- [FEXFM] :: witch; sorceress; + pytisma_N_N : N ; -- [XXXDS] :: wine spit; that which is spat out when wine-tasting; + pytisso_V : V ; -- [XXXDS] :: spit out wine; to spit out wine after tasting; 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 ; - qua_Adv : Adv ; - quaad_Adv : Adv ; - quacumque_Adv : Adv ; - quacunque_Adv : Adv ; - quadamtenus_Adv : Adv ; - quadantenus_Adv : Adv ; - quadra_F_N : N ; - quadragenarius_A : A ; - quadragesima_F_N : N ; - quadrangulatus_A : A ; - quadrangulum_N_N : N ; - quadrangulus_A : A ; - quadrans_M_N : N ; - quadrantal_N_N : N ; - quadrantalis_A : A ; - quadrantarius_A : A ; - quadratum_N_N : N ; - quadratus_A : A ; - quadriangulus_A : A ; - quadrichordum_N_N : N ; - quadriduum_N_N : N ; - quadriennium_N_N : N ; - quadrifariam_Adv : Adv ; - quadrifarius_A : A ; - quadrifidus_A : A ; - quadriga_F_N : N ; - quadrigarius_A : A ; - quadrigarius_M_N : N ; - quadrigatus_A : A ; - quadrigula_F_N : N ; - quadrijugis_A : A ; - quadrijugus_A : A ; - quadrijugus_M_N : N ; - quadrilateralus_A : A ; - quadrilibris_A : A ; - quadrimulus_A : A ; - quadrimus_A : A ; - quadringenarius_A : A ; - quadripertitus_A : A ; - quadriplex_A : A ; + pyxis_2_N : N ; -- [XXXCO] :: small box/casket (originally boxwood) for medicine; iron heel on pestle (L+S); + pyxis_F_N : N ; -- [XXXCO] :: small box/casket (originally boxwood) for medicine; iron heel on pestle (L+S); + qua_Adv : Adv ; -- [XXXBX] :: where; by which route; + quaad_Adv : Adv ; -- [XXXCO] :: how long?, to what point in time?; for as great a distance as, for as long as; + quacumque_Adv : Adv ; -- [XXXCO] :: wherever; in whatever part/manner, however; by whatever route/way; + quacunque_Adv : Adv ; -- [XXXCO] :: wherever; in whatever part/manner, however; by whatever route/way; + quadamtenus_Adv : Adv ; -- [XXXEO] :: to a certain point/extent; in some measure; only so far (L+S); to a limit; + quadantenus_Adv : Adv ; -- [XXXES] :: to a certain point/extent; in some measure; only so far (L+S); to a limit; + quadra_F_N : N ; -- [XXXDX] :: square table; + quadragenarius_A : A ; -- [XXXES] :: of forty; + quadragesima_F_N : N ; -- [EEXES] :: Lent; Christian fast of forty days; + quadrangulatus_A : A ; -- [DSXDS] :: quadrangular, having four sides; + quadrangulum_N_N : N ; -- [DSXES] :: quadrangle, plane figure having four sides; + quadrangulus_A : A ; -- [XSXDO] :: quadrangular, having four sides; + quadrans_M_N : N ; -- [XXXDX] :: fourth part, a quarter; 1/4 as, small coin, "farthing"; + quadrantal_N_N : N ; -- [XSXCO] :: unit of liquid measure having volume a cubic Roman foot, amphora; cube/di; + quadrantalis_A : A ; -- [XSXNO] :: quarter-foot, measuring quarter of Roman foot; + quadrantarius_A : A ; -- [XXXDO] :: quarter-, of/relating to a quarter; costing quarter as (fee for baths); + quadratum_N_N : N ; -- [XXXES] :: square; S:quadrature (astronomy); + quadratus_A : A ; -- [XXXDX] :: squared, squareset; + quadriangulus_A : A ; -- [XSXDO] :: quadrangular, having four sides; + quadrichordum_N_N : N ; -- [EDXFP] :: quadrichord/tetrachord, 4-stringed musical instrument; + quadriduum_N_N : N ; -- [XXXBO] :: period of four days; [~o => in the four days from now, within four day of]; + quadriennium_N_N : N ; -- [XXXEC] :: period of four years; + quadrifariam_Adv : Adv ; -- [XXXEC] :: in four parts; + quadrifarius_A : A ; -- [EXXES] :: four-fold; + quadrifidus_A : A ; -- [XXXFS] :: four-divided; split into four; + quadriga_F_N : N ; -- [XXXDX] :: four horse chariot (sg. or pl.); chariot team of four horses; any team; + quadrigarius_A : A ; -- [XXXEC] :: of a racing charioteer; + quadrigarius_M_N : N ; -- [XXXES] :: chariot racer; chariot driver in circus; + quadrigatus_A : A ; -- [XXXEC] :: stamped with the figure of a four-horse chariot; + quadrigula_F_N : N ; -- [XAXEC] :: little team of four horse (pl.)s; + quadrijugis_A : A ; -- [XPXES] :: of team of four (poetical); + quadrijugus_A : A ; -- [XPXFS] :: yoked four abreast; of team of four (poetical); + quadrijugus_M_N : N ; -- [BXXFS] :: four-horse team (pl.); (Plautus); + quadrilateralus_A : A ; -- [XXXFS] :: four-sided; quadrilateral; + quadrilibris_A : A ; -- [BXXFS] :: weighing four pounds(Plautus); + quadrimulus_A : A ; -- [BXXFS] :: four-years-old (Plautus; of quadrimus); + quadrimus_A : A ; -- [XXXEC] :: four years old; + quadringenarius_A : A ; -- [XXXEC] :: of four hundred each; + quadripertitus_A : A ; -- [XXXCO] :: divided into four parts, quadripartite, fourfold; + quadriplex_A : A ; -- [XSXCO] :: fourfold; having four parts/aspects; four times as much; multiplied by four; quadriporticus_F_N : N ; -- [FEXEK] :: cloister; - quadriporticus_M_N : N ; - quadriremis_A : A ; - quadriremis_F_N : N ; - quadrivium_N_N : N ; - quadro_V : V ; - quadrum_N_N : N ; - quadrupedans_A : A ; - quadrupertitus_A : A ; - quadrupes_A : A ; + quadriporticus_M_N : N ; -- [FEXEK] :: cloister; + quadriremis_A : A ; -- [XXXDX] :: having four oars to each bench/banks of oars; + quadriremis_F_N : N ; -- [XXXDX] :: quadrireme, vessel having four oars to each bench/banks of oars; + quadrivium_N_N : N ; -- [FGXEB] :: quadrivium, 2nd group of 7 liberal arts (arithmetic/geometry/astronomy/music); + quadro_V : V ; -- [XXXDX] :: square up, make square/suitable; square/fit; quadruple; form rectangular shape; + quadrum_N_N : N ; -- [XSXEO] :: square; square section; regular shape or form; car-frame (Cal); + quadrupedans_A : A ; -- [XXXDX] :: galloping; + quadrupertitus_A : A ; -- [XXXCO] :: divided into four parts, quadripartite, fourfold; + quadrupes_A : A ; -- [XXXDX] :: four-footed; quadrupes_F_N : N ; -- [XXXDX] :: quadruped; - quadrupes_M_N : N ; - quadruplator_M_N : N ; - quadruplex_A : A ; - quadruplico_V : V ; - quadruplor_V : V ; - quadruplum_N_N : N ; - quadruplus_A : A ; - quadrus_A : A ; - quadruvium_N_N : N ; - quaerito_V : V ; - quaero_V2 : V2 ; - quaesitio_F_N : N ; - quaesitum_N_N : N ; - quaesitus_A : A ; - quaeso_V : V ; - quaesticulus_M_N : N ; - quaestio_F_N : N ; - quaestiuncula_F_N : N ; - quaestor_M_N : N ; - quaestorium_N_N : N ; - quaestorius_A : A ; - quaestorius_M_N : N ; - quaestuosus_A : A ; - quaestura_F_N : N ; - quaestus_M_N : N ; - qualibet_Adv : Adv ; - qualifico_V2 : V2 ; - qualis_A : A ; - qualislibet_Adv : Adv ; - qualitas_F_N : N ; - qualiter_Adv : Adv ; - qualitercumque_Adv : Adv ; - qualitercunque_Adv : Adv ; - qualubet_Adv : Adv ; - qualum_N_N : N ; - qualus_M_N : N ; - quam_Adv : Adv ; - quam_Conj : Conj ; - quamde_Adv : Adv ; - quamdiu_Adv : Adv ; - quamlibet_Adv : Adv ; - quamobrem_Conj : Conj ; - quamprimum_Adv : Adv ; - quamquam_Conj : Conj ; - quamtocius_Adv : Adv ; - quamtotius_Adv : Adv ; - quamvis_Adv : Adv ; - quamvis_Conj : Conj ; - quandiu_Adv : Adv ; - quandiucumque_Adv : Adv ; - quandius_Adv : Adv ; - quando_Adv : Adv ; - quando_Conj : Conj ; - quandocumque_Adv : Adv ; - quandocunque_Adv : Adv ; - quandoque_Adv : Adv ; - quandoquidem_Conj : Conj ; - quanquam_Conj : Conj ; - quantillus_A : A ; - quantitas_F_N : N ; - quantitativus_A : A ; - quanto_Adv : Adv ; - quantocius_Adv : Adv ; - quantopere_Adv : Adv ; - quantulum_N_N : N ; - quantulus_A : A ; - quantum_Adv : Adv ; - quantumcumque_Adv : Adv ; - quantumvis_Adv : Adv ; - quantus_A : A ; - quantusvis_Adv : Adv ; - quantuvis_Adv : Adv ; - quapropter_Adv : Adv ; - quaqua_Adv : Adv ; - quare_Adv : Adv ; - quartadecimamus_M_N : N ; - quartadecimanus_M_N : N ; - quartadecumamus_M_N : N ; - quartadecumanus_M_N : N ; - quartanus_M_N : N ; - quartarius_M_N : N ; - quartusdecimus_A : A ; - quarzeus_A : A ; - quarzicus_A : A ; - quasi_Adv : Adv ; - quasi_Conj : Conj ; - quasillum_N_N : N ; - quasillus_M_N : N ; - quassatio_F_N : N ; - quasso_V : V ; - quassus_A : A ; - quatefacio_V2 : V2 ; - quatenus_Adv : Adv ; - quater_Adv : Adv ; - quaternarius_A : A ; - quaternio_M_N : N ; - quatinus_Adv : Adv ; - quatio_V : V ; - quatriduum_N_N : N ; - quattuorvir_M_N : N ; - quattuorviratus_M_N : N ; - que_Conj : Conj ; - quemadmodum_Adv : Adv ; - queo_1_VV : VV ; - queo_2_VV : VV ; - quercetum_N_N : N ; - querceus_A : A ; - quercus_F_N : N ; - querela_F_N : N ; - querella_F_N : N ; - queribundus_A : A ; - querimonia_F_N : N ; - queritor_V : V ; - querneus_A : A ; - quernus_A : A ; - queror_V : V ; - querquerus_A : A ; - querquetulanus_A : A ; - querulus_A : A ; - questus_M_N : N ; - qui_Adv : Adv ; - quia_Conj : Conj ; - quianam_Adv : Adv ; - quiddam_N : N ; - quidditas_F_N : N ; - quidem_Adv : Adv ; - quidnam_Adv : Adv ; - quidni_Adv : Adv ; - quies_F_N : N ; - quiesco_V2 : V2 ; - quiete_Adv : Adv ; - quietus_A : A ; - quin_Adv : Adv ; - quin_Conj : Conj ; - quinaria_F_N : N ; - quinarius_A : A ; - quinarius_M_N : N ; - quincunx_M_N : N ; - quindecimprimus_M_N : N ; - quindecimvir_M_N : N ; - quindecimviralis_A : A ; - quinimmo_Adv : Adv ; - quinquagenarius_A : A ; - quinquagenarius_M_N : N ; - quinquangulus_A : A ; - quinquennalis_A : A ; - quinquennis_A : A ; - quinquennium_N_N : N ; - quinquepartitus_A : A ; - quinquepertitus_A : A ; - quinqueprimus_M_N : N ; - quinqueremis_A : A ; - quinqueremis_F_N : N ; - quinquevir_M_N : N ; - quinqueviratus_M_N : N ; - quinquiplico_V : V ; - quintadecimanus_M_N : N ; - quintadecumanus_M_N : N ; - quintana_F_N : N ; - quintanus_A : A ; - quintanus_M_N : N ; - quintarius_A : A ; - quinticeps_A : A ; - quintum_Adv : Adv ; - quinymo_Adv : Adv ; - quippe_Adv : Adv ; - quippini_Adv : Adv ; - quiris_F_N : N ; - quiritatio_F_N : N ; - quiritatus_M_N : N ; - quiritor_V : V ; - quisquilia_F_N : N ; - qum_Abl_Prep : Prep ; - quo_Adv : Adv ; - quo_Conj : Conj ; - quoad_Conj : Conj ; - quoadusque_Adv : Adv ; - quocirca_Conj : Conj ; - quocumque_Adv : Adv ; - quocunque_Adv : Adv ; - quod_Adv : Adv ; - quod_Conj : Conj ; - quodammodo_Adv : Adv ; - quodnisi_Conj : Conj ; - quodsi_Conj : Conj ; - quoiquoimodi_Adv : Adv ; - quojas_A : A ; - quojatis_A : A ; - quojus_A : A ; - quojuscemodi_Adv : Adv ; - quojusquemodi_Adv : Adv ; - quolibet_Adv : Adv ; - quom_Abl_Prep : Prep ; - quom_Adv : Adv ; - quominus_Conj : Conj ; - quomodo_Adv : Adv ; - quomodocumque_Adv : Adv ; - quomodocunque_Adv : Adv ; - quomodonam_Adv : Adv ; - quonam_Adv : Adv ; - quondam_Adv : Adv ; - quoniam_Conj : Conj ; - quopiam_Adv : Adv ; - quoquam_Adv : Adv ; - quoque_Adv : Adv ; - quoquo_Adv : Adv ; - quoquomodo_Adv : Adv ; - quoquomque_Adv : Adv ; - quoquoversum_Adv : Adv ; - quoquoversus_Adv : Adv ; - quor_Adv : Adv ; - quorsom_Adv : Adv ; - quorsum_Adv : Adv ; - quorsus_Adv : Adv ; - quosum_Adv : Adv ; - quot_A : A ; - quotannis_Adv : Adv ; - quotcumque_A : A ; - quotcunque_A : A ; - quotenus_A : A ; - quotidianus_A : A ; - quotidie_Adv : Adv ; - quotiens_Adv : Adv ; - quotienscumque_Adv : Adv ; - quotienscunque_Adv : Adv ; - quotiensquonque_Adv : Adv ; - quoties_Adv : Adv ; - quotiescumque_Adv : Adv ; - quotiescunque_Adv : Adv ; - quotiesquonque_Adv : Adv ; - quotlibet_Adv : Adv ; - quotomus_A : A ; - quotum_N_N : N ; - quotus_A : A ; - quotusquisque_Adv : Adv ; - quousque_Adv : Adv ; - qur_Adv : Adv ; - quum_Abl_Prep : Prep ; - quum_Conj : Conj ; - quur_Adv : Adv ; - rabbi_N : N ; - rabbinus_M_N : N ; - rabboni_N : N ; - rabidus_A : A ; - rabies_F_N : N ; - rabio_V : V ; - rabiola_F_N : N ; - rabiose_Adv : Adv ; - rabiosulus_A : A ; - rabiosus_A : A ; - rabula_M_N : N ; - raca_A : A ; - racana_F_N : N ; - racemifer_A : A ; - racemus_M_N : N ; - racha_A : A ; - rachana_F_N : N ; - racialis_A : A ; - radaricus_A : A ; - radiatilis_A : A ; - radiatrum_N_N : N ; - radicalis_A : A ; - radicalismus_M_N : N ; - radicatus_A : A ; - radicitus_Adv : Adv ; - radico_V : V ; - radicula_F_N : N ; - radio_V : V ; - radioactivitas_F_N : N ; - radioactivus_A : A ; - radioelectricus_A : A ; - radiographema_N_N : N ; - radiographia_F_N : N ; - radiologia_F_N : N ; - radiologicus_A : A ; - radiologus_M_N : N ; - radiophonia_F_N : N ; - radiophonicus_A : A ; - radiophonum_N_N : N ; - radior_V : V ; - radiosus_A : A ; - radiotherapia_F_N : N ; - radius_M_N : N ; - radix_F_N : N ; - rado_V2 : V2 ; - raeda_F_N : N ; - raedarius_M_N : N ; - raffinatio_F_N : N ; - ramale_N_N : N ; - ramentum_N_N : N ; - rameus_A : A ; - ramex_M_N : N ; - ramnum_N_N : N ; - ramosus_A : A ; - ramulus_M_N : N ; - ramus_M_N : N ; - ramusculus_M_N : N ; - rana_F_N : N ; - rancens_A : A ; - rancidulus_A : A ; - rancidus_A : A ; - ranunculus_M_N : N ; - rapa_F_N : N ; - rapacida_M_N : N ; - rapacitas_F_N : N ; - rapax_A : A ; - raphaninus_A : A ; + quadrupes_M_N : N ; -- [XXXDX] :: quadruped; + quadruplator_M_N : N ; -- [XXXEC] :: multiplier by four; an exaggerator; an informer; + quadruplex_A : A ; -- [XSXCO] :: fourfold; having four parts/aspects; four times as much; multiplied by four; + quadruplico_V : V ; -- [XXXFS] :: quadruple; multiply by four; + quadruplor_V : V ; -- [XXXEC] :: be informer; + quadruplum_N_N : N ; -- [XXXEC] :: four times the amount; + quadruplus_A : A ; -- [XXXEC] :: fourfold; + quadrus_A : A ; -- [DSXES] :: square; + quadruvium_N_N : N ; -- [XXXFO] :: place where four roads meet; crossroads; + quaerito_V : V ; -- [XXXDX] :: seek, search for; + quaero_V2 : V2 ; -- [XXXAX] :: search for, seek, strive for; obtain; ask, inquire, demand; + quaesitio_F_N : N ; -- [XXXDX] :: inquisition; + quaesitum_N_N : N ; -- [XXXDX] :: question, inquiry; gain, acquisition, earnings; + quaesitus_A : A ; -- [XXXDX] :: special, sought out, looked for; select; artificial, studied, affected; + quaeso_V : V ; -- [XXXBX] :: beg, ask, ask for, seek; + quaesticulus_M_N : N ; -- [XXXFS] :: small profit; + quaestio_F_N : N ; -- [XXXDX] :: questioning, inquiry; investigation; + quaestiuncula_F_N : N ; -- [XXXEC] :: little question; + quaestor_M_N : N ; -- [XXXDX] :: quaestor; state treasurer; quartermaster general; + quaestorium_N_N : N ; -- [XLXES] :: quaestor's residence; + quaestorius_A : A ; -- [XXXDX] :: of a quaestor; + quaestorius_M_N : N ; -- [XXXDX] :: ex-quaestor; + quaestuosus_A : A ; -- [XXXDX] :: profitable; + quaestura_F_N : N ; -- [XXXDX] :: quaestorship; public money; + quaestus_M_N : N ; -- [XXXDX] :: gain, profit; + qualibet_Adv : Adv ; -- [XXXDX] :: where you will, anywhere, by any road you like; anyway, as you please; + qualifico_V2 : V2 ; -- [FXXFF] :: qualify, invest with a quality/qualities; + qualis_A : A ; -- [XXXAO] :: what kind/sort/condition (of); what is (he/it) like; what/how excellent a ...; + qualislibet_Adv : Adv ; -- [EXXES] :: of what sort you will; + qualitas_F_N : N ; -- [XXXCO] :: character/nature, essential/distinguishing quality/characteristic; G:mood; + qualiter_Adv : Adv ; -- [XXXDX] :: as, just as; in what/which way/state/manner (INTERJ), how; + qualitercumque_Adv : Adv ; -- [XXXEO] :: no matter how; in whatever manner; howsoever (L+S); be it as it may; + qualitercunque_Adv : Adv ; -- [XXXEO] :: no matter how; in whatever manner; howsoever (L+S); be it as it may; + qualubet_Adv : Adv ; -- [XXXDX] :: where you will, anywhere, by any road you like; anyway, as you please; + qualum_N_N : N ; -- [XXXDX] :: wicker basket; + qualus_M_N : N ; -- [XXXDX] :: wicker basket; + quam_Adv : Adv ; -- [XXXAX] :: how, how much; as, than; [quam + superlative => as ... as possible]; + quam_Conj : Conj ; -- [XXXDX] :: how, than; + quamde_Adv : Adv ; -- [BXXFS] :: how, how much; as; (archaic form of quam); + quamdiu_Adv : Adv ; -- [XXXBO] :: |for the preceding period until; up to the time that; inasmuch as; (quam diu); + quamlibet_Adv : Adv ; -- [XXXDX] :: however, however much; + quamobrem_Conj : Conj ; -- [XXXDX] :: why, for what reason, on what account; on account of which, where/there-fore; + quamprimum_Adv : Adv ; -- [XXXEO] :: to the highest degree possible; + quamquam_Conj : Conj ; -- [XXXDX] :: though, although; yet; nevertheless; + quamtocius_Adv : Adv ; -- [FXXEM] :: as soon as possible; completely (?), all (Nelson); + quamtotius_Adv : Adv ; -- [FXXEM] :: as soon as possible; completely (?), all (Nelson); + quamvis_Adv : Adv ; -- [XXXAX] :: however much; although; + quamvis_Conj : Conj ; -- [XXXDX] :: however much; although; + quandiu_Adv : Adv ; -- [XXXBO] :: |for the preceding period until; up to the time that; inasmuch as; (quam diu); + quandiucumque_Adv : Adv ; -- [XXXIO] :: for as long as; (rel adv); + quandius_Adv : Adv ; -- [XXXIO] :: for as long as; up to the time that; + quando_Adv : Adv ; -- [XXXAX] :: when (interog), at what time; at any time (indef adv); + quando_Conj : Conj ; -- [XXXDX] :: when, since, because; [si quando => if ever]; + quandocumque_Adv : Adv ; -- [XXXCO] :: whenever, at whatever time; at some time or other/any time; as often/soon as; + quandocunque_Adv : Adv ; -- [XXXCO] :: whenever, at whatever time; at some time or other/any time; as often/soon as; + quandoque_Adv : Adv ; -- [XXXCO] :: whenever, at whatever time; at some time or other/any time/ever; whereas; + quandoquidem_Conj : Conj ; -- [XXXDX] :: since, seeing that; + quanquam_Conj : Conj ; -- [XXXDX] :: though, although; yet; nevertheless; + quantillus_A : A ; -- [XXXES] :: how little?; + quantitas_F_N : N ; -- [XXXBO] :: magnitude/multitude, quantity, degree, size; (specified) amount/quantity/sum; + quantitativus_A : A ; -- [GXXEK] :: quantitative; + quanto_Adv : Adv ; -- [XXXDX] :: (by) how much; + quantocius_Adv : Adv ; -- [DXXDS] :: the_sooner/quicker the_better; + quantopere_Adv : Adv ; -- [XXXDX] :: how greatly; in what degree; + quantulum_N_N : N ; -- [XXXCO] :: how small/trifling an amount/matter; what a small/trifling thing/amount/matter; + quantulus_A : A ; -- [XXXBO] :: how small/little/trifling a ...; how small!; of what (small) size; + quantum_Adv : Adv ; -- [XXXDX] :: so much as; how much; how far; + quantumcumque_Adv : Adv ; -- [XXXDO] :: as far as; to whatever degree; + quantumvis_Adv : Adv ; -- [XXXCO] :: to as great a degree as you like, as much/long as you like; however; although; + quantus_A : A ; -- [XXXAO] :: how great; how much/many; of what size/amount/degree/number/worth/price; + quantusvis_Adv : Adv ; -- [XXXCO] :: to as great a degree as you like, as much/long as you like; however; although; + quantuvis_Adv : Adv ; -- [FXXEN] :: as great as you please, however great; + quapropter_Adv : Adv ; -- [XXXBX] :: wherefore, why, for what?; + quaqua_Adv : Adv ; -- [XXXCO] :: wherever; in every place/point at/through which; [~ versus => on all sides]; + quare_Adv : Adv ; -- [XXXAX] :: in what way? how? by which means, whereby; why; wherefore, therefore, hence; + quartadecimamus_M_N : N ; -- [XWXDO] :: man of fourteenth legion; heretic celebrating Easter 14th day of 1st moon; + quartadecimanus_M_N : N ; -- [XWXFD] :: 14th legion soldier; (see also quartadecuman-) + quartadecumamus_M_N : N ; -- [XWXDS] :: man of fourteenth legion; heretic celebrating Easter 14th day of 1st moon; + quartadecumanus_M_N : N ; -- [XWXEC] :: soldiers (pl.) of the fourteenth legion; + quartanus_M_N : N ; -- [XWXES] :: 4th legion soldier; men (pl.) of the 14th legion; + quartarius_M_N : N ; -- [XXXEC] :: fourth part of a sextarius; + quartusdecimus_A : A ; -- [XXXEC] :: fourteenth; + quarzeus_A : A ; -- [GXXEK] :: in quartz; + quarzicus_A : A ; -- [GTXEK] :: quartz-adjusted; + quasi_Adv : Adv ; -- [XXXAX] :: as if, just as if, as though; as it were; about; + quasi_Conj : Conj ; -- [XXXDX] :: as if, just as if, as though; as it were; about; + quasillum_N_N : N ; -- [XXXEC] :: little basket; + quasillus_M_N : N ; -- [XXXEC] :: little basket; + quassatio_F_N : N ; -- [XXXDX] :: violent shaking; + quasso_V : V ; -- [XXXDX] :: shake repeatedly; wave, flourish; batter; weaken; + quassus_A : A ; -- [XXXDX] :: shaking, battered, bruised; + quatefacio_V2 : V2 ; -- [XXXEC] :: shake, weaken; + quatenus_Adv : Adv ; -- [XXXAO] :: how far/long?, to what point; to what extent; where; while, so far as; since; + quater_Adv : Adv ; -- [XXXCO] :: four times (number/degree); on four occasions; (how often); time and again; + quaternarius_A : A ; -- [FDXES] :: containing/consisting of four; of 4 each (L+S); quaternary; [numerus ~ => 4]; + quaternio_M_N : N ; -- [DXXES] :: number four; 4 on a di; group of 4 (men/things); quaterion/body of 4 soldiers; + quatinus_Adv : Adv ; -- [XXXEO] :: how far/long?, to what point; to what extent; where; while, so far as; since; + quatio_V : V ; -- [XXXAX] :: shake; + quatriduum_N_N : N ; -- [XXXBO] :: period of four days; [~o => in the four days from now, within four day of]; + quattuorvir_M_N : N ; -- [XXXDX] :: body of four men/officials (pl.); board of chief magistrates; + quattuorviratus_M_N : N ; -- [XLXES] :: quattuorvir's office; + que_Conj : Conj ; -- [FXXET] :: and; (while properly attached as enclitic sometimes copyists make mistakes); + quemadmodum_Adv : Adv ; -- [XXXBX] :: in what way, how; as, just as; to the extent that; + queo_1_V : V ; -- [XXXBX] :: be able; + queo_2_V : V ; -- [XXXBX] :: be able; + quercetum_N_N : N ; -- [XAXEC] :: oak forest; + querceus_A : A ; -- [XAXEC] :: oaken, of oak; + quercus_F_N : N ; -- [XAXBO] :: oak, oak-tree; oak wood/timber/object; oak leaf garland (honor); sea-oak; + querela_F_N : N ; -- [XXXBO] :: complaint, grievance; illness; difference of opinion; lament; blame (Plater); + querella_F_N : N ; -- [XXXBO] :: complaint, grievance; illness; difference of opinion; lament; blame (Plater); + queribundus_A : A ; -- [XXXEC] :: complaining, plaintive; + querimonia_F_N : N ; -- [XXXDX] :: complaint, "difference of opinion"; + queritor_V : V ; -- [XXXDX] :: complain; make a public outcry, cry out in protest; complain excessively; + querneus_A : A ; -- [XAXFS] :: oaken; + quernus_A : A ; -- [XXXDX] :: of oak, made of oak wood; + queror_V : V ; -- [XXXAX] :: complain; protest, grumble, gripe; make formal complaint in court of law; + querquerus_A : A ; -- [XXXFS] :: shivering; + querquetulanus_A : A ; -- [XAXEC] :: of an oak forest; + querulus_A : A ; -- [XXXDX] :: complaining, querulous; giving forth a mournful sound; + questus_M_N : N ; -- [XXXDX] :: complaint; + qui_Adv : Adv ; -- [XXXAO] :: how?; how so; in what way; by what/which means; whereby; at whatever price; + quia_Conj : Conj ; -- [XXXAX] :: because; + quianam_Adv : Adv ; -- [XXXDX] :: why ever?; + quiddam_N : N ; -- [XXXDS] :: something; + quidditas_F_N : N ; -- [FEXCF] :: quiddity, what a thing is, essence of a thing; (answers question quid est res); + quidem_Adv : Adv ; -- [XXXAX] :: indeed (postpositive), certainly, even, at least; ne...quidem -- not...even; + quidnam_Adv : Adv ; -- [XXXDX] :: what? how?; + quidni_Adv : Adv ; -- [XXXDX] :: why not?; + quies_F_N : N ; -- [XXXBX] :: quiet, calm, rest, peace; sleep; + quiesco_V2 : V2 ; -- [XXXAX] :: rest, keep quiet/calm, be at peace/rest; be inactive/neutral; permit; sleep; + quiete_Adv : Adv ; -- [XXXDX] :: quietly, peacefully, calmly, serenely; + quietus_A : A ; -- [XXXDX] :: at rest; quiet, tranquil, calm, peaceful; orderly; neutral; still; idle; + quin_Adv : Adv ; -- [XXXAX] :: why not, in fact; + quin_Conj : Conj ; -- [XXXDX] :: so that not, without; that not; but that; that; [quin etiam => moreover]; + quinaria_F_N : N ; -- [XTXFO] :: five quarter-digit bore of pipe used as measure of capacity; + quinarius_A : A ; -- [XXXCO] :: containing five each; grouped-by-fives; made of sheet five digits wide (pipe); + quinarius_M_N : N ; -- [XLXEO] :: quinarius (Roman coin worth five asses, half a denarius); + quincunx_M_N : N ; -- [XXXDX] :: quincunx, the five on dice; 5/12, esp. of an as = 5 unciae; + quindecimprimus_M_N : N ; -- [XLXEC] :: fifteen senators (pl.) of a municipium; + quindecimvir_M_N : N ; -- [XLXEC] :: one of board of fifteen magistrates; + quindecimviralis_A : A ; -- [XLXEC] :: of the quindecimviri (board of fifteen magistrates); + quinimmo_Adv : Adv ; -- [XXXCO] :: indeed, in fact; but truly; but/and more/furthermore; + quinquagenarius_A : A ; -- [XXXDO] :: containing/consisting of 50; from 50 digit sheet; 50 digit square; 50 years old; + quinquagenarius_M_N : N ; -- [XWXES] :: captain of 50 men (Israelite), officer commanding 50 men; + quinquangulus_A : A ; -- [XXXFS] :: five-cornered; + quinquennalis_A : A ; -- [XLXCO] :: occurring every five years; lasting for five years; (officials/offices); + quinquennis_A : A ; -- [XXXCO] :: five years old; lasting five years; occurring once every five years; + quinquennium_N_N : N ; -- [XXXCO] :: period of five years; (sometimes applied by old inclusive rule to four years); + quinquepartitus_A : A ; -- [XXXES] :: in five portions; fivefold; + quinquepertitus_A : A ; -- [XXXEC] :: in five portions, fivefold; + quinqueprimus_M_N : N ; -- [XLXEC] :: five chief senators (pl.) in a municipium; + quinqueremis_A : A ; -- [XWXEO] :: quinquereme (w/navis), large galley with 5 rowers to each room/banks of oars; + quinqueremis_F_N : N ; -- [XWXEO] :: quinquereme, large galley with five rowers to each room or five banks of oars; + quinquevir_M_N : N ; -- [XLXEC] :: one of board of five; + quinqueviratus_M_N : N ; -- [XLXEC] :: office of quinquevir; + quinquiplico_V : V ; -- [XSXEC] :: multiply by five; + quintadecimanus_M_N : N ; -- [XWXEC] :: soldiers (pl.) of the fifteenth legion; + quintadecumanus_M_N : N ; -- [XWXFO] :: soldiers of the fifteenth legion; + quintana_F_N : N ; -- [XWXEO] :: road (w/via) in a Roman camp between fifth and sixth maniples (used as market); + quintanus_A : A ; -- [XXXCO] :: of/belonging to the 5th; falling on 5th of month; occurring at intervals of 5; + quintanus_M_N : N ; -- [XWXEO] :: soldiers of the fifth legion; + quintarius_A : A ; -- [XXXDO] :: of/connected to the 5th; occurring at intervals of 5 centuriae (surveying); + quinticeps_A : A ; -- [XXXFS] :: five-peaked; + quintum_Adv : Adv ; -- [XXXDX] :: for the fifth time; + quinymo_Adv : Adv ; -- [FXXEN] :: indeed, in fact; but truly; rather (Nelson); (= quinimmo); + quippe_Adv : Adv ; -- [XXXAX] :: of course; as you see; obviously; naturally; by all means; + quippini_Adv : Adv ; -- [XXXEC] :: why not; + quiris_F_N : N ; -- [XXXDX] :: spear (Sabine word); + quiritatio_F_N : N ; -- [XXXEC] :: shriek, scream; + quiritatus_M_N : N ; -- [EXXFS] :: plaintive cry; wail; + quiritor_V : V ; -- [XXXDX] :: complain; make a public outcry, cry out in protest; complain excessively; + quisquilia_F_N : N ; -- [XXXEC] :: rubbish (pl.), sweepings, refuse; + qum_Abl_Prep : Prep ; -- [BXXEO] :: |under command/at the head of; having/containing/including; using/by means of; + quo_Adv : Adv ; -- [XXXDX] :: where, to what place; to what purpose; for which reason, therefore; + quo_Conj : Conj ; -- [XXXDX] :: whither, in what place, where; + quoad_Conj : Conj ; -- [XXXDX] :: as long as, until; + quoadusque_Adv : Adv ; -- [XXXCS] :: until that; + quocirca_Conj : Conj ; -- [XXXDX] :: on account of which; wherefore; + quocumque_Adv : Adv ; -- [XXXCO] :: wherever, to/in any place/quarter to which/whatever, whithersoever; anywhere; + quocunque_Adv : Adv ; -- [XXXCO] :: wherever, to/in any place/quarter to which/whatever, whithersoever; anywhere; + quod_Adv : Adv ; -- [XXXDX] :: with respect to which; + quod_Conj : Conj ; -- [XXXDX] :: because, as far as, insofar as; [quod si => but if]; + quodammodo_Adv : Adv ; -- [XXXEC] :: in a certain way, in a certain measure; + quodnisi_Conj : Conj ; -- [XXXDX] :: but if not; and if not; (introduces conditional); (quodnisi = quod nisi); + quodsi_Conj : Conj ; -- [XXXDX] :: but if; and if; (introduces conditional); (quodsi = quod si) + quoiquoimodi_Adv : Adv ; -- [BXXCS] :: of what kind/sort/nature soever; + quojas_A : A ; -- [AXXCO] :: of what country/town/locality?; whence? (L+S); + quojatis_A : A ; -- [XXXCO] :: of what country/town/locality?; whence? (L+S); + quojus_A : A ; -- [AXXCS] :: of whom?, whose?; (interrogative); of/pertaining to whom, whose (relative); + quojuscemodi_Adv : Adv ; -- [DXXFS] :: of what kind/sort/nature soever; + quojusquemodi_Adv : Adv ; -- [XXXFS] :: of whatever kind/sort/nature; + quolibet_Adv : Adv ; -- [XXXDX] :: whithersoever you please; + quom_Abl_Prep : Prep ; -- [BXXDO] :: |under command/at the head of; having/containing/including; using/by means of; + quom_Adv : Adv ; -- [BXXAO] :: |as soon; while, as (well as); whereas, in that, seeing that; on/during which; + quominus_Conj : Conj ; -- [XXXDX] :: that not, from (quo minus); + quomodo_Adv : Adv ; -- [XXXAX] :: how, in what way; just as; + quomodocumque_Adv : Adv ; -- [XXXCO] :: however, no matter what way; in whatever way; somehow; in some degree or other; + quomodocunque_Adv : Adv ; -- [XXXCO] :: however, no matter what way; in whatever way; somehow; in some degree or other; + quomodonam_Adv : Adv ; -- [XXXEC] :: how then?; + quonam_Adv : Adv ; -- [XXXDX] :: to whatever place; + quondam_Adv : Adv ; -- [XXXAX] :: formerly, once, at one time; some day, hereafter; + quoniam_Conj : Conj ; -- [XXXAX] :: because, since, seeing that; + quopiam_Adv : Adv ; -- [XXXDX] :: somewhere; + quoquam_Adv : Adv ; -- [XXXDX] :: to any place, anywhere; + quoque_Adv : Adv ; -- [XXXAO] :: likewise/besides/also/too; not only; even/actually; (after word emphasized); + quoquo_Adv : Adv ; -- [XXXCO] :: wherever, in whatever place/direction; whatever; anywhere; in each direction; + quoquomodo_Adv : Adv ; -- [XXXDX] :: in whatever way; however (quoquo modo); + quoquomque_Adv : Adv ; -- [XXXCO] :: wherever, to/in any place/quarter to which/whatever, whithersoever; anywhere; + quoquoversum_Adv : Adv ; -- [XXXDX] :: in every direction; in every way; + quoquoversus_Adv : Adv ; -- [XXXDX] :: in every direction; in every way; + quor_Adv : Adv ; -- [XXXEO] :: why, wherefore, for what reason? (impatience); on account of which? because; + quorsom_Adv : Adv ; -- [XXXBO] :: whither, in what direction; to what place/action/point/end; with what view? + quorsum_Adv : Adv ; -- [XXXBO] :: whither, in what direction; to what place/action/point/end; with what view? + quorsus_Adv : Adv ; -- [XXXBO] :: whither, in what direction; to what place/action/point/end; with what view? + quosum_Adv : Adv ; -- [XXXBO] :: whither, in what direction; to what place/action/point/end; with what view? + quot_A : A ; -- [XXXAX] :: how many; of what number; as many; + quotannis_Adv : Adv ; -- [XXXDX] :: every year, yearly; + quotcumque_A : A ; -- [XXXEO] :: whatever number of; as many as; however many; + quotcunque_A : A ; -- [XXXEO] :: whatever number of; as many as; however many; + quotenus_A : A ; -- [XXXES] :: how many (pl.); + quotidianus_A : A ; -- [XXXDO] :: daily, everyday; usual/habitual, normal/regular; ordinary/common/unremarkable; + quotidie_Adv : Adv ; -- [XXXCO] :: daily, every day; day by day; usually, ordinarily, commonly; + quotiens_Adv : Adv ; -- [XXXAX] :: how often; as often as; + quotienscumque_Adv : Adv ; -- [XXXCO] :: whenever, every time that; however often, as often as; + quotienscunque_Adv : Adv ; -- [XXXCO] :: whenever, every time that; however often, as often as; + quotiensquonque_Adv : Adv ; -- [XXXEO] :: whenever, every time that; however often, as often as; + quoties_Adv : Adv ; -- [XXXDX] :: how often; as often as; + quotiescumque_Adv : Adv ; -- [XXXCO] :: whenever, every time that; however often, as often as; + quotiescunque_Adv : Adv ; -- [XXXCO] :: whenever, every time that; however often, as often as; + quotiesquonque_Adv : Adv ; -- [XXXEO] :: whenever, every time that; however often, as often as; + quotlibet_Adv : Adv ; -- [XXXES] :: as many as please; as many as one will; + quotomus_A : A ; -- [BXXES] :: of what number (Plautus); + quotum_N_N : N ; -- [GSXEK] :: quotient (math.); + quotus_A : A ; -- [XSXEX] :: |having what position in a numerical series?, bearing what proportion to; + quotusquisque_Adv : Adv ; -- [XXXES] :: how few; + quousque_Adv : Adv ; -- [XXXDX] :: until what time? till when? how long?; + qur_Adv : Adv ; -- [XXXEO] :: why, wherefore, for what reason? (impatience); on account of which?; because; + quum_Abl_Prep : Prep ; -- [DXXCS] :: with, together with, at the same time with; under; at; along with, amid; + quum_Conj : Conj ; -- [DXXCS] :: when, while, as, since, although; as soon; + quur_Adv : Adv ; -- [XXXEO] :: why, wherefore, for what reason? (impatience); on account of which?; because; + rabbi_N : N ; -- [DEQEE] :: rabbi; teacher, master; (Hebrew); + rabbinus_M_N : N ; -- [GEXEK] :: rabbi; + rabboni_N : N ; -- [DEQEE] :: rabbi; teacher, master; (Hebrew); + rabidus_A : A ; -- [XXXDX] :: mad, raging, frenzied, wild; + rabies_F_N : N ; -- [XXXDX] :: madness; + rabio_V : V ; -- [XPXFS] :: rave; be mad; + rabiola_F_N : N ; -- [GXXEK] :: ravioli; + rabiose_Adv : Adv ; -- [XXXDX] :: madly; in a frenzied manner; + rabiosulus_A : A ; -- [XXXEC] :: rather furious; + rabiosus_A : A ; -- [XXXDX] :: rabid (dogs), mad; lunatic, raving mad, frenzied; + rabula_M_N : N ; -- [XXXEC] :: bawling advocate; + raca_A : A ; -- [EEQFP] :: foolish, empty; Hebrew word of contempt (Linddell+Scott); + racana_F_N : N ; -- [EXXFP] :: garment; wrap; + racemifer_A : A ; -- [XXXDX] :: bearing clusters; + racemus_M_N : N ; -- [XXXDX] :: bunch/cluster (of grapes or other fruit); + racha_A : A ; -- [EEQFP] :: foolish, empty; Hebrew word of contempt (Linddell+Scott); + rachana_F_N : N ; -- [EXXFP] :: garment; wrap; + racialis_A : A ; -- [GXXEK] :: racial; + radaricus_A : A ; -- [HTXEK] :: of radar; + radiatilis_A : A ; -- [HTXEK] :: radio-transmitted; + radiatrum_N_N : N ; -- [GXXEK] :: radiator; + radicalis_A : A ; -- [GXXEK] :: radical; + radicalismus_M_N : N ; -- [GXXEK] :: radicalism; + radicatus_A : A ; -- [DXXDS] :: rooted; having roots, having found a home; + radicitus_Adv : Adv ; -- [XXXCO] :: by the roots, utterly, completely; at the root; with the roots (L+S), radically; + radico_V : V ; -- [DAXES] :: take root; grow roots; + radicula_F_N : N ; -- [XAXEC] :: little root; + radio_V : V ; -- [XXXBO] :: beam, shine; radiate light; + radioactivitas_F_N : N ; -- [HSXEK] :: radioactivity; + radioactivus_A : A ; -- [HXXEK] :: radioactive; + radioelectricus_A : A ; -- [HSXEK] :: radioelectric; + radiographema_N_N : N ; -- [HBXEK] :: X-ray; + radiographia_F_N : N ; -- [HBXEK] :: X-ray; + radiologia_F_N : N ; -- [HBXEK] :: radiology; + radiologicus_A : A ; -- [HBXEK] :: radiological; + radiologus_M_N : N ; -- [HBXEK] :: radiologist; + radiophonia_F_N : N ; -- [HTXEK] :: radiotelephony; + radiophonicus_A : A ; -- [HTXEK] :: radiophonic; + radiophonum_N_N : N ; -- [HTXEK] :: radio (device); + radior_V : V ; -- [XXXEO] :: beam, shine; radiate light; + radiosus_A : A ; -- [XXXFS] :: beam-emitting; + radiotherapia_F_N : N ; -- [HBXEK] :: radiotherapy; + radius_M_N : N ; -- [XXXBX] :: ray; rod; + radix_F_N : N ; -- [XXXBX] :: root; base; square-root (math); + rado_V2 : V2 ; -- [XXXDX] :: shave; scratch, scrape; coast by; + raeda_F_N : N ; -- [XXXDX] :: four wheeled wagon; + raedarius_M_N : N ; -- [XXXDX] :: coachman; + raffinatio_F_N : N ; -- [GXXEK] :: refinement; + ramale_N_N : N ; -- [XXXDX] :: brushwood (usu. pl.), twigs, sticks, shoots; + ramentum_N_N : N ; -- [XXXEC] :: shavings (usu. pl.), splinters, chips; + rameus_A : A ; -- [XXXDX] :: of a bough/boughs/sticks; + ramex_M_N : N ; -- [XBXEC] :: rupture; lungs (pl.); + ramnum_N_N : N ; -- [EAXFW] :: bramble; (buckthorn?); + ramosus_A : A ; -- [XXXDX] :: having many branches, branching; + ramulus_M_N : N ; -- [XXXCO] :: twig, little branch/bough; + ramus_M_N : N ; -- [XXXAX] :: branch, bough; + ramusculus_M_N : N ; -- [EXXFP] :: twig; + rana_F_N : N ; -- [XXXDX] :: frog; + rancens_A : A ; -- [XXXEC] :: stinking, putrid; + rancidulus_A : A ; -- [XXXEC] :: rather putrid; + rancidus_A : A ; -- [XXXDX] :: rotten, putrid, nauseating; + ranunculus_M_N : N ; -- [XAXEC] :: little frog, tadpole; + rapa_F_N : N ; -- [XAXDO] :: turnip; + rapacida_M_N : N ; -- [BXXFS] :: thief's son; + rapacitas_F_N : N ; -- [XXXEZ] :: rapacity; + rapax_A : A ; -- [XXXDX] :: grasping, rapacious; + raphaninus_A : A ; -- [XAXNO] :: of/made from radishes; 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_V2 : V2 ; - raptim_Adv : Adv ; - rapto_V : V ; - raptor_M_N : N ; - raptum_N_N : N ; - raptus_M_N : N ; - rapulum_N_N : N ; - rapum_N_N : N ; - rare_Adv : Adv ; - rarefacio_V2 : V2 ; - rarefactio_F_N : N ; - rarenter_Adv : Adv ; - raresco_V : V ; - raro_Adv : Adv ; - rarus_A : A ; - rasilis_A : A ; - rasito_V2 : V2 ; - rasorium_N_N : N ; - rassismus_M_N : N ; - rassista_M_N : N ; - rassisticus_A : A ; - rastellus_M_N : N ; - rastrum_N_N : N ; - rastrus_M_N : N ; - ratificatio_F_N : N ; - ratifico_V : V ; - ratihabeo_V : V ; - ratihabitio_F_N : N ; - ratio_F_N : N ; - ratiocinatio_F_N : N ; - ratiocinativus_A : A ; - ratiocinator_M_N : N ; - ratiocinium_N_N : N ; - ratiocinor_V : V ; - rationabilis_A : A ; - rationabilitas_F_N : N ; - rationabiliter_Adv : Adv ; - rationalabilis_A : A ; - rationalabiliter_Adv : Adv ; - rationalis_A : A ; - rationalis_M_N : N ; - rationalismus_M_N : N ; - rationalista_M_N : N ; - rationalisticus_A : A ; - rationalizo_V : V ; - rationarium_N_N : N ; - ratis_F_N : N ; - ratiuncula_F_N : N ; - ratus_A : A ; - ratus_C_N : N ; - raucisonus_A : A ; - raucus_A : A ; - raudus_N_N : N ; - raudusculum_N_N : N ; - ravacaulis_M_N : N ; - ravus_A : A ; - rea_F_N : N ; - reactrum_N_N : N ; - reageo_V : V ; - realis_A : A ; - realismus_M_N : N ; - realista_M_N : N ; - realisticus_A : A ; - realitas_F_N : N ; - realiter_Adv : Adv ; - reapse_Adv : Adv ; - reatitudo_F_N : N ; - reatus_M_N : N ; - rebellatio_F_N : N ; - rebellatrix_F_N : N ; - rebellio_F_N : N ; - rebellis_A : A ; - rebellis_M_N : N ; - rebello_V : V ; - rebito_V : V ; - reboo_V : V ; - recalcitro_V : V ; - recaleo_V : V ; - recalesceo_V : V ; - recalfacio_V2 : V2 ; - recalvaster_A : A ; - recandesco_V2 : V2 ; - recanto_V : V ; - recapitulatio_F_N : N ; - recapitulo_V : V ; - reccido_V : V ; - recedo_V2 : V2 ; - recello_V : V ; - recens_A : A ; - recenseo_V2 : V2 ; - recenter_Adv : Adv ; - receptaculum_N_N : N ; - receptio_F_N : N ; - recepto_V : V ; - receptor_M_N : N ; - receptrix_F_N : N ; - receptum_N_N : N ; - receptus_M_N : N ; - recessus_M_N : N ; - recidivus_A : A ; - recido_V : V ; - recido_V2 : V2 ; - recingo_V2 : V2 ; - recino_V : V ; - recipeo_V : V ; - reciperatio_F_N : N ; - reciperativus_A : A ; - reciperator_M_N : N ; - reciperatorius_A : A ; - recipero_V : V ; - recipio_V2 : V2 ; - reciprocatio_F_N : N ; - reciproco_V : V ; - reciprocus_A : A ; - recitator_M_N : N ; - recito_V : V ; - reclamatio_F_N : N ; - reclamito_V : V ; - reclamo_V : V ; - reclinatorium_N_N : N ; - reclinis_A : A ; - reclino_V : V ; - recludo_V2 : V2 ; - recogito_V : V ; - recognitio_F_N : N ; - recognitor_M_N : N ; - recognosco_V2 : V2 ; - recolligo_V2 : V2 ; - recolo_V2 : V2 ; - recomminiscor_V : V ; - recompenso_V2 : V2 ; - reconciliatio_F_N : N ; - reconciliator_M_N : N ; - reconcilio_V : V ; - reconcinno_V2 : V2 ; - reconditus_A : A ; - recondo_V2 : V2 ; - reconflo_V2 : V2 ; - recoquo_V2 : V2 ; - recordatio_F_N : N ; - recordor_V : V ; - recreatio_F_N : N ; - recreo_V : V ; - recrepo_V : V ; - recresco_V2 : V2 ; - recrudesco_V2 : V2 ; - recta_Adv : Adv ; - recte_Adv : Adv ; - rectificatio_F_N : N ; - rectifico_V2 : V2 ; - rectilineus_A : A ; - rectio_F_N : N ; - rectitudo_F_N : N ; - rector_M_N : N ; - rectum_N_N : N ; - rectus_A : A ; - recubitus_M_N : N ; - recubo_V : V ; - recudeo_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_V2 : V2 ; - recurso_V : V ; - recursus_M_N : N ; - recurvo_V : V ; - recurvus_A : A ; - recusatio_F_N : N ; - recuso_V : V ; - recussus_A : A ; - recutio_V2 : V2 ; - redactor_M_N : N ; - redambulo_V : V ; - redamo_V : V ; - redardesco_V : V ; - redarguo_V2 : V2 ; - redauspico_V : V ; - reddo_V2 : V2 ; - redemptio_F_N : N ; - redemptor_M_N : N ; - redeo_1_V2 : V2 ; - redeo_2_V2 : V2 ; - redhalo_V2 : V2 ; - redhibeo_V2 : V2 ; - redicor_V : V ; - redigo_V2 : V2 ; - redimiculum_N_N : N ; - redimio_V2 : V2 ; - redimo_V2 : V2 ; - redintegro_V : V ; - redipiscor_V : V ; - reditio_F_N : N ; - redituarius_M_N : N ; - reditus_M_N : N ; - redivia_F_N : N ; - redivivus_A : A ; - redoleo_V : V ; - redomitus_A : A ; - redono_V : V ; - redormio_V : V ; - redormisco_V : V ; - reduco_V2 : V2 ; - reductivus_A : A ; - reductor_M_N : N ; - reductus_A : A ; - reduncus_A : A ; - redundantia_F_N : N ; - redundo_V : V ; - reduntantia_F_N : N ; - reduvia_F_N : N ; - redux_A : A ; - refactor_M_N : N ; - refectio_F_N : N ; - refector_M_N : N ; - refectorium_N_N : N ; - refectorius_A : A ; - 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_V2 : V2 ; - refigo_V2 : V2 ; - refingo_V2 : V2 ; - reflagito_V2 : V2 ; - reflatus_M_N : N ; - reflecto_V2 : V2 ; - reflo_V : V ; - refluo_V : V ; - refluus_A : A ; - refocillatio_F_N : N ; - refocillatrix_F_N : N ; - refocillo_V2 : V2 ; - refocilo_V2 : V2 ; - reformatio_F_N : N ; - reformido_V : V ; - reformo_V : V ; - refoveo_V : V ; - refractariolus_A : A ; - refractio_F_N : N ; - refragatio_F_N : N ; - refragor_V : V ; - refrangibilitas_F_N : N ; - refreno_V : V ; - refrico_V : V ; - refrigeratio_F_N : N ; - refrigerium_N_N : N ; - refrigero_V : V ; - refrigesco_V2 : V2 ; - refringo_V2 : V2 ; - refugio_V2 : V2 ; - refugium_N_N : N ; - refugus_A : A ; - refulgeo_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_V2 : V2 ; - regia_F_N : N ; - regificus_A : A ; - regigno_V2 : V2 ; - regimen_N_N : N ; - regina_F_N : N ; - regio_F_N : N ; - regionalismus_M_N : N ; - regius_A : A ; - reglutino_V2 : V2 ; - regnator_M_N : N ; - regnatrix_A : A ; - regno_V : V ; - regnum_N_N : N ; - rego_V2 : V2 ; - regredior_V : V ; - regressivus_A : A ; - regressus_M_N : N ; - regula_F_N : N ; - regularis_A : A ; - regulariter_Adv : Adv ; - regulatim_Adv : Adv ; - regulus_M_N : N ; - regusto_V2 : V2 ; - rehendo_V2 : V2 ; - reicio_V2 : V2 ; - reiculus_A : A ; - reimpressio_F_N : N ; - reimprimeo_V : V ; - reincarnatio_F_N : N ; - rejectaneus_A : A ; - rejectio_F_N : N ; - rejecto_V2 : V2 ; - rejicio_V2 : V2 ; - relabor_V : V ; - relanguesco_V2 : V2 ; - relapsus_M_N : N ; - relatio_F_N : N ; - relationalis_A : A ; - relative_Adv : Adv ; - relativismus_M_N : N ; - relativisticus_A : A ; - relativitas_F_N : N ; - relativus_A : A ; - relator_M_N : N ; - relatus_M_N : N ; - relaxo_V : V ; - relegatio_F_N : N ; - relego_V : V ; - relego_V2 : V2 ; - relentesco_V : V ; - relevium_N_N : N ; - relevo_V2 : V2 ; - relictio_F_N : N ; - relictum_N_N : N ; - relictus_A : A ; - relicum_N_N : N ; - relicus_A : A ; - relicuum_N_N : N ; - relicuus_A : A ; - relido_V2 : V2 ; - religatio_F_N : N ; - religio_F_N : N ; - religiose_Adv : Adv ; - religiositas_F_N : N ; - religiosus_A : A ; - religiosus_M_N : N ; - religo_V : V ; - relino_V2 : V2 ; - relinquo_V2 : V2 ; - reliquator_M_N : N ; - reliquia_F_N : N ; - reliquum_N_N : N ; - reliquus_A : A ; - reluceo_V : V ; - relucesco_V2 : V2 ; - reluctor_V : V ; - remaneo_V : V ; - remano_V : V ; - remansio_F_N : N ; - remedium_N_N : N ; - rememoratio_F_N : N ; - remeo_V : V ; - remetior_V : V ; - remex_M_N : N ; - remigatio_F_N : N ; - remigium_N_N : N ; - remigo_V : V ; - remigro_V : V ; - reminiscor_V : V ; - remisceo_V2 : V2 ; - remisse_Adv : Adv ; - remissio_F_N : N ; - remissus_A : A ; - remitto_V2 : V2 ; - remolior_V : V ; - remollesco_V : V ; - remollio_V2 : V2 ; - remora_F_N : N ; - remoramen_N_N : N ; - remordeo_V : V ; - remoror_V : V ; - remote_Adv : Adv ; - remotus_A : A ; - removeo_V : V ; - remugio_V : V ; - remulceo_V : V ; - remulcum_N_N : N ; - remuneratio_F_N : N ; - remunero_V : V ; - remunero_V2 : V2 ; - remuneror_V : V ; - remurmuro_V : V ; - remus_M_N : N ; - ren_M_N : N ; - renarro_V : V ; - renascentia_F_N : N ; - renascor_V : V ; - renavigo_V : V ; - reneo_V2 : V2 ; - renidens_A : A ; - renideo_V : V ; - renidesco_V : V ; - renitor_V : V ; - rennuo_V2 : V2 ; - reno_M_N : N ; - renodo_V2 : V2 ; - renovamen_N_N : N ; - renovatio_F_N : N ; - renovo_V : V ; - renumero_V2 : V2 ; - renuncio_V : V ; - renunculus_M_N : N ; - renuntiatio_F_N : N ; - renuntio_V : V ; - renuo_V2 : V2 ; - renuto_V : V ; - reor_V : V ; - repagulum_N_N : N ; - repandus_A : A ; - reparabilis_A : A ; - reparatio_F_N : N ; - reparco_V2 : V2 ; - reparo_V : V ; - repastinatio_F_N : N ; - repatrio_F_N : N ; - repecto_V2 : V2 ; - repedo_V : V ; - repello_V2 : V2 ; - rependo_V2 : V2 ; - repens_A : A ; - repente_Adv : Adv ; - repentinus_A : A ; - reperco_V2 : V2 ; - repercussio_F_N : N ; - repercussus_M_N : N ; - 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_V2 : V2 ; - repetunda_F_N : N ; - replebilis_A : A ; - replegio_V : V ; - repleo_V : V ; - repletus_A : A ; - replico_V2 : V2 ; - replum_N_N : N ; - repo_V2 : V2 ; - repono_V2 : V2 ; - reporto_V : V ; - reposco_V : V ; - repositorium_N_N : N ; - repositus_A : A ; - repostor_M_N : N ; - repostus_A : A ; - repotium_N_N : N ; - repperio_V2 : V2 ; - reppertum_N_N : N ; - repraesentativus_A : A ; - repraesento_V : V ; - reprehendo_V2 : V2 ; - reprehensibilis_A : A ; - reprehensio_F_N : N ; - reprehenso_V2 : V2 ; - reprensio_F_N : N ; - repressor_M_N : N ; - 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_V2 : V2 ; - reptatus_A : A ; - reptatus_M_N : N ; - reptile_N_N : N ; - reptilis_A : A ; - repto_V : V ; - republicanus_M_N : N ; - repudiatio_F_N : N ; - repudio_V : V ; - repudium_N_N : N ; - repuerasco_V : V ; - repugnantia_F_N : N ; - repugno_V : V ; - repulsa_F_N : N ; - repulsivus_A : A ; - repulso_V : V ; - repulsus_M_N : N ; - repungo_V2 : V2 ; - repuo_V : V ; - repurgo_V2 : V2 ; - reputatio_F_N : N ; - reputo_V : V ; - requies_F_N : N ; - requiesco_V2 : V2 ; - requietio_F_N : N ; - requietus_A : A ; - requirito_V2 : V2 ; - requiro_V2 : V2 ; - res_F_N : N ; - res_N : N ; - resacro_V : V ; - resaevio_V : V ; - resaluto_V2 : V2 ; - resanesco_V2 : V2 ; - resarcio_V2 : V2 ; - rescindo_V2 : V2 ; - rescisco_V2 : V2 ; - rescribo_V2 : V2 ; - reseantia_F_N : N ; - reseantisa_F_N : N ; - reseco_V : V ; - resecro_V : V ; - resemino_V : V ; - resequor_V : V ; - resero_V : V ; - reservo_V : V ; - reses_A : A ; - residentia_F_N : N ; - residentialis_A : A ; - resideo_V : V ; - resido_V2 : V2 ; - residuus_A : A ; - resignatio_F_N : N ; - resigno_V : V ; - resilio_V2 : V2 ; - resimus_A : A ; - resina_F_N : N ; - resinaceus_A : A ; - resinaria_F_N : N ; - resinosus_A : A ; - resipicentia_F_N : N ; - resipio_V : V ; - resipisco_V2 : V2 ; - resisto_V2 : V2 ; - resolutio_F_N : N ; - resolvo_V2 : V2 ; - resonabilis_A : A ; - resono_V : V ; - resonus_A : A ; - resorbeo_V : V ; - respecto_V : V ; - respectus_M_N : N ; - respergo_V2 : V2 ; - respersio_F_N : N ; - respicio_V2 : V2 ; - respiramen_N_N : N ; - respiratio_F_N : N ; - respiratus_M_N : N ; - respiro_V : V ; - resplendeo_V : V ; - respondeo_V : V ; - responsabilis_A : A ; - responsabilitas_F_N : N ; - responsalis_A : A ; - responsalitas_F_N : N ; - responsito_V : V ; - responso_V : V ; - responsor_M_N : N ; - responsoria_F_N : N ; - responsorium_N_N : N ; - responsum_N_N : N ; - respuo_V2 : V2 ; - restagno_V : V ; - restat_V0 : V ; - restauro_V2 : V2 ; - resticula_F_N : N ; - restinctio_F_N : N ; - restinguo_V2 : V2 ; - restio_M_N : N ; - restipulatio_F_N : N ; - restipulor_V : V ; - restis_F_N : N ; - restito_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_V2 : V2 ; - resulto_V : V ; - resummonitio_F_N : N ; - resumo_V2 : V2 ; - resupinus_A : A ; - resurgo_V2 : V2 ; - resurrectio_F_N : N ; - resuscito_V : V ; - retardatio_F_N : N ; - retardo_V : V ; - rete_N_N : N ; - retego_V2 : V2 ; - retempto_V2 : V2 ; - retendo_V2 : V2 ; - retentio_F_N : N ; - retento_V2 : V2 ; - retexo_V2 : V2 ; - retiaculum_N_N : N ; - retiarius_M_N : N ; - reticeo_V : V ; - reticulatus_A : A ; - reticulum_N_N : N ; - reticulus_M_N : N ; - retina_F_N : N ; - retinaculum_N_N : N ; - retinens_A : A ; - retinentia_F_N : N ; - retineo_V : V ; - retono_V : V ; - retorqueo_V : V ; - retorridus_A : A ; - retorta_F_N : N ; - retracto_V : V ; - retractus_A : A ; - retraho_V2 : V2 ; - retrecto_V : V ; - retribuo_V2 : V2 ; - retributio_F_N : N ; - retro_Adv : Adv ; - retroago_V2 : V2 ; - retrogradatio_F_N : N ; - retrorsum_Adv : Adv ; - retrorsus_Adv : Adv ; - retroscopicus_A : A ; - retrospective_Adv : Adv ; - retrospectivus_A : A ; - retrotraho_V2 : V2 ; - retroversus_Adv : Adv ; - retundo_V2 : V2 ; - retunsus_A : A ; - retusus_A : A ; - reubarbarum_N_N : N ; - reus_A : A ; - reus_M_N : N ; - revalesco_V2 : V2 ; - reveho_V2 : V2 ; - revelatio_F_N : N ; - revello_V2 : V2 ; - revelo_V : V ; - revenio_V2 : V2 ; - revera_Adv : Adv ; - reverberatio_F_N : N ; - reverberatus_A : A ; - reverbero_V2 : V2 ; - reverendus_A : A ; - reverens_A : A ; - reverenter_Adv : Adv ; - reverentia_F_N : N ; - revereor_V : V ; - reversio_F_N : N ; - reverto_V2 : V2 ; - revertor_V : V ; - revincio_V2 : V2 ; - revinco_V2 : V2 ; - reviresco_V2 : V2 ; - reviso_V : V ; - revivisco_V2 : V2 ; - revivo_V : V ; - revocabilis_A : A ; - revocamen_N_N : N ; - revoco_V : V ; - revolo_V : V ; - revolubilis_A : A ; - revolutio_F_N : N ; - revolvo_V2 : V2 ; - revomo_V2 : V2 ; - rex_M_N : N ; - rhagadis_F_N : N ; - rhagadium_N_N : N ; - rheno_M_N : N ; - rhetor_M_N : N ; - rhetoria_F_N : N ; - rhetorice_F_N : N ; - rhetoricus_A : A ; - rheumatismus_M_N : N ; + raphanitis_2_N : N ; -- [XAHNO] :: variety of the plant Iris Illyrica; + raphanus_F_N : N ; -- [XAXDO] :: radish; [~ agria => wild plant supposed to be kind of spurge/charlock]; + raphanus_M_N : N ; -- [FAXEK] :: radish; horseradish; + rapiditas_F_N : N ; -- [XXXEO] :: swiftness, rapidity (of movement); + rapidus_A : A ; -- [XXXAX] :: rapid, swift; + rapina_F_N : N ; -- [XXXDX] :: robbery, plunder, booty; rape; + rapio_V2 : V2 ; -- [XXXAX] :: drag off; snatch; destroy; seize, carry off; pillage; hurry; + raptim_Adv : Adv ; -- [XXXDX] :: hurriedly, suddenly; + rapto_V : V ; -- [XXXDX] :: drag violently off; ravage; + raptor_M_N : N ; -- [XXXDX] :: robber; plunderer; + raptum_N_N : N ; -- [XXXDX] :: plunder; prey; + raptus_M_N : N ; -- [XXXDX] :: violent snatching or dragging away; robbery, carrying off, abduction; + rapulum_N_N : N ; -- [XXXDX] :: little turnip; + rapum_N_N : N ; -- [FAXEK] :: turnip; + rare_Adv : Adv ; -- [XXXDX] :: sparsely, thinly; at wide intervals, loosely; rarely, seldomly; + rarefacio_V2 : V2 ; -- [XXXDX] :: make less solid; + rarefactio_F_N : N ; -- [GXXEK] :: rarefaction, diminution of density; + rarenter_Adv : Adv ; -- [XXXES] :: uncommonly; seldom, rare; (poetic); + raresco_V : V ; -- [XXXDX] :: thin out, open out; become sparse; + raro_Adv : Adv ; -- [XXXDX] :: seldom, rare; + rarus_A : A ; -- [XXXAX] :: thin, scattered; few, infrequent; rare; in small groups; loose knit; + rasilis_A : A ; -- [XXXDX] :: worn smooth, polished; + rasito_V2 : V2 ; -- [XXXEO] :: shave (off) habitually; + rasorium_N_N : N ; -- [GXXEK] :: razor; + rassismus_M_N : N ; -- [GXXEK] :: racism; + rassista_M_N : N ; -- [GXXEK] :: racist; + rassisticus_A : A ; -- [GXXEK] :: racist; + rastellus_M_N : N ; -- [XXXDX] :: rake; + rastrum_N_N : N ; -- [XXXDX] :: drag-hoe; + rastrus_M_N : N ; -- [XAXCO] :: drag-hoe (pl.); (usu. sg. N, pl. M); + ratificatio_F_N : N ; -- [GXXEK] :: ratification; + ratifico_V : V ; -- [GXXEK] :: ratify; + ratihabeo_V : V ; -- [GXXEK] :: ratify; + ratihabitio_F_N : N ; -- [XXXEO] :: approval; ratification; + ratio_F_N : N ; -- [XXXAX] :: account, reckoning, invoice; plan; prudence; method; reasoning; rule; regard; + ratiocinatio_F_N : N ; -- [XGXEC] :: reasoning; esp. a form of argument, syllogism; + ratiocinativus_A : A ; -- [XXXEC] :: argumentative; syllogistic; + ratiocinator_M_N : N ; -- [XXXEC] :: calculator, accountant; + ratiocinium_N_N : N ; -- [DLXES] :: accounting; reckoning; reasoning; obligation to render account; + ratiocinor_V : V ; -- [XXXEC] :: compute, calculate; argue, infer, conclude; + rationabilis_A : A ; -- [XXXDO] :: rational, possessing powers of reasoning; reasonable, agreeable to reason; + rationabilitas_F_N : N ; -- [XXXFO] :: rationality, quality of possessing reason; + rationabiliter_Adv : Adv ; -- [XXXEO] :: reasonably, in accordance with reason; according to correct computation (L+S); + rationalabilis_A : A ; -- [EXXFP] :: rational, reasonable, logical; + rationalabiliter_Adv : Adv ; -- [FXXFF] :: rationally, reasonably, logically; probably, with probability; + rationalis_A : A ; -- [EXXFP] :: |measurable; that has a ratio; knowing rationally, rational (Def); conceivable; + rationalis_M_N : N ; -- [XXXEO] :: theoretician; accountant; + rationalismus_M_N : N ; -- [GXXEK] :: rationalism; + rationalista_M_N : N ; -- [GXXEK] :: rationalistic; + rationalisticus_A : A ; -- [GXXEK] :: rationalistic; + rationalizo_V : V ; -- [GXXEK] :: rationalize; + rationarium_N_N : N ; -- [XXXEC] :: statistical account; + ratis_F_N : N ; -- [XXXAX] :: raft; ship, boat; + ratiuncula_F_N : N ; -- [XXXEC] :: little reckoning, account; a poor reason; a petty syllogism; + ratus_A : A ; -- [XXXDX] :: established, authoritative; fixed, certain; + ratus_C_N : N ; -- [GXXEK] :: rat; + raucisonus_A : A ; -- [XXXDX] :: hoarse-sounding, raucous; + raucus_A : A ; -- [XXXDX] :: hoarse; husky; raucous; + raudus_N_N : N ; -- [XXXCO] :: lump, rough piece; piece of bronze, (sometimes a bronze coin); + raudusculum_N_N : N ; -- [XXXEC] :: small sum of money; + ravacaulis_M_N : N ; -- [GXXEK] :: kohlrabi; + ravus_A : A ; -- [XXXDX] :: grayish, tawny; + rea_F_N : N ; -- [XLXAO] :: party in law suit; plaintiff/defendant; culprit/guilty party, debtor; sinner; + reactrum_N_N : N ; -- [GTXEK] :: reactor; + reageo_V : V ; -- [GXXEK] :: react; + realis_A : A ; -- [GXXEK] :: real; + realismus_M_N : N ; -- [GXXEK] :: realism; + realista_M_N : N ; -- [GXXEK] :: realist; + realisticus_A : A ; -- [GXXEK] :: realistic; + realitas_F_N : N ; -- [GXXEK] :: reality; + realiter_Adv : Adv ; -- [GXXEK] :: really; + reapse_Adv : Adv ; -- [XXXEC] :: in truth, really; + reatitudo_F_N : N ; -- [FEXEL] :: guilt; + reatus_M_N : N ; -- [EEXEL] :: |guilt; + rebellatio_F_N : N ; -- [DXXDS] :: revolt; rebellion; + rebellatrix_F_N : N ; -- [XXXDX] :: rebel, she who renews the war; + rebellio_F_N : N ; -- [XXXDX] :: rebellion; + rebellis_A : A ; -- [XXXDX] :: insurgent, rebellious; + rebellis_M_N : N ; -- [XXXDX] :: insurgent, rebel; + rebello_V : V ; -- [XXXDX] :: rebel, revolt; + rebito_V : V ; -- [BXXFS] :: turn back; return; + reboo_V : V ; -- [XXXDO] :: resound, re-echo; bellow back; call/cry in answer; + recalcitro_V : V ; -- [XXXDS] :: be disobedient; P:deny access; + recaleo_V : V ; -- [XXXDX] :: grow warm (again); + recalesceo_V : V ; -- [XXXDX] :: grow warm (again); + recalfacio_V2 : V2 ; -- [XXXDX] :: make warm again, warm up; + recalvaster_A : A ; -- [EBXFS] :: bald in front; that has a bald forehead; + recandesco_V2 : V2 ; -- [XXXDX] :: glow again with heat; become/grow white (again), whiten; + recanto_V : V ; -- [XXXDX] :: charm away/back; withdraw, recall, revoke, recant; + recapitulatio_F_N : N ; -- [DXXES] :: recapitulation, restatement of/going over again the main points; summing up; + recapitulo_V : V ; -- [DXXDS] :: recapitulate, go over the main points again; + reccido_V : V ; -- [XXXEO] :: fall/sink back, lapse/relapse/revert; fall to earth; come to naught; rebound on; + recedo_V2 : V2 ; -- [XXXAX] :: recede, go back, withdraw, ebb; retreat; retire; move/keep/pass/slip away; + recello_V : V ; -- [XXXEC] :: spring back, fly back; + recens_A : A ; -- [XXXBX] :: fresh, recent; rested; + recenseo_V2 : V2 ; -- [XXXCO] :: review/examine/survey/muster; enumerate/count, make census/roll; pass in review; + recenter_Adv : Adv ; -- [DXXES] :: lately, newly, recently; freshly; + receptaculum_N_N : N ; -- [XXXDX] :: receptacle; place of refuge, shelter; + receptio_F_N : N ; -- [XXXEO] :: recovery; receiving/reception; retention; recording (sounds/pictures Cal); + recepto_V : V ; -- [XXXDX] :: recover; receive, admit (frequently); + receptor_M_N : N ; -- [XXXDS] :: receiver, shelterer; concealer/harborer/hider; reconquerer; + receptrix_F_N : N ; -- [XXXFO] :: receiver, she who receives/admits/shelters; concealer, she who harbors/conceals; + receptum_N_N : N ; -- [XXXDS] :: obligation; + receptus_M_N : N ; -- [XXXDX] :: retreat; + recessus_M_N : N ; -- [XXXBX] :: retreat; recess; + recidivus_A : A ; -- [XXXDX] :: recurring; + recido_V : V ; -- [XXXBO] :: fall/sink back, lapse/relapse/revert; fall to earth; come to naught; rebound on; + recido_V2 : V2 ; -- [XXXCO] :: cut back/off (to base/tree), prune; cut back/away; get by cutting; curtail; + recingo_V : V ; -- [XXXDX] :: ungird, unfasten, undo; + recino_V : V ; -- [XXXDX] :: chant back, echo; call out; + recipeo_V : V ; -- [FXXEK] :: record (sounds, pictures); + reciperatio_F_N : N ; -- [XLXEO] :: recovery; regaining; judgment by board of reciperatores/assessors; + reciperativus_A : A ; -- [XLXFO] :: relating to/involving recovery; (of disputes over property); + reciperator_M_N : N ; -- [XLXCO] :: assessor dealing w/disputes between aliens and Romans; recoverer/regainer; + reciperatorius_A : A ; -- [XLXDO] :: of assessor dealing w/disputes between aliens and Romans; recoverer/regainer; + recipero_V : V ; -- [XXXDX] :: restore, restore to health; refresh, recuperate; + recipio_V2 : V2 ; -- [XXXAX] :: keep back; recover; undertake; guarantee; accept, take in; take back; + reciprocatio_F_N : N ; -- [XXXDS] :: returning; reciprocation; G:reciprocal action; + reciproco_V : V ; -- [XBXEC] :: move backwards and forwards; (w/animam) to breathe; + reciprocus_A : A ; -- [XXXEC] :: going backwards and forwards; ebbing (w/mare); + recitator_M_N : N ; -- [XXXDX] :: reciter; + recito_V : V ; -- [XXXBX] :: read aloud, recite; name in writing; + reclamatio_F_N : N ; -- [GXXEK] :: complaint; + reclamito_V : V ; -- [XXXFS] :: reproclaim; proclaim against; + reclamo_V : V ; -- [XXXDX] :: cry out in protest at; + reclinatorium_N_N : N ; -- [XXXES] :: back (of a couch); chariot seat; + reclinis_A : A ; -- [XXXDX] :: leaning back, reclining; + reclino_V : V ; -- [XXXDX] :: bend back; [se reclinare => lean back, recline]; + recludo_V2 : V2 ; -- [XXXBX] :: open; open up, lay open, disclose, reveal; + recogito_V : V ; -- [XXXDO] :: consider, reflect, think over; examine, inspect; + recognitio_F_N : N ; -- [XXXEC] :: inspection, examination; review; revision (Red); survey; reconnaissance; + recognitor_M_N : N ; -- [FLXEM] :: juror; editor (White); + recognosco_V2 : V2 ; -- [XXXDX] :: recognize, recollect; + recolligo_V2 : V2 ; -- [XXXDX] :: recover, gather again, collect; + recolo_V2 : V2 ; -- [XXXDX] :: cultivate afresh; go over in one's mind; + recomminiscor_V : V ; -- [BXXFS] :: recollect; + recompenso_V2 : V2 ; -- [XXXDF] :: repay/recompense; compensate for misdeed/wrong; make up for injury/loss; reward; + reconciliatio_F_N : N ; -- [XXXDX] :: renewal, re-establishment, reconciliation; restoration; reuniting; + reconciliator_M_N : N ; -- [XXXDX] :: restorer; + reconcilio_V : V ; -- [XXXDX] :: restore; reconcile; + reconcinno_V2 : V2 ; -- [XXXFS] :: repair; set right; + reconditus_A : A ; -- [XXXDX] :: hidden, concealed; abstruse; + recondo_V2 : V2 ; -- [XXXDX] :: hide, conceal; put away; + reconflo_V2 : V2 ; -- [XXXFS] :: rekindle; + recoquo_V2 : V2 ; -- [XXXDX] :: renew by cooking, boil again, rehash; reheat, melt down; forge anew; + recordatio_F_N : N ; -- [XXXDX] :: recollection; + recordor_V : V ; -- [XXXBX] :: think over; call to mind, remember; + recreatio_F_N : N ; -- [XXXEO] :: restoration; recovery/convalescence (L+S); refreshment, diversion/entertainment; + recreo_V : V ; -- [XXXDX] :: restore, revive; + recrepo_V : V ; -- [XXXDX] :: sound in answer, resound; + recresco_V2 : V2 ; -- [XXXDX] :: grow again; + recrudesco_V2 : V2 ; -- [XXXDX] :: become raw again; break out/open again/afresh; + recta_Adv : Adv ; -- [XXXDX] :: directly, straight; + recte_Adv : Adv ; -- [XXXDX] :: vertically; rightly, correctly, properly, well; + rectificatio_F_N : N ; -- [GXXEK] :: rectification; + rectifico_V2 : V2 ; -- [FXXEM] :: rectify, regulate, control, govern/direct by rule/regulation; + rectilineus_A : A ; -- [ESXDX] :: rectilinear; in a straight line; + rectio_F_N : N ; -- [XXXDS] :: government; + rectitudo_F_N : N ; -- [EXXDP] :: straightness; uprightness; erect posture; correctness (spelling); rectitude; + rector_M_N : N ; -- [XXXBX] :: guide, director, helmsman; horseman; driver; leader, ruler, governor; + rectum_N_N : N ; -- [XXXDX] :: virtue; the_right + rectus_A : A ; -- [XXXAX] :: right, proper; straight; honest; + recubitus_M_N : N ; -- [EXXFR] :: seat; dining/reclining couch; + recubo_V : V ; -- [XXXBX] :: lie down/back, recline, lie on the back; + recudeo_V : V ; -- [GXXEK] :: reprint; + recumbo_V2 : V2 ; -- [XXXDX] :: recline, lie at ease, sink/lie/settle back/down; recline at table; + recuperatio_F_N : N ; -- [XLXEO] :: recovery; regaining; judgment by board of reciperatores/assessors; + recuperativus_A : A ; -- [XLXFO] :: relating to/involving recovery; (of disputes over property); + recuperator_M_N : N ; -- [XLXCO] :: assessor dealing w/disputes between aliens and Romans; recoverer/regainer; + recuperatorius_A : A ; -- [XLXDO] :: of assessor dealing w/disputes between aliens and Romans; recoverer/regainer; + recupero_V : V ; -- [XXXBX] :: regain, restore, restore to health; refresh, recuperate; + recuro_V : V ; -- [XXXDX] :: cure, restore, refresh; + recurro_V2 : V2 ; -- [XXXDX] :: run or hasten back; return; have recourse (to); + recurso_V : V ; -- [XXXDX] :: keep rebounding/recoiling; keep recurring to the mind; + recursus_M_N : N ; -- [XXXDX] :: running back, retreat, return; + recurvo_V : V ; -- [XXXDX] :: bend back; + recurvus_A : A ; -- [XXXDX] :: bent back on itself, bent round; + recusatio_F_N : N ; -- [XXXDX] :: refusal; + recuso_V : V ; -- [XXXBX] :: reject, refuse, refuse to; object; decline; + recussus_A : A ; -- [XXXDX] :: reverberating (Collins); + recutio_V2 : V2 ; -- [XXXDX] :: strike so as to cause to vibrate; + redactor_M_N : N ; -- [GXXEK] :: editor; + redambulo_V : V ; -- [BXXFS] :: come back; + redamo_V : V ; -- [XXXES] :: love back; love in return; + redardesco_V : V ; -- [XXXDX] :: blaze up again; + redarguo_V2 : V2 ; -- [XXXDX] :: refute; prove untrue; + redauspico_V : V ; -- [BXXFS] :: retake auspices; + reddo_V2 : V2 ; -- [XXXAX] :: return; restore; deliver; hand over, pay back, render, give back; translate; + redemptio_F_N : N ; -- [XXXBX] :: redemption, buying back, ransoming; deliverance; + redemptor_M_N : N ; -- [XXXDX] :: contractor, undertaker, purveyor, farmer; redeemer; one who buys back; + redeo_1_V : V ; -- [XXXAX] :: return, go back, give back; fall back on, revert to; respond, pay back; + redeo_2_V : V ; -- [XXXAX] :: return, go back, give back; fall back on, revert to; respond, pay back; + redhalo_V2 : V2 ; -- [XXXFS] :: exhale; + redhibeo_V2 : V2 ; -- [XXXEC] :: take back; + redicor_V : V ; -- [XAXEO] :: take root; grow roots; + redigo_V2 : V2 ; -- [XXXDX] :: drive back; reduce; render; + redimiculum_N_N : N ; -- [XXXDX] :: female headband; + redimio_V2 : V2 ; -- [XXXBO] :: encircle with a garland, wreathe around; surround, encircle; + redimo_V2 : V2 ; -- [EXXAW] :: |redeem; atone for; ransom; rescue/save; contract for; buy/purchase; buy off; + redintegro_V : V ; -- [XXXDX] :: renew; revive; + redipiscor_V : V ; -- [XXXEC] :: get back; + reditio_F_N : N ; -- [XXXDX] :: returning; going back; + redituarius_M_N : N ; -- [GXXEK] :: man of means; + reditus_M_N : N ; -- [XXXCS] :: return, returning; revenue, income, proceeds; produce (Plater); + redivia_F_N : N ; -- [XBXEC] :: hangnail; whitlow; + redivivus_A : A ; -- [XXXDX] :: re-used, secondhand; + redoleo_V : V ; -- [XXXDX] :: emit a scent, be odorous; + redomitus_A : A ; -- [XXXEC] :: tamed again; + redono_V : V ; -- [XXXDX] :: give back again; forgive; + redormio_V : V ; -- [XXXEO] :: go back to sleep, fall asleep again; + redormisco_V : V ; -- [GXXFT] :: go back to sleep, fall asleep again; (Erasmus); + reduco_V2 : V2 ; -- [XXXAX] :: lead back, bring back; restore; reduce; + reductivus_A : A ; -- [GXXEK] :: reducing; + reductor_M_N : N ; -- [XXXDX] :: restorer; + reductus_A : A ; -- [XXXDX] :: receding deeply, set back; + reduncus_A : A ; -- [XXXEC] :: bent back, curved; + redundantia_F_N : N ; -- [XXXDX] :: overflow, overflowing, excessive flow; redundancy; reversal of flow; + redundo_V : V ; -- [XXXDX] :: overflow; be too numerous; + reduntantia_F_N : N ; -- [XXXDS] :: superfluity; overflowing; + reduvia_F_N : N ; -- [XBXEC] :: hangnail; whitlow; + redux_A : A ; -- [XXXDX] :: coming back, returning; + refactor_M_N : N ; -- [EEXES] :: remaker; + refectio_F_N : N ; -- [XXXCO] :: restoration/repair; remaking; recouping; refreshment; recovery/convalescence; + refector_M_N : N ; -- [XXXEO] :: restorer, repairer, renewer; (spiritual of persons); + refectorium_N_N : N ; -- [EEXDP] :: refectory; dining room; + refectorius_A : A ; -- [EXXFS] :: refreshing; + refello_V2 : V2 ; -- [XXXDX] :: refute, rebut; + refercio_V2 : V2 ; -- [XXXDX] :: fill up, stuff/cram full; pack close, condense, mass together; + referendarius_M_N : N ; -- [FXXFZ] :: letter-reporter; one who reports all letters to ruler (JFW); + referio_V2 : V2 ; -- [XXXES] :: strike back; P:reflect; + refero_V : V ; -- [XXXEO] :: ||give/pay back, render, tender; restore; redirect; revive, repeat; recall; + refert_V0 : V ; -- [XXXBO] :: it matters/makes a difference/is of importance; matter/be of importance (PERS); + refertus_A : A ; -- [XXXDX] :: stuffed, crammed, filled full to bursting with, replete; crowded; loaded; + referveo_V : V ; -- [XXXDS] :: boil over; + reficio_V2 : V2 ; -- [XXXBX] :: rebuild, repair, restore; + refigo_V2 : V2 ; -- [XXXDX] :: unfix, unfasten, detach; pull out, take off, tear down; + refingo_V2 : V2 ; -- [XXXFS] :: remake; make anew; feign; + reflagito_V2 : V2 ; -- [XXXDS] :: redemand; + reflatus_M_N : N ; -- [XXXDS] :: contrary wind; + reflecto_V2 : V2 ; -- [XXXDX] :: bend back; turn back; turn round; + reflo_V : V ; -- [XXXDX] :: blow back again; + refluo_V : V ; -- [XXXDX] :: flow back, recede; + refluus_A : A ; -- [XXXDX] :: flowing back; + refocillatio_F_N : N ; -- [FXXEF] :: refreshment; reinvigoration; + refocillatrix_F_N : N ; -- [EXXFS] :: reviver, she who revives/revivifies(/refreshes/reinvorgates?); + refocillo_V2 : V2 ; -- [EXXDO] :: revive, revivify; warm to life again; relieve (Ecc); + refocilo_V2 : V2 ; -- [EXXDW] :: revive, revivify; warm to life again; relieve (Ecc); + reformatio_F_N : N ; -- [XXXFS] :: transformation; E:reformation; + reformido_V : V ; -- [XXXDX] :: dread; shun; shrink from; recoil at the sight of; + reformo_V : V ; -- [XXXDX] :: transform, remold; form (new shape); restore; + refoveo_V : V ; -- [XXXDX] :: warm again; refresh, revive; + refractariolus_A : A ; -- [XXXEC] :: somewhat stubborn; + refractio_F_N : N ; -- [GXXEK] :: refraction; + refragatio_F_N : N ; -- [XXXES] :: resistance; opposition; + refragor_V : V ; -- [XXXCO] :: oppose (candidate/interests); act to disadvantage of; act counter to, mitigate; + refrangibilitas_F_N : N ; -- [GSXEK] :: refractable; + refreno_V : V ; -- [XXXDX] :: curb, check; restrain; + refrico_V : V ; -- [XXXDX] :: gall; excite again; + refrigeratio_F_N : N ; -- [XXXDS] :: coolness; + refrigerium_N_N : N ; -- [XXXEO] :: rest; relief; cool period; cooling; consolation, mitigation (L+S); + refrigero_V : V ; -- [XXXDX] :: make cool; + refrigesco_V2 : V2 ; -- [XXXDX] :: grow cold, cool down; + refringo_V2 : V2 ; -- [XXXDX] :: break open; + refugio_V2 : V2 ; -- [XXXBX] :: flee back; run away, escape; + refugium_N_N : N ; -- [XXXDX] :: refuge; + refugus_A : A ; -- [XXXDX] :: fleeing, receding; + refulgeo_V : V ; -- [XXXDX] :: flash back, reflect light; shine brightly; gleam, glitter, glisten; + refulgo_V2 : V2 ; -- [XXXDX] :: flash back, glitter; + refundo_V2 : V2 ; -- [XXXDX] :: pour back; + refutatio_F_N : N ; -- [XXXDS] :: refutation; + refutatus_M_N : N ; -- [XXXFS] :: refutation; + refuto_V : V ; -- [XXXDX] :: check; refute; + regalis_A : A ; -- [XXXBX] :: royal, regal; + regeneratio_F_N : N ; -- [DXXES] :: regeneration; being born again; [lavacrum ~ => baptism]; + regero_V2 : V2 ; -- [XXXDX] :: carry back; throw back; throw back by way of retort; + regia_F_N : N ; -- [XXXDX] :: palace, court; residence; + regificus_A : A ; -- [XXXDX] :: fit for a king; + regigno_V2 : V2 ; -- [XXXDS] :: beget again; + regimen_N_N : N ; -- [XXXDX] :: control, steering; direction; + regina_F_N : N ; -- [XXXAX] :: queen; + regio_F_N : N ; -- [XXXAX] :: area, region; neighborhood; district, country; direction; + regionalismus_M_N : N ; -- [GXXEK] :: regionalism; + regius_A : A ; -- [XXXAX] :: royal, of a king, regal; + reglutino_V2 : V2 ; -- [XXXFS] :: unstick; rejoin; + regnator_M_N : N ; -- [XXXDX] :: king, lord; + regnatrix_A : A ; -- [XXXFS] :: imperial; + regno_V : V ; -- [XXXAX] :: reign, rule; be king; play the lord, be master; + regnum_N_N : N ; -- [XXXAX] :: royal power; power; control; kingdom; + rego_V2 : V2 ; -- [XXXAX] :: rule, guide; manage, direct; + regredior_V : V ; -- [XXXBX] :: go back, return, retreat; + regressivus_A : A ; -- [GXXEK] :: regressive; + regressus_M_N : N ; -- [XXXDX] :: going back, return; + regula_F_N : N ; -- [XXXBO] :: ruler, straight edge (drawing); basic principle, rule, standard; rod/bar/rail; + regularis_A : A ; -- [EEXEP] :: canonical; regular, usual; containing a regimen; (royal); + regulariter_Adv : Adv ; -- [XXXES] :: by way of general rule; according to rule (L+S); regularly (Souter); + regulatim_Adv : Adv ; -- [FXXFE] :: by way of general rule; according to rule (L+S); regularly (Souter); + regulus_M_N : N ; -- [XXXDX] :: petty king, prince; Regulus (Roman consul captured by Carthaginians); + regusto_V2 : V2 ; -- [XXXFS] :: retaste; taste again; + rehendo_V2 : V2 ; -- [XXXDX] :: hold back, seize, catch; blame, reprove; + reicio_V2 : V2 ; -- [XXXDX] :: throw back; drive back; repulse, repel; refuse, reject, scorn; + reiculus_A : A ; -- [XXXFS] :: worthless; useless; wasted; + reimpressio_F_N : N ; -- [GXXEK] :: reprint; + reimprimeo_V : V ; -- [GXXEK] :: reprint; + reincarnatio_F_N : N ; -- [GEXEK] :: reincarnation; + rejectaneus_A : A ; -- [XXXDS] :: rejectable; + rejectio_F_N : N ; -- [XXXES] :: throwing-back; rejection; + rejecto_V2 : V2 ; -- [XXXFS] :: throw back; + rejicio_V2 : V2 ; -- [XXXCS] :: throw back; drive back; repulse, repel; refuse, reject, scorn; + relabor_V : V ; -- [XXXDX] :: fall back, vanish; + relanguesco_V2 : V2 ; -- [XXXDX] :: become faint, become weak; sink down; + relapsus_M_N : N ; -- [GXXEK] :: relapse; + relatio_F_N : N ; -- [XLXAO] :: |reference to standard; retorting on accuser; giving oath in reply; repayment; + relationalis_A : A ; -- [GXXEK] :: relational; + relative_Adv : Adv ; -- [DXXFS] :: relatively; + relativismus_M_N : N ; -- [GXXEK] :: relativism; + relativisticus_A : A ; -- [GSXEK] :: relativistic; + relativitas_F_N : N ; -- [GSXEK] :: relativity; + relativus_A : A ; -- [DXXDS] :: relative; referring; having reference/relation; + relator_M_N : N ; -- [GXXEK] :: reporter, journalist; + relatus_M_N : N ; -- [XXXDO] :: narration, telling of events; utterance (of sounds) in reply; + relaxo_V : V ; -- [XXXDX] :: loosen, widen; relax; + relegatio_F_N : N ; -- [XXXDX] :: banishment; + relego_V : V ; -- [XXXDX] :: banish, remove; relegate; + relego_V2 : V2 ; -- [XXXDX] :: read again, reread; + relentesco_V : V ; -- [XPXFS] :: slacken off; + relevium_N_N : N ; -- [FLXFM] :: relief; E:alms; remnant of meal; + relevo_V2 : V2 ; -- [XXXBO] :: relieve/alleviate/diminish/lighten; ease/refresh; exonerate; raise; lift (eyes); + relictio_F_N : N ; -- [XXXDS] :: abandoning; + relictum_N_N : N ; -- [XXXDX] :: that which is left/forsaken/abandoned/left untouched; the residue/remaining; + relictus_A : A ; -- [XXXDX] :: forsaken, abandoned, derelict; left untouched; + relicum_N_N : N ; -- [XXXAO] :: |mortal remains (pl.); future, things yet to be, subsequent events; + relicus_A : A ; -- [XXXAO] :: rest of/remaining/available/left; surviving; future/further; yet to be/owed; + relicuum_N_N : N ; -- [XXXAO] :: |mortal remains (pl.); future, things yet to be, subsequent events; + relicuus_A : A ; -- [XXXAO] :: rest of/remaining/available/left; surviving; future/further; yet to be/owed; + relido_V2 : V2 ; -- [XXXCS] :: strike (back); refuse, reject; tear to pieces (Saxo), remove, rub out; destroy; + religatio_F_N : N ; -- [XXXFS] :: binding; + religio_F_N : N ; -- [XXXAO] :: |reverence/respect/awe/conscience/scruples; religion; order of monks/nuns (Bee); + religiose_Adv : Adv ; -- [XXXDX] :: carefully; reverently; conscientiously; + religiositas_F_N : N ; -- [XEXFO] :: regard for the divine law; + religiosus_A : A ; -- [XXXAO] :: pious/devout/religious/scrupulous; superstitious; taboo/sacred; reverent/devout; + religiosus_M_N : N ; -- [XXXCO] :: religious devotee; member of a religious order (Bee); + religo_V : V ; -- [XXXDX] :: tie out of the way; bind fast; moor; + relino_V2 : V2 ; -- [XXXFS] :: unseal; + relinquo_V2 : V2 ; -- [XXXAX] :: leave behind, abandon; (pass.) be left, remain; bequeath; + reliquator_M_N : N ; -- [ELXFS] :: defaulter; one in arrears; + reliquia_F_N : N ; -- [XXXAO] :: remains/relics (pl.) (esp. post cremation); remnants/traces/vestiges; survivors; + reliquum_N_N : N ; -- [XXXAO] :: |mortal remains (pl.); future, things yet to be, subsequent events; + reliquus_A : A ; -- [XXXAO] :: rest of/remaining/available/left; surviving; future/further; yet to be/owed; + reluceo_V : V ; -- [XXXDX] :: shine out; + relucesco_V2 : V2 ; -- [XXXDX] :: grow bright again; + reluctor_V : V ; -- [XXXDX] :: resist, struggle against, make opposition; + remaneo_V : V ; -- [XXXAX] :: stay behind; continue, remain; + remano_V : V ; -- [XXXEC] :: flow back; + remansio_F_N : N ; -- [XXXDS] :: remaining behind; + remedium_N_N : N ; -- [XXXBX] :: remedy, cure; medicine; + rememoratio_F_N : N ; -- [EXXES] :: remembrance; + remeo_V : V ; -- [XXXDX] :: go or come back, return; + remetior_V : V ; -- [XXXDX] :: go back over; + remex_M_N : N ; -- [XXXDX] :: oarsman, rower; + remigatio_F_N : N ; -- [XXXFO] :: rowing; oar (Cal); + remigium_N_N : N ; -- [XXXDX] :: rowing, oarage; + remigo_V : V ; -- [XWXCO] :: row, use oars; + remigro_V : V ; -- [XXXDX] :: move back; return; + reminiscor_V : V ; -- [XXXDX] :: call to mind, recollect; + remisceo_V2 : V2 ; -- [XXXDO] :: mix/mingle in; remix/remingle (L+S); mix up/again; intermingle; + remisse_Adv : Adv ; -- [XXXAO] :: |half-heartedly/feebly; inattentively; w/laxity of discipline; mildly/leniently; + remissio_F_N : N ; -- [XXXDX] :: sending back/away, returning, releasing; abating; forgiveness; remiss; + remissus_A : A ; -- [XXXAO] :: |lenient, forbearing; moderate, not intense/potent; low (valuation); fever-free; + remitto_V2 : V2 ; -- [XXXAX] :: send back, remit; throw back, relax, diminish; + remolior_V : V ; -- [XXXDX] :: push/press/heave back/away; + remollesco_V : V ; -- [XXXDX] :: become soft again; grow soft; + remollio_V2 : V2 ; -- [XXXDS] :: resoften; make soft again; weaken; + remora_F_N : N ; -- [XXXDS] :: hindrance; delay; + remoramen_N_N : N ; -- [XXXEC] :: delay; + remordeo_V : V ; -- [XXXDX] :: bite back; gnaw, nag; + remoror_V : V ; -- [XXXDX] :: delay; + remote_Adv : Adv ; -- [XXXDX] :: far off; at a distance; remotely; distantly; + remotus_A : A ; -- [XXXDX] :: remote; distant, far off; removed, withdrawn; removed/freed from; + removeo_V : V ; -- [XXXAX] :: move back; put away; withdraw; remove; + remugio_V : V ; -- [XXXDX] :: bellow back, moo in reply; resound; + remulceo_V : V ; -- [XXXDX] :: stroke/fold back; + remulcum_N_N : N ; -- [XXXDX] :: tow-rope; + remuneratio_F_N : N ; -- [XXXEO] :: repaying, making payment in return; recompense/reward (L+S); remuneration; + remunero_V : V ; -- [XXXDX] :: reward, recompense, remunerate; + remunero_V2 : V2 ; -- [XXXBO] :: reward; repay, recompense, remunerate; requite; pay back, retaliate; + remuneror_V : V ; -- [XXXBO] :: reward, repay, recompense, remunerate; requite; pay back, retaliate; + remurmuro_V : V ; -- [XPXDS] :: remurmur; murmur back; + remus_M_N : N ; -- [XWXBX] :: oar; + ren_M_N : N ; -- [XBXCO] :: kidney(s) (usu. pl.); name of precious stone; (sg. ren not used L+S); + renarro_V : V ; -- [XXXDX] :: tell over again; + renascentia_F_N : N ; -- [GXXEK] :: rebirth (time); + renascor_V : V ; -- [XXXDX] :: be born again, be renewed, be revived; + renavigo_V : V ; -- [XXXDS] :: sail back; + reneo_V2 : V2 ; -- [XXXDS] :: unspin; undo; + renidens_A : A ; -- [XXXDX] :: shining, gleaming; + renideo_V : V ; -- [XXXDX] :: shine (back), gleam; smile back (at); + renidesco_V : V ; -- [XXXDS] :: grow bright; + renitor_V : V ; -- [XXXDX] :: struggle, offer physical resistance; be resistant (substance), not to yield; + rennuo_V2 : V2 ; -- [XXXCO] :: refuse; disapprove; decline; give a refusal; throw back head/eye/brows as sign; + reno_M_N : N ; -- [XXXDX] :: reindeer-skin; deerskin garment; fur cloak; + renodo_V2 : V2 ; -- [XXXDS] :: bind back; tie back; + renovamen_N_N : N ; -- [XXXEC] :: renewal; + renovatio_F_N : N ; -- [XXXCO] :: renewal, renewing (w/interest added to principle), refinancing; renovation; + renovo_V : V ; -- [XXXBX] :: renew, restore; revive; + renumero_V2 : V2 ; -- [XXXDO] :: repay, pay back; pay out (that owed); report count of; + renuncio_V : V ; -- [XXXFS] :: report, announce; reject; (also renuntio); + renunculus_M_N : N ; -- [DXXES] :: little kidney (usu. pl.); + renuntiatio_F_N : N ; -- [XXXCO] :: |resignation; withdrawal; renunciation; + renuntio_V : V ; -- [XXXDX] :: report, announce; reject; + renuo_V2 : V2 ; -- [XXXCO] :: refuse; disapprove; decline; give a refusal; throw back head/eye/brows as sign; + renuto_V : V ; -- [XXXDS] :: refuse; decline; + reor_V : V ; -- [XXXAX] :: think, regard; deem; suppose, believe, reckon; + repagulum_N_N : N ; -- [XXXDX] :: door-bars (pl.); + repandus_A : A ; -- [XXXDX] :: spread out, flattened back; + reparabilis_A : A ; -- [XXXDX] :: capable of being recovered or restored; + reparatio_F_N : N ; -- [DXXES] :: restoration; renewal; + reparco_V2 : V2 ; -- [XXXDS] :: spare; be sparing; restrain; + reparo_V : V ; -- [XXXBX] :: prepare again; renew, revive; + repastinatio_F_N : N ; -- [XXXEC] :: digging up again; + repatrio_F_N : N ; -- [DXXES] :: return to one's country; go home again; + repecto_V2 : V2 ; -- [XXXEO] :: comb back; + repedo_V : V ; -- [XXXEO] :: return, go back; retire; + repello_V2 : V2 ; -- [EXXDO] :: drive/push/thrust back/away; repel/rebuff/spurn; fend off; exclude/bar; refute; + rependo_V2 : V2 ; -- [XXXDX] :: weigh/balance (against); weigh out/pat in return; purchase, compensate; + repens_A : A ; -- [XXXDX] :: sudden, unexpected; + repente_Adv : Adv ; -- [XXXBX] :: suddenly, unexpectedly; + repentinus_A : A ; -- [XXXDX] :: sudden, hasty; unexpected; + reperco_V2 : V2 ; -- [XXXEC] :: spare, be sparing, abstain; + repercussio_F_N : N ; -- [XXXES] :: rebounding; repercussion; + repercussus_M_N : N ; -- [XXXDS] :: reverberation; reflection; echo; + repercutio_V2 : V2 ; -- [XXXDX] :: cause to rebound, reflect, strike against; + reperio_V2 : V2 ; -- [XXXAO] :: discover, learn; light on; find/obtain/get; find out/to be, get to know; invent; + repertor_M_N : N ; -- [XXXDX] :: discoverer, inventor, author; + repertum_N_N : N ; -- [XXXEO] :: discovery; invention; finding again (L+S); + repetitio_F_N : N ; -- [XXXDX] :: repetition; + repetitor_M_N : N ; -- [XXXFS] :: reclaimer; one who reclaims; + repetitus_A : A ; -- [XXXDS] :: repeated; + repeto_V2 : V2 ; -- [XXXAX] :: return to; get back; demand back/again; repeat; recall; claim; + repetunda_F_N : N ; -- [XXXDX] :: recovery (pl.) of extorted money; + replebilis_A : A ; -- [GXXEK] :: refillable; + replegio_V : V ; -- [FLXFJ] :: bail (person); recover security taken for court appearance; + repleo_V : V ; -- [XXXBX] :: fill again; complete, fill; + repletus_A : A ; -- [XXXDX] :: full (of); + replico_V2 : V2 ; -- [FXXEV] :: repeat; turn/fold/bend back (on); unroll, unwind; go over and over; + replum_N_N : N ; -- [FXXEK] :: frame; + repo_V2 : V2 ; -- [XXXDX] :: creep, crawl; + repono_V2 : V2 ; -- [XXXBX] :: put back; restore; store; repeat; + reporto_V : V ; -- [XXXBX] :: carry back; report; + reposco_V : V ; -- [XXXDX] :: demand back; claim as one's due; + repositorium_N_N : N ; -- [FXXEK] :: servicing, small table of service; + repositus_A : A ; -- [XXXDO] :: remote, out of the way; + repostor_M_N : N ; -- [XXXEC] :: restorer; + repostus_A : A ; -- [XXXDO] :: remote, out of the way; + repotium_N_N : N ; -- [XXXDX] :: drinking (pl.), raveling; + repperio_V2 : V2 ; -- [XXXAO] :: discover, learn; light on; find/obtain/get; find out/to be, get to know; invent; + reppertum_N_N : N ; -- [DXXEO] :: discovery; invention; finding again (L+S); + repraesentativus_A : A ; -- [GXXEK] :: representative; + repraesento_V : V ; -- [XXXDX] :: represent, depict; show, exhibit, display; manifest; pay down, pay in cash; + reprehendo_V2 : V2 ; -- [XXXDX] :: hold back, seize, catch; blame; + reprehensibilis_A : A ; -- [XXXEO] :: reprehensible, blameworthy, open to censure; (people/conduct); + reprehensio_F_N : N ; -- [XXXBO] :: blame/reprimand/criticism; censuring/finding fault; refutation; self-correction; + reprehenso_V2 : V2 ; -- [XXXDS] :: blamer; critic; + reprensio_F_N : N ; -- [XXXBO] :: blame/reprimand/criticism; censuring/finding fault; refutation; self-correction; + repressor_M_N : N ; -- [XXXFS] :: restrainer; one who restrains; + reprimo_V2 : V2 ; -- [XXXDX] :: press back, repress; check, prevent, restrain; + reprobatio_F_N : N ; -- [XEXES] :: rejection; reprobation; + reprobo_V2 : V2 ; -- [XXXEO] :: condemn; reject; + reprobus_A : A ; -- [XXXEO] :: base, rejected; rejected/condemned as below standard; + reproductio_F_N : N ; -- [GXXEK] :: reproduction (of the living beings); + repromissio_F_N : N ; -- [XXXDO] :: formal promise/guarantee/undertaking; + repromissum_N_N : N ; -- [XXXIO] :: formal promise/guarantee/undertaking; + repromitto_V2 : V2 ; -- [XLXCO] :: guarantee, give one's word; promise (do/give, that); give formal undertaking; + reptatus_A : A ; -- [XXXES] :: crawled/crept through; + reptatus_M_N : N ; -- [XXXFO] :: act of crawling; + reptile_N_N : N ; -- [DAXES] :: reptile; + reptilis_A : A ; -- [DAXES] :: creeping; reptile; + repto_V : V ; -- [XXXBO] :: crawl/creep (over); move slowly/lazily/furtively, stroll/saunter, slink, grope; + republicanus_M_N : N ; -- [GXXEK] :: republican; + repudiatio_F_N : N ; -- [XXXES] :: rejection; refusal; + repudio_V : V ; -- [XXXDX] :: reject; repudiate; scorn; + repudium_N_N : N ; -- [XXXDX] :: repudiation/rejection of prospective spouse, notification of; divorce; + repuerasco_V : V ; -- [XXXEC] :: become a boy again; frolic; + repugnantia_F_N : N ; -- [FXXFS] :: resistance, opposition; contradiction; repugnance; + repugno_V : V ; -- [XXXDX] :: fight back, oppose; be incompatible with; disagree with; + repulsa_F_N : N ; -- [XXXDX] :: electoral defeat; rebuff; + repulsivus_A : A ; -- [GXXEK] :: repulsive; + repulso_V : V ; -- [XXXDX] :: drive back; reject; + repulsus_M_N : N ; -- [XXXDS] :: reverberation; reflection; echo; + repungo_V2 : V2 ; -- [XXXFS] :: reprod; prod again; + repuo_V : V ; -- [FXXEN] :: reject; + repurgo_V2 : V2 ; -- [XXXDS] :: recleanse; clear again; purge away; + reputatio_F_N : N ; -- [XXXEZ] :: pondering over (Collins); + reputo_V : V ; -- [XXXDX] :: think over, reflect; + requies_F_N : N ; -- [XXXBO] :: rest (from labor), respite; intermission, pause, break; amusement, hobby; + requiesco_V2 : V2 ; -- [XXXBX] :: quiet down; rest; end; + requietio_F_N : N ; -- [XXXIO] :: rest; repose; + requietus_A : A ; -- [XXXDX] :: rested; improved by lying fallow; + requirito_V2 : V2 ; -- [BXXFS] :: inquire repeatedly; keep asking after; + requiro_V2 : V2 ; -- [XXXAX] :: require, seek, ask for; need; miss, pine for; + res_F_N : N ; -- [XXXAX] :: thing; event/affair/business; fact; cause; property; [~ familiaris => property]; + res_N : N ; -- [DEQEW] :: res; (20th letter of Hebrew alphabet); (transliterate as R); + resacro_V : V ; -- [XXXEC] :: implore again and again; free from a curse; + resaevio_V : V ; -- [XPXFS] :: rage again; + resaluto_V2 : V2 ; -- [XXXDS] :: greet back; greet in return; + resanesco_V2 : V2 ; -- [XXXDX] :: be healed; + resarcio_V2 : V2 ; -- [XXXCO] :: restore, make good (loss); mend, repair (something damaged); + rescindo_V2 : V2 ; -- [XXXDX] :: cut out; cut down, destroy; annul; rescind; + rescisco_V2 : V2 ; -- [XXXDX] :: learn, find out, ascertain; bring to light; + rescribo_V2 : V2 ; -- [XXXDX] :: write back in reply; + reseantia_F_N : N ; -- [FXXFM] :: residence; + reseantisa_F_N : N ; -- [FXXFM] :: residence; + reseco_V : V ; -- [XXXDX] :: cut back, trim; reap, cut short; + resecro_V : V ; -- [XXXEC] :: implore again and again; free from a curse; + resemino_V : V ; -- [XXXDX] :: reproduce; + resequor_V : V ; -- [XXXDX] :: reply to; + resero_V : V ; -- [XXXBX] :: open up, unseal, unbar (gate/door), unfasten; make accessible; uncover, expose; + reservo_V : V ; -- [XXXDX] :: reserve; spare; hold on to; + reses_A : A ; -- [XXXDX] :: motionless, inactive, idle, sluggish; + residentia_F_N : N ; -- [FXXFM] :: residence; + residentialis_A : A ; -- [GXXFE] :: residential; + resideo_V : V ; -- [XXXBO] :: |abate/subside; be left over/retained, persist/stay; fall back; W:be encamped; + resido_V2 : V2 ; -- [XXXAX] :: sit down; settle; abate; subside, quieten down; + residuus_A : A ; -- [XXXDX] :: remaining (to be done); lingering, persisting, surviving; left over; surplus; + resignatio_F_N : N ; -- [GXXEK] :: resignation; + resigno_V : V ; -- [XXXDX] :: unseal; open; resign; + resilio_V2 : V2 ; -- [XXXDX] :: leap or spring back; recoil; rebound; shrink (back again); + resimus_A : A ; -- [XXXDX] :: turned up, snub; + resina_F_N : N ; -- [XAXCO] :: resin (solid/liquid); (product secreted by various trees); + resinaceus_A : A ; -- [XAXFO] :: resinous, having the qualities of resin; + resinaria_F_N : N ; -- [XAXIO] :: woman who sells/prepares resin; + resinosus_A : A ; -- [XXXFS] :: resinous; + resipicentia_F_N : N ; -- [XXXES] :: change of mind; reformation; repentance; + resipio_V : V ; -- [XXXEC] :: have flavor of anything; + resipisco_V2 : V2 ; -- [XXXDX] :: become reasonable again; recover/come to the senses, come to, revive, recover; + resisto_V2 : V2 ; -- [XXXBX] :: pause; continue; resist, oppose; reply; withstand, stand (DAT); make a stand; + resolutio_F_N : N ; -- [XBXCO] :: |untying/unfastening; unraveling/solution/resolution/solving (of a puzzle); + resolvo_V2 : V2 ; -- [XXXBX] :: loosen, release, disperse, melt; relax; pay; enervate, pay back; break up; + resonabilis_A : A ; -- [XPXDS] :: resounding; + resono_V : V ; -- [XXXBX] :: resound; + resonus_A : A ; -- [XXXDX] :: echoing; + resorbeo_V : V ; -- [XXXDX] :: swallow down; + respecto_V : V ; -- [XXXDX] :: keep on looking round or back; await; have regard for; + respectus_M_N : N ; -- [XXXDX] :: looking back (at); refuge, regard, consideration (for); + respergo_V2 : V2 ; -- [XXXDX] :: sprinkle, spatter; + respersio_F_N : N ; -- [XXXDS] :: sprinkling; + respicio_V2 : V2 ; -- [XXXAX] :: look back at; gaze at; consider; respect; care for, provide for; + respiramen_N_N : N ; -- [XXXDX] :: means or channel of breathing; + respiratio_F_N : N ; -- [XXXDX] :: taking of breath; + respiratus_M_N : N ; -- [XXXDS] :: inhaling; inspiration; + respiro_V : V ; -- [XXXDX] :: breathe out; take breath; enjoy a respite; + resplendeo_V : V ; -- [XXXCO] :: shine brightly (w/reflected light); radiate light/shine brightly (luminary); + respondeo_V : V ; -- [XXXAX] :: answer; + responsabilis_A : A ; -- [GXXEK] :: responsible; + responsabilitas_F_N : N ; -- [GXXEK] :: responsibility; + responsalis_A : A ; -- [GXXEK] :: responsible; + responsalitas_F_N : N ; -- [GXXEK] :: responsibility; + responsito_V : V ; -- [XXXDS] :: give advice; + responso_V : V ; -- [XXXDX] :: answer, reply (to); reecho; + responsor_M_N : N ; -- [BXXFS] :: responder; one who answers; + responsoria_F_N : N ; -- [FEXEQ] :: responsory; (OED); response, repetitions; + responsorium_N_N : N ; -- [DEXES] :: response; responsory; repetitive reply; repetitions (pl.) in vocal worship; + responsum_N_N : N ; -- [XXXBX] :: answer, response; + respuo_V2 : V2 ; -- [XXXDX] :: reject, spit, spew out; turn away, repel; reject, destain, spurn, refuse; + restagno_V : V ; -- [XXXDX] :: overflow; be covered with flood-water; + restat_V0 : V ; -- [XXXDX] :: it remains to; it remains standing; + restauro_V2 : V2 ; -- [XXXCO] :: restore (condition); rebuild; bring back, re-establish, take up again; renew; + resticula_F_N : N ; -- [XXXEC] :: thin rope; + restinctio_F_N : N ; -- [XXXFS] :: quenching; + restinguo_V2 : V2 ; -- [XXXDX] :: extinguish, quench, put out; exterminate, destroy; assuage, allay, mitigate; + restio_M_N : N ; -- [FXXES] :: rope-maker; + restipulatio_F_N : N ; -- [XXXDS] :: counterobligation; + restipulor_V : V ; -- [XXXCO] :: demand (from the stipulator) a counter-guarantee; (w/ACC of thing guaranteed); + restis_F_N : N ; -- [XXXDX] :: rope, cord; + restito_V : V ; -- [XXXDS] :: stay behind; hesitate; + restituo_V2 : V2 ; -- [XXXBX] :: restore; revive; bring back; make good; + restitutio_F_N : N ; -- [XXXDX] :: rebuilding; reinstatement; + restitutor_M_N : N ; -- [XXXCO] :: restorer, rebuilder, one who restores to health/revives/reinstates (an exile); + restitutorius_A : A ; -- [XLXCO] :: restoratory; restitutory; concerned with restoring status quo/initial position; + resto_V : V ; -- [XXXBX] :: stand firm; stay behind; be left, be left over; remain; + restrictivus_A : A ; -- [GXXEK] :: restraining; + restrictus_A : A ; -- [XXXEX] :: tight; short; niggardly; severe (Collins); + restringo_V2 : V2 ; -- [XXXDX] :: draw tight; fasten behind one, tie up; + resulto_V : V ; -- [XXXDX] :: reverberate, resound; re-echo; rebound, spring back; + resummonitio_F_N : N ; -- [FLXFJ] :: re-summons; + resumo_V2 : V2 ; -- [XXXBX] :: pick up again; resume; recover; + resupinus_A : A ; -- [XXXDX] :: lying on one's back; + resurgo_V2 : V2 ; -- [XXXBX] :: rise/appear again; rare up again, lift oneself, be restored/rebuilt, revive; + resurrectio_F_N : N ; -- [EEXDX] :: resurrection, rising again; + resuscito_V : V ; -- [XXXDX] :: rouse again, reawaken; + retardatio_F_N : N ; -- [XXXDS] :: hindering; + retardo_V : V ; -- [XXXDX] :: delay, hold up; + rete_N_N : N ; -- [XXXDX] :: net, snare; + retego_V2 : V2 ; -- [XXXDX] :: uncover, lay bare, reveal, disclose; + retempto_V2 : V2 ; -- [XXXDS] :: reattempt; try again; (=retento); + retendo_V2 : V2 ; -- [XXXDO] :: slacken; relax; unbend (bow); free from tension; hold back (?); + retentio_F_N : N ; -- [XLXCO] :: restraining/holding back; retention/holding against loss; withholding (payment); + retento_V2 : V2 ; -- [XXXCO] :: hold fast/back, keep hold of; restrain/detain, keep in check/place; retain; + retexo_V2 : V2 ; -- [XXXBO] :: undo/reverse/cancel; retrace/go back over; retract; unravel/unweave; break down; + retiaculum_N_N : N ; -- [XXXCS] :: small (fish) net; small mesh bag; hair net; some sort of undergarment; network; + retiarius_M_N : N ; -- [XXXDO] :: net-fighter in the arena; + reticeo_V : V ; -- [XXXCO] :: keep silent; give no reply; refrain from speaking/mentioning; leave unsaid; + reticulatus_A : A ; -- [XXXFS] :: net-like; + reticulum_N_N : N ; -- [GXXEK] :: |tennis-racket; + reticulus_M_N : N ; -- [XXXCO] :: small (fish) net; small mesh bag; hair net; type of undergarment; network; + retina_F_N : N ; -- [GXXEK] :: retina; + retinaculum_N_N : N ; -- [XXXDX] :: rope; hawser; rein; towing-rope; + retinens_A : A ; -- [XXXDS] :: tenacious; observant; + retinentia_F_N : N ; -- [XXXDS] :: memory retention; recollection; + retineo_V : V ; -- [XXXAX] :: hold back, restrain; uphold; delay; hold fast; retain,preserve; + retono_V : V ; -- [XXXFS] :: thunder back; + retorqueo_V : V ; -- [XXXDX] :: twist back; cast back; fling back; turn aside; + retorridus_A : A ; -- [XXXCS] :: dried-up; + retorta_F_N : N ; -- [GSXEK] :: retort (chemistry); + retracto_V : V ; -- [XXXDX] :: undertake anew; draw back, be reluctant; reconsider; withdraw; + retractus_A : A ; -- [XXXDS] :: remote; + retraho_V2 : V2 ; -- [XXXDX] :: draw back, withdraw; make known again, divert; bring back; + retrecto_V : V ; -- [XXXDS] :: undertake anew; draw back, be reluctant; reconsider; withdraw; (= retracto); + retribuo_V2 : V2 ; -- [XXXCO] :: hand back duly (money owed); recompense (Vulgate); render; reward; + retributio_F_N : N ; -- [DEXDS] :: retribution, recompense/repayment; punishment (Souter); reward (from judgment); + retro_Adv : Adv ; -- [XXXBX] :: backwards, back, to the rear; behind, on the back side; back (time), formerly; + retroago_V2 : V2 ; -- [XXXEC] :: drive back, reverse; + retrogradatio_F_N : N ; -- [EXXES] :: going-back; + retrorsum_Adv : Adv ; -- [XXXDX] :: back, backwards; in reverse order; + retrorsus_Adv : Adv ; -- [XXXDX] :: back, backwards; in reverse order; + retroscopicus_A : A ; -- [GXXEK] :: back-viewing; + retrospective_Adv : Adv ; -- [GXXEK] :: retrospectively; + retrospectivus_A : A ; -- [GXXEK] :: retrospective; + retrotraho_V2 : V2 ; -- [FLXFM] :: refer back; + retroversus_Adv : Adv ; -- [XXXDX] :: back, backwards; in reverse order; + retundo_V2 : V2 ; -- [XXXDX] :: blunt; weaken; repress, quell; + retunsus_A : A ; -- [XXXCS] :: blunt, dull; + retusus_A : A ; -- [XXXCS] :: blunt, dull; + reubarbarum_N_N : N ; -- [GAXEK] :: rhubarb; + reus_A : A ; -- [FLXEL] :: liable to (penalty of); guilty; [mens rea => guilty mind (modern legal term)]; + reus_M_N : N ; -- [XLXAO] :: party in law suit; plaintiff/defendant; culprit/guilty party, debtor; sinner; + revalesco_V2 : V2 ; -- [XXXDX] :: grow well again; + reveho_V2 : V2 ; -- [XXXDX] :: carry/bring back; ride/sail back (PASS); + revelatio_F_N : N ; -- [EEXDS] :: revelation; uncovering, laying bare; Revelation of St. John; + revello_V2 : V2 ; -- [XXXBO] :: |raise/pull up (skin); pluck away/loose (L+S); open (vein); violate/disturb; + revelo_V : V ; -- [XXXDX] :: show; reveal; + revenio_V2 : V2 ; -- [XXXDX] :: come back, return; + revera_Adv : Adv ; -- [XXXCO] :: in fact; in reality, actually; [re vera => true thing]; + reverberatio_F_N : N ; -- [XXXEF] :: reverberation; reflecting/reflection of light/heat; + reverberatus_A : A ; -- [XXXFF] :: beaten back; struck; + reverbero_V2 : V2 ; -- [XXXCO] :: beat back; repel (violently from a surface); + reverendus_A : A ; -- [XPXDS] :: awe-inspiring; venerable; + reverens_A : A ; -- [XXXCO] :: reverent; feeling /showing restraint before superiors; shy/apprehensive/uneasy; + reverenter_Adv : Adv ; -- [XXXDO] :: reverently, with religious awe; respectfully, with deference/consideration; + reverentia_F_N : N ; -- [XXXBO] :: respect, deference, restraint; awe, reverence; shyness, felling of misgiving; + revereor_V : V ; -- [XXXDX] :: respect, stand in awe of, honor, fear; reverence, revere, venerate; + reversio_F_N : N ; -- [XXXCO] :: return, reversing/turning back; coming around again; reversal of natural order; + reverto_V2 : V2 ; -- [XXXAX] :: turn back, go back, return; recur (usually DEP); + revertor_V : V ; -- [XXXDX] :: turn back, go back, return; recur; + revincio_V2 : V2 ; -- [XXXDX] :: bind fast, fasten; + revinco_V2 : V2 ; -- [XXXDX] :: conquer, crush, disprove; + reviresco_V2 : V2 ; -- [XXXDX] :: grow green again; grow strong or young again; + reviso_V : V ; -- [XXXDX] :: revisit, go back and see; + revivisco_V2 : V2 ; -- [XXXDX] :: come to life again, revive (in spirit); + revivo_V : V ; -- [DXXES] :: live again; + revocabilis_A : A ; -- [XXXDX] :: capable of being revoked or retracted; + revocamen_N_N : N ; -- [XXXDX] :: summons to return; + revoco_V : V ; -- [XXXAX] :: call back, recall; revive; regain; + revolo_V : V ; -- [XXXDX] :: fly back; + revolubilis_A : A ; -- [XXXDX] :: that may be rolled back to the beginning; rolling backward; + revolutio_F_N : N ; -- [DXXES] :: revolution, rotation, revolving, turning, turn; + revolvo_V2 : V2 ; -- [XXXBX] :: throw back, roll back; + revomo_V2 : V2 ; -- [XXXDX] :: vomit up again, spew out; + rex_M_N : N ; -- [XLXAX] :: king; + rhagadis_F_N : N ; -- [DBXNS] :: body-sore (Pliny); + rhagadium_N_N : N ; -- [DBXNS] :: body-sore (Pliny); + rheno_M_N : N ; -- [XAXDS] :: fur (= reno); + rhetor_M_N : N ; -- [XXXDX] :: teacher of public speaking, rhetorician; + rhetoria_F_N : N ; -- [GGXET] :: trick of rhetoric; (Erasmus); + rhetorice_F_N : N ; -- [XXXEO] :: rhetoric; art of oratory; systematized art of public speaking; + rhetoricus_A : A ; -- [XXXDX] :: of rhetoric, rhetorical; + rheumatismus_M_N : N ; -- [XBXES] :: catarrh; rheum; 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 ; - rhomium_N_N : N ; - rhomphaea_F_N : N ; - rhypodes_A : A ; - rhythmicus_A : A ; - rhythmicus_M_N : N ; - rhythmos_M_N : N ; - rhythmus_M_N : N ; - rhytium_N_N : N ; - ribes_F_N : N ; - ribesium_N_N : N ; - rica_F_N : N ; - ricinium_N_N : N ; - ricinum_N_N : N ; - rictum_N_N : N ; - rictus_M_N : N ; - rideo_V : V ; - ridibundus_A : A ; - ridica_F_N : N ; - ridicula_F_N : N ; - ridiculare_N_N : N ; - ridicularius_A : A ; - ridicule_Adv : Adv ; - ridiculum_Interj : Interj ; - ridiculum_N_N : N ; - ridiculus_A : A ; - ridiculus_M_N : N ; - rienes_M_N : N ; - rigatio_F_N : N ; - rigens_A : A ; - rigeo_V : V ; - rigesco_V2 : V2 ; - rigidus_A : A ; - rigo_V : V ; - rigor_M_N : N ; - riguus_A : A ; - rima_F_N : N ; - rimor_V : V ; - rimosus_A : A ; - ringa_F_N : N ; - ringor_V : V ; + rhinoceros_2_N : N ; -- [XAXCO] :: rhinoceros (African or Indian); rhinoceros horn oil-flask; + rho_N : N ; -- [XGXEC] :: Greek name of the letter R; + rhododendron_N_N : N ; -- [DAXNS] :: rose-bay; oleander (Pliny); + rhombus_M_N : N ; -- [XXXDX] :: turbot (fish), flatfish; magician's circle; + rhomium_N_N : N ; -- [GXXEK] :: rum; + rhomphaea_F_N : N ; -- [XWXCO] :: long spear/javelin; (Thracian origin); + rhypodes_A : A ; -- [XXXFO] :: dirty; smeared; (name of a plaster); + rhythmicus_A : A ; -- [XDXEO] :: rhythmic; of/concerned with rhythm; + rhythmicus_M_N : N ; -- [XDXEO] :: expert on (prose) rhythm; one who teaches rhythm; + rhythmos_M_N : N ; -- [XDXEC] :: rhythm; + rhythmus_M_N : N ; -- [XDXEC] :: rhythm; + rhytium_N_N : N ; -- [XXXEC] :: drinking horn; + ribes_F_N : N ; -- [GXXEK] :: currant-bush; + ribesium_N_N : N ; -- [GXXEK] :: currant; + rica_F_N : N ; -- [XXXEC] :: veil; + ricinium_N_N : N ; -- [XXXFS] :: small head-veil; + ricinum_N_N : N ; -- [XXXEC] :: small veil; + rictum_N_N : N ; -- [XXXDS] :: jaws; open mouth; + rictus_M_N : N ; -- [XXXDX] :: jaws; open mouth; + rideo_V : V ; -- [XXXAX] :: laugh at (with dat.), laugh; ridicule; + ridibundus_A : A ; -- [BXXFS] :: laughing; + ridica_F_N : N ; -- [XAXCO] :: wooden stake for supporting vines; + ridicula_F_N : N ; -- [XAXCO] :: small wooden stake for supporting vines; small vine prop; + ridiculare_N_N : N ; -- [XXXDS] :: jest, joke (as pl.); + ridicularius_A : A ; -- [XXXEC] :: laughable, droll; + ridicule_Adv : Adv ; -- [XXXDO] :: amusingly, w/humor; absurdly, laughably, ridiculously, in ridiculous manner; + ridiculum_Interj : Interj ; -- [XXXEO] :: the idea/question is absurd/ridiculous!; + ridiculum_N_N : N ; -- [XXXDO] :: joke, piece of humor; [per ridiculum => jockingly, for fun]; + ridiculus_A : A ; -- [XXXCO] :: laughable, funny, comic, amusing; absurd, silly, ridiculous; + ridiculus_M_N : N ; -- [XXXDO] :: jester; buffoon; + rienes_M_N : N ; -- [XBXEO] :: kidney(s) (usu. pl.); name of precious stone; (sg. rien not used L+S); + rigatio_F_N : N ; -- [XXXDS] :: watering; + rigens_A : A ; -- [DXXDS] :: stiff; rigid; frozen; + rigeo_V : V ; -- [XXXDX] :: be stiff or numb; stand on end; be solidified; + rigesco_V2 : V2 ; -- [XXXDX] :: grow stiff or numb; stiffen harden; + rigidus_A : A ; -- [XXXBX] :: stiff, hard; stern; rough; + rigo_V : V ; -- [XXXDX] :: moisten, wet, water, irrigate; + rigor_M_N : N ; -- [XXXDX] :: stiffness, rigidity, coldness, numbness, hardness; inflexibility; severity; + riguus_A : A ; -- [XXXDX] :: watering, irrigating; abounding in water, well watered; + rima_F_N : N ; -- [XXXDX] :: crack, narrow cleft; (sometimes rude); chink, fissure; [ignea ~ => lightening]; + rimor_V : V ; -- [XXXDX] :: probe, search; rummage about for, examine, explore; + rimosus_A : A ; -- [XXXDX] :: full of cracks or fissures; + ringa_F_N : N ; -- [FWXEM] :: sword-belt; ring; hoop; + ringor_V : V ; -- [XXXEC] :: snarl, show the teeth; be angry; 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 ; - riscus_M_N : N ; - risibilis_A : A ; - risor_M_N : N ; - risus_M_N : N ; - rite_Adv : Adv ; - ritual_N_N : N ; - ritualis_A : A ; - ritualiter_Adv : Adv ; - ritus_M_N : N ; - rivalis_M_N : N ; - rivalitas_F_N : N ; - rivulus_M_N : N ; - rivus_M_N : N ; - rixa_F_N : N ; - rixor_V : V ; - rixosus_A : A ; - robbo_V : V ; - roberia_F_N : N ; - robeus_A : A ; - robiginosus_A : A ; - robigo_F_N : N ; - robius_A : A ; - robor_N_N : N ; - roboreus_A : A ; - roboro_V : V ; - robotum_N_N : N ; - robur_N_N : N ; - robureus_A : A ; - robus_A : A ; - robus_N_N : N ; - robustus_A : A ; - rodo_V2 : V2 ; - rodus_N_N : N ; - rogalis_A : A ; - rogamen_N_N : N ; - rogatio_F_N : N ; - rogatiuncula_F_N : N ; - rogator_M_N : N ; - rogatorialis_A : A ; - rogito_V : V ; - rogo_V : V ; - rogus_M_N : N ; - romanciator_M_N : N ; - romanticus_A : A ; - romanus_A : A ; - romanus_M_N : N ; - romphea_F_N : N ; - rorarius_M_N : N ; - roridus_A : A ; - rorifer_A : A ; - roro_V : V ; - rorulentus_A : A ; - ros_M_N : N ; - rosa_F_N : N ; - rosaceus_A : A ; - rosacius_A : A ; - rosarium_N_N : N ; - rosarius_A : A ; - rosarius_M_N : N ; - roscidum_N_N : N ; - roscidus_A : A ; - rosetum_N_N : N ; - roseus_A : A ; - rosmarinus_M_N : N ; - rostratus_A : A ; - rostrum_N_N : N ; - rota_F_N : N ; - rotarium_N_N : N ; - rotatio_F_N : N ; - rotensus_A : A ; - roto_V : V ; - rotundatio_F_N : N ; - rotunditas_F_N : N ; - rotundo_V2 : V2 ; - rotundus_A : A ; - rubecula_F_N : N ; - rubefacio_V2 : V2 ; - rubellus_A : A ; - rubens_A : A ; - rubeo_V : V ; - ruber_A : A ; - rubesco_V2 : V2 ; - rubeta_F_N : N ; - rubetum_N_N : N ; - rubeus_A : A ; - rubia_F_N : N ; - rubicundulus_A : A ; - rubicundus_A : A ; - rubigo_F_N : N ; - rubinus_M_N : N ; - rubius_A : A ; - rubor_M_N : N ; - rubramentum_N_N : N ; - rubrica_F_N : N ; - rubricatus_A : A ; - rubus_M_N : N ; - rucheta_F_N : N ; - ructo_V : V ; - ructor_V : V ; - ructus_M_N : N ; - rudectus_A : A ; - rudens_M_N : N ; - rudiarius_M_N : N ; - rudicula_F_N : N ; - rudimentum_N_N : N ; - rudis_A : A ; - rudis_F_N : N ; - rudo_V2 : V2 ; - rudus_N_N : N ; - rufulus_A : A ; - rufus_A : A ; - ruga_F_N : N ; - rugio_V : V ; - rugo_V : V ; - rugosus_A : A ; - ruina_F_N : N ; - ruinosus_A : A ; - rumex_F_N : N ; - rumifico_V2 : V2 ; - ruminalis_A : A ; - rumino_V : V ; - ruminor_V : V ; - rumor_M_N : N ; - rumpia_F_N : N ; - rumpo_V2 : V2 ; - rumusculus_M_N : N ; - runa_F_N : N ; - runcina_F_N : N ; - runcino_V2 : V2 ; - runco_V2 : V2 ; - ruo_V2 : V2 ; - rupes_F_N : N ; - ruptor_M_N : N ; - ruricola_C_N : N ; - rurigena_M_N : N ; - ruro_V : V ; - ruror_V : V ; - rursum_Adv : Adv ; - rursus_Adv : Adv ; - rus_N_N : N ; - rusceus_A : A ; - ruscum_N_N : N ; - ruscus_M_N : N ; - russula_F_N : N ; - russus_A : A ; - rustica_F_N : N ; - rusticanus_A : A ; - rusticatio_F_N : N ; - rustice_Adv : Adv ; - rusticitas_F_N : N ; - rusticor_V : V ; - rusticulus_A : A ; - rusticulus_M_N : N ; - rusticus_A : A ; - rusticus_M_N : N ; - rustum_N_N : N ; - ruta_F_N : N ; - rutabulum_N_N : N ; - rutilo_V : V ; - rutilus_A : A ; - rutrum_N_N : N ; - rutula_F_N : N ; - rutunditas_F_N : N ; - rutundo_V2 : V2 ; - rutundus_A : A ; - rutus_A : A ; - rythmicus_A : A ; - sabacthani_V : V ; - sabath_N : N ; - sabbataria_F_N : N ; - sabbatismus_M_N : N ; - sabbatizo_V : V ; - sabbatum_N_N : N ; - sabucus_M_N : N ; - sabulum_N_N : N ; - saburra_F_N : N ; - saccatum_N_N : N ; - saccharatus_A : A ; - saccharinum_N_N : N ; - saccharum_N_N : N ; - sacciperium_N_N : N ; - sacco_V2 : V2 ; - sacculus_M_N : N ; - saccus_M_N : N ; - sacellum_N_N : N ; - sacer_A : A ; + rinoceros_2_N : N ; -- [XAXCO] :: rhinoceros (African or Indian); rhinoceros horn oil-flask; + ripa_F_N : N ; -- [XXXAX] :: bank; + ripensis_A : A ; -- [EXXFS] :: on river-bank; + ripula_F_N : N ; -- [XXXEC] :: little bank; + riscus_M_N : N ; -- [XXXEC] :: chest, trunk; box; suitcase (Cas); + risibilis_A : A ; -- [FXXES] :: that can laugh; risible; + risor_M_N : N ; -- [XXXDX] :: one who laughs; + risus_M_N : N ; -- [XXXDX] :: laughter; + rite_Adv : Adv ; -- [XXXBX] :: duly, according to religious usage, with due observance; solemnly; well; + ritual_N_N : N ; -- [XEXES] :: ceremonial rite; + ritualis_A : A ; -- [XEXES] :: ritual; of ceremonies; + ritualiter_Adv : Adv ; -- [XEXFS] :: ritually; by religious means; + ritus_M_N : N ; -- [XXXBX] :: rite; ceremony; + rivalis_M_N : N ; -- [XXXCO] :: rival; (esp. in love); one who shares use of a stream/mistress; neighbor (L+S); + rivalitas_F_N : N ; -- [XXXDS] :: rivalry in love; + rivulus_M_N : N ; -- [XXXES] :: rivulet, rill, small brook; + rivus_M_N : N ; -- [XXXBX] :: stream; + rixa_F_N : N ; -- [XXXDX] :: violent or noisy quarrel, brawl, dispute; + rixor_V : V ; -- [XXXDX] :: quarrel violently, brawl, dispute; + rixosus_A : A ; -- [XXXFS] :: quarrelsome; + robbo_V : V ; -- [FLXFJ] :: rob; + roberia_F_N : N ; -- [FLXFJ] :: robbery; + robeus_A : A ; -- [XAXCO] :: red (esp. of oxen/domestic animals); red (type of wheat, other contexts); + robiginosus_A : A ; -- [XXXEC] :: rusty; + robigo_F_N : N ; -- [XXXDX] :: rust; mildew, blight; a foul deposit in the mouth; + robius_A : A ; -- [XAXCO] :: red (esp. of oxen/domestic animals); red (type of wheat, other contexts); + robor_N_N : N ; -- [XAXFO] :: oak (tree/timber); tough core; strength; vigor; resolve; + roboreus_A : A ; -- [XXXCO] :: oak-, oaken, made/consisting of oak; + roboro_V : V ; -- [XXXDX] :: give physical/moral strength to; reinforce; strengthen, make more effective; + robotum_N_N : N ; -- [GTXEK] :: robot; + robur_N_N : N ; -- [XXXAO] :: |||mainstay/bulwark, source of strength; stronghold, position of strength; + robureus_A : A ; -- [XXXCO] :: oak-, oaken, made/consisting of oak; + robus_A : A ; -- [XAXEO] :: red (esp. of oxen/domestic animals); red (type of wheat, other contexts); + robus_N_N : N ; -- [AXXAO] :: |||mainstay/bulwark, source of strength; stronghold, position of strength; + robustus_A : A ; -- [XXXAO] :: |physically mature/grown up; mature in taste/judgment; strong/powerful in arms; + rodo_V2 : V2 ; -- [XXXDX] :: gnaw, peck; + rodus_N_N : N ; -- [XXXCO] :: lump, rough piece; piece of bronze, (sometimes a bronze coin); + rogalis_A : A ; -- [XXXDX] :: of a funeral pyre; + rogamen_N_N : N ; -- [FXXFM] :: request; + rogatio_F_N : N ; -- [XXXDX] :: proposed measure; + rogatiuncula_F_N : N ; -- [XXXEC] :: minor question or bill; + rogator_M_N : N ; -- [XXXDS] :: proposer; L:law-proposer; polling clerk; beggar; + rogatorialis_A : A ; -- [GXXEK] :: rogatory, commision authorizing judge of other jurisdiction to examine witness;; + rogito_V : V ; -- [XXXDX] :: ask, inquire; + rogo_V : V ; -- [XXXAX] :: ask, ask for; invite; introduce; + rogus_M_N : N ; -- [XXXAX] :: funeral pyre; + romanciator_M_N : N ; -- [GXXEK] :: novelist; + romanticus_A : A ; -- [GXXEK] :: romantic; + romanus_A : A ; -- [XXXAX] :: Roman; + romanus_M_N : N ; -- [XXXBX] :: Roman; the Romans (pl.); + romphea_F_N : N ; -- [EWXCW] :: long spear/javelin; (Thracian origin); + rorarius_M_N : N ; -- [XXXEC] :: light-armed troops (pl.), skirmishers; + roridus_A : A ; -- [XXXEC] :: bedewed; + rorifer_A : A ; -- [XXXDX] :: bringing dew; + roro_V : V ; -- [XXXDX] :: cause dew, drip; be moist; + rorulentus_A : A ; -- [XXXFS] :: dewy; full of dew; + ros_M_N : N ; -- [XXXBO] :: dew; light rain; spray/splash water; [ros marinus/maris => rosemary]; + rosa_F_N : N ; -- [XXXBO] :: rose; (also as term of endearment); rose bush; rose oil; + rosaceus_A : A ; -- [XAXCO] :: rose-, made of/from roses; made with rose oil; [oleum ~ => oil of roses]; + rosacius_A : A ; -- [XAXIO] :: rose-, made of/from roses; made with rose oil; [oleum ~ => oil of roses]; + rosarium_N_N : N ; -- [GXXEK] :: rosary; + rosarius_A : A ; -- [XAXEO] :: rose-, involving/of/derived from roses; + rosarius_M_N : N ; -- [XXXIO] :: rose-seller, seller of roses or rose garlands; + roscidum_N_N : N ; -- [XXXFO] :: wet/dewy places (pl.); + roscidus_A : A ; -- [XXXBO] :: dewy, wet w/dew; consisting of dew; wet, dripping w/moisture; resembling dew; + rosetum_N_N : N ; -- [XXXDX] :: garden of roses; + roseus_A : A ; -- [XXXBO] :: rose-colored, red; (of sky/sun); made of roses; + rosmarinus_M_N : N ; -- [FXXEK] :: rosemary; + rostratus_A : A ; -- [XXXDX] :: having beaked prow; + rostrum_N_N : N ; -- [XXXBX] :: beak, curved bow (of a ship); speaker's platform (in Rome's Forum) (pl.); + rota_F_N : N ; -- [XXXBX] :: wheel (rotate); + rotarium_N_N : N ; -- [FXXEK] :: toll (freeway); + rotatio_F_N : N ; -- [GXXEK] :: rotation; pirouette; + rotensus_A : A ; -- [FXXEN] :: extensive; + roto_V : V ; -- [XXXDX] :: whirl round; revolve, rotate; + rotundatio_F_N : N ; -- [XXXES] :: rounding; circumference; + rotunditas_F_N : N ; -- [XXXDO] :: roundness of form; rotundity (L+S); + rotundo_V2 : V2 ; -- [XXXCO] :: make round, give circular/spherical shape to; round off (sum); + rotundus_A : A ; -- [XXXAO] :: round, circular; wheel-like; spherical, globular; smooth, finished; facile; + rubecula_F_N : N ; -- [GXXEK] :: robin; + rubefacio_V2 : V2 ; -- [XXXDX] :: redden; + rubellus_A : A ; -- [XXXEC] :: reddish; + rubens_A : A ; -- [XXXDX] :: colored or tinged with red; + rubeo_V : V ; -- [XXXBX] :: be red, become red; + ruber_A : A ; -- [XXXBX] :: red, ruddy, painted red; [Rubrum Mare => Red Sea, Arabian/Persian Gulf]; + rubesco_V2 : V2 ; -- [XXXDX] :: turn red, redden, become red; + rubeta_F_N : N ; -- [XXXDX] :: toad; + rubetum_N_N : N ; -- [XXXDX] :: bramble thicket (pl.); + rubeus_A : A ; -- [XAXDO] :: red (esp. of oxen/domestic animals); red (type of wheat, other contexts); + rubia_F_N : N ; -- [XXXDX] :: red dye; + rubicundulus_A : A ; -- [XXXFS] :: somewhat red; + rubicundus_A : A ; -- [XXXDX] :: suffused with red, ruddy; + rubigo_F_N : N ; -- [XXXDX] :: rust; mildew, blight; a foul deposit in the mouth; + rubinus_M_N : N ; -- [GXXEK] :: ruby; + rubius_A : A ; -- [XAXDO] :: red (esp. of oxen/domestic animals); red (type of wheat, other contexts); + rubor_M_N : N ; -- [XXXAO] :: redness, blush; modesty, capacity to blush; shame, disgrace, what causes blush; + rubramentum_N_N : N ; -- [GXXEK] :: red ink; + rubrica_F_N : N ; -- [XXXEC] :: red earth; red ocher; a law with its title written in red; + rubricatus_A : A ; -- [XLXEO] :: red, painted red with ocher; (books) with chapter headings on red (i.e., legal); + rubus_M_N : N ; -- [XAXCO] :: bramble, briar; prickly shrub; fruit of bramble, blackberry; + rucheta_F_N : N ; -- [GTXEK] :: rocket; + ructo_V : V ; -- [XXXEC] :: belch; + ructor_V : V ; -- [XXXEC] :: belch; + ructus_M_N : N ; -- [XXXEC] :: belching; + rudectus_A : A ; -- [XXXFS] :: full-of-rubbish; poor (of soil); + rudens_M_N : N ; -- [XXXDX] :: rope; + rudiarius_M_N : N ; -- [XXXFO] :: retired gladiator; (one who has received his rudis/wooden sword on retiring); + rudicula_F_N : N ; -- [XXXFS] :: wooden spoon; spatula; + rudimentum_N_N : N ; -- [XXXDX] :: first lesson(s); early training; + rudis_A : A ; -- [XXXBX] :: undeveloped, rough, wild; coarse; + rudis_F_N : N ; -- [XWXBS] :: |staff; foil; instructor's baton; symbol of gladiator/military discharge; + rudo_V2 : V2 ; -- [XXXDX] :: bellow, roar, bray, creak loudly; + rudus_N_N : N ; -- [XXXCO] :: lump, rough piece; piece of bronze, (sometimes a bronze coin); + rufulus_A : A ; -- [XXXDS] :: red-headed; + rufus_A : A ; -- [XXXCO] :: red (of various shades); (esp. hair); red-haired; tawny; ruddy; + ruga_F_N : N ; -- [XXXDX] :: wrinkle; crease, small fold; + rugio_V : V ; -- [XXXFO] :: bellow, roar; + rugo_V : V ; -- [XXXES] :: wrinkle, crease; corrugate; become wrinkled/rumpled/creased; + rugosus_A : A ; -- [XXXDX] :: full of wrinkles, folds or creases; + ruina_F_N : N ; -- [XXXBX] :: fall; catastrophe; collapse, destruction; + ruinosus_A : A ; -- [XXXDX] :: ruinous, fallen, ruined; + rumex_F_N : N ; -- [XAXEC] :: sorrel; + rumifico_V2 : V2 ; -- [BXXFS] :: report; + ruminalis_A : A ; -- [FAXNS] :: ruminating (Pliny); + rumino_V : V ; -- [XXXDX] :: chew over again; chew the cud; + ruminor_V : V ; -- [XXXDX] :: chew over again; chew the cud; + rumor_M_N : N ; -- [XXXBX] :: hearsay, rumor, gossip; reputation; shouting; + rumpia_F_N : N ; -- [XWXCO] :: long spear/javelin; (Thracian origin); + rumpo_V2 : V2 ; -- [XXXAX] :: break; destroy; + rumusculus_M_N : N ; -- [XXXEC] :: trifling rumor, idle talk, gossip; + runa_F_N : N ; -- [XWXEC] :: dart; + runcina_F_N : N ; -- [XXXNO] :: carpenter's plane; + runcino_V2 : V2 ; -- [XXXFO] :: plane (as a carpenter); + runco_V2 : V2 ; -- [XAXEC] :: weed, thin out; + ruo_V2 : V2 ; -- [XXXAX] :: destroy, ruin, overthrow; rush on, run; fall; charge (in + ACC); be ruined; + rupes_F_N : N ; -- [XXXBX] :: cliff; rock; + ruptor_M_N : N ; -- [XXXDX] :: one who breaks or violates; + ruricola_C_N : N ; -- [XXXDX] :: one who tills the land, country-dweller; + rurigena_M_N : N ; -- [XXXDX] :: born in the country; + ruro_V : V ; -- [XAXEC] :: live in the country; + ruror_V : V ; -- [XAXEC] :: live in the country; + rursum_Adv : Adv ; -- [XXXDX] :: turned back, backward; on the contrary/other hand, in return, in turn, again; + rursus_Adv : Adv ; -- [XXXAX] :: turned back, backward; on the contrary/other hand, in return, in turn, again; + rus_N_N : N ; -- [XXXAX] :: country, farm; + rusceus_A : A ; -- [XXXFO] :: bright red, colored like berries of butcher's broom (Ruscus aculeatus); + ruscum_N_N : N ; -- [XAXDO] :: butcher's broom; (Ruscus aculeatus, shrub w/stems flat/oval w/sharp spine); + ruscus_M_N : N ; -- [XAXDO] :: butcher's broom; (Ruscus aculeatus, shrub w/stems flat/oval w/sharp spine); + russula_F_N : N ; -- [GXXEK] :: russule mushroom; + russus_A : A ; -- [XXXDO] :: red; (warm/brownish shade); red-haired (person); + rustica_F_N : N ; -- [XXXDX] :: countrywoman, bumpkin; + rusticanus_A : A ; -- [XXXDX] :: living in the country; + rusticatio_F_N : N ; -- [XAXEC] :: living in the country; + rustice_Adv : Adv ; -- [XXXDX] :: in the manner of a rustic/countrified style; clumsily, uncouthly, boorishly; + rusticitas_F_N : N ; -- [XXXDX] :: lack of sophistication; + rusticor_V : V ; -- [XAXEC] :: live in the country; + rusticulus_A : A ; -- [XAXEC] :: countrified; + rusticulus_M_N : N ; -- [XAXEC] :: rustic; + rusticus_A : A ; -- [XXXAX] :: country, rural; plain, homely, rustic; + rusticus_M_N : N ; -- [XXXDX] :: peasant, farmer; + rustum_N_N : N ; -- [XAXEO] :: butcher's broom; (Ruscus aculeatus, shrub w/stems flat/oval w/sharp spine); + ruta_F_N : N ; -- [XXXDX] :: rue, a bitter herb; + rutabulum_N_N : N ; -- [XXXDO] :: rod with flat end; (for shifting coal in oven); (stirring thick liquid); penis; + rutilo_V : V ; -- [XXXDX] :: redden, make reddish; have a reddish glow; + rutilus_A : A ; -- [XXXBX] :: red, golden red, reddish yellow; + rutrum_N_N : N ; -- [XXXDX] :: shovel; + rutula_F_N : N ; -- [XAXEC] :: little bit of rue; + rutunditas_F_N : N ; -- [XXXDO] :: roundness of form; rotundity (L+S); + rutundo_V2 : V2 ; -- [XXXCO] :: make round, give circular/spherical shape to; round off (sum); + rutundus_A : A ; -- [XXXAO] :: round, circular; wheel-like; spherical, globular; smooth, finished; facile; + rutus_A : A ; -- [ELXDS] :: dug-up; (ruta et caesa = everything dug up and cut down on an estate); + rythmicus_A : A ; -- [XDXEO] :: rhythmic; of/concerned with rhythm; + sabacthani_V : V ; -- [EEQFW] :: forsaken; [Heli Heli lemma ~ => My God, my God why hast thou forsaken me]; + sabath_N : N ; -- [EXQEW] :: Shebat, Jewish month; (eleventh in ecclesiastic year); + sabbataria_F_N : N ; -- [XEXFO] :: woman who keeps the sabbath; Jewish woman; + sabbatismus_M_N : N ; -- [EEXES] :: observing/keeping of the sabbath; + sabbatizo_V : V ; -- [EEXES] :: observe/keep the sabbath; + sabbatum_N_N : N ; -- [XEXBO] :: Sabbath (usu. pl.); Saturday (Jewish); Sunday (Christian); festival/feast day; + sabucus_M_N : N ; -- [XDXES] :: sambuca-player; (triangular stringed instrument w/very sharp shrill tone OED); + sabulum_N_N : N ; -- [XXXEC] :: gravel, sand; + saburra_F_N : N ; -- [XXXBX] :: gravel/sand (used for ballast); + saccatum_N_N : N ; -- [XXXFS] :: urine; + saccharatus_A : A ; -- [GXXEK] :: sweetened; + saccharinum_N_N : N ; -- [GXXEK] :: saccharin; + saccharum_N_N : N ; -- [GXXEK] :: sugar; + sacciperium_N_N : N ; -- [XXXEK] :: bag; + sacco_V2 : V2 ; -- [XXXDS] :: filter; strain; + sacculus_M_N : N ; -- [XXXDX] :: little bag (as a filter for wine); purse; sachet (Cal); + saccus_M_N : N ; -- [XXXBX] :: sack, bag; wallet; + sacellum_N_N : N ; -- [XEXDX] :: shrine; + sacer_A : A ; -- [XEXAX] :: sacred, holy, consecrated; accursed, horrible, detestable; sacerdos_F_N : N ; -- [XEXAX] :: priest, priestess; - sacerdos_M_N : N ; - sacerdotalis_A : A ; - sacerdotalis_M_N : N ; - sacerdotialis_A : A ; - sacerdotium_N_N : N ; - sacoma_N_N : N ; - sacopenium_N_N : N ; - sacramentarium_N_N : N ; - sacramentum_N_N : N ; - sacrarium_N_N : N ; - sacratus_A : A ; - sacricola_C_N : N ; - sacrifer_A : A ; - sacrificium_N_N : N ; - sacrifico_V : V ; - sacrificulus_M_N : N ; - sacrificum_N_N : N ; - sacrificus_A : A ; - sacrificus_M_N : N ; - sacrilegium_N_N : N ; - sacrilegus_A : A ; - sacrilegus_M_N : N ; - sacrista_C_N : N ; - sacristanus_M_N : N ; - sacristia_F_N : N ; - sacro_V : V ; - sacrosanctus_A : A ; - sacrum_N_N : N ; - sade_N : N ; - saeclaris_A : A ; - saeclum_N_N : N ; - saecularis_A : A ; - saeculum_N_N : N ; - saepe_Adv : Adv ; - saepenumero_Adv : Adv ; - saepes_F_N : N ; - saepicule_Adv : Adv ; - saepimentum_N_N : N ; - saepio_V2 : V2 ; - saeps_F_N : N ; - saeptum_N_N : N ; - saeta_F_N : N ; - saetiger_A : A ; - saetosus_A : A ; - saevidicus_A : A ; - saevio_V : V ; - saevitia_F_N : N ; - saevus_A : A ; - saffranum_N_N : N ; - saga_F_N : N ; - sagacitas_F_N : N ; - sagapenon_N_N : N ; - sagatus_A : A ; - sagax_A : A ; - sagena_F_N : N ; - sagino_V2 : V2 ; - sagitta_F_N : N ; - sagittarius_A : A ; - sagittarius_M_N : N ; - sagittatio_F_N : N ; - sagittatus_A : A ; - sagittifer_A : A ; - sagitto_V : V ; - sagma_F_N : N ; - sagmen_N_N : N ; - sagulum_N_N : N ; - sagum_N_N : N ; - sagus_A : A ; - saisimentum_N_N : N ; - sal_M_N : N ; - salacaccabium_N_N : N ; - salaco_M_N : N ; - salaputium_N_N : N ; - salariarius_M_N : N ; - salarium_N_N : N ; - salarius_A : A ; - salax_A : A ; - salebra_F_N : N ; - salebrosus_A : A ; - salgamum_N_N : N ; - saliaris_A : A ; - salictum_N_N : N ; - saliens_F_N : N ; - saligneus_A : A ; - salignus_A : A ; - salillum_N_N : N ; - salina_F_N : N ; - salinum_N_N : N ; - salio_V2 : V2 ; - saliunca_F_N : N ; - saliva_F_N : N ; - salix_F_N : N ; - sallio_V2 : V2 ; - sallo_V2 : V2 ; - salmoneus_A : A ; - salo_V2 : V2 ; - salpa_F_N : N ; - salsamentum_N_N : N ; - salsedo_F_N : N ; - salsugo_F_N : N ; - salsum_N_N : N ; - salsura_F_N : N ; - salsus_A : A ; - saltatio_F_N : N ; - saltatiuncula_F_N : N ; - saltator_M_N : N ; - saltatorius_A : A ; - saltatricula_F_N : N ; - saltatrix_F_N : N ; - saltatus_M_N : N ; - saltem_Adv : Adv ; - saltim_Adv : Adv ; - saltito_V2 : V2 ; - salto_V : V ; - saltuosus_A : A ; - saltus_M_N : N ; - saluber_A : A ; - salubritas_F_N : N ; - salubriter_Adv : Adv ; - salum_N_N : N ; - salus_F_N : N ; - salutare_N_N : N ; - salutaris_A : A ; - salutatio_F_N : N ; - salutator_M_N : N ; - salutatrix_F_N : N ; - salutifer_A : A ; - salutificator_M_N : N ; - salutigerulus_A : A ; - saluto_V : V ; - salvatio_F_N : N ; - salvator_M_N : N ; - salve_Adv : Adv ; - salveo_V : V ; - salvia_F_N : N ; - salvifico_V2 : V2 ; - salvificus_A : A ; - salvo_V : V ; - salvus_A : A ; - sambuca_F_N : N ; - sambucistria_F_N : N ; - sambucus_M_N : N ; - samech_N : N ; - samera_F_N : N ; - sampsuchum_N_N : N ; - sampsucum_N_N : N ; - sanabilis_A : A ; - sanatorium_N_N : N ; - sancio_V2 : V2 ; - sanctificatio_F_N : N ; - sanctifico_V : V ; - sanctimonia_F_N : N ; - sanctimonialis_A : A ; - sanctimonialis_F_N : N ; - sanctio_F_N : N ; - sanctitas_F_N : N ; - sanctitudo_F_N : N ; - sanctor_M_N : N ; - sanctuarium_N_N : N ; - sanctus_A : A ; - sanctus_M_N : N ; - sandaliarius_A : A ; - sandaligerula_F_N : N ; - sandalium_N_N : N ; - sandapila_F_N : N ; - sandyx_F_N : N ; - sane_Adv : Adv ; - sanesco_V : V ; - sanguinans_A : A ; - sanguinarius_A : A ; - sanguineus_A : A ; - sanguinolentus_A : A ; - sanguinulentus_A : A ; - sanguis_M_N : N ; - sanguisuga_F_N : N ; - sanies_F_N : N ; - sanitarius_A : A ; - sanitas_F_N : N ; - sanna_F_N : N ; - sannio_M_N : N ; - sano_V : V ; - sanqualis_A : A ; - sanus_A : A ; - sapa_F_N : N ; - sapidus_A : A ; - sapiencia_F_N : N ; - sapiens_A : A ; - sapiens_M_N : N ; - sapienter_Adv : Adv ; - sapientia_F_N : N ; - sapineus_A : A ; - sapinus_F_N : N ; - sapio_V2 : V2 ; - sapo_M_N : N ; - saponatum_N_N : N ; - sapor_M_N : N ; - sapphir_F_N : N ; - sapphirus_F_N : N ; - sapphyrus_F_N : N ; - sappir_F_N : N ; - sappirus_F_N : N ; - sarabala_F_N : N ; - saraballa_F_N : N ; - saraballum_N_N : N ; - sarabalum_N_N : N ; - sarabara_F_N : N ; - sarabarum_N_N : N ; - sarcasmos_M_N : N ; - sarcina_F_N : N ; - sarcinarius_A : A ; - sarcinator_M_N : N ; - sarcinula_F_N : N ; - sarcio_V2 : V2 ; - sarcophagus_M_N : N ; - sarculum_N_N : N ; - sardina_F_N : N ; - sardinus_A : A ; - sardius_A : A ; - sardius_M_N : N ; - sardonichus_A : A ; - sardonicus_C_N : N ; + sacerdos_M_N : N ; -- [XEXAX] :: priest, priestess; + sacerdotalis_A : A ; -- [XEXEO] :: priestly, connected with priests or priesthood; + sacerdotalis_M_N : N ; -- [XEXFO] :: priests (pl.), men of priestly rank; + sacerdotialis_A : A ; -- [XEXIO] :: priestly, connected with priests or priesthood; + sacerdotium_N_N : N ; -- [XEXDX] :: priesthood; benefice/living (Erasmus); + sacoma_N_N : N ; -- [FXXEK] :: counterweight; + sacopenium_N_N : N ; -- [XAXFS] :: plant gum-juice (Pliny); + sacramentarium_N_N : N ; -- [FEXEE] :: sacramentary, book of prayers; early office-book w/rites/prayers of sacraments; + sacramentum_N_N : N ; -- [XXXDX] :: sum deposited in a civil process, guaranty; oath of allegiance; sacrament; + sacrarium_N_N : N ; -- [XEXDX] :: shrine, sanctuary; + sacratus_A : A ; -- [XEXDX] :: hallowed, holy, sacred; + sacricola_C_N : N ; -- [XEXEC] :: sacrificing priest or priestess; + sacrifer_A : A ; -- [XEXDX] :: carrying sacred objects; + sacrificium_N_N : N ; -- [XEXBX] :: sacrifice, offering to a deity; + sacrifico_V : V ; -- [XEXDX] :: sacrifice; celebrate the Mass (Erasmus); + sacrificulus_M_N : N ; -- [XEXDX] :: sacrificing priest; + sacrificum_N_N : N ; -- [XEXDX] :: sacrifice, offering to a deity; + sacrificus_A : A ; -- [XEXDX] :: sacrificial, associated with the performance of sacrifice/priestly duties; + sacrificus_M_N : N ; -- [FEXDX] :: sacrificing priest; + sacrilegium_N_N : N ; -- [XEXDX] :: sacrilege; robbery of sacred property; + sacrilegus_A : A ; -- [XEXDX] :: sacrilegious, impious; + sacrilegus_M_N : N ; -- [XXXDS] :: temple defiler; temple robber; + sacrista_C_N : N ; -- [EEXBE] :: sacristan (one charged with books/treasury of church/monastery); vestryman; + sacristanus_M_N : N ; -- [EEXCE] :: sacristan (one charged with books/treasury of church/monastery); vestryman; + sacristia_F_N : N ; -- [GEXEK] :: vestry; + sacro_V : V ; -- [XEXBX] :: consecrate, make sacred, dedicate; + sacrosanctus_A : A ; -- [XEXDX] :: consecrated by religious ceremony, sacred, inviolable, most holy; venerable; + sacrum_N_N : N ; -- [XEXDX] :: sacrifice; sacred vessel; religious rites (pl.); + sade_N : N ; -- [DEQEW] :: sade; (18th letter of Hebrew alphabet); (transliterate as TS); + saeclaris_A : A ; -- [CXXEO] :: of/belonging to saeculum/century/generation; of Roman century games/hymns; + saeclum_N_N : N ; -- [XXXCO] :: age; generation, people born at a time; breed, race; present time/age; century; + saecularis_A : A ; -- [DEXBS] :: secular, of world not church; ecclesiastics not member of order (Bee); gentile; + saeculum_N_N : N ; -- [EEXDR] :: |time; past/present/future (Plater); [in ~ => forever]; + saepe_Adv : Adv ; -- [XXXAX] :: often, oft, oftimes, many times, frequently; + saepenumero_Adv : Adv ; -- [XXXDX] :: repeatedly; on many occasions; + saepes_F_N : N ; -- [XXXCO] :: hedge; fence; anything planted/erected to form surrounding barrier; + saepicule_Adv : Adv ; -- [XXXES] :: pretty often; + saepimentum_N_N : N ; -- [XXXDX] :: fence, enclosure; + saepio_V2 : V2 ; -- [XXXAO] :: |hedge/fence in, surround (w/hedge/wall/fence/barrier/troops); enclose; confine; + saeps_F_N : N ; -- [XXXFO] :: hedge; fence; anything planted/erected to form surrounding barrier; + saeptum_N_N : N ; -- [XXXDX] :: fold, paddock; enclosure; voting enclosure in the Campus Martius; + saeta_F_N : N ; -- [XXXCO] :: hair; (coarse/stiff); bristle; brush; morbid internal growth; fishing-leader; + saetiger_A : A ; -- [XXXDX] :: bristly; + saetosus_A : A ; -- [XXXDX] :: bristly, shaggy; + saevidicus_A : A ; -- [XXXEC] :: angrily spoken; + saevio_V : V ; -- [XXXBO] :: rage; rave, bluster; be/act angry/violent/ferocious; vent rage on (DAT); + saevitia_F_N : N ; -- [XXXDX] :: rage, fierceness, ferocity; cruelty, barbarity, violence; + saevus_A : A ; -- [XXXAO] :: savage; fierce/ferocious; violent/wild/raging; cruel, harsh, severe; vehement; + saffranum_N_N : N ; -- [FAXFM] :: saffron; + saga_F_N : N ; -- [XXXDX] :: witch, sorceress, wise woman; + sagacitas_F_N : N ; -- [XXXCO] :: keenness (of scent/senses); acuteness/instinct/flair; sagacity/shrewdness (L+S); + sagapenon_N_N : N ; -- [XAXFS] :: plant gum-juice (Pliny); + sagatus_A : A ; -- [XXXEC] :: clothed in a sagum (cloak); + sagax_A : A ; -- [XXXBX] :: keen-scented; acute, sharp, perceptive; + sagena_F_N : N ; -- [XXXFO] :: seine, drag-net; + sagino_V2 : V2 ; -- [XAXCO] :: fatten (animals) for eating; feed lavishly, stuff; + sagitta_F_N : N ; -- [XWXAX] :: arrow; + sagittarius_A : A ; -- [XWXCO] :: armed with bow/arrows; used in/concerned with making/manufacturing arrows; + sagittarius_M_N : N ; -- [XWXCO] :: archer, bowman; fletcher, maker of arrows; Archer (constellation/zodiac sign); + sagittatio_F_N : N ; -- [GXXEK] :: archery; + sagittatus_A : A ; -- [XWXFO] :: barbed; formed like arrows; + sagittifer_A : A ; -- [XXXDX] :: carrying arrows; + sagitto_V : V ; -- [XWXEC] :: shoot arrows; + sagma_F_N : N ; -- [EXXES] :: saddle; + sagmen_N_N : N ; -- [XEXEC] :: bunch of sacred herbs; + sagulum_N_N : N ; -- [XXXDX] :: cloak, traveling cloak; + sagum_N_N : N ; -- [XXXDX] :: cloak; + sagus_A : A ; -- [XXXDS] :: prophetic; + saisimentum_N_N : N ; -- [FXXFY] :: attachment; seizure; requisition; transfer; + sal_M_N : N ; -- [XXXBX] :: salt; wit; + salacaccabium_N_N : N ; -- [FXXEK] :: salting; + salaco_M_N : N ; -- [XXXEC] :: swaggerer, braggart; + salaputium_N_N : N ; -- [XXXEC] :: little man, manikin; + salariarius_M_N : N ; -- [GXXEK] :: salaried employee; + salarium_N_N : N ; -- [XXXDX] :: regular official payment to the holder of a civil or military post; + salarius_A : A ; -- [XXXDX] :: of salt, salt; + salax_A : A ; -- [XBXCO] :: lecherous/lustful; highly sexed, eager for sex, lascivious; aphrodisiac; hot; + salebra_F_N : N ; -- [XXXDX] :: rut, irregularity; roughness (of style or speech); + salebrosus_A : A ; -- [XXXEC] :: rugged, rough; + salgamum_N_N : N ; -- [XXXES] :: salted pickle; pickles in brine; + saliaris_A : A ; -- [XXXFS] :: sumptuous, splendid, like feast of Mars (put on by Salii/priests of Mars); + salictum_N_N : N ; -- [XXXDX] :: collection of willows, willow grove; + saliens_F_N : N ; -- [XXXDX] :: fountain, jet d'eau; outflow (of water); flow in water-clock; gushing/spouting; + saligneus_A : A ; -- [XAXCO] :: made of willow-wood/withes; willow-; + salignus_A : A ; -- [XAXCO] :: made of willow-wood/withes; willow-; + salillum_N_N : N ; -- [XXXDX] :: little salt-cellar; saltcellar (Cal); + salina_F_N : N ; -- [XXXDX] :: salt-pans (pl.); + salinum_N_N : N ; -- [XXXDX] :: salt-cellar; + salio_V2 : V2 ; -- [XXXBO] :: |spurt, discharge, be ejected under force (water/fluid); mount/cover (by stud); + saliunca_F_N : N ; -- [XAXEC] :: wild nard; plant yielding aromatic ointment; + saliva_F_N : N ; -- [XXXDX] :: spittle; distinctive flavor; + salix_F_N : N ; -- [XXXDX] :: willow-tree, willow; + sallio_V2 : V2 ; -- [XXXDO] :: salt, salt down, preserve with salt; sprinkle before sacrifice; + sallo_V2 : V2 ; -- [XXXDS] :: salt, salt down, preserve with salt; sprinkle before sacrifice; + salmoneus_A : A ; -- [GXXEK] :: salmon-colored; + salo_V2 : V2 ; -- [XXXDS] :: salt, salt down, preserve with salt; sprinkle before sacrifice; + salpa_F_N : N ; -- [XAXEC] :: kind of stock-fish; + salsamentum_N_N : N ; -- [XXXEC] :: fish-pickle, brine; salted or pickled fish; + salsedo_F_N : N ; -- [XXXFS] :: saltiness (Pliny); + salsugo_F_N : N ; -- [XXXDO] :: brine, water full of salt; salinity, salt quality; + salsum_N_N : N ; -- [XXXFS] :: salted things (pl.); salted food; + salsura_F_N : N ; -- [XXXEC] :: salting, pickling; + salsus_A : A ; -- [XXXBO] :: salted, salty, preserved in salt; briny; witty, funny, salted wit humor; + saltatio_F_N : N ; -- [XDXEZ] :: dancing; dance (Collins); + saltatiuncula_F_N : N ; -- [DDXFS] :: little dance; + saltator_M_N : N ; -- [XXXDX] :: dancer; + saltatorius_A : A ; -- [XDXDS] :: dancing-; of dancing; + saltatricula_F_N : N ; -- [DDXFS] :: little dancing girl; + saltatrix_F_N : N ; -- [XXXDX] :: dancing girl; + saltatus_M_N : N ; -- [XXXDX] :: dancing, a dance; + saltem_Adv : Adv ; -- [XXXBO] :: at least, anyhow, in all events; (on to more practical idea); even, so much as; + saltim_Adv : Adv ; -- [XXXCO] :: at least, anyhow, in all events; (on to more practical idea); even, so much as; + saltito_V2 : V2 ; -- [DXXFS] :: dance a lot; dance vigorously; + salto_V : V ; -- [XXXDX] :: dance, jump; portray or represent in a dance; + saltuosus_A : A ; -- [XXXDX] :: characterized by wooded valleys; + saltus_M_N : N ; -- [XXXAO] :: narrow passage (forest/mountain); defile, pass; woodland with glades (pl.); + saluber_A : A ; -- [XXXBO] :: healthy, salubrious; salutary, beneficial; in good condition (body); wholesome; + salubritas_F_N : N ; -- [XXXDX] :: good health; wholesomeness; + salubriter_Adv : Adv ; -- [XXXCO] :: wholesomely, w/advantage to health; beneficially, profitably; cheaply; + salum_N_N : N ; -- [XXXDX] :: open sea, high sea, main, deep, ocean; sea in motion, billow, waves; + salus_F_N : N ; -- [XXXAX] :: health; prosperity; good wish; greeting; salvation, safety; + salutare_N_N : N ; -- [EEXDX] :: salvation; + salutaris_A : A ; -- [XXXDX] :: healthful; useful; helpful; advantageous; + salutatio_F_N : N ; -- [XXXDX] :: greeting, salutation; formal morning call paid by client on patron/Emperor; + salutator_M_N : N ; -- [XXXDX] :: greeter, one who greets; one who pays formal morning call as a client; + salutatrix_F_N : N ; -- [XXXDS] :: female courtier; she who greets; + salutifer_A : A ; -- [XXXDX] :: healing, salubrious; saving; salutary; + salutificator_M_N : N ; -- [XEXFS] :: savior; one who brings to safety; + salutigerulus_A : A ; -- [BXXFS] :: greetings-bearing; + saluto_V : V ; -- [XXXBX] :: greet; wish well; visit; hail, salute; + salvatio_F_N : N ; -- [EEXES] :: salvation; deliverance; + salvator_M_N : N ; -- [EEXDX] :: savior; + salve_Adv : Adv ; -- [XXXDX] :: hail!/welcome!; farewell!; [salvere jubere => to greet/bid good day]; + salveo_V : V ; -- [XXXBX] :: be well/in good health; [salve => hello/hail/greetings; farewell/goodbye]; + salvia_F_N : N ; -- [FXXEK] :: sage; + salvifico_V2 : V2 ; -- [EEXES] :: save, deliver; + salvificus_A : A ; -- [EEXFS] :: saving; + salvo_V : V ; -- [XXXBX] :: save; + salvus_A : A ; -- [XXXAX] :: well, unharmed, sound; alive; safe, saved; + sambuca_F_N : N ; -- [XDXEC] :: species of harp; + sambucistria_F_N : N ; -- [XXXDX] :: player (female) an the small harp/sambuca; + sambucus_M_N : N ; -- [XDXES] :: sambuca-player; Itriangular stringed-instrument w/very sharp shrill tone OED); + samech_N : N ; -- [DEQEW] :: samekh; (15th letter of Hebrew alphabet); (transliterate as S); + samera_F_N : N ; -- [DAXNS] :: elm-seed (Pliny); + sampsuchum_N_N : N ; -- [XAXFS] :: marjoram plant; + sampsucum_N_N : N ; -- [XAXFS] :: marjoram plant; + sanabilis_A : A ; -- [XXXDX] :: curable; + sanatorium_N_N : N ; -- [GXXEK] :: sanatorium; + sancio_V2 : V2 ; -- [XXXAO] :: confirm, ratify; sanction; fulfill (prophesy); enact (law); ordain; dedicate; + sanctificatio_F_N : N ; -- [XXXDX] :: holiness; holy mystery; sanctuary (Plater); + sanctifico_V : V ; -- [XXXDX] :: sanctify, treat as holy; + sanctimonia_F_N : N ; -- [XEXEC] :: sanctity, sacredness; purity, chastity, virtue; + sanctimonialis_A : A ; -- [EEXES] :: holy; pious, religious; monastic; of sanctity/purity; [~ mulier => nun]; + sanctimonialis_F_N : N ; -- [EEXFS] :: nub; religious person; + sanctio_F_N : N ; -- [XLXCO] :: law/ordinance/sanction/degree; binding clause; penal sanction against violation; + sanctitas_F_N : N ; -- [XXXDX] :: inviolability, sanctity, moral purity, virtue, piety, purity, holiness; + sanctitudo_F_N : N ; -- [XXXCO] :: sanctity, holiness; moral purity, probity; + sanctor_M_N : N ; -- [XXXDS] :: establisher; one who enacts; + sanctuarium_N_N : N ; -- [XEXCO] :: sanctuary, shrine; place keeping holy things or private/confidential records; + sanctus_A : A ; -- [XXXAX] :: consecrated, sacred, inviolable; venerable, august, divine, holy, pious, just; + sanctus_M_N : N ; -- [EEXDX] :: saint; + sandaliarius_A : A ; -- [XXXEC] :: relating to sandals; (statue of Apollo on street of sandal makers); + sandaligerula_F_N : N ; -- [XXXEC] :: female slaves (pl.) who carried their mistresses sandals; + sandalium_N_N : N ; -- [XXXEC] :: slipper, sandal; + sandapila_F_N : N ; -- [XXXEC] :: bier used for poor people; + sandyx_F_N : N ; -- [XXXDX] :: red dye (from oxides of lead and iron); scarlet cloth; + sane_Adv : Adv ; -- [XXXDX] :: reasonably, sensibly; certainly, truly; however; yes, of course; + sanesco_V : V ; -- [XBXEO] :: recover, get well (patient); heal (wound); + sanguinans_A : A ; -- [XXXEC] :: bloodthirsty; + sanguinarius_A : A ; -- [XXXEC] :: of blood; bloodthirsty, savage; + sanguineus_A : A ; -- [XXXDX] :: bloody, bloodstained; blood-red; + sanguinolentus_A : A ; -- [XXXDX] :: bloody; blood-red; blood-stained; + sanguinulentus_A : A ; -- [XXXFX] :: bloody; blood-red; blood-stained; (alt. form of sanguinolentus); + sanguis_M_N : N ; -- [XXXAX] :: blood; family; + sanguisuga_F_N : N ; -- [XAXEO] :: leech; horseleech (Douay); + sanies_F_N : N ; -- [XBXBO] :: ichorous/bloody matter/pus discharged from wound/ulcer; other such fluids; + sanitarius_A : A ; -- [GXXEK] :: sanitary; + sanitas_F_N : N ; -- [XXXDX] :: sanity, reason; health; + sanna_F_N : N ; -- [XXXEC] :: mocking grimace; + sannio_M_N : N ; -- [XXXEC] :: buffoon; + sano_V : V ; -- [XXXDX] :: cure, heal; correct; quiet; + sanqualis_A : A ; -- [XEXFS] :: sacred-to-Sanctus; sea-osprey (when describing bird); + sanus_A : A ; -- [XXXAX] :: sound; healthy; sensible; sober; sane; + sapa_F_N : N ; -- [XXXDX] :: new wine; + sapidus_A : A ; -- [FXXFM] :: prudent; + sapiencia_F_N : N ; -- [EXXBO] :: |prudence, discretion, discernment (L+S); good sense; good taste; intelligence; + sapiens_A : A ; -- [XXXAO] :: rational; sane, of sound mind; wise, judicious, understanding; discreet; + sapiens_M_N : N ; -- [XXXCO] :: wise (virtuous) man, sage, philosopher; teacher of wisdom; + sapienter_Adv : Adv ; -- [XXXDX] :: wisely, sensibly; + sapientia_F_N : N ; -- [XXXBO] :: |prudence, discretion, discernment (L+S); good sense; good taste; intelligence; + sapineus_A : A ; -- [XXXFS] :: of the fir tree; of the pine tree; + sapinus_F_N : N ; -- [XAXFS] :: fir tree; pine tree; its lower part; + sapio_V2 : V2 ; -- [XXXBX] :: taste of; understand; have sense; + sapo_M_N : N ; -- [FXXEK] :: soap; + saponatum_N_N : N ; -- [GXXEK] :: shampoo; + sapor_M_N : N ; -- [XXXBX] :: taste, flavor; sense of taste; + sapphir_F_N : N ; -- [XXHDO] :: blue gem; (probably lapis lazuli); sapphire (L+S); + sapphirus_F_N : N ; -- [XXHDO] :: blue gem; (probably lapis lazuli); sapphire (L+S); + sapphyrus_F_N : N ; -- [XXHDW] :: blue gem; (probably lapis lazuli); sapphire (L+S); + sappir_F_N : N ; -- [XXQDO] :: blue gem; (probably lapis lazuli); sapphire (L+S); + sappirus_F_N : N ; -- [XXQDO] :: blue gem; (probably lapis lazuli); sapphire (L+S); + sarabala_F_N : N ; -- [EXXFS] :: loose/wide trousers (pl.); (worn in the East); + saraballa_F_N : N ; -- [DXXFS] :: loose/wide trousers (pl.); (worn in the East); + saraballum_N_N : N ; -- [DXXFS] :: loose/wide trousers (pl.); (worn in the East); + sarabalum_N_N : N ; -- [EXXFS] :: loose/wide trousers (pl.); (worn in the East); + sarabara_F_N : N ; -- [XXXFO] :: loose/wide trousers (pl.); (worn in the East); + sarabarum_N_N : N ; -- [XXXFS] :: loose/wide trousers (pl.); (worn in the East); + sarcasmos_M_N : N ; -- [XXXFS] :: taunt; sarcasm; + sarcina_F_N : N ; -- [XXXBO] :: pack, bundle, soldier's kit; baggage (pl.), belongings, chattels; load, burden; + sarcinarius_A : A ; -- [XXXFO] :: employed in carrying packs; + sarcinator_M_N : N ; -- [XXXEC] :: cobbler; + sarcinula_F_N : N ; -- [XXXDX] :: (small) pack/bundle; baggage (pl.), belongings/chattels, effects, paraphernalia; + sarcio_V2 : V2 ; -- [XXXDX] :: make good; redeem; restore; + sarcophagus_M_N : N ; -- [XXXEC] :: coffin, grave; + sarculum_N_N : N ; -- [XXXDX] :: hoe; + sardina_F_N : N ; -- [XAXFO] :: sardine; pilchard; small fish; + sardinus_A : A ; -- [DXXFS] :: carnelian/sardian; (deep red of a precious stone); + sardius_A : A ; -- [DXXFS] :: carnelian/sardian; (deep red of a precious stone); + sardius_M_N : N ; -- [DXXCS] :: carnelian/sardian; (deep red precious stone); + sardonichus_A : A ; -- [EXXFS] :: of/pertaining to sardonyx (precious stone); [~ lapis => sardonyx]; + sardonicus_C_N : N ; -- [EXXFW] :: sardonyx, precious stone; 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_V2 : V2 ; - sarisa_F_N : N ; - sarisophorus_M_N : N ; - sarmentum_N_N : N ; - sarracum_N_N : N ; - sarrio_V2 : V2 ; - sarritor_M_N : N ; - sartago_F_N : N ; - sartio_F_N : N ; - sartor_M_N : N ; - sat_A : A ; - sat_Adv : Adv ; - satago_V2 : V2 ; - satanicus_A : A ; - satanismus_M_N : N ; + sardonyx_2_M_N : N ; -- [XXXCO] :: sardonyx, precious stone; + sargus_M_N : N ; -- [XAXEC] :: salt-water fish, the sargue; + sario_V2 : V2 ; -- [XAXCS] :: hoe; weed (crops); dig over (land); + sarisa_F_N : N ; -- [XXXES] :: Macedonian lance; + sarisophorus_M_N : N ; -- [XXXEC] :: Macedonian pikeman; + sarmentum_N_N : N ; -- [XXXDX] :: shoot; twigs (pl.), cut twigs, brushwood; + sarracum_N_N : N ; -- [XXXDO] :: kind of wagon/cart/wain; S:Charles's Wain constellation (Big Dipper); + sarrio_V2 : V2 ; -- [XAXCO] :: hoe; weed (crops); dig over (land); + sarritor_M_N : N ; -- [XAXDS] :: hoer; weeder; + sartago_F_N : N ; -- [XXXEO] :: frying pan; mixture/medley/jumble/farrago; stove (Cal); + sartio_F_N : N ; -- [XAXFX] :: hoeing; digging-over; (in Columella; JFW guess, Old form of satio?); + sartor_M_N : N ; -- [XXXDS] :: patcher; mender; A:hoer; weeder; + sat_A : A ; -- [XXXCO] :: enough, adequate, sufficient; satisfactory; + sat_Adv : Adv ; -- [XXXCO] :: enough, adequately; sufficiently; well enough, quite; fairly, pretty; + satago_V2 : V2 ; -- [XXXCO] :: bustle about, fuss, busy one's self; be hard pressed, have one's hands full; + satanicus_A : A ; -- [GXXEK] :: satanic; + satanismus_M_N : N ; -- [GXXEK] :: wickedness; 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 ; - satietas_F_N : N ; - satio_F_N : N ; - satio_V : V ; - satis_A : A ; - satis_Adv : Adv ; - satisdatio_F_N : N ; - satisfacio_V2 : V2 ; - satisfactio_F_N : N ; - satisfio_V : V ; - satius_A : A ; - satius_Adv : Adv ; - sativus_A : A ; - sator_M_N : N ; - satrapa_M_N : N ; - satrapes_M_N : N ; - satraps_M_N : N ; - satur_A : A ; - satura_F_N : N ; - satureia_F_N : N ; - satureium_N_N : N ; - saturitas_F_N : N ; - saturo_V : V ; - satus_A : A ; - satyrion_N_N : N ; - satyriscus_M_N : N ; - satyrus_M_N : N ; - sauciatio_F_N : N ; - saucio_V : V ; - saucius_A : A ; - sauna_F_N : N ; - saviatio_F_N : N ; - saviolum_N_N : N ; - savior_V : V ; - savium_N_N : N ; - saxetum_N_N : N ; - saxeus_A : A ; - saxificus_A : A ; - saxophonum_N_N : N ; - saxosus_A : A ; - saxulum_N_N : N ; - saxum_N_N : N ; - scabellum_N_N : N ; - scaber_A : A ; - scabies_F_N : N ; - scabillum_N_N : N ; - scabinus_M_N : N ; - scabiosus_A : A ; - scabo_V2 : V2 ; - scabritia_F_N : N ; - scabrities_F_N : N ; - scabrosus_A : A ; - scaccarium_N_N : N ; - scaciludium_N_N : N ; - scacus_M_N : N ; - scaena_F_N : N ; - scaenalis_A : A ; - scaenarium_N_N : N ; - scaenicus_A : A ; - scaenicus_M_N : N ; - scaevus_A : A ; - scala_F_N : N ; - scalmus_M_N : N ; - scalpellum_N_N : N ; - scalpellus_M_N : N ; - scalper_M_N : N ; - scalpo_V2 : V2 ; - scalpratus_A : A ; - scalprum_N_N : N ; - scamillus_M_N : N ; - scammonea_F_N : N ; - scammonia_F_N : N ; - scamnum_N_N : N ; - scamonia_F_N : N ; - scandalizo_V2 : V2 ; - scandalose_Adv : Adv ; - scandalosus_A : A ; - scandalum_N_N : N ; - scandix_F_N : N ; - scando_V2 : V2 ; - scandula_F_N : N ; - scapha_F_N : N ; - scaphium_N_N : N ; - scapula_F_N : N ; - scapulare_N_N : N ; - scapularium_N_N : N ; - scapus_M_N : N ; - scarabeus_M_N : N ; - scariphatio_F_N : N ; - scaripho_V : V ; - scarpus_M_N : N ; - scatebra_F_N : N ; - scateo_V : V ; - scato_V : V ; - scaturigo_F_N : N ; - scaturrio_V : V ; - scaurus_A : A ; - scazon_M_N : N ; - sceleratus_A : A ; - sceleratus_M_N : N ; - scelero_V : V ; - scelerosus_A : A ; - scelestus_A : A ; - scellinus_M_N : N ; - scelus_N_N : N ; - scena_F_N : N ; - scenofactorius_A : A ; - scenopegia_F_N : N ; - scenophegia_F_N : N ; - scepticismus_M_N : N ; - scepticus_A : A ; - sceptrifer_A : A ; - sceptrum_N_N : N ; - sceptuchus_M_N : N ; - scheda_F_N : N ; - schedinummus_M_N : N ; - schedula_F_N : N ; - schema_F_N : N ; - schema_N_N : N ; - schematismos_M_N : N ; - schematismus_M_N : N ; - schisma_N_N : N ; - schismaticus_A : A ; - schismaticus_M_N : N ; - schoenicula_F_N : N ; - schoenobates_M_N : N ; - schoenus_M_N : N ; - schola_F_N : N ; - scholaris_A : A ; - scholaris_M_N : N ; - scholarus_A : A ; - scholastica_F_N : N ; - scholasticus_A : A ; - scholasticus_M_N : N ; - scholicus_A : A ; - scholium_N_N : N ; - scibilis_A : A ; - scida_F_N : N ; - sciens_A : A ; - scienter_Adv : Adv ; - scientia_F_N : N ; - scientificus_A : A ; - scilicet_Adv : Adv ; - scilla_F_N : N ; - scindo_V2 : V2 ; + satelles_M_N : N ; -- [HTXEK] :: S:satellite; + satellitium_N_N : N ; -- [XXXFS] :: escort; E:guard, protection; + satias_F_N : N ; -- [XXXDX] :: sufficiency, abundance; distaste caused by excess; + satietas_F_N : N ; -- [XXXDX] :: satiety; the state of being sated; + satio_F_N : N ; -- [XAXEZ] :: sowing, planting; field (Collins); + satio_V : V ; -- [XXXBX] :: satisfy, sate; nourish; + satis_A : A ; -- [XXXAO] :: enough, adequate, sufficient; satisfactory; + satis_Adv : Adv ; -- [XXXAO] :: enough, adequately; sufficiently; well enough, quite; fairly, pretty; + satisdatio_F_N : N ; -- [XXXEC] :: giving bail or security; + satisfacio_V2 : V2 ; -- [XXXAO] :: |give satisfactory assurance (to/that); give all (attention) that is required; + satisfactio_F_N : N ; -- [XXXDX] :: penalty; satisfaction for an offense; + satisfio_V : V ; -- [XXXAO] :: be satisfied; be compensated; be given enough/sufficient; (satisfacio PASS); + satius_A : A ; -- [XXXCO] :: better, more serviceable/satisfactory; fitter, preferable; (COMP of satis); + satius_Adv : Adv ; -- [XXXCO] :: rather; preferably; + sativus_A : A ; -- [XAXES] :: sown; that is sown; + sator_M_N : N ; -- [XXXDX] :: sower, planter; founder, progenitor (usu. divine); originator; + satrapa_M_N : N ; -- [FLXEE] :: governor; (provincial); viceroy; satrap; + satrapes_M_N : N ; -- [FLXEE] :: governor; (provincial); viceroy; satrap; + satraps_M_N : N ; -- [FLXEE] :: governor; (provincial); viceroy; satrap; + satur_A : A ; -- [XXXDX] :: well-fed, replete; rich; saturated; + satura_F_N : N ; -- [XXXDX] :: satire; + satureia_F_N : N ; -- [XAXEC] :: herb (savory); + satureium_N_N : N ; -- [XAXEC] :: herb (savory)i (pl.) + saturitas_F_N : N ; -- [XXXCO] :: |condition of being imbued with a color to saturation; + saturo_V : V ; -- [XXXDX] :: fill to repletion, sate, satisfy; drench, saturate; + satus_A : A ; -- [XXXDX] :: sprung (from); native; + satyrion_N_N : N ; -- [DAXNS] :: satyrion plant; drink made from it (Pliny); + satyriscus_M_N : N ; -- [XXXDS] :: little satyr; + satyrus_M_N : N ; -- [XXXDX] :: satyr; satyric play; + sauciatio_F_N : N ; -- [XXXDS] :: wounding; + saucio_V : V ; -- [XXXDX] :: wound, hurt; gash, stab; + saucius_A : A ; -- [XXXBX] :: wounded; ill, sick; + sauna_F_N : N ; -- [GXXEK] :: sauna; + saviatio_F_N : N ; -- [XXXDS] :: kissing; + saviolum_N_N : N ; -- [XXXDX] :: tender kiss; + savior_V : V ; -- [XXXEC] :: kiss; + savium_N_N : N ; -- [XXXDX] :: kiss; sweetheart; + saxetum_N_N : N ; -- [XXXEC] :: rocky place; + saxeus_A : A ; -- [XXXDX] :: rocky, stony, made of stones; + saxificus_A : A ; -- [XXXDX] :: petrifying, turning to stone; + saxophonum_N_N : N ; -- [GDXEK] :: saxophone; + saxosus_A : A ; -- [XXXDX] :: rocky, stony; + saxulum_N_N : N ; -- [XXXEC] :: little rock; + saxum_N_N : N ; -- [XXXAX] :: stone; + scabellum_N_N : N ; -- [XDXEC] :: footstool; a musical instrument played with the foot; + scaber_A : A ; -- [XAXCO] :: rough/scabrous from disease, scabby (esp. sheep); rough/corroded (surface); + scabies_F_N : N ; -- [XXXDX] :: itch, mange; + scabillum_N_N : N ; -- [XDXEC] :: footstool; a musical instrument played with the foot; + scabinus_M_N : N ; -- [GXXEK] :: alderman; + scabiosus_A : A ; -- [XXXEC] :: scabby, mangy; + scabo_V2 : V2 ; -- [XXXDX] :: scratch, scrape; + scabritia_F_N : N ; -- [XXXES] :: roughness; B:itch; scab; + scabrities_F_N : N ; -- [XXXFS] :: roughness; B:itch; scab; + scabrosus_A : A ; -- [DXXES] :: scabrous, rough; + scaccarium_N_N : N ; -- [FDXDM] :: chessboard, game of chess; + scaciludium_N_N : N ; -- [GXXEK] :: chess (game); + scacus_M_N : N ; -- [GXXEK] :: chess (game); + scaena_F_N : N ; -- [XXXDX] :: theater stage, "boards"; scene; theater; public stage/view, publicity; + scaenalis_A : A ; -- [XWXFS] :: theatrical; + scaenarium_N_N : N ; -- [GXXEK] :: scenario; script; + scaenicus_A : A ; -- [XXXDX] :: theatrical; + scaenicus_M_N : N ; -- [XXXDX] :: actor; + scaevus_A : A ; -- [XXXEC] :: left, on the left; awkward; + scala_F_N : N ; -- [XXXDX] :: ladder (pl.); + scalmus_M_N : N ; -- [XXXEC] :: thole-pin, rowlock; + scalpellum_N_N : N ; -- [XBXDO] :: scalpel, lancet; small surgical knife; similar tool used in grafting; + scalpellus_M_N : N ; -- [XBXDO] :: scalpel, lancet; small surgical knife; similar tool used in grafting; + scalper_M_N : N ; -- [XXXDX] :: tool for scraping/paring/cutting away/removing parts of bone/sharpening pens; + scalpo_V2 : V2 ; -- [XXXBO] :: scratch, draw nails across (itch/affection); dig out (w/nails); carve/engrave; + scalpratus_A : A ; -- [XXXCO] :: fitted with a scraper; having a sharp or cutting edge; + scalprum_N_N : N ; -- [XXXDX] :: tool for scraping/paring/cutting away/removing parts of bone/sharpening pens; + scamillus_M_N : N ; -- [XXXFS] :: stool; little bench; T:pedestal step; + scammonea_F_N : N ; -- [XAXEC] :: plant (scammony); + scammonia_F_N : N ; -- [XAXEC] :: plant (scammony); + scamnum_N_N : N ; -- [XXXDX] :: stool, step; + scamonia_F_N : N ; -- [XAXFX] :: plant (scammony); (alt. form of scammonia); + scandalizo_V2 : V2 ; -- [DEXCS] :: tempt to evil; cause to stumble; offend, scandalize (Bee); + scandalose_Adv : Adv ; -- [GXXEK] :: scandalously; + scandalosus_A : A ; -- [FXXEF] :: scandalous; slanderous; + scandalum_N_N : N ; -- [EEXCS] :: temptation/inducement to sin; cause of offense; stumbling block; scandal (Bee); + scandix_F_N : N ; -- [DAXNS] :: chervil herb (Pliny); + scando_V2 : V2 ; -- [XXXBX] :: climb; mount, ascend, get up, clamber; + scandula_F_N : N ; -- [XXXFS] :: roof-shingle; + scapha_F_N : N ; -- [XXXDX] :: skiff; light boat; + scaphium_N_N : N ; -- [XXXEC] :: pot, bowl, drinking vessel; + scapula_F_N : N ; -- [XBXEC] :: shoulder-blades (pl.); shoulder, back; wings (Ecc); + scapulare_N_N : N ; -- [FXXEM] :: |sword-belt; shoulder-strap; + scapularium_N_N : N ; -- [FXXEM] :: sword-belt; shoulder-strap; + scapus_M_N : N ; -- [XXXDX] :: stem/stalk of a plant; shaft/upright of column/post/door frame/scroll; + scarabeus_M_N : N ; -- [XAXFS] :: beetle; scarab(Pliny); + scariphatio_F_N : N ; -- [XXXFS] :: scarification; a scratched opening; (L+S gives scarifatio); + scaripho_V : V ; -- [XXXFS] :: scratch open; scarify; (L+S gives scarifo, JFW's texts have -ph-); + scarpus_M_N : N ; -- [FGXFY] :: abstract; + scatebra_F_N : N ; -- [XXXDX] :: gush of water from the ground, bubbling spring; + scateo_V : V ; -- [XXXDX] :: gush out, bubble, spring forth; swarm (with), be alive (with); + scato_V : V ; -- [XXXDX] :: gush out, bubble, spring forth; swarm (with), be alive (with); + scaturigo_F_N : N ; -- [XXXDX] :: bubbling spring; + scaturrio_V : V ; -- [XXXEC] :: gush, bubble over; + scaurus_A : A ; -- [XXXEC] :: with swollen ankles; + scazon_M_N : N ; -- [XPXEC] :: iambic trimeter with a spondee or trochee in the last foot; + sceleratus_A : A ; -- [XXXAO] :: criminal, wicked; accursed; lying under a ban; sinful, atrocious, heinous; + sceleratus_M_N : N ; -- [XXXDX] :: criminal; + scelero_V : V ; -- [XXXDX] :: defile; + scelerosus_A : A ; -- [XXXDX] :: steeped in wickedness; + scelestus_A : A ; -- [XXXDX] :: infamous, wicked; accursed; + scellinus_M_N : N ; -- [GXXEK] :: schilling (money); + scelus_N_N : N ; -- [XXXAX] :: crime; calamity; wickedness, sin, evil deed; + scena_F_N : N ; -- [FXXDX] :: theater stage, "boards"; scene; a theater; public stage/view, publicity; + scenofactorius_A : A ; -- [EXXFS] :: of/pertaining to the making of tents; [ars ~ => business of tent-making]; + scenopegia_F_N : N ; -- [EEQDS] :: Jewish Feast of Tabernacles; + scenophegia_F_N : N ; -- [EEQDW] :: Jewish Feast of Tabernacles; + scepticismus_M_N : N ; -- [GXXEK] :: skepticism; + scepticus_A : A ; -- [GXXEK] :: skeptic; + sceptrifer_A : A ; -- [XXXDX] :: bearing a scepter; + sceptrum_N_N : N ; -- [XXXDX] :: scepter; + sceptuchus_M_N : N ; -- [XXXEC] :: wand-bearer, a court official; + scheda_F_N : N ; -- [XXXEC] :: strip of papyrus bark; a leaf of paper; + schedinummus_M_N : N ; -- [GXXEK] :: banknote; + schedula_F_N : N ; -- [FXXEM] :: small paper-leaf; L:schedule; document; proclamation; + schema_F_N : N ; -- [XXXEC] :: shape, figure, form; + schema_N_N : N ; -- [XXXEC] :: shape, figure, form; + schematismos_M_N : N ; -- [XGXFS] :: florid/figurative mode of speech; + schematismus_M_N : N ; -- [XGXFZ] :: florid/figurative mode of speech; + schisma_N_N : N ; -- [DEXDS] :: schism/split/deep divide; separation/breaking away; (refusal to submit to Pope); + schismaticus_A : A ; -- [DEXEE] :: schismatic; pertaining to schism; + schismaticus_M_N : N ; -- [DEXES] :: schismatic, separatist, seceder; + schoenicula_F_N : N ; -- [XXXFS] :: scented prostitute; prostitute anointed with schoenum; + schoenobates_M_N : N ; -- [XDXEC] :: rope-walker; + schoenus_M_N : N ; -- [XAXES] :: aromatic rush; Persian distance; + schola_F_N : N ; -- [XGXAO] :: school; followers of a system/teacher/subject; thesis/subject; area w/benches; + scholaris_A : A ; -- [XGXFO] :: of/belonging to a school; used in school; + scholaris_M_N : N ; -- [DXXBS] :: scholar, student (Bee); imperial guard (pl.) (L+S); + scholarus_A : A ; -- [XGXFO] :: of/connected with the schola in which a collegium met; + scholastica_F_N : N ; -- [XGXFO] :: debate on imaginary case in school of rhetoric (controversia scholastica); + scholasticus_A : A ; -- [XGXCO] :: of/appropriate to a school of rhetoric/any school; + scholasticus_M_N : N ; -- [XGXCO] :: student/teacher, one who attends school; one who studies, scholar; + scholicus_A : A ; -- [XGXFO] :: of/belonging to a school (of rhetoric/grammar); theoretical (not actual); + scholium_N_N : N ; -- [GXXET] :: note; (Erasmus); + scibilis_A : A ; -- [FXXES] :: knowable; discernible; + scida_F_N : N ; -- [XXXEC] :: strip of papyrus bark; a leaf of paper; + sciens_A : A ; -- [XXXBO] :: conscious of (one's acts); aware/cognizant; knowledgeable/skilled, expert; + scienter_Adv : Adv ; -- [XXXCO] :: skillfully, expertly; consciously, knowingly; + scientia_F_N : N ; -- [XXXAX] :: knowledge, science; skill; + scientificus_A : A ; -- [FSXFM] :: scientific; learned; + scilicet_Adv : Adv ; -- [XXXAX] :: one may know, certainly; of course; + scilla_F_N : N ; -- [XAXDO] :: squill, sea-onion (bulbous seaside plane); squill bulb/root/preparation; + scindo_V2 : V2 ; -- [XXXAO] :: tear, split, divide; rend, cut to pieces; tear in rage/grief/despair; 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 ; + scinifes_2_M_N : N ; -- [XAHES] :: kind of stinging insects; very small flies, gnats; other small creatures (OLD); 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 ; - scinus_F_N : N ; - scio_V2 : V2 ; - sciolus_M_N : N ; - sciphus_M_N : N ; - scipio_M_N : N ; - scipus_M_N : N ; - scirpea_F_N : N ; - scirpia_F_N : N ; - scirpiculus_A : A ; - scirpiculus_M_N : N ; - scirpo_V : V ; - scirpus_A : A ; - scirpus_M_N : N ; - scirros_M_N : N ; - scirto_V : V ; - sciscitor_V : V ; - scisco_V2 : V2 ; - scisma_N_N : N ; - scissilis_A : A ; - scissor_M_N : N ; - scissura_F_N : N ; - scitamentum_N_N : N ; - scitor_V : V ; - scitulus_A : A ; - scitum_N_N : N ; - scitus_A : A ; - scitus_M_N : N ; - sciurus_M_N : N ; - scius_A : A ; - sclodia_F_N : N ; - sclopeto_V : V ; - sclopetum_N_N : N ; - scobis_F_N : N ; - scobo_V2 : V2 ; - scola_F_N : N ; - scolastica_F_N : N ; - scolasticus_A : A ; - scolasticus_M_N : N ; - scolymos_M_N : N ; - scomber_M_N : N ; - scopa_F_N : N ; - scopo_V2 : V2 ; - scopulosus_A : A ; - scopulus_M_N : N ; - scorbutus_M_N : N ; - scoria_F_N : N ; - scorpio_M_N : N ; - scorpion_N_N : N ; - scorpios_M_N : N ; - scorpius_M_N : N ; - scortator_M_N : N ; - scorteum_N_N : N ; - scorteus_A : A ; - scortillum_N_N : N ; - scortor_V : V ; - scortum_N_N : N ; - screator_M_N : N ; - screatus_M_N : N ; - screo_V : V ; - scriba_M_N : N ; - scriblita_F_N : N ; - scribo_V2 : V2 ; - scribtus_A : A ; - scrinium_N_N : N ; - scriptito_V : V ; - scripto_V2 : V2 ; - scriptor_M_N : N ; - scriptorius_A : A ; - scriptulum_N_N : N ; - scriptum_N_N : N ; - scriptura_F_N : N ; - scriptus_M_N : N ; - scripula_F_N : N ; - scripulatim_Adv : Adv ; - scripulum_N_N : N ; + sciniphes_2_M_N : N ; -- [XAHEO] :: kind of stinging insects; very small flies, gnats; other small creatures (OLD); + scintilla_F_N : N ; -- [XXXDX] :: spark; + scintillo_V : V ; -- [XXXDX] :: send out sparks; + scintillula_F_N : N ; -- [XXXEC] :: little spark; + scinus_F_N : N ; -- [EAXFS] :: mastic tree; (Vulgate Susanna 1:54); + scio_V2 : V2 ; -- [XXXAX] :: know, understand; + sciolus_M_N : N ; -- [XXXES] :: smatterer; one with a little knowledge; + sciphus_M_N : N ; -- [FXXCL] :: bowl, goblet, cup; communion cup; + scipio_M_N : N ; -- [XXXDX] :: ceremonial rod, baton; + scipus_M_N : N ; -- [FXXCL] :: bowl, goblet, cup; communion cup; + scirpea_F_N : N ; -- [XAXEO] :: large basket made of bulrushes; basket-work (Cas); + scirpia_F_N : N ; -- [XAXEO] :: large basket made of bulrushes; basket-work (Cas); + scirpiculus_A : A ; -- [XAXEO] :: used for dealing with bulrushes (of a billhook); of/made of rushes (L+S); + scirpiculus_M_N : N ; -- [XAXDO] :: basket made of bulrushes, rush basket; + scirpo_V : V ; -- [XAXDX] :: plait/make (baskets, etc.) from bulrushes; + scirpus_A : A ; -- [XAXEO] :: woven/made of bulrushes; basket-work (Cas); + scirpus_M_N : N ; -- [XAXEO] :: marsh plant, bulrush; (Scripus lacustris); riddle (like intricate basket-work); + scirros_M_N : N ; -- [XBXNO] :: hard tumor; + scirto_V : V ; -- [EDXFW] :: dance; (4 Ezra 6:21); + sciscitor_V : V ; -- [XXXDX] :: ask; question; consult; + scisco_V2 : V2 ; -- [XXXEC] :: investigate, inquire; (political) vote; ordain; + scisma_N_N : N ; -- [EEXDW] :: schism/split/deep divide; separation/breaking away; (refusal to submit to Pope); + scissilis_A : A ; -- [XXXEO] :: torn, tattered (clothes); easily split, fissile (minerals); + scissor_M_N : N ; -- [XXXDX] :: carver; + scissura_F_N : N ; -- [XXXDX] :: cleft, fissure; + scitamentum_N_N : N ; -- [XXXDS] :: food dainty; G:nicety; + scitor_V : V ; -- [XXXDX] :: inquire, ask; + scitulus_A : A ; -- [XXXDS] :: neat; elegant; + scitum_N_N : N ; -- [XXXDX] :: ordinance, statute; + scitus_A : A ; -- [XXXDX] :: having practical knowledge of, neat, ingenious; nice, excellent; + scitus_M_N : N ; -- [XLXDS] :: decree; + sciurus_M_N : N ; -- [XXXEC] :: squirrel; + scius_A : A ; -- [XXXEO] :: cognizant, possessing knowledge; skilled/expert (in w/ABL); + sclodia_F_N : N ; -- [GXXEK] :: sledge, sleigh; + sclopeto_V : V ; -- [GXXEK] :: fire rifle; + sclopetum_N_N : N ; -- [GXXEK] :: rifle; + scobis_F_N : N ; -- [XXXEC] :: filings, chips, shavings, sawdust; + scobo_V2 : V2 ; -- [EXXFS] :: probe; look into; search; scope out; sweep (Douay) (prob. confused with V 1 1); + scola_F_N : N ; -- [XGXAO] :: school; followers of a system/teacher/subject; thesis/subject; area w/benches; + scolastica_F_N : N ; -- [XGXFO] :: debate on imaginary case in school of rhetoric (controversia scholastica); + scolasticus_A : A ; -- [XGXCO] :: of/appropriate to a school of rhetoric/any school; + scolasticus_M_N : N ; -- [XGXCO] :: student/teacher, one who attends school; one who studies, scholar; + scolymos_M_N : N ; -- [DAXNS] :: edible thistle (Pliny); + scomber_M_N : N ; -- [XXXDX] :: mackerel; + scopa_F_N : N ; -- [XXXCO] :: butcher's broom (shrub); branches/sprigs tied together (pl.); broom (sweeping); + scopo_V2 : V2 ; -- [EXXFW] :: probe; look into; search; scope out; sweep (Douay) (prob. confused with V 1 1); + scopulosus_A : A ; -- [XXXFS] :: rocky; full of rocks; + scopulus_M_N : N ; -- [XXXBX] :: rock, boulder; + scorbutus_M_N : N ; -- [GBXEK] :: scurvy; + scoria_F_N : N ; -- [XXXDS] :: slag, dross; (of metals); + scorpio_M_N : N ; -- [XAXBO] :: scorpion; (animal/constellation/zodiacal sign); small catapult; plant; + scorpion_N_N : N ; -- [XAXNO] :: plant w/poisonous root like scorpion; (leopard's-bane, Doronicum caucasicum?); + scorpios_M_N : N ; -- [XAXCO] :: scorpion; (animal/constellation/zodiacal sign); small catapult; plant; + scorpius_M_N : N ; -- [XAXCO] :: scorpion; (animal/constellation/zodiacal sign); small catapult; plant; + scortator_M_N : N ; -- [XXXDX] :: fornicator; + scorteum_N_N : N ; -- [XXXDX] :: thing made of hide/hides/leather; + scorteus_A : A ; -- [XXXDX] :: of hide/hides, leather; + scortillum_N_N : N ; -- [XXXDX] :: young prostitute; wench; + scortor_V : V ; -- [XXXDX] :: consort with harlots/prostitutes; act like a harlot/promiscuously; + scortum_N_N : N ; -- [XXXDX] :: harlot, prostitute; male prostitute; skin, hide; + screator_M_N : N ; -- [BXXFS] :: hawker; throat-clearer; + screatus_M_N : N ; -- [XXXES] :: hawking; throat-clearing; + screo_V : V ; -- [XBXEC] :: clear the throat, hawk, hem; + scriba_M_N : N ; -- [XXXDX] :: scribe, clerk; + scriblita_F_N : N ; -- [XXXEC] :: kind of pastry; + scribo_V2 : V2 ; -- [XXXAX] :: write; compose; + scribtus_A : A ; -- [BXXFX] :: written; composed; (archaic vpar of scribo); + scrinium_N_N : N ; -- [XXXDX] :: box, case; + scriptito_V : V ; -- [XXXFS] :: write often; compose; + scripto_V2 : V2 ; -- [EXXEP] :: write; compose; + scriptor_M_N : N ; -- [XXXBX] :: writer, author; scribe; + scriptorius_A : A ; -- [GXXEK] :: writing; + scriptulum_N_N : N ; -- [XSXCO] :: unit of weight (1/24 unica, 1/288 libra); 1/288 of any unit (esp. iugerum); + scriptum_N_N : N ; -- [XXXDX] :: something written; written communication; literary work; + scriptura_F_N : N ; -- [XXXBX] :: writing; composition; scripture; + scriptus_M_N : N ; -- [XXXDS] :: scribe's office; being a clerk; + scripula_F_N : N ; -- [XAXNO] :: kind of vine/grape (used for raisins); + scripulatim_Adv : Adv ; -- [XBXNO] :: by amounts of a scripulum (1/288 libra/pound); (2 grams); (pharmacy dose); + scripulum_N_N : N ; -- [XSXCO] :: weight unit (1/24 unica, 1/288 libra, 2 grams); 1/288 of a unit (esp. iugerum); scrobis_F_N : N ; -- [XXXDX] :: ditch, trench; dike; - scrobis_M_N : N ; - scrofa_F_N : N ; - scrofinus_A : A ; - scrofipascus_A : A ; - scrofipascus_M_N : N ; - scrotum_N_N : N ; - scrupeda_F_N : N ; - scrupeus_A : A ; - scruposus_A : A ; - scrupula_F_N : N ; - scrupulositas_F_N : N ; - scrupulosus_A : A ; - scrupulum_N_N : N ; - scrupulus_M_N : N ; - scrupus_F_N : N ; - scrupus_M_N : N ; - scruta_F_N : N ; - scrutabilis_A : A ; - scrutamen_N_N : N ; - scrutaria_F_N : N ; - scrutarius_M_N : N ; - scrutatio_F_N : N ; - scrutillus_M_N : N ; - scrutinium_N_N : N ; - scrutino_V2 : V2 ; - scrutinor_V : V ; - scruto_V2 : V2 ; - scrutor_M_N : N ; - scrutor_V : V ; - scrutum_N_N : N ; - sculpo_V2 : V2 ; - sculponea_F_N : N ; - sculptilis_A : A ; - sculptor_M_N : N ; - scurra_M_N : N ; - scurrilitas_F_N : N ; - scurriliter_Adv : Adv ; - scurror_V : V ; - scutale_N_N : N ; - scutarior_M_N : N ; - scutarius_A : A ; - scutarius_M_N : N ; - scutatus_A : A ; - scutella_F_N : N ; - scutellum_N_N : N ; - scutica_F_N : N ; - scutra_F_N : N ; - scutula_F_N : N ; - scutulata_F_N : N ; - scutulatum_N_N : N ; - scutulatus_A : A ; - scutulum_N_N : N ; - scutum_N_N : N ; - scymnus_M_N : N ; - scyphus_M_N : N ; - scytala_F_N : N ; - scytale_F_N : N ; - sebboleth_N : N ; - sebum_N_N : N ; - secamentum_N_N : N ; - secedo_V2 : V2 ; - secerno_V2 : V2 ; - secespita_F_N : N ; - secessio_F_N : N ; - secessus_M_N : N ; - secius_Adv : Adv ; - secludo_V2 : V2 ; - seclusus_A : A ; - seco_V2 : V2 ; - secor_V : V ; - secretarium_N_N : N ; - secretarius_M_N : N ; - secretio_F_N : N ; - secreto_Adv : Adv ; - secretum_N_N : N ; - secretus_A : A ; - sectarius_A : A ; - sectilis_A : A ; - sectio_F_N : N ; - sectivus_A : A ; - sector_V : V ; - sectura_F_N : N ; - secubitus_M_N : N ; - secubo_V : V ; - secularitas_F_N : N ; - seculariter_Adv : Adv ; - secularus_A : A ; - secularus_M_N : N ; - seculis_A : A ; - seculizo_V : V ; - seculum_N_N : N ; - secum_N_N : N ; - secunda_F_N : N ; - secundanus_M_N : N ; - secundarius_A : A ; - secundo_V2 : V2 ; - secundogenitus_A : A ; - secundum_Acc_Prep : Prep ; - secundum_N_N : N ; - secundus_A : A ; - securicula_F_N : N ; - securifer_A : A ; - securiger_A : A ; - securis_F_N : N ; - securitas_F_N : N ; - securus_A : A ; - secus_Acc_Prep : Prep ; - secus_Adv : Adv ; - secus_N : N ; - secutor_M_N : N ; - secuutus_M_N : N ; - sed_Conj : Conj ; - sedatio_F_N : N ; - sedatus_A : A ; - sedda_F_N : N ; - sedecula_F_N : N ; - sedentarius_A : A ; - sedeo_V : V ; - sedes_F_N : N ; - sedile_N_N : N ; - seditio_F_N : N ; - seditiosus_A : A ; - sedo_V : V ; - seduco_V2 : V2 ; - seductio_F_N : N ; - seductor_M_N : N ; - seductus_A : A ; - sedulitas_F_N : N ; - sedulo_Adv : Adv ; - sedulus_A : A ; - seges_F_N : N ; - segestra_F_N : N ; - segestre_N_N : N ; - segmentatus_A : A ; - segmentum_N_N : N ; - segnipes_A : A ; - segnis_A : A ; - segnitas_F_N : N ; - segniter_Adv : Adv ; - segnitia_F_N : N ; - segnities_F_N : N ; - segrego_V : V ; - seichus_M_N : N ; - seisina_F_N : N ; - seisitus_A : A ; - seiugatus_A : A ; - seiugis_M_N : N ; - seiunctim_Adv : Adv ; - seiunctio_F_N : N ; - sejungo_V2 : V2 ; - selectio_F_N : N ; - selectivus_A : A ; - selego_V2 : V2 ; - selibra_F_N : N ; - seligo_V2 : V2 ; - seliquastrum_N_N : N ; - sella_F_N : N ; - sellaria_F_N : N ; - sellariolus_A : A ; - sellaris_A : A ; - sellaris_M_N : N ; - sellarium_N_N : N ; - sellarius_M_N : N ; - sellisternium_N_N : N ; - sellula_F_N : N ; - sellularius_A : A ; - semanticus_A : A ; - semaphorum_N_N : N ; - semen_N_N : N ; - semenstris_A : A ; - sementerium_N_N : N ; - sementifer_A : A ; - sementis_F_N : N ; - sementivum_N_N : N ; - sementivus_A : A ; - semermis_A : A ; - semermus_A : A ; - semestris_A : A ; - semesus_A : A ; - semiadapertus_A : A ; - semianimis_A : A ; - semianimus_A : A ; - semiapertus_A : A ; - semibos_A : A ; - semibos_M_N : N ; - semicaper_A : A ; - semicaper_M_N : N ; - semicinctium_N_N : N ; - semicintium_N_N : N ; - semicircumferentia_F_N : N ; - semicoctus_A : A ; - semicolon_N_N : N ; - semicorda_F_N : N ; - semicrematus_A : A ; - semicremus_A : A ; - semicubitalis_A : A ; - semideus_A : A ; - semideus_M_N : N ; - semidiameter_M_N : N ; - semiditonus_M_N : N ; - semidoctus_A : A ; - semiermis_A : A ; - semiermus_A : A ; - semiesus_A : A ; - semifactus_A : A ; - semifer_A : A ; - semigermanus_A : A ; - semigravis_A : A ; - semigro_V : V ; - semihians_A : A ; - semihomo_M_N : N ; - semihora_F_N : N ; - semilacer_A : A ; - semilautus_A : A ; - semiliber_A : A ; - semilixa_M_N : N ; - semimarinus_A : A ; - semimas_A : A ; - semimas_M_N : N ; - seminarista_M_N : N ; - seminarium_N_N : N ; - seminator_M_N : N ; - seminex_A : A ; - seminiverbius_M_N : N ; - semino_V : V ; - seminudus_A : A ; - semiologia_F_N : N ; - semiophorum_N_N : N ; - semipaganus_C_N : N ; - semipes_M_N : N ; - semiplenus_A : A ; - semiputatus_A : A ; - semirasus_A : A ; - semireductus_A : A ; - semirefectus_A : A ; - semirefetcus_A : A ; - semirutus_A : A ; - semis_M_N : N ; - semisepultus_A : A ; - semisomnus_A : A ; - semisos_M_N : N ; - semisupinus_A : A ; - semita_F_N : N ; - semitalis_A : A ; - semitarius_A : A ; - semitonium_N_N : N ; - semitonus_M_N : N ; - semiustulatus_A : A ; - semiustus_A : A ; - semivir_A : A ; - semivir_M_N : N ; - semivivus_A : A ; - semivocalis_A : A ; - semodius_M_N : N ; - semotus_A : A ; - semoveo_V : V ; - semper_Adv : Adv ; - sempiternalis_A : A ; - sempiternaliter_Adv : Adv ; - sempiterne_Adv : Adv ; - sempiternitas_F_N : N ; - sempiterno_Adv : Adv ; - sempiternus_A : A ; - semuncia_F_N : N ; - semunciarius_A : A ; - semustulatus_A : A ; - semustus_A : A ; - sen_N : N ; - senaculum_N_N : N ; - senariolus_M_N : N ; - senarius_A : A ; - senator_M_N : N ; - senatorius_A : A ; - senatus_A : A ; - senatus_M_N : N ; - senatusconsultum_N_N : N ; - senecta_F_N : N ; - senectus_A : A ; - senectus_F_N : N ; - seneo_V : V ; - senesco_V2 : V2 ; - senex_A : A ; - senex_M_N : N ; - senilis_A : A ; - senio_M_N : N ; - senior_M_N : N ; - senipes_M_N : N ; - senium_N_N : N ; - sensatus_A : A ; - sensibilis_A : A ; - sensibilitas_F_N : N ; - sensiculus_M_N : N ; - sensifer_A : A ; - sensifico_V : V ; - sensilis_A : A ; - sensim_Adv : Adv ; - sensitivus_A : A ; - sensorius_A : A ; - sensualis_A : A ; - sensualitas_F_N : N ; - sensum_N_N : N ; - sensus_M_N : N ; - sententia_F_N : N ; - sententio_V : V ; - sententiola_F_N : N ; - sententiose_Adv : Adv ; - sententiosus_A : A ; - senticetum_N_N : N ; - sentimentalis_A : A ; - sentimentum_N_N : N ; - sentina_F_N : N ; - sentio_V2 : V2 ; - sentis_M_N : N ; - sentisco_V : V ; - sentus_A : A ; - senus_A : A ; - seorsum_Adv : Adv ; - seorsus_Adv : Adv ; - separ_A : A ; - separatim_Adv : Adv ; - separatio_F_N : N ; - separatista_M_N : N ; - separo_V : V ; - sepeleo_V2 : V2 ; - sepelio_V2 : V2 ; - sepelo_V2 : V2 ; - sepes_A : A ; - sepes_F_N : N ; - sepia_F_N : N ; - sepiaceus_A : A ; - sepio_V2 : V2 ; - seplasium_N_N : N ; - sepono_V2 : V2 ; - sepositus_A : A ; - septemfluus_A : A ; - septemgeminus_A : A ; - septemplex_A : A ; - septempliciter_Adv : Adv ; - septemtrio_M_N : N ; - septemtrional_N_N : N ; - septemtrionalis_A : A ; - septemtrionarius_A : A ; - septemviralis_A : A ; - septemviratus_M_N : N ; - septenarius_A : A ; - septentrio_M_N : N ; - septentrional_N_N : N ; - septentrionalis_A : A ; - septentrionarius_A : A ; - septicaemia_F_N : N ; - septicollis_A : A ; - septicus_A : A ; - septies_Adv : Adv ; - septifarius_A : A ; - septiforis_A : A ; - septiformis_A : A ; - septiformus_A : A ; - septimanus_A : A ; - septimanus_M_N : N ; - septimplex_A : A ; - septimpliciter_Adv : Adv ; - septuagenarius_A : A ; - septuennis_A : A ; - septunx_M_N : N ; - septuplum_Adv : Adv ; - septuplum_N_N : N ; - septuplus_A : A ; - sepulchrum_N_N : N ; - sepulcralis_A : A ; - sepulcretum_N_N : N ; - sepulcrum_N_N : N ; - sepultura_F_N : N ; - sepultus_A : A ; - sepultus_M_N : N ; - sequax_A : A ; - sequela_F_N : N ; - sequens_A : A ; - sequentia_F_N : N ; - sequester_M_N : N ; - sequestra_F_N : N ; - sequestrarius_A : A ; - sequestratim_Adv : Adv ; - sequestratio_F_N : N ; - sequestre_N_N : N ; - sequestro_V2 : V2 ; - sequius_Adv : Adv ; - sequor_V : V ; - sera_F_N : N ; - seraphicus_A : A ; - seraphicus_M_N : N ; - seraphinus_A : A ; + scrobis_M_N : N ; -- [XXXDX] :: ditch, trench; dike; + scrofa_F_N : N ; -- [XAXCO] :: sow; (esp. one used for breeding); + scrofinus_A : A ; -- [XAXNO] :: of/derived from a sow; + scrofipascus_A : A ; -- [XAXNO] :: that feeds sows; + scrofipascus_M_N : N ; -- [BXXFS] :: pig breeder; + scrotum_N_N : N ; -- [XBXDO] :: scrotum; + scrupeda_F_N : N ; -- [XXXFS] :: hobbling; shambling (walk); + scrupeus_A : A ; -- [XXXDX] :: composed of sharp rocks; + scruposus_A : A ; -- [XXXEC] :: of sharp stones, rugged, rough; + scrupula_F_N : N ; -- [XXXEC] :: anxiety, doubt, scruple; + scrupulositas_F_N : N ; -- [FXXEM] :: rough spot, jagged edge; hesitation; + scrupulosus_A : A ; -- [XXXDX] :: careful, accurate, scrupulous; + scrupulum_N_N : N ; -- [XSXCO] :: unit of weight (1/24 unica, 1/288 libra); 1/288 of any unit (esp. iugerum); + scrupulus_M_N : N ; -- [XXXEC] :: small stone; fraction of an ounce (Erasmus); scruple; + scrupus_F_N : N ; -- [XXXEC] :: worry, anxiety; + scrupus_M_N : N ; -- [XXXEC] :: sharp stone; + scruta_F_N : N ; -- [EXXEP] :: pot; + scrutabilis_A : A ; -- [FXXEM] :: searchable; + scrutamen_N_N : N ; -- [FXXEM] :: scrutiny; + scrutaria_F_N : N ; -- [XXXFK] :: second-hand good; flea-market; + scrutarius_M_N : N ; -- [XXXEO] :: junk merchant; second hand dealer; broker (Cal); + scrutatio_F_N : N ; -- [FXXEM] :: investigating, vetting, scrutinizing; + scrutillus_M_N : N ; -- [XXXFO] :: kind of sausage; + scrutinium_N_N : N ; -- [XXXEO] :: search (record), examination (for hidden); inquiry/investigation/scrutiny (L+S); + scrutino_V2 : V2 ; -- [EXXDP] :: investigate; examine closely/strictly; scrutinize; + scrutinor_V : V ; -- [EXXDP] :: investigate; examine closely/strictly; scrutinize; + scruto_V2 : V2 ; -- [DXXDS] :: search/probe/examine carefully/thoroughly; explore/scan/scrutinize/investigate; + scrutor_M_N : N ; -- [XXXCO] :: searcher/investigator/inquirer; scrutinizer/watcher/examiner; who looks closely; + scrutor_V : V ; -- [XXXAO] :: search/probe/examine carefully/thoroughly; explore/scan/scrutinize/investigate; + scrutum_N_N : N ; -- [XXXCS] :: trash (pl.), old/broken stuff; job lot; trumpery; + sculpo_V2 : V2 ; -- [XTXCO] :: carve, engrave (inscription/face); fashion/work into form by carving/engraving; + sculponea_F_N : N ; -- [XXXDS] :: cheap wooden shoe; + sculptilis_A : A ; -- [XXXDX] :: engraved; + sculptor_M_N : N ; -- [XDXEC] :: sculptor; + scurra_M_N : N ; -- [XXXBO] :: fashionable idler, man about town, rake; professional buffoon, comedian/clown; + scurrilitas_F_N : N ; -- [XXXEO] :: buffoonery; quality of a scurra, untimely/offensive humor; + scurriliter_Adv : Adv ; -- [XXXFO] :: in the manner of a scurra, with untimely/offensive humor/buffoonery; + scurror_V : V ; -- [XXXFO] :: play the "man about town"; dine off one's jokes; + scutale_N_N : N ; -- [XXXFO] :: device for controlling missile in type of sling; thong of a sling (L+S); + scutarior_M_N : N ; -- [EXXDW] :: shield-bearer; + scutarius_A : A ; -- [EWXFS] :: of/on/belonging to shield; + scutarius_M_N : N ; -- [XWXFO] :: shield maker; guard equipped with shield/scutum (Late empire) (L+S); + scutatus_A : A ; -- [XXXDX] :: armed with a long wooden shield; + scutella_F_N : N ; -- [XXXEO] :: saucer, small shallow/flat dish/pan; dish used as stand for other vessels; + scutellum_N_N : N ; -- [GXXEK] :: escutcheon; + scutica_F_N : N ; -- [XXXDX] :: strap; instrument of punishment; lash, whip; + scutra_F_N : N ; -- [XXXEO] :: shallow/flat dish/pan/tray/platter; (square); shovel (Vulgate); + scutula_F_N : N ; -- [XXXEO] :: wooden cylinder; roller; secret writing/letter (L+S); cylindrical snake; + scutulata_F_N : N ; -- [XXXDS] :: checked garment; + scutulatum_N_N : N ; -- [XXXEC] :: checked cloths (pl.), checks; + scutulatus_A : A ; -- [GXXEK] :: cross-ruled; + scutulum_N_N : N ; -- [XXXEO] :: little shield; [~operta => shoulder blades]; + scutum_N_N : N ; -- [XXXBX] :: shield; (heavy shield of Roman legion infantry); + scymnus_M_N : N ; -- [XAXEC] :: cub, whelp; + scyphus_M_N : N ; -- [FXXCM] :: bowl, goblet, cup; communion cup; two-handled drinking vessel; + scytala_F_N : N ; -- [XXXEO] :: wooden cylinder; roller; secret writing/letter (L+S); cylindrical snake; + scytale_F_N : N ; -- [XXXEO] :: wooden cylinder; roller; secret writing/letter (L+S); cylindrical snake; + sebboleth_N : N ; -- [EEQFW] :: scibboleth (grain ear) which mispronounciation Gileadites uncovered Ephraimite; + sebum_N_N : N ; -- [XXXDX] :: suet, tallow, hard animal fat; + secamentum_N_N : N ; -- [XTXNO] :: piece of carpentry; + secedo_V2 : V2 ; -- [XXXDX] :: withdraw; rebel; secede; + secerno_V2 : V2 ; -- [XXXDX] :: separate; + secespita_F_N : N ; -- [XEXEO] :: type of sacrificial knife; + secessio_F_N : N ; -- [XXXDX] :: revolt, secession; + secessus_M_N : N ; -- [XXXDX] :: withdrawal; secluded place; + secius_Adv : Adv ; -- [XXXDX] :: otherwise, none the less; + secludo_V2 : V2 ; -- [XXXDX] :: shut off; + seclusus_A : A ; -- [XXXDS] :: remote; + seco_V2 : V2 ; -- [XXXAO] :: cut, sever; decide; divide in two/halve/split; slice/chop/cut up/carve; detach; + secor_V : V ; -- [XXXAO] :: |support/back/side with; obey, observe; pursue/chase; range/spread over; attain; + secretarium_N_N : N ; -- [EEXDS] :: |council chamber; conclave, consistory; private chapel; retirement place; + secretarius_M_N : N ; -- [GXXEK] :: secretary; + secretio_F_N : N ; -- [XXXFS] :: separation; + secreto_Adv : Adv ; -- [XXXDX] :: separately; secretly, in private; + secretum_N_N : N ; -- [XXXDX] :: secret, mystic rite, haunt; + secretus_A : A ; -- [XXXAX] :: separate, apart (from); private, secret; remote; hidden; + sectarius_A : A ; -- [XXXDS] :: castrated; gelded; + sectilis_A : A ; -- [XXXDX] :: capable of being cut into thin layers; + sectio_F_N : N ; -- [XBXBO] :: cutting/severing; mowing; surgery; castration; disposal/buying up booty; + sectivus_A : A ; -- [GXXEK] :: severed; sectioned; + sector_V : V ; -- [XXXBX] :: follow continually; pursue; pursue with punishment; hunt out; run after; + sectura_F_N : N ; -- [XXXDX] :: quarry (pl.); + secubitus_M_N : N ; -- [XXXDX] :: sleeping apart from one's spouse or lover; + secubo_V : V ; -- [XXXDX] :: sleep apart from one's spouse or lover; sleep alone; live alone; + secularitas_F_N : N ; -- [EEXCM] :: worldliness; worldly life; + seculariter_Adv : Adv ; -- [EEXCM] :: worldly, in a worldly fashion; + secularus_A : A ; -- [EEXCM] :: secular/temporal/worldly (as opposed to ecclesiastical); lay, laic; + secularus_M_N : N ; -- [EEXCM] :: layman (as opposed to ecclesiastical); + seculis_A : A ; -- [EEXCM] :: secular/temporal/earthly/worldly; transitory; pagan; + seculizo_V : V ; -- [EEXCM] :: live a worldly life; + seculum_N_N : N ; -- [EEXCM] :: world/universe; secular/temporal/earthly/worldly affairs/cares/temptation; + secum_N_N : N ; -- [XXXDS] :: suet; tallow; hard animal fat; (sebum); + secunda_F_N : N ; -- [GXXEK] :: second (measure of time); + secundanus_M_N : N ; -- [XXXDX] :: soldiers (pl.) of the second legion; + secundarius_A : A ; -- [XXXES] :: second-rate; of the second rank; + secundo_V2 : V2 ; -- [XXXCO] :: make conditions favorable (winds/deities), favor; adjust, adapt; prosper; + secundogenitus_A : A ; -- [FXXFM] :: second-born; + secundum_Acc_Prep : Prep ; -- [XXXBS] :: after; according to; along/next to, following/immediately after, close behind; + secundum_N_N : N ; -- [XXXCS] :: good luck/fortune (pl.), success; favorable circumstances; + secundus_A : A ; -- [XXXAX] :: |favorable, fair (wind/current); fortunate, propitious; smooth, w/the grain; + securicula_F_N : N ; -- [XXXFS] :: hatchet; hatchet-shaped mortise; + securifer_A : A ; -- [XXXDX] :: armed with axe; + securiger_A : A ; -- [XXXDX] :: armed with axe; + securis_F_N : N ; -- [XXXBO] :: |ax (bundled in fasces); sovereignty (usu. pl.), authority, domain, supremacy; + securitas_F_N : N ; -- [XXXDX] :: freedom from care; carelessness; safety, security; + securus_A : A ; -- [XXXAX] :: secure, safe, untroubled, free from care; + secus_Acc_Prep : Prep ; -- [XXXCO] :: by, beside, alongside; in accordance with; + secus_Adv : Adv ; -- [XXXAO] :: otherwise; differently, in another way; contrary to what is right/expected; + secus_N : N ; -- [XBXDS] :: sex; + secutor_M_N : N ; -- [XXXDS] :: pursuer; attendant; + secuutus_M_N : N ; -- [FXXEN] :: follower, pursuer; + sed_Conj : Conj ; -- [XXXAX] :: but, but also; yet; however, but in fact/truth; not to mention; yes but; + sedatio_F_N : N ; -- [XXXDS] :: calming; + sedatus_A : A ; -- [XXXDX] :: calm, untroubled; quiet; + sedda_F_N : N ; -- [AXXBS] :: |sedan/carrying chair; toilet seat, stool; work-stool; coach/wagon seat; saddle; + sedecula_F_N : N ; -- [XXXEC] :: low seat, stool; + sedentarius_A : A ; -- [XXXDS] :: sitting; sedentary; + sedeo_V : V ; -- [XXXAX] :: sit, remain; settle; encamp; + sedes_F_N : N ; -- [XXXAX] :: seat; home, residence; settlement, habitation; chair; + sedile_N_N : N ; -- [XXXDX] :: seat, chair, bench, stool; that which may be sat on; armchair; + seditio_F_N : N ; -- [XXXBX] :: sedition, riot, strife,rebellion; + seditiosus_A : A ; -- [XXXDX] :: mutinous; troubled; quarrelsome; + sedo_V : V ; -- [XXXDX] :: settle, allay; restrain; calm down; + seduco_V2 : V2 ; -- [XXXDX] :: lead away, lead apart; lead astray, seduce; + seductio_F_N : N ; -- [XXXDS] :: leading aside; separation; E:leading astray; seduction; + seductor_M_N : N ; -- [EEXDX] :: seducer (eccl.); + seductus_A : A ; -- [XXXDX] :: distant; retired, secluded; + sedulitas_F_N : N ; -- [XXXDX] :: assiduity, painstaking attention (to); + sedulo_Adv : Adv ; -- [XXXDX] :: carefully; + sedulus_A : A ; -- [XXXBX] :: attentive, painstaking, sedulous; + seges_F_N : N ; -- [XXXBX] :: grain field; crop; + segestra_F_N : N ; -- [EXXFS] :: bad-weather-covering; + segestre_N_N : N ; -- [EXXFS] :: bad-weather-covering; + segmentatus_A : A ; -- [XXXEC] :: adorned with borders or patches; + segmentum_N_N : N ; -- [XXXEC] :: cutting, shred; borders/patches (pl.) of purple or gold; + segnipes_A : A ; -- [XXXEC] :: slow-footed; + segnis_A : A ; -- [XXXAO] :: slow, sluggish, torpid, inactive; slothful, unenergetic; slow moving, slow; + segnitas_F_N : N ; -- [XXXEO] :: sloth, sluggishness; + segniter_Adv : Adv ; -- [XXXBO] :: half-heartedly; without spirit/energy, feebly; [nihlo ~ius => no less actively]; + segnitia_F_N : N ; -- [XXXCO] :: sloth, sluggishness, inertia; weakness, feebleness; disinclination for action; + segnities_F_N : N ; -- [XXXCO] :: sloth, sluggishness, inertia; weakness, feebleness; disinclination for action; + segrego_V : V ; -- [XXXDX] :: remove, separate; + seichus_M_N : N ; -- [GXXEK] :: sheik; + seisina_F_N : N ; -- [FLXFJ] :: seisin; possession as freehold; + seisitus_A : A ; -- [FLXFJ] :: seized; taken in seisin; + seiugatus_A : A ; -- [XXXEC] :: separated; + seiugis_M_N : N ; -- [XXXEC] :: chariot drawn by six horses; + seiunctim_Adv : Adv ; -- [XXXEC] :: separately; + seiunctio_F_N : N ; -- [XXXFS] :: separation; + sejungo_V2 : V2 ; -- [XXXDX] :: separate; exclude; + selectio_F_N : N ; -- [XXXEC] :: choosing out, selection; + selectivus_A : A ; -- [GXXEK] :: selective; + selego_V2 : V2 ; -- [XXXDO] :: select, choose, pick out; weed out; + selibra_F_N : N ; -- [XXXDX] :: half-pound; + seligo_V2 : V2 ; -- [XXXCO] :: select, choose, pick out; weed out; + seliquastrum_N_N : N ; -- [XXXEO] :: seat, kind of seat/stool; + sella_F_N : N ; -- [XXXBO] :: |sedan/carrying chair; toilet seat, stool; work-stool; coach/wagon seat; saddle; + sellaria_F_N : N ; -- [XXXDS] :: sitting/drawing-room. place w/seats; debauchery; prostitute, public courtesan; + sellariolus_A : A ; -- [XXXFO] :: of/for sitting, equipped w/stools (not couches); (like common diningroom); + sellaris_A : A ; -- [DXXES] :: chair-; of a chair/seat; furnished w/saddles; + sellaris_M_N : N ; -- [DXXFS] :: saddle; + sellarium_N_N : N ; -- [XXXEO] :: privy, toilet; outhouse; + sellarius_M_N : N ; -- [XXXEO] :: male prostitute (on a couch); member of chariot team (w/unknown function); + sellisternium_N_N : N ; -- [XEXEO] :: religious banquet w/seats for goddesses; religious banquets (pl.) for goddesses; + sellula_F_N : N ; -- [XXXEO] :: little chair/seat; stool (L+S); sedan chair; + sellularius_A : A ; -- [XXXEO] :: sedentary; engaged in a sedentary occupation/trade; of a chair/stool; + semanticus_A : A ; -- [GXXEK] :: semantics; + semaphorum_N_N : N ; -- [GXXEK] :: traffic signal; + semen_N_N : N ; -- [XXXAX] :: seed; + semenstris_A : A ; -- [XXXDX] :: half-yearly; of six month duration; + sementerium_N_N : N ; -- [FXXEM] :: cemetery; + sementifer_A : A ; -- [XAXEC] :: seed-bearing, fruitful; + sementis_F_N : N ; -- [XXXDX] :: sowing, planting; + sementivum_N_N : N ; -- [XAXEO] :: crops (pl.) sown in normal sowing time (for Romans late autumn); + sementivus_A : A ; -- [XAXCO] :: of sowing/seed-time; [feriae ~ => festival after sowing; pirum ~ => late pear]; + semermis_A : A ; -- [XWXDO] :: half-armed; badly equipped; + semermus_A : A ; -- [XWXDO] :: half-armed; badly equipped; + semestris_A : A ; -- [XXXDX] :: half-yearly; of six months' duration; + semesus_A : A ; -- [XXXDX] :: half-eaten; + semiadapertus_A : A ; -- [XXXDX] :: half-open; + semianimis_A : A ; -- [XXXDX] :: half-alive; + semianimus_A : A ; -- [XXXDX] :: half-alive; + semiapertus_A : A ; -- [XXXDX] :: half-open; + semibos_A : A ; -- [XYXEO] :: half-bull/ox; (the Minotaur); + semibos_M_N : N ; -- [XYXES] :: half-bull/ox; (the Minotaur); + semicaper_A : A ; -- [XYXEO] :: half-goat (Pan, Satyrs); of a Faun (L+S); + semicaper_M_N : N ; -- [XYXES] :: half-goat (Pan, Satyrs); a Faun (L+S); + semicinctium_N_N : N ; -- [XXXEO] :: narrow girdle; semi-girdle (L+S); narrow apron; + semicintium_N_N : N ; -- [EXXFW] :: narrow girdle; semi-girdle (L+S); narrow apron; + semicircumferentia_F_N : N ; -- [FXXFM] :: semi-circumference; + semicoctus_A : A ; -- [XXXFS] :: half-cooked; + semicolon_N_N : N ; -- [GGXEK] :: semicolon; + semicorda_F_N : N ; -- [FSXEZ] :: semicord; semi-chord of circle (mathematics); + semicrematus_A : A ; -- [XXXDX] :: half-burned; + semicremus_A : A ; -- [XXXDX] :: half-burned; + semicubitalis_A : A ; -- [XSXEC] :: half cubit long; + semideus_A : A ; -- [XXXEC] :: half-divine; + semideus_M_N : N ; -- [XXXEC] :: demigod; + semidiameter_M_N : N ; -- [FSXEZ] :: semi-diameter; + semiditonus_M_N : N ; -- [FDXEM] :: minor third; + semidoctus_A : A ; -- [XXXEC] :: half-taught; + semiermis_A : A ; -- [XWXDO] :: half-armed; badly equipped; + semiermus_A : A ; -- [XWXDO] :: half-armed; badly equipped; + semiesus_A : A ; -- [XXXDS] :: half-eaten; (semesus); + semifactus_A : A ; -- [XXXEC] :: half-done, half-finished; + semifer_A : A ; -- [XXXDX] :: half-wild; half-monster; + semigermanus_A : A ; -- [XXXEC] :: half-German; + semigravis_A : A ; -- [XXXEC] :: half-overcome; + semigro_V : V ; -- [XXXFS] :: go away; + semihians_A : A ; -- [XXXDX] :: half-open; + semihomo_M_N : N ; -- [XXXDX] :: half-man, half-human (half monster); + semihora_F_N : N ; -- [XXXEC] :: half hour; + semilacer_A : A ; -- [XXXDX] :: half-mangled; + semilautus_A : A ; -- [XXXFS] :: half-washed; + semiliber_A : A ; -- [XXXDS] :: half-free; + semilixa_M_N : N ; -- [XXXEC] :: half sutler, "little more than a camp follower"; + semimarinus_A : A ; -- [XXXDX] :: half belonging to the_sea; + semimas_A : A ; -- [XXXDS] :: emasculated; + semimas_M_N : N ; -- [XXXDX] :: half-male; hermaphrodite; unmanned/emasculated person; + seminarista_M_N : N ; -- [GXXEK] :: seminarist; one who goes to seminars; + seminarium_N_N : N ; -- [GXXEK] :: seminary; + seminator_M_N : N ; -- [XXXDS] :: originator; producer; + seminex_A : A ; -- [XXXDX] :: half-dead; + seminiverbius_M_N : N ; -- [EXXFP] :: babbler; word-sower (Rhiems); + semino_V : V ; -- [XXXDX] :: plant, sow; + seminudus_A : A ; -- [XXXDX] :: half-naked; + semiologia_F_N : N ; -- [GSXEK] :: semiology; + semiophorum_N_N : N ; -- [GXXEK] :: traffic signal; + semipaganus_C_N : N ; -- [XXXFS] :: half-rustic; + semipes_M_N : N ; -- [FDXES] :: half-foot/pes; half foot of ground; half metrical foot; half lame (L+S); + semiplenus_A : A ; -- [XXXDX] :: half-full; half-manned (ships), half-strength (military units); + semiputatus_A : A ; -- [XXXDX] :: half-pruned; + semirasus_A : A ; -- [XXXDS] :: half-shaven; + semireductus_A : A ; -- [XXXDX] :: half bent back; + semirefectus_A : A ; -- [XXXEC] :: half-repaired; + semirefetcus_A : A ; -- [XXXDX] :: half-repaired; + semirutus_A : A ; -- [XXXDX] :: half-ruined or demolished; + semis_M_N : N ; -- [XXXDX] :: half as; half; half of any unit; 6 percent per annum (1/2% per month); + semisepultus_A : A ; -- [XXXDX] :: half-buried; + semisomnus_A : A ; -- [XXXDX] :: half-asleep, drowsy; + semisos_M_N : N ; -- [XXXDX] :: half as; half; half of any unit; 6 percent per annum (1/2% per month); + semisupinus_A : A ; -- [XXXDX] :: half-lying on one's back; + semita_F_N : N ; -- [XXXDX] :: path; + semitalis_A : A ; -- [XXXEC] :: of the footpaths; + semitarius_A : A ; -- [XXXEC] :: of the footpaths; + semitonium_N_N : N ; -- [DDXFS] :: semi-tone; half-tone; + semitonus_M_N : N ; -- [XDXET] :: semitone; (musical); + semiustulatus_A : A ; -- [XXXEC] :: half-burnt; + semiustus_A : A ; -- [XXXDX] :: half-burnt, singed; + semivir_A : A ; -- [XXXDX] :: effeminate; + semivir_M_N : N ; -- [XXXDX] :: half man; + semivivus_A : A ; -- [XXXDX] :: half-alive, almost dead; + semivocalis_A : A ; -- [XXXEZ] :: half-sounding; semi-vocal; G:vowel (Collins); + semodius_M_N : N ; -- [XSICO] :: Roman dry measure; (1/2 modus, 2 gallons); vessel of this capacity; + semotus_A : A ; -- [XXXDX] :: distant, remote; + semoveo_V : V ; -- [XXXES] :: separate, set aside (Collins); remove, set apart, isolate (Nelson); + semper_Adv : Adv ; -- [XXXAX] :: always; + sempiternalis_A : A ; -- [EEXDP] :: everlasting; + sempiternaliter_Adv : Adv ; -- [EEXFP] :: everlastingly; perpetually; + sempiterne_Adv : Adv ; -- [XXXEO] :: eternally, perpetually, everlastingly, permanently; + sempiternitas_F_N : N ; -- [XXXFO] :: eternity; endless existence; perpetuity; + sempiterno_Adv : Adv ; -- [XXXEO] :: eternally, perpetually, everlastingly, permanently; + sempiternus_A : A ; -- [XXXCO] :: perpetual/everlasting/permanent/eternal; lasting forever/for relevant period; + semuncia_F_N : N ; -- [XXXDX] :: twenty-fourth part (of a pound, etc); a minimal amount; + semunciarius_A : A ; -- [XXXEC] :: of the fraction 1/24; + semustulatus_A : A ; -- [XXXEC] :: half-burnt; + semustus_A : A ; -- [XXXDX] :: half-burnt, singed; + sen_N : N ; -- [DEQEW] :: sin, shin; (21st letter of Hebrew alphabet); (transliterate as S and SH); + senaculum_N_N : N ; -- [XXXEC] :: open space in the Forum, used by the Senate; + senariolus_M_N : N ; -- [XPXFS] :: little trimeter; small verse of six feet; + senarius_A : A ; -- [XXXEC] :: composed of six in a group; + senator_M_N : N ; -- [XXXDX] :: senator; + senatorius_A : A ; -- [XXXDX] :: of a senator,senatorial; + senatus_A : A ; -- [GXXFK] :: Sienna-earth-colored; + senatus_M_N : N ; -- [XXXAX] :: senate; + senatusconsultum_N_N : N ; -- [XLXCO] :: recommendation of Roman Senate to magistrate; Senate's decision; + senecta_F_N : N ; -- [XXXCS] :: old age; extreme old age; senility; old men collectively; shed snake skin; + senectus_A : A ; -- [XXXES] :: very old, aged; + senectus_F_N : N ; -- [XXXAX] :: old age; extreme age; senility; old men; gray hairs; shed snake skin; + seneo_V : V ; -- [XXXDX] :: be old; + senesco_V2 : V2 ; -- [XXXDX] :: grow old; grow weak, be in a decline; become exhausted; + senex_A : A ; -- [XXXAX] :: aged, old; [senior => Roman over 45]; + senex_M_N : N ; -- [XXXDX] :: old man; + senilis_A : A ; -- [XXXDX] :: senile, aged; + senio_M_N : N ; -- [XXXES] :: six on a die; + senior_M_N : N ; -- [XXXDX] :: older/elderly man, senior; (in Rome a man over 45); + senipes_M_N : N ; -- [FXXEN] :: steed; (six-foot); + senium_N_N : N ; -- [XXXDX] :: condition of old age; melancholy, gloom; + sensatus_A : A ; -- [EXXEP] :: intelligent; + sensibilis_A : A ; -- [XXXDX] :: perceptible, sensible; detectable/knowable by senses; capable of sensation; + sensibilitas_F_N : N ; -- [GXXEK] :: sensitivity; + sensiculus_M_N : N ; -- [XXXEC] :: little sentence; + sensifer_A : A ; -- [XXXEC] :: producing sensation; + sensifico_V : V ; -- [GXXEK] :: sensitize; + sensilis_A : A ; -- [XXXES] :: perceptible; having sensation (Collins); sensitive (Nelson); + sensim_Adv : Adv ; -- [XXXDX] :: slowly, gradually, cautiously; + sensitivus_A : A ; -- [FEXDF] :: sensitive, detectable/knowing through the senses, perceiving; + sensorius_A : A ; -- [GXXEK] :: sensory; + sensualis_A : A ; -- [FXXEF] :: sensual; desiring sensually; belonging to sensual desire; + sensualitas_F_N : N ; -- [FXXDF] :: sensuality; + sensum_N_N : N ; -- [XXXFS] :: thought; + sensus_M_N : N ; -- [XXXAX] :: feeling, sense; + sententia_F_N : N ; -- [XXXAX] :: opinion, feeling, way of thinking; thought, meaning, sentence/period; purpose; + sententio_V : V ; -- [XXXFM] :: decree; L:pronounce sentence; + sententiola_F_N : N ; -- [XXXEC] :: short sentence, maxim, aphorism; + sententiose_Adv : Adv ; -- [XXXEC] :: pithily; + sententiosus_A : A ; -- [XXXEC] :: pithy, sententious; + senticetum_N_N : N ; -- [XXXEC] :: thorn-brake; + sentimentalis_A : A ; -- [GXXEK] :: sentimental; + sentimentum_N_N : N ; -- [GXXEK] :: feeling, opinion; + sentina_F_N : N ; -- [XXXDX] :: bilgewater; scum or dregs of society; + sentio_V2 : V2 ; -- [XXXAX] :: perceive, feel, experience; think, realize, see, understand; + sentis_M_N : N ; -- [XXXDX] :: thorn, briar; + sentisco_V : V ; -- [XXXEC] :: begin to perceive; + sentus_A : A ; -- [XXXDX] :: rough, rugged, uneven; + senus_A : A ; -- [XXXDX] :: six each (pl.); + seorsum_Adv : Adv ; -- [XXXDX] :: separately, apart from the rest; + seorsus_Adv : Adv ; -- [XXXDX] :: separately, apart from the rest; + separ_A : A ; -- [XXXDX] :: separate, distinct; + separatim_Adv : Adv ; -- [XXXDX] :: apart, separately; + separatio_F_N : N ; -- [XXXCO] :: separation; division; severing; + separatista_M_N : N ; -- [GXXEK] :: separatist; + separo_V : V ; -- [XXXBX] :: divide, distinguish; separate; + sepeleo_V2 : V2 ; -- [EXXFW] :: bury/inter; (Romans cremate + inter ashes); submerge, overcome; suppress; ruin; + sepelio_V2 : V2 ; -- [XXXBO] :: bury/inter; (Romans cremate + inter ashes); submerge, overcome; suppress; ruin; + sepelo_V2 : V2 ; -- [DXXES] :: bury/inter; (Romans cremate + inter ashes); submerge, overcome; suppress; ruin; + sepes_A : A ; -- [XXXFO] :: six-footed; + sepes_F_N : N ; -- [XXXCO] :: hedge; fence; anything planted/erected to form surrounding barrier; + sepia_F_N : N ; -- [XXXDX] :: cuttlefish; the secretion of a cuttlefish used as ink, ink; + sepiaceus_A : A ; -- [GXXEK] :: sepia-colored; + sepio_V2 : V2 ; -- [XXXAO] :: |hedge/fence in, surround (w/hedge/wall/fence/barrier/troops); enclose; confine; + seplasium_N_N : N ; -- [XXXDX] :: perfume; Seplasian unguent; + sepono_V2 : V2 ; -- [XXXDX] :: put away from one; disregard; isolate; reserve; + sepositus_A : A ; -- [XXXDS] :: remote; distinct; + septemfluus_A : A ; -- [XXXDX] :: that flows in seven streams ("seven-flowing mouth of the Nile"); + septemgeminus_A : A ; -- [XXXDX] :: sevenfold; + septemplex_A : A ; -- [XXXCO] :: sevenfold; of/having seven (layers/mouths, shield w/7 layers, river w/7 mouths); + septempliciter_Adv : Adv ; -- [EXXFS] :: sevenfold; seven times; in a sevenfold manner; + septemtrio_M_N : N ; -- [XSXBO] :: Big/Little Dipper (s./pl.); north, north regions/wind; brooch w/7 stones; + septemtrional_N_N : N ; -- [XXXEO] :: northern part of a country/region, the North; + septemtrionalis_A : A ; -- [XXXCO] :: northern; in northern hemisphere (constellations); North (Sea); + septemtrionarius_A : A ; -- [XXXFO] :: northern; northerly; + septemviralis_A : A ; -- [XLXDS] :: septemviral; of the septemviri/board of seven magistrates; + septemviratus_M_N : N ; -- [XLXDS] :: septemvir's office; office of the septemviri/board of seven magistrates; + septenarius_A : A ; -- [XXXEC] :: containing seven; + septentrio_M_N : N ; -- [XSXBO] :: Big/Little Dipper (s./pl.); north, north regions/wind; brooch w/7 stones; + septentrional_N_N : N ; -- [XXXEO] :: northern part of a country/region, the North; northern regions (pl.); + septentrionalis_A : A ; -- [XXXCO] :: northern, north-; in northern hemisphere (constellations); North (Sea); + septentrionarius_A : A ; -- [XXXFO] :: northern; northerly; + septicaemia_F_N : N ; -- [GBXEK] :: septicaemia, septic poisoning; + septicollis_A : A ; -- [XXXDX] :: seven hilled; + septicus_A : A ; -- [XBXES] :: septic; putrefying; + septies_Adv : Adv ; -- [XXXDX] :: seven times; + septifarius_A : A ; -- [EXXFP] :: having seven parts; + septiforis_A : A ; -- [EXXEP] :: with seven holes; + septiformis_A : A ; -- [EXXEP] :: sevenfold; + septiformus_A : A ; -- [FXXEM] :: sevenfold; + septimanus_A : A ; -- [XXXEC] :: of the seventh; + septimanus_M_N : N ; -- [XWXEC] :: soldiers (pl.) of the seventh l + septimplex_A : A ; -- [EXXFW] :: sevenfold; of/having seven (layers/mouths, shield w/7 layers, river w/7 mouths); + septimpliciter_Adv : Adv ; -- [EXXFW] :: sevenfold; seven times; in a sevenfold manner; + septuagenarius_A : A ; -- [XXXES] :: of seventy (70); septuagenarian; + septuennis_A : A ; -- [XXXEC] :: of seven years; + septunx_M_N : N ; -- [XXXEC] :: seven-twelfths; + septuplum_Adv : Adv ; -- [EXXEP] :: in a sevenfold way; + septuplum_N_N : N ; -- [DXXES] :: septuple; seven times as much (Souter); + septuplus_A : A ; -- [EEXDP] :: sevenfold; + sepulchrum_N_N : N ; -- [XXXDX] :: grave, tomb; + sepulcralis_A : A ; -- [XXXDX] :: sepulchral, of the tomb; + sepulcretum_N_N : N ; -- [XXXDX] :: graveyard; + sepulcrum_N_N : N ; -- [XXXAX] :: grave, tomb; + sepultura_F_N : N ; -- [XXXDX] :: burial; grave; + sepultus_A : A ; -- [FXXEN] :: buried; sunk, immersed; (VPAR of sepelio); + sepultus_M_N : N ; -- [XXXDX] :: grave; burial; + sequax_A : A ; -- [XXXCO] :: that follows closely/eagerly; addicted; pliant/tractable, responsive to control; + sequela_F_N : N ; -- [FBXEJ] :: |sequela, morbid secondary affliction (medical); + sequens_A : A ; -- [XXXDS] :: following; next; + sequentia_F_N : N ; -- [XXXDX] :: sequence; + sequester_M_N : N ; -- [XXXCO] :: depositary, third party to hold disputed property; go-between/intermediary; + sequestra_F_N : N ; -- [XXXDO] :: female go-between/intermediary/depositary; + sequestrarius_A : A ; -- [XLXEO] :: sequestering; of sequestration; [actio ~ => suit recovering entrusted property]; + sequestratim_Adv : Adv ; -- [FLXFM] :: in sequestration; separately; + sequestratio_F_N : N ; -- [XXXDS] :: sequestration, deposition with third party; separation; + sequestre_N_N : N ; -- [XXXEO] :: depository, escrow; [~ dare/ponere => place disputed property in trust]; + sequestro_V2 : V2 ; -- [XLXES] :: sequestrate, place/surrender into hands of trustee; separate, remove (L+S); + sequius_Adv : Adv ; -- [XXXDX] :: otherwise; contrary to what is expected/desired; amiss, unfavorably; + sequor_V : V ; -- [XXXAO] :: |support/back/side with; obey, observe; pursue/chase; range/spread over; attain; + sera_F_N : N ; -- [XXXCO] :: bar (for fastening doors); rail of post and rail fence; lock (Cal); + seraphicus_A : A ; -- [FEXFM] :: Seraphic, of/like a Seraphim/angel; epithet of St. Francis/Bonaventura/Teresa; + seraphicus_M_N : N ; -- [EEXEW] :: one angel/seraph-like; zealot; Franciscan friar (Seraphic Father=St. Francis); + seraphinus_A : A ; -- [FEXFM] :: Seraphic, of/like a Seraphim/angel; epithet of St. Francis/Bonaventura/Teresa; 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 ; - serenus_A : A ; - seresco_V : V ; - seria_F_N : N ; - sericaria_F_N : N ; - sericarius_A : A ; - sericarius_M_N : N ; - sericatus_A : A ; - sericum_N_N : N ; - sericus_A : A ; - series_F_N : N ; - serio_Adv : Adv ; - seriola_F_N : N ; - seriose_Adv : Adv ; - seriosius_Adv : Adv ; - seriosus_A : A ; - serius_A : A ; - serius_Adv : Adv ; - serjantia_F_N : N ; - sermo_M_N : N ; - sermocinalis_A : A ; - sermocinor_V : V ; - sermonizo_V : V ; - sermunculus_M_N : N ; - sero_Adv : Adv ; - sero_V2 : V2 ; - serotinus_A : A ; + seren_2_N : N ; -- [XAXNO] :: type of drone/solitary bee/wasp); + serenitas_F_N : N ; -- [XXXDX] :: fine weather; favorable conditions; + sereno_V : V ; -- [XXXDX] :: clear up, brighten; lighten; + serenum_N_N : N ; -- [XXXDX] :: fair weather; + serenus_A : A ; -- [XXXAX] :: clear, fair, bright; serene, tranquil; cheerful, glad; + seresco_V : V ; -- [XXXDX] :: grow dry; + seria_F_N : N ; -- [XXXDX] :: large earthenware jar; + sericaria_F_N : N ; -- [XXXIO] :: silk dealer; woman who deals in silk; + sericarius_A : A ; -- [XXXIO] :: that deals in silk; + sericarius_M_N : N ; -- [XXXIO] :: silk dealer; one who deals in silk; + sericatus_A : A ; -- [XXXFO] :: clothed in silks; + sericum_N_N : N ; -- [XXXDO] :: silk; silk garments/fabric; Chinese goods; + sericus_A : A ; -- [XXXDX] :: silken; + series_F_N : N ; -- [XXXBX] :: row, series, secession, chain, train, sequence, order (gen lacking, no pl.); + serio_Adv : Adv ; -- [XXXDX] :: seriously, in earnest; + seriola_F_N : N ; -- [XXXDS] :: small jar; + seriose_Adv : Adv ; -- [FXXFM] :: seriously; effectually; + seriosius_Adv : Adv ; -- [FXXEM] :: in fuller detail; + seriosus_A : A ; -- [FXXFM] :: serious; + serius_A : A ; -- [XXXDX] :: serious, grave; + serius_Adv : Adv ; -- [XXXDX] :: later, too late; + serjantia_F_N : N ; -- [FLXFJ] :: serjeanty; office of official who enforces laws; feudal tenure for service; + sermo_M_N : N ; -- [XXXDX] :: conversation, discussion; rumor; diction; speech; talk; the word; + sermocinalis_A : A ; -- [FXXEM] :: locational; vocal; speech-; discursive (Red); linguistic; + sermocinor_V : V ; -- [XXXEC] :: converse, talk, discuss; + sermonizo_V : V ; -- [FEXEM] :: preach; + sermunculus_M_N : N ; -- [XXXEC] :: rumor, tittle-tattle; + sero_Adv : Adv ; -- [XXXBO] :: late, at a late hour, tardily; of a late period; too late (COMP); + sero_V2 : V2 ; -- [XXXDX] :: sow, plant; strew, scatter, spread; cultivate; beget, bring forth; + serotinus_A : A ; -- [XXXAO] :: late in coming/happening, belated; deferred/later; late to blossom/fruit (tree); serpens_F_N : N ; -- [XXXAX] :: serpent, snake; - serpens_M_N : N ; - serpentigena_M_N : N ; - serpentipes_A : A ; - serperastrum_N_N : N ; - serpo_V2 : V2 ; - serpyllum_N_N : N ; - serra_F_N : N ; - serracum_N_N : N ; - serratus_A : A ; - serratus_M_N : N ; - serro_V2 : V2 ; - serrula_F_N : N ; - serta_F_N : N ; - sertula_F_N : N ; - sertum_N_N : N ; - sertus_A : A ; - serum_N_N : N ; - serus_A : A ; - serva_F_N : N ; - servabilis_A : A ; - servans_A : A ; - servator_M_N : N ; - servatrix_F_N : N ; - servianus_A : A ; - servilis_A : A ; - servio_V2 : V2 ; - servitium_N_N : N ; - servitudo_F_N : N ; - servitus_F_N : N ; - servo_V : V ; - servolus_M_N : N ; - servula_F_N : N ; - servulus_M_N : N ; - servus_M_N : N ; - sescenaris_A : A ; - sescenarius_A : A ; - sescuncia_F_N : N ; - seselis_F_N : N ; - sesqualter_A : A ; - sesquaquartnarius_A : A ; - sesque_Adv : Adv ; - sesquealter_A : A ; - sesqui_Adv : Adv ; - sesquialter_A : A ; - sesquidecimus_A : A ; - sesquihora_F_N : N ; - sesquimellesimus_A : A ; - sesquimodius_M_N : N ; - sesquinonus_A : A ; - sesquioctavus_A : A ; - sesquiopus_N_N : N ; - sesquipedalis_A : A ; - sesquiplaga_F_N : N ; - sesquiplex_A : A ; - sesquiquartnarius_A : A ; - sesquiquartus_A : A ; - sesquiquintus_A : A ; - sesquiseptimus_A : A ; - sesquisextus_A : A ; - sesquitertius_A : A ; - sesquivicesimus_A : A ; - sessibulum_N_N : N ; - sessilis_A : A ; - sessio_F_N : N ; - sessito_V : V ; - sessiuncula_F_N : N ; - sessorium_N_N : N ; - sestertium_N_N : N ; - sestertius_M_N : N ; - set_Conj : Conj ; - seta_F_N : N ; - setius_Adv : Adv ; - setthim_N : N ; - seu_Conj : Conj ; - severitas_F_N : N ; - severitudo_F_N : N ; - severus_A : A ; - seviratus_M_N : N ; - sevoco_V : V ; - sexagenarius_A : A ; - sexagesimalis_A : A ; - sexangulus_A : A ; - sexcenarius_A : A ; - sexennis_A : A ; - sexprimus_M_N : N ; - sexqualter_A : A ; - sexquaquartnarius_A : A ; - sexquartano_V2 : V2 ; - sexquetertius_A : A ; - sexquialter_A : A ; - sexquintano_V2 : V2 ; - sexquinterno_V2 : V2 ; - sexquiquartnarius_A : A ; - sexquiquartus_A : A ; - sexquitertius_A : A ; - sextadecimanus_M_N : N ; - sextans_M_N : N ; - sextarium_N_N : N ; - sextarius_M_N : N ; - sexticeps_A : A ; - sextula_F_N : N ; - sextusdecimus_A : A ; - sexualis_A : A ; - sexualitas_F_N : N ; - sexus_M_N : N ; - sexus_N : N ; - si_Conj : Conj ; - siban_N : N ; - sibilo_V : V ; - sibilum_N_N : N ; - sibilus_A : A ; - sibilus_M_N : N ; - sic_Adv : Adv ; - sica_F_N : N ; - sicarius_M_N : N ; - siccaneum_N_N : N ; - siccaneus_A : A ; - siccatorium_N_N : N ; - siccitas_F_N : N ; - sicco_V : V ; - siccoculus_A : A ; - siccum_N_N : N ; - siccus_A : A ; - sicera_F_N : N ; - sicera_N_N : N ; - siceras_F_N : N ; - sicilicula_F_N : N ; - sicilicus_A : A ; - sicine_Adv : Adv ; - siclus_M_N : N ; - sicubi_Adv : Adv ; - sicula_F_N : N ; - sicumquam_Conj : Conj ; - sicunde_Adv : Adv ; - sicut_Adv : Adv ; - sicut_Conj : Conj ; - sicuti_Adv : Adv ; - sidereus_A : A ; - sido_V2 : V2 ; - sidus_N_N : N ; - sifo_M_N : N ; - sifonarius_M_N : N ; - sifra_F_N : N ; - sifunculus_M_N : N ; - sifus_M_N : N ; - sigarellum_N_N : N ; - sigarillum_N_N : N ; - sigarum_N_N : N ; - sigillatim_Adv : Adv ; - sigillatus_A : A ; - sigillo_V : V ; - sigillum_N_N : N ; - siglum_N_N : N ; - sigma_N_N : N ; - signaculum_N_N : N ; - signale_N_N : N ; - signanter_Adv : Adv ; - signator_M_N : N ; - signifer_M_N : N ; - significans_A : A ; - significanter_Adv : Adv ; - significantia_F_N : N ; - significatio_F_N : N ; - significo_V : V ; - signo_V : V ; - signum_N_N : N ; - silaba_F_N : N ; - silanus_M_N : N ; - silens_A : A ; - silentiose_Adv : Adv ; - silentiosus_A : A ; - silentium_N_N : N ; - sileo_V : V ; - siler_N_N : N ; - silesco_V2 : V2 ; + serpens_M_N : N ; -- [XXXAX] :: serpent, snake; + serpentigena_M_N : N ; -- [XXXEC] :: sprung from a serpent; + serpentipes_A : A ; -- [XXXEC] :: snake-footed; + serperastrum_N_N : N ; -- [XXXEC] :: bandages (pl.) or knee-splints; + serpo_V2 : V2 ; -- [XXXDX] :: crawl; move slowly on, glide; creep on; + serpyllum_N_N : N ; -- [XXXDX] :: wild thyme; + serra_F_N : N ; -- [XXXDX] :: saw; + serracum_N_N : N ; -- [XXXEO] :: kind of wagon/cart/wain; S:Charles's Wain constellation (Big Dipper); + serratus_A : A ; -- [XXXDO] :: serrated, toothed like a saw; + serratus_M_N : N ; -- [XLXFO] :: coin with notched edges (milled); + serro_V2 : V2 ; -- [DXXDS] :: saw; saw up, saw into pieces; + serrula_F_N : N ; -- [XXXEC] :: little saw; + serta_F_N : N ; -- [XXXEO] :: garland, wreath, festoon; + sertula_F_N : N ; -- [XAXNS] :: clover (species of, Melilotus or Trifolium); melilotus; serta Campanica; + sertum_N_N : N ; -- [XXXCO] :: wreath; chains of flowers (pl.), garlands, festoons; + sertus_A : A ; -- [XXXDX] :: linked, connected; + serum_N_N : N ; -- [XXXDO] :: whey, the watery part of curdled milk; any similar fluid; + serus_A : A ; -- [XXXBX] :: late; too late; slow, tardy; after the expected/proper time; at a late hour; + serva_F_N : N ; -- [XXXDX] :: slave; + servabilis_A : A ; -- [XXXDX] :: capable of being saved; + servans_A : A ; -- [XXXFO] :: ready to maintain (law/principle); + servator_M_N : N ; -- [XXXDX] :: watcher, observer; preserver, savior; + servatrix_F_N : N ; -- [XXXDX] :: female preserver, protecotress; + servianus_A : A ; -- [XLXES] :: Servian; of Servius Sulpitus (jurist); + servilis_A : A ; -- [XXXDX] :: servile, of slaves; + servio_V2 : V2 ; -- [XXXAX] :: serve; be a slave to; with DAT; + servitium_N_N : N ; -- [XXXBX] :: slavery, servitude; slaves; the slave class; + servitudo_F_N : N ; -- [XXXEC] :: slavery, servitude; + servitus_F_N : N ; -- [XXXDX] :: slavery; slaves; servitude; + servo_V : V ; -- [XXXAX] :: watch over; protect, store, keep, guard, preserve, save; + servolus_M_N : N ; -- [XXXDX] :: young (worthless) slave; + servula_F_N : N ; -- [XXXDS] :: young servant girl; + servulus_M_N : N ; -- [XXXES] :: young slave; + servus_M_N : N ; -- [XXXAX] :: slave; servant; + sescenaris_A : A ; -- [XXXEC] :: year and a half old; + sescenarius_A : A ; -- [XXXEC] :: consisting of six hundred; (cohort is six centuries); + sescuncia_F_N : N ; -- [XXXES] :: one-eighth of whole; one-and-half unciae; + seselis_F_N : N ; -- [XAXEC] :: plant, hartwort; + sesqualter_A : A ; -- [ESXEM] :: one-and-a-half times as much; in ratio of 3 to 2; + sesquaquartnarius_A : A ; -- [FSXFM] :: one-and-a-fourth; ratio of 5 to 4; + sesque_Adv : Adv ; -- [XSXEO] :: one and a half times/more; more by half; + sesquealter_A : A ; -- [XSXEO] :: one-and-a-half times as much; in ratio of 3 to 2; + sesqui_Adv : Adv ; -- [XSXEO] :: one and a half times/more; more by half; + sesquialter_A : A ; -- [XSSEO] :: one-and-a-half times as much; in ratio of 3 to 2; + sesquidecimus_A : A ; -- [ESXEP] :: with 11/10; with eleven-tenths; + sesquihora_F_N : N ; -- [XXXEC] :: hour and a half; + sesquimellesimus_A : A ; -- [FXXEM] :: 1500th; fifteen-hundredth; + sesquimodius_M_N : N ; -- [XSXEC] :: modius and a half; (dry measure, about 3 gallons/12000 cc); + sesquinonus_A : A ; -- [ESXEP] :: with 10/9; with ten-ninths; + sesquioctavus_A : A ; -- [XXXEC] :: containing 9/8 of a thing; + sesquiopus_N_N : N ; -- [BXXFS] :: one and half day's work; + sesquipedalis_A : A ; -- [XXXDX] :: of a foot and a half; (of words) foot and half long; + sesquiplaga_F_N : N ; -- [XXXEC] :: blow and a half; + sesquiplex_A : A ; -- [XXXDS] :: one and a half times; + sesquiquartnarius_A : A ; -- [FSXFM] :: one-and-a-fourth; ratio of 5 to 4; + sesquiquartus_A : A ; -- [FSXFM] :: one-and-a-fourth; ratio of 5 to 4; + sesquiquintus_A : A ; -- [ESXDS] :: with 6/5; with six-fifths; + sesquiseptimus_A : A ; -- [FSXFM] :: containing 8/7 of anything; + sesquisextus_A : A ; -- [ESXEP] :: with 7/6; with seven-sixths; + sesquitertius_A : A ; -- [XSXEO] :: containing 4/3 of anything; + sesquivicesimus_A : A ; -- [ESXEP] :: with 21/20; with twentyone-twentieths; + sessibulum_N_N : N ; -- [XXXEO] :: seat; stool, chair; armchair (Cal); + sessilis_A : A ; -- [XXXDX] :: fit for sitting upon; + sessio_F_N : N ; -- [XXXDX] :: sitting; session; + sessito_V : V ; -- [XXXFS] :: sit for long; + sessiuncula_F_N : N ; -- [XXXEC] :: little company or assembly; + sessorium_N_N : N ; -- [XXXDX] :: chair; residence, dwelling, habitation; + sestertium_N_N : N ; -- [XXXDS] :: 1000 sestertii; two and a half feet; (measure of depth/width); + sestertius_M_N : N ; -- [XXXDX] :: sesterce; [semis-tertius => 2 1/2 assses, small silver coin]; + set_Conj : Conj ; -- [XXXBX] :: but, but also; yet; however, but in fact/truth; not to mention; yes but; + seta_F_N : N ; -- [XXXCO] :: hair; (coarse/stiff); bristle; brush; morbid internal growth; fishing-leader; + setius_Adv : Adv ; -- [XXXDX] :: less, worse; [nihilo setius => none the less, nevertheless]; + setthim_N : N ; -- [EXQEW] :: shittim/setim wood, wood of shittah tree/acacia wood; (not the tree); (Hebrew); + seu_Conj : Conj ; -- [XXXAX] :: or if; or; [sive ... sive => whether ... or, either ... or]; + severitas_F_N : N ; -- [XXXDX] :: strictness, severity; + severitudo_F_N : N ; -- [XXXFS] :: severity; austerity; + severus_A : A ; -- [XXXBX] :: stern, strict, severe; grave, austere; weighty, serious; unadorned, plain; + seviratus_M_N : N ; -- [XXXDX] :: sexvirate; the position of a sevir; a member of a board of six men; + sevoco_V : V ; -- [XXXDX] :: call aside; remove; separate; + sexagenarius_A : A ; -- [XXXEC] :: containing sixty; sixty years old; + sexagesimalis_A : A ; -- [GSXEK] :: sexagesimal (math.), proceeding by 60's; based on 60 (parts as seconds/minutes); + sexangulus_A : A ; -- [XXXDX] :: six-cornered, hexagonal; + sexcenarius_A : A ; -- [XXXEC] :: consisting of six hundred; (cohort is six centuries); + sexennis_A : A ; -- [XXXDO] :: six years old; + sexprimus_M_N : N ; -- [XLXDS] :: town magistrate; member of council of six provincial officials; + sexqualter_A : A ; -- [FSXEM] :: one-and-a-half times as much; in ratio of 3 to 2; + sexquaquartnarius_A : A ; -- [FSXFM] :: one-and-a-fourth; ratio of 5 to 4; + sexquartano_V2 : V2 ; -- [FSXFM] :: increase by a quarter; + sexquetertius_A : A ; -- [FSXEO] :: containing 4/3 of anything; + sexquialter_A : A ; -- [FSSFM] :: one-and-a-half times as much; in ratio of 3 to 2; + sexquintano_V2 : V2 ; -- [FSXFM] :: increase by a fifth; + sexquinterno_V2 : V2 ; -- [FSXFM] :: increase by a fifth; + sexquiquartnarius_A : A ; -- [FSXFM] :: one-and-a-fourth; ratio of 5 to 4; + sexquiquartus_A : A ; -- [FSXFM] :: one-and-a-fourth; ratio of 5 to 4; + sexquitertius_A : A ; -- [FSXEM] :: containing 4/3 of anything; + sextadecimanus_M_N : N ; -- [XWXEC] :: soldiers (pl.) of the 16th legion; + sextans_M_N : N ; -- [XXXDX] :: one-sixth of any unit; (1/6); + sextarium_N_N : N ; -- [XTXCO] :: sextarius measure (pint); 1/6 congius (liquid); 1/16 modius (dry); + sextarius_M_N : N ; -- [XTXCO] :: pint (about); 1/6 congius (liquid); 1/16 modius (dry); cup of that size; + sexticeps_A : A ; -- [XXXFS] :: six-peaked; + sextula_F_N : N ; -- [XXXEC] :: one seventy-second; (1/72); + sextusdecimus_A : A ; -- [XXXEC] :: sixteenth; (1/16); + sexualis_A : A ; -- [GBXEK] :: sexual; + sexualitas_F_N : N ; -- [GBXEK] :: sexuality; + sexus_M_N : N ; -- [XXXAS] :: sex; (male or female); (also for plants); sexual organs; + sexus_N : N ; -- [XBXDS] :: sex; (male or female); + si_Conj : Conj ; -- [XXXAX] :: if, if only; whether; [quod si/si quis or quid => but if/if anyone or anything]; + siban_N : N ; -- [EXQEW] :: Sivan/Siban; third month of the Jewish ecclesiastical year; + sibilo_V : V ; -- [XXXDX] :: hiss; hiss at; + sibilum_N_N : N ; -- [XXXDX] :: hissing, whistling; hiss of contempt or disfavor; + sibilus_A : A ; -- [XXXDX] :: hissing; + sibilus_M_N : N ; -- [XXXDX] :: hissing, whistling; hiss of contempt or disfavor; + sic_Adv : Adv ; -- [XXXAX] :: thus, so; as follows; in another way; in such a way; + sica_F_N : N ; -- [XXXDX] :: dagger; + sicarius_M_N : N ; -- [XXXDX] :: murderer, assassin; + siccaneum_N_N : N ; -- [XXXFS] :: dry place; + siccaneus_A : A ; -- [XXXFS] :: dry (of soil); + siccatorium_N_N : N ; -- [GXXEK] :: drier; + siccitas_F_N : N ; -- [XXXDX] :: dryness; drought; dried up condition; + sicco_V : V ; -- [XXXDX] :: dry, drain; exhaust; + siccoculus_A : A ; -- [BXXFS] :: dry-eyed; + siccum_N_N : N ; -- [XXXDX] :: dry land; + siccus_A : A ; -- [XXXBX] :: dry; + sicera_F_N : N ; -- [DXXES] :: cider; kind of spirituous intoxicating drink; fermented liquor, strong drink; + sicera_N_N : N ; -- [EXXFP] :: cider; kind of spirituous intoxicating drink; fermented liquor, strong drink; + siceras_F_N : N ; -- [DXXEW] :: cider; kind of spirituous intoxicating drink; fermented liquor, strong drink; + sicilicula_F_N : N ; -- [BXXFS] :: little sickle; + sicilicus_A : A ; -- [XXXES] :: Sicilian; + sicine_Adv : Adv ; -- [XXXDX] :: so? thus?; + siclus_M_N : N ; -- [DLQDS] :: shekel; (Jewish coin); + sicubi_Adv : Adv ; -- [XXXDX] :: if anywhere, if at any place; + sicula_F_N : N ; -- [XXXFO] :: small dagger; penis; + sicumquam_Conj : Conj ; -- [XXXFO] :: if ever; [si cumquam => if ever]; + sicunde_Adv : Adv ; -- [XXXDX] :: if from any place or source; + sicut_Adv : Adv ; -- [XXXAX] :: as, just as; like; in same way; as if; as it certainly is; as it were; + sicut_Conj : Conj ; -- [XXXDX] :: as, just as; like; in same way; as if; as it certainly is; as it were; + sicuti_Adv : Adv ; -- [XXXDX] :: as, just as; like; in same way; as if; as it certainly is; as it were; + sidereus_A : A ; -- [XXXBX] :: starry; relating to stars; heavenly; star-like; + sido_V2 : V2 ; -- [XXXDX] :: settle; sink down; sit down; run aground; + sidus_N_N : N ; -- [XXXAX] :: star; constellation; tempest (Vulgate 4 Ezra 15:39); + sifo_M_N : N ; -- [XXXCO] :: siphon; tube for sucking/blowing liquid, straw; fire-engine device; liquid jet; + sifonarius_M_N : N ; -- [XXXIO] :: fireman in charge of a siphon (fire-engine device); + sifra_F_N : N ; -- [GXXEK] :: number; + sifunculus_M_N : N ; -- [XXXEO] :: small tube/pipe (through which water is forced); jet (of a fountain); + sifus_M_N : N ; -- [XXXFO] :: pipe/tube (for distributing water); + sigarellum_N_N : N ; -- [GXXEK] :: cigarette; + sigarillum_N_N : N ; -- [GXXEK] :: cigarillo; + sigarum_N_N : N ; -- [GXXEK] :: cigar; + sigillatim_Adv : Adv ; -- [DXXDS] :: one by one, singly, separately; + sigillatus_A : A ; -- [XXXEC] :: adorned with small figures; + sigillo_V : V ; -- [FLXEM] :: seal; seal-up; confirm; (DEP form also known); + sigillum_N_N : N ; -- [XXXBO] :: seal; statuette; embossed figure, relief; figure in tapestry/from signet ring; + siglum_N_N : N ; -- [EGXFS] :: abbreviation; + sigma_N_N : N ; -- [XXXEC] :: Greek letter sigma; a semicircular dining-couch; + signaculum_N_N : N ; -- [XXXDO] :: seal; + signale_N_N : N ; -- [GXXEK] :: signal; + signanter_Adv : Adv ; -- [EXXES] :: expressly; clearly, distinctly; + signator_M_N : N ; -- [XXXDX] :: witness (to a will, etc); + signifer_M_N : N ; -- [XXXDX] :: standard bearer; + significans_A : A ; -- [XXXDX] :: significant, meaningful; conveying meaning; expressive; + significanter_Adv : Adv ; -- [XXXDX] :: significantly, meaningfully; so as to convey a clear meaning; distinctively; + significantia_F_N : N ; -- [XXXDX] :: significance; indication; the act of conveying meaning/information; + significatio_F_N : N ; -- [XXXDX] :: signal, outward sign; indication, applause; meaning; suggestion, hint; + significo_V : V ; -- [XXXAX] :: signify, indicate, show; + signo_V : V ; -- [XXXBX] :: mark, stamp, designate, sign; seal; + signum_N_N : N ; -- [XWXAX] :: battle standard; indication; seal; sign, proof; signal; image, statue; + silaba_F_N : N ; -- [FGXEM] :: syllable; letter, epistle (Latham); geometric section; + silanus_M_N : N ; -- [XXXEC] :: fountain; + silens_A : A ; -- [XXXDX] :: silent, still; + silentiose_Adv : Adv ; -- [XXXFS] :: silently; + silentiosus_A : A ; -- [XXXFS] :: perfectly still; silent; + silentium_N_N : N ; -- [XXXAX] :: silence; + sileo_V : V ; -- [XXXBX] :: be silent, not to speak (about); be quiet; not to function; + siler_N_N : N ; -- [XAXEC] :: brook-willow; + silesco_V2 : V2 ; -- [XXXDX] :: grow quiet; silex_F_N : N ; -- [XXXBX] :: pebble/stone, flint; boulder, stone; - silex_M_N : N ; - silicernium_N_N : N ; - siliceus_A : A ; - silicia_F_N : N ; - siligineus_A : A ; - siligo_F_N : N ; - siliqua_F_N : N ; - siliquastrum_N_N : N ; - sillaba_F_N : N ; - silphion_N_N : N ; - silphium_N_N : N ; - silpium_N_N : N ; - silus_A : A ; - silva_F_N : N ; - silvanus_M_N : N ; - silvesco_V : V ; - silvester_A : A ; - silvestre_N_N : N ; - silvestris_A : A ; - silvicola_C_N : N ; - silvicolus_A : A ; - silvicultrix_A : A ; - silvifragus_A : A ; - silvosus_A : A ; - sima_F_N : N ; - simenterium_N_N : N ; - simia_C_N : N ; - simila_F_N : N ; - similaginarius_A : A ; - similagineus_A : A ; - similago_F_N : N ; - similax_F_N : N ; - simile_N_N : N ; - similis_A : A ; - similiter_Adv : Adv ; - similitudo_F_N : N ; - similo_V : V ; - siminterium_N_N : N ; - simintorium_N_N : N ; - simiolus_M_N : N ; - simitu_Adv : Adv ; - simius_C_N : N ; - simonia_F_N : N ; - simphonia_F_N : N ; - simplex_A : A ; - simplicitas_F_N : N ; - simpliciter_Adv : Adv ; - simplificatio_F_N : N ; - simplifico_V2 : V2 ; - simplum_N_N : N ; - simpulum_N_N : N ; - simpuvium_N_N : N ; - simul_Adv : Adv ; - simula_F_N : N ; - simulac_Adv : Adv ; - simulacrum_N_N : N ; - simulamen_N_N : N ; - simulans_A : A ; - simulatio_F_N : N ; - simulator_M_N : N ; - simulatque_Adv : Adv ; - simulatrum_N_N : N ; - simulo_V : V ; - simultas_F_N : N ; - simulus_A : A ; - simus_A : A ; - sin_Conj : Conj ; - sinapis_F_N : N ; - sinceris_A : A ; - sinceritas_F_N : N ; - sincerus_A : A ; - sincipitamentum_N_N : N ; - sinciput_N_N : N ; - sindon_F_N : N ; - sine_Abl_Prep : Prep ; - singillatim_Adv : Adv ; - singularis_A : A ; - singularitas_F_N : N ; - singulariter_Adv : Adv ; - singulatim_Adv : Adv ; - singultim_Adv : Adv ; - singultio_V : V ; - singulto_V : V ; - singultus_M_N : N ; - singulus_A : A ; - sinisbrorsus_Adv : Adv ; - sinisbrosus_Adv : Adv ; - sinister_A : A ; - sinistra_F_N : N ; - sinistrorsum_Adv : Adv ; - sinistrorsus_Adv : Adv ; - sinistrosum_Adv : Adv ; - sino_V2 : V2 ; - sinum_N_N : N ; - sinuo_V : V ; - sinuosus_A : A ; - sinus_M_N : N ; - sipar_A : A ; - siparium_N_N : N ; - siparum_N_N : N ; - sipho_M_N : N ; - siphonarius_M_N : N ; - siphunculus_M_N : N ; - siphus_M_N : N ; - sipo_M_N : N ; - sipo_V2 : V2 ; - siponarius_M_N : N ; - sipunculus_M_N : N ; - sipus_M_N : N ; - siquando_Adv : Adv ; - siquidem_Conj : Conj ; - siremps_Adv : Adv ; - sirempse_Adv : Adv ; - sirpea_F_N : N ; - sirpeus_A : A ; - sirpia_F_N : N ; - sirpiculus_A : A ; - sirpiculus_M_N : N ; - sirpius_A : A ; - sirpo_V : V ; - sirpus_M_N : N ; - sirupus_M_N : N ; - sirus_M_N : N ; - sisamum_N_N : N ; - sisinbrium_N_N : N ; - sisto_V2 : V2 ; - sistrum_N_N : N ; - sisymbrium_N_N : N ; - sitarchia_F_N : N ; - sitarcia_F_N : N ; - sitella_F_N : N ; - siticulosus_A : A ; - sitiens_A : A ; - sitio_V2 : V2 ; - sitis_F_N : N ; - sitthim_N : N ; - sittybus_M_N : N ; - situalis_A : A ; - situla_F_N : N ; - situs_A : A ; - situs_M_N : N ; - sive_Conj : Conj ; - smalto_V : V ; - smaltum_N_N : N ; - smaragdachates_F_N : N ; - smaragdinus_A : A ; - smaragdites_A : A ; - smaragdos_M_N : N ; - smaragdus_M_N : N ; - smegma_N_N : N ; - smyrna_F_N : N ; - soboles_F_N : N ; - sobrie_Adv : Adv ; - sobriefactus_A : A ; - sobrietas_F_N : N ; - sobrina_F_N : N ; - sobrinus_M_N : N ; - sobrius_A : A ; - soca_F_N : N ; - socagium_N_N : N ; - socculus_M_N : N ; - soccus_M_N : N ; - socer_M_N : N ; - socia_F_N : N ; - socialis_A : A ; - socialismus_M_N : N ; - socialista_M_N : N ; - socialisticus_A : A ; - socializatio_F_N : N ; - sociennus_M_N : N ; - societas_F_N : N ; - socio_V : V ; - sociofraudus_M_N : N ; - sociologia_F_N : N ; - sociologicus_A : A ; - sociologus_M_N : N ; - socius_A : A ; - socius_M_N : N ; - socolata_F_N : N ; - socolateus_A : A ; - socordia_F_N : N ; - socorditer_Adv : Adv ; - socors_A : A ; - socrus_F_N : N ; - socrus_M_N : N ; - sodalicium_N_N : N ; - sodalicius_A : A ; + silex_M_N : N ; -- [XXXBX] :: pebble/stone, flint; boulder, stone; + silicernium_N_N : N ; -- [XXXEC] :: funeral feast; + siliceus_A : A ; -- [XXXFS] :: siliceous, of/consisting of hard rock/stone; of flint; of limestone (L+S); + silicia_F_N : N ; -- [XAXFS] :: fenugreek plant (Pliny); + siligineus_A : A ; -- [XAXFS] :: wheaten; of wheat; + siligo_F_N : N ; -- [XAXEC] :: wheat; wheaten flour; + siliqua_F_N : N ; -- [XXXDX] :: pod; + siliquastrum_N_N : N ; -- [XXXEO] :: seat, kind of seat/stool; + sillaba_F_N : N ; -- [FGXBO] :: syllable; letter, epistle (Latham); geometric section; + silphion_N_N : N ; -- [XXHDO] :: silphion, fennel-like plant cultivated for its gum; (also called laserpicium); + silphium_N_N : N ; -- [XXHDO] :: silphion, fennel-like plant cultivated for its gum; (also called laserpicium); + silpium_N_N : N ; -- [XXHDO] :: silphion, fennel-like plant cultivated for its gum; (also called laserpicium); + silus_A : A ; -- [XXXEC] :: snub-nosed, pug-nosed; + silva_F_N : N ; -- [XXXAX] :: wood, forest (sylvan); + silvanus_M_N : N ; -- [XXXDX] :: gods (pl.)associated with forest and uncultivated land; + silvesco_V : V ; -- [XAXEC] :: run wild (of a vine), run to wood; + silvester_A : A ; -- [XAXBO] :: wooded, covered with woods; found/situated/living in woodlands; wild, untamed; + silvestre_N_N : N ; -- [XAXCO] :: woodlands (pl.), woods; + silvestris_A : A ; -- [XAXAO] :: wooded, covered with woods; found/situated/living in woodlands; wild, untamed; + silvicola_C_N : N ; -- [XXXDX] :: inhabitants of woodlands, sylvan creatures; + silvicolus_A : A ; -- [XXXDX] :: inhabiting woodlands, sylvan; + silvicultrix_A : A ; -- [XAXEC] :: inhabiting woods; + silvifragus_A : A ; -- [XXXEC] :: shattering the woods; + silvosus_A : A ; -- [XXXEC] :: well wooded; + sima_F_N : N ; -- [XTXIO] :: top molding of a pediment placed above its cornice; ogee (L+S); + simenterium_N_N : N ; -- [FXXEM] :: cemetery; + simia_C_N : N ; -- [XAXCO] :: monkey; ape; (applied to men as term of abuse); + simila_F_N : N ; -- [XAQFO] :: normal flour produced from triticum; finest wheat flour (L+S); + similaginarius_A : A ; -- [XAQIO] :: that makes/deals in similago (flour from triticum; finest wheat flour L+S); + similagineus_A : A ; -- [XAQIO] :: that makes/deals in similago (flour from triticum; finest wheat flour L+S); + similago_F_N : N ; -- [XAQEO] :: normal flour produced from triticum; finest wheat flour (L+S); + similax_F_N : N ; -- [XAXDS] :: bindweed; kind of tree (Pliny gives two tree types); + simile_N_N : N ; -- [XXXDS] :: comparison; parallel; + similis_A : A ; -- [XXXAX] :: like, similar, resembling; + similiter_Adv : Adv ; -- [XXXDX] :: similarly; + similitudo_F_N : N ; -- [XXXDX] :: likeness, imitation; similarity, resemblance; by-word (Plater); parable; + similo_V : V ; -- [XXXAO] :: imitate, copy; pretend (to have/be); look like; simulate; counterfeit; feint; + siminterium_N_N : N ; -- [FXXEM] :: cemetery; + simintorium_N_N : N ; -- [FXXEM] :: cemetery; + simiolus_M_N : N ; -- [XXXEC] :: little ape; + simitu_Adv : Adv ; -- [XXXEC] :: together; + simius_C_N : N ; -- [XAXDS] :: ape; + simonia_F_N : N ; -- [EEXCV] :: simony; buying/selling of a benefice/ecclesiastical position; + simphonia_F_N : N ; -- [XDXCO] :: harmony of sounds; singers/musicians; symphony (L+S); instrument; war signal; + simplex_A : A ; -- [XXXBX] :: single; simple, unaffected; plain; + simplicitas_F_N : N ; -- [XXXDX] :: simplicity, candor; + simpliciter_Adv : Adv ; -- [XXXBO] :: simply/just; w/out complexity; candidly/openly/frankly; innocently; as one item; + simplificatio_F_N : N ; -- [FXXFZ] :: simplification; + simplifico_V2 : V2 ; -- [FXXEE] :: simplify; + simplum_N_N : N ; -- [XXXEC] :: simple sum or number; + simpulum_N_N : N ; -- [XXXDO] :: small ladle (religious ceremony); eyepiece; [fluctus ~o => tempest in teapot]; + simpuvium_N_N : N ; -- [XXXEC] :: sacrificial bowl; + simul_Adv : Adv ; -- [XXXAX] :: at same time; likewise; also; simultaneously; at once; + simula_F_N : N ; -- [XAQFO] :: normal flour produced from triticum; finest wheat flour (L+S); + simulac_Adv : Adv ; -- [XXXDX] :: as soon as, the moment that; + simulacrum_N_N : N ; -- [XXXBX] :: likeness, image, statue; + simulamen_N_N : N ; -- [XXXDX] :: imitation, simulation; + simulans_A : A ; -- [XXXDS] :: imitating; + simulatio_F_N : N ; -- [XXXDX] :: pretense, deceit; + simulator_M_N : N ; -- [XXXDX] :: one who copies or imitates; feigner; + simulatque_Adv : Adv ; -- [XXXDX] :: as soon as, the moment that; + simulatrum_N_N : N ; -- [GTXEK] :: simulator; + simulo_V : V ; -- [XXXAO] :: imitate, copy; pretend (to have/be); look like; simulate; counterfeit; feint; + simultas_F_N : N ; -- [XXXDX] :: enmity, rivalry; hatred; + simulus_A : A ; -- [XXXDX] :: flatnosed, snub-nosed; + simus_A : A ; -- [XBXCO] :: flatnosed, snub-nosed; having flattened nose; flatten/splayed (nose/other); + sin_Conj : Conj ; -- [XXXBX] :: but if; if on the contrary; + sinapis_F_N : N ; -- [XXXEC] :: mustard; + sinceris_A : A ; -- [XXXEO] :: pure, w/no admixture of foreign material; clear/unclouded; free from fever; + sinceritas_F_N : N ; -- [XXXCO] :: integrity, honesty, straightforwardness; soundness, physical wholeness; purity; + sincerus_A : A ; -- [XXXDX] :: clean, pure, uninjured, whole; sound, genuine, truthful, candid, sincere; + sincipitamentum_N_N : N ; -- [BAXFS] :: half-head; half/side of a head (as article of food); smoked cheek of a pig; + sinciput_N_N : N ; -- [XXXCO] :: half/side of a head (as article of food); smoked cheek of a pig; head; brain; + sindon_F_N : N ; -- [XXXFO] :: muslin; woven material of fine texture; fine linen (Vulgate); + sine_Abl_Prep : Prep ; -- [XXXAX] :: without; (sometimes after object); lack; [Johannis sine Terra => John Lackland]; + singillatim_Adv : Adv ; -- [XXXCO] :: one by one, singly, separately; + singularis_A : A ; -- [XXXBX] :: alone, unique; single, one by one; singular, remarkable, unusual; + singularitas_F_N : N ; -- [XXXEZ] :: singularity; + singulariter_Adv : Adv ; -- [XXXDX] :: |particularly; exceedingly; singularly; unusually, remarkably; + singulatim_Adv : Adv ; -- [XXXCO] :: one by one, singly, separately; + singultim_Adv : Adv ; -- [XXXFO] :: sobbingly, with sobs; stammeringly; + singultio_V : V ; -- [XXXFS] :: hiccup; sob; cluck; (see also singulto); + singulto_V : V ; -- [XXXDX] :: catch the breath, gasp; hiccup; sob, utter with sobs; gasp out (one's life); + singultus_M_N : N ; -- [XXXDX] :: sobbing; convulsive catching of breath; + singulus_A : A ; -- [XXXAX] :: apiece (pl.); every; one each/at a time; individual/separate/single; several; + sinisbrorsus_Adv : Adv ; -- [XXXDX] :: to the left; + sinisbrosus_Adv : Adv ; -- [XXXDX] :: to the left; + sinister_A : A ; -- [XXXAX] :: left, improper,adverse; inauspicious; + sinistra_F_N : N ; -- [XXXDX] :: left hand; + sinistrorsum_Adv : Adv ; -- [XXXDX] :: to the left; + sinistrorsus_Adv : Adv ; -- [XXXDX] :: to the left; + sinistrosum_Adv : Adv ; -- [XXXDX] :: to the left; + sino_V2 : V2 ; -- [XXXAX] :: allow, permit; + sinum_N_N : N ; -- [XXXDX] :: bowl for serving wine, etc; + sinuo_V : V ; -- [XXXDX] :: bend into a curve; bend; billow out; + sinuosus_A : A ; -- [XXXDX] :: characterized by bending, winding; sinuous; full of folds/recesses; + sinus_M_N : N ; -- [XXXDX] :: curved or bent surface; bending, curve, fold; bosom, lap; bay; + sipar_A : A ; -- [FXXFY] :: almost equal; + siparium_N_N : N ; -- [XXXEC] :: curtain; a drop-scene at a theater; + siparum_N_N : N ; -- [XXXFS] :: linen garment (for women); topsail; + sipho_M_N : N ; -- [XXXCO] :: siphon; tube for sucking/blowing liquid, straw; fire-engine device; liquid jet; + siphonarius_M_N : N ; -- [FXXEK] :: fireman; + siphunculus_M_N : N ; -- [XXXEO] :: small tube/pipe (through which water is forced); jet (of a fountain); + siphus_M_N : N ; -- [XXXFO] :: pipe/tube (for distributing water); + sipo_M_N : N ; -- [XXXCO] :: siphon; tube for sucking/blowing liquid, straw; fire-engine device; liquid jet; + sipo_V2 : V2 ; -- [XXXFO] :: throw; pour; strew, scatter; (usu. only in compounds); + siponarius_M_N : N ; -- [XXXIO] :: fireman in charge of a siphon (fire-engine device); + sipunculus_M_N : N ; -- [XXXEO] :: small tube/pipe (through which water is forced); jet (of a fountain); + sipus_M_N : N ; -- [XXXFO] :: pipe/tube (for distributing water); + siquando_Adv : Adv ; -- [XXXDX] :: if when; at what time; if/when some day; if at any time (assumed probable); + siquidem_Conj : Conj ; -- [XXXBX] :: accordingly; if indeed/in fact/it is possible, even supposing; since/in that; + siremps_Adv : Adv ; -- [XXXDS] :: like, the same; + sirempse_Adv : Adv ; -- [XXXDS] :: like, the same; + sirpea_F_N : N ; -- [XAXEC] :: basket-work; + sirpeus_A : A ; -- [XAXEC] :: of rushes; + sirpia_F_N : N ; -- [XAXEO] :: large basket made of bulrushes; basket-work (Cas); + sirpiculus_A : A ; -- [XAXEO] :: used for dealing with bulrushes (of a billhook); of/made of rushes (L+S); + sirpiculus_M_N : N ; -- [XAXDO] :: basket made of bulrushes, rush basket; + sirpius_A : A ; -- [XAXEC] :: of rushes; + sirpo_V : V ; -- [XXXDX] :: plait/make (baskets, etc.) from bulrushes; + sirpus_M_N : N ; -- [XAXEC] :: rush, bulrush; + sirupus_M_N : N ; -- [GXXEK] :: syrup; + sirus_M_N : N ; -- [XAXDS] :: corn pit; underground granary; + sisamum_N_N : N ; -- [XAXFM] :: sesame; (sesamum); + sisinbrium_N_N : N ; -- [EAXFP] :: aromatic herb, perhaps mint; (= sisymbrium); + sisto_V2 : V2 ; -- [XXXBX] :: stop, check; cause to stand; set up; + sistrum_N_N : N ; -- [XXXDX] :: brazen/metal rattle used in the worship of Isis; + sisymbrium_N_N : N ; -- [XXXEC] :: aromatic herb, perhaps mint; + sitarchia_F_N : N ; -- [XXXCO] :: provisions for a journey; bag/receptacle for such provisions, scrip; + sitarcia_F_N : N ; -- [XXXEW] :: provisions for a journey; bag/receptacle for such provisions, scrip; + sitella_F_N : N ; -- [XXXEC] :: urn for drawing lots; + siticulosus_A : A ; -- [XXXEC] :: very dry, parched; + sitiens_A : A ; -- [XXXDX] :: thirsting, producing thirst, arid, dry, parched, thirsty (for); + sitio_V2 : V2 ; -- [XXXBX] :: be thirsty; + sitis_F_N : N ; -- [XXXBX] :: thirst; + sitthim_N : N ; -- [EXQEW] :: shittim/setim wood, wood of shittah tree/acacia wood; (not the tree); (Hebrew); + sittybus_M_N : N ; -- [XXXEC] :: strip of parchment showing the title of a book; + situalis_A : A ; -- [FXXFM] :: local, localized; + situla_F_N : N ; -- [XXXDO] :: basin/urn/jar; bucket, vessel for drawing/holding water; urn/basin on monument; + situs_A : A ; -- [XXXDX] :: laid up, stored; positioned, situated; centered (on); + situs_M_N : N ; -- [XXXBX] :: situation, position, site; structure; neglect, disuse, stagnation; mold; + sive_Conj : Conj ; -- [XXXAX] :: or if; or; [sive ... sive => whether ... or]; + smalto_V : V ; -- [GXXEK] :: enamel; + smaltum_N_N : N ; -- [GXXEK] :: enamel; + smaragdachates_F_N : N ; -- [XXHNO] :: precious stone (described as a variety of agate); + smaragdinus_A : A ; -- [XXHFO] :: emerald-green; + smaragdites_A : A ; -- [XXHNO] :: emerald-like, having the nature of emeralds; + smaragdos_M_N : N ; -- [XXHCO] :: green precious stone, emerald; beryl, jasper; + smaragdus_M_N : N ; -- [XXHCO] :: green precious stone; emerald; beryl, jasper; + smegma_N_N : N ; -- [XXXNO] :: ointment; cleansing preparation; fine slag from copper melting; + smyrna_F_N : N ; -- [XXXCO] :: myrrh; Smyrna (city on the coast of Ionia); + soboles_F_N : N ; -- [FXXDX] :: shoot, sucker; race; offspring; progeny; + sobrie_Adv : Adv ; -- [XXXCO] :: soberly, temperately; in full possession of faculties, sensibly, calmly; + sobriefactus_A : A ; -- [XXXFO] :: sobered (up); brought to a state of moderation; + sobrietas_F_N : N ; -- [XXXCO] :: sobriety, freedom from intoxication; sobriety of habits, staidness; + sobrina_F_N : N ; -- [XXXEC] :: cousin on the mother's side; + sobrinus_M_N : N ; -- [XXXEC] :: cousin on the mother's side; + sobrius_A : A ; -- [XXXBX] :: sober; + soca_F_N : N ; -- [FLXFM] :: soke; court-suit; right of local jurisdiction; + socagium_N_N : N ; -- [FLXFJ] :: socage; tenure of land by specified services; + socculus_M_N : N ; -- [XXXEC] :: little soccus/low-heeled Greek slipper/shoe; + soccus_M_N : N ; -- [XDXCO] :: slipper, low-heeled loose-fitting shoe (worn by Greeks/comic actors); comedy; + socer_M_N : N ; -- [XXXBX] :: father in law; + socia_F_N : N ; -- [XXXCO] :: associate/partner (female); companion/partner (in marriage); + socialis_A : A ; -- [XXXBO] :: allied, confederate, of allies; social, in partnership/fellowship; conjugal; + socialismus_M_N : N ; -- [GXXEK] :: Socialism; + socialista_M_N : N ; -- [GXXEK] :: socialist; + socialisticus_A : A ; -- [GXXEK] :: socialist; + socializatio_F_N : N ; -- [GXXEK] :: socialization; + sociennus_M_N : N ; -- [BXXFS] :: friend; + societas_F_N : N ; -- [XXXAO] :: |joint pursuit/enjoyment/possession; connection, affinity; conjugal union; + socio_V : V ; -- [XXXBX] :: unite, join, ally; share in; + sociofraudus_M_N : N ; -- [BXXFS] :: friend-deceiver; deceiver of friends; + sociologia_F_N : N ; -- [GXXEK] :: sociology; + sociologicus_A : A ; -- [GXXEK] :: sociological; + sociologus_M_N : N ; -- [GXXEK] :: sociologist; + socius_A : A ; -- [XXXDS] :: sharing; associated; allied; + socius_M_N : N ; -- [XXXAX] :: associate, companion; ally; + socolata_F_N : N ; -- [GXXEK] :: chocolate; + socolateus_A : A ; -- [GXXEK] :: chocolate-; of chocolate; + socordia_F_N : N ; -- [XXXDX] :: sluggishness, torpor, inaction; + socorditer_Adv : Adv ; -- [XXXDX] :: negligently; + socors_A : A ; -- [XXXDX] :: sluggish, inactive; + socrus_F_N : N ; -- [XXXDX] :: mother-in-law; spouse's grandmother/great grandmother; + socrus_M_N : N ; -- [XXXDX] :: father-in-law; spouse's grandfather/great grandfather; + sodalicium_N_N : N ; -- [XXXDX] :: close association/partnership; club/society (religious/social/political); + sodalicius_A : A ; -- [XXXDS] :: of fellowship; sodalis_F_N : N ; -- [XXXBX] :: companion, associate, mate, intimate, comrade, crony; accomplice, conspirator; - sodalis_M_N : N ; - sodalitas_F_N : N ; - sodalitius_A : A ; - sodes_Adv : Adv ; - sofista_M_N : N ; - sofistes_M_N : N ; - sofistice_Adv : Adv ; - sofisticus_A : A ; - soissus_A : A ; - sokemannus_M_N : N ; - sol_M_N : N ; - solaciolum_N_N : N ; - solacium_N_N : N ; - solamen_N_N : N ; - solarium_N_N : N ; - solarius_A : A ; - solatium_N_N : N ; - solator_M_N : N ; - soldurius_M_N : N ; - soldus_A : A ; - solea_F_N : N ; - solearius_A : A ; - solemnis_A : A ; - solemnitas_F_N : N ; - solemniter_Adv : Adv ; - solemnitus_Adv : Adv ; - solempniter_Adv : Adv ; - soleo_V : V ; - solidarietas_F_N : N ; - solidesco_V : V ; - soliditas_F_N : N ; - solido_V : V ; - solidum_N_N : N ; - solidus_A : A ; - solidus_M_N : N ; - soliferreum_N_N : N ; - solifuga_F_N : N ; - solipuga_F_N : N ; - solistimus_A : A ; - solitaria_F_N : N ; - solitarius_A : A ; - solitarius_M_N : N ; - solito_V : V ; - solitudo_F_N : N ; - solitum_N_N : N ; - solitus_A : A ; - solium_N_N : N ; - solivagus_A : A ; - sollemne_N_N : N ; - sollemnis_A : A ; - sollemnitas_F_N : N ; - sollemniter_Adv : Adv ; - sollemnitus_Adv : Adv ; - sollemnizo_V : V ; - sollempnis_A : A ; - sollers_A : A ; - sollerter_Adv : Adv ; - sollertia_F_N : N ; - sollicitatio_F_N : N ; - sollicite_Adv : Adv ; - sollicito_V : V ; - sollicitudo_F_N : N ; - sollicitus_A : A ; - solliferreum_N_N : N ; - sollistimus_A : A ; - soloecismus_M_N : N ; - soloecus_A : A ; - solor_V : V ; - solox_A : A ; - solox_F_N : N ; - solstitialis_A : A ; - solstitium_N_N : N ; - solum_Adv : Adv ; - solum_N_N : N ; - solummodo_Adv : Adv ; - solus_A : A ; - solutilis_A : A ; - solutio_F_N : N ; - solutus_A : A ; - solvo_V2 : V2 ; - somniculose_Adv : Adv ; - somniculosus_A : A ; - somnifer_A : A ; - somnificus_A : A ; - somnio_V : V ; - somnium_N_N : N ; - somnolentus_A : A ; - somnus_M_N : N ; - sonabilis_A : A ; - sonipes_M_N : N ; - 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 ; + sodalis_M_N : N ; -- [XXXBX] :: companion, associate, mate, intimate, comrade, crony; accomplice, conspirator; + sodalitas_F_N : N ; -- [XXXCO] :: association (social/politics); religious fraternity; electioneering gang; guild; + sodalitius_A : A ; -- [XXXDS] :: of fellowship; + sodes_Adv : Adv ; -- [XXXDX] :: if you do not mind, please; (si audes); + sofista_M_N : N ; -- [ESXCW] :: sophist; rhetorician; + sofistes_M_N : N ; -- [ESXCW] :: sophist; rhetorician; + sofistice_Adv : Adv ; -- [ESXEW] :: sophistically; fallaciously (later); with deceptive subtlety; + sofisticus_A : A ; -- [ESXDW] :: sophist, of the sophists, sophistical; skilled in words; + soissus_A : A ; -- [XXXDS] :: split; harsh (of voice); + sokemannus_M_N : N ; -- [FLXFJ] :: sokeman, tenant holding land by socage/tenure by services other than knight; + sol_M_N : N ; -- [XXXAX] :: sun; + solaciolum_N_N : N ; -- [XXXEC] :: small consolation; + solacium_N_N : N ; -- [XXXBO] :: |consolation for disappointment/deprivation; compensation/indemnification; + solamen_N_N : N ; -- [XXXDX] :: source of comfort, solace; + solarium_N_N : N ; -- [FXXEK] :: terrace; + solarius_A : A ; -- [XXXEO] :: sun-, of/relating to the sun; [horogium solarium => sun-dial]; + solatium_N_N : N ; -- [XXXBO] :: |consolation for disappointment/deprivation; compensation/indemnification; + solator_M_N : N ; -- [XPXFS] :: consoler; + soldurius_M_N : N ; -- [XXXDX] :: vassals (pl.), liegemen; retainers; + soldus_A : A ; -- [XXXES] :: solid; dense; unbroken; (solidus); + solea_F_N : N ; -- [XXXBO] :: sandal, sole fastened w/thong; sole (Cal); + solearius_A : A ; -- [BXXFS] :: sandal-maker; + solemnis_A : A ; -- [XXXCO] :: solemn, ceremonial, sacred, in accordance w/religion/law; traditional/customary; + solemnitas_F_N : N ; -- [XXXEO] :: solemnity; ritual/solemn observance; proper/necessary/proper formality (legal); + solemniter_Adv : Adv ; -- [XXXDO] :: solemnly; with due ritual/ceremony; with proper/necessary formalities (legal); + solemnitus_Adv : Adv ; -- [XXXFO] :: solemnly; with due ritual/ceremony; with proper/necessary formalities (legal); + solempniter_Adv : Adv ; -- [XXXFS] :: solemnly; + soleo_V : V ; -- [XXXAX] :: be in the habit of; become accustomed to; + solidarietas_F_N : N ; -- [GXXEK] :: solidarity; + solidesco_V : V ; -- [EXXFS] :: become firm; become solid; + soliditas_F_N : N ; -- [XXXCO] :: solidity; lack of cavities; density/firmness of texture; entirety (legal); + solido_V : V ; -- [XXXDX] :: make solid/whole/dense/firm/crack free; strengthen, consolidate; solder; knit; + solidum_N_N : N ; -- [XXXCO] :: solid figure; firm/hard material; firm/solid/unyielding ground; a whole; + solidus_A : A ; -- [XXXAO] :: |three dimensional; retaining form/rigidity, firm; real, lasting; perfect; full; + solidus_M_N : N ; -- [XXXCO] :: gold coin; (aurus introduced by Constantine); + soliferreum_N_N : N ; -- [XXXEC] :: javelin entirely of iron; + solifuga_F_N : N ; -- [XXXFS] :: poisonous ant/spider; + solipuga_F_N : N ; -- [XXXFS] :: poisonous ant/spider; + solistimus_A : A ; -- [XXXFS] :: most perfect; + solitaria_F_N : N ; -- [XXXFO] :: hermit/anchorite (female); individual drink?; (as opposed to common/loving cup); + solitarius_A : A ; -- [XXXBO] :: solitary, living/acting on one's own; single (combat); without companion; sole; + solitarius_M_N : N ; -- [EEXCE] :: hermit; anchorite; person living alone; + solito_V : V ; -- [XXXDX] :: to make it one's constant habit to (w/INF); make a practice of; be accustomed; + solitudo_F_N : N ; -- [XXXBX] :: solitude, loneliness; deprivation; wilderness; + solitum_N_N : N ; -- [XXXDS] :: custom; habit; + solitus_A : A ; -- [XXXDX] :: usual, customary; + solium_N_N : N ; -- [XXXBX] :: throne, seat; + solivagus_A : A ; -- [XXXEC] :: wandering alone; solitary, lonely; + sollemne_N_N : N ; -- [XXXCO] :: |ritual offerings (pl.); legal formalities; + sollemnis_A : A ; -- [XXXAO] :: solemn, ceremonial, sacred, in accordance w/religion/law; traditional/customary; + sollemnitas_F_N : N ; -- [XXXEO] :: solemnity; ritual/solemn observance; proper/necessary/proper formality (legal); + sollemniter_Adv : Adv ; -- [XXXDO] :: solemnly; with due ritual/ceremony; with proper/necessary formalities (legal); + sollemnitus_Adv : Adv ; -- [XXXFO] :: solemnly; with due ritual/ceremony; with proper/necessary formalities (legal); + sollemnizo_V : V ; -- [FXXEM] :: celebrate; solemnize; + sollempnis_A : A ; -- [XXXEO] :: solemn, ceremonial, sacred, in accordance w/religion/law; traditional/customary; + sollers_A : A ; -- [XXXDX] :: clever, dexterous, adroit, expert, skilled, ingenious, accomplished; + sollerter_Adv : Adv ; -- [XXXCO] :: cleverly; skillfully; resourcefully; + sollertia_F_N : N ; -- [XXXDX] :: skill, cleverness; resourcefulness; + sollicitatio_F_N : N ; -- [XXXDX] :: incitement to disloyalty or crime; + sollicite_Adv : Adv ; -- [XXXDX] :: anxiously; with a troubled mind; with anxious care; + sollicito_V : V ; -- [XXXBX] :: disturb, worry; stir up, arouse, agitate, incite; + sollicitudo_F_N : N ; -- [XXXBX] :: anxiety, concern, solicitude; + sollicitus_A : A ; -- [XXXAX] :: concerned, worried; upset, troubled, disturbed, anxious, apprehensive; + solliferreum_N_N : N ; -- [XWXDS] :: all-iron javelin; + sollistimus_A : A ; -- [XXXFS] :: most perfect; + soloecismus_M_N : N ; -- [XGXCO] :: mistake in grammar, solecism; + soloecus_A : A ; -- [GXXET] :: faulty; uncouth; (Erasmus); + solor_V : V ; -- [XXXDX] :: solace, console, comfort; soothe, ease, lighten, relieve, assuage, mitigate; + solox_A : A ; -- [EXXFS] :: coarse; bristly; + solox_F_N : N ; -- [XXXFS] :: coarse woolen dress; + solstitialis_A : A ; -- [XXXDX] :: of or belonging to the summer solstice; + solstitium_N_N : N ; -- [XXXDX] :: solstice; summer-time, heat of the summer-solstice; + solum_Adv : Adv ; -- [XXXDO] :: only/just/merely/barely/alone; + solum_N_N : N ; -- [XXXBX] :: bottom, ground, floor; soil, land; + solummodo_Adv : Adv ; -- [XXXBO] :: only/just/merely/barely/alone; [nonsolum ...sed etiam => not only ...but also]; + solus_A : A ; -- [XXXAX] :: only, single; lonely; alone, having no companion/friend/protector; unique; + solutilis_A : A ; -- [XXXFO] :: easily broken up; (of structures); + solutio_F_N : N ; -- [XXXDX] :: loosing, relaxation, weakening; payment; + solutus_A : A ; -- [XXXDX] :: unbound, released; free, at large; unrestrained, profligate; lax, careless; + solvo_V2 : V2 ; -- [XXXAX] :: loosen, release, unbind, untie, free; open; set sail; scatter; pay off/back; + somniculose_Adv : Adv ; -- [XXXEC] :: sleepily, drowsily; + somniculosus_A : A ; -- [XXXEC] :: sleepy, drowsy; + somnifer_A : A ; -- [XXXDX] :: inducing sleep; + somnificus_A : A ; -- [XXXDX] :: inducing sleep; + somnio_V : V ; -- [XXXDX] :: dream; dream of or see in a dream; + somnium_N_N : N ; -- [XXXAX] :: dream, vision; fantasy, day-dream; + somnolentus_A : A ; -- [EXXES] :: full of sleep; drowsy; (somnulentus); + somnus_M_N : N ; -- [XXXAX] :: sleep; + sonabilis_A : A ; -- [XXXDX] :: noisy, resonant; + sonipes_M_N : N ; -- [XXXDX] :: horse, steed; + sonitus_M_N : N ; -- [XXXBX] :: noise, loud sound; + sonivius_A : A ; -- [XXXEC] :: sounding; + sono_V : V ; -- [DXXAO] :: |echo/resound; be heard, sound; be spoken of (as); celebrate in speech; + sono_V2 : V2 ; -- [BXXAO] :: |echo/resound; be heard, sound; be spoken of (as); celebrate in speech; + sonor_M_N : N ; -- [XXXDX] :: sound, noise, din; + sonoritas_F_N : N ; -- [DDXES] :: melodiousness; fullness of sound; + sonorus_A : A ; -- [XXXDX] :: noisy, loud, resounding, sonorous; + sons_A : A ; -- [XXXDX] :: guilty, criminal; sons_F_N : N ; -- [XXXDX] :: criminal; - sons_M_N : N ; - sonticus_A : A ; - sonus_M_N : N ; - sophia_F_N : N ; - sophisma_F_N : N ; - sophisma_N_N : N ; - sophismatius_A : A ; - sophista_M_N : N ; - sophistes_M_N : N ; - sophistice_Adv : Adv ; - sophisticus_A : A ; - sophos_Adv : Adv ; - sophus_A : A ; - sophus_M_N : N ; - sopio_M_N : N ; - sopio_V2 : V2 ; - sopor_M_N : N ; - soporifer_A : A ; - soporo_V : V ; - soporus_A : A ; - sorbeo_V : V ; - sorbilis_A : A ; - sorbillo_V2 : V2 ; - sorbilo_Adv : Adv ; - sorbitio_F_N : N ; - sorbitium_N_N : N ; - sorbitiuncula_F_N : N ; - sorbum_N_N : N ; - sorbus_F_N : N ; - sordeo_V : V ; - sordes_F_N : N ; - sordesceo_V : V ; - sordidatus_A : A ; - sordide_Adv : Adv ; - sordidulus_A : A ; - sordidus_A : A ; - sorex_M_N : N ; - soricinus_A : A ; - sorites_M_N : N ; - soror_F_N : N ; - sororicida_M_N : N ; - sororius_A : A ; - sororius_M_N : N ; - sors_F_N : N ; - sortilegus_A : A ; - sortilegus_M_N : N ; - sortior_V : V ; - sortitus_A : A ; - sortitus_M_N : N ; - sospes_A : A ; - sospita_F_N : N ; - sospitas_F_N : N ; - sospito_V : V ; - soter_M_N : N ; - soterium_N_N : N ; - sotularis_M_N : N ; - spacellus_M_N : N ; - spacium_N_N : N ; - spadix_A : A ; - spado_M_N : N ; - spaera_F_N : N ; - spargo_V2 : V2 ; - sparteus_A : A ; - spartum_N_N : N ; - sparulus_M_N : N ; - sparus_M_N : N ; - spasmus_M_N : N ; - spasticus_A : A ; - spata_F_N : N ; - spatha_F_N : N ; - spathula_F_N : N ; - spatialis_A : A ; - spatior_V : V ; - spatiosus_A : A ; - spatium_N_N : N ; - spatula_F_N : N ; - spatule_F_N : N ; - specialis_A : A ; - specialista_M_N : N ; - specialitas_F_N : N ; - specialiter_Adv : Adv ; - specializatio_F_N : N ; - species_F_N : N ; - specillum_N_N : N ; - specimen_N_N : N ; - specio_V2 : V2 ; - speciose_Adv : Adv ; - speciosus_A : A ; - spectabilis_A : A ; - spectabilitas_F_N : N ; - spectaclum_N_N : N ; - spectaculum_N_N : N ; - spectamen_N_N : N ; - spectatio_F_N : N ; - spectator_M_N : N ; - spectatrix_F_N : N ; - spectio_F_N : N ; - specto_V : V ; - spectrum_N_N : N ; - specula_F_N : N ; - speculabundus_A : A ; - speculamen_N_N : N ; - speculatio_F_N : N ; - speculator_M_N : N ; - speculatoria_F_N : N ; - speculatorius_A : A ; - speculor_V : V ; - speculum_N_N : N ; - specus_X_N : N ; - spelaeologus_M_N : N ; - spelaeum_N_N : N ; - spelta_F_N : N ; - spelunca_F_N : N ; - spensa_F_N : N ; - sperabilis_A : A ; - sperma_F_N : N ; - spermatozoidum_N_N : N ; - sperno_V2 : V2 ; - spero_V : V ; - spes_F_N : N ; - sphacos_M_N : N ; - sphaera_F_N : N ; - sphaeratus_A : A ; - sphaericitas_F_N : N ; - sphaerion_N_N : N ; - sphaeristerium_N_N : N ; - sphaerois_F_N : N ; - sphaerula_F_N : N ; - sphera_F_N : N ; - spherula_F_N : N ; - sphincter_M_N : N ; - sphinx_F_N : N ; - sphondylus_M_N : N ; - sphragis_F_N : N ; - spica_F_N : N ; - spiceus_A : A ; - spicifer_A : A ; - spicio_V2 : V2 ; - spico_V : V ; - spiculo_V2 : V2 ; - spiculum_N_N : N ; - spina_F_N : N ; - spinacium_N_N : N ; - spinetum_N_N : N ; - spineus_A : A ; - spinifer_A : A ; - spino_V : V ; - spinosus_A : A ; - spintria_M_N : N ; - spinus_F_N : N ; - spinus_M_N : N ; - spira_F_N : N ; - spirabilis_A : A ; - spiraculum_N_N : N ; - spiralis_A : A ; - spiramen_N_N : N ; - spiramentum_N_N : N ; - spiratio_F_N : N ; - spiritalis_A : A ; - spiritalitas_F_N : N ; - spiritaliter_Adv : Adv ; - spiritualis_A : A ; - spiritualitas_F_N : N ; - spiritualiter_Adv : Adv ; - spirituosus_A : A ; - spiritus_M_N : N ; - spiro_V : V ; - spissesco_V : V ; - spissitudo_F_N : N ; - spisso_V : V ; - spissus_A : A ; - splendeo_V : V ; - splendesco_V : V ; - splendidus_A : A ; - splendor_M_N : N ; - splenium_N_N : N ; - spodium_N_N : N ; - spoliatio_F_N : N ; - spoliator_M_N : N ; - spoliatrix_F_N : N ; - spolio_V : V ; - spolium_N_N : N ; - sponda_F_N : N ; - spondalium_N_N : N ; - spondeo_V : V ; - spondeus_M_N : N ; - spondulus_M_N : N ; - spondylus_M_N : N ; - spongea_F_N : N ; - spongia_F_N : N ; - spongiformis_A : A ; - spons_F_N : N ; - sponsa_F_N : N ; - sponsal_N_N : N ; - sponsalis_A : A ; - sponsalius_N_N : N ; - sponsio_F_N : N ; - sponso_V2 : V2 ; - sponsor_M_N : N ; - sponsum_N_N : N ; - sponsus_M_N : N ; - spontalis_A : A ; - spontaliter_Adv : Adv ; - spontanee_Adv : Adv ; - spontaneus_A : A ; - sponte_Adv : Adv ; - sporta_F_N : N ; - sportella_F_N : N ; - sportula_F_N : N ; - spretio_F_N : N ; - spretor_M_N : N ; - spuma_F_N : N ; - spumesco_V : V ; - spumeus_A : A ; - spumifer_A : A ; - spumiger_A : A ; - spumo_V : V ; - spumosus_A : A ; - spuo_V2 : V2 ; - spurcalium_N_N : N ; - spurcamen_N_N : N ; - spurcidicus_A : A ; - spurcificus_A : A ; - spurcitia_F_N : N ; - spurcities_F_N : N ; - spurco_V : V ; - spurcus_A : A ; - spurium_N_N : N ; - spurius_A : A ; - spurius_M_N : N ; - sputamen_N_N : N ; - sputatilicus_A : A ; - sputo_V : V ; - sputum_N_N : N ; - squaleo_V : V ; - squalidus_A : A ; - squalor_M_N : N ; - squalus_M_N : N ; - squama_F_N : N ; - squameus_A : A ; - squamiger_A : A ; - squamosus_A : A ; - squatina_F_N : N ; - squilla_F_N : N ; - st_Interj : Interj ; - stabilimentum_N_N : N ; - stabilio_V2 : V2 ; - stabilis_A : A ; - stabilitas_F_N : N ; - stabulo_V : V ; - stabulum_N_N : N ; - stacta_F_N : N ; - stacte_F_N : N ; - stacte_M_N : N ; - stadium_N_N : N ; - stagneus_A : A ; - stagno_V : V ; - stagnosus_A : A ; - stagnum_N_N : N ; - stamen_N_N : N ; - stamineus_A : A ; - stannum_N_N : N ; - stantia_F_N : N ; - stapeda_F_N : N ; - stapes_F_N : N ; - staphis_F_N : N ; - staphylinus_F_N : N ; - stapis_F_N : N ; - statalis_A : A ; - stataria_F_N : N ; - statarius_A : A ; - statarius_M_N : N ; - stater_M_N : N ; - statera_F_N : N ; - statica_F_N : N ; - staticus_A : A ; - statim_Adv : Adv ; - statio_F_N : N ; - statistica_F_N : N ; - statisticus_A : A ; - stativa_F_N : N ; - stativum_N_N : N ; - stativus_A : A ; - stator_M_N : N ; - statua_F_N : N ; - statuaria_F_N : N ; - statuarius_A : A ; - statuarius_M_N : N ; - statuliber_M_N : N ; - statulibera_F_N : N ; - statulibertas_F_N : N ; - statumen_N_N : N ; - statuo_V2 : V2 ; - statura_F_N : N ; - status_A : A ; - status_M_N : N ; - stega_F_N : N ; - stela_F_N : N ; - stelephur_M_N : N ; - stelio_M_N : N ; - stella_F_N : N ; - stellans_A : A ; - stellatus_A : A ; - stellifer_A : A ; - stelliger_A : A ; - stellio_M_N : N ; - stellionatus_M_N : N ; - stello_V2 : V2 ; - stemma_N_N : N ; - stentaculum_N_N : N ; - stercilinium_N_N : N ; - stercilinum_N_N : N ; - stercolum_N_N : N ; - stercoralis_A : A ; - stercorarium_N_N : N ; - stercoreus_A : A ; - stercorinis_A : A ; - stercoro_V2 : V2 ; - stercorosus_A : A ; - sterculinium_N_N : N ; - sterculinum_N_N : N ; - stercus_M_N : N ; - stereophonia_F_N : N ; - stereophonicus_A : A ; - stereotypus_M_N : N ; - sterilis_A : A ; - sterilitas_F_N : N ; - sterilizatio_F_N : N ; - sterilizo_V : V ; - sternax_A : A ; - sterno_V2 : V2 ; - sternumentum_N_N : N ; - sternuo_V : V ; - sternutamentum_N_N : N ; - sternutatio_F_N : N ; - sternuto_V : V ; - sterquilinium_N_N : N ; - sterquilinum_N_N : N ; - sterteia_F_N : N ; - sterto_V2 : V2 ; - stibadium_N_N : N ; - stibi_N_N : N ; - stibinus_A : A ; - stibis_F_N : N ; - stibium_N_N : N ; - stigma_F_N : N ; - stigma_N_N : N ; - stigmatias_M_N : N ; - stilio_M_N : N ; - stilisticus_A : A ; - stilla_F_N : N ; - stillicidium_N_N : N ; - stillo_V : V ; - stilus_M_N : N ; - stimmi_N_N : N ; - stimulatio_F_N : N ; - stimulatrix_F_N : N ; - stimuleus_A : A ; - stimulo_V : V ; - stimulus_M_N : N ; - stinguo_V : V ; - stipatio_F_N : N ; - stipator_M_N : N ; - stipendiarius_A : A ; - stipendium_N_N : N ; - stipes_M_N : N ; - stipo_V : V ; - stips_F_N : N ; - stipula_F_N : N ; - stipulatio_F_N : N ; - stipulatiuncula_F_N : N ; - stipulor_V : V ; - stiria_F_N : N ; - stirps_F_N : N ; - stiva_F_N : N ; - stlatarius_A : A ; - stlattarius_A : A ; - sto_V : V ; + sons_M_N : N ; -- [XXXDX] :: criminal; + sonticus_A : A ; -- [XXXEC] :: important, serious; + sonus_M_N : N ; -- [XXXDX] :: noise, sound; + sophia_F_N : N ; -- [XXXEC] :: wisdom; + sophisma_F_N : N ; -- [FPXEM] :: wisdom; trickery; G:sophism; fallacy; + sophisma_N_N : N ; -- [XGXES] :: false conclusion, sophism (Redmond); logical fallacy; + sophismatius_A : A ; -- [XGXFS] :: sophistical; + sophista_M_N : N ; -- [DSXCS] :: sophist; rhetorician; + sophistes_M_N : N ; -- [XSXCO] :: sophist; rhetorician; + sophistice_Adv : Adv ; -- [DSXES] :: sophistically; fallaciously (later); with deceptive subtlety; + sophisticus_A : A ; -- [XSXDO] :: sophist, of the sophists, sophistical; skilled in words; + sophos_Adv : Adv ; -- [XXXEC] :: bravo! well done!; + sophus_A : A ; -- [XXXES] :: wise; + sophus_M_N : N ; -- [XXXEC] :: wise man; + sopio_M_N : N ; -- [XXXCO] :: penis; (perhaps rude); + sopio_V2 : V2 ; -- [XXXBX] :: cause to sleep, render insensible by a blow or sudden shock; + sopor_M_N : N ; -- [XXXBX] :: deep sleep; + soporifer_A : A ; -- [XXXDX] :: bringing sleep or unconsciousness; + soporo_V : V ; -- [XXXDX] :: rend to sleep, render unconscious, stupefy; + soporus_A : A ; -- [XXXDX] :: that induces sleep; + sorbeo_V : V ; -- [XXXDX] :: drink, absorb; + sorbilis_A : A ; -- [XXXFS] :: suck-upable; can be sucked-up; + sorbillo_V2 : V2 ; -- [XXXDS] :: sip; + sorbilo_Adv : Adv ; -- [XXXEC] :: by sipping, drop by drop; + sorbitio_F_N : N ; -- [XXXCO] :: broth, food prepared in liquid/semi-liquid form; drink/draught/potion (L+S); + sorbitium_N_N : N ; -- [DXXFS] :: draught, drink; + sorbitiuncula_F_N : N ; -- [DBXES] :: small draught/dose; posset; portion of food; mess (Douay); little cake (KJames); + sorbum_N_N : N ; -- [XAXES] :: sorb, service-berry/apple; fruit of service tree (Pyrus domestica); + sorbus_F_N : N ; -- [XAXEC] :: sorb/service tree (Pyrus domestica); sorb, service-berry/apple (L+S); + sordeo_V : V ; -- [XXXBO] :: be dirty/soiled; seem mean/unworthy/not good enough/common/coarse/vile/ignoble; + sordes_F_N : N ; -- [XXXDX] :: filth, dirt, uncleanness, squalor; meanness, stinginess; humiliation, baseness; + sordesceo_V : V ; -- [XXXES] :: become dirty; grow wild; be mean; + sordidatus_A : A ; -- [XXXDX] :: shabby, in dirty clothes; meanly dressed; + sordide_Adv : Adv ; -- [XXXDX] :: meanly, basely; vulgarly, unbecomingly, poorly; stingily; sordidly, squalidly; + sordidulus_A : A ; -- [XXXEC] :: somewhat dirty or mean; + sordidus_A : A ; -- [XXXBX] :: dirty, unclean, foul, filthy; vulgar, sordid; low, base, mean, paltry; vile; + sorex_M_N : N ; -- [XAXEC] :: shrew-mouse; + soricinus_A : A ; -- [BXXFS] :: of the shrewmouse; + sorites_M_N : N ; -- [XGXFS] :: sophism; an accumulation of arguments; + soror_F_N : N ; -- [XXXAX] :: sister; (applied also to half sister, sister-in-law, and mistress!); + sororicida_M_N : N ; -- [XXXEC] :: one who murders a sister; + sororius_A : A ; -- [XXXDX] :: of or concerning a sister; + sororius_M_N : N ; -- [XXXDX] :: sister's husband, brother-in-law; + sors_F_N : N ; -- [XXXAX] :: lot, fate; oracular response; + sortilegus_A : A ; -- [XXXEC] :: prophetic, oracular; + sortilegus_M_N : N ; -- [XXXEC] :: soothsayer, fortune-teller; + sortior_V : V ; -- [XXXBX] :: cast or draw lots; obtain by lot; appoint by lot; choose; + sortitus_A : A ; -- [XXXDS] :: assigned; + sortitus_M_N : N ; -- [XXXDX] :: process of lottery; + sospes_A : A ; -- [XXXBX] :: safe and sound; auspicious; + sospita_F_N : N ; -- [XXXDX] :: female preserver (cult title of Juno at Lanuvium); + sospitas_F_N : N ; -- [DXXDS] :: safety; health; welfare; + sospito_V : V ; -- [XXXDX] :: preserve, defend; + soter_M_N : N ; -- [XXXEC] :: savior; + soterium_N_N : N ; -- [XXXEC] :: presents (pl.) given on recovery from sickness; + sotularis_M_N : N ; -- [FXXFM] :: shoe; (gender is guess); + spacellus_M_N : N ; -- [GXXEK] :: spaghetti; + spacium_N_N : N ; -- [FXXAO] :: ||interval, time, extent, period, term; duration; distance; area; size; bulk; + spadix_A : A ; -- [XXXEC] :: chestnut-colored; + spado_M_N : N ; -- [XXXDX] :: eunuch; + spaera_F_N : N ; -- [XSXCO] :: globe, sphere, orb, ball; orrery/working model of universe (spheres of planets); + spargo_V2 : V2 ; -- [XXXAX] :: scatter, strew, sprinkle; spot; + sparteus_A : A ; -- [XAXFS] :: of broom; made of broom; + spartum_N_N : N ; -- [XAXEC] :: Spanish broom; + sparulus_M_N : N ; -- [XAXEC] :: fish, sea-bream; + sparus_M_N : N ; -- [XXXDX] :: hunting-spear, javelin; a small kind of sea bream; + spasmus_M_N : N ; -- [GXXEK] :: cramp; + spasticus_A : A ; -- [XBXNS] :: afflicted with cramps; spastic; + spata_F_N : N ; -- [FXXFO] :: broad-sword; flat stirrer; batten for beating woof; splint; palm spathe; + spatha_F_N : N ; -- [XXXCO] :: flat stirrer; broad-bladed sword; batten for beating woof; splint; palm spathe; + spathula_F_N : N ; -- [XXXFS] :: flat piece (wood); (for splint); little palm branch (L+S); leg, broad piece; + spatialis_A : A ; -- [GXXEK] :: spatial; + spatior_V : V ; -- [XXXDS] :: walk; take a walk, promenade; spread; + spatiosus_A : A ; -- [XXXDX] :: spacious, wide, long; + spatium_N_N : N ; -- [XXXAO] :: ||interval, time, extent, period, term; duration; distance; area; size; bulk; + spatula_F_N : N ; -- [XXXFO] :: |wantonness, sensual indulgence; lewdness (L+S); voluptuousness; + spatule_F_N : N ; -- [XXXFS] :: wantonness, sensual indulgence; lewdness (L+S); voluptuousness; + specialis_A : A ; -- [XXXCO] :: specific, particular, individual, not general, special; derivative, as species; + specialista_M_N : N ; -- [GXXEK] :: specialist; + specialitas_F_N : N ; -- [FXXEM] :: special quality; peculiarity; + specialiter_Adv : Adv ; -- [XXXCO] :: specifically; individually; in particular; according to species; + specializatio_F_N : N ; -- [GXXEK] :: specialization; + species_F_N : N ; -- [XXXAX] :: sight, appearance, show; splendor, beauty; kind, type; + specillum_N_N : N ; -- [XBXEC] :: surgeon's probe; + specimen_N_N : N ; -- [XXXDX] :: mark, proof; idea; model; + specio_V2 : V2 ; -- [XXXEC] :: look at, see; + speciose_Adv : Adv ; -- [XXXCO] :: attractively, gracefully; strikingly, impressively; speciously, plausibly; + speciosus_A : A ; -- [XXXBO] :: |spectacular/brilliant/impressive/splendid; showy/public; plausible, specious; + spectabilis_A : A ; -- [XXXCO] :: noteworthy, outstanding; worth consideration/looking at; able to be seen; + spectabilitas_F_N : N ; -- [DLXES] :: office/dignity of spectabilis (title of high imperial officers); + spectaclum_N_N : N ; -- [XDXDS] :: show, spectacle; spectators' seat; (spectaculum); + spectaculum_N_N : N ; -- [XXXBX] :: show, spectacle; spectators' seats (pl.); + spectamen_N_N : N ; -- [XXXFS] :: mark; sign; sight, scene; + spectatio_F_N : N ; -- [XXXES] :: looking; testing; + spectator_M_N : N ; -- [XXXDX] :: spectator; + spectatrix_F_N : N ; -- [XXXDX] :: female observer or watcher; + spectio_F_N : N ; -- [XXXDS] :: right of auspices; right to observe auspices; + specto_V : V ; -- [XXXAX] :: observe, watch, look at, see; test; consider; + spectrum_N_N : N ; -- [XXXEC] :: specter, apparition; + specula_F_N : N ; -- [XXXDO] :: slight hope, glimmer/ray of hope; (long e); + speculabundus_A : A ; -- [XXXEC] :: watching, on the watch; + speculamen_N_N : N ; -- [XXXFS] :: looking-at; observing; + speculatio_F_N : N ; -- [XXXDO] :: watching (shows/entertainment); inspection/scrutiny; consideration; speculation; + speculator_M_N : N ; -- [XXXDX] :: spy, scout; + speculatoria_F_N : N ; -- [XXXDS] :: spy-boat; reconnaissance boat; + speculatorius_A : A ; -- [XXXDX] :: spying, scouting; + speculor_V : V ; -- [XXXDX] :: watch, observe; spy out; examine, explore; + speculum_N_N : N ; -- [XXXBX] :: mirror, looking glass, reflector; copy, imitation; + specus_X_N : N ; -- [XXXDX] :: cave, abyss, chasm; hole, pit; hollow (of any kind); grotto; + spelaeologus_M_N : N ; -- [GXXEK] :: speleologist; spelunker, cave explorer; + spelaeum_N_N : N ; -- [XXXEC] :: cave, den; + spelta_F_N : N ; -- [EAXFS] :: spelt grains; + spelunca_F_N : N ; -- [XXXDX] :: cave; + spensa_F_N : N ; -- [FXXEM] :: storehouse; + sperabilis_A : A ; -- [XXXDS] :: hoped for; + sperma_F_N : N ; -- [FBXEM] :: seed, semen, sperm; + spermatozoidum_N_N : N ; -- [GXXEK] :: spermatozoid; sperm; + sperno_V2 : V2 ; -- [XXXAX] :: scorn, despise, spurn; + spero_V : V ; -- [XXXAX] :: hope for; trust; look forward to; hope; + spes_F_N : N ; -- [XXXAO] :: |object/embodiment of hope; [optio ad ~ => junior hoping to make centurion]; + sphacos_M_N : N ; -- [DAXNS] :: fragment moss; sage (Pliny); + sphaera_F_N : N ; -- [XSXCO] :: globe, sphere, orb, ball; orrery/working model of universe (spheres of planets); + sphaeratus_A : A ; -- [GXXEK] :: small sphered; ball-point; + sphaericitas_F_N : N ; -- [GXXEK] :: sphericity; roundness; + sphaerion_N_N : N ; -- [XBXES] :: pill; small ball; + sphaeristerium_N_N : N ; -- [XXXEC] :: place for playing ball; + sphaerois_F_N : N ; -- [GXXEK] :: spheroid; + sphaerula_F_N : N ; -- [EXXES] :: small ball/sphere; + sphera_F_N : N ; -- [XSXCO] :: globe, sphere, orb, ball; orrery/working model of universe (spheres of planets); + spherula_F_N : N ; -- [EXXES] :: small ball/sphere; + sphincter_M_N : N ; -- [EBXFS] :: sphincter, muscle of the anus; + sphinx_F_N : N ; -- [XAXFS] :: ape; chimpanzee; + sphondylus_M_N : N ; -- [XAXFS] :: mussel; muscle; oyster meat; (= spondylus); + sphragis_F_N : N ; -- [XTXFS] :: seal-stone (stone used for seal); B:ball of plaster; + spica_F_N : N ; -- [XXXDX] :: head/ear of grain/cereal; + spiceus_A : A ; -- [XXXDX] :: consisting of heads/ears of grain/cereal; + spicifer_A : A ; -- [XAXEC] :: carrying heads/ears of corn/cereal; + spicio_V2 : V2 ; -- [XXXEC] :: look at, see; + spico_V : V ; -- [EXXFS] :: furnish with spikes; provide ears; + spiculo_V2 : V2 ; -- [FXXFY] :: stab; + spiculum_N_N : N ; -- [XXXDX] :: sting; javelin; arrow; sharp point of a weapon; + spina_F_N : N ; -- [XAXBS] :: |spine/backbone/back; Circus center wall; fish-bone; difficulties (pl.); cares; + spinacium_N_N : N ; -- [GAXEK] :: spinach; + spinetum_N_N : N ; -- [XXXDX] :: thicket (of thorn-bushes); + spineus_A : A ; -- [XXXDX] :: thorny, covered with thorns; + spinifer_A : A ; -- [XXXDS] :: prickly; + spino_V : V ; -- [FEXFM] :: crown with thorns; prick; + spinosus_A : A ; -- [XXXDX] :: thorny, prickly; crabbed, difficult; + spintria_M_N : N ; -- [XXXDO] :: type of male prostitute; + spinus_F_N : N ; -- [DAXES] :: thorn-bush; black-thorn, sloe-tree; + spinus_M_N : N ; -- [DAXES] :: thorn-bush; black-thorn, sloe-tree; + spira_F_N : N ; -- [XXXDX] :: coil; + spirabilis_A : A ; -- [XXXDS] :: breathable; + spiraculum_N_N : N ; -- [XXXDO] :: air-hole, vent; B:breathing passage (in lung); opening/outlet; window (Cal); + spiralis_A : A ; -- [GXXEK] :: spiraling; + spiramen_N_N : N ; -- [XXXDO] :: air-hole/passage; aspiration, act of breathing; exhalation; breath, puff; + spiramentum_N_N : N ; -- [XXXCO] :: air/breathing-passage; vent; pause, breathing space; draught, breath of air; + spiratio_F_N : N ; -- [DXXES] :: breathing; breath; + spiritalis_A : A ; -- [DEXCS] :: spiritual, of the spirit; of breathing; to wind/air; kind of wind instrument; + spiritalitas_F_N : N ; -- [DEXES] :: spirituality; + spiritaliter_Adv : Adv ; -- [DEXES] :: spiritually; + spiritualis_A : A ; -- [DEXCS] :: spiritual, of the spirit; of breathing; to wind/air; kind of wind instrument; + spiritualitas_F_N : N ; -- [DEXES] :: spirituality; + spiritualiter_Adv : Adv ; -- [DEXES] :: spiritually; + spirituosus_A : A ; -- [GXXEK] :: spiritual; + spiritus_M_N : N ; -- [XXXAX] :: breath, breathing, air, soul, life; + spiro_V : V ; -- [XXXAX] :: breathe; blow; live; breathe out; exhale; breathe the spirit of; + spissesco_V : V ; -- [XXXDX] :: become more compact, thicken; + spissitudo_F_N : N ; -- [DXXFS] :: thickness, density; + spisso_V : V ; -- [XXXDX] :: thicken, condense; + spissus_A : A ; -- [XXXDX] :: thick, dense, crowded; + splendeo_V : V ; -- [XXXCO] :: shine/gleam/glitter, be bright/radiant/resplendent (white/color)/distinguished; + splendesco_V : V ; -- [XXXDX] :: become bright, begin to shine; derive luster; + splendidus_A : A ; -- [XXXBX] :: splendid, glittering; + splendor_M_N : N ; -- [XXXDX] :: brilliance, luster, sheen; magnificence, sumptuousness, grandeur, splendor; + splenium_N_N : N ; -- [XBXEC] :: adhesive plaster; + spodium_N_N : N ; -- [XXXFS] :: metal slag; vegetable ash (Pliny); + spoliatio_F_N : N ; -- [XXXDX] :: robbing, plundering, spoilation; + spoliator_M_N : N ; -- [XXXDX] :: one who plunders or despoils; + spoliatrix_F_N : N ; -- [XXXDS] :: female robber; + spolio_V : V ; -- [XXXBX] :: rob, strip; despoil, plunder; deprive (with abl.); + spolium_N_N : N ; -- [XXXBX] :: spoils, booty; skin, hide; + sponda_F_N : N ; -- [XXXCO] :: bedstead; frame of bed/couch; bed/couch/sofa; + spondalium_N_N : N ; -- [XEXEC] :: sacrificial hymn; + spondeo_V : V ; -- [XLXAO] :: promise, give pledge/undertaking/surety; contract to give/take in marriage; + spondeus_M_N : N ; -- [XXXDX] :: spondee (metrical foot of 2 long syllables); + spondulus_M_N : N ; -- [XAXFS] :: mussel; muscle; oyster meat; (= spondylus); + spondylus_M_N : N ; -- [XAXEC] :: kind of mussel; + spongea_F_N : N ; -- [XXXDX] :: sponge; + spongia_F_N : N ; -- [XAXCO] :: sponge; (marine animal/domestic use); puffball; mass of fused iron-ore; pumice; + spongiformis_A : A ; -- [GXXEK] :: spongiform, sponge-like; light and porous; + spons_F_N : N ; -- [XXXBX] :: free will; + sponsa_F_N : N ; -- [XXXDX] :: bride; betrothed woman; + sponsal_N_N : N ; -- [XXXDX] :: betrothal (pl.), espousal; wedding; wedding feast; + sponsalis_A : A ; -- [XXXFO] :: of/pertaining to a betrothal/engagement; + sponsalius_N_N : N ; -- [XXXEO] :: betrothal (act/ceremony) (pl.); betrothal/engagement party/banquet; + sponsio_F_N : N ; -- [XXXDX] :: solemn promise; wager at law; + sponso_V2 : V2 ; -- [XXXFO] :: become betrothed/engaged to marry (woman); espouse, affiance (L+S); + sponsor_M_N : N ; -- [XXXDX] :: one who guarantees the good faith of another; surety; + sponsum_N_N : N ; -- [XXXDS] :: agreement; consent; + sponsus_M_N : N ; -- [XXXDS] :: contract; surety; bail; betrothal; + spontalis_A : A ; -- [XXXEO] :: voluntary; self-chosen; + spontaliter_Adv : Adv ; -- [DXXFS] :: voluntarily; + spontanee_Adv : Adv ; -- [DXXDS] :: willingly, of one's own will; voluntarily; for one's own sake; + spontaneus_A : A ; -- [DXXDS] :: of one's own will; voluntary; spontaneous; + sponte_Adv : Adv ; -- [XXXDX] :: of one's own will; voluntarily; for one's own sake; + sporta_F_N : N ; -- [XXXDX] :: basket, hamper; + sportella_F_N : N ; -- [XXXDX] :: little basket; + sportula_F_N : N ; -- [XXXDX] :: food or money given by patrons to clients; + spretio_F_N : N ; -- [XXXDS] :: contempt; + spretor_M_N : N ; -- [XXXDX] :: one who despises or scorns; + spuma_F_N : N ; -- [XXXDX] :: foam, froth; slime, scum, spume; hair pomade/dye; + spumesco_V : V ; -- [XXXDX] :: become foamy; + spumeus_A : A ; -- [XXXDX] :: foamy, frothy; covered with foam; + spumifer_A : A ; -- [XXXEC] :: foaming; + spumiger_A : A ; -- [XXXEC] :: foaming; + spumo_V : V ; -- [XXXDX] :: foam, froth; be covered in foam; cover with foam; + spumosus_A : A ; -- [XXXDX] :: foaming, frothy; + spuo_V2 : V2 ; -- [XXXDX] :: spit, spit out; + spurcalium_N_N : N ; -- [FXXEM] :: pollution; filth; + spurcamen_N_N : N ; -- [DXXES] :: filth; dirt; + spurcidicus_A : A ; -- [BXXFS] :: obscene; + spurcificus_A : A ; -- [BXXFS] :: obscene; + spurcitia_F_N : N ; -- [XXXEC] :: filthiness, dirt; + spurcities_F_N : N ; -- [XXXDS] :: filthiness, dirt; + spurco_V : V ; -- [XXXDX] :: soil, infect; deprave; + spurcus_A : A ; -- [XXXDX] :: dirty, foul; morally polluted; + spurium_N_N : N ; -- [XBXEO] :: female external genitalia; marine animal of similar shape; + spurius_A : A ; -- [XXXES] :: spurious, false; of illegitimate/irregular/out of wedlock birth; + spurius_M_N : N ; -- [XXXEO] :: bastard, son of an unknown father; illegitimate child, spurious child; + sputamen_N_N : N ; -- [EXXFS] :: spit; + sputatilicus_A : A ; -- [XXXES] :: despicable; + sputo_V : V ; -- [XXXDX] :: spit out; + sputum_N_N : N ; -- [XXXDX] :: spittle; + squaleo_V : V ; -- [XXXDX] :: be covered with a rough or scaly layer; be dirty; + squalidus_A : A ; -- [XXXDX] :: squalid, filthy; + squalor_M_N : N ; -- [XXXDX] :: squalor, filth; + squalus_M_N : N ; -- [XAXEC] :: kind of fish; + squama_F_N : N ; -- [XXXDX] :: scale; metal-plate used in the making of scale-armor; + squameus_A : A ; -- [XXXDX] :: scaly; + squamiger_A : A ; -- [XXXDX] :: scaly; + squamosus_A : A ; -- [XXXDX] :: scaly; + squatina_F_N : N ; -- [DAXNS] :: shark; skate (Pliny); + squilla_F_N : N ; -- [XAXDO] :: shrimp; prawn; crayfish; term covering number of crustaceans; + st_Interj : Interj ; -- [XXXDX] :: hush! hist!; + stabilimentum_N_N : N ; -- [XXXEC] :: stay, support; + stabilio_V2 : V2 ; -- [XXXDX] :: make firm, establish; + stabilis_A : A ; -- [XXXDX] :: stable; steadfast; + stabilitas_F_N : N ; -- [XXXDX] :: stability, steadiness; + stabulo_V : V ; -- [XAXCO] :: stable/house (domestic animals, poultry, etc); be housed, have stall/lair/den; + stabulum_N_N : N ; -- [XXXBO] :: |inn/tavern; brothel; dwelling/hut; + stacta_F_N : N ; -- [XAXEC] :: oil of myrrh; + stacte_F_N : N ; -- [XAXEC] :: oil of myrrh; + stacte_M_N : N ; -- [EAXFT] :: styrax/storax; (fragrant gum/tree Styrax officinalis); (used medically); + stadium_N_N : N ; -- [XXXDX] :: stade, Greek measure of distance, (~607 feet, nearly furlong); race course; + stagneus_A : A ; -- [XTXCO] :: made of stagnum (alloy of sliver and lead); [lapis ~ => tin (Douay)]; + stagno_V : V ; -- [XXXDX] :: form/lie in pools; be under water; + stagnosus_A : A ; -- [EAXFS] :: stagnant; full of standing water; + stagnum_N_N : N ; -- [XXXBO] :: pool, lake, lagoon, expanse of water; bath, swimming pool; + stamen_N_N : N ; -- [XXXDX] :: warp (in the loom); thread (on distaff); thread of life spun by the Fates; + stamineus_A : A ; -- [XXXDX] :: of or consisting of threads; + stannum_N_N : N ; -- [XXXDS] :: alloy of silver and lead; tin (late); + stantia_F_N : N ; -- [FLXFY] :: contract; + stapeda_F_N : N ; -- [FXXDM] :: stirrup; stirrup-leather; + stapes_F_N : N ; -- [FXXCM] :: stirrup; stirrup-leather; (also medical for an inner ear bone, the stirrup); + staphis_F_N : N ; -- [XAXNO] :: stavesacre (Delphinium staphisagria); + staphylinus_F_N : N ; -- [DAXNS] :: parsnip (Pliny); + stapis_F_N : N ; -- [FXXEM] :: stirrup; stirrup-leather; + statalis_A : A ; -- [GXXEK] :: of state (politics); + stataria_F_N : N ; -- [XDXCS] :: quiet-acted comedy; + statarius_A : A ; -- [XXXDX] :: stationary; + statarius_M_N : N ; -- [XDXDS] :: comedy actor; actor in stataria; + stater_M_N : N ; -- [XLQDS] :: small silver Jewish coin. (value of four drachma); + statera_F_N : N ; -- [XXXDO] :: scales, balance; grade, standard of quality; chariot pole; + statica_F_N : N ; -- [GXXEK] :: static; + staticus_A : A ; -- [GXXEK] :: static; + statim_Adv : Adv ; -- [XXXAX] :: at once, immediately; + statio_F_N : N ; -- [XXXBX] :: outpost, picket; station; watch; + statistica_F_N : N ; -- [GXXEK] :: statistic; + statisticus_A : A ; -- [GXXEK] :: statistical; + stativa_F_N : N ; -- [XWXDS] :: resting place; quarters; + stativum_N_N : N ; -- [XWXDS] :: standing camp (as pl.); + stativus_A : A ; -- [XXXDX] :: stationary, permanent; + stator_M_N : N ; -- [XXXDX] :: one who establishes or upholds (cult-title of Jupiter); + statua_F_N : N ; -- [XXXDX] :: statue; image; + statuaria_F_N : N ; -- [XDXEC] :: art of sculpture; + statuarius_A : A ; -- [XXXEC] :: of statues; + statuarius_M_N : N ; -- [XDXEC] :: statute; + statuliber_M_N : N ; -- [XLXEO] :: slave (male) to which freedom has been promised subject to stated conditions; + statulibera_F_N : N ; -- [XLXEO] :: slave (female) to which freedom has been promised subject to stated conditions; + statulibertas_F_N : N ; -- [XLXFO] :: condition of being statuliber (slave w/freedom promised subject to condition); + statumen_N_N : N ; -- [XXXDX] :: support; + statuo_V2 : V2 ; -- [XXXAX] :: set up, establish, set, place, build; decide, think; + statura_F_N : N ; -- [XXXDX] :: height, stature; + status_A : A ; -- [XXXDS] :: appointed; + status_M_N : N ; -- [XXXBX] :: position, situation, condition; rank; standing, status; + stega_F_N : N ; -- [BXXES] :: ship-deck; (Plautus); + stela_F_N : N ; -- [XXXFS] :: pillar; column; + stelephur_M_N : N ; -- [XAXNO] :: plant w/flowers in spikes; (also stelephuros); (perh. haresfoot plantain); + stelio_M_N : N ; -- [XXXCO] :: lizard, gecko; treacherous/deceitful person, "snake"; + stella_F_N : N ; -- [XXXAX] :: star; planet, heavenly body; point of light in jewel; constellation; star shape; + stellans_A : A ; -- [XXXCO] :: starry; having the appearance of stars; set/adorned with stars; + stellatus_A : A ; -- [XXXCS] :: starry; set with stars; sparkling, glittering; shaped like a star or "X"; + stellifer_A : A ; -- [XSXEC] :: star-bearing, starry; + stelliger_A : A ; -- [XSXEC] :: star-bearing, starry; + stellio_M_N : N ; -- [XXXCO] :: lizard, gecko; treacherous/deceitful person, "snake"; + stellionatus_M_N : N ; -- [XXXEO] :: trickery; cheating; deceitful/underhand dealing; + stello_V2 : V2 ; -- [XXXES] :: set/furnish/cover with stars/points of light; + stemma_N_N : N ; -- [XXXEC] :: garland, chaplet; a genealogical tree; + stentaculum_N_N : N ; -- [XXXEC] :: prop, support; + stercilinium_N_N : N ; -- [XXXCO] :: dung heap/hill/pit, manure pile; midden; + stercilinum_N_N : N ; -- [XXXCO] :: dung heap/hill/pit, manure pile; midden; + stercolum_N_N : N ; -- [FXBFM] :: dung; + stercoralis_A : A ; -- [EXBFM] :: of/pertaining to excrement, excremental; + stercorarium_N_N : N ; -- [FXBFM] :: privy; + stercoreus_A : A ; -- [BXXFS] :: filthy; + stercorinis_A : A ; -- [EXBFM] :: of/pertaining to excrement, excremental; + stercoro_V2 : V2 ; -- [FBBFM] :: void excrement, defecate; + stercorosus_A : A ; -- [XXXFS] :: well-manured; + sterculinium_N_N : N ; -- [XXXCO] :: dung heap/hill/pit, manure pile; midden; + sterculinum_N_N : N ; -- [XXXCO] :: dung heap/hill/pit, manure pile; midden; + stercus_M_N : N ; -- [XXXDX] :: filth, manure; + stereophonia_F_N : N ; -- [HTXEK] :: stereo; + stereophonicus_A : A ; -- [HTXEK] :: stereophonic; + stereotypus_M_N : N ; -- [GXXEK] :: stereotype; + sterilis_A : A ; -- [XXXBX] :: barren, sterile; fruitless; unprofitable, futile; + sterilitas_F_N : N ; -- [XXXBO] :: barrenness, sterility, inability (female) to reproduce/(land) to produce crops; + sterilizatio_F_N : N ; -- [GXXEK] :: sterilization; + sterilizo_V : V ; -- [GXXEK] :: sterilize; + sternax_A : A ; -- [XXXDX] :: liable to throw its rider (of a horse); + sterno_V2 : V2 ; -- [XXXAX] :: spread, strew, scatter; lay out; + sternumentum_N_N : N ; -- [XBXCO] :: sneeze; sneezing powder; + sternuo_V : V ; -- [XBXCO] :: sneeze; + sternutamentum_N_N : N ; -- [XBXDO] :: attack of sneezing; + sternutatio_F_N : N ; -- [XBXEO] :: sneezing; action of violent or repeated sneezing; + sternuto_V : V ; -- [XBXCO] :: sneeze (repeatedly or violently); + sterquilinium_N_N : N ; -- [XXXCO] :: dung heap/hill/pit, manure pile; midden; + sterquilinum_N_N : N ; -- [XXXCO] :: dung heap/hill/pit, manure pile; midden; + sterteia_F_N : N ; -- [XXXDX] :: snorer, sniveler; + sterto_V2 : V2 ; -- [XXXDX] :: snore; + stibadium_N_N : N ; -- [XXXEC] :: semicircular seat; + stibi_N_N : N ; -- [XXXCO] :: antimony; (used in eye-salve and makeup); stibium/sulphuret of antimony (L+S); + stibinus_A : A ; -- [DXXFS] :: antimonial, of antimony; (used in eye-salve and makeup); + stibis_F_N : N ; -- [XXXCO] :: antimony; (used in eye-salve and makeup); stibium/sulphuret of antimony (L+S); + stibium_N_N : N ; -- [XXXCO] :: antimony; (used in eye-salve and makeup); stibium/sulphuret of antimony (L+S); + stigma_F_N : N ; -- [XLXCO] :: mark hot tattooed on runaway slaves/criminals; reproduction of Christ's wounds; + stigma_N_N : N ; -- [XLXCO] :: mark hot tattooed on runaway slaves/criminals; reproduction of Christ's wounds; + stigmatias_M_N : N ; -- [XXXEC] :: branded slave; + stilio_M_N : N ; -- [EXXFT] :: lizard, gecko; treacherous/deceitful person, "snake"; + stilisticus_A : A ; -- [GXXEK] :: stylistic; + stilla_F_N : N ; -- [XXXDX] :: drop of liquid; viscous drop; drip; + stillicidium_N_N : N ; -- [XXXDX] :: fall (of a liquid) in successive drops; + stillo_V : V ; -- [XXXDX] :: fall in drops; drip; cause to drip; pour in drops; + stilus_M_N : N ; -- [XXXDX] :: stylus, pencil, iron pen; column, pillar; + stimmi_N_N : N ; -- [XXXCO] :: antimony; (used in eye-salve and makeup); stibium/sulphuret of antimony (L+S); + stimulatio_F_N : N ; -- [DXXDS] :: incentive; + stimulatrix_F_N : N ; -- [XXXDS] :: provocative woman; + stimuleus_A : A ; -- [XXXDS] :: made-of-prickles; + stimulo_V : V ; -- [XXXBX] :: urge forward with a goad, torment,"sting"; incite, rouse to frenzy; + stimulus_M_N : N ; -- [XXXBO] :: spur/goad; trap/spike in earth; prick/sting/cause of torment/torture instrument; + stinguo_V : V ; -- [XXXDX] :: extinguish, put out; annihilate; + stipatio_F_N : N ; -- [XXXDS] :: crowd; retinue; + stipator_M_N : N ; -- [XXXDX] :: one of train surrounding a king; bodyguard, close attendant; + stipendiarius_A : A ; -- [XXXDX] :: mercenary; paying tribute in the form of cash; + stipendium_N_N : N ; -- [XXXDX] :: tribute, stipend; pay, wages; military service; + stipes_M_N : N ; -- [XXXDX] :: post, stake; + stipo_V : V ; -- [XXXDX] :: crowd, press together, compress, surround closely; + stips_F_N : N ; -- [XXXDX] :: small offering; + stipula_F_N : N ; -- [XXXDX] :: stalk; stubble; straw; reed played on as a pipe; + stipulatio_F_N : N ; -- [XLXCO] :: |promise; bargain; (demanding spondesne from debtor/contract w/answer spondeo); + stipulatiuncula_F_N : N ; -- [XXXDS] :: small promise; small stipulation; + stipulor_V : V ; -- [XLXBO] :: extract solemn promise/guarantee (oral contract); promise in a stipulatio; + stiria_F_N : N ; -- [XXXDX] :: icicle; + stirps_F_N : N ; -- [XXXBX] :: stock, plant; race, lineage; character; [damnata ~ => condemned human race]; + stiva_F_N : N ; -- [XXXDX] :: plow handle; + stlatarius_A : A ; -- [XXXEC] :: brought by the sea; imported; costly; + stlattarius_A : A ; -- [XXXFS] :: of a ship; sea-borne; + sto_V : V ; -- [XXXAX] :: stand, stand still, stand firm; remain, rest; stoechas_1_N : N ; -- [DAXNS] :: French lavender (Pliny); - stoechas_2_N : N ; - stola_F_N : N ; - stolatus_A : A ; - stolide_Adv : Adv ; - stoliditas_F_N : N ; - stolidus_A : A ; - stomachor_V : V ; - stomachosus_A : A ; - stomachus_M_N : N ; - stomatice_F_N : N ; - storax_M_N : N ; - storea_F_N : N ; - storia_F_N : N ; - strabo_M_N : N ; - strages_F_N : N ; - stragulum_N_N : N ; - stragulus_A : A ; - stramen_N_N : N ; - stramentum_N_N : N ; - stramineus_A : A ; - strangulo_V2 : V2 ; - stranguria_F_N : N ; - strategema_N_N : N ; - strategica_N_N : N ; - strategus_M_N : N ; - stratioticus_A : A ; - stratorium_N_N : N ; - stratum_N_N : N ; - stratus_A : A ; - stratus_M_N : N ; - strena_F_N : N ; - strenuitas_F_N : N ; - strenuus_A : A ; - strepa_F_N : N ; - strepes_F_N : N ; - strepito_V : V ; - strepitus_M_N : N ; - strepo_V2 : V2 ; - stria_F_N : N ; - strictim_Adv : Adv ; - strictura_F_N : N ; - strictus_A : A ; - strideo_V : V ; - strido_V : V ; - stridor_M_N : N ; - stridulus_A : A ; - striga_F_N : N ; - strigilis_F_N : N ; - strigio_M_N : N ; - strigo_V : V ; - strigosus_A : A ; - stringo_V2 : V2 ; - stringor_M_N : N ; - strinuus_A : A ; - strio_V : V ; - strix_F_N : N ; - stropha_F_N : N ; - strophiarius_M_N : N ; - strophium_N_N : N ; - stroppus_M_N : N ; - structilis_A : A ; - structor_M_N : N ; - structura_F_N : N ; - structuralis_A : A ; - structuralismus_M_N : N ; - strues_F_N : N ; - struix_F_N : N ; - struma_F_N : N ; - strumosus_A : A ; - struo_V2 : V2 ; - strutheus_A : A ; - struthiocamelinus_A : A ; - struthiocamelus_C_N : N ; - struthion_N_N : N ; - struthocamelinus_A : A ; - struthocamelus_M_N : N ; - strutio_M_N : N ; - studeo_V : V ; - studiose_Adv : Adv ; - studiosus_A : A ; - studiosus_M_N : N ; - studium_N_N : N ; - stulte_Adv : Adv ; - stultiloquentia_F_N : N ; - stultiloquium_N_N : N ; - stultitia_F_N : N ; - stultividus_A : A ; - stultus_A : A ; - stultus_M_N : N ; - stupa_F_N : N ; - stupefacio_V2 : V2 ; - stupefactivus_A : A ; - stupefio_V : V ; - stupeo_V : V ; - stupesco_V : V ; - stupeus_A : A ; - stupiditas_F_N : N ; - stupidus_A : A ; - stupor_M_N : N ; - stuppa_F_N : N ; - stuppeus_A : A ; - stupro_V : V ; - stuprum_N_N : N ; - sturax_M_N : N ; - sturgio_F_N : N ; - sturnus_M_N : N ; - stygius_A : A ; - stylobata_M_N : N ; - stylobates_M_N : N ; - stylus_M_N : N ; - styraca_C_N : N ; - styracinus_A : A ; - styrax_M_N : N ; - suada_F_N : N ; - suadela_F_N : N ; - suadeo_V : V ; - suadus_A : A ; - suasor_M_N : N ; - suasoria_F_N : N ; - suasorius_A : A ; - suasus_M_N : N ; - suaveolens_A : A ; - suaviatio_F_N : N ; - suavidicus_A : A ; - suaviloquens_A : A ; - suaviloquentia_F_N : N ; - suaviolum_N_N : N ; - suavis_A : A ; - suavitas_F_N : N ; - suaviter_Adv : Adv ; - suavium_N_N : N ; - sub_Abl_Prep : Prep ; - sub_Acc_Prep : Prep ; - subabsurde_Adv : Adv ; - subabsurdus_A : A ; - subaccuso_V2 : V2 ; - subacidus_A : A ; - subactio_F_N : N ; - subadjuva_M_N : N ; - subadroganter_Adv : Adv ; - subagitatio_F_N : N ; - subagrestis_A : A ; - subalare_N_N : N ; - subalaris_A : A ; - subalaris_M_N : N ; - subalbidus_A : A ; - subamarus_A : A ; - subaqueanus_A : A ; - subaquilus_A : A ; - subarmalis_A : A ; - subarrho_V : V ; - subasso_V2 : V2 ; - subaudio_V : V ; - subausculto_V : V ; - subausterus_A : A ; - subbasilicanus_M_N : N ; - subblandio_V2 : V2 ; - subcaesius_A : A ; - subcavus_A : A ; - subcido_V : V ; - subcinericius_A : A ; - subconscientia_F_N : N ; - subconscius_A : A ; - subcrudus_A : A ; - subcumbo_V : V ; - subdiaconus_M_N : N ; - subdialis_A : A ; - subdifficilis_A : A ; - subdiffido_V : V ; - subdio_Adv : Adv ; - subdisjunctivus_A : A ; - subdistinctio_F_N : N ; - subdistinguo_V2 : V2 ; - subditicius_A : A ; - subditivus_A : A ; - subditus_A : A ; - subdo_V2 : V2 ; - subdolus_A : A ; - subduco_V2 : V2 ; - subductio_F_N : N ; - subedo_V2 : V2 ; - subeo_V : V ; - suber_N_N : N ; - subex_F_N : N ; - subfervefacio_V2 : V2 ; - subfocatio_F_N : N ; - subfodio_V2 : V2 ; - subfuro_V2 : V2 ; - subgestio_F_N : N ; - subhorridus_A : A ; - subicio_V2 : V2 ; - subigitatio_F_N : N ; - subigito_V2 : V2 ; - subigo_V2 : V2 ; - subimpudens_A : A ; - subinanis_A : A ; - subinde_Adv : Adv ; - subinsulsus_A : A ; - subintellego_V2 : V2 ; - subintro_V : V ; - subintroductio_F_N : N ; - subintroductor_M_N : N ; - subintroeo_V2 : V2 ; - subinvideo_V : V ; - subinvisus_A : A ; - subinvito_V : V ; - subirascor_V : V ; - subiratus_A : A ; - subitaneus_A : A ; - subitarius_A : A ; - subitatio_F_N : N ; - subito_Adv : Adv ; - subitus_A : A ; - subium_N_N : N ; - subjaceo_V : V ; - subjectio_F_N : N ; - subjectivismus_M_N : N ; - subjecto_V : V ; - subjector_M_N : N ; - subjectus_A : A ; - subjicio_V2 : V2 ; - subjugalis_A : A ; - subjugalis_M_N : N ; - subjugalium_N_N : N ; - subjugatio_F_N : N ; - subjugo_V2 : V2 ; - subjugum_N_N : N ; - subjunctivus_A : A ; - subjungo_V2 : V2 ; - sublabor_V : V ; - sublatus_A : A ; - sublecto_V2 : V2 ; - sublego_V2 : V2 ; - sublestus_A : A ; - sublevatio_F_N : N ; - sublevo_V : V ; - sublica_F_N : N ; - sublicis_F_N : N ; - sublicius_A : A ; - subligaculum_N_N : N ; - subligar_N_N : N ; - subligo_V : V ; - sublimatio_F_N : N ; - sublime_Adv : Adv ; - sublimis_A : A ; - sublimitas_F_N : N ; - sublimo_V2 : V2 ; - sublimus_A : A ; - sublingio_M_N : N ; - sublino_V2 : V2 ; - sublividus_A : A ; - subllabor_V : V ; - subluceo_V : V ; - sublucidus_A : A ; - subluo_V2 : V2 ; - sublustris_A : A ; - subluvies_F_N : N ; - submedius_A : A ; - submergo_V2 : V2 ; - subministratio_F_N : N ; - subministro_V : V ; - submissus_A : A ; - submitto_V2 : V2 ; - submoleste_Adv : Adv ; - submolestus_A : A ; - submoneo_V : V ; - submorosus_A : A ; - submoveo_V : V ; - submultiplex_A : A ; - submurmuro_V : V ; - submuto_V2 : V2 ; - subnascor_V : V ; - subnecto_V2 : V2 ; - subnego_V2 : V2 ; - subnervio_V2 : V2 ; - subnervo_V2 : V2 ; - subniger_A : A ; - subnisus_A : A ; - subnixus_A : A ; - subnotatio_F_N : N ; - subnotator_M_N : N ; - subnoto_V : V ; - subnuba_F_N : N ; - subnubilus_A : A ; - subo_V : V ; - subobscaenus_A : A ; - subobscenus_A : A ; - subobscurus_A : A ; - subodiosus_A : A ; - subodoro_V : V ; - suboffendo_V : V ; - suboles_F_N : N ; - subolesco_V : V ; - subolet_V0 : V ; - suborior_V : V ; - suborno_V : V ; - subortus_M_N : N ; - subpositivus_A : A ; - subpuratio_F_N : N ; - subpuratorius_A : A ; - subpuratus_A : A ; - subpuro_V : V ; - subrancidus_A : A ; - subraucus_A : A ; - subregulus_M_N : N ; - subremigo_V : V ; - subrepo_V2 : V2 ; - subreptio_F_N : N ; - subreptum_Adv : Adv ; - subrideo_V : V ; - subrigo_V2 : V2 ; - subringor_V : V ; - subripio_V2 : V2 ; - subrogo_V2 : V2 ; - subrostranus_M_N : N ; - subrubeo_V : V ; - subrufus_A : A ; - subruo_V2 : V2 ; - subrusticus_A : A ; - subsannatio_F_N : N ; - subsannator_M_N : N ; - subsanno_V2 : V2 ; - subscribendarius_M_N : N ; - subscribo_V2 : V2 ; - subscus_F_N : N ; - subsecivus_A : A ; - subseco_V : V ; - subsellium_N_N : N ; - subsentio_V2 : V2 ; - subsequenter_Adv : Adv ; - subsequor_V : V ; - subsericus_A : A ; - subsero_V2 : V2 ; - subsicivus_A : A ; - subsidialis_A : A ; - subsidiarietas_F_N : N ; - subsidiarius_A : A ; - subsidiarius_M_N : N ; - subsidium_N_N : N ; - subsido_V2 : V2 ; - subsignanus_A : A ; - subsignanus_M_N : N ; - subsilio_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_V2 : V2 ; - substituo_V2 : V2 ; - substitutio_F_N : N ; - substitutus_M_N : N ; - substo_V : V ; - substramen_N_N : N ; - substrictus_A : A ; - substringo_V2 : V2 ; - substructio_F_N : N ; - substruo_V2 : V2 ; - subsultim_Adv : Adv ; - subsulto_V : V ; - subsum_V : V ; - subsumentum_N_N : N ; - subsuperparticularis_A : A ; - subsuperpartiens_A : A ; - subsutus_A : A ; - subtalaris_M_N : N ; - subtegmen_N_N : N ; - subtemen_N_N : N ; - subtendo_V2 : V2 ; - subter_Abl_Prep : Prep ; - subter_Acc_Prep : Prep ; - subter_Adv : Adv ; - subterduco_V2 : V2 ; - subterfugio_V2 : V2 ; - subterlabor_V : V ; - subtero_V2 : V2 ; - subterraneus_A : A ; - subtexo_V2 : V2 ; - subtilis_A : A ; - subtilitas_F_N : N ; - subtiliter_Adv : Adv ; - subtimeo_V : V ; - subtractio_F_N : N ; - subtraho_V2 : V2 ; - subtristis_A : A ; - subtularis_M_N : N ; - subtum_Adv : Adv ; - subturpiculus_A : A ; - subturpis_A : A ; - subtus_Adv : Adv ; - subtusus_A : A ; - subucula_F_N : N ; - subula_F_N : N ; - subulcus_M_N : N ; - suburbanitas_F_N : N ; - suburbanus_A : A ; - suburbanus_M_N : N ; - suburbium_N_N : N ; - suburgeo_V : V ; - subvectio_F_N : N ; - subvecto_V : V ; - subvectus_M_N : N ; - subveho_V2 : V2 ; - subvenio_V2 : V2 ; - subvento_V2 : V2 ; - subvereor_V : V ; - subversio_F_N : N ; - subverto_V2 : V2 ; - subvexus_A : A ; - subviridis_A : A ; - subvolo_V : V ; - subvolvo_V : V ; - succavus_A : A ; - succedo_V2 : V2 ; - succendo_V2 : V2 ; - succenturio_M_N : N ; - succenturio_V2 : V2 ; - succeptor_M_N : N ; - successio_F_N : N ; - successor_M_N : N ; - successus_M_N : N ; - succidia_F_N : N ; - succido_V : V ; - succido_V2 : V2 ; - succiduus_A : A ; - succinericius_A : A ; - succingo_V2 : V2 ; - succingulum_N_N : N ; - succino_V : V ; - succinum_N_N : N ; - succlamatio_F_N : N ; - succlamo_V : V ; - succollo_V : V ; - succontumeliose_Adv : Adv ; - succresco_V2 : V2 ; - succrispus_A : A ; - succumbo_V : V ; - succurator_M_N : N ; - succurro_V2 : V2 ; - succus_M_N : N ; - succussus_M_N : N ; - succustos_M_N : N ; - succutio_V2 : V2 ; - sucidus_A : A ; - sucinum_N_N : N ; - sucinus_A : A ; - suculentus_A : A ; - sucus_M_N : N ; - sudarium_N_N : N ; - sudatorium_N_N : N ; - sudatorius_A : A ; - sudis_F_N : N ; - sudo_V : V ; - sudor_M_N : N ; - sudum_N_N : N ; - sudus_A : A ; - sueo_V : V ; - suesco_V2 : V2 ; - suetus_A : A ; - sufes_M_N : N ; - suffamen_N_N : N ; - suffarcino_V : V ; - suffero_V : V ; - suffervefacio_V2 : V2 ; - suffes_M_N : N ; - sufficiens_A : A ; - sufficienter_Adv : Adv ; - sufficio_V2 : V2 ; - suffigo_V2 : V2 ; - suffimen_N_N : N ; - suffimentum_N_N : N ; - 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_V2 : V2 ; - suffraganeus_M_N : N ; - suffragatio_F_N : N ; - suffragator_M_N : N ; - suffragatorius_A : A ; - suffragium_N_N : N ; - suffrago_F_N : N ; - suffrago_V : V ; - suffragor_V : V ; - suffrico_V : V ; - suffringo_V : V ; - suffugio_V2 : V2 ; - suffugium_N_N : N ; - suffulcio_V2 : V2 ; - suffumigo_V2 : V2 ; - suffundo_V2 : V2 ; - suffuro_V2 : V2 ; - suffuscus_A : A ; - suffusus_A : A ; - suggero_V2 : V2 ; - suggestio_F_N : N ; - suggestus_M_N : N ; - suggillo_V : V ; - suggrandis_A : A ; - suggredior_V : V ; - sugillatio_F_N : N ; - sugillo_V : V ; - sugitorium_N_N : N ; - sugo_V2 : V2 ; - sugrunda_F_N : N ; - sugrundarium_N_N : N ; - suicida_M_N : N ; - suicidalis_A : A ; - suicidarius_A : A ; - suicidium_N_N : N ; - suillus_A : A ; - sulco_V : V ; - sulcus_M_N : N ; - sulfur_N_N : N ; - sulfuratus_A : A ; - sullaturio_V : V ; - sulphur_N_N : N ; - sulphureus_A : A ; - sulpur_N_N : N ; - sulpureus_A : A ; - sultanus_M_N : N ; - sulum_N_N : N ; - sumbolum_N_N : N ; - sumbolus_M_N : N ; - sumen_N_N : N ; - summa_F_N : N ; - summas_A : A ; - summatim_Adv : Adv ; - summatus_M_N : N ; - summe_Adv : Adv ; - summergo_V2 : V2 ; - sumministratio_F_N : N ; - sumministro_V : V ; - summissio_F_N : N ; - summissus_A : A ; - summitas_F_N : N ; - summitto_V2 : V2 ; - summoleste_Adv : Adv ; - summolestus_A : A ; - summoneo_V : V ; - summonio_V2 : V2 ; - summonitio_F_N : N ; - summonitor_M_N : N ; - summopere_Adv : Adv ; - summorosus_A : A ; - summotor_M_N : N ; - summoveo_V : V ; - summum_N_N : N ; - summurmuro_V : V ; - summus_A : A ; - summuto_V2 : V2 ; - sumo_V2 : V2 ; - sumptuarius_A : A ; - sumptuosus_A : A ; - sumptus_M_N : N ; - suo_V2 : V2 ; - suouitaurilis_N_N : N ; - suovetaurile_N_N : N ; - supellex_F_N : N ; - super_Abl_Prep : Prep ; - super_Acc_Prep : Prep ; - super_Adv : Adv ; - superabilis_A : A ; - superabundanter_Adv : Adv ; - superabundantia_F_N : N ; - superabundo_V : V ; - superaddo_V2 : V2 ; - superadicio_V2 : V2 ; - superaedificium_N_N : N ; - superaedifico_V2 : V2 ; - superans_A : A ; - superappono_V2 : V2 ; - superator_M_N : N ; - superbe_Adv : Adv ; - superbia_F_N : N ; - superbiloquentia_F_N : N ; - superbio_V : V ; - superbiparticular_A : A ; - superbipartiens_A : A ; - superbus_A : A ; - superciliosus_A : A ; - supercilium_N_N : N ; - supercilius_A : A ; - superdico_V : V ; - superdo_V2 : V2 ; - superduco_V2 : V2 ; - superductio_F_N : N ; - superemineo_V : V ; - superexactio_F_N : N ; - superexalto_V : V ; - superexcedo_V2 : V2 ; - superexcellens_A : A ; - superexcrescens_A : A ; - superficies_F_N : N ; - superficietenus_Adv : Adv ; - superfio_V : V ; - superfixus_A : A ; - superfluo_V2 : V2 ; - superfluum_N_N : N ; - superfluus_A : A ; - superfundo_V2 : V2 ; - supergredior_V : V ; - superimmineo_V : V ; - superimpendens_A : A ; - superimpendo_V2 : V2 ; - superimpono_V2 : V2 ; - superincidens_A : A ; - superincubans_A : A ; - superincumbo_V2 : V2 ; - superingo_V2 : V2 ; - superinicio_V2 : V2 ; - superinjicio_V2 : V2 ; - superinpendo_V2 : V2 ; - superinsterno_V2 : V2 ; - superinungo_V2 : V2 ; - superinvaleo_V : V ; - superinvalesco_V : V ; - superioritas_F_N : N ; - superjaceo_V2 : V2 ; - superjacio_V2 : V2 ; - superlatus_A : A ; - superlectile_N_N : N ; - superliminare_N_N : N ; - superliminium_N_N : N ; - superlinen_N_N : N ; - superlininare_N_N : N ; - superlino_V2 : V2 ; - supermitto_V2 : V2 ; - supernato_V : V ; - supernaturalis_A : A ; - superne_Adv : Adv ; - supernus_A : A ; - supero_V : V ; - superobruo_V2 : V2 ; - superoccupo_V : V ; - superonero_V2 : V2 ; - superparticularis_A : A ; - superpartiens_A : A ; - superpendens_A : A ; - superpono_V2 : V2 ; - superrealismus_M_N : N ; - superruo_V : V ; - superscando_V : V ; - supersedeo_V : V ; - supersido_V2 : V2 ; - supersilium_N_N : N ; - supersterno_V2 : V2 ; - superstes_A : A ; - superstitio_F_N : N ; - superstitiosus_A : A ; - supersto_V : V ; - superstruo_V2 : V2 ; - supersubstantialis_A : A ; - supersum_V : V ; - supertego_V2 : V2 ; - supertriparticular_A : A ; - supertripartiens_A : A ; - superum_N_N : N ; - superumerale_N_N : N ; - superurgens_A : A ; - superus_A : A ; - superus_M_N : N ; - supervacaneus_A : A ; - supervacuaneus_A : A ; - supervacuus_A : A ; - supervado_V : V ; - supervehor_V : V ; - supervenio_V2 : V2 ; - superventus_M_N : N ; - supervivo_V2 : V2 ; - supervolito_V : V ; - supervolo_V : V ; - supino_V : V ; - supinus_A : A ; - supo_V2 : V2 ; - suppalidus_A : A ; - suppalpor_V : V ; - suppar_A : A ; - supparasitor_V : V ; - supparum_N_N : N ; - supparus_M_N : N ; - suppeditatio_F_N : N ; - suppedito_V : V ; - suppedo_V : V ; - suppernatus_A : A ; - suppetia_F_N : N ; - suppetior_V : V ; - suppeto_V2 : V2 ; - suppilo_V2 : V2 ; - suppingo_V2 : V2 ; - supplanto_V : V ; - supplementum_N_N : N ; - suppleo_V : V ; - supplex_A : A ; - supplex_M_N : N ; - supplicatio_F_N : N ; - suppliciter_Adv : Adv ; - supplicium_N_N : N ; - supplico_V : V ; - supplodo_V2 : V2 ; - supplosio_F_N : N ; - suppono_V2 : V2 ; - supporto_V : V ; - suppositicius_A : A ; - suppositio_F_N : N ; - supposititius_A : A ; - suppressio_F_N : N ; - supprimo_V2 : V2 ; - suppromus_M_N : N ; - suppudet_V0 : V ; - suppullulo_V : V ; - suppuratio_F_N : N ; - suppuratorius_A : A ; - suppuratus_A : A ; - suppuro_V : V ; - suppus_A : A ; - supputatio_F_N : N ; - supputo_V2 : V2 ; - supra_Acc_Prep : Prep ; - supra_Adv : Adv ; - supradico_V2 : V2 ; - supranistria_F_N : N ; - suprascando_V : V ; - suprascribo_V2 : V2 ; - suprascriptio_F_N : N ; - suprascriptus_A : A ; - supremum_N_N : N ; - supter_Abl_Prep : Prep ; - supter_Acc_Prep : Prep ; - supter_Adv : Adv ; - suptilis_A : A ; - suptilitas_F_N : N ; - suptiliter_Adv : Adv ; - sura_F_N : N ; - surculosus_A : A ; - surculus_M_N : N ; - surdaster_A : A ; - surditas_F_N : N ; - surdus_A : A ; - surena_F_N : N ; - surgo_V2 : V2 ; - surpiculus_A : A ; - surpiculus_M_N : N ; - surpo_V2 : V2 ; - surregulus_M_N : N ; - surrepo_V2 : V2 ; - surrepticius_A : A ; - surreptio_F_N : N ; - surreptitius_A : A ; - surreptum_Adv : Adv ; - surrido_V2 : V2 ; - surripio_V2 : V2 ; - surrogo_V : V ; - surrubicundus_A : A ; - surruncivus_A : A ; - surrutilus_A : A ; - sursisa_F_N : N ; - sursum_Adv : Adv ; + stoechas_2_N : N ; -- [DAXNS] :: French lavender (Pliny); + stola_F_N : N ; -- [XXXCO] :: stola, Roman matron's outer garment; dress; clothing; + stolatus_A : A ; -- [XXXFS] :: stola-wearing; befitting a matron; + stolide_Adv : Adv ; -- [XXXDX] :: stupidly, obtusely; brutishly; solidly (physical growth), thickly; + stoliditas_F_N : N ; -- [XXXDO] :: stupidity, cloddishness, brutish insensibility; dullness, obtuseness (L+S); + stolidus_A : A ; -- [XXXDX] :: dull, stupid, insensible; brutish; inert (things); + stomachor_V : V ; -- [XXXDX] :: be angry, boil with rage; + stomachosus_A : A ; -- [XXXDX] :: irritable, short tempered; + stomachus_M_N : N ; -- [XXXDX] :: gullet; stomach; annoyance; ill-temper; + stomatice_F_N : N ; -- [XBXNS] :: mouth medicine; + storax_M_N : N ; -- [XAXES] :: styrax/storax; (fragrant gum/tree Styrax officinalis); (used medically); + storea_F_N : N ; -- [XXXDX] :: matting of rushes; + storia_F_N : N ; -- [XXXDX] :: matting of rushes; + strabo_M_N : N ; -- [XXXEC] :: squinter; + strages_F_N : N ; -- [XXXBX] :: overthrow; massacre, slaughter, cutting down; havoc; confused heap; + stragulum_N_N : N ; -- [XXXDS] :: covering; rug, carpet; bedspread, bed-cover; + stragulus_A : A ; -- [XXXDX] :: covering; + stramen_N_N : N ; -- [XXXDX] :: straw for bedding, etc, litter; + stramentum_N_N : N ; -- [XXXDX] :: thatch; litter/trash (Cal); + stramineus_A : A ; -- [XXXEO] :: straw-, made of straw; straw-colored (Cal); + strangulo_V2 : V2 ; -- [XXXBO] :: strangle/throttle; suffocate/stifle/smother; choke; constrict way; keep close; + stranguria_F_N : N ; -- [XXXEC] :: strangury, painful discharge of urine; disease of urinary organs; + strategema_N_N : N ; -- [XXXFM] :: stratagem; piece of generalship; + strategica_N_N : N ; -- [XWXFC] :: generalship, general's deed; stratagem; + strategus_M_N : N ; -- [XWXFQ] :: commander; president; (Col); + stratioticus_A : A ; -- [XWXDO] :: soldierly, military, proper to soldier; w/status/bearing of soldier; eye-salve; + stratorium_N_N : N ; -- [EXXFS] :: bedding (pl.); + stratum_N_N : N ; -- [XXXDX] :: coverlet; bed, couch; horse-blanket; + stratus_A : A ; -- [XXXDS] :: prostrate; + stratus_M_N : N ; -- [XXXFS] :: spreading; cover; + strena_F_N : N ; -- [XXXEC] :: favorable omen; a new year's gift; + strenuitas_F_N : N ; -- [XXXDX] :: strenuous behavior, activity; + strenuus_A : A ; -- [XXXDX] :: active, vigorous, strenuous; + strepa_F_N : N ; -- [FXXDM] :: stirrup; stirrup-leather; + strepes_F_N : N ; -- [FXXDM] :: stirrup; stirrup-leather; + strepito_V : V ; -- [XXXDX] :: make a loud or harsh noise; + strepitus_M_N : N ; -- [XXXBX] :: noise, racket; sound; din, crash, uproar; + strepo_V2 : V2 ; -- [XXXDX] :: make a loud noise; shout confusedly; resound; + stria_F_N : N ; -- [XXXFS] :: furrow, channel; T:flute of column; + strictim_Adv : Adv ; -- [XXXEC] :: so as to graze; superficially, slightly, summarily; + strictura_F_N : N ; -- [XXXDX] :: hardened mass of iron; + strictus_A : A ; -- [XXXDX] :: tight, close, strait, drawn together; + strideo_V : V ; -- [XXXBO] :: creak, squeak, grate, shriek, whistle; (make shrill sound); hiss; gnash; + strido_V : V ; -- [XXXBO] :: creak, squeak, grate, shriek, whistle; (make shrill sound); hiss; gnash; + stridor_M_N : N ; -- [XXXDX] :: hissing, buzzing, rattling, whistling; high-pitched sound; + stridulus_A : A ; -- [XXXDX] :: whizzing, hissing; + striga_F_N : N ; -- [DWXEO] :: |side-avenue (in military camp); space between squadrons; + strigilis_F_N : N ; -- [XXXDX] :: strigil, an instrument used to scrape the skin after the bath; + strigio_M_N : N ; -- [XDXFO] :: actor in mime; + strigo_V : V ; -- [XXXEC] :: halt, stop; + strigosus_A : A ; -- [XXXDX] :: lean, scraggy; + stringo_V2 : V2 ; -- [XXXBX] :: draw tight; draw; graze; strip off; + stringor_M_N : N ; -- [XXXFS] :: touch; shock; slight pain; + strinuus_A : A ; -- [FXXFX] :: active, vigorous, strenuous; (also strenuus); + strio_V : V ; -- [XTXFS] :: provide with channels; groove; wrinkle; + strix_F_N : N ; -- [XXXFO] :: small nugget; + stropha_F_N : N ; -- [XXXEC] :: trick, artifice; + strophiarius_M_N : N ; -- [BXXFS] :: breast-bands dealer; + strophium_N_N : N ; -- [XXXDX] :: twisted breast-band; head-band; bra (Cal); + stroppus_M_N : N ; -- [GXXEK] :: garter; + structilis_A : A ; -- [XTXEC] :: used in building; + structor_M_N : N ; -- [XXXDX] :: builder, carver; + structura_F_N : N ; -- [XXXDX] :: building, construction; structure, masonry, concrete; + structuralis_A : A ; -- [GXXEK] :: structural; + structuralismus_M_N : N ; -- [GXXEK] :: structuralism; + strues_F_N : N ; -- [XXXDX] :: heap, pile; row of sacrificial cakes; + struix_F_N : N ; -- [XXXEO] :: heap, pile; + struma_F_N : N ; -- [XXXEC] :: scrofulous tumor; + strumosus_A : A ; -- [XXXEC] :: scrofulous; + struo_V2 : V2 ; -- [XXXBX] :: build, construct; + strutheus_A : A ; -- [XAXFS] :: sparrow-; of sparrows; + struthiocamelinus_A : A ; -- [XAXNS] :: of/belonging/pertaining to an ostrich; + struthiocamelus_C_N : N ; -- [XAXDS] :: ostrich; + struthion_N_N : N ; -- [DAXNS] :: soapwort plant (Pliny); + struthocamelinus_A : A ; -- [XAXNO] :: of/belonging/pertaining to an ostrich; + struthocamelus_M_N : N ; -- [XAXDO] :: ostrich; + strutio_M_N : N ; -- [DAXDS] :: ostrich; + studeo_V : V ; -- [XXXAX] :: desire, be eager for; busy oneself with; strive; + studiose_Adv : Adv ; -- [XXXDX] :: eagerly, zealously, studiously, ardently, earnestly, attentively, assiduously; + studiosus_A : A ; -- [XXXBX] :: eager, keen, full of zeal; studious; devoted to, fond of; + studiosus_M_N : N ; -- [XXXDS] :: student; + studium_N_N : N ; -- [XXXAX] :: eagerness, enthusiasm, zeal, spirit; devotion, pursuit, study; + stulte_Adv : Adv ; -- [XXXDX] :: foolishly; + stultiloquentia_F_N : N ; -- [BXXFS] :: silly/foolish/stupid talk; babbling; + stultiloquium_N_N : N ; -- [XXXES] :: silly/foolish/stupid talk; babbling; + stultitia_F_N : N ; -- [XXXDX] :: folly, stupidity; + stultividus_A : A ; -- [XXXDS] :: simple-sighted; simple-minded; + stultus_A : A ; -- [XXXBX] :: foolish, stupid; + stultus_M_N : N ; -- [XXXDX] :: fool; + stupa_F_N : N ; -- [FXXDM] :: stirrup; stirrup-leather; + stupefacio_V2 : V2 ; -- [XXXDX] :: strike dumb/stun with amazement, stupefy; strike senseless; + stupefactivus_A : A ; -- [GXXEK] :: stupefying (drug); + stupefio_V : V ; -- [DXXDX] :: be stunned (w/amazement), be stupefied/struck senseless; (stupefacio PASS); + stupeo_V : V ; -- [XXXBX] :: be astounded; + stupesco_V : V ; -- [XXXES] :: become amazed; + stupeus_A : A ; -- [XXXDS] :: coarse-flaxen; (see also stuppeus); + stupiditas_F_N : N ; -- [XXXEC] :: dullness, senselessness; + stupidus_A : A ; -- [XXXEC] :: senseless, stunned; stupid, dull; + stupor_M_N : N ; -- [XXXDX] :: numbness, torpor; stupefaction; stupidity; + stuppa_F_N : N ; -- [XXXDX] :: tow, coarse flax; + stuppeus_A : A ; -- [XXXDX] :: of tow; + stupro_V : V ; -- [XXXDX] :: have (illicit) sexual intercourse with; + stuprum_N_N : N ; -- [XXXDX] :: dishonor, shame; (illicit) sexual intercourse; + sturax_M_N : N ; -- [XAXEO] :: styrax/storax; (fragrant gum/tree Styrax officinalis); (used medically); + sturgio_F_N : N ; -- [FAXEM] :: sturgeon; + sturnus_M_N : N ; -- [XXXEC] :: starling; + stygius_A : A ; -- [XXXFS] :: Stygian, of river Styx; of fountain Styx; + stylobata_M_N : N ; -- [XTXCO] :: stylobate, continuous (stepped) base supporting a row/circle of columns; + stylobates_M_N : N ; -- [XTXCO] :: stylobate, continuous (stepped) base supporting a row/circle of columns; + stylus_M_N : N ; -- [XXXDX] :: stylus, pencil, iron pen; column, pillar; + styraca_C_N : N ; -- [XAXFP] :: styrax/storax; (fragrant gum/tree Styrax officinalis); (used medically); + styracinus_A : A ; -- [DBXFS] :: made from styrax/storax; (fragrant gum/tree Styrax officinalis); (medicine); + styrax_M_N : N ; -- [XAXEO] :: styrax/storax; (fragrant gum/tree Styrax officinalis); (used medically); + suada_F_N : N ; -- [XXXEC] :: persuasion; + suadela_F_N : N ; -- [XXXEC] :: persuasion; + suadeo_V : V ; -- [XXXBX] :: urge, recommend; suggest; induce; propose, persuade, advise; + suadus_A : A ; -- [XXXEC] :: persuasive; + suasor_M_N : N ; -- [XXXDX] :: adviser, counselor; + suasoria_F_N : N ; -- [XGXDO] :: hortatory/persuasive speech; rhetorical exercise giving history based advice; + suasorius_A : A ; -- [XGXEO] :: persuasive, seductive; concerned with advice/counseling; + suasus_M_N : N ; -- [XXXDS] :: advice; advising; + suaveolens_A : A ; -- [XXXEC] :: sweet-smelling; + suaviatio_F_N : N ; -- [XXXDS] :: kissing; + suavidicus_A : A ; -- [XXXDX] :: speaking pleasantly; + suaviloquens_A : A ; -- [XXXDX] :: speaking agreeably; + suaviloquentia_F_N : N ; -- [XXXDS] :: sweetness of speech; + suaviolum_N_N : N ; -- [XXXDX] :: tender kiss; + suavis_A : A ; -- [XXXDX] :: agreeable, pleasant, gratifying, sweet; charming, attractive; + suavitas_F_N : N ; -- [XXXBX] :: charm, attractiveness; sweetness; + suaviter_Adv : Adv ; -- [XXXDX] :: pleasantly, sweetly; + suavium_N_N : N ; -- [XXXAX] :: kiss; sweetheart; + sub_Abl_Prep : Prep ; -- [XXXAX] :: under, beneath, behind, at the foot of (rest); within; during, about (time); + sub_Acc_Prep : Prep ; -- [XXXAX] :: under; up to, up under, close to (of motion); until, before, up to, about; + subabsurde_Adv : Adv ; -- [XXXEC] :: somewhat absurdly; + subabsurdus_A : A ; -- [XXXEC] :: somewhat absurd; + subaccuso_V2 : V2 ; -- [XXXDS] :: blame somewhat; + subacidus_A : A ; -- [XXXDX] :: slightly acid; + subactio_F_N : N ; -- [XAXDS] :: soil-working; preparation; + subadjuva_M_N : N ; -- [ELXFS] :: assistant; + subadroganter_Adv : Adv ; -- [XXXEC] :: somewhat arrogantly; + subagitatio_F_N : N ; -- [BXXEI] :: erotic fondling/feeling/touching; titillation/foreplay; illicit intercourse; + subagrestis_A : A ; -- [XXXDS] :: somewhat rustic; + subalare_N_N : N ; -- [XXXFS] :: under-girdle; + subalaris_A : A ; -- [XXXDS] :: arm-carrying; carrying/stuck under the arm; + subalaris_M_N : N ; -- [EXXFT] :: little wing; (4 Ezra 12:29); + subalbidus_A : A ; -- [XXXDS] :: rather whitish; + subamarus_A : A ; -- [XXXEC] :: somewhat bitter; + subaqueanus_A : A ; -- [GXXEK] :: underwater; [navis subaqueana => submarine]; + subaquilus_A : A ; -- [XXXDS] :: brownish; + subarmalis_A : A ; -- [DXXDS] :: passing underarm; + subarrho_V : V ; -- [FLXFM] :: pledge, pay earnest money; espouse, undertake; + subasso_V2 : V2 ; -- [XXXDS] :: roast a little; + subaudio_V : V ; -- [DLXES] :: understand, supply a word; hear a little; + subausculto_V : V ; -- [XXXES] :: listen secretly; eavesdrop; + subausterus_A : A ; -- [DXXDS] :: rather harsh; less austere; + subbasilicanus_M_N : N ; -- [XXXDS] :: lounger; + subblandio_V2 : V2 ; -- [BXXDS] :: flirt; caress a little; + subcaesius_A : A ; -- [GXXET] :: grayish; (Erasmus); + subcavus_A : A ; -- [DXXDS] :: hollow below; + subcido_V : V ; -- [XXXCO] :: sink/collapse (support gave way); give way (knees); fall (under), be included; + subcinericius_A : A ; -- [EXXDS] :: prepared/baked under the ashes; + subconscientia_F_N : N ; -- [GXXEK] :: subconscious; + subconscius_A : A ; -- [GXXEK] :: subconscious; + subcrudus_A : A ; -- [XXXDS] :: somewhat raw; + subcumbo_V : V ; -- [XXXAO] :: ||give in/way; lower itself (animal to take load); be rival to (DAT of a woman); + subdiaconus_M_N : N ; -- [EEXCV] :: subdeacon; cleric of minor orders (second level from top/deacon); + subdialis_A : A ; -- [XXXFS] :: open-aired; that is in open air; + subdifficilis_A : A ; -- [XXXES] :: somewhat difficult; + subdiffido_V : V ; -- [XXXDS] :: be somewhat distrustful; + subdio_Adv : Adv ; -- [XXXEO] :: in the open air; (sub dio); + subdisjunctivus_A : A ; -- [FXXFM] :: weakened disjunctive; non-exclusive; + subdistinctio_F_N : N ; -- [EGXFP] :: minor punctuation; exact difference; + subdistinguo_V2 : V2 ; -- [XGXDS] :: reduce distinction; make smaller interpunctuation; + subditicius_A : A ; -- [XXXEC] :: substituted, counterfeit; spurious; + subditivus_A : A ; -- [XXXEC] :: substituted, counterfeit; spurious; + subditus_A : A ; -- [EEXDX] :: subordinate; submissive; + subdo_V2 : V2 ; -- [XXXBX] :: place under, apply; supply; + subdolus_A : A ; -- [XXXDX] :: sly, deceitful, treacherous; + subduco_V2 : V2 ; -- [XXXBX] :: lead up, carry off; transfer; haul; + subductio_F_N : N ; -- [GSXEK] :: subtraction (math.); + subedo_V : V ; -- [XXXDX] :: eat away below; + subedo_V2 : V2 ; -- [XXXDX] :: eat away below; + subeo_V : V ; -- [XXXAO] :: |place/be placed under/in support; come up w/aid; assume a form; undergo, endure + suber_N_N : N ; -- [XAXDS] :: cork-tree; cork; + subex_F_N : N ; -- [XXXEO] :: supports (pl.), underlying parts; underlayer (L+S); + subfervefacio_V2 : V2 ; -- [XXXEO] :: simmer, bring/keep almost to a boil; warm from below (L+S); + subfocatio_F_N : N ; -- [XBXEO] :: suffocation; choking/stifling/suffocating; [~ mulierum => hysterical passion]; + subfodio_V2 : V2 ; -- [XXXDX] :: undermine, dig under; pierce or prod below; + subfuro_V2 : V2 ; -- [XXXEO] :: steal unobtrusively; steal away; + subgestio_F_N : N ; -- [XXXFO] :: supplying an answer to one's own question; suggestion, hint (L+S); addition; + subhorridus_A : A ; -- [XXXEC] :: somewhat rough; + subicio_V2 : V2 ; -- [XXXBX] :: throw under, place under; make subject; expose; + subigitatio_F_N : N ; -- [BXXEO] :: erotic fondling/feeling/touching; titillation/foreplay; illicit intercourse; + subigito_V2 : V2 ; -- [XXXDS] :: behave improperly to; work upon, incite; + subigo_V2 : V2 ; -- [XXXDX] :: conquer, subjugate; compel; + subimpudens_A : A ; -- [XXXDS] :: somewhat impudent/shameless; + subinanis_A : A ; -- [XXXEC] :: somewhat vain; + subinde_Adv : Adv ; -- [XXXDX] :: immediately after, thereupon; constantly, repeatedly; + subinsulsus_A : A ; -- [XXXEC] :: somewhat insipid; + subintellego_V2 : V2 ; -- [EXXDS] :: understand a little; + subintro_V : V ; -- [DXXES] :: go into secretly, enter by stealth; + subintroductio_F_N : N ; -- [GXXEK] :: smuggling; + subintroductor_M_N : N ; -- [GXXEK] :: smuggler; + subintroeo_V2 : V2 ; -- [EXXES] :: go into, enter; + subinvideo_V : V ; -- [XXXDS] :: envy a little; be somewhat envious; + subinvisus_A : A ; -- [XXXDS] :: somewhat odious; + subinvito_V : V ; -- [XXXDS] :: invite vaguely; + subirascor_V : V ; -- [XXXDO] :: be rather/somewhat annoyed/angry (at/with); + subiratus_A : A ; -- [XXXES] :: somewhat/rather angry/annoyed/irate; + subitaneus_A : A ; -- [XXXDO] :: sudden; happening/arising without warning; + subitarius_A : A ; -- [XXXDX] :: got together to meet an emergency, hastily enrolled; + subitatio_F_N : N ; -- [EXXFS] :: suddenness; + subito_Adv : Adv ; -- [XXXAO] :: suddenly, unexpectedly; at once, at short notice, quickly; in no time at all; + subitus_A : A ; -- [XXXDX] :: sudden; rash, unexpected; + subium_N_N : N ; -- [GXXEK] :: moustache; + subjaceo_V : V ; -- [XXXBO] :: lie underneath/below/at the foot/edge of/exposed (to); come under heading of; + subjectio_F_N : N ; -- [EXXDP] :: ||subjugation, subjection; submission; inferiority; foundation; + subjectivismus_M_N : N ; -- [GXXEK] :: subjectivism; + subjecto_V : V ; -- [XXXDX] :: throw up from below; apply below; + subjector_M_N : N ; -- [XXXDS] :: forger; substitutor; + subjectus_A : A ; -- [XXXDX] :: lying near, adjacent; + subjicio_V2 : V2 ; -- [XXXCS] :: throw under, place under; make subject; expose; + subjugalis_A : A ; -- [XDXES] :: yoke-accustomed; + subjugalis_M_N : N ; -- [EAXFS] :: beast of burden. (yoke-accustomed); (Vulgate); + subjugalium_N_N : N ; -- [FDXFM] :: lower part of a phrase (music); + subjugatio_F_N : N ; -- [FXXDM] :: subjugation; + subjugo_V2 : V2 ; -- [XXXEO] :: subjugate, make subject; bring under the yoke (L+S); + subjugum_N_N : N ; -- [FXXEM] :: subjugation; unknown animal (L+S); + subjunctivus_A : A ; -- [XXXFS] :: connecting; G:subjunctive; + subjungo_V2 : V2 ; -- [XXXDX] :: join with, unite; subdue, subject; + sublabor_V : V ; -- [XXXCO] :: collapse, fall to the ground; sink, ebb away; creep up, advance stealthily; + sublatus_A : A ; -- [XXXDS] :: elated; + sublecto_V2 : V2 ; -- [BXXDS] :: coax; + sublego_V2 : V2 ; -- [XXXDX] :: pick up from the ground, steal away; + sublestus_A : A ; -- [BXXES] :: slight; + sublevatio_F_N : N ; -- [XXXDS] :: alleviation; + sublevo_V : V ; -- [XXXDX] :: lift up, raise; support; assist; lighten; + sublica_F_N : N ; -- [XTXDO] :: wooden stake or pile; (normally used as support for bridge/heavy structure); + sublicis_F_N : N ; -- [XTXEO] :: wooden stake or pile; (normally used as support for bridge/heavy structure); + sublicius_A : A ; -- [XXXDX] :: resting on/supported by piles; (Pons Sublicius/Pile Bridge, across the Tiber); + subligaculum_N_N : N ; -- [XXXEC] :: loincloth, kilt; + subligar_N_N : N ; -- [GXXEK] :: underpants, briefs; + subligo_V : V ; -- [XXXDX] :: fasten (to); + sublimatio_F_N : N ; -- [GSXEK] :: sublimation (chemical); + sublime_Adv : Adv ; -- [XXXDX] :: high into the air, on high, up aloft; in a lofty position; + sublimis_A : A ; -- [XXXAX] :: high, lofty; eminent, exalted, elevated; raised on high; in high position; + sublimitas_F_N : N ; -- [EXXDP] :: ||superior being; your highness (w/tua in titles); + sublimo_V2 : V2 ; -- [XXXCO] :: raise, place in elevated position; soar; send up (spirits) from underworld; + sublimus_A : A ; -- [XXXCO] :: high, lofty; eminent, exalted, elevated; raised on high; in high position; + sublingio_M_N : N ; -- [BXXES] :: under-scullion; + sublino_V2 : V2 ; -- [XXXCO] :: smear over surface/on underside; back (with); plaster; apply undercoat; trick; + sublividus_A : A ; -- [XXXFS] :: somewhat blue; + subllabor_V : V ; -- [XXXDX] :: collapse, sink/slip/ebb away; creep up; glide under; + subluceo_V : V ; -- [XXXDX] :: shine faintly, glimmer; + sublucidus_A : A ; -- [DXXDS] :: somewhat light; + subluo_V2 : V2 ; -- [XXXDX] :: wash, flow at the base of; + sublustris_A : A ; -- [XXXDX] :: faintly lit, dim; + subluvies_F_N : N ; -- [DXXDS] :: filth; dirt; A:sheep's foot foul; + submedius_A : A ; -- [DXXFS] :: middle; mean; + submergo_V2 : V2 ; -- [XXXDX] :: plunge under, submerge; + subministratio_F_N : N ; -- [DXXES] :: giving, furnishing, supplying; + subministro_V : V ; -- [XXXDX] :: supply, furnish, afford; + submissus_A : A ; -- [XXXDX] :: stooping; quiet; + submitto_V2 : V2 ; -- [XXXBX] :: allow to grow long; emit, put forth, raise; lower, moderate, relieve; submit; + submoleste_Adv : Adv ; -- [XXXEC] :: with some difficulty/trouble; + submolestus_A : A ; -- [XXXEC] :: somewhat troublesome; + submoneo_V : V ; -- [XXXEC] :: remind secretly; + submorosus_A : A ; -- [XXXEC] :: somewhat peevish; + submoveo_V : V ; -- [XXXAO] :: remove; drive off, dislodge; expel; ward off; keep at a distance; bar/debar; + submultiplex_A : A ; -- [XSXDS] :: present many times; contained many times in another number; + submurmuro_V : V ; -- [XXXFO] :: murmur softly; + submuto_V2 : V2 ; -- [XXXEC] :: exchange; + subnascor_V : V ; -- [XXXCO] :: arise, spring, grow up (under/out of/after); (esp. under or in place of); + subnecto_V2 : V2 ; -- [XXXDX] :: bind under, add, subjoin, fasten up; + subnego_V2 : V2 ; -- [XXXDS] :: refuse somewhat; deny somewhat; + subnervio_V2 : V2 ; -- [XXXFO] :: hamstring; (cut sinew in leg); invalidate (L+S); refute; + subnervo_V2 : V2 ; -- [DXXDS] :: hamstring; (cut sinew in leg); invalidate (L+S); refute; + subniger_A : A ; -- [XXXDO] :: blackish; somewhat dark; having a rather swarthy complexion; + subnisus_A : A ; -- [XXXDS] :: relying on (w/ABL); elated by; (subnixus); + subnixus_A : A ; -- [XXXDX] :: relying on (w/ABL); elated by; + subnotatio_F_N : N ; -- [GXXEK] :: subscription; + subnotator_M_N : N ; -- [GXXEK] :: subscriber; + subnoto_V : V ; -- [GXXEK] :: subscribe; + subnuba_F_N : N ; -- [XXXEC] :: rival; + subnubilus_A : A ; -- [XXXDX] :: somewhat cloudy, overcast; + subo_V : V ; -- [XXXEC] :: be in heat; + subobscaenus_A : A ; -- [XXXEC] :: somewhat obscene; + subobscenus_A : A ; -- [XXXDS] :: somewhat indecent/obscene/foul-mouthed; + subobscurus_A : A ; -- [XXXEC] :: somewhat obscure; + subodiosus_A : A ; -- [XXXEC] :: rather unpleasant; + subodoro_V : V ; -- [GXXEK] :: suspect; + suboffendo_V : V ; -- [XXXDS] :: give some offense; + suboles_F_N : N ; -- [XXXBX] :: shoot, sucker; race; offspring; progeny; + subolesco_V : V ; -- [XXXDX] :: grow up; + subolet_V0 : V ; -- [XXXDS] :: make a weak scent; [mihi subolet => I detect/smell/sniff out]; + suborior_V : V ; -- [XXXDX] :: come into being, be provided; + suborno_V : V ; -- [XXXDX] :: equip, adorn; + subortus_M_N : N ; -- [XXXDX] :: springing up (of a fresh supply); + subpositivus_A : A ; -- [EXXEP] :: hypothetical; + subpuratio_F_N : N ; -- [XBXCO] :: suppuration/festering; suppurating/festering sore, abscess; + subpuratorius_A : A ; -- [XBXNO] :: of/concerned with festering/suppurating sores/abscesses; + subpuratus_A : A ; -- [XBXDO] :: that has suppurated/festered; that has come to a head; (of a tumor); + subpuro_V : V ; -- [XBXCO] :: suppurate, fester under the surface; + subrancidus_A : A ; -- [XXXEC] :: somewhat putrid; + subraucus_A : A ; -- [XXXEC] :: somewhat hoarse; + subregulus_M_N : N ; -- [DXXES] :: petty prince; feudatory vassal; + subremigo_V : V ; -- [XXXDX] :: make rowing movements underneath; + subrepo_V2 : V2 ; -- [XXXCO] :: |come on gradually/imperceptibly/by degrees (conditions); steal along/on; + subreptio_F_N : N ; -- [XLXEO] :: stealing/taking secretly or by deception; filching; purloining, theft (L+S); + subreptum_Adv : Adv ; -- [XXXFS] :: stealthily; + subrideo_V : V ; -- [XXXDX] :: smile; + subrigo_V2 : V2 ; -- [XXXEZ] :: rise, lift (Collins); + subringor_V : V ; -- [XXXEC] :: make a wry face; + subripio_V2 : V2 ; -- [XXXDX] :: snatch away, steal; + subrogo_V2 : V2 ; -- [XLXCO] :: elect/propose/nominate/cause to be elected as successor/substitute; substitute; + subrostranus_M_N : N ; -- [XXXFO] :: loungers (pl.) about the rostra, city loafers; idlers; + subrubeo_V : V ; -- [XXXDX] :: be tinged with red or purple; + subrufus_A : A ; -- [XXXDS] :: somewhat red; ginger-colored; + subruo_V2 : V2 ; -- [XXXDX] :: undermine; + subrusticus_A : A ; -- [XXXDX] :: clownish; + subsannatio_F_N : N ; -- [DEXES] :: mockery by gestures; derision in pantomime; + subsannator_M_N : N ; -- [DEXFS] :: mocker, one who insults/mocks by gestures; + subsanno_V2 : V2 ; -- [DXXCS] :: mock, deride; insult by derisive gestures; sneer; + subscribendarius_M_N : N ; -- [DLXFS] :: under-secretary; (legal); + subscribo_V2 : V2 ; -- [XXXDX] :: write below, subscribe; + subscus_F_N : N ; -- [XTXFS] :: dovetail connection; tongue of dovetail; + subsecivus_A : A ; -- [XXXEC] :: left over; extra, superfluous, spare; + subseco_V : V ; -- [XXXDX] :: cut away below; pare (the nails); + subsellium_N_N : N ; -- [XXXDX] :: bench/low seat (in auditorium.theater/court); tribunes seat; courts (pl.); + subsentio_V2 : V2 ; -- [XXXDS] :: smell/sniff out; perceive secretly; + subsequenter_Adv : Adv ; -- [DXXES] :: subsequently; in succession; one after another; + subsequor_V : V ; -- [XXXBX] :: follow close after; pursue; support; + subsericus_A : A ; -- [XXXDS] :: half-silken; + subsero_V2 : V2 ; -- [XXXDS] :: plant under; + subsicivus_A : A ; -- [XXXEC] :: left over; extra, superfluous, spare; + subsidialis_A : A ; -- [EXXEP] :: reserve-, of the reserve; in reserve; acting support to front line; subsidiary; + subsidiarietas_F_N : N ; -- [GXXEK] :: subsidiarity, principle that central authority should do only what locals can't; + subsidiarius_A : A ; -- [XXXDS] :: reserve-, of the reserve; in reserve; acting support to front line; subsidiary; + subsidiarius_M_N : N ; -- [XXXCS] :: reserves (pl.); body of reserves; in form of subsidy (Latham); + subsidium_N_N : N ; -- [XXXDX] :: help, relief; reinforcement; + subsido_V2 : V2 ; -- [XXXDX] :: settle, sink, subside; neglect (Latham); + subsignanus_A : A ; -- [XWXEC] :: serving beneath the standard; + subsignanus_M_N : N ; -- [XWXEC] :: reserve legionaire (w/milites); + subsilio_V : V ; -- [XXXCO] :: jump/leap/spring up; plunge beneath; + subsisto_V2 : V2 ; -- [XXXBX] :: halt, stand; cause to stop; + subsortior_V : V ; -- [XXXEO] :: appoint/choose/pick by lot as a substitute; (to replace challenged jurors); + subsortitio_F_N : N ; -- [XXXEC] :: choice of a substitute by lot; + substantia_F_N : N ; -- [XXXDX] :: nature; substance, resources, wealth; [omnem ~ => every living thing (Plater)]; + substantialis_A : A ; -- [DXXES] :: essential; substantial; substantive; of/belonging to essence/substance; + substantialiter_Adv : Adv ; -- [DXXES] :: substantially; essentially; + substantivus_A : A ; -- [FXXES] :: self-existent; substantive; + substerno_V2 : V2 ; -- [XXXDX] :: spread out (as an underlay); + substituo_V2 : V2 ; -- [XXXBO] :: place in rear/reserve; make subject/answerable to; substitute; make alternative; + substitutio_F_N : N ; -- [XLXCO] :: putting in place of something/one else, substitution; making alternative heir; + substitutus_M_N : N ; -- [XLXCO] :: alternative heir; + substo_V : V ; -- [XXXFS] :: hold firm; stand under; + substramen_N_N : N ; -- [XXXDS] :: support; what is strewn under; + substrictus_A : A ; -- [XXXDS] :: narrow; tight; + substringo_V2 : V2 ; -- [XXXDX] :: draw in close, gather up; draw tight; [aurem ~ => to strain your ears]; + substructio_F_N : N ; -- [XXXDX] :: foundation (of a building), substructure; + substruo_V2 : V2 ; -- [XXXDX] :: build up from the base, support by means of substructures; + subsultim_Adv : Adv ; -- [XXXFO] :: with frequent jumps/leaps into the air; + subsulto_V : V ; -- [XXXDO] :: keep jumping up; spring up, leap up; (also jerky rhythm); + subsum_V : V ; -- [XXXDX] :: be underneath/a basis for discussion/close at hand as a reserve, be near; + subsumentum_N_N : N ; -- [GXXEK] :: lining (of garment); + subsuperparticularis_A : A ; -- [EXXEP] :: contained within greater; contained in number one bigger (eg. 3 out of 4); + subsuperpartiens_A : A ; -- [EXXEP] :: contained within greater; contained in number one bigger (eg. 3 out of 4); + subsutus_A : A ; -- [XXXDX] :: stitched at the bottom; + subtalaris_M_N : N ; -- [FXXFY] :: shoe; (gender is guess); + subtegmen_N_N : N ; -- [XXXCO] :: weft/woof, transverse threads woven between warp threads; threads of the Fates; + subtemen_N_N : N ; -- [XXXCO] :: weft/woof, transverse threads woven between warp threads; threads of the Fates; + subtendo_V : V ; -- [XXXDX] :: extend beneath, subtend; + subter_Abl_Prep : Prep ; -- [XXXEO] :: beneath, under (cover/shelter); towards/at base (of wall/cliff); (usu. ACC); + subter_Acc_Prep : Prep ; -- [XXXCO] :: beneath, under (cover/shelter); towards/at base (of wall/cliff); + subter_Adv : Adv ; -- [XXXCO] :: beneath (surface/covering); underneath, below; at lower level/in lower position; + subterduco_V2 : V2 ; -- [BXXDS] :: carry off secretly; + subterfugio_V2 : V2 ; -- [XXXDX] :: evade, avoid by a stratagem; + subterlabor_V : V ; -- [XXXDX] :: glide or flow beneath, slip away; + subtero_V2 : V2 ; -- [XXXDS] :: rub under; rub off; pound; + subterraneus_A : A ; -- [XXXDX] :: subterranean, underground; + subtexo_V2 : V2 ; -- [XXXDX] :: weave beneath; veil; subjoin, attach as a sequel (to); + subtilis_A : A ; -- [XXXAO] :: fine-spun, fine; slender, delicate, exact; minutely thorough; strict, literal; + subtilitas_F_N : N ; -- [XXXAO] :: fineness of texture/logic/detail; slenderness/exactness/acuteness; sharpness; + subtiliter_Adv : Adv ; -- [XXXBO] :: finely; delicately; acutely, exactly; minutely; strictly, literally; logically; + subtimeo_V : V ; -- [XXXFO] :: be somewhat afraid; + subtractio_F_N : N ; -- [GSXEK] :: subtraction (math.); + subtraho_V2 : V2 ; -- [XXXDX] :: carry off; take away; subtract; + subtristis_A : A ; -- [XXXDS] :: somewhat sad/gloomy; + subtularis_M_N : N ; -- [FXXEM] :: shoe; (gender is guess); + subtum_Adv : Adv ; -- [XXXCO] :: below, underneath, in a lower position; in a position lower than; beneath (L+S); + subturpiculus_A : A ; -- [XXXEC] :: rather on the disgraceful side; + subturpis_A : A ; -- [XXXDS] :: somewhat mean/repulsive; + subtus_Adv : Adv ; -- [XXXCO] :: below, underneath, in a lower position; in a position lower than; beneath (L+S); + subtusus_A : A ; -- [XXXDS] :: somewhat bruised; + subucula_F_N : N ; -- [XXXEO] :: under-tunic (both sexes), undergarment; sacrificial cake(?); small jacket (Cal); + subula_F_N : N ; -- [XXXEC] :: shoemaker's awl; + subulcus_M_N : N ; -- [XXXDX] :: swineherd; + suburbanitas_F_N : N ; -- [XXXDS] :: nearness to Rome; + suburbanus_A : A ; -- [XXXDX] :: situated close to the city; growing or cultivated near the city; + suburbanus_M_N : N ; -- [XXXDX] :: people (pl.) dwelling near the city; + suburbium_N_N : N ; -- [XXXEC] :: suburb; + suburgeo_V : V ; -- [XXXDX] :: drive up close; + subvectio_F_N : N ; -- [XXXDX] :: transporting (of supplies) to a center; + subvecto_V : V ; -- [XXXDX] :: convey (often or laboriously) upwards; + subvectus_M_N : N ; -- [DXXDS] :: transport; + subveho_V2 : V2 ; -- [XXXDX] :: convey upwards; convey up; sail upstream (PASS); + subvenio_V2 : V2 ; -- [XXXBX] :: come to help, assist; rescue; + subvento_V2 : V2 ; -- [XXXBS] :: bring aid; come quickly to assistance; + subvereor_V : V ; -- [XXXFO] :: be somewhat afraid/fearful/apprehensive; be rather anxious (Cas); + subversio_F_N : N ; -- [EXXCS] :: overthrow, overturn; ruin, destruction; pouring out (of wine) (Souter); + subverto_V2 : V2 ; -- [XXXDX] :: overturn, cause to topple; overthrow, destroy, subvert; + subvexus_A : A ; -- [XXXDX] :: sloping up; + subviridis_A : A ; -- [DXXDS] :: somewhat green; + subvolo_V : V ; -- [XXXDX] :: fly upwards; + subvolvo_V : V ; -- [XXXDX] :: roll uphill; + succavus_A : A ; -- [XXXEC] :: hollow underneath; + succedo_V2 : V2 ; -- [XXXBX] :: climb; advance; follow; succeed in; + succendo_V2 : V2 ; -- [XXXBX] :: set on fire; + succenturio_M_N : N ; -- [XWXDS] :: under-centurion; + succenturio_V2 : V2 ; -- [XXXFS] :: substitute; place in reserve; + succeptor_M_N : N ; -- [XXXEO] :: one who takes hand in an enterprise; one admitting gamblers to his house; + successio_F_N : N ; -- [XLXCO] :: succession (to position/ownership w/GEN); successors collectively; + successor_M_N : N ; -- [XXXDX] :: successor; + successus_M_N : N ; -- [XXXDX] :: approach, advance uphill, outcome, success; + succidia_F_N : N ; -- [XXXCO] :: leg/side of meat; (esp. salt) pork/bacon; cutting in joints; slaughtering (L+S); + succido_V : V ; -- [XXXCO] :: sink/collapse (support gave way); give way (knees); fall (under), be included; + succido_V2 : V2 ; -- [XXXBO] :: cut down; cut from below, undercut; carve out underside; kill as 2nd offering; + succiduus_A : A ; -- [XXXDX] :: giving way under one; + succinericius_A : A ; -- [EXXDS] :: prepared/baked under the ashes; + succingo_V2 : V2 ; -- [XXXDX] :: gather up with a belt or girdle; prepare for action; surround; + succingulum_N_N : N ; -- [XXXEC] :: girdle; + succino_V : V ; -- [XXXEC] :: sing to, accompany; (in speech) chime in; + succinum_N_N : N ; -- [XXXDS] :: amber; + succlamatio_F_N : N ; -- [XXXDX] :: answering shout; + succlamo_V : V ; -- [XXXDX] :: shout in response (to); + succollo_V : V ; -- [XXXDX] :: lift/carry on one's shoulders; + succontumeliose_Adv : Adv ; -- [XXXEC] :: somewhat insolently; + succresco_V2 : V2 ; -- [XXXDX] :: come up; grow up; overflow; + succrispus_A : A ; -- [XXXDS] :: somewhat curled; + succumbo_V : V ; -- [XXXAO] :: ||give in/way; lower itself (animal to take load); be rival to (DAT of a woman); + succurator_M_N : N ; -- [DXXDS] :: sub-curator; + succurro_V2 : V2 ; -- [XXXBX] :: run to the aid of, help; + succus_M_N : N ; -- [DXXCO] :: juice, sap; moisture; drink/draught, potion, medicinal liquor; vitality/spirit; + succussus_M_N : N ; -- [XXXDS] :: shaking; + succustos_M_N : N ; -- [BXXDS] :: under-keeper; + succutio_V2 : V2 ; -- [XXXDX] :: shake from below; + sucidus_A : A ; -- [XXXEC] :: juicy, full of sap; + sucinum_N_N : N ; -- [XXXDS] :: amber; + sucinus_A : A ; -- [XXXEC] :: of amber; + suculentus_A : A ; -- [XXXFS] :: juicy; sappy; succulent; + sucus_M_N : N ; -- [XXXAO] :: juice, sap; moisture; drink/draught, potion, medicinal liquor; vitality/spirit; + sudarium_N_N : N ; -- [XXXDX] :: handkerchief, napkin; + sudatorium_N_N : N ; -- [XXXEC] :: sweating-room; + sudatorius_A : A ; -- [XXXEC] :: of sweating; + sudis_F_N : N ; -- [XXXDX] :: stake, log; + sudo_V : V ; -- [XXXDX] :: sweat, perspire; + sudor_M_N : N ; -- [XXXDX] :: sweat; hard labor; + sudum_N_N : N ; -- [XXXES] :: fine weather; + sudus_A : A ; -- [XXXDX] :: clear and bright; + sueo_V : V ; -- [XXXDS] :: to accustom; to be accustomed; + suesco_V2 : V2 ; -- [XXXBX] :: become accustomed (to); + suetus_A : A ; -- [XXXDX] :: wont, accustomed; usual, familiar; + sufes_M_N : N ; -- [XLAEC] :: chief magistrate of Carthage; + suffamen_N_N : N ; -- [XXXDX] :: clog, brake, drag chain; hindrance; + suffarcino_V : V ; -- [XXXEC] :: stuff, cram; + suffero_V : V ; -- [XXXDX] :: bear, endure, suffer; + suffervefacio_V2 : V2 ; -- [XXXEO] :: simmer, bring/keep almost to a boil; warm from below (L+S); + suffes_M_N : N ; -- [XLAEC] :: chief magistrate of Carthage; + sufficiens_A : A ; -- [XXXEO] :: sufficient, adequate (in number/amount); + sufficienter_Adv : Adv ; -- [XXXEO] :: sufficiently, adequately; + sufficio_V2 : V2 ; -- [XXXAX] :: be sufficient, suffice; stand up to; be capable/qualified; provide, appoint; + suffigo_V2 : V2 ; -- [XXXBO] :: fix/fasten/attach/affix (to top); (as punishment); crucify; fix/insert below; + suffimen_N_N : N ; -- [XXXDX] :: fumigation; incense; a substance used to fumigate; + suffimentum_N_N : N ; -- [XXXDX] :: fumigation; incense; a substance used to fumigate; + suffio_V2 : V2 ; -- [XXXDX] :: fumigate; perfume, scent; + sufflamen_N_N : N ; -- [XXXEC] :: brake, drag, hindrance; + sufflatum_N_N : N ; -- [GXXEK] :: souffle (kitchen); + sufflavus_A : A ; -- [GXXET] :: yellowish; (Erasmus); + sufflo_V : V ; -- [XXXDX] :: blow/puff up, inflate; blow; get into a temper with; + suffocatio_F_N : N ; -- [XBXEO] :: suffocation; choking/stifling/suffocating; [~ mulierum => hysterical passion]; + suffoco_V2 : V2 ; -- [XXXEC] :: strangle, choke, suffocate; + suffodio_V2 : V2 ; -- [XXXDX] :: undermine, dig under; pierce or prod below; + suffraganeus_M_N : N ; -- [FXXEM] :: supporter; + suffragatio_F_N : N ; -- [XXXDX] :: public expression of support (for); + suffragator_M_N : N ; -- [XXXDX] :: supporter; one who gives support to a candidate (voter, canvasser); + suffragatorius_A : A ; -- [XXXDS] :: candidate-supporting; + suffragium_N_N : N ; -- [XXXDX] :: vote; judgment; applause; + suffrago_F_N : N ; -- [XAXCO] :: hock; joint in hind leg between knee and ankle; sucker shoot (of vine); + suffrago_V : V ; -- [XXXDX] :: express public support (for), canvass/vote for; lend support (to), favor; + suffragor_V : V ; -- [XXXDX] :: express public support (for), canvass/vote for; lend support (to), favor; + suffrico_V : V ; -- [XXXFS] :: rub-down; rub-off; + suffringo_V : V ; -- [XXXEC] :: break beneath; + suffugio_V2 : V2 ; -- [XXXFS] :: flee away; flee from; + suffugium_N_N : N ; -- [XXXDX] :: shelter; place of refuge; + suffulcio_V2 : V2 ; -- [XXXDX] :: underprop, keep from falling; + suffumigo_V2 : V2 ; -- [XXXDS] :: fumigate from below; + suffundo_V2 : V2 ; -- [XXXDX] :: pour in/on; cause to well up to surface; cover/fill with liquid that wells up; + suffuro_V2 : V2 ; -- [XXXEO] :: steal unobtrusively; steal away; + suffuscus_A : A ; -- [XXXEC] :: brownish, dark; + suffusus_A : A ; -- [XXXDS] :: blushing; bashful; + suggero_V2 : V2 ; -- [XXXDX] :: suggest, furnish; + suggestio_F_N : N ; -- [XXXFO] :: supplying an answer to one's own question; suggestion, hint (L+S); addition; + suggestus_M_N : N ; -- [XXXDX] :: raised surface; platform, dais; + suggillo_V : V ; -- [XXXDX] :: insult, humiliate; + suggrandis_A : A ; -- [XXXEC] :: somewhat large; + suggredior_V : V ; -- [XXXEC] :: go up to, approach, attack; + sugillatio_F_N : N ; -- [XXXDS] :: affronting; bruise; + sugillo_V : V ; -- [XXXDX] :: insult, humiliate; + sugitorium_N_N : N ; -- [GXXEK] :: lollipop; + sugo_V2 : V2 ; -- [XXXDX] :: suck; imbibe; take in; + sugrunda_F_N : N ; -- [XXXFS] :: roof-eaves; + sugrundarium_N_N : N ; -- [XEXFS] :: baby-grave; + suicida_M_N : N ; -- [GXXEK] :: kamikaze; + suicidalis_A : A ; -- [GXXEK] :: suicidal; + suicidarius_A : A ; -- [GXXEK] :: suicidal; + suicidium_N_N : N ; -- [GXXEK] :: suicide; + suillus_A : A ; -- [XXXDX] :: of pigs/swine; + sulco_V : V ; -- [XXXDX] :: furrow, plow; cleave; + sulcus_M_N : N ; -- [XXXBX] :: furrow; rut; trail of a meteor, track, wake; female external genitalia (rude); + sulfur_N_N : N ; -- [XXXCO] :: brimstone, sulfur; lightning/thunder (associated with brimstone); + sulfuratus_A : A ; -- [XXXEC] :: containing sulfur; + sullaturio_V : V ; -- [XXXDS] :: be like Sulla; imitate Sulla; + sulphur_N_N : N ; -- [XXXCO] :: brimstone, sulfur; lightning/thunder (associated with brimstone); + sulphureus_A : A ; -- [XXXDX] :: sulfurous; + sulpur_N_N : N ; -- [XXXCO] :: brimstone, sulfur; lightning/thunder (associated with brimstone); + sulpureus_A : A ; -- [XXXDX] :: sulfurous; + sultanus_M_N : N ; -- [GXXEK] :: sultan; + sulum_N_N : N ; -- [FXXEN] :: each thing, every single thing; each and every thing; everything; + sumbolum_N_N : N ; -- [XXXDS] :: token/symbol; matching objects proving identity; signet ring; warrant, permit; + sumbolus_M_N : N ; -- [XXXDO] :: token/symbol; matching objects proving identity; signet ring; warrant, permit; + sumen_N_N : N ; -- [XXXDX] :: breeding sow; + summa_F_N : N ; -- [XXXBX] :: sum; summary; chief point, essence, principal matter, substance; total; + summas_A : A ; -- [XXXFZ] :: high-born; eminent (Collins); + summatim_Adv : Adv ; -- [XXXDX] :: summarily, briefly; + summatus_M_N : N ; -- [XXXEZ] :: sovereignty (Collins); + summe_Adv : Adv ; -- [XXXDX] :: in the highest degree; intensely; superlatively well, consummately; + summergo_V2 : V2 ; -- [XXXDX] :: plunge under, submerge; + sumministratio_F_N : N ; -- [DXXES] :: giving, furnishing, supplying; + sumministro_V : V ; -- [XXXDX] :: supply, furnish, afford; + summissio_F_N : N ; -- [XXXDS] :: lowering; B:depression; + summissus_A : A ; -- [XXXDX] :: stooping; quiet; + summitas_F_N : N ; -- [XSXEO] :: culminating state (philosophy); surface (geometry); summit/top/highest part; + summitto_V2 : V2 ; -- [XXXDX] :: allow to grow long; emit, put forth, raise; lower, moderate, relieve; submit; + summoleste_Adv : Adv ; -- [XXXEC] :: with some difficulty/trouble; + summolestus_A : A ; -- [XXXEC] :: somewhat troublesome; + summoneo_V : V ; -- [XXXEC] :: remind secretly; + summonio_V2 : V2 ; -- [FLXFJ] :: summon; + summonitio_F_N : N ; -- [FLXFJ] :: summons; + summonitor_M_N : N ; -- [FLXFJ] :: summoner; one who summons; + summopere_Adv : Adv ; -- [XXXEC] :: very much, exceedingly; (summo opere); + summorosus_A : A ; -- [XXXEC] :: somewhat peevish; + summotor_M_N : N ; -- [XXXDS] :: space-clearer; one who clears spaces; + summoveo_V : V ; -- [XXXAO] :: remove; drive off, dislodge; expel; ward off; keep at a distance; bar/debar; + summum_N_N : N ; -- [XXXDX] :: top; summit, end, last; highest place; top surface; (voice) highest, loudest; + summurmuro_V : V ; -- [XXXFO] :: murmur softly; + summus_A : A ; -- [XXXDX] :: highest, the top of; greatest; last; the end of; + summuto_V2 : V2 ; -- [XXXEC] :: exchange; + sumo_V2 : V2 ; -- [XXXES] :: accept; begin; suppose; select; purchase; obtain; (sumpsi, sumptum); + sumptuarius_A : A ; -- [XXXDX] :: relating to expense; + sumptuosus_A : A ; -- [XXXDX] :: expensive, costly; sumptuous; + sumptus_M_N : N ; -- [XXXBX] :: cost, charge, expense; + suo_V2 : V2 ; -- [XXXDX] :: sew together/up, stitch; + suouitaurilis_N_N : N ; -- [XEXFS] :: animal sacrifice (pl.) (of pig, sheep and bull); + suovetaurile_N_N : N ; -- [XXXDX] :: purificatory sacrifice (pl.) consisting of a boar, a ram, and a bull; + supellex_F_N : N ; -- [XXXCO] :: furniture, house furnishings; paraphernalia, articles necessary for business; + super_Abl_Prep : Prep ; -- [XXXAX] :: over (space), above, upon, in addition to; during (time); concerning; beyond; + super_Acc_Prep : Prep ; -- [XXXBX] :: upon/on; over, above, about; besides (space); during (time); beyond (degree); + super_Adv : Adv ; -- [XXXAX] :: above, on top, over; upwards; moreover, in addition, besides; + superabilis_A : A ; -- [XXXDX] :: that may be got over or surmounted; that may be conquered; + superabundanter_Adv : Adv ; -- [DXXFS] :: very abundantly; + superabundantia_F_N : N ; -- [DXXFS] :: superabundance; + superabundo_V : V ; -- [DXXDS] :: be very abundant; + superaddo_V2 : V2 ; -- [XXXDX] :: add or affix on the surface; + superadicio_V2 : V2 ; -- [XXXDS] :: add besides; + superaedificium_N_N : N ; -- [DXXFS] :: upper building; + superaedifico_V2 : V2 ; -- [DXXDS] :: build upon/over; + superans_A : A ; -- [XXXDS] :: predominant; + superappono_V2 : V2 ; -- [DXXDS] :: place above; + superator_M_N : N ; -- [XXXDX] :: conqueror; + superbe_Adv : Adv ; -- [XXXDX] :: arrogantly, proudly, haughtily; superciliously; + superbia_F_N : N ; -- [XXXDX] :: arrogance, pride, haughtiness; + superbiloquentia_F_N : N ; -- [XXXDS] :: haughty/arrogant/overbearing speaking/speech; + superbio_V : V ; -- [XXXCO] :: show/have (too much) pride/disdain (to); be proud/gorgeous/superb/magnificent; + superbiparticular_A : A ; -- [DSXFS] :: super-biparticular; of integer plus two thirds; (N + 2/3); + superbipartiens_A : A ; -- [FSXEM] :: super-biparticular; of integer plus two thirds; (N + 2/3); + superbus_A : A ; -- [XXXAX] :: arrogant, overbearing, haughty, proud; + superciliosus_A : A ; -- [XXXDS] :: supercilious; disdainful; + supercilium_N_N : N ; -- [XXXDX] :: eyebrow; frown; arrogance; + supercilius_A : A ; -- [EXXFS] :: haughty; supercilious; + superdico_V : V ; -- [ELXES] :: say in addition; + superdo_V2 : V2 ; -- [XXXFO] :: lay over; put over; apply on the surface; + superduco_V2 : V2 ; -- [XXXEO] :: bring home as successor to former wife; + superductio_F_N : N ; -- [XXXFO] :: drawing of a line over words in a document; + superemineo_V : V ; -- [XXXDX] :: overtop, stand out above the level of; + superexactio_F_N : N ; -- [ELXFS] :: excessive demand; + superexalto_V : V ; -- [DEXES] :: exalt above others; + superexcedo_V2 : V2 ; -- [EXXDS] :: surpass; + superexcellens_A : A ; -- [XXXFS] :: very excellent; + superexcrescens_A : A ; -- [FXXFM] :: excess; incremental; [superexcrescens anno => leap year]; + superficies_F_N : N ; -- [XXXDX] :: top, surface, upper layer; building (vs. land on which it stands); + superficietenus_Adv : Adv ; -- [FXXFM] :: superficially; + superfio_V : V ; -- [XXXDS] :: be left over; be left/remain (as residue); become superfluous/redundant; + superfixus_A : A ; -- [XXXEC] :: fixed on the top; + superfluo_V2 : V2 ; -- [XXXCO] :: overflow, flow over brim/sides/surface; be superfluous/superabundant/surplus; + superfluum_N_N : N ; -- [XXXEO] :: balance. (that) remaining (after something taken), surplus; + superfluus_A : A ; -- [XXXCO] :: superfluous, in excess of need; remaining after something taken; surplus; + superfundo_V2 : V2 ; -- [XXXCO] :: pour over, cover (surface); spill over, pour over brim; pour in (invaders); + supergredior_V : V ; -- [XXXDX] :: pass over or beyond; exceed, surpass; + superimmineo_V : V ; -- [XXXDX] :: stand above in a threatening position; + superimpendens_A : A ; -- [XXXEC] :: overhanging; + superimpendo_V2 : V2 ; -- [EXXFS] :: spend, exhaust; (upon any thing); + superimpono_V2 : V2 ; -- [XXXDX] :: place on top or over; + superincidens_A : A ; -- [XXXDX] :: falling on top; + superincubans_A : A ; -- [XXXDX] :: lying on top; + superincumbo_V2 : V2 ; -- [XXXDX] :: lean over; + superingo_V2 : V2 ; -- [XXXDS] :: bring upon; pour down (eg sun-rays); + superinicio_V2 : V2 ; -- [XXXDX] :: throw/scatter on/upon/over the surface; + superinjicio_V2 : V2 ; -- [XXXCS] :: throw/scatter on/upon/over the surface; + superinpendo_V2 : V2 ; -- [EXXFS] :: spend, exhaust; (upon any thing); + superinsterno_V2 : V2 ; -- [XXXDX] :: spread/lay on over the surface; + superinungo_V2 : V2 ; -- [XXXDS] :: besmear; smear over; E:anoint; + superinvaleo_V : V ; -- [EXXEP] :: excel in strength; + superinvalesco_V : V ; -- [EXXEP] :: excel in strength; + superioritas_F_N : N ; -- [XXXEZ] :: superiority; + superjaceo_V2 : V2 ; -- [XXXFS] :: lie over; lie upon; + superjacio_V2 : V2 ; -- [XXXDX] :: throw or scatter on top o; over the surface; shoot over the top of; + superlatus_A : A ; -- [XXXEC] :: exaggerated, hyperbolic; + superlectile_N_N : N ; -- [FXXFM] :: bedding (gender unclear); + superliminare_N_N : N ; -- [EXXFP] :: lintel; + superliminium_N_N : N ; -- [EXXFP] :: lintel; + superlinen_N_N : N ; -- [XXXIO] :: lintel; (over door); + superlininare_N_N : N ; -- [EXXES] :: lintel; (over door); + superlino_V2 : V2 ; -- [DXXDS] :: smear over; besmear; + supermitto_V2 : V2 ; -- [DXXDS] :: throw over; + supernato_V : V ; -- [DXXDS] :: swim on top; float; + supernaturalis_A : A ; -- [GXXEK] :: supernatural; + superne_Adv : Adv ; -- [XXXDX] :: at or to a higher level, above; in the upper part; on top; + supernus_A : A ; -- [XXXBX] :: heavenly; celestial; of the gods; lofty, above; on the surface/upper side; + supero_V : V ; -- [XXXAX] :: overcome, conquer; survive; outdo; surpass, be above, have the upper hand; + superobruo_V2 : V2 ; -- [XXXFO] :: overwhelm (Col); overrun; overthrow; + superoccupo_V : V ; -- [XXXDX] :: take by surprise from above; + superonero_V2 : V2 ; -- [FXXFM] :: overload with fetters; + superparticularis_A : A ; -- [DSXFS] :: super-particular; of/containing integer plus aliquot fraction; (N + 1/M); + superpartiens_A : A ; -- [FSXES] :: super-particular; of/containing integer plus aliquot fraction; (N + 1/M); + superpendens_A : A ; -- [XXXDX] :: overhanging; + superpono_V2 : V2 ; -- [XXXDX] :: place over or on top; put in charge; + superrealismus_M_N : N ; -- [GXXEK] :: surrealism; + superruo_V : V ; -- [DXXDS] :: fall upon; rush upon; + superscando_V : V ; -- [XXXDX] :: climb over; + supersedeo_V : V ; -- [XXXDX] :: refrain (from), desist (from); + supersido_V2 : V2 ; -- [EXXEP] :: dispense with; + supersilium_N_N : N ; -- [FXXEM] :: saddle-cover; haughtiness (Nelson); + supersterno_V2 : V2 ; -- [XXXDX] :: spread or lay on top; + superstes_A : A ; -- [XXXBX] :: outliving, surviving; standing over/near; present, witnessing; + superstitio_F_N : N ; -- [XXXDX] :: superstition; irrational religious awe; + superstitiosus_A : A ; -- [XXXDX] :: superstitious, full of unreasoning religious awe; + supersto_V : V ; -- [XXXCO] :: stand on top (of) (w/DAT/ABL); stand over (someone prostrate or recumbent); + superstruo_V2 : V2 ; -- [DXXFS] :: build over; build on top; + supersubstantialis_A : A ; -- [EEXDX] :: life-sustaining; + supersum_V : V ; -- [XXXAX] :: be left over; survive; be in excess/superfluous (to); remain to be performed; + supertego_V2 : V2 ; -- [XXXDS] :: cover over; + supertriparticular_A : A ; -- [DSXFS] :: super-triparticular; of integer plus three fourths; (N + 3/4); + supertripartiens_A : A ; -- [FSXEM] :: super-triparticular; of integer plus three fourths; (N + 3/4); + superum_N_N : N ; -- [XXXDX] :: heaven (pl.); heavenly bodies; heavenly things; higher places; + superumerale_N_N : N ; -- [EXXES] :: ephod (armless vestment of Jewish priests); (sarape-like); + superurgens_A : A ; -- [XXXDS] :: pressing from above; + superus_A : A ; -- [XXXAX] :: above, high; higher, upper, of this world; greatest, last, highest; + superus_M_N : N ; -- [XXXDX] :: gods (pl.) on high, celestial deities; those above; + supervacaneus_A : A ; -- [XXXDX] :: redundant; unnecessary; + supervacuaneus_A : A ; -- [CXXFX] :: superfluous; unnecessary; (a different read of supervacaneus in Cicero); + supervacuus_A : A ; -- [XXXDX] :: superfluous, redundant, more than needed; unnecessary, pointless, purposeless; + supervado_V : V ; -- [XXXDX] :: surmount; + supervehor_V : V ; -- [XXXDX] :: ride/sail/pass over/by/past; turn; + supervenio_V2 : V2 ; -- [XXXAX] :: come up, arrive; + superventus_M_N : N ; -- [EXXES] :: arrival, coming up; W:attack; + supervivo_V2 : V2 ; -- [XXXDX] :: survive, outlive; + supervolito_V : V ; -- [XXXDX] :: fly to and fro over; + supervolo_V : V ; -- [XXXDX] :: fly over; + supino_V : V ; -- [XXXDX] :: lay on the back; turn up; tilt back; + supinus_A : A ; -- [XXXDX] :: lying face upwards, flat on one's back; turned palm upwards; flat; passive; + supo_V2 : V2 ; -- [XXXFO] :: throw; pour; strew, scatter; (usu. only in compounds); + suppalidus_A : A ; -- [XXXDS] :: somewhat pale; + suppalpor_V : V ; -- [XXXFS] :: caress; coax gently; + suppar_A : A ; -- [XXXEC] :: almost equal; + supparasitor_V : V ; -- [BXXDS] :: flatter somewhat; + supparum_N_N : N ; -- [XXXES] :: linen garment (for women); topsail; + supparus_M_N : N ; -- [XXXDS] :: top-sail; linen garment; (see also supparum); + suppeditatio_F_N : N ; -- [XXXDS] :: abundance; + suppedito_V : V ; -- [XXXDX] :: be/make available when/as required, supply with/needs (of); + suppedo_V : V ; -- [XXXDS] :: break wind gently, fart quietly; + suppernatus_A : A ; -- [XXXEC] :: lamed in the hip; + suppetia_F_N : N ; -- [XXXEC] :: help (pl.), aid; + suppetior_V : V ; -- [XXXEC] :: help, assist; + suppeto_V2 : V2 ; -- [XXXDX] :: be at hand; be equal to; be sufficient for; + suppilo_V2 : V2 ; -- [XXXDS] :: steal; pilfer; + suppingo_V2 : V2 ; -- [XXXDS] :: fasten underneath; paint over; + supplanto_V : V ; -- [XXXEC] :: trip up; + supplementum_N_N : N ; -- [XXXDX] :: reinforcements; supplies; that which fills out; + suppleo_V : V ; -- [XXXDX] :: supply; + supplex_A : A ; -- [XXXDX] :: suppliant, kneeling, begging; + supplex_M_N : N ; -- [XXXBX] :: suppliant; + supplicatio_F_N : N ; -- [XXXDX] :: thanksgiving; supplication; + suppliciter_Adv : Adv ; -- [XXXDX] :: suppliantly, in an attitude of humble entreaty; + supplicium_N_N : N ; -- [XXXBX] :: punishment, suffering; supplication; torture; + supplico_V : V ; -- [XXXDX] :: pray, supplicate; humbly beseech; + supplodo_V2 : V2 ; -- [XXXEC] :: stamp; + supplosio_F_N : N ; -- [XXXEC] :: stamping; + suppono_V2 : V2 ; -- [XXXBX] :: place under; substitute; suppose; + supporto_V : V ; -- [XXXDX] :: carry up, transport; + suppositicius_A : A ; -- [XXXET] :: substituted; spurious; put in the place of another; not genuine; + suppositio_F_N : N ; -- [XXXEO] :: fraudulent introduction (of child) into family; placing under (eggs-hen); + supposititius_A : A ; -- [GXXET] :: substituted; spurious; put in the place of another; not genuine; + suppressio_F_N : N ; -- [XBXDS] :: pressing-down; nightmare; sense of oppression; embezzlement/keeping back money + supprimo_V2 : V2 ; -- [XXXDX] :: press down or under; suppress; keep back, contain; stop, check; + suppromus_M_N : N ; -- [BXXDS] :: under-butler; + suppudet_V0 : V ; -- [XXXDS] :: be somewhat ashamed; + suppullulo_V : V ; -- [FXXFM] :: spring up secretly; + suppuratio_F_N : N ; -- [XBXCO] :: suppuration/festering; suppurating/festering sore, abscess; + suppuratorius_A : A ; -- [XBXNO] :: of/concerned with festering/suppurating sores/abscesses; + suppuratus_A : A ; -- [XBXDO] :: that has suppurated/festered; that has come to a head; (of a tumor); + suppuro_V : V ; -- [XBXCO] :: suppurate, fester under the surface; + suppus_A : A ; -- [XXXEC] :: head-downwards; + supputatio_F_N : N ; -- [XXXDS] :: computation; + supputo_V2 : V2 ; -- [XXXEC] :: count up, compute; + supra_Acc_Prep : Prep ; -- [XXXAX] :: above, beyond; over; more than; in charge of, in authority over; + supra_Adv : Adv ; -- [XXXDX] :: on top; more; above; before, formerly; + supradico_V2 : V2 ; -- [XXXDX] :: say in addition to; say above, say before; + supranistria_F_N : N ; -- [GDXEK] :: soprano; + suprascando_V : V ; -- [XXXDX] :: climb on top of; + suprascribo_V2 : V2 ; -- [EXXEP] :: title/entitle; inscribe; + suprascriptio_F_N : N ; -- [EXXEP] :: title; inscription (Douay); + suprascriptus_A : A ; -- [EXXEP] :: entitled; inscribed; (sometimes abb. SS.); + supremum_N_N : N ; -- [XXXDX] :: funeral rites (pl.) or offerings; + supter_Abl_Prep : Prep ; -- [XXXEO] :: beneath, under (cover/shelter); towards/at base (of wall/cliff); (usu. ACC); + supter_Acc_Prep : Prep ; -- [XXXCO] :: beneath, under (cover/shelter); towards/at base (of wall/cliff); + supter_Adv : Adv ; -- [XXXCO] :: beneath (surface/covering); underneath, below; at lower level/in lower position; + suptilis_A : A ; -- [XXXAO] :: fine-spun, fine; slender, delicate, exact; minutely thorough; strict, literal; + suptilitas_F_N : N ; -- [XXXAO] :: fineness of texture/logic/detail; slenderness/exactness/acuteness; sharpness; + suptiliter_Adv : Adv ; -- [XXXBO] :: finely; delicately; acutely, exactly; minutely; strictly, literally; logically; + sura_F_N : N ; -- [XXXDX] :: calf of the leg; + surculosus_A : A ; -- [DAXNS] :: woody; ligneous (Pliny); + surculus_M_N : N ; -- [XXXDX] :: shoot, sprout; + surdaster_A : A ; -- [XXXEC] :: somewhat deaf; + surditas_F_N : N ; -- [XXXDX] :: deafness; + surdus_A : A ; -- [XXXDX] :: deaf, unresponsive to what is said; falling on deaf ears; muffled, muted; + surena_F_N : N ; -- [XXXDS] :: grand vizier/chief minister (of Parthians); kind of fish; + surgo_V2 : V2 ; -- [XXXAX] :: rise, lift; grow; + surpiculus_A : A ; -- [XAXES] :: used for dealing with bulrushes (of a billhook); of/made of rushes (L+S); + surpiculus_M_N : N ; -- [XAXDS] :: basket made of bulrushes, rush basket; + surpo_V2 : V2 ; -- [BXXFS] :: take away secretly; steal, filch; (archaic form of surripere); + surregulus_M_N : N ; -- [DXXES] :: petty prince; feudatory vassal; + surrepo_V2 : V2 ; -- [XXXCO] :: |come on gradually/imperceptibly/by degrees (conditions); steal along/on; + surrepticius_A : A ; -- [XXXDX] :: surreptitious; + surreptio_F_N : N ; -- [XLXEO] :: stealing/taking secretly or by deception; filching; purloining, theft (L+S); + surreptitius_A : A ; -- [XXXES] :: stolen; surreptitious; concealed; (surrepticius); + surreptum_Adv : Adv ; -- [XXXFS] :: stealthily; + surrido_V2 : V2 ; -- [DXXFS] :: smile; + surripio_V2 : V2 ; -- [XXXEC] :: take away secretly; steal, filch; + surrogo_V : V ; -- [FXXEM] :: replace; depute; + surrubicundus_A : A ; -- [DXXDS] :: somewhat red; + surruncivus_A : A ; -- [DXXDS] :: grubbed-up; that is grubbed up; + surrutilus_A : A ; -- [DXXDS] :: somewhat reddish; + sursisa_F_N : N ; -- [FLXEM] :: fine-for-default; "sursise"; + sursum_Adv : Adv ; -- [XXXDX] :: up, on high; 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_V2 : V2 ; - suscitabulum_N_N : N ; - suscito_V : V ; - suscriptor_M_N : N ; - susicivus_A : A ; - suspecto_Adv : Adv ; - suspecto_V2 : V2 ; - suspectus_A : A ; - suspectus_M_N : N ; - suspendium_N_N : N ; - suspendo_V2 : V2 ; - suspensus_A : A ; - suspicax_A : A ; - suspicio_F_N : N ; - suspicio_V2 : V2 ; - suspiciosus_A : A ; - suspicor_V : V ; - suspiratus_M_N : N ; - suspiriosus_A : A ; - suspiritus_M_N : N ; - suspirium_N_N : N ; - suspiro_V : V ; - susque_Adv : Adv ; - sussulto_V : V ; - sustentaculum_N_N : N ; - sustentatus_M_N : N ; - sustento_V : V ; - sustineo_V : V ; - sustollo_V : V ; - susum_Adv : Adv ; - susurratim_Adv : Adv ; - susurratio_F_N : N ; - susurrator_M_N : N ; - susurratrix_F_N : N ; - susurrium_N_N : N ; - susurro_M_N : N ; - susurro_V : V ; - susurrus_A : A ; - susurrus_M_N : N ; - sutela_F_N : N ; - sutilis_A : A ; - sutor_M_N : N ; - sutorius_A : A ; - sutorius_M_N : N ; - sutrinus_A : A ; - sutura_F_N : N ; - suum_N_N : N ; - suus_A : A ; - suus_M_N : N ; - sycaminon_M_N : N ; - sycaminos_M_N : N ; - sycaminus_M_N : N ; - sycomoros_M_N : N ; - sycomorus_M_N : N ; - sycophanta_F_N : N ; - sycophantia_F_N : N ; - sycophantor_V : V ; - syllaba_F_N : N ; - syllepsis_F_N : N ; - syllogismos_M_N : N ; - syllogismus_M_N : N ; - syllogizo_V : V ; - symbiosis_F_N : N ; - symbola_F_N : N ; - symbolicus_A : A ; - symbolizo_V : V ; - symbolum_N_N : N ; - symbolus_M_N : N ; - symmetria_F_N : N ; - sympathia_F_N : N ; - symphonia_F_N : N ; - symphoniacus_A : A ; - symphoniacus_M_N : N ; - symposiacus_A : A ; - symptoma_N_N : N ; - symptomatologia_F_N : N ; - synagoga_F_N : N ; - synagrapha_F_N : N ; - synagraphus_M_N : N ; - synaliphe_F_N : N ; - synaloephe_F_N : N ; - synaphe_F_N : N ; - synchronismus_M_N : N ; - synchronizatio_F_N : N ; - synchronizo_V : V ; - syncopa_F_N : N ; - syncopatus_A : A ; - syncopatus_M_N : N ; - syncopes_F_N : N ; - syncopis_F_N : N ; - syncopo_V : V ; - syncretismus_M_N : N ; - synderesis_F_N : N ; - syndicalis_A : A ; - syndicalismus_M_N : N ; - syndicatus_M_N : N ; - syndroma_N_N : N ; - synedrus_M_N : N ; - synemmenon_N_N : N ; - syngrafa_F_N : N ; - syngrafus_M_N : N ; - syngrapha_F_N : N ; - syngraphus_M_N : N ; - synodita_M_N : N ; + sus_M_N : N ; -- [XXXDX] :: swine; hog, pig, sow; + suscenseo_V : V ; -- [XXXCO] :: be angry; be indignant with; + susceptibilis_A : A ; -- [FXXFM] :: acceptable; can be received; + susceptio_F_N : N ; -- [XXXDO] :: undertaking; taking upon oneself; + susceptor_M_N : N ; -- [EXXDP] :: ||supporter, helper, guardian; host/entertainer; receiver/collector of taxes; + suscipio_V2 : V2 ; -- [XXXAX] :: undertake; support; accept, receive, take up; + suscitabulum_N_N : N ; -- [GXXEK] :: clock; + suscito_V : V ; -- [XXXDX] :: encourage, stir up; awaken, rouse, kindle; + suscriptor_M_N : N ; -- [FXXEN] :: document-signer; + susicivus_A : A ; -- [FXXEN] :: left over, spare; extra, superfluous; + suspecto_Adv : Adv ; -- [XXXFO] :: in suspicious circumstances; suspiciously; + suspecto_V2 : V2 ; -- [XXXCO] :: suspect; mistrust, be suspicious of; suspect the presence of evil; gaze up at; + suspectus_A : A ; -- [XXXBO] :: suspected/mistrusted; of doubtful character; believed without proof; suspicious; + suspectus_M_N : N ; -- [DXXDS] :: esteem; admiration, looking up to; + suspendium_N_N : N ; -- [XXXDX] :: act of hanging oneself; + suspendo_V2 : V2 ; -- [XXXAX] :: hang up, suspend; + suspensus_A : A ; -- [XXXDX] :: in a state of anxious uncertainty or suspense, light; + suspicax_A : A ; -- [XXXDX] :: mistrustful; + suspicio_F_N : N ; -- [XXXDX] :: suspicion; mistrust; + suspicio_V2 : V2 ; -- [XXXBX] :: look up to; admire; + suspiciosus_A : A ; -- [XXXEC] :: feeling suspicion, suspecting; exciting suspicion, suspicious; + suspicor_V : V ; -- [XXXBX] :: mistrust, suspect; suppose; + suspiratus_M_N : N ; -- [XXXDX] :: sigh; deep breath; + suspiriosus_A : A ; -- [XXXES] :: deep breathing; B:asthmatic; + suspiritus_M_N : N ; -- [XXXDX] :: sigh; + suspirium_N_N : N ; -- [XXXBX] :: deep breath, sigh; + suspiro_V : V ; -- [XXXBX] :: sigh; utter with a sigh; + susque_Adv : Adv ; -- [XXXDS] :: up and; [susque deque => up and down]; + sussulto_V : V ; -- [XXXDO] :: keep jumping up; spring up, leap up; (also jerky rhythm); + sustentaculum_N_N : N ; -- [XXXDS] :: nourishment; prop; rack (for books/luggage Cal); + sustentatus_M_N : N ; -- [DXXES] :: support, sustaining, bearing/carrying; keeping erect/upright; hangings/drapes; + sustento_V : V ; -- [XXXDX] :: endure, hold out; + sustineo_V : V ; -- [XXXAX] :: support; check; put off; put up with; sustain; hold back; + sustollo_V : V ; -- [XXXDX] :: raise on high; + susum_Adv : Adv ; -- [XXXDX] :: up, on high; + susurratim_Adv : Adv ; -- [DXXFS] :: in a low voice/whisper, softly; + susurratio_F_N : N ; -- [DXXDS] :: whisper, whispering; + susurrator_M_N : N ; -- [XXXFO] :: whisperer; one who whispers; + susurratrix_F_N : N ; -- [DXXFS] :: whisperer (female) whispers; + susurrium_N_N : N ; -- [FXXEM] :: whisper; + susurro_M_N : N ; -- [DXXEX] :: whisperer; mutterer; tale-bearer; + susurro_V : V ; -- [XXXDX] :: mutter, whisper, hum, buzz, murmur; + susurrus_A : A ; -- [XXXDX] :: whispering; + susurrus_M_N : N ; -- [XXXDX] :: whisper, whispered report; soft rustling sound; + sutela_F_N : N ; -- [XXXDS] :: trick; sewing together; + sutilis_A : A ; -- [XXXDX] :: made by sewing, consisting of things stitched together; + sutor_M_N : N ; -- [XXXDX] :: shoemaker; cobbler; + sutorius_A : A ; -- [XXXDS] :: cobbler's; of a shoemaker; sewing (Cas); + sutorius_M_N : N ; -- [XXXES] :: ex-cobbler; + sutrinus_A : A ; -- [XXXEC] :: of a shoemaker; + sutura_F_N : N ; -- [XXXDX] :: seam, stitch, piece of sewing; + suum_N_N : N ; -- [XXXDX] :: his property (pl.); [se suaque => themselves and their possessions]; + suus_A : A ; -- [XXXDX] :: his/one's (own), her (own), hers, its (own); (pl.) their (own), theirs; + suus_M_N : N ; -- [XXXDX] :: his men (pl.), his friends; + sycaminon_M_N : N ; -- [DAXFS] :: mulberry tree; + sycaminos_M_N : N ; -- [XAHFO] :: mulberry-leaved/Egyptian fig; Greek name for the mulberry tree; + sycaminus_M_N : N ; -- [XAHFS] :: mulberry-leaved/Egyptian fig; Greek name for the mulberry tree; + sycomoros_M_N : N ; -- [XAHFO] :: mulberry-leaved/Egyptian fig; mulberry tree (L+S); + sycomorus_M_N : N ; -- [XAHFO] :: mulberry-leaved/Egyptian fig; mulberry tree (L+S); + sycophanta_F_N : N ; -- [XXXEC] :: informer, trickster; + sycophantia_F_N : N ; -- [XXXFS] :: cunning, craft; deceit; + sycophantor_V : V ; -- [BXXES] :: cheat; + syllaba_F_N : N ; -- [XGXBO] :: syllable; letter, epistle (Latham); geometric section; + syllepsis_F_N : N ; -- [XGXFS] :: word cross-reference, syllepsis; grammatical figure; + syllogismos_M_N : N ; -- [XGXEC] :: syllogism; + syllogismus_M_N : N ; -- [XGXEC] :: syllogism; + syllogizo_V : V ; -- [FGXFM] :: reason syllogistically; + symbiosis_F_N : N ; -- [GBXEK] :: symbiosis; + symbola_F_N : N ; -- [XXXDO] :: contribution for common meal/feast; contributing of that sum; + symbolicus_A : A ; -- [ESXDX] :: symbolic, symbolical; + symbolizo_V : V ; -- [FXXEM] :: symbolize; accord, correspond; + symbolum_N_N : N ; -- [XXXDS] :: token/symbol; matching objects proving identity; signet ring; warrant, permit; + symbolus_M_N : N ; -- [XXXDO] :: token/symbol; matching objects proving identity; signet ring; warrant, permit; + symmetria_F_N : N ; -- [XSXCO] :: symmetry; due proportion between parts; relative measure of parts/proportion; + sympathia_F_N : N ; -- [XXXES] :: feeling in common; sympathy; + symphonia_F_N : N ; -- [XDXCO] :: harmony of sounds; singers/musicians; symphony (L+S); instrument; war signal; + symphoniacus_A : A ; -- [XXXEC] :: of or for a concert; + symphoniacus_M_N : N ; -- [GDXEK] :: orchestra; + symposiacus_A : A ; -- [XXXFS] :: of a banquet; convivial; + symptoma_N_N : N ; -- [GXXEK] :: symptom; + symptomatologia_F_N : N ; -- [GXXEK] :: symptomatology, pathological study of symptoms; + synagoga_F_N : N ; -- [XXXDX] :: synagogue; congregation (of Jews); + synagrapha_F_N : N ; -- [XXXDX] :: promissory note, bond; written contract/IOU signed by both parties to pay money; + synagraphus_M_N : N ; -- [XXXDX] :: written contract/agreement; written pass, safe conduct; + synaliphe_F_N : N ; -- [XGXFS] :: elision; contraction of two syllables into one; + synaloephe_F_N : N ; -- [XGXFS] :: elision; contraction of two syllables into one; + synaphe_F_N : N ; -- [FDXFZ] :: synaphe note, conjunction of two tetrachords; note equal to hypate-meson; + synchronismus_M_N : N ; -- [GXXEK] :: synchronism; + synchronizatio_F_N : N ; -- [GXXEK] :: synchronization; + synchronizo_V : V ; -- [GXXEK] :: synchronize; + syncopa_F_N : N ; -- [EGXEP] :: contraction, syncope; fainting fit; heart failure; + syncopatus_A : A ; -- [EBXEP] :: suffering from a fainting fit; + syncopatus_M_N : N ; -- [EBXEP] :: fainter, one suffering from a fainting fit; + syncopes_F_N : N ; -- [EGXEP] :: contraction, syncope; fainting fit; heart failure; + syncopis_F_N : N ; -- [GBXFT] :: fainting fit; (Erasmus); + syncopo_V : V ; -- [EBXFP] :: faint, suffer a syncope/fainting fit; + syncretismus_M_N : N ; -- [GXXEK] :: syncretism, attempted union/reconciliation of diverse/opposite ideas/practices; + synderesis_F_N : N ; -- [FSXEF] :: synderesis/synteresis, keeping/understanding principles of moral law; remorse; + syndicalis_A : A ; -- [GXXEK] :: united; organized in unions, syndical; + syndicalismus_M_N : N ; -- [GXXEK] :: unionism; + syndicatus_M_N : N ; -- [GXXEK] :: union; syndicate; + syndroma_N_N : N ; -- [GBXEK] :: syndrome; + synedrus_M_N : N ; -- [XXXEC] :: Macedonian councillor; + synemmenon_N_N : N ; -- [DDXFS] :: musical note series; name of several series of musical notes; + syngrafa_F_N : N ; -- [XXXCO] :: written contract/IOU (signed by both) to pay the other a specific sum of money; + syngrafus_M_N : N ; -- [XXXEO] :: written contract/agreement; written pass, safe conduct; passport; + syngrapha_F_N : N ; -- [XXXCO] :: written contract/IOU (signed by both) to pay the other a specific sum of money; + syngraphus_M_N : N ; -- [XXXEO] :: written contract/agreement; written pass, safe conduct; passport; + synodita_M_N : N ; -- [ELXFS] :: fellow-traveller; companion; synodus_1_N : N ; -- [XAXNO] :: fish of sea-bream family; - synodus_2_N : N ; - synodus_F_N : N ; - synodus_M_N : N ; - synonymum_N_N : N ; - synthesis_F_N : N ; - syntheticus_A : A ; - synzygia_F_N : N ; - syphilis_F_N : N ; - syphiliticus_A : A ; - syringa_F_N : N ; - syrma_F_N : N ; - syrma_N_N : N ; - syrtis_F_N : N ; - systema_N_N : N ; - systylos_M_N : N ; - tabacarius_A : A ; - tabacinus_A : A ; - tabacismus_M_N : N ; - tabacum_N_N : N ; - tabanus_M_N : N ; - tabefacio_V2 : V2 ; - tabefactus_A : A ; - tabefio_V : V ; - tabella_F_N : N ; - tabellanio_M_N : N ; - tabellarius_M_N : N ; - tabellio_M_N : N ; - tabeo_V : V ; - taberna_F_N : N ; - tabernaculum_N_N : N ; - tabernarius_M_N : N ; - tabes_F_N : N ; - tabesco_V2 : V2 ; - tabidulus_A : A ; - tabidus_A : A ; - tabificus_A : A ; - tabitudo_F_N : N ; - tablinum_N_N : N ; - tabula_F_N : N ; - tabularium_N_N : N ; - tabulatio_F_N : N ; - tabulatum_N_N : N ; - tabulatus_A : A ; - tabulinum_N_N : N ; - tabum_N_N : N ; - taceo_V : V ; - tachometrum_N_N : N ; - taciturnitas_F_N : N ; - taciturnus_A : A ; - tacitus_A : A ; - tactilis_A : A ; - tactio_F_N : N ; - tactus_M_N : N ; - taeda_F_N : N ; - taedeo_V : V ; - taedeor_V : V ; - taedet_V0 : V ; - taedifer_A : A ; - taedio_V : V ; - taedior_V : V ; - taedium_N_N : N ; - taenia_F_N : N ; - taeniola_F_N : N ; - taeter_A : A ; - taetricus_A : A ; - tagax_A : A ; - talare_N_N : N ; - talaris_A : A ; - talarius_A : A ; - talea_F_N : N ; - talentum_N_N : N ; - talio_F_N : N ; - talis_A : A ; - taliter_Adv : Adv ; - talitha_N : N ; - talla_F_N : N ; - tallus_M_N : N ; - talpa_C_N : N ; - talus_M_N : N ; - tam_Adv : Adv ; - tamarix_F_N : N ; - tamdiu_Adv : Adv ; - tamen_Adv : Adv ; - tametsi_Conj : Conj ; - taminius_A : A ; - tamisium_N_N : N ; - tamquam_Conj : Conj ; - tandem_Adv : Adv ; - tangens_F_N : N ; - tangibilis_A : A ; - tango_V2 : V2 ; - tanquam_Conj : Conj ; - tantillus_A : A ; - tantisper_Adv : Adv ; - tantopere_Adv : Adv ; - tantulus_A : A ; - tantum_Adv : Adv ; - tantummodo_Adv : Adv ; - tantundem_Adv : Adv ; - tantus_A : A ; - tapes_M_N : N ; - tapetarius_M_N : N ; - tapete_N_N : N ; - tapetes_M_N : N ; - tapetum_N_N : N ; - tappete_N_N : N ; - tarandrus_M_N : N ; - taraxacum_N_N : N ; - tardesco_V : V ; - tardipes_A : A ; - tarditas_F_N : N ; - tardiusculus_A : A ; - tardo_V : V ; - tardus_A : A ; - tarmes_M_N : N ; - tarpezita_M_N : N ; - tat_Interj : Interj ; - taurea_F_N : N ; - taureus_A : A ; - tauriformis_A : A ; - taurinus_A : A ; - tauromachia_F_N : N ; - taurus_M_N : N ; - taxeus_A : A ; - taxillus_M_N : N ; - taxiraeda_F_N : N ; - taxiraedarius_M_N : N ; - taxo_V : V ; - taxus_F_N : N ; - teanus_A : A ; - tebboleth_N : N ; - tebeth_N : N ; - techina_F_N : N ; - techna_F_N : N ; - technica_F_N : N ; - technicus_A : A ; - technocrata_M_N : N ; - technocratia_F_N : N ; - technocraticus_A : A ; - technologia_F_N : N ; - technologicus_A : A ; - tector_M_N : N ; - tectoriolum_N_N : N ; - tectorium_N_N : N ; - tectorius_A : A ; - tectum_N_N : N ; - tectus_A : A ; - tegimen_N_N : N ; - tegimentum_N_N : N ; - tegmen_N_N : N ; - tegmentum_N_N : N ; - tego_V2 : V2 ; - tegula_F_N : N ; - tegumen_N_N : N ; - tegumentum_N_N : N ; - tela_F_N : N ; - telecopia_F_N : N ; - telecopialis_A : A ; - telecopiatrum_N_N : N ; - telecustodia_F_N : N ; - teleferica_F_N : N ; - telegraphema_N_N : N ; - telegraphia_F_N : N ; - telegraphicus_A : A ; - telegraphista_M_N : N ; - telegrapho_V : V ; - telegraphum_N_N : N ; - telehorasis_F_N : N ; - telepathia_F_N : N ; - telephonema_N_N : N ; - telephonicus_A : A ; - telephonista_M_N : N ; - telephono_V : V ; - telephonum_N_N : N ; - telescopium_N_N : N ; - telespectator_M_N : N ; - televisificus_A : A ; - televisio_F_N : N ; - televisor_M_N : N ; - televisorium_N_N : N ; - telinum_N_N : N ; - telis_F_N : N ; - tellus_F_N : N ; - telo_M_N : N ; - telonarius_M_N : N ; - teloneum_N_N : N ; - telonialis_A : A ; - teloniarius_M_N : N ; - telonicus_A : A ; - telonium_N_N : N ; - telum_N_N : N ; - temerarius_A : A ; - temere_Adv : Adv ; - temeritas_F_N : N ; - temero_V : V ; - temetum_N_N : N ; - temno_V : V ; - temo_M_N : N ; - temperamentum_N_N : N ; - temperans_A : A ; - temperanter_Adv : Adv ; - temperantia_F_N : N ; - temperatio_F_N : N ; - temperator_M_N : N ; - temperatus_A : A ; - temperi_Adv : Adv ; - temperies_F_N : N ; - tempero_V : V ; - tempestas_F_N : N ; - tempestivus_A : A ; - tempestuosus_A : A ; - templum_N_N : N ; - temporalis_A : A ; - temporaneus_A : A ; - temporarius_A : A ; - tempori_Adv : Adv ; - temporivus_A : A ; - temptabundus_A : A ; - temptamen_N_N : N ; - temptamentum_N_N : N ; - temptatio_F_N : N ; - temptator_M_N : N ; - tempto_V : V ; - tempus_M_N : N ; - tempus_N_N : N ; - temulentia_F_N : N ; - temulentus_A : A ; - tenacitas_F_N : N ; - tenaculum_N_N : N ; - tenax_A : A ; - tendicula_F_N : N ; - tendo_V2 : V2 ; - tenebra_F_N : N ; - tenebrasco_V : V ; - tenebresco_V : V ; - tenebricosus_A : A ; - tenebro_V : V ; - tenebrosus_A : A ; - tenellulus_A : A ; - tenellus_A : A ; - tenementum_N_N : N ; - teneo_V : V ; - tener_A : A ; - tenerasco_V : V ; - teneritas_F_N : N ; - teneritudo_F_N : N ; - tenesmos_M_N : N ; - tenetura_F_N : N ; - teniludium_N_N : N ; - teniludius_M_N : N ; - tenisia_F_N : N ; - tenor_M_N : N ; - tenorista_M_N : N ; - tensa_F_N : N ; - tentabundus_A : A ; - tentamen_N_N : N ; - tentamentum_N_N : N ; - tentatio_F_N : N ; - tentigo_F_N : N ; - tento_V : V ; - tentorium_N_N : N ; - tenuiculus_A : A ; - tenuis_A : A ; - tenuitas_F_N : N ; - tenuiter_Adv : Adv ; - tenuo_V : V ; - tenura_F_N : N ; - tenus_Abl_Prep : Prep ; - tepefacio_V2 : V2 ; - tepefio_V : V ; - tepeo_V : V ; - tepesco_V : V ; - tepidarium_N_N : N ; - tepidus_A : A ; - tepor_M_N : N ; - ter_Adv : Adv ; - terebenthinus_A : A ; - terebenthos_F_N : N ; - terebenthus_F_N : N ; - terebinthina_F_N : N ; - terebinthinus_A : A ; - terebinthos_F_N : N ; - terebinthus_F_N : N ; - terebinthus_M_N : N ; - terebro_V : V ; - teredo_F_N : N ; - teres_A : A ; - terg_N_N : N ; - tergeminus_A : A ; - tergeo_V : V ; - terginum_N_N : N ; - tergiversor_V : V ; - tergo_V2 : V2 ; - tergum_N_N : N ; - tergus_N_N : N ; - terma_F_N : N ; - termen_N_N : N ; - termes_M_N : N ; - terminalis_A : A ; - terminatio_F_N : N ; - termino_V : V ; - terminologia_F_N : N ; - terminus_M_N : N ; - ternarius_A : A ; - ternarius_M_N : N ; - ternus_A : A ; - tero_V2 : V2 ; - terra_F_N : N ; - terracuberum_N_N : N ; - terraemotus_M_N : N ; - terratenus_Adv : Adv ; - terrenus_A : A ; - terreo_V : V ; - terrester_A : A ; - terrestris_A : A ; - terreus_A : A ; - terribilis_A : A ; - terriculum_N_N : N ; - terrifico_V : V ; - terrificus_A : A ; - terrigena_C_N : N ; - terrigenus_A : A ; - terrigina_C_N : N ; - terriginus_A : A ; - terriloquus_A : A ; - territo_V : V ; - territorium_N_N : N ; - terror_M_N : N ; - terrorismus_M_N : N ; - terrorista_M_N : N ; - terroristicus_A : A ; - tersus_A : A ; - tertiadecimanus_M_N : N ; - tertiana_F_N : N ; - tertianus_A : A ; - tertianus_M_N : N ; - tertiarius_A : A ; - tertiatus_A : A ; - tertio_Adv : Adv ; - tertio_V : V ; - tertium_Adv : Adv ; - tescum_N_N : N ; - tesella_F_N : N ; - tesquum_N_N : N ; - tessella_F_N : N ; - tessellatim_Adv : Adv ; - tessellatus_A : A ; - tessera_F_N : N ; - tesserarius_M_N : N ; - testa_F_N : N ; - testaceus_A : A ; - testacius_A : A ; - testamentarius_A : A ; - testamentarius_M_N : N ; - testamentum_N_N : N ; - testatio_F_N : N ; - testator_M_N : N ; - testatrix_F_N : N ; - testatus_A : A ; - testeus_A : A ; - testiculus_M_N : N ; - testificor_V : V ; - testimonium_N_N : N ; + synodus_2_N : N ; -- [XAXNO] :: fish of sea-bream family; + synodus_F_N : N ; -- [EEXES] :: synod, general council; college of priests; + synodus_M_N : N ; -- [FEXEM] :: synod, general council; book of synodal acts/constituions; + synonymum_N_N : N ; -- [FXXES] :: synonym; + synthesis_F_N : N ; -- [XXXDO] :: |set of dining clothes; dressing-gown; costume (Cal); + syntheticus_A : A ; -- [GXXEK] :: synthetic; + synzygia_F_N : N ; -- [FXXEM] :: conjunction, syzygy; + syphilis_F_N : N ; -- [GBXEK] :: syphilis; + syphiliticus_A : A ; -- [GBXEK] :: syphilitic; + syringa_F_N : N ; -- [GAXEK] :: lilac; + syrma_F_N : N ; -- [XXXDS] :: robe with train; D:tragedy; + syrma_N_N : N ; -- [XDXEC] :: long trailing robe, worn by tragic actors; + syrtis_F_N : N ; -- [XXXEC] :: sandbank, quicksand; (esp. one on the coast of North Africa); + systema_N_N : N ; -- [FXXES] :: system; complex whole; whole consisting of several parts; harmony (Latham) + systylos_M_N : N ; -- [XXXFS] :: systyle; columns close spaced at twice their widths; + tabacarius_A : A ; -- [GAXEK] :: of tobacco; + tabacinus_A : A ; -- [GAXEK] :: of tobacco; + tabacismus_M_N : N ; -- [GBXEK] :: tobacco addiction; + tabacum_N_N : N ; -- [GAXEK] :: tobacco; + tabanus_M_N : N ; -- [XAXFS] :: horse-fly; + tabefacio_V2 : V2 ; -- [EXXES] :: melt; dissolve; subdue; + tabefactus_A : A ; -- [EXXES] :: melted; dissolved; + tabefio_V : V ; -- [EXXES] :: be melted/dissolved/subdued; (tabefacio PASS); + tabella_F_N : N ; -- [XXXDX] :: small board; writing tablet; picture; ballot; deed (pl.), document, letter; + tabellanio_M_N : N ; -- [EXXFP] :: notary; scrivener; document-drafter; + tabellarius_M_N : N ; -- [GXXEK] :: factor; + tabellio_M_N : N ; -- [XLXFO] :: legal clerk, one who draws up legal documents; messenger (Erasmus); + tabeo_V : V ; -- [XXXCO] :: rot away, decay; waste away; + taberna_F_N : N ; -- [XXXCO] :: tavern, inn; wood hut/cottage, shed/hovel; stall/booth; small shop (Nelson); + tabernaculum_N_N : N ; -- [XXXCM] :: |tabernacle; canopy, covered shrine, niche; reliquary; receptacle for Host; + tabernarius_M_N : N ; -- [GXXEK] :: retailing; + tabes_F_N : N ; -- [XXXDX] :: wasting away; decay; putrefaction; fluid resulting from corruption or decay; + tabesco_V2 : V2 ; -- [XXXDX] :: melt, dissolve; dry up, evaporate; waste away, dwindle away; (mental aspect); + tabidulus_A : A ; -- [XXXEC] :: consuming; + tabidus_A : A ; -- [XXXDX] :: wasting away, emaciated, putrefying, rotten; accompanied by wasting; + tabificus_A : A ; -- [XXXDX] :: causing decay or wasting; + tabitudo_F_N : N ; -- [XXXDX] :: wasting away; + tablinum_N_N : N ; -- [XXXFS] :: terrace; archive; gallery; + tabula_F_N : N ; -- [XXXAO] :: ||picture, painting; wood panel for painting; metal/stone tablet/panel w/text; + tabularium_N_N : N ; -- [XXXDX] :: collection of (inscribed) tablets; record-office, registry; + tabulatio_F_N : N ; -- [XXXDX] :: structure of boards, boarding; + tabulatum_N_N : N ; -- [XXXDX] :: floor, story; layer, row; tier formed by the horizontal branches of a tree; + tabulatus_A : A ; -- [XXXEC] :: floored, boarded; + tabulinum_N_N : N ; -- [XXXFS] :: terrace; archive; gallery; + tabum_N_N : N ; -- [XXXDX] :: viscous fluid consisting of putrid matter; + taceo_V : V ; -- [XXXAX] :: be silent; pass over in silence; leave unmentioned, be silent about something; + tachometrum_N_N : N ; -- [GTXEK] :: tachometer; + taciturnitas_F_N : N ; -- [XXXDX] :: maintaining silence; + taciturnus_A : A ; -- [XXXDX] :: silent, quiet; + tacitus_A : A ; -- [XXXAX] :: silent, secret; + tactilis_A : A ; -- [XXXDX] :: able to be touched; + tactio_F_N : N ; -- [XXXES] :: touching (Plautus); sense of touch; + tactus_M_N : N ; -- [XXXDX] :: touch, sense of touch; + taeda_F_N : N ; -- [XXXBX] :: pine torch; + taedeo_V : V ; -- [DXXCS] :: be tired/weary/sick (of) (w/GEN or INF+ACC of person); be disgusted/offended; + taedeor_V : V ; -- [EXXEP] :: be sad; be tired/weary/sick (of); + taedet_V0 : V ; -- [XXXCO] :: be tired/weary/sick (of) (w/GEN or INF+ACC of person); be disgusted/offended; + taedifer_A : A ; -- [XXXDX] :: torch-bearing; + taedio_V : V ; -- [EXXEP] :: be sad; be tired/weary/sick (of); + taedior_V : V ; -- [EXXEP] :: be sad; be tired/weary/sick (of); + taedium_N_N : N ; -- [EXXBP] :: ||sadness, grief; sickness/illness; rancid taste/smell (L+S); irksomeness; + taenia_F_N : N ; -- [XXXDX] :: ribbon, tape, band; film, movie (Red); + taeniola_F_N : N ; -- [FXXEM] :: small ribbon, tape, band; film, movie (Red); + taeter_A : A ; -- [XXXDX] :: foul, offensive;, ugly; disgraceful; black, blackish (Souter); + taetricus_A : A ; -- [XXXES] :: harsh; gloomy; severe; (tetricus); + tagax_A : A ; -- [XXXEC] :: light-fingered; thievish, given to pilfering; + talare_N_N : N ; -- [XXXDX] :: winged sandals (pl.) of Mercury; skirts/robes reaching to ankles; + talaris_A : A ; -- [XXXDX] :: of the ankle/heel; reaching/stretching to the ankles; + talarius_A : A ; -- [XXXDX] :: of dice; with dice; + talea_F_N : N ; -- [XXXDX] :: block; bar; + talentum_N_N : N ; -- [XXXDX] :: talent; sum of money; + talio_F_N : N ; -- [XXXEC] :: retaliation; + talis_A : A ; -- [XXXAX] :: such; so great; so excellent; of such kind; + taliter_Adv : Adv ; -- [XXXDX] :: in such a manner/way (as described), so; + talitha_N : N ; -- [EXQFW] :: girl; damsel (Douay); (Aramaic); (Mark 5:41); + talla_F_N : N ; -- [XAXEO] :: layer of an onion; peel or coat of an onion (L+S); + tallus_M_N : N ; -- [EAXFW] :: young/green branch/bough/stalk; olive or myrtle (L+S) branch (2 Maccabee 14:4); + talpa_C_N : N ; -- [XXXCO] :: mole (animal); + talus_M_N : N ; -- [XBXBO] :: ankle; ankle/pastern bone; sheep knucklebone (marked for dice); dice game (pl.); + tam_Adv : Adv ; -- [XXXAX] :: so, so much (as); to such an extent/degree; nevertheless, all the same; + tamarix_F_N : N ; -- [XAXEC] :: tamarisk; (evergreen bush/shrub/tree genus Tamarix); (also myrica); + tamdiu_Adv : Adv ; -- [XXXDX] :: so long, for so long a time; so very long; all this time; + tamen_Adv : Adv ; -- [XXXAX] :: yet, nevertheless, still; + tametsi_Conj : Conj ; -- [XXXDX] :: even if, although, though; + taminius_A : A ; -- [XAXFS] :: taminian. species of wild grape; + tamisium_N_N : N ; -- [FXXEM] :: sieve, sifter; + tamquam_Conj : Conj ; -- [XXXAX] :: as, just as, just as if; as it were, so to speak; as much as; so as; + tandem_Adv : Adv ; -- [XXXBS] :: finally; at last, in the end; after some time, eventually; at length; + tangens_F_N : N ; -- [GSXEK] :: tangent (math); + tangibilis_A : A ; -- [XXXES] :: touchable; tangible; + tango_V2 : V2 ; -- [XXXAX] :: touch, strike; border on, influence; mention; + tanquam_Conj : Conj ; -- [XXXDX] :: as, just as, just as if; as it were, so to speak; as much as; so as; + tantillus_A : A ; -- [XXXDX] :: so small, so small a quantity; + tantisper_Adv : Adv ; -- [XXXCO] :: for such time (as); for so long (as); for the present/meantime; all the time; + tantopere_Adv : Adv ; -- [XXXDX] :: so much, so hard; + tantulus_A : A ; -- [XXXDX] :: so very small, so trifling; + tantum_Adv : Adv ; -- [XXXDX] :: so much, so far; hardly, only; + tantummodo_Adv : Adv ; -- [XXXDX] :: only, merely; + tantundem_Adv : Adv ; -- [XXXDX] :: just as much; + tantus_A : A ; -- [XXXAX] :: of such size; so great, so much; [tantus ... quantus => as much ... as]; + tapes_M_N : N ; -- [XXXCO] :: woolen cloth or rug used as a covering, hanging, carpet, tapestry; + tapetarius_M_N : N ; -- [GXXEK] :: decorator; + tapete_N_N : N ; -- [XXXCO] :: woolen cloth or rug used as a covering, hanging, carpet, tapestry; + tapetes_M_N : N ; -- [XXXCO] :: woolen cloth or rug used as a covering, hanging, carpet, tapestry; + tapetum_N_N : N ; -- [XXXCO] :: woolen cloth or rug used as a covering, hanging, carpet, tapestry; + tappete_N_N : N ; -- [XXXCO] :: woolen cloth or rug used as a covering, hanging, carpet, tapestry; + tarandrus_M_N : N ; -- [FXXEK] :: reindeer; + taraxacum_N_N : N ; -- [GAXEK] :: dandelion; + tardesco_V : V ; -- [XXXDX] :: become slow; + tardipes_A : A ; -- [XXXDX] :: slow-footed, lame; + tarditas_F_N : N ; -- [XXXDX] :: slowness of movement, action, etc; + tardiusculus_A : A ; -- [BXXFS] :: somewhat slow (Plautus); + tardo_V : V ; -- [XXXBX] :: check, retard; hinder; + tardus_A : A ; -- [XXXAX] :: slow, limping; deliberate; late; + tarmes_M_N : N ; -- [BAXFS] :: woodworm (Plautus); + tarpezita_M_N : N ; -- [BXXFS] :: money-changer; banker; (also tarpessita or trapezita in Plautus); + tat_Interj : Interj ; -- [BXXFS] :: what! (Plautus); + taurea_F_N : N ; -- [XXXDX] :: leather whip; + taureus_A : A ; -- [XXXDX] :: derived from a bull; + tauriformis_A : A ; -- [XXXDX] :: having form of a bull; + taurinus_A : A ; -- [XXXDX] :: of or derived from a bull; made of ox-hide; + tauromachia_F_N : N ; -- [GXXEK] :: bullfighting, bullfight; + taurus_M_N : N ; -- [XAXAX] :: bull; + taxeus_A : A ; -- [XAXES] :: yew-, of yew trees; + taxillus_M_N : N ; -- [XXXEC] :: small die; + taxiraeda_F_N : N ; -- [GXXEK] :: taxicab; + taxiraedarius_M_N : N ; -- [GXXEK] :: taxi driver; + taxo_V : V ; -- [XXXDX] :: value, assess the worth of; access a crime; reckon the size/extent; fix sum of; + taxus_F_N : N ; -- [XXXDX] :: yew-tree; + teanus_A : A ; -- [GXXEK] :: of tea; + tebboleth_N : N ; -- [EEQFW] :: mispronunciation of scibboleth (grain ear) whereby Gileadites found Ephraimite; + tebeth_N : N ; -- [EXQEW] :: Tebet/Tebeth; tenth month of the Jewish ecclesiastical year; + techina_F_N : N ; -- [BXXFS] :: wile; trick; (archaic); + techna_F_N : N ; -- [XXXEC] :: cunning trick, artifice; + technica_F_N : N ; -- [GXXEK] :: technique; + technicus_A : A ; -- [GXXEK] :: technical; + technocrata_M_N : N ; -- [GSXEK] :: technocrat; + technocratia_F_N : N ; -- [GSXEK] :: technocracy; + technocraticus_A : A ; -- [GSXEK] :: technocratic; + technologia_F_N : N ; -- [GSXEK] :: technology; + technologicus_A : A ; -- [GSXEK] :: technological; + tector_M_N : N ; -- [XXXDS] :: plasterer; + tectoriolum_N_N : N ; -- [XXXEC] :: plaster/stucco work; + tectorium_N_N : N ; -- [XXXEC] :: plaster; + tectorius_A : A ; -- [XXXEC] :: used for covering, or for plastering; + tectum_N_N : N ; -- [XXXBO] :: roof; ceiling; house; + tectus_A : A ; -- [XXXCO] :: covered, roofed; hidden, secret; concealed/disguised; guarded/secretive; + tegimen_N_N : N ; -- [XXXBO] :: covering/cover/protection; clothing; body armor; skin/shell/husk (animal/fruit); + tegimentum_N_N : N ; -- [XXXCO] :: covering/cover/protection; clothing; body armor; skin/shell/husk (animal/fruit); + tegmen_N_N : N ; -- [XXXBO] :: covering/cover/protection; clothing; body armor; skin/shell/husk (animal/fruit); + tegmentum_N_N : N ; -- [XXXCO] :: covering/cover/protection; clothing; body armor; skin/shell/husk (animal/fruit); + tego_V2 : V2 ; -- [XXXAX] :: cover, protect; defend; hide; + tegula_F_N : N ; -- [XXXDX] :: roof-tile; + tegumen_N_N : N ; -- [XXXBO] :: covering/cover/protection; clothing; body armor; skin/shell/husk (animal/fruit); + tegumentum_N_N : N ; -- [GXXEK] :: |book-cover; (Cal); + tela_F_N : N ; -- [XXXDX] :: web; warp (threads that run lengthwise in the loom); + telecopia_F_N : N ; -- [HXXEK] :: fax; + telecopialis_A : A ; -- [HXXEK] :: faxed; + telecopiatrum_N_N : N ; -- [HTXEK] :: fax machine, fax; + telecustodia_F_N : N ; -- [HTXEK] :: telemonitoring; + teleferica_F_N : N ; -- [GTXEK] :: lift; elevator; + telegraphema_N_N : N ; -- [GXXEK] :: telegram; + telegraphia_F_N : N ; -- [GXXEK] :: telegraphy; + telegraphicus_A : A ; -- [GXXEK] :: telegraphic; + telegraphista_M_N : N ; -- [GXXEK] :: telegraphist; + telegrapho_V : V ; -- [GXXEK] :: telegraph; + telegraphum_N_N : N ; -- [GXXEK] :: telegraph; + telehorasis_F_N : N ; -- [HTXEK] :: television; + telepathia_F_N : N ; -- [GXXEK] :: telepathy; + telephonema_N_N : N ; -- [HXXEK] :: telephone conversation; + telephonicus_A : A ; -- [HXXEK] :: telephonic; + telephonista_M_N : N ; -- [HXXEK] :: telephone operator; + telephono_V : V ; -- [HXXEK] :: phone; + telephonum_N_N : N ; -- [HTXEK] :: telephone; + telescopium_N_N : N ; -- [GTXEK] :: telescope; + telespectator_M_N : N ; -- [HXXEK] :: viewer; + televisificus_A : A ; -- [HXXEK] :: of television; + televisio_F_N : N ; -- [HTXEK] :: television; + televisor_M_N : N ; -- [HXXEK] :: viewer; + televisorium_N_N : N ; -- [HTXEK] :: television; + telinum_N_N : N ; -- [XBXEO] :: fragrant ointment made from fenugreek; + telis_F_N : N ; -- [XAXNO] :: fenugreek (herb); + tellus_F_N : N ; -- [XXXAX] :: earth, ground; the earth; land, country; + telo_M_N : N ; -- [GLXET] :: customs officer; (Erasmus); + telonarius_M_N : N ; -- [GXXEK] :: customs-officer; + teloneum_N_N : N ; -- [XLXEO] :: customs post; customs house (L+S); toll booth; + telonialis_A : A ; -- [GXXEK] :: customs-related; + teloniarius_M_N : N ; -- [XLXIO] :: collector of customs; + telonicus_A : A ; -- [GLXET] :: of/belonging to customs officer; (Erasmus); + telonium_N_N : N ; -- [DLXES] :: customs post; customs house (L+S); toll booth; customs (Cal); + telum_N_N : N ; -- [XWXAX] :: dart, spear; weapon, javelin; bullet (gun); + temerarius_A : A ; -- [XXXDX] :: casual, rash, accidental; reckless; + temere_Adv : Adv ; -- [XXXBX] :: rashly, blindly; + temeritas_F_N : N ; -- [XXXDX] :: rashness; temerity; + temero_V : V ; -- [XXXDX] :: violate; defile, pollute; violate sexually; + temetum_N_N : N ; -- [XXXDX] :: strong wine; intoxicating liquor; + temno_V : V ; -- [XXXDX] :: scorn, despise; + temo_M_N : N ; -- [XXXDX] :: pole, beam; tongue of a wagon or chariot; + temperamentum_N_N : N ; -- [XXXEC] :: right proportion, middle way, mean, moderation; + temperans_A : A ; -- [XXXDX] :: restrained, self-controlled; + temperanter_Adv : Adv ; -- [XXXFO] :: temperately; with moderation/restraint; + temperantia_F_N : N ; -- [XXXDX] :: self control; moderation; + temperatio_F_N : N ; -- [FXXEK] :: regulation; + temperator_M_N : N ; -- [XXXFS] :: arranger; organizer; + temperatus_A : A ; -- [XXXDX] :: temperate, mild; + temperi_Adv : Adv ; -- [XXXCO] :: at right/better/best time, seasonably; + temperies_F_N : N ; -- [XXXDX] :: proper mixture, temper; + tempero_V : V ; -- [XXXAX] :: combine, blend, temper; make mild; refrain from; control oneself; + tempestas_F_N : N ; -- [XXXBX] :: season, time, weather; storm; + tempestivus_A : A ; -- [XXXDX] :: seasonable; opportune, timely; physically in one's prime, ripe (for marriage); + tempestuosus_A : A ; -- [FXXEM] :: stormy; + templum_N_N : N ; -- [XXXAX] :: temple, church; shrine; holy place; + temporalis_A : A ; -- [XXXCO] :: of time; temporary; w/time limit; due to lapse of time; of this/temporal world; + temporaneus_A : A ; -- [DXXES] :: opportune/timely, happening/coming at the right time; early (rains); + temporarius_A : A ; -- [XXXCO] :: suited to/built for the occasion; temporary, transitory; w/time limit (leg.); + tempori_Adv : Adv ; -- [XXXCO] :: at right/better/best time, seasonably; + temporivus_A : A ; -- [EXXFW] :: early; early in the season; + temptabundus_A : A ; -- [XXXEC] :: trying, attempting; + temptamen_N_N : N ; -- [XXXEC] :: trial, attempt, essay; + temptamentum_N_N : N ; -- [XXXEC] :: trial, attempt, essay; + temptatio_F_N : N ; -- [XXXDX] :: trial, temptation; + temptator_M_N : N ; -- [XXXEX] :: assailant (Collins); + tempto_V : V ; -- [XXXAX] :: test, try; urge; worry; bribe; + tempus_M_N : N ; -- [FXXFY] :: weather; + tempus_N_N : N ; -- [XXXAX] :: time, condition, right time; season, occasion; necessity; + temulentia_F_N : N ; -- [EXXFS] :: drunkenness; + temulentus_A : A ; -- [XXXDX] :: drunken; + tenacitas_F_N : N ; -- [XXXDX] :: grasp, quality of holding on to a thing; + tenaculum_N_N : N ; -- [XXXFO] :: instrument for gripping; (fingers); + tenax_A : A ; -- [XXXBO] :: |restraining; (fetters/embrace); steadfast, persistent; obstinate, stubborn; + tendicula_F_N : N ; -- [XXXEC] :: snare, trap; + tendo_V2 : V2 ; -- [XXXAO] :: |pitch tent, encamp; pull tight; draw (bow); press on, insist; exert oneself; + tenebra_F_N : N ; -- [XXXAX] :: darkness (pl.), obscurity; night; dark corner; ignorance; concealment; gloom; + tenebrasco_V : V ; -- [DEXDX] :: grow dark; become dark; + tenebresco_V : V ; -- [DEXDX] :: grow dark; become dark; + tenebricosus_A : A ; -- [XXXDX] :: dark; + tenebro_V : V ; -- [EXXES] :: darken, make dark; + tenebrosus_A : A ; -- [XXXEC] :: dark, gloomy; + tenellulus_A : A ; -- [XXXDX] :: tender, delicate; + tenellus_A : A ; -- [XXXDX] :: tender; + tenementum_N_N : N ; -- [FLXFJ] :: tenement; land held by tenant; + teneo_V : V ; -- [FXXCB] :: |represent; support; + tener_A : A ; -- [XXXAO] :: tender (age/food); soft/delicate/gentle; young/immature; weak/fragile/frail; + tenerasco_V : V ; -- [XXXEC] :: grow tender; + teneritas_F_N : N ; -- [XXXFS] :: tenderness; softness (Pliny); + teneritudo_F_N : N ; -- [XXXEO] :: tenderness (of age/disposition), youth; friableness, easy workability of soil; + tenesmos_M_N : N ; -- [XXXDX] :: constipation; a straining (from the Greek); + tenetura_F_N : N ; -- [FLXEM] :: holding, tenure, feudal holding; + teniludium_N_N : N ; -- [GXXEK] :: tennis; + teniludius_M_N : N ; -- [GDXEK] :: tennis player; + tenisia_F_N : N ; -- [GDXEK] :: tennis; + tenor_M_N : N ; -- [XXXDX] :: course, tenor; sustained and even course of movement; + tenorista_M_N : N ; -- [GDXEK] :: tenor; + tensa_F_N : N ; -- [XXXDX] :: wagon on which the images of the gods were carried to public spectacles; + tentabundus_A : A ; -- [XXXDX] :: testing every stop or move; + tentamen_N_N : N ; -- [XXXDX] :: attempt, effort; + tentamentum_N_N : N ; -- [XXXDX] :: trial, attempt, experiment; + tentatio_F_N : N ; -- [EEXDX] :: temptation; trial; + tentigo_F_N : N ; -- [XXXEC] :: lecherousness; + tento_V : V ; -- [XXXDX] :: handle, feel; attempt, try; prove; test; attack; brave; make an attempt; + tentorium_N_N : N ; -- [XXXDX] :: tent; + tenuiculus_A : A ; -- [XXXEC] :: very mean, slight; + tenuis_A : A ; -- [XXXBX] :: thin, fine; delicate; slight, slender; little, unimportant; weak, feeble; + tenuitas_F_N : N ; -- [XXXBO] :: thinness/fineness/leanness; poverty; frugality; simpleness (style); subtlety; + tenuiter_Adv : Adv ; -- [XXXCO] :: thinly/finely; delicately; subtly; meagerly/scantily/poorly; weakly/feebly; + tenuo_V : V ; -- [XXXDX] :: make thin; reduce, lessen; wear down; + tenura_F_N : N ; -- [FLXEM] :: holding, tenure, feudal holding; + tenus_Abl_Prep : Prep ; -- [XXXDX] :: as far as, to the extent of, up to, down to; + tepefacio_V2 : V2 ; -- [XXXDX] :: make warm, warm up; + tepefio_V : V ; -- [XXXDX] :: be warmed; be made warm, be warmed up; (tepefacio PASS); + tepeo_V : V ; -- [XXXBO] :: be warm/tepid/lukewarm; have body warmth; feel love warmth/glow; fall flat; + tepesco_V : V ; -- [XXXCO] :: grow warm/acquire some heat; become tepid/lukewarm; grow warm/cool (passion); + tepidarium_N_N : N ; -- [XXXDX] :: warm bathing room; tepidarium; + tepidus_A : A ; -- [XXXDX] :: warm, tepid; + tepor_M_N : N ; -- [XXXDX] :: warmth, mild heat; + ter_Adv : Adv ; -- [XXXDX] :: three times; on three occasions; + terebenthinus_A : A ; -- [XAXDO] :: of the turpentine/terebinth (Pistacia ~) tree/wood; [(resina) ~ => terpentine]; + terebenthos_F_N : N ; -- [XAXCO] :: turpentine/terebinth tree (Pistacia ~); its wood (valued for furniture/inlay); + terebenthus_F_N : N ; -- [XAXCO] :: turpentine/terebinth tree (Pistacia ~); its wood (valued for furniture/inlay); + terebinthina_F_N : N ; -- [GXXEK] :: turpentine; + terebinthinus_A : A ; -- [XAXDO] :: of the turpentine/terebinth (Pistacia ~) tree/wood; [(resina) ~ => turpentine]; + terebinthos_F_N : N ; -- [XAXCO] :: terpentine/terebinth tree (Pistacia ~); its wood (valued for furniture/inlay); + terebinthus_F_N : N ; -- [XAXCO] :: terpentine/terebinth tree (Pistacia ~); its wood (valued for furniture/inlay); + terebinthus_M_N : N ; -- [XXXDX] :: terebinth tree or its wood; + terebro_V : V ; -- [XXXDX] :: bore through, drill a hole in; + teredo_F_N : N ; -- [XAXEC] :: worm that gnaws wood; + teres_A : A ; -- [XXXBX] :: smooth; tapering; + terg_N_N : N ; -- [XXXBO] :: back (animal, meat); ridge, raised surface; far side; covering (animal/organ); + tergeminus_A : A ; -- [XXXDX] :: threefold, triple; + tergeo_V : V ; -- [XXXDX] :: rub, wipe; wipe off, wipe dry; clean, cleanse; + terginum_N_N : N ; -- [BXXES] :: rawhide (Plautus); + tergiversor_V : V ; -- [XXXDX] :: turn one's back on a task or challenge; hang back; + tergo_V2 : V2 ; -- [XXXDX] :: rub, wipe; wipe off, wipe dry; clean, cleanse (sometimes tergeo); + tergum_N_N : N ; -- [XXXAO] :: back, rear; reverse/far side; outer covering/surface; [terga vertere => flee]; + tergus_N_N : N ; -- [XXXEC] :: back; skin, hide, leather; + terma_F_N : N ; -- [FXXFZ] :: warm bath; (medieval Latin, modern Italian); + termen_N_N : N ; -- [XXXES] :: boundary, limit, end; terminus; + termes_M_N : N ; -- [XAXFS] :: woodworm; + terminalis_A : A ; -- [XXXEO] :: terminal; marking a boundary; of a boundary; final, making a conclusion; + terminatio_F_N : N ; -- [XXXDX] :: marking the boundaries of a territory; + termino_V : V ; -- [XXXDX] :: mark the boundaries of, form the boundaries of; restrict; conclude; + terminologia_F_N : N ; -- [GXXFE] :: terminology; + terminus_M_N : N ; -- [XXXBX] :: boundary, limit, end; terminus; + ternarius_A : A ; -- [XXXEO] :: ternary; containing/consisting of three of anything; of 3 feet; name of tunic; + ternarius_M_N : N ; -- [XXXFS] :: third of an as; + ternus_A : A ; -- [XXXDX] :: three each (pl.), three at a time; + tero_V2 : V2 ; -- [XXXBX] :: rub, wear away, wear out; tread; + terra_F_N : N ; -- [XXXAX] :: earth, land, ground; country, region; + terracuberum_N_N : N ; -- [EAXFP] :: country produce; unknown type of country produce; + terraemotus_M_N : N ; -- [EXXDW] :: earthquake; (Vulgate); + terratenus_Adv : Adv ; -- [FXXFM] :: on the ground; + terrenus_A : A ; -- [XXXDX] :: of earth, earthly; earthy; terrestrial; + terreo_V : V ; -- [XXXAX] :: frighten, scare, terrify, deter; + terrester_A : A ; -- [XXXEO] :: terrestrial/earthly; living/operating on land (not sea); on/in/of ground/earth; + terrestris_A : A ; -- [XXXBO] :: terrestrial/earthly; living/operating on land (not sea); on/in/of ground/earth; + terreus_A : A ; -- [XXXDX] :: one born of the earth; + terribilis_A : A ; -- [XXXBX] :: frightful, terrible; + terriculum_N_N : N ; -- [XXXFS] :: terror-cause; means to create terror; scarecrow; + terrifico_V : V ; -- [XXXDX] :: terrify; + terrificus_A : A ; -- [XXXDX] :: terrifying, awe inspiring; + terrigena_C_N : N ; -- [XYXCO] :: one born of the earth; (Giant/monster, from dragon's teeth, first men, snail); + terrigenus_A : A ; -- [XYXFS] :: born of earth; (Giants/monsters, from dragon's teeth, first men, snail); + terrigina_C_N : N ; -- [EYXCW] :: one born of the earth; (Giant/monster, from dragon's teeth, first men, snail); + terriginus_A : A ; -- [EYXFW] :: born of earth; (Giants/monsters, from dragon's teeth, first men, snail); + terriloquus_A : A ; -- [XXXDX] :: uttering frightening words; + territo_V : V ; -- [XXXDX] :: intimidate; keep on frightening; + territorium_N_N : N ; -- [XXXDX] :: territory; + terror_M_N : N ; -- [XXXAX] :: terror, panic, alarm, fear; + terrorismus_M_N : N ; -- [GXXEK] :: terrorism; + terrorista_M_N : N ; -- [GXXEK] :: terrorist; + terroristicus_A : A ; -- [GXXEK] :: terrorist; + tersus_A : A ; -- [XXXDX] :: neat, spruce; + tertiadecimanus_M_N : N ; -- [XWXEC] :: soldiers (pl.) of the thirteenth legion; + tertiana_F_N : N ; -- [XBXEC] :: tertian fever; (recurring every third day); + tertianus_A : A ; -- [XXXEC] :: of the third day; + tertianus_M_N : N ; -- [XWXCS] :: soldier of 3rd legion; + tertiarius_A : A ; -- [XXXEO] :: containing one-third; (alloy) 1 part of one metal 2 parts of another; + tertiatus_A : A ; -- [XXXFS] :: greater by a third; + tertio_Adv : Adv ; -- [XXXES] :: thirdly; + tertio_V : V ; -- [XXXFS] :: repeat three times; + tertium_Adv : Adv ; -- [XXXES] :: for the third time; + tescum_N_N : N ; -- [XXXEC] :: wastes (pl.), deserts; + tesella_F_N : N ; -- [XXXEC] :: small cube of stone; + tesquum_N_N : N ; -- [XXXEC] :: wastes (pl.), deserts; + tessella_F_N : N ; -- [XXXDX] :: small cube, die; tile, shingle (Latham); pane (Erasmus); + tessellatim_Adv : Adv ; -- [EXXFS] :: in checkered form; + tessellatus_A : A ; -- [XXXDX] :: mosaic; + tessera_F_N : N ; -- [XXXDX] :: die; square tablet marked with watchword, countersign; token, ticket; + tesserarius_M_N : N ; -- [XXXEC] :: officer who received the watchword; + testa_F_N : N ; -- [XXXDX] :: object made from burnt clay; earthenware jar; fragment of earthenware, shard; + testaceus_A : A ; -- [XXXCO] :: made of brick/tile; resembling brick (esp. color); having hard covering/shell; + testacius_A : A ; -- [XXXCO] :: made of brick/tile; resembling brick (esp. color); having hard covering/shell; + testamentarius_A : A ; -- [XXXEC] :: relating to a will; + testamentarius_M_N : N ; -- [XXXEC] :: forger of wills; + testamentum_N_N : N ; -- [XXXBX] :: will, testament; covenant; + testatio_F_N : N ; -- [XXXDX] :: action of testifying to a fact; + testator_M_N : N ; -- [XLXEO] :: testator; one who makes a will; witness, one who testifies (L+S); + testatrix_F_N : N ; -- [XLXFO] :: testatrix, she who makes a will; witness, she who testifies (L+S); + testatus_A : A ; -- [XXXDX] :: known on good evidence; + testeus_A : A ; -- [XXXFO] :: earthenware, made of earthenware; + testiculus_M_N : N ; -- [XXXDX] :: testicle; + testificor_V : V ; -- [XXXDX] :: assert solemnly, testify (to a fact); demonstrate; invoke as a witness; + testimonium_N_N : N ; -- [XXXDX] :: testimony; deposition; evidence; witness; (used of ark and tabernacle) (Plater); testis_F_N : N ; -- [XXXBX] :: witness; - testis_M_N : N ; - testor_V : V ; - testu_N_N : N ; - testudinatus_A : A ; - testudineatus_A : A ; - testudineus_A : A ; - testudo_F_N : N ; - testula_F_N : N ; - testum_N_N : N ; - tetanicus_M_N : N ; - tetanus_M_N : N ; - teter_A : A ; - teth_N : N ; - tetrachmum_N_N : N ; - tetrachordos_A : A ; - tetrachordos_N_N : N ; - tetracordos_A : A ; - tetracordos_N_N : N ; - tetradrachmum_N_N : N ; - tetragonum_N_N : N ; - tetragonus_A : A ; - tetragrammaton_N : N ; - tetrameter_M_N : N ; - tetrans_M_N : N ; - tetrao_M_N : N ; - tetrarches_M_N : N ; - tetrarchia_F_N : N ; - tetrardos_M_N : N ; - tetrardus_M_N : N ; - tetrastylon_N_N : N ; - tetrastylos_A : A ; - tetricus_A : A ; - texo_V2 : V2 ; - textilis_A : A ; - textor_M_N : N ; - textrinus_A : A ; - textrix_F_N : N ; - textum_N_N : N ; - textura_F_N : N ; - textus_M_N : N ; - thalamus_M_N : N ; - thalassicus_A : A ; - thalassinus_A : A ; - thallus_M_N : N ; - thapsia_F_N : N ; - thaspi_N_N : N ; - thau_N : N ; - thea_F_N : N ; - theatralis_A : A ; - theatricus_A : A ; - theatrum_N_N : N ; - theca_F_N : N ; - thema_N_N : N ; - thematicus_A : A ; - thensaurius_A : A ; - thensaurus_M_N : N ; - theocentricus_A : A ; - theocratia_F_N : N ; - theocraticus_A : A ; - theologia_F_N : N ; - theologicus_A : A ; - theologus_M_N : N ; - theolonium_N_N : N ; - theoria_F_N : N ; - theorices_F_N : N ; - theoricus_A : A ; - theosophia_F_N : N ; - therafin_N : N ; - therapeuta_M_N : N ; - therapia_F_N : N ; - theristrum_N_N : N ; - therma_F_N : N ; - thermocepicus_A : A ; - thermolagoena_F_N : N ; - thermometrum_N_N : N ; - thermopolium_N_N : N ; - thermopoto_V : V ; - thermostatum_N_N : N ; - therotrophium_N_N : N ; - thesaurius_A : A ; - thesaurizo_V2 : V2 ; - thesaurus_M_N : N ; - thesis_F_N : N ; - theurgus_M_N : N ; - thiasus_M_N : N ; - tholicus_A : A ; - tholus_M_N : N ; + testis_M_N : N ; -- [XBXCO] :: testicle (usu. pl.); + testor_V : V ; -- [XXXBX] :: give as evidence; bear witness; make a will; swear; testify; + testu_N_N : N ; -- [XXXDX] :: earthenware pot/vessel (esp. placed as lid over food and heaped with coals); + testudinatus_A : A ; -- [XXXEO] :: having 4 converging sides/no hole (roof); of space w/that roof; arched/vaulted; + testudineatus_A : A ; -- [XXXEO] :: having 4 converging sides/no hole (roof); of space w/that roof; arched/vaulted; + testudineus_A : A ; -- [XXXDX] :: made of tortoise-shell; + testudo_F_N : N ; -- [XXXBX] :: tortoise; testudo; armored movable shed; troops locking shields overhead; + testula_F_N : N ; -- [XXXEC] :: potsherd, fragment of broken earthenware pot; + testum_N_N : N ; -- [XXXDX] :: earthenware pot/vessel (esp. placed as lid over food and heaped with coals); + tetanicus_M_N : N ; -- [DBXNS] :: one with neck-cramp (Pliny); + tetanus_M_N : N ; -- [DBXNS] :: neck-cramp (Pliny); + teter_A : A ; -- [XXXDS] :: foul, offensive; ugly; disgraceful; (taeter); + teth_N : N ; -- [DEQEW] :: tet; (9th letter of Hebrew alphabet); (transliterate as T); + tetrachmum_N_N : N ; -- [XXXEC] :: Greek coin of four drachmae; + tetrachordos_A : A ; -- [XDXFO] :: four-stringed; having a scale of four notes; + tetrachordos_N_N : N ; -- [XDXFO] :: tetrachord; set of 4 strings (in instrument); scale of 4 notes; + tetracordos_A : A ; -- [XDXFO] :: four-stringed; having a scale of four notes; + tetracordos_N_N : N ; -- [XDXFO] :: tetrachord; set of 4 strings (in instrument); scale of 4 notes; + tetradrachmum_N_N : N ; -- [XXGDS] :: four drachmae; Greek coin of four drachmae; + tetragonum_N_N : N ; -- [DSXES] :: quadrangle; tetragon; + tetragonus_A : A ; -- [ESXFP] :: square; four-sided; quadrature (Latham); + tetragrammaton_N : N ; -- [FEXFM] :: tetragram, word of four letters; Tetragrammaton, YHWA, symbol/name/title of God; + tetrameter_M_N : N ; -- [XPXES] :: tetrameter; four metric feet; + tetrans_M_N : N ; -- [XTXFS] :: quarter; quadrant; place where two lines meet; + tetrao_M_N : N ; -- [XAXEO] :: wood/black grouse/capercailye/capercailzie; other game bird/heathcock/moorfowl; + tetrarches_M_N : N ; -- [XXXDX] :: tetrarch (minor king under Roman protection); + tetrarchia_F_N : N ; -- [XXXEC] :: tetrarchy; + tetrardos_M_N : N ; -- [EDXEZ] :: interval of four notes; fourth note in plain-song; + tetrardus_M_N : N ; -- [EDXEM] :: interval of four notes; fourth note in plain-song; + tetrastylon_N_N : N ; -- [XTXFS] :: tetrastyle; building with four columns; + tetrastylos_A : A ; -- [XTXFS] :: four-columned; + tetricus_A : A ; -- [XXXEC] :: harsh, gloomy, severe; + texo_V2 : V2 ; -- [XXXBX] :: weave; plait (together); construct with elaborate care; + textilis_A : A ; -- [XXXDX] :: woven; + textor_M_N : N ; -- [XXXDX] :: weaver; + textrinus_A : A ; -- [XXXDX] :: related to weaving; + textrix_F_N : N ; -- [XXXFS] :: female weaver; the Fates; + textum_N_N : N ; -- [XXXDX] :: woven fabric, cloth; framework, web; atomic structure; ratio atoms/void; + textura_F_N : N ; -- [XXXDX] :: weaving, texture; framework, structure; texture of atoms to void; + textus_M_N : N ; -- [XXXDX] :: woven fabric, cloth; framework, structure; web; method of plaiting/joining; + thalamus_M_N : N ; -- [XXXAX] :: bedroom; marriage; + thalassicus_A : A ; -- [BXXFS] :: sea-green; (Plautus}; (thalassinus); + thalassinus_A : A ; -- [XXXEC] :: sea-green; + thallus_M_N : N ; -- [XAXEO] :: young/green branch/bough/stalk; laurel or olive or myrtle (L+S) branch; + thapsia_F_N : N ; -- [DAXNS] :: poisonous shrub (Pliny); + thaspi_N_N : N ; -- [DAXNS] :: cress (Pliny); + thau_N : N ; -- [DEQEW] :: tav; (22nd letter of Hebrew alphabet); (transliterate as T); (mark of Cain); + thea_F_N : N ; -- [GXXEK] :: tea; + theatralis_A : A ; -- [XXXDX] :: theatrical, of the_stage; + theatricus_A : A ; -- [XDXFX] :: theatrical, theatric; of/belonging to theater; + theatrum_N_N : N ; -- [XDXBX] :: theater; + theca_F_N : N ; -- [GXXEK] :: |suitcase; + thema_N_N : N ; -- [XXXDX] :: theme; + thematicus_A : A ; -- [GXXEK] :: thematic; + thensaurius_A : A ; -- [XXXFO] :: concerned with treasure; + thensaurus_M_N : N ; -- [XXXBO] :: treasure chamber/vault/repository; treasure; hoard; collected precious objects; + theocentricus_A : A ; -- [GEXEK] :: theocentric; (theory; God is at centre of all); + theocratia_F_N : N ; -- [GEXEK] :: theocracy; + theocraticus_A : A ; -- [GEXEK] :: theocratic; + theologia_F_N : N ; -- [XXXEO] :: theology, science/system of teaching/writing about God/gods/divine things; + theologicus_A : A ; -- [DEXES] :: theological; of/concerning theology; + theologus_M_N : N ; -- [XXXEO] :: theologian, one who writes/discourses/teaches on God/gods; + theolonium_N_N : N ; -- [FLXEJ] :: toll; levy; + theoria_F_N : N ; -- [DSXFS] :: theory, philosophic speculation; + theorices_F_N : N ; -- [DSXFS] :: theory, philosophic speculation; + theoricus_A : A ; -- [FSXDF] :: theoretical; observing, considering, relating to observation/consideration; + theosophia_F_N : N ; -- [EEXEE] :: theosophy, wisdom concerning God; (doctrine of Boehme rejected by the Church); + therafin_N : N ; -- [EEQEW] :: teraphim/theraphim (pl. form); theraph (sg. form); idols/images; household gods; + therapeuta_M_N : N ; -- [GBXEK] :: therapist; + therapia_F_N : N ; -- [GBXEK] :: therapy; + theristrum_N_N : N ; -- [EXXES] :: garment, covering; summer garment; + therma_F_N : N ; -- [XXXDX] :: warm/hot baths (pl.); baths; + thermocepicus_A : A ; -- [GXXEK] :: warm-heating; + thermolagoena_F_N : N ; -- [GXXEK] :: thermos; + thermometrum_N_N : N ; -- [GXXEK] :: thermometer; + thermopolium_N_N : N ; -- [FXXEK] :: cafe; + thermopoto_V : V ; -- [XXXES] :: drink warm; refresh with warm drinks; + thermostatum_N_N : N ; -- [GTXEK] :: thermostat; + therotrophium_N_N : N ; -- [GXXEK] :: zoological garden; + thesaurius_A : A ; -- [XXXFO] :: concerned with treasure; + thesaurizo_V2 : V2 ; -- [EXXCS] :: gather up treasure; lay up treasure; hoard; + thesaurus_M_N : N ; -- [XXXBO] :: treasure chamber/vault/repository; treasure; hoard; collected precious objects; + thesis_F_N : N ; -- [XGXEC] :: proposition, thesis; + theurgus_M_N : N ; -- [XEXFS] :: magician; summoner; + thiasus_M_N : N ; -- [XXXDX] :: orgiastic Bacchic dance; + tholicus_A : A ; -- [GXXEK] :: at dome; + tholus_M_N : N ; -- [XXXDX] :: circular building with a domed roof, rotunda; thorax_1_N : N ; -- [XBXCO] :: breastplate, upper body armor/protection, cuirass; vest/waistcoat; chest/trunk; - thorax_2_N : N ; - thorax_M_N : N ; - thrombosis_F_N : N ; - thronus_M_N : N ; - thunnus_M_N : N ; - thus_N_N : N ; - thya_F_N : N ; - thyia_F_N : N ; - thyinus_A : A ; - thyisca_F_N : N ; - thymaterium_N_N : N ; - thymbra_F_N : N ; - thymelaea_F_N : N ; - thymelicus_A : A ; - thymelicus_M_N : N ; - thymiama_N_N : N ; - thymiamaterium_N_N : N ; - thymion_N_N : N ; - thymum_N_N : N ; - thymus_M_N : N ; - thynnarius_A : A ; - thynnus_M_N : N ; - thyrsus_M_N : N ; - tiara_F_N : N ; - tiaras_M_N : N ; - tibia_F_N : N ; - tibiale_N_N : N ; - tibicen_M_N : N ; - tibicina_F_N : N ; - tigillum_N_N : N ; - tignarius_A : A ; - tignum_N_N : N ; + thorax_2_N : N ; -- [XBXCO] :: breastplate, upper body armor/protection, cuirass; vest/waistcoat; chest/trunk; + thorax_M_N : N ; -- [XXXDX] :: breastplate, upper body armor/protection, cuirass; vest/waistcoat; chest/trunk; + thrombosis_F_N : N ; -- [GBXEK] :: thrombosis; + thronus_M_N : N ; -- [EEHEF] :: Lamentations (pl. of Jeremiah); (book of OT); dirge, song of mourning; elegy; + thunnus_M_N : N ; -- [XAXCO] :: tunny, tunny fish; + thus_N_N : N ; -- [XXXDX] :: frankincense; + thya_F_N : N ; -- [XAXES] :: citrus tree (Greek name for); + thyia_F_N : N ; -- [XAXES] :: citrus tree (Greek name for); + thyinus_A : A ; -- [EAXES] :: made from the citrus tree; + thyisca_F_N : N ; -- [EEXFP] :: censer; vessel for burning incense; + thymaterium_N_N : N ; -- [DXXES] :: censer; vessel for burning incense; + thymbra_F_N : N ; -- [XXXDX] :: aromatic plant, perhaps Cretan thyme; + thymelaea_F_N : N ; -- [XAXNO] :: shrub; (Daphne gnidium?); + thymelicus_A : A ; -- [XDXES] :: theatrical, of the theater; + thymelicus_M_N : N ; -- [XXXES] :: stage musician; + thymiama_N_N : N ; -- [XXXEO] :: incense; composition for fumigating (L+S); + thymiamaterium_N_N : N ; -- [EXXFS] :: vessel for incense; censer; + thymion_N_N : N ; -- [DBXNS] :: wart (Pliny); + thymum_N_N : N ; -- [XXXEX] :: thyme; + thymus_M_N : N ; -- [XBXNO] :: kind of wart; + thynnarius_A : A ; -- [XAXFO] :: of/pertaining to tunny fish; (as a commodity); + thynnus_M_N : N ; -- [XAXCO] :: tunny, tunny fish; + thyrsus_M_N : N ; -- [XXXDX] :: Bacchic wand tipped with a fir-cone/tuft of ivy/vine leaves; plant's main stem; + tiara_F_N : N ; -- [XXXDX] :: ornamented conical felt Asian head-dress; Phrygian bonnet w/cheek lappets; + tiaras_M_N : N ; -- [XXXDX] :: ornamented conical felt Asian head-dress; Phrygian bonnet w/cheek lappets; + tibia_F_N : N ; -- [XDXBO] :: flute, pipe; reed-pipe; (tube with holes for stops); B:tibia, shin-bone; + tibiale_N_N : N ; -- [GXXEK] :: stocking; + tibicen_M_N : N ; -- [XXXDX] :: piper, performer on tibia; flute player; prop/strut for shoring up building; + tibicina_F_N : N ; -- [XXXDX] :: female performer on the tibia; + tigillum_N_N : N ; -- [XXXDX] :: small beam; small bar of wood; + tignarius_A : A ; -- [XXXEC] :: of beams; + tignum_N_N : N ; -- [XXXDX] :: tree trunk, log, stick, post, beam; piece of timber; building materials; tigris_1_N : N ; -- [XXXDX] :: tiger; - tigris_2_N : N ; + tigris_2_N : N ; -- [XXXDX] :: tiger; tigris_F_N : N ; -- [XXXDX] :: tiger; - tigris_M_N : N ; - tilia_F_N : N ; - timefactus_A : A ; - timeo_V : V ; - timide_Adv : Adv ; - timidus_A : A ; - timor_M_N : N ; - timoratus_A : A ; - tina_F_N : N ; - tinctilis_A : A ; - tinctus_M_N : N ; - tinea_F_N : N ; - tineo_V : V ; - tingo_V2 : V2 ; - tinguo_V2 : V2 ; - tinnimentum_N_N : N ; - tinnio_V : V ; - tinnitus_M_N : N ; - tinnulus_A : A ; - tintinabulum_N_N : N ; - tintinnabulum_N_N : N ; - tintinno_V : V ; - tintino_V : V ; - tinus_M_N : N ; - tippula_F_N : N ; - tiro_M_N : N ; - tirocinium_N_N : N ; - tirunculus_M_N : N ; - tisana_F_N : N ; - titillatio_F_N : N ; - titillo_V : V ; - titio_F_N : N ; - titio_M_N : N ; - titio_V : V ; - titubatio_F_N : N ; - titubo_V : V ; - titulus_M_N : N ; - toculio_M_N : N ; - tofus_M_N : N ; - toga_F_N : N ; - togata_F_N : N ; - togatarius_M_N : N ; - togatulus_M_N : N ; - togatus_A : A ; - togula_F_N : N ; - tolenno_M_N : N ; - tolerabilis_A : A ; - tolerabiter_Adv : Adv ; - tolerabundus_A : A ; - tolerans_A : A ; - toleranter_Adv : Adv ; - tolerantia_F_N : N ; - toleratio_F_N : N ; - tolero_V : V ; - tolleno_M_N : N ; - tollo_V2 : V2 ; - tolutilis_A : A ; - tomaclum_N_N : N ; - tomaculum_N_N : N ; - tomata_F_N : N ; - tomentum_N_N : N ; - tomix_F_N : N ; - tomographia_F_N : N ; - tonale_F_N : N ; - tonat_V0 : V ; - tondeo_V : V ; - tonella_F_N : N ; - tonellum_N_N : N ; - tonellus_M_N : N ; - tonitrualis_A : A ; - tonitrus_M_N : N ; - tonitruum_N_N : N ; - tonium_N_N : N ; - tonna_F_N : N ; - tono_V : V ; - tonos_M_N : N ; - tonsa_F_N : N ; - tonsilis_A : A ; - tonsilla_F_N : N ; - tonsor_M_N : N ; - tonsorius_A : A ; - tonstricula_F_N : N ; - tonstrina_F_N : N ; - tonstrix_F_N : N ; - tonstrlna_F_N : N ; - tonsura_F_N : N ; - tonsus_A : A ; - tonsus_M_N : N ; - tonus_M_N : N ; - toparchia_F_N : N ; - toparcia_F_N : N ; - topazion_M_N : N ; - topazion_N_N : N ; - topazius_F_N : N ; - topazos_F_N : N ; - topazus_F_N : N ; - tophus_M_N : N ; - topiaria_M_N : N ; - topiarius_A : A ; - topice_F_N : N ; - toral_N_N : N ; - torcular_N_N : N ; - torcularium_N_N : N ; - torcularius_A : A ; - torcularius_M_N : N ; - torculum_N_N : N ; - torculus_A : A ; - toreuma_N_N : N ; - toreutice_F_N : N ; - tormen_N_N : N ; - tormento_V2 : V2 ; - tormentum_N_N : N ; - tormin_N_N : N ; - torminosus_A : A ; - torminum_N_N : N ; - tornatilis_A : A ; - tornator_M_N : N ; - tornatura_F_N : N ; - tornatus_A : A ; - torneamentum_N_N : N ; - torno_V2 : V2 ; - tornus_M_N : N ; - torosus_A : A ; - torpedo_F_N : N ; - torpeo_V : V ; - torpesco_V2 : V2 ; - torpidus_A : A ; - torpor_M_N : N ; - torquatus_A : A ; - torqueo_V : V ; - torques_M_N : N ; - torquis_F_N : N ; - torrens_A : A ; - torrens_M_N : N ; - torreo_V2 : V2 ; - torresco_V : V ; - torridus_A : A ; - torris_M_N : N ; - torrus_M_N : N ; - torsio_F_N : N ; - torta_F_N : N ; - tortilis_A : A ; - tortitudo_F_N : N ; - torto_V : V ; - tortor_M_N : N ; - tortula_F_N : N ; - tortuosus_A : A ; - tortura_F_N : N ; - torus_M_N : N ; - torvitas_F_N : N ; - torvus_A : A ; - tostrum_N_N : N ; - totalis_A : A ; - totalitarismus_M_N : N ; - totalitaristicus_A : A ; - totalitas_F_N : N ; - totaliter_Adv : Adv ; - totidem_A : A ; - totus_A : A ; - toxicologia_F_N : N ; - toxicologicus_A : A ; - toxicologus_M_N : N ; - toxicomania_F_N : N ; - toxicomaniacus_M_N : N ; - toxicum_N_N : N ; - toxicus_A : A ; - tr_N : N ; - traba_F_N : N ; - trabalis_A : A ; - trabea_F_N : N ; - trabeatus_A : A ; - trabes_F_N : N ; - trabs_F_N : N ; - trabucus_M_N : N ; - tractabilis_A : A ; - tractalis_A : A ; - tractatio_F_N : N ; - tractatus_M_N : N ; - tractim_Adv : Adv ; - tracto_V : V ; - tractogalatus_A : A ; - tractus_M_N : N ; - traditio_F_N : N ; - traditionalis_A : A ; - traditionalismus_M_N : N ; - traditionalista_M_N : N ; - trado_V2 : V2 ; - traduco_V2 : V2 ; - traductio_F_N : N ; - traductor_M_N : N ; - tradux_M_N : N ; - trafero_V2 : V2 ; - tragelaphos_M_N : N ; - tragelaphus_M_N : N ; - tragicocomoedia_F_N : N ; - tragicomicus_A : A ; - tragicus_A : A ; - tragoedia_F_N : N ; - tragoedus_M_N : N ; - tragula_F_N : N ; - tragum_N_N : N ; - traha_F_N : N ; - trahea_F_N : N ; - traho_V2 : V2 ; - traicio_V2 : V2 ; - traiectoria_F_N : N ; - trajecticius_A : A ; - trajectio_F_N : N ; - trajectitius_A : A ; - trajectus_A : A ; - trajicio_V2 : V2 ; - tralaticius_A : A ; - tralatio_F_N : N ; - trama_F_N : N ; - tramen_N_N : N ; - trames_M_N : N ; - trano_V : V ; - tranquillitas_F_N : N ; - tranquillo_V : V ; - tranquillum_N_N : N ; - tranquillus_A : A ; - trans_Acc_Prep : Prep ; - transabeo_1_V2 : V2 ; - transabeo_2_V2 : V2 ; - transactio_F_N : N ; - transactor_M_N : N ; - transadigo_V2 : V2 ; - transcendens_A : A ; - transcendentalis_A : A ; - transcendo_V2 : V2 ; - transcido_V2 : V2 ; - transcribo_V2 : V2 ; - transcurro_V2 : V2 ; - transcursus_M_N : N ; - transdo_V2 : V2 ; - transduco_V2 : V2 ; - transenna_F_N : N ; - transeo_1_V2 : V2 ; - transeo_2_V2 : V2 ; - transeunter_Adv : Adv ; - transfero_V2 : V2 ; - transfigo_V2 : V2 ; - transfiguro_V2 : V2 ; - transfluo_V : V ; - transfodio_V2 : V2 ; - transformatio_F_N : N ; - transformis_A : A ; - transformo_V : V ; - transforo_V2 : V2 ; - transfretanus_A : A ; - transfreto_V : V ; - transfuga_F_N : N ; - transfugio_V2 : V2 ; - transfugium_N_N : N ; - 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_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_V2 : V2 ; - translaticius_A : A ; - translatio_F_N : N ; - translativus_A : A ; - translato_V2 : V2 ; - translator_M_N : N ; - translucentia_F_N : N ; - transluceo_V : V ; - translucidus_A : A ; - transmarinus_A : A ; - transmaritanus_A : A ; - transmeo_V : V ; - transmigratio_F_N : N ; - transmigro_V : V ; - transmissio_F_N : N ; - transmissus_A : A ; - transmitto_V2 : V2 ; - transmodulatrum_N_N : N ; - transmontanus_M_N : N ; - transmoveo_V : V ; - transmutabilis_A : A ; - transmutabilitas_F_N : N ; - transmuto_V : V ; - transnato_V : V ; - transnavigo_V : V ; - transno_V : V ; - transnomino_V2 : V2 ; - transoceanicus_A : A ; - transpadanus_A : A ; - transparentia_F_N : N ; - transpectus_M_N : N ; - transpicio_V2 : V2 ; - transpiratio_F_N : N ; - transpito_V : V ; - transplanto_V2 : V2 ; - transplantus_M_N : N ; - transporto_V : V ; - transrhenanus_A : A ; - 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_V2 : V2 ; - transvectio_F_N : N ; - transveho_V2 : V2 ; - transvenio_V : V ; - transverbero_V : V ; - transversalis_A : A ; - transversarium_N_N : N ; - transversarius_A : A ; - transverse_Adv : Adv ; - transverso_V : V ; - transversus_A : A ; - transverto_V2 : V2 ; - transvolito_V : V ; - transvolo_V : V ; - transvoro_V2 : V2 ; - transvorsus_A : A ; - tranveho_V2 : V2 ; - trapetum_N_N : N ; - trapetus_M_N : N ; - traumaticus_A : A ; - travectio_F_N : N ; - traversarium_N_N : N ; - traversarius_A : A ; - traversus_A : A ; - trebuchettum_N_N : N ; - trechedipnum_N_N : N ; - tremebundus_A : A ; - tremefacio_V2 : V2 ; - tremendus_A : A ; - tremesco_V : V ; - tremis_M_N : N ; - tremisco_V : V ; - tremo_V2 : V2 ; - tremor_M_N : N ; - tremulus_A : A ; - trepidans_A : A ; - trepidanter_Adv : Adv ; - trepidatio_F_N : N ; - trepide_Adv : Adv ; - trepiditas_F_N : N ; - trepido_V : V ; - trepidus_A : A ; - trestorno_V : V ; - tresvir_M_N : N ; - treutino_V : V ; - triangularis_A : A ; - triangulum_N_N : N ; - triangulus_A : A ; - triarius_M_N : N ; - trias_F_N : N ; - tribas_F_N : N ; - tribolus_M_N : N ; - tribrachus_M_N : N ; - tribrachysos_M_N : N ; - tribrevis_M_N : N ; - tribualis_A : A ; - tribuarius_A : A ; - tribulatio_F_N : N ; - tribulis_M_N : N ; - tribulo_V2 : V2 ; - tribulus_M_N : N ; - tribunal_N_N : N ; - tribunatus_M_N : N ; - tribunicius_A : A ; - tribunicius_M_N : N ; - tribunitius_A : A ; - tribunitius_M_N : N ; - tribunus_M_N : N ; - tribuo_V2 : V2 ; - tribus_F_N : N ; - tributarius_A : A ; - tributim_Adv : Adv ; - tributio_F_N : N ; - tributor_M_N : N ; - tributoria_F_N : N ; - tributorium_N_N : N ; - tributorius_A : A ; - tributum_N_N : N ; - tributus_A : A ; - trica_F_N : N ; - tricenarius_A : A ; - tricennium_N_N : N ; - trichila_F_N : N ; - triclinarium_N_N : N ; - tricliniaris_A : A ; - triclinium_N_N : N ; - trico_M_N : N ; - trico_V : V ; - tricor_V : V ; - tricorpor_A : A ; - tricuspis_A : A ; - tridens_A : A ; - tridens_M_N : N ; - tridentifer_M_N : N ; - tridentiger_M_N : N ; - triduana_F_N : N ; - triduanus_A : A ; - triduum_N_N : N ; - trienne_N_N : N ; - triennis_A : A ; - triennium_N_N : N ; - triens_M_N : N ; - trientabulum_N_N : N ; - trientius_A : A ; - trierarchus_M_N : N ; - trietericum_N_N : N ; - trietericus_A : A ; - trieteris_F_N : N ; - trifariam_Adv : Adv ; - trifarie_Adv : Adv ; - trifarius_A : A ; - trifaucis_A : A ; - trifaux_A : A ; - trifidus_A : A ; - triformis_A : A ; - trifur_M_N : N ; - trifurcifer_M_N : N ; - triga_F_N : N ; - trigeminus_A : A ; - trigeminus_M_N : N ; - triglyphus_M_N : N ; - trigon_M_N : N ; - trigonium_N_N : N ; - trigonometria_F_N : N ; - trigonum_N_N : N ; - trigonus_A : A ; - trigonus_M_N : N ; - trilibris_A : A ; - trilinguis_A : A ; - trilix_A : A ; - trilustralis_A : A ; - trimenstre_N_N : N ; - trimenstris_A : A ; - trimestre_N_N : N ; - trimestris_A : A ; - trimeter_M_N : N ; - trimetr_M_N : N ; - trimetrus_A : A ; - trimodia_F_N : N ; - trimodus_A : A ; - trimus_A : A ; - trinarius_A : A ; - trinepos_M_N : N ; - trineptis_F_N : N ; - trinitarius_A : A ; - trinoctium_N_N : N ; - trinodis_A : A ; - trinus_A : A ; - triobolus_M_N : N ; - tripartitus_A : A ; - tripectorus_A : A ; - tripedalis_A : A ; - tripedaneus_A : A ; - tripertito_Adv : Adv ; - tripes_A : A ; - triplaris_A : A ; - triplex_A : A ; - triplicitas_F_N : N ; - tripliciter_Adv : Adv ; - triplico_V : V ; - tripodo_V : V ; - tripudio_V : V ; - tripudium_N_N : N ; + tigris_M_N : N ; -- [XAXCT] :: tiger; + tilia_F_N : N ; -- [XXXDX] :: lime-tree; + timefactus_A : A ; -- [XXXEC] :: frightened, alarmed; + timeo_V : V ; -- [XXXAX] :: fear, dread, be afraid (ne + SUB = lest; ut or ne non + SUB = that ... not); + timide_Adv : Adv ; -- [XXXCO] :: timidly, fearfully, apprehensively, nervously; cautiously, with hesitation; + timidus_A : A ; -- [XXXBO] :: timid; cowardly; fearful, apprehensive; without courage; afraid to; + timor_M_N : N ; -- [XXXAX] :: fear; dread; + timoratus_A : A ; -- [EEXDX] :: God-fearing, devout, reverent; + tina_F_N : N ; -- [FXXEM] :: cask; tub; + tinctilis_A : A ; -- [XXXDX] :: obtained by dipping; + tinctus_M_N : N ; -- [XXXDX] :: dyeing; dipping; + tinea_F_N : N ; -- [XXXDX] :: moth; + tineo_V : V ; -- [EXXFS] :: be infested with moths; (or maggots/larvae of moths which do the eating/damage); + tingo_V2 : V2 ; -- [XXXAO] :: wet/moisten/dip/soak; color/dye/tinge/tint, stain (w/blood); imbue; impregnate; + tinguo_V2 : V2 ; -- [XXXAO] :: wet/moisten/dip/soak; color/dye/tinge/tint, stain (w/blood); imbue; impregnate; + tinnimentum_N_N : N ; -- [BXXES] :: tingling sound (Plautus); + tinnio_V : V ; -- [XXXCO] :: ring/clang/jangle (metal); ring (ears); utter a shrill/metallic sound; + tinnitus_M_N : N ; -- [XXXDX] :: ringing, clanging, jangling; + tinnulus_A : A ; -- [XXXDX] :: emitting a ringing or jangling sound; + tintinabulum_N_N : N ; -- [XXXCO] :: bell; door bell, signal bell (L+S); cow bell; + tintinnabulum_N_N : N ; -- [XXXCO] :: bell; door bell, signal bell (L+S); cow bell; small bell; + tintinno_V : V ; -- [XXXDX] :: make a ringing or jangling sound; + tintino_V : V ; -- [XXXDX] :: make a ringing or jangling sound; + tinus_M_N : N ; -- [XXXDX] :: laurustinus; (bay/laurel); evergreen winter-flowering shrub (Viburnum ~ OED); + tippula_F_N : N ; -- [XAXES] :: water-spider; + tiro_M_N : N ; -- [XXXDX] :: recruit; beginner, novice; + tirocinium_N_N : N ; -- [XXXDX] :: military inexperience; recruits, raw forces; first campaign; youth, pupilage; + tirunculus_M_N : N ; -- [XXXEC] :: young beginner; + tisana_F_N : N ; -- [XXXCO] :: barley with the outer covering removed, pearl barley; barley water (drink); + titillatio_F_N : N ; -- [XXXDS] :: tickling; + titillo_V : V ; -- [XXXDX] :: tickle, titillate, provoke; stimulate sensually; + titio_F_N : N ; -- [XXXDO] :: firebrand, piece of burning wood; + titio_M_N : N ; -- [XXXDO] :: firebrand, piece of burning wood; + titio_V : V ; -- [XAXFO] :: tweet; (song of the sparrow); + titubatio_F_N : N ; -- [XXXDS] :: staggering; + titubo_V : V ; -- [XXXDX] :: stagger, totter; falter; + titulus_M_N : N ; -- [XXXAO] :: |distinction, claim to fame; honor; reputation; inscription; monument (Plater); + toculio_M_N : N ; -- [XLXEC] :: usurer; + tofus_M_N : N ; -- [XXXDX] :: tufa, porous stone; volcanic tuff/tufa; + toga_F_N : N ; -- [XXXBX] :: toga; (outer garment of Roman citizen); + togata_F_N : N ; -- [XDXFS] :: Roman drama; drama on Roman theme; + togatarius_M_N : N ; -- [XXXDX] :: actor in fabulae togatae (native Roman comedy); + togatulus_M_N : N ; -- [XXXEC] :: little client; + togatus_A : A ; -- [XXXDX] :: wearing a toga; civilian; of Roman status; [fabulae ~ => native Roman comedy]; + togula_F_N : N ; -- [XXXEC] :: little toga; + tolenno_M_N : N ; -- [FXXEK] :: water pump; + tolerabilis_A : A ; -- [XXXBO] :: bearable, tolerable, patient; able to be withstood; passable; tolerant, hardy; + tolerabiter_Adv : Adv ; -- [XXXCO] :: bearably, tolerably, patiently; passably, acceptably; + tolerabundus_A : A ; -- [FXXDV] :: tolerant, patient; + tolerans_A : A ; -- [XXXDO] :: tolerant; able to endure; + toleranter_Adv : Adv ; -- [XXXEO] :: tolerantly, patiently, with fortitude; so as to withstand harm; + tolerantia_F_N : N ; -- [XXXCO] :: patience, fortitude,tolerance; ability to bear/endure pain/adversity; + toleratio_F_N : N ; -- [XXXES] :: enduring; + tolero_V : V ; -- [XXXBX] :: bear, endure, tolerate; + tolleno_M_N : N ; -- [XYXEC] :: machine for raising weights, a crane; + tollo_V2 : V2 ; -- [XXXAX] :: lift, raise; destroy; remove, steal; take/lift up/away; + tolutilis_A : A ; -- [FXXEK] :: trotting; + tomaclum_N_N : N ; -- [XXXEC] :: kind of sausage; + tomaculum_N_N : N ; -- [XXXEC] :: kind of sausage; + tomata_F_N : N ; -- [GXXEK] :: tomato; + tomentum_N_N : N ; -- [XXXEC] :: stuffing of a pillow, mattress, etc.; + tomix_F_N : N ; -- [XXXES] :: cord, string; line, thread; (also thomix); + tomographia_F_N : N ; -- [GXXEK] :: tomography; + tonale_F_N : N ; -- [FEXFM] :: Tonal; book of musical rules; + tonat_V0 : V ; -- [XXXDX] :: it thunders; + tondeo_V : V ; -- [XXXDX] :: cut, shear, clip; + tonella_F_N : N ; -- [FXBFM] :: cask, tun; (for wine); + tonellum_N_N : N ; -- [FXBEM] :: cask, tun; (for wine); + tonellus_M_N : N ; -- [FXBBM] :: cask, tun; (for wine); the Tun (London prison); bird-trap; + tonitrualis_A : A ; -- [XEXES] :: thunderous (used of Jupiter); + tonitrus_M_N : N ; -- [XXXDX] :: thunder; + tonitruum_N_N : N ; -- [XXXDX] :: thunder; + tonium_N_N : N ; -- [FDXES] :: tone; + tonna_F_N : N ; -- [GXXEK] :: ton; + tono_V : V ; -- [XXXBX] :: thunder; speak thunderous tones/thunderously; make/resound like thunder; + tonos_M_N : N ; -- [XXXDO] :: |tone/degree of light/shade; strain, tension; peal of thunder (from tono?); + tonsa_F_N : N ; -- [XXXDX] :: oar; + tonsilis_A : A ; -- [XXXES] :: shearable; cuttable; that may be shorn/cut/clipped; shorn/clipped/cut/lopped; + tonsilla_F_N : N ; -- [XBXEC] :: tonsils (pl.); + tonsor_M_N : N ; -- [XXXDX] :: barber; + tonsorius_A : A ; -- [XXXDX] :: of or pertaining to a barber, barber's; + tonstricula_F_N : N ; -- [XXXEC] :: little female barber; + tonstrina_F_N : N ; -- [XXXEC] :: barber's shop; + tonstrix_F_N : N ; -- [XXXEC] :: female barber; + tonstrlna_F_N : N ; -- [XXXDX] :: barber shop; + tonsura_F_N : N ; -- [XXXDX] :: clipping, shearing; pruning; tonsure; haircut; + tonsus_A : A ; -- [XXXES] :: shorn, clipped, cut, lopped; + tonsus_M_N : N ; -- [BDXFS] :: coiffure; way of dressing hair (Plautus); + tonus_M_N : N ; -- [XXXCO] :: |tone/degree of light/shade; strain, tension; peal of thunder (from tono?); + toparchia_F_N : N ; -- [XLHEO] :: district, territory, unit of local government in Hellenistic world; + toparcia_F_N : N ; -- [ELHEW] :: district, territory, unit of local government in Hellenistic world; + topazion_M_N : N ; -- [XXXES] :: kind of chrysolite; (Pliny chrysolite=our topaz and v.v.); green jasper (L+S); + topazion_N_N : N ; -- [XXXES] :: kind of chrysolite; (Pliny chrysolite=our topaz and v.v.); green jasper (L+S); + topazius_F_N : N ; -- [XXXES] :: kind of chrysolite; (Pliny chrysolite=our topaz and v.v.); green jasper (L+S); + topazos_F_N : N ; -- [XXXES] :: kind of chrysolite; (Pliny chrysolite=our topaz and v.v.); green jasper (L+S); + topazus_F_N : N ; -- [XXXEO] :: kind of chrysolite; (Pliny chrysolite=our topaz and v.v.); green jasper (L+S); + tophus_M_N : N ; -- [XXXDX] :: tufa, pourous rock; volcanic tuff/tufa; + topiaria_M_N : N ; -- [XAXEC] :: landscape gardener; + topiarius_A : A ; -- [XXXEC] :: of ornamental gardening; + topice_F_N : N ; -- [XGXES] :: art of finding topics; + toral_N_N : N ; -- [XXXEC] :: valance of a couch; + torcular_N_N : N ; -- [XAXCO] :: wine/oil press; pressing room, room housing a wine/oil press; oil cellar (L+S); + torcularium_N_N : N ; -- [XAXDO] :: wine/oil press; pressing room, room housing a wine/oil press; oil cellar (L+S); + torcularius_A : A ; -- [XAXEO] :: of/connected with/belonging to a wine/oil press; + torcularius_M_N : N ; -- [XAXFO] :: worker in a (wine/oil) pressing room; + torculum_N_N : N ; -- [XAXCO] :: wine/oil press; + torculus_A : A ; -- [XAXEO] :: of/connected with/belonging to a wine/oil press; + toreuma_N_N : N ; -- [XXXEC] :: carved or embossed work; + toreutice_F_N : N ; -- [DAXNS] :: art of carving (Pliny); + tormen_N_N : N ; -- [FXXEN] :: torture; + tormento_V2 : V2 ; -- [EXXDP] :: torture; torment; inflict acute physical/mental pain; + tormentum_N_N : N ; -- [XWXBX] :: |rack; any torture device; tension, pressure; torture, torment; + tormin_N_N : N ; -- [XBXEZ] :: colic (Collins); + torminosus_A : A ; -- [XXXEC] :: suffering from colic; + torminum_N_N : N ; -- [XBXEC] :: colic, gripes; + tornatilis_A : A ; -- [DXXES] :: rounded; turned on a lathe; finished, beautifully wrought; + tornator_M_N : N ; -- [DXXFS] :: turner; lathe operator; one who fashions in wood; + tornatura_F_N : N ; -- [EXXFS] :: turning; work of a turner/lathe operator/one who fashions in wood; + tornatus_A : A ; -- [XXXFO] :: rounded; turned on a lathe; + torneamentum_N_N : N ; -- [GXXEK] :: tournament; + torno_V2 : V2 ; -- [XXXCO] :: turn, make round by turning on a lathe; round off (L+S); turn, fashion, smooth; + tornus_M_N : N ; -- [XXXCO] :: lathe; turner's lathe; + torosus_A : A ; -- [XXXDX] :: muscular, brawny; + torpedo_F_N : N ; -- [XBXDO] :: lethargy, inertness, sluggishness; fish (stinging/numbing); electric ray; + torpeo_V : V ; -- [XXXDX] :: be numb or lethargic; be struck motionless from fear; + torpesco_V2 : V2 ; -- [XXXDX] :: grow numb, become slothful; + torpidus_A : A ; -- [XXXDX] :: numbed, paralyzed; + torpor_M_N : N ; -- [XXXDX] :: numbness, torpor, paralysis; + torquatus_A : A ; -- [XXXDX] :: wearing a collar or necklace; + torqueo_V : V ; -- [XXXAX] :: turn, twist; hurl; torture; torment; bend, distort; spin, whirl; wind (round); + torques_M_N : N ; -- [XXXCO] :: collar/necklace of twisted metal (often military); wreath (L+S); ring; chaplet; + torquis_F_N : N ; -- [XXXDO] :: collar/necklace of twisted metal (often military); wreath (L+S); ring; chaplet; + torrens_A : A ; -- [XXXDX] :: burning hot; rushing; torrential; + torrens_M_N : N ; -- [XXXDX] :: torrent, rushing stream; + torreo_V2 : V2 ; -- [XXXBO] :: parch, roast, scorch, bake, burn; dry up; begin to burn; harden by charring; + torresco_V : V ; -- [XXXFO] :: be scorched; be roasted; + torridus_A : A ; -- [XXXDX] :: parched, dried up; shriveled, desiccated; + torris_M_N : N ; -- [XXXDX] :: firebrand; + torrus_M_N : N ; -- [XXXFS] :: fire-brand; + torsio_F_N : N ; -- [XXXFS] :: wringing; twisting; + torta_F_N : N ; -- [GXXEK] :: pie; + tortilis_A : A ; -- [XXXDX] :: twisted, coiled; + tortitudo_F_N : N ; -- [FXXEM] :: crookedness; injustice; wickedness, insincerity; + torto_V : V ; -- [XXXBS] :: torture; torment; + tortor_M_N : N ; -- [XXXDX] :: torturer; + tortula_F_N : N ; -- [EXXFS] :: small twist; + tortuosus_A : A ; -- [XXXDX] :: twisting, tortuous; + tortura_F_N : N ; -- [GXXEK] :: torture; + torus_M_N : N ; -- [XXXDX] :: swelling, protuberance; mussel, brawn; bed, couch, stuffed bolster, cushion; + torvitas_F_N : N ; -- [XXXES] :: wildness; savageness; severity; + torvus_A : A ; -- [XXXBO] :: pitiless/grim; fierce/stern/harsh/savage/dreadful; staring/piercing/wild (eye); + tostrum_N_N : N ; -- [GTXEK] :: toaster; + totalis_A : A ; -- [FXXEM] :: total; entire; + totalitarismus_M_N : N ; -- [GXXEK] :: totalitarianism; + totalitaristicus_A : A ; -- [GXXEK] :: totalitarian; + totalitas_F_N : N ; -- [FSXCF] :: totality, wholeness; + totaliter_Adv : Adv ; -- [FXXDF] :: altogether, totally, wholly, completely, entirely; + totidem_A : A ; -- [XXXBO] :: as many; just so/as many; the equivalent number of, same (as specified before); + totus_A : A ; -- [XXXDX] :: whole, all, entire, total, complete; every part; all together/at once; + toxicologia_F_N : N ; -- [GSXEK] :: toxicology; + toxicologicus_A : A ; -- [GSXEK] :: toxicological; + toxicologus_M_N : N ; -- [GSXEK] :: toxicologist; + toxicomania_F_N : N ; -- [GXXEK] :: addiction; + toxicomaniacus_M_N : N ; -- [GXXEK] :: drug addict; + toxicum_N_N : N ; -- [XXXDX] :: poison; + toxicus_A : A ; -- [GXXEK] :: toxic; poisonous; + tr_N : N ; -- [XLXDX] :: tribune; abb. tr.; [tr. pl./tr. mil. => of the people/of the soldiers]; + traba_F_N : N ; -- [FXXEM] :: wood-beam, timber; tree-trunk; ship; table; + trabalis_A : A ; -- [XXXDX] :: of or used for wooden beams; + trabea_F_N : N ; -- [XXXDX] :: white state mantle/horiz scarlet stripes; short purple dress equites uniform; + trabeatus_A : A ; -- [XXXEC] :: clad in the trabea; (white robe with scarlet stripes and purple seam for king); + trabes_F_N : N ; -- [XXXDX] :: tree-trunk, beam, timber; ship; + trabs_F_N : N ; -- [XXXBX] :: tree trunk; log, club, spear; beam, timber, rafter; ship, vessel; roof, house; + trabucus_M_N : N ; -- [GWXEK] :: trebuchet (machine of war); + tractabilis_A : A ; -- [XXXDX] :: manageable; tractable; easy to deal with; + tractalis_A : A ; -- [GXXEK] :: pullable; draggable; + tractatio_F_N : N ; -- [XXXDX] :: management; treatment; discussion; + tractatus_M_N : N ; -- [GXXEK] :: |treaty; convention; + tractim_Adv : Adv ; -- [XXXDX] :: in a long-drawn-out manner; + tracto_V : V ; -- [XXXBX] :: draw, haul, pull, drag about; handle, manage, treat, discuss; + tractogalatus_A : A ; -- [XXXFS] :: made of/cooked with pastry and milk; + tractus_M_N : N ; -- [XXXDX] :: dragging or pulling along; drawing out; extent; tract, region; lengthening; + traditio_F_N : N ; -- [XXXDX] :: giving up, delivering up, surrender; record, account; tradition; + traditionalis_A : A ; -- [GXXEK] :: traditional; + traditionalismus_M_N : N ; -- [GXXEK] :: traditionalism; + traditionalista_M_N : N ; -- [GXXEK] :: traditionalist; + trado_V2 : V2 ; -- [XXXAX] :: hand over, surrender; deliver; bequeath; relate; + traduco_V2 : V2 ; -- [XXXAO] :: |lead across; exhibit/display/carry past in parade/procession; pass/get through; + traductio_F_N : N ; -- [XXXCS] :: conducting/leading around (triumph), transfer; public exposure/disgrace/reproof; + traductor_M_N : N ; -- [XXXES] :: transferor; conveyer; + tradux_M_N : N ; -- [XAXEC] :: vine-layer; + trafero_V2 : V2 ; -- [XXXAO] :: |copy out (writing); translate (language); postpone, transfer date; transform; + tragelaphos_M_N : N ; -- [XAXNO] :: kind of wild goat or antelope; stag with beard like goat (horse-stag) (L+S); + tragelaphus_M_N : N ; -- [XAXES] :: kind of wild goat or antelope; stag with beard like goat (horse-stag) (L+S); + tragicocomoedia_F_N : N ; -- [BDXES] :: tragi-comedy (Plautus); + tragicomicus_A : A ; -- [GXXEK] :: tragi-comic; + tragicus_A : A ; -- [XXXDX] :: tragic; suitable to tragedy, a, i, m tragic poet, tragic actor; + tragoedia_F_N : N ; -- [XXXDX] :: tragedy; + tragoedus_M_N : N ; -- [XXXDX] :: tragic actor; + tragula_F_N : N ; -- [XXXDX] :: dart, javelin; + tragum_N_N : N ; -- [XXXFS] :: porridge; + traha_F_N : N ; -- [GXXEK] :: sleigh; + trahea_F_N : N ; -- [XXXDX] :: drag used as a threshing implement; + traho_V2 : V2 ; -- [XXXAX] :: draw, drag, haul; derive, get; + traicio_V2 : V2 ; -- [XXXAX] :: transfer; transport; pierce, transfix; + traiectoria_F_N : N ; -- [GSXEK] :: trajectory (geometry); + trajecticius_A : A ; -- [XXXDO] :: lent for transportation of goods (money); transported/carried over sea (L+S); + trajectio_F_N : N ; -- [XXXDS] :: crossing; passage; transferring; exaggeration; G:transposition; + trajectitius_A : A ; -- [DXXDS] :: lent for transportation of goods (money); transported/carried over sea (L+S); + trajectus_A : A ; -- [XXXDX] :: crossing, passage; + trajicio_V2 : V2 ; -- [XXXDX] :: transfer; transport; pierce, transfix; + tralaticius_A : A ; -- [XXXCO] :: traditional, handed down; customary; ordinary/common/usual; transferred (word); + tralatio_F_N : N ; -- [XLXBO] :: transportation/transference; transfer to another; change of venue; translation; + trama_F_N : N ; -- [XXXCS] :: warp (weaving); woof, weft, web filling; thin/lank figure; trifles; bagatelles; + tramen_N_N : N ; -- [GXXEK] :: train; + trames_M_N : N ; -- [XXXCO] :: footpath, track; (stream) bed; course; (family) branch; narrow strip (land); + trano_V : V ; -- [XXXDX] :: swim across; + tranquillitas_F_N : N ; -- [XXXDX] :: stillness; tranquility; + tranquillo_V : V ; -- [XXXDX] :: calm, quiet; + tranquillum_N_N : N ; -- [XXXDX] :: calm weather; calm state of affairs; + tranquillus_A : A ; -- [XXXDX] :: quiet, calm; + trans_Acc_Prep : Prep ; -- [XXXDX] :: across, over; beyond; on the other side; (only local relations); + transabeo_1_V : V ; -- [XXXDX] :: go away beyond; + transabeo_2_V : V ; -- [XXXDX] :: go away beyond; + transactio_F_N : N ; -- [XXXCO] :: transaction; deal, business arrangement, negotiated settlement; + transactor_M_N : N ; -- [XXXES] :: manager; + transadigo_V2 : V2 ; -- [XXXDX] :: pierce through, thrust through; + transcendens_A : A ; -- [GXXEK] :: transcendent; + transcendentalis_A : A ; -- [GXXEK] :: transcendental; + transcendo_V2 : V2 ; -- [XXXBO] :: climb/step/go across/over; board; transgress; exceed; pass on, make transition; + transcido_V2 : V2 ; -- [DXXDS] :: cut through; flog hard; + transcribo_V2 : V2 ; -- [XXXBO] :: copy (from book/tablet to another); transcribe; transfer (enrollment); forge; + transcurro_V2 : V2 ; -- [XXXDX] :: run across; run or hasten through; + transcursus_M_N : N ; -- [XXXDX] :: rapid movement across a space; + transdo_V2 : V2 ; -- [DXXDS] :: hand over, surrender; deliver; L:bequeath; G:relate; (=traho); + transduco_V2 : V2 ; -- [XXXAO] :: |lead across; exhibit/display/carry past in parade/procession; pass/get through; + transenna_F_N : N ; -- [XXXEC] :: lattice-work, grating; + transeo_1_V : V ; -- [XXXAX] :: go over, cross; + transeo_2_V : V ; -- [XXXAX] :: go over, cross; + transeunter_Adv : Adv ; -- [EXXES] :: in passing; cursorily; + transfero_V2 : V2 ; -- [XXXAO] :: |copy out (writing); translate (language); postpone, transfer date; transform; + transfigo_V2 : V2 ; -- [XXXDX] :: transfix, pierce through; + transfiguro_V2 : V2 ; -- [XXXCO] :: transform, change form/appearance; + transfluo_V : V ; -- [DXXFS] :: flow through; + transfodio_V2 : V2 ; -- [XXXDX] :: transfix, pierce, impale; + transformatio_F_N : N ; -- [DEXFS] :: transformation; change of shape; + transformis_A : A ; -- [XXXDX] :: that undergoes transformation; + transformo_V : V ; -- [XXXDX] :: change in shape, transform; + transforo_V2 : V2 ; -- [DXXDS] :: pierce through; + transfretanus_A : A ; -- [DXXFS] :: transmarine, that is beyond the sea; + transfreto_V : V ; -- [DXXCS] :: cross a strait; pass over the sea; put/ferry across; pass through; + transfuga_F_N : N ; -- [XXXDX] :: deserter; + transfugio_V2 : V2 ; -- [XXXDX] :: go over to the enemy, desert; + transfugium_N_N : N ; -- [XXXDX] :: desertion; + transfundo_V2 : V2 ; -- [XXXES] :: decant; pour from one vessel to another; + transfusio_F_N : N ; -- [GXXEK] :: transfusion; + transgradior_V : V ; -- [XXXCO] :: cross, go/move/travel over/across; go to other side; change allegiance/policy; + transgredior_V : V ; -- [XXXAO] :: cross, go/move/travel over/across; go to other side; change allegiance/policy; + transgressio_F_N : N ; -- [EEXCE] :: |transgression; violation; + transgressor_M_N : N ; -- [EEXCE] :: transgressor; + transgressus_M_N : N ; -- [XXXDX] :: crossing to the other side; + transicio_V2 : V2 ; -- [XXXDX] :: transfer; transport; pierce, transfix; + transigo_V2 : V2 ; -- [XXXDX] :: stab, pierce; finish, settle, complete, accomplish; perform; bargain, transact; + transilio_V2 : V2 ; -- [XXXDX] :: jump across, leap over; + transitio_F_N : N ; -- [XXXDX] :: passing over, passage; desertion; infection, contagion; + transitorie_Adv : Adv ; -- [DXXES] :: cursorily; in passing; by the way; + transitorium_N_N : N ; -- [XXXEO] :: passage-way; + transitorius_A : A ; -- [XXXEO] :: affording passage; having a passage-way; transitory, passing (L+S); cursory; + transitus_M_N : N ; -- [XXXDX] :: passage; crossing; + transjicio_V2 : V2 ; -- [XXXDX] :: transfer; transport; pierce, transfix; + translaticius_A : A ; -- [XXXCO] :: traditional, handed down; customary; ordinary/common/usual; transferred (word); + translatio_F_N : N ; -- [XLXBO] :: transportation/transference; transfer to another; change of venue; translation; + translativus_A : A ; -- [XXXEC] :: transferable; + translato_V2 : V2 ; -- [FXXFM] :: offer; transfer; + translator_M_N : N ; -- [XXXES] :: transferor; translator (late Latin); + translucentia_F_N : N ; -- [GXXEK] :: transparency; + transluceo_V : V ; -- [XXXDX] :: shine through or across; be transparent; + translucidus_A : A ; -- [XXXDX] :: transparent; + transmarinus_A : A ; -- [XXXDX] :: across the sea, overseas; beyond the sea; + transmaritanus_A : A ; -- [FXXEM] :: beyond the seas; overseas; + transmeo_V : V ; -- [XXXES] :: go across, cross, travel across; pass over; + transmigratio_F_N : N ; -- [DXXDS] :: removal to another country; emigration; removal/carrying away; captive (Plater); + transmigro_V : V ; -- [XXXDX] :: change one's residence from one place to another; transport; spread (disease); + transmissio_F_N : N ; -- [XXXDS] :: sending-across; passage; L:tax payment (sent or returned); + transmissus_A : A ; -- [XXXDX] :: crossing, passage; + transmitto_V2 : V2 ; -- [XXXBX] :: send across; go across; transmit; + transmodulatrum_N_N : N ; -- [HTXEK] :: modem; + transmontanus_M_N : N ; -- [XXXEC] :: dwellers (pl.) beyond the mountains; + transmoveo_V : V ; -- [XXXES] :: remove; transfer; + transmutabilis_A : A ; -- [FXXEZ] :: cross-changeable; transmutable; + transmutabilitas_F_N : N ; -- [FXXEZ] :: cross-changeability; transmutability; + transmuto_V : V ; -- [XXXDX] :: change about; + transnato_V : V ; -- [XXXES] :: swim across; + transnavigo_V : V ; -- [XXXES] :: sail over; + transno_V : V ; -- [XXXDX] :: swim across, sail across; swim to the other side; + transnomino_V2 : V2 ; -- [DXXDS] :: rename; + transoceanicus_A : A ; -- [GXXEK] :: transatlantic; + transpadanus_A : A ; -- [XXXEC] :: beyond (i.e. north of) the Po, transpadane; + transparentia_F_N : N ; -- [GXXEK] :: transparency; + transpectus_M_N : N ; -- [XXXEC] :: looking through, seeing through; + transpicio_V2 : V2 ; -- [XXXEC] :: look through, see through; + transpiratio_F_N : N ; -- [GXXEK] :: perspiration; + transpito_V : V ; -- [XXXES] :: pass through; + transplanto_V2 : V2 ; -- [DXXES] :: transplant; remove; + transplantus_M_N : N ; -- [DEXFS] :: deified human being; + transporto_V : V ; -- [XXXDX] :: carry across, transport; + transrhenanus_A : A ; -- [XXXEC] :: beyond the Rhine; + transscendo_V2 : V2 ; -- [XXXBO] :: climb/step/go across/over; board; transgress; exceed; pass on, make transition; + transscribo_V2 : V2 ; -- [XXXBO] :: copy (from book/tablet to another); transcribe; transfer (enrollment); forge; + transspicio_V2 : V2 ; -- [XXXEC] :: look through, see through; + transtiberinus_A : A ; -- [XXXEC] :: beyond the Tiber; + transtineo_V : V ; -- [BXXFS] :: go through (Plautus); + transtrum_N_N : N ; -- [XXXDX] :: crossbeam; rower's seat; + transubstantiatio_F_N : N ; -- [FXXEM] :: trans-substantiation; + transulto_V : V ; -- [XXXDX] :: spring across; + transuo_V2 : V2 ; -- [XXXDX] :: pierce through; + transvectio_F_N : N ; -- [XXXES] :: crossing; + transveho_V2 : V2 ; -- [XXXDX] :: transport, lead across; elapse; carry; + transvenio_V : V ; -- [EXXDS] :: come; come from another place or person; + transverbero_V : V ; -- [XXXDX] :: transfix; + transversalis_A : A ; -- [FXXFJ] :: transverse; + transversarium_N_N : N ; -- [XXXEO] :: cross beam, cross piece (of timber); + transversarius_A : A ; -- [XXXEO] :: transverse; lying across/from side to side; + transverse_Adv : Adv ; -- [XXXFO] :: crosswise; transversely; sideways; askance; + transverso_V : V ; -- [XXXDX] :: pass across one from side to side; + transversus_A : A ; -- [XXXDX] :: lying across/from side to side; flanking/oblique; moving across/at right angle; + transverto_V2 : V2 ; -- [XXXDX] :: divert from one place/purpose to another; extend across; + transvolito_V : V ; -- [XXXDX] :: fly over or through; + transvolo_V : V ; -- [XXXDX] :: fly across; + transvoro_V2 : V2 ; -- [DXXDS] :: gulp down; + transvorsus_A : A ; -- [XXXDX] :: lying across/from side to side; flanking/oblique; moving across/at right angle; + tranveho_V2 : V2 ; -- [XXXDX] :: transport, lead across; elapse; carry; + trapetum_N_N : N ; -- [XAXDS] :: oil-press; olive-mill; + trapetus_M_N : N ; -- [XAXDS] :: oil-press (pl.); olive-mill; + traumaticus_A : A ; -- [GXXEK] :: traumatic; + travectio_F_N : N ; -- [XXXES] :: crossing; + traversarium_N_N : N ; -- [XXXEO] :: cross beam, cross piece (of timber); + traversarius_A : A ; -- [XXXEO] :: transverse; lying across/from side to side; + traversus_A : A ; -- [XXXEC] :: transverse, oblique, athwart; + trebuchettum_N_N : N ; -- [FWXEM] :: trebuchet; siege engine; + trechedipnum_N_N : N ; -- [XXXEC] :: light garment worn at table; + tremebundus_A : A ; -- [XXXDX] :: trembling; + tremefacio_V2 : V2 ; -- [XXXDX] :: cause to tremble; + tremendus_A : A ; -- [XXXDX] :: terrible, awe inspiring; + tremesco_V : V ; -- [XXXDX] :: tremble, quiver, vibrate; tremble at; + tremis_M_N : N ; -- [ETXFS] :: coin; third part of gold aureus; + tremisco_V : V ; -- [XXXES] :: tremble, quiver, vibrate; tremble at; (tremescere); + tremo_V2 : V2 ; -- [XXXBX] :: tremble, shake, shudder at; + tremor_M_N : N ; -- [XXXDX] :: trembling, shuddering; quivering, quaking; + tremulus_A : A ; -- [XXXBX] :: trembling; + trepidans_A : A ; -- [XXXEW] :: trembling, anxious; panicking; + trepidanter_Adv : Adv ; -- [XXXEO] :: tremblingly, anxiously; in a frightened/alarmed manner; + trepidatio_F_N : N ; -- [XXXDX] :: fear/alarm; nervousness/trepidation; physical trembling/twitching; oscillation; + trepide_Adv : Adv ; -- [XXXCO] :: with trepidation/anxiety, in confusion/alarm/panic/fright; busily, in a bustle; + trepiditas_F_N : N ; -- [FXXEM] :: nervousness; + trepido_V : V ; -- [XXXBX] :: tremble, be afraid, waver; + trepidus_A : A ; -- [XXXBX] :: nervous, jumpy, agitated; perilous, alarming, frightened; boiling, foaming; + trestorno_V : V ; -- [FWXFM] :: put to flight; + tresvir_M_N : N ; -- [XXXDX] :: board of three (pl.); + treutino_V : V ; -- [FXXEM] :: balance, weigh; + triangularis_A : A ; -- [XXXFS] :: triangular; + triangulum_N_N : N ; -- [XSXEC] :: triangle; + triangulus_A : A ; -- [XXXEC] :: three-cornered, triangular; + triarius_M_N : N ; -- [XXXDX] :: third line (pl.) of the early Roman army; the reserves; + trias_F_N : N ; -- [XSXES] :: number three; a triad; + tribas_F_N : N ; -- [XXXEO] :: lesbian, tribade; (woman engaged in sexual activity w/women); masculine lesbian; + tribolus_M_N : N ; -- [XAXDO] :: spiny plant; caltrop (Tribulus terrestris); (Fagonia cretica, Trapa nayans); + tribrachus_M_N : N ; -- [XPXEO] :: tribrach; metric foot of three short syllables (UUU); + tribrachysos_M_N : N ; -- [XPXEO] :: tribrach; metric foot of three short syllables (UUU); + tribrevis_M_N : N ; -- [XPXES] :: tribrach; metric foot of three short syllables (UUU); + tribualis_A : A ; -- [GXXEK] :: tribal; + tribuarius_A : A ; -- [XXXEC] :: relating to a tribe; + tribulatio_F_N : N ; -- [DEXES] :: tribulation; distress, trouble; + tribulis_M_N : N ; -- [XXXDX] :: fellow tribesman; + tribulo_V2 : V2 ; -- [XXXEO] :: press, squeeze; exact (dues/payment); trouble; + tribulus_M_N : N ; -- [XAXDO] :: spiny plant; caltrop (Tribulus terrestris); (Fagonia cretica, Trapa nayans); + tribunal_N_N : N ; -- [XXXDX] :: raised platform; tribunal; judgement seat; + tribunatus_M_N : N ; -- [XXXDX] :: tribuneship, office of tribune; + tribunicius_A : A ; -- [XXXDX] :: of/belonging to tribune; + tribunicius_M_N : N ; -- [XXXDX] :: ex-tribune; + tribunitius_A : A ; -- [XXXDX] :: of/belonging to tribune; + tribunitius_M_N : N ; -- [XXXDX] :: ex-tribune; + tribunus_M_N : N ; -- [XLXBX] :: tribune; [~ plebis => tribune of the people; ~ mllitum => soldier's tribune]; + tribuo_V2 : V2 ; -- [XXXBX] :: divide, assign; present; grant, allot, bestow, attribute; + tribus_F_N : N ; -- [XXXDX] :: third part of the people; tribe, hereditary division (Ramnes, Tities, Luceres); + tributarius_A : A ; -- [XXXEC] :: relating to tribute; + tributim_Adv : Adv ; -- [XXXDX] :: by tribes; + tributio_F_N : N ; -- [XXXFS] :: distribution; L:paying of tribute (late Latin); + tributor_M_N : N ; -- [DXXFD] :: giver; imparter; + tributoria_F_N : N ; -- [XLXEO] :: suit (actio) to extend liability of slave/son to owner/father; + tributorium_N_N : N ; -- [XXXEX] :: tax office; + tributorius_A : A ; -- [XLXEO] :: of suit to extend liability of son/slave to owner/father; of payment (L+S); + tributum_N_N : N ; -- [XXXDX] :: tax, tribute; + tributus_A : A ; -- [XXXDX] :: organized by tribes; + trica_F_N : N ; -- [XXXEC] :: trifles (pl.), nonsense; vexation, troubles; + tricenarius_A : A ; -- [XXXES] :: of thirty (30); contains thirty; + tricennium_N_N : N ; -- [ELXFS] :: 30-year space; time of 30 years; + trichila_F_N : N ; -- [XXXDX] :: arbor, bower; + triclinarium_N_N : N ; -- [XXXFS] :: dining room; table covering; + tricliniaris_A : A ; -- [XXXFS] :: of an eating couch; + triclinium_N_N : N ; -- [XXXBX] :: dining couch; dining room; + trico_M_N : N ; -- [BXXES] :: mischief-maker (Plautus); + trico_V : V ; -- [DXXES] :: behave in evasive manner; trifle/delay/dally; cause trouble; pull/play tricks; + tricor_V : V ; -- [XXXEO] :: behave in evasive manner; trifle/delay/dally; cause trouble; pull/play tricks; + tricorpor_A : A ; -- [XXXDX] :: having three bodies; + tricuspis_A : A ; -- [XXXDX] :: having three prongs; + tridens_A : A ; -- [XXXDX] :: with three teeth; + tridens_M_N : N ; -- [XXXDX] :: trident; + tridentifer_M_N : N ; -- [XXXDX] :: one carrying a trident; + tridentiger_M_N : N ; -- [XXXDX] :: one carrying a trident; + triduana_F_N : N ; -- [FEXEM] :: three days' fast; + triduanus_A : A ; -- [FXXEM] :: three days' duration, lasting three days; + triduum_N_N : N ; -- [XXXDX] :: three days; + trienne_N_N : N ; -- [XXXDX] :: triennial festival (pl.); + triennis_A : A ; -- [EXXFS] :: three year old; + triennium_N_N : N ; -- [XXXDX] :: three years; + triens_M_N : N ; -- [XXXDX] :: third part, third; third part of an as; [usurae t~ => 4% interest]; + trientabulum_N_N : N ; -- [XXXEC] :: equivalent in land for the third part of a sum of money + trientius_A : A ; -- [XXXES] :: sold-for-a-third; + trierarchus_M_N : N ; -- [XXXDX] :: captain of a trireme; + trietericum_N_N : N ; -- [XXXDX] :: triennial (alternate year) rites (pl.) of Bacchus held at Thebes; + trietericus_A : A ; -- [XXXDX] :: of 3 years (biennial!, count both extremes), of alternate years; triennial; + trieteris_F_N : N ; -- [XXXEC] :: space of three years or a triennial festival; + trifariam_Adv : Adv ; -- [XXXDX] :: in three ways, into three parts; + trifarie_Adv : Adv ; -- [FXXFM] :: in three parts; + trifarius_A : A ; -- [EXXFS] :: three-fold; + trifaucis_A : A ; -- [XXXDX] :: having three throats; + trifaux_A : A ; -- [XPXES] :: triple-throated; + trifidus_A : A ; -- [XXXDX] :: divided to form three prongs; + triformis_A : A ; -- [XXXDX] :: of three forms, triple, threefold; + trifur_M_N : N ; -- [BXXFS] :: triple-thief; persistent thief (Plautus); + trifurcifer_M_N : N ; -- [BXXFS] :: persistent thief (Plautus); + triga_F_N : N ; -- [XXXFS] :: three-horse team; G:set of three; + trigeminus_A : A ; -- [XXXDX] :: triplet; + trigeminus_M_N : N ; -- [XXXDX] :: triplets (pl.); + triglyphus_M_N : N ; -- [XTXFO] :: triglyph; block w/3 vertical groves repeated at intervals in Doric frieze; + trigon_M_N : N ; -- [XXXEO] :: ball game with three players in triangle (in baths); ball for playing trigon; + trigonium_N_N : N ; -- [XXXFO] :: triangle; three sided figure; triangular pill/tablet; 3 player ball game; + trigonometria_F_N : N ; -- [GSXEK] :: trigonometry; + trigonum_N_N : N ; -- [XXXCO] :: triangle; three sided figure; triangular pill/tablet; 3 player ball game; + trigonus_A : A ; -- [XSXEO] :: triangular; having three angles/corners; + trigonus_M_N : N ; -- [DBXFS] :: soothing pill; (triangular); + trilibris_A : A ; -- [XXXDX] :: of three pounds weight; + trilinguis_A : A ; -- [XXXDX] :: that has three tongues; + trilix_A : A ; -- [XXXDX] :: having triple thread; + trilustralis_A : A ; -- [FXXEM] :: fifteen-year-lasting; lasting for fifteen years; + trimenstre_N_N : N ; -- [XAXDO] :: crops ripening in 3 months; spring-sown crops; + trimenstris_A : A ; -- [XXXCO] :: three months old; lasting/acting for 3 months; ripening in 3 months (crops); + trimestre_N_N : N ; -- [XAXDO] :: crops ripening in 3 months; spring-sown crops; + trimestris_A : A ; -- [XXXCO] :: three months old; lasting/acting for 3 months; ripening in 3 months (crops); + trimeter_M_N : N ; -- [XPXES] :: trimeter; three metric feet; + trimetr_M_N : N ; -- [XPXEC] :: trimeter; + trimetrus_A : A ; -- [XPXEC] :: containing three double feet; + trimodia_F_N : N ; -- [XXXFS] :: three-peck measure; vessel of three modii capacity; + trimodus_A : A ; -- [FXXEM] :: triple; trimodal (Nelson); + trimus_A : A ; -- [XXXDX] :: three, three years old; + trinarius_A : A ; -- [FXXFM] :: ternary; + trinepos_M_N : N ; -- [XXXEO] :: great-great-great grandson; + trineptis_F_N : N ; -- [XXXEO] :: great-great-great granddaughter; + trinitarius_A : A ; -- [FXXFM] :: ternary; threefold, triple; consisting of three; arranged in threes; in 3 parts; + trinoctium_N_N : N ; -- [XXXFS] :: three-night interval; + trinodis_A : A ; -- [XXXDX] :: having three knots or bosses; + trinus_A : A ; -- [FXXDM] :: triple; + triobolus_M_N : N ; -- [XXXFS] :: half-drachma; a trifle; + tripartitus_A : A ; -- [FXXES] :: three-fold; divisible into three; + tripectorus_A : A ; -- [XXXEC] :: having three breasts; + tripedalis_A : A ; -- [XXXFS] :: three-foot-; of three feet length; + tripedaneus_A : A ; -- [XXXFS] :: three-foot-; of three feet length; + tripertito_Adv : Adv ; -- [XXXDX] :: in three parts; + tripes_A : A ; -- [XXXDX] :: three-legged; + triplaris_A : A ; -- [EXXES] :: triple; threefold; + triplex_A : A ; -- [XXXDX] :: threefold, triple; three; + triplicitas_F_N : N ; -- [FXXFM] :: three-foldness; + tripliciter_Adv : Adv ; -- [XXXFO] :: triply, in three ways; + triplico_V : V ; -- [FXXEM] :: triplicate/do three copies; L:surrejoin/plaintiff reply to defendant rejoinder; + tripodo_V : V ; -- [XXXDX] :: dance; perform ritual dance (in triple time in honor of Mars); + tripudio_V : V ; -- [XXXDX] :: dance; perform ritual dance (in triple time in honor of Mars); + tripudium_N_N : N ; -- [XXXDX] :: solemn ritual dance (to Mars); favorable omen when sacred chickens ate greedily; tripus_1_N : N ; -- [XEXCO] :: three-legged stand, tripod; the oracle at Delphi; oracles in general; - tripus_2_N : N ; - tripus_M_N : N ; - triquetrus_A : A ; - triremis_A : A ; - triremis_F_N : N ; - trirota_F_N : N ; - triscurrium_N_N : N ; - triste_Adv : Adv ; - tristegum_N_N : N ; - tristiculus_A : A ; - tristifico_V : V ; - tristificus_A : A ; - tristimonia_F_N : N ; - tristis_A : A ; - tristitia_F_N : N ; - tristities_F_N : N ; - tristitudo_F_N : N ; - tristor_V : V ; - trisulcus_A : A ; - tritavia_F_N : N ; - trite_F_N : N ; - triticeus_A : A ; - triticius_A : A ; - triticum_N_N : N ; - tritura_F_N : N ; - trituro_V2 : V2 ; - tritus_A : A ; - triumfator_M_N : N ; - triumphal_N_N : N ; - triumphalis_A : A ; - triumphe_Interj : Interj ; - triumpho_V : V ; - triumphus_M_N : N ; - triumvir_M_N : N ; - triumviralis_A : A ; - triumviratus_M_N : N ; - trivenefica_F_N : N ; - trivium_N_N : N ; - trivius_A : A ; - trochaeus_M_N : N ; - trochilea_F_N : N ; - trochlea_F_N : N ; - trochlia_F_N : N ; - trochus_M_N : N ; - trocilea_F_N : N ; - troclea_F_N : N ; - troclia_F_N : N ; - tromocrates_M_N : N ; - tromocratia_F_N : N ; - tropaeum_N_N : N ; - trophaeum_N_N : N ; - tropologia_F_N : N ; - tropologice_Adv : Adv ; - tropologicus_A : A ; - tropos_M_N : N ; - tropus_M_N : N ; - trucidatio_F_N : N ; - trucido_V : V ; - trucilo_V : V ; - truculenter_Adv : Adv ; - truculentus_A : A ; - trudis_F_N : N ; - trudo_V2 : V2 ; - trulla_F_N : N ; - trulleum_N_N : N ; - trunco_V : V ; - truncus_M_N : N ; - trusito_V : V ; - truso_V : V ; - trutina_F_N : N ; - trutino_V : V ; - trux_A : A ; - trychnos_M_N : N ; - trygonus_M_N : N ; - tuba_F_N : N ; + tripus_2_N : N ; -- [XEXCO] :: three-legged stand, tripod; the oracle at Delphi; oracles in general; + tripus_M_N : N ; -- [XEXCO] :: three-legged stand, tripod; the oracle at Delphi; oracles in general; + triquetrus_A : A ; -- [XXXDX] :: three cornered, triangular; + triremis_A : A ; -- [XXXDX] :: having three oars to each bench/banks of oars; + triremis_F_N : N ; -- [XXXDX] :: trireme, vessel having three oars to each bench/banks of oars; + trirota_F_N : N ; -- [GXXEK] :: tricycle; + triscurrium_N_N : N ; -- [XXXES] :: gross clowning; + triste_Adv : Adv ; -- [XXXDX] :: sadly, sorrowfully; harshly, severely; + tristegum_N_N : N ; -- [EXXDS] :: third story/floor (pl.); + tristiculus_A : A ; -- [XXXEC] :: somewhat sorrowful; + tristifico_V : V ; -- [FXXEM] :: make sad, cause sadness, sadden; + tristificus_A : A ; -- [XXXES] :: sad-making; ominous; + tristimonia_F_N : N ; -- [XXXFS] :: sadness; + tristis_A : A ; -- [XXXAX] :: sad, sorrowful; gloomy; + tristitia_F_N : N ; -- [XXXBX] :: sadness; + tristities_F_N : N ; -- [XXXES] :: sadness; sorrow; + tristitudo_F_N : N ; -- [EXXFS] :: sadness; sorrow; grief; + tristor_V : V ; -- [XXXFS] :: be sad/grieved/downcast/dejected; + trisulcus_A : A ; -- [XXXDX] :: divided into three forks or prongs; + tritavia_F_N : N ; -- [ELXES] :: remote ancestor's mother; mother of atavus or atavia; + trite_F_N : N ; -- [XDXFO] :: 3rd string; 3rd tone-in-scale; third string of tetrachord from the nete/highest; + triticeus_A : A ; -- [XXXDX] :: of wheat; + triticius_A : A ; -- [XAXCO] :: of wheat; + triticum_N_N : N ; -- [XXXDX] :: wheat; + tritura_F_N : N ; -- [XXXDX] :: rubbing, friction; threshing; + trituro_V2 : V2 ; -- [EAXDS] :: thresh; + tritus_A : A ; -- [XXXDX] :: well-trodden, well-worn, worn; common; familiar; + triumfator_M_N : N ; -- [XWXIS] :: one who triumphs; + triumphal_N_N : N ; -- [XXXDX] :: insignia (pl.) of a triumph; + triumphalis_A : A ; -- [XXXDX] :: of celebration of a triumph; having triumphal status; triumphant; + triumphe_Interj : Interj ; -- [XXXFS] :: triumphant!; + triumpho_V : V ; -- [XXXBX] :: triumph over; celebrate a triumph; conquer completely, triumph; + triumphus_M_N : N ; -- [XXXAX] :: triumph, victory parade; + triumvir_M_N : N ; -- [XXXDX] :: triumvir, commissioner; (pl.) triumviri, a three-man board; + triumviralis_A : A ; -- [XLXES] :: trimviral; of the triumvirs; + triumviratus_M_N : N ; -- [XXXDX] :: triumvirate; + trivenefica_F_N : N ; -- [BXXFO] :: treble-dyed witch; old witch (L+S; poison-mixer (Plautus); + trivium_N_N : N ; -- [FGXCB] :: trivium, first group of seven liberal arts (grammar/rhetoric/logic); + trivius_A : A ; -- [XXXDX] :: of/belonging to crossroads temple, esp. sacred to Diana/Hecate; + trochaeus_M_N : N ; -- [XPXDO] :: trochee/choree, metrical foot consisting of a long and a short syllable (_U); + trochilea_F_N : N ; -- [XXXDO] :: pulley, block and tackle; set of blocks and pulleys for raising weights; + trochlea_F_N : N ; -- [XXXDO] :: pulley, block and tackle; set of blocks and pulleys for raising weights; + trochlia_F_N : N ; -- [XXXDO] :: pulley, block and tackle; set of blocks and pulleys for raising weights; + trochus_M_N : N ; -- [XXXDX] :: metal hoop (used for games or exercise); + trocilea_F_N : N ; -- [XXXDO] :: pulley, block and tackle; set of blocks and pulleys for raising weights; + troclea_F_N : N ; -- [XXXDO] :: pulley, block and tackle; set of blocks and pulleys for raising weights; + troclia_F_N : N ; -- [XXXDO] :: pulley, block and tackle; set of blocks and pulleys for raising weights; + tromocrates_M_N : N ; -- [GXXEK] :: terrorist; + tromocratia_F_N : N ; -- [GXXEK] :: terrorism; + tropaeum_N_N : N ; -- [XWXBO] :: trophy; monument (set up to mark victory/rout) (often captured armor); victory; + trophaeum_N_N : N ; -- [FWXBV] :: trophy; monument (set up to mark victory/rout) (often captured armor); victory; + tropologia_F_N : N ; -- [ESXEP] :: allegorical exposition; + tropologice_Adv : Adv ; -- [ESXFP] :: allegorically; + tropologicus_A : A ; -- [ESXEP] :: allegorical; + tropos_M_N : N ; -- [XGXDO] :: trope, figure of speech, figurative use of word; song, manner of singing (L+S); + tropus_M_N : N ; -- [XGXDO] :: trope, figure of speech, figurative use of word; song, manner of singing (L+S); + trucidatio_F_N : N ; -- [XXXDX] :: slaughtering, massacre; + trucido_V : V ; -- [XXXDX] :: slaughter, butcher, massacre; + trucilo_V : V ; -- [XAXFO] :: trill; (song of the thrush); + truculenter_Adv : Adv ; -- [XXXES] :: wildly, savagely, fiercely, cruelly, roughly; truculently (?); + truculentus_A : A ; -- [XXXDX] :: ferocious, aggressive; + trudis_F_N : N ; -- [XXXDX] :: metal-tipped pole, barge-pole; + trudo_V2 : V2 ; -- [XXXDX] :: thrust, push, shove; drive, force; drive on; + trulla_F_N : N ; -- [XXXEC] :: ladle, pan or basin; (instrument) eyepiece (Cal); + trulleum_N_N : N ; -- [XXXFS] :: wash-basin; + trunco_V : V ; -- [XXXDX] :: maim, mutilate; strip of branches, foliage; cut off; + truncus_M_N : N ; -- [XXXBX] :: trunk (of a tree); + trusito_V : V ; -- [XXXBS] :: push often; keep pushing; + truso_V : V ; -- [XXXBS] :: push often; push strongly; + trutina_F_N : N ; -- [XXXEC] :: balance, pair of scales; + trutino_V : V ; -- [FXXEM] :: balance, weigh; + trux_A : A ; -- [XXXBX] :: wild, savage, fierce; + trychnos_M_N : N ; -- [DAXNS] :: nightshade plant (Pliny); + trygonus_M_N : N ; -- [DAXES] :: stingray; + tuba_F_N : N ; -- [XDXBX] :: trumpet (straight tube); (military signals/religious rites); hydraulic ram pipe; tuber_F_N : N ; -- [XAXES] :: kind of apple-tree; - tuber_M_N : N ; - tuber_N_N : N ; - tuberculum_N_N : N ; - tubicen_M_N : N ; - tubineus_A : A ; - tubur_M_N : N ; - tuburcinor_V : V ; - tubus_M_N : N ; - tuccetum_N_N : N ; - tudito_V2 : V2 ; - tueor_V : V ; - tugurium_N_N : N ; - tuissatio_F_N : N ; - tuisso_V : V ; - tuitio_F_N : N ; - tulipa_F_N : N ; - tullianum_N_N : N ; - tum_Adv : Adv ; - tum_Conj : Conj ; - tumba_F_N : N ; - tumbarius_M_N : N ; - tumbus_M_N : N ; - tumefacio_V2 : V2 ; - tumeo_V : V ; - tumesco_V2 : V2 ; - tumidus_A : A ; - tumor_M_N : N ; - tumulo_V : V ; - tumulosus_A : A ; - tumultuarius_A : A ; - tumultuatio_F_N : N ; - tumultuo_V : V ; - tumultuor_V : V ; - tumultuosus_A : A ; - tumultus_M_N : N ; - tumulus_M_N : N ; - tunc_Adv : Adv ; - tundo_V2 : V2 ; - tunella_F_N : N ; - tunellus_M_N : N ; - tunica_F_N : N ; - tunicatus_A : A ; - tuor_M_N : N ; - tuor_V : V ; - turannis_F_N : N ; - turba_F_N : N ; - turbamentum_N_N : N ; - turbatio_F_N : N ; - turbator_M_N : N ; - turbedo_M_N : N ; - turbela_F_N : N ; - turben_N_N : N ; - turbido_M_N : N ; - turbido_V2 : V2 ; - turbidus_A : A ; - turbineus_A : A ; - turbo_M_N : N ; - turbo_V : V ; - turbulentus_A : A ; - turdus_M_N : N ; - tureus_A : A ; - turgeo_V : V ; - turgesco_V : V ; - turgidulus_A : A ; - turgidus_A : A ; - turgor_M_N : N ; - turibulum_N_N : N ; - turicremus_A : A ; - turifer_A : A ; - turilegus_A : A ; - turista_M_N : N ; - turma_F_N : N ; - turmalinus_M_N : N ; - turmalis_A : A ; - turmatim_Adv : Adv ; - turpe_Adv : Adv ; - turpe_N_N : N ; - turpiculus_A : A ; - turpificatus_A : A ; - turpiloquium_N_N : N ; - turpilucricupidus_A : A ; - turpilucris_A : A ; - turpilucrus_A : A ; - turpis_A : A ; - turpissime_Adv : Adv ; - turpiter_Adv : Adv ; - turpitudo_F_N : N ; - turpo_V : V ; - turricula_F_N : N ; - turriger_A : A ; - turrile_N_N : N ; - turris_F_N : N ; - turritus_A : A ; - turtur_M_N : N ; - turunda_F_N : N ; - tus_N_N : N ; - tusculum_N_N : N ; - tussicula_F_N : N ; - tussilago_F_N : N ; - tussio_V : V ; - tussis_F_N : N ; - tutamen_N_N : N ; - tutamentum_N_N : N ; - tute_Adv : Adv ; - tutela_F_N : N ; - tuto_Adv : Adv ; - tuto_V : V ; - tutor_M_N : N ; - tutor_V : V ; - tutus_A : A ; - tuus_A : A ; - tympanistes_M_N : N ; - tympanistria_F_N : N ; - tympanotriba_M_N : N ; - tympanum_N_N : N ; - typanum_N_N : N ; - typhon_M_N : N ; - typhonicus_A : A ; - typicus_A : A ; - typographeum_N_N : N ; - typographia_F_N : N ; - typographicus_A : A ; - typographus_M_N : N ; - typologia_F_N : N ; - typotheta_M_N : N ; - typus_M_N : N ; - tyrannice_Adv : Adv ; - tyrannicida_M_N : N ; - tyrannicidium_N_N : N ; - tyrannicus_A : A ; - tyrannis_F_N : N ; - tyrannoctonus_M_N : N ; - tyrannus_M_N : N ; - tyrotarichos_M_N : N ; - tyrsus_M_N : N ; - uber_A : A ; - uber_N_N : N ; - uberius_Adv : Adv ; - ubertas_F_N : N ; - uberte_Adv : Adv ; - ubertim_Adv : Adv ; - ubi_Adv : Adv ; - ubi_Conj : Conj ; - ubicumque_Adv : Adv ; - ubinam_Adv : Adv ; - ubiquaque_Adv : Adv ; - ubique_Adv : Adv ; - ubiquomque_Adv : Adv ; - ubivis_Adv : Adv ; - udus_A : A ; - ulcero_V : V ; - ulcerosus_A : A ; - ulciscor_V : V ; - ulcus_N_N : N ; - uliginosum_N_N : N ; - uliginosus_A : A ; - uligo_F_N : N ; - ullatenus_Adv : Adv ; - ullus_A : A ; - ulmeus_A : A ; - ulmus_F_N : N ; - ulna_F_N : N ; - uls_Acc_Prep : Prep ; - ulterior_A : A ; - ultimate_Adv : Adv ; - ultimatim_Adv : Adv ; - ultime_Adv : Adv ; - ultimum_Adv : Adv ; - ultio_F_N : N ; - ultor_M_N : N ; - ultra_Acc_Prep : Prep ; - ultra_Adv : Adv ; - ultramarinus_A : A ; - ultramarinus_M_N : N ; - ultramontanus_A : A ; - ultramontanus_M_N : N ; - ultrix_A : A ; - ultro_Adv : Adv ; - ultroneus_A : A ; - ultumus_A : A ; - ulula_F_N : N ; - ululatus_A : A ; - ululatus_M_N : N ; - ululo_V : V ; - ulva_F_N : N ; - umbella_F_N : N ; - umbilicus_M_N : N ; - umbo_M_N : N ; - umbra_F_N : N ; - umbraclum_N_N : N ; - umbraculum_N_N : N ; - umbraliter_Adv : Adv ; - umbraticola_M_N : N ; - umbraticus_A : A ; - umbrella_F_N : N ; - umbrifer_A : A ; - umbro_V : V ; - umbrosus_A : A ; - umecto_V : V ; - umectus_A : A ; - umens_A : A ; - umeo_V : V ; - umerale_N_N : N ; - umerus_M_N : N ; - umesco_V : V ; - umidulus_A : A ; - umidum_N_N : N ; - umidus_A : A ; - umor_M_N : N ; - umquam_Adv : Adv ; - una_Adv : Adv ; - unanimans_A : A ; - unanimis_A : A ; - unanimitas_F_N : N ; - unanimiter_Adv : Adv ; - unanimus_A : A ; - uncia_F_N : N ; - unciarius_A : A ; - unciatim_Adv : Adv ; - uncinatrum_N_N : N ; - uncinatus_A : A ; - uncinulus_M_N : N ; - uncinus_M_N : N ; - unciola_F_N : N ; - unctio_F_N : N ; - unctito_V2 : V2 ; - unctiusculus_A : A ; - unctor_M_N : N ; - unctus_A : A ; - uncus_A : A ; - uncus_M_N : N ; - unda_F_N : N ; - unde_Adv : Adv ; - undecumque_Adv : Adv ; - undevicesimanus_M_N : N ; - undique_Adv : Adv ; - undiquesecus_Adv : Adv ; - undisonus_A : A ; - undo_V : V ; - undosus_A : A ; - undulatio_F_N : N ; - unetvicesimanus_M_N : N ; - unetvicesimus_A : A ; - ungella_F_N : N ; - ungo_V2 : V2 ; - unguedo_F_N : N ; - unguen_N_N : N ; - unguentarius_M_N : N ; - unguentatus_A : A ; - unguentum_N_N : N ; - ungueo_V2 : V2 ; - unguiculus_M_N : N ; - unguis_M_N : N ; - ungula_F_N : N ; - unguo_V2 : V2 ; - unianimis_A : A ; - unianimiter_Adv : Adv ; - unianimus_A : A ; - unicaulis_A : A ; - unice_Adv : Adv ; - unicellularis_A : A ; - unicitas_F_N : N ; - unicolor_A : A ; - unicornis_A : A ; - unicornis_M_N : N ; - unicornuus_M_N : N ; - unicus_A : A ; - unifico_V : V ; - unificus_A : A ; - uniformis_A : A ; - uniformiter_Adv : Adv ; - unigena_F_N : N ; - unigenitus_A : A ; - unimanus_A : A ; - unio_M_N : N ; - unio_V2 : V2 ; - unitas_F_N : N ; - uniter_Adv : Adv ; - universalis_A : A ; - universaliter_Adv : Adv ; - universalus_A : A ; - universe_Adv : Adv ; - universim_Adv : Adv ; - universitarius_A : A ; - universitas_F_N : N ; - universus_A : A ; - universus_M_N : N ; - univira_F_N : N ; - univiratus_A : A ; - univirius_A : A ; - univirus_A : A ; - univocus_A : A ; - unoculus_A : A ; - unovirus_A : A ; - unquam_Adv : Adv ; - unus_A : A ; - upilio_M_N : N ; - upupa_F_N : N ; - uranicus_A : A ; - urbanicianus_A : A ; - urbanitas_F_N : N ; - urbanus_A : A ; - urbanus_M_N : N ; - urbicapus_M_N : N ; - urbicarius_A : A ; - urbs_F_N : N ; - urceolaris_A : A ; - urceolus_M_N : N ; - urceus_M_N : N ; - urco_V : V ; - uredo_F_N : N ; + tuber_M_N : N ; -- [XAXES] :: |apple (L+S); fruit from a kind of apple-tree; + tuber_N_N : N ; -- [XXXCO] :: tumor, protuberance, bump, excrescence; truffle; plant with tuberous root; + tuberculum_N_N : N ; -- [XBXFS] :: small swelling/bump/protuberance/excrescence/tumor; boil (L+S); pimple; + tubicen_M_N : N ; -- [XXXCO] :: trumpeter; tuba (straight tube trumpet) player (esp. in army); + tubineus_A : A ; -- [FXXEN] :: cone shaped; + tubur_M_N : N ; -- [XAXDO] :: exotic fruit; (azarole or oriental medlar); the bush (Crataegus azarolus); + tuburcinor_V : V ; -- [BXXFS] :: eat greedily (Plautus); + tubus_M_N : N ; -- [XDXFS] :: pipe; lute; trumpet; + tuccetum_N_N : N ; -- [XXXFS] :: sausage; + tudito_V2 : V2 ; -- [XXXEC] :: strike often; + tueor_V : V ; -- [XXXDX] :: see, look at; protect, watch; uphold; + tugurium_N_N : N ; -- [GXXEK] :: hangar; discount; + tuissatio_F_N : N ; -- [GXXEK] :: familiarity; + tuisso_V : V ; -- [GXXEK] :: be familiar with; + tuitio_F_N : N ; -- [XLXDO] :: protection, support (esp. in matters of law); upkeep/maintenance (structure); + tulipa_F_N : N ; -- [GAXEK] :: tulip; + tullianum_N_N : N ; -- [XXICO] :: underground execution chamber in prison of Rome; (built by Servus Tullius?); + tum_Adv : Adv ; -- [XXXAX] :: then, next; besides; at that time; [cum...tum => not only...but also]; + tum_Conj : Conj ; -- [XXXDS] :: moreover; (frequent in Cicero and before; rare after); + tumba_F_N : N ; -- [FXXEM] :: tomb; + tumbarius_M_N : N ; -- [FXXEM] :: tomb-keeper; + tumbus_M_N : N ; -- [FXXEM] :: tomb; + tumefacio_V2 : V2 ; -- [XXXDX] :: cause to swell; puff up; + tumeo_V : V ; -- [XXXDX] :: swell, become inflated; be puffed up; be bombastic; be swollen with conceit; + tumesco_V2 : V2 ; -- [XXXDX] :: (begin to) swell; become inflamed with pride, passion, etc; + tumidus_A : A ; -- [XXXBX] :: swollen, swelling, distended; puffed up with pride or self; confidence; + tumor_M_N : N ; -- [XXXDX] :: swollen or distended condition, swelling; swell (sea, waves); excitement; + tumulo_V : V ; -- [XXXDX] :: cover with a burial mound; + tumulosus_A : A ; -- [XXXDX] :: full of hillocks; + tumultuarius_A : A ; -- [XXXDX] :: raised to deal with a sudden emergency; improvised; unplanned, haphazard; + tumultuatio_F_N : N ; -- [XXXDX] :: confused uproar; + tumultuo_V : V ; -- [GXXEK] :: |misbehave; (Cal); + tumultuor_V : V ; -- [XXXBO] :: make a commotion/disturbance/armed rising; scrap, scrimmage; be in confusion; + tumultuosus_A : A ; -- [XXXDX] :: turbulent, full of commotion or uproar; + tumultus_M_N : N ; -- [XXXAX] :: commotion, confusion, uproar; rebellion, uprising, disturbance; + tumulus_M_N : N ; -- [XXXAX] :: mound, hillock; mound, tomb; + tunc_Adv : Adv ; -- [XXXAX] :: then, thereupon, at that time; + tundo_V2 : V2 ; -- [XXXDX] :: beat; bruise, pulp, crush; + tunella_F_N : N ; -- [FXBFM] :: cask, tun; (for wine); + tunellus_M_N : N ; -- [FXBEM] :: cask, tun; (for wine); the Tun (London prison); bird-trap; + tunica_F_N : N ; -- [XXXDX] :: undergarment, shirt,tunic; + tunicatus_A : A ; -- [XXXEC] :: clothed in a tunic; + tuor_M_N : N ; -- [XXXFS] :: sight, vision; + tuor_V : V ; -- [XXXCS] :: see, look at; protect, watch; uphold; (form of tueor); + turannis_F_N : N ; -- [XLXFX] :: tyranny; position of a tyrant; cruel regime; (also tyrannis); + turba_F_N : N ; -- [XXXAX] :: commotion, uproar, turmoil, tumult, disturbance; crowd, mob, multitude; + turbamentum_N_N : N ; -- [XXXDX] :: means of disturbing; + turbatio_F_N : N ; -- [XXXDX] :: disturbance; + turbator_M_N : N ; -- [XXXDX] :: one who disturbs; + turbedo_M_N : N ; -- [EXXCP] :: storm; cloudiness (of beer); + turbela_F_N : N ; -- [XXXFS] :: bustle; small crowd; (turbella); + turben_N_N : N ; -- [XXXFO] :: that which whirls; whirlwind, tornado; spinning top; spiral, round, circle; + turbido_M_N : N ; -- [EXXEP] :: storm; cloudiness (of beer); + turbido_V2 : V2 ; -- [DXXDS] :: disturb/trouble/agitate; make turbulent/turbid; obscure, make turmoil/confusion; + turbidus_A : A ; -- [XXXAO] :: |confused, disordered; impatient, troubled, dazed, frantic; unruly, mutinous; + turbineus_A : A ; -- [XXXDX] :: gyrating like a spinning-top; + turbo_M_N : N ; -- [XXXDO] :: that which whirls; whirlwind, tornado; spinning top; spiral, round, circle; + turbo_V : V ; -- [XXXAX] :: disturb, agitate, throw into confusion; + turbulentus_A : A ; -- [XXXDX] :: violently disturbed, stormy, turbulent; unruly, riotous; w/violent unrest; + turdus_M_N : N ; -- [XXXDX] :: thrush; + tureus_A : A ; -- [XXXDX] :: of or connected with incense; + turgeo_V : V ; -- [XXXDX] :: swell out, become swollen or tumid; + turgesco_V : V ; -- [XXXDX] :: begin to swell; + turgidulus_A : A ; -- [XXXDX] :: (poor little) swollen/inflated/inflamed/grandiose; + turgidus_A : A ; -- [XXXDX] :: swollen, inflated, distended; swollen (body of water); inflamed with passion; + turgor_M_N : N ; -- [DXXFS] :: swelling; + turibulum_N_N : N ; -- [XXXDX] :: censer, vessel in which incense is burnt; thurible;; + turicremus_A : A ; -- [XXXDX] :: burning incense; + turifer_A : A ; -- [XXXDX] :: yielding or producing incense; + turilegus_A : A ; -- [XXXDX] :: incense-gathering; + turista_M_N : N ; -- [GXXEK] :: tourist; + turma_F_N : N ; -- [XXXDX] :: troop (of 30 horsemen), squadron; + turmalinus_M_N : N ; -- [GXXEK] :: tourmaline; + turmalis_A : A ; -- [XXXDX] :: of/belonging to squadron of cavalry; + turmatim_Adv : Adv ; -- [XXXDX] :: by squadrons, by troops; by turma (squadron of 30 horsemen); + turpe_Adv : Adv ; -- [XXXDS] :: repulsively, disgracefully, shamelessly; in an ugly/unsightly manner; + turpe_N_N : N ; -- [XXXES] :: disgrace; shame, reproach; base/shameful thing; + turpiculus_A : A ; -- [XXXDX] :: somewhat ugly; + turpificatus_A : A ; -- [XXXEC] :: corrupted; + turpiloquium_N_N : N ; -- [GXXET] :: immodest speech; (Erasmus); + turpilucricupidus_A : A ; -- [BXXFO] :: basely greedy/covetous of dishonest gain; + turpilucris_A : A ; -- [EXXFP] :: making dishonest gain/profit; basely greedy/covetous of gain (Souter); + turpilucrus_A : A ; -- [DXXFS] :: making dishonest gain/profit; basely covetous of gain (Souter); + turpis_A : A ; -- [XXXAX] :: ugly; nasty; disgraceful; indecent; base, shameful, disgusting, repulsive; + turpissime_Adv : Adv ; -- [XXXFX] :: basely; shamefully; uglily; (found in Patrologiae Graecae, 19th Cent); + turpiter_Adv : Adv ; -- [XXXDS] :: repulsively, disgracefully, shamelessly; in an ugly/unsightly manner; + turpitudo_F_N : N ; -- [XXXBO] :: ugliness/deformity; shame/indecency; nakedness/genitals; disgrace; turpitude; + turpo_V : V ; -- [XXXDX] :: make ugly; pollute, disfigure; + turricula_F_N : N ; -- [XXXFS] :: turret; little tower; dice-box (shaped like turret); + turriger_A : A ; -- [XXXDX] :: bearing a tower; wearing a turreted crown; + turrile_N_N : N ; -- [GXXEK] :: church arrow; + turris_F_N : N ; -- [XXXAX] :: tower; high building, palace, citadel; dove tower, dove cot; + turritus_A : A ; -- [XXXDX] :: crowned with towers, tower-shaped; + turtur_M_N : N ; -- [XXXDX] :: turtle-dove; + turunda_F_N : N ; -- [XAXFZ] :: TURUND; some kind of food stuffing; + tus_N_N : N ; -- [XXXDX] :: frankincense; + tusculum_N_N : N ; -- [BXXFS] :: little frankincense (Plautus); + tussicula_F_N : N ; -- [XBXFS] :: slight cough; + tussilago_F_N : N ; -- [DAXNS] :: colt's foot herb (Pliny); + tussio_V : V ; -- [XBXCO] :: cough; suffer from a cough; have coughing fit; + tussis_F_N : N ; -- [XXXCO] :: cough; + tutamen_N_N : N ; -- [XXXDX] :: means of protection; + tutamentum_N_N : N ; -- [XXXDX] :: means of protection; + tute_Adv : Adv ; -- [XXXDX] :: without risk/danger, safely, securely; + tutela_F_N : N ; -- [XXXBX] :: tutelage, guardianship; + tuto_Adv : Adv ; -- [XXXDX] :: without risk/danger, safely, securely; + tuto_V : V ; -- [XXXDX] :: guard, protect, defend; guard against, avert; + tutor_M_N : N ; -- [XXXDX] :: protector, defender; guardian, watcher; tutor; + tutor_V : V ; -- [XXXDX] :: guard, protect, defend; guard against, avert; + tutus_A : A ; -- [XXXAX] :: safe, prudent; secure; protected; + tuus_A : A ; -- [XXXAX] :: your (sing.); + tympanistes_M_N : N ; -- [XDXFO] :: tympanum (small drum) player; + tympanistria_F_N : N ; -- [XDXFO] :: female tympanum (small drum) player; + tympanotriba_M_N : N ; -- [BXXFS] :: timbrel player (Plautus); effeminate person; + tympanum_N_N : N ; -- [XXXDX] :: small drum or like (used in worship of Cybele/Bacchus); revolving cylinder; + typanum_N_N : N ; -- [XXXDX] :: small drum; revolving cylinder; + typhon_M_N : N ; -- [XXXCO] :: violent whirlwind/tornado; (typhoon/cyclone); name given to a comet by Pharaoh; + typhonicus_A : A ; -- [EXXFS] :: typhonic, whirling, violent; [~ ventus => whirlwind/tornado]; + typicus_A : A ; -- [DXXES] :: figurative; typical; periodic, recurring at intervals; + typographeum_N_N : N ; -- [GXXEK] :: printing (shop); + typographia_F_N : N ; -- [FTXFM] :: printing; + typographicus_A : A ; -- [GXXEK] :: typographic; + typographus_M_N : N ; -- [GTXET] :: printer; (Erasmus); + typologia_F_N : N ; -- [GXXEK] :: typology; + typotheta_M_N : N ; -- [GXXEK] :: typographer; + typus_M_N : N ; -- [DBXES] :: |form/type/character (of a fever); + tyrannice_Adv : Adv ; -- [XXXEC] :: tyrannically; + tyrannicida_M_N : N ; -- [XXXDO] :: tyrannicide, killer/slayer a tyrant/despot; (e.g., killers of Caesar); + tyrannicidium_N_N : N ; -- [XLXDO] :: tyrannicide, killing of a tyrant/despot; + tyrannicus_A : A ; -- [XXXEC] :: tyrannical; + tyrannis_F_N : N ; -- [XLXBO] :: tyranny; position/rule/territory of a tyrant; any cruel/oppressive regime; + tyrannoctonus_M_N : N ; -- [XLXEO] :: tyrannicide, killer/slayer a tyrant/despot; (e.g., killers of Caesar); + tyrannus_M_N : N ; -- [XXXBX] :: tyrant; despot; monarch, absolute ruler; king, prince; + tyrotarichos_M_N : N ; -- [XXXEC] :: dish of cheese and salt-fish; + tyrsus_M_N : N ; -- [EXXFW] :: wreathed wand; (2 Maccabee 10:7); + uber_A : A ; -- [XXXBX] :: fertile, rich, abundant, abounding, fruitful, plentiful, copious, productive; + uber_N_N : N ; -- [XBXCO] :: breast/teat (woman); udder (animal), dugs/teats; rich soil; plenty/abundance; + uberius_Adv : Adv ; -- [XXXCX] :: in/with greater/est abundance/exuberance; more prolifically/fully/copiously; + ubertas_F_N : N ; -- [XXXDX] :: fruitfulness, fertility; abundance, plenty; + uberte_Adv : Adv ; -- [EXXCN] :: abundantly; copiously; + ubertim_Adv : Adv ; -- [XXXDX] :: abundantly; copiously (weeping); + ubi_Adv : Adv ; -- [XXXBX] :: where; in what place; (time) when, whenever; as soon as; in which; with whom; + ubi_Conj : Conj ; -- [XXXAX] :: where, whereby; + ubicumque_Adv : Adv ; -- [XXXDX] :: wherever, in whatever place; in any place, wherever that may be, somewhere; + ubinam_Adv : Adv ; -- [XXXDX] :: where in the world?; + ubiquaque_Adv : Adv ; -- [XXXDX] :: everywhere; + ubique_Adv : Adv ; -- [XXXBX] :: anywhere, everywhere (ubiquitous); + ubiquomque_Adv : Adv ; -- [BXXFS] :: wherever, in whatever place; in any place, somewhere; (archaic of ubicumque); + ubivis_Adv : Adv ; -- [XXXDX] :: anywhere you like, no matter where; + udus_A : A ; -- [XXXDX] :: wet; + ulcero_V : V ; -- [XXXDX] :: cause to fester; + ulcerosus_A : A ; -- [XXXDX] :: full of sores; + ulciscor_V : V ; -- [XXXBX] :: avenge; punish; + ulcus_N_N : N ; -- [XXXDX] :: ulcer, sore; + uliginosum_N_N : N ; -- [XXXES] :: swamp; + uliginosus_A : A ; -- [XXXES] :: marshy; full of moisture; + uligo_F_N : N ; -- [XXXDX] :: waterlogged ground, marsh; + ullatenus_Adv : Adv ; -- [DXXFS] :: in any respect whatever; + ullus_A : A ; -- [XXXAX] :: any; + ulmeus_A : A ; -- [XXXDX] :: of elm; + ulmus_F_N : N ; -- [XXXDX] :: elm tree; + ulna_F_N : N ; -- [XXXDX] :: forearm; the span of the outstretched arms; + uls_Acc_Prep : Prep ; -- [XXXDX] :: beyond, on the other side, on that side; more than, besides; + ulterior_A : A ; -- [XXXCX] :: far; farther; farthest, latest; last; highest, greatest; + ultimate_Adv : Adv ; -- [FXXFZ] :: extremely, to the last degree, utterly; finally, at last; + ultimatim_Adv : Adv ; -- [GXXEE] :: extremely, to the last degree, utterly; finally, at last; + ultime_Adv : Adv ; -- [DXXES] :: extremely, to the last degree, utterly; finally, at last; + ultimum_Adv : Adv ; -- [GXXEE] :: extremely, to the last degree, utterly; finally, at last; + ultio_F_N : N ; -- [XXXDX] :: revenge, vengeance, retribution; + ultor_M_N : N ; -- [XXXDX] :: avenger, revenger; + ultra_Acc_Prep : Prep ; -- [XXXDX] :: beyond, on the other side, on that side; more than, besides; + ultra_Adv : Adv ; -- [XXXAX] :: beyond, further; on the other side; more, more than, in addition, besides; + ultramarinus_A : A ; -- [FAXFM] :: from overseas; + ultramarinus_M_N : N ; -- [FXXFM] :: overseas person; + ultramontanus_A : A ; -- [FXXFM] :: beyond-the-mountains; beyond the Alps; + ultramontanus_M_N : N ; -- [FXXFM] :: beyond-mountains-dweller; one who lives beyond the mountains; + ultrix_A : A ; -- [XXXDX] :: avenging, vengeful; + ultro_Adv : Adv ; -- [XXXBX] :: besides, beyond; to/on the further/other side; voluntarily, unaided; wantonly; + ultroneus_A : A ; -- [XXXEO] :: voluntary; deliberate; acting on one's own initiative; + ultumus_A : A ; -- [BXXEX] :: far; farther; farthest, latest; last; highest, greatest; (alsoultimus); + ulula_F_N : N ; -- [XXXDX] :: tawny owl; + ululatus_A : A ; -- [XXXDX] :: yell, shout; + ululatus_M_N : N ; -- [XXXES] :: howling (dogs/wolves), wailing; shrieking (defiance); yelling (grief/distress); + ululo_V : V ; -- [XXXDX] :: howl, yell, shriek; celebrate or proclaim with howling; + ulva_F_N : N ; -- [XAXCO] :: sedge; (collective term) various grass/rush-like aquatic plants; + umbella_F_N : N ; -- [XXXEC] :: parasol; + umbilicus_M_N : N ; -- [XXXDX] :: navel, middle, center; center of country/region; ornamented end of scroll; + umbo_M_N : N ; -- [XXXDX] :: boss (of a shield); + umbra_F_N : N ; -- [XXXBX] :: shade; ghost; shadow; + umbraclum_N_N : N ; -- [XXXCO] :: shelter/shade; protection from sun; parasol/umbrella; shady retreat/bower/arbor; + umbraculum_N_N : N ; -- [XXXCO] :: shelter/shade; protection from sun; parasol/umbrella; shady retreat/bower/arbor; + umbraliter_Adv : Adv ; -- [DXXFS] :: figuratively; metaphorically; + umbraticola_M_N : N ; -- [XXXES] :: lounger; shade-lover, one fond of the shade; effeminate person; + umbraticus_A : A ; -- [XXXFS] :: |retired; contemplative; private (tutor); [~ litterae => composed in the study]; + umbrella_F_N : N ; -- [GXXEK] :: umbrella; + umbrifer_A : A ; -- [XXXDX] :: providing shade, shady; + umbro_V : V ; -- [XXXDX] :: cast a shadow on, shade; + umbrosus_A : A ; -- [XXXDX] :: shady, shadowy; + umecto_V : V ; -- [XXXDX] :: moisten, make wet; + umectus_A : A ; -- [XXXEC] :: moist; + umens_A : A ; -- [XXXDX] :: moist, wet; + umeo_V : V ; -- [XXXDX] :: be wet; be moist; + umerale_N_N : N ; -- [XXXFO] :: cape, protective covering for shoulders; outer robe; ecclesiastical humeral; + umerus_M_N : N ; -- [XXXBX] :: upper arm, shoulder; + umesco_V : V ; -- [XXXDX] :: become moist or wet; + umidulus_A : A ; -- [XXXDX] :: somewhat moist; + umidum_N_N : N ; -- [XXXDX] :: swamp; + umidus_A : A ; -- [XXXBX] :: damp, moist, dank, wet, humid; + umor_M_N : N ; -- [XXXDX] :: moisture, liquid; + umquam_Adv : Adv ; -- [XXXAX] :: ever, at any time; + una_Adv : Adv ; -- [XXXBX] :: together, together with; at the same time; along with; + unanimans_A : A ; -- [XXXES] :: of one mind; in full agreement; + unanimis_A : A ; -- [XXXCO] :: acting in accord; sharing a single purpose; harmonious (L+S); unanimous; + unanimitas_F_N : N ; -- [XXXEO] :: unity/unanimity of purpose, concord; + unanimiter_Adv : Adv ; -- [DXXES] :: unanimously; harmoniously; cordially; + unanimus_A : A ; -- [XXXCO] :: acting in accord; sharing a single purpose; harmonious (L+S); unanimous; + uncia_F_N : N ; -- [XXXDX] :: twelfth part, twelfth; ounce; inch; + unciarius_A : A ; -- [XXXDX] :: concerned with a twelfth part; + unciatim_Adv : Adv ; -- [XXXES] :: little by little; by twelfths; + uncinatrum_N_N : N ; -- [GXXEK] :: stapler; + uncinatus_A : A ; -- [XXXEC] :: hooked; + uncinulus_M_N : N ; -- [GXXEK] :: staple; + uncinus_M_N : N ; -- [XXXEO] :: hook; (as door fastening); + unciola_F_N : N ; -- [XXXES] :: little ounce; a small twelfth; + unctio_F_N : N ; -- [XXXCO] :: anointing/unction; (w/sign of cross); besmearing; (w/ointment/oil); ointment; + unctito_V2 : V2 ; -- [XEXCS] :: anoint often; + unctiusculus_A : A ; -- [XXXES] :: somewhat unctuous; sort of oily; + unctor_M_N : N ; -- [XEXES] :: anointer; one who anoints; + unctus_A : A ; -- [XXXDX] :: oily, greasy; anointed, oiled; + uncus_A : A ; -- [XXXDX] :: hooked, curved, bent in, crooked, round; barbed; + uncus_M_N : N ; -- [XXXDX] :: hook, barb, clamp; hook in neck used to drag condemned/executed criminals; + unda_F_N : N ; -- [XXXAX] :: wave; + unde_Adv : Adv ; -- [XXXAX] :: from where, whence, from what or which place; from which; from whom; + undecumque_Adv : Adv ; -- [XXXCO] :: from/in whatever/every direction; from any point/source/side; in every respect; + undevicesimanus_M_N : N ; -- [XWXEC] :: 19th legion soldier; + undique_Adv : Adv ; -- [XXXBO] :: |everywhere; completely; allover; from every point of view, in all respects; + undiquesecus_Adv : Adv ; -- [FXECV] :: |everywhere; completely; allover; from every point of view, in all respects; + undisonus_A : A ; -- [XXXEC] :: resounding with waves; + undo_V : V ; -- [XXXBO] :: surge/flood/rise in waves; gush/well up; run, stream; billow; undulate; waver; + undosus_A : A ; -- [XXXDX] :: abounding in waves, flowing water, etc; + undulatio_F_N : N ; -- [GXXEK] :: curling; + unetvicesimanus_M_N : N ; -- [XWXEC] :: soldiers (pl.) of the twenty-first legion; + unetvicesimus_A : A ; -- [XXXES] :: twenty-first; + ungella_F_N : N ; -- [XXXFS] :: small claw/talon; + ungo_V2 : V2 ; -- [XXXBO] :: anoint/rub (w/oil/unguent); smear with oil/grease; dress (food w/oil); add oil; + unguedo_F_N : N ; -- [XXXFO] :: ointment, unguent; + unguen_N_N : N ; -- [XXXDX] :: fat, grease; + unguentarius_M_N : N ; -- [XXXDX] :: dealer in ointments, maker of ointments; + unguentatus_A : A ; -- [XXXDX] :: anointed or greased with ointments; + unguentum_N_N : N ; -- [XXXDX] :: oil, ointment; + ungueo_V2 : V2 ; -- [EXXFW] :: anoint/rub (w/oil/unguent); smear with oil/grease; dress (food w/oil); add oil; + unguiculus_M_N : N ; -- [XXXEC] :: finger or toe-nail; + unguis_M_N : N ; -- [XXXBX] :: nail, claw, talon; + ungula_F_N : N ; -- [XAXCO] :: hoof; bird claw/talon; (torture); toe nail; pig's foot/trotter (food/medicine); + unguo_V2 : V2 ; -- [XXXBO] :: anoint/rub (w/oil/unguent); smear with oil/grease; dress (food w/oil); add oil; + unianimis_A : A ; -- [XXXCO] :: acting in accord; sharing a single purpose; harmonious (L+S); unanimous; + unianimiter_Adv : Adv ; -- [DXXES] :: unanimously; cordially; harmoniously; + unianimus_A : A ; -- [XXXCO] :: acting in accord; sharing a single purpose; harmonious (L+S); unanimous; + unicaulis_A : A ; -- [DAXNS] :: single-stalked (Pliny); + unice_Adv : Adv ; -- [XXXDX] :: to a singular degree; especially; + unicellularis_A : A ; -- [HSXEK] :: unicellular; + unicitas_F_N : N ; -- [GXXEK] :: uniqueness; + unicolor_A : A ; -- [XXXEC] :: of one color; + unicornis_A : A ; -- [XAXNO] :: one-horned, having a single horn; + unicornis_M_N : N ; -- [EYXEE] :: unicorn, one-horned horse-like creature; + unicornuus_M_N : N ; -- [EYXEE] :: unicorn, one-horned horse-like creature; + unicus_A : A ; -- [XXXAX] :: only, sole, single, singular, unique; uncommon, unparalleled; one of a kind; + unifico_V : V ; -- [FXXEM] :: unify; + unificus_A : A ; -- [FXXEM] :: unifying; + uniformis_A : A ; -- [XXXDX] :: uniform; having only one shape; + uniformiter_Adv : Adv ; -- [DXXES] :: uniformly; in one and the same manner; + unigena_F_N : N ; -- [XXXDX] :: one sharing a single parentage, i.e. brother or sister; + unigenitus_A : A ; -- [EEXDX] :: only begotten; only; + unimanus_A : A ; -- [XXXDX] :: one-handed; + unio_M_N : N ; -- [XXXEO] :: large single pearl; + unio_V2 : V2 ; -- [XXXEO] :: unite, combine into one; + unitas_F_N : N ; -- [EXXDX] :: unity; oneness; + uniter_Adv : Adv ; -- [XXXDX] :: so as to form a singular entity; + universalis_A : A ; -- [DXXDO] :: universal. having general application; of all (Souter); + universaliter_Adv : Adv ; -- [XXXDO] :: universally/generally/collectively, all together/as to cover/comprise all cases; + universalus_A : A ; -- [XXXDO] :: universal, having general application; of/belonging to all/the whole, entire; + universe_Adv : Adv ; -- [XXXDO] :: in general terms, generally; in respect to the whole; + universim_Adv : Adv ; -- [XXXFO] :: generally, with universal application; + universitarius_A : A ; -- [GXXEK] :: academic; + universitas_F_N : N ; -- [GXXEK] :: |university; + universus_A : A ; -- [XXXAX] :: whole, entire; all together; all; universal; + universus_M_N : N ; -- [XXXDX] :: whole world; all men (pl.), everybody, the mass; [in universum => in general]; + univira_F_N : N ; -- [ELXES] :: one-husband woman; woman married only once; + univiratus_A : A ; -- [EEXEE] :: married but once; + univirius_A : A ; -- [XXXIO] :: that has had only one husband (F ADJ); + univirus_A : A ; -- [XLXEO] :: once-married (of woman); that has had only one husband (F ADJ); + univocus_A : A ; -- [DXXFS] :: univocal, single-meaning, that has but one meaning/significance; unmistakable; + unoculus_A : A ; -- [XXXEO] :: one-eyed, having one eye; (of Cyclops); + unovirus_A : A ; -- [XXXIO] :: that has had only one husband (F ADJ); + unquam_Adv : Adv ; -- [XXXDX] :: at any time, ever; at some time; + unus_A : A ; -- [XXXEO] :: alone, a single/sole; some, some one; only (pl.); one set of (denoting entity); + upilio_M_N : N ; -- [XAXDO] :: shepherd, herdsman (for sheep/goats); kind of bird; + upupa_F_N : N ; -- [XXXDO] :: hoopoe (bird of family Upupidae); pickax/crowbar; (birdlike); mattock/hoe (L+S); + uranicus_A : A ; -- [FXXEM] :: heavenly; + urbanicianus_A : A ; -- [XWXFS] :: city-garrisoned; + urbanitas_F_N : N ; -- [XXXDX] :: city living, city life/manners, life in Rome; sophistication, polish, wit; + urbanus_A : A ; -- [XXXDX] :: of the city; courteous; witty, urbane; + urbanus_M_N : N ; -- [XXXDX] :: city wit, urbane man; + urbicapus_M_N : N ; -- [XWXES] :: city-taker; one who takes cities; + urbicarius_A : A ; -- [EXXES] :: of/belonging to the city; + urbs_F_N : N ; -- [XXXAX] :: city; City of Rome; + urceolaris_A : A ; -- [XXXFS] :: pitcher-; of pitchers; + urceolus_M_N : N ; -- [XXXEC] :: small jug or pitcher; + urceus_M_N : N ; -- [GXXEK] :: mug; + urco_V : V ; -- [XAXFO] :: urk; (verbal expression of the cry of the lynx); + uredo_F_N : N ; -- [XAXCO] :: blight/scorching on plants from frost; burning sensation; ureter_1_N : N ; -- [XBXFO] :: ureter; urinary duct; - ureter_2_N : N ; - urgeo_V : V ; - urgueo_V : V ; - urina_F_N : N ; - urinatio_F_N : N ; - urinator_M_N : N ; - urino_V : V ; - urinor_V : V ; - urna_F_N : N ; - uro_V2 : V2 ; - ursa_F_N : N ; - ursinus_A : A ; - ursus_M_N : N ; - urtica_F_N : N ; - urticaria_F_N : N ; - urus_M_N : N ; - usarius_A : A ; - usitatus_A : A ; - usitor_V : V ; - uspiam_Adv : Adv ; - usquam_Adv : Adv ; - usque_Acc_Prep : Prep ; - usque_Adv : Adv ; - usquequaque_Adv : Adv ; - usquequo_Adv : Adv ; - ustilo_V2 : V2 ; - ustio_F_N : N ; - ustor_M_N : N ; - ustrina_F_N : N ; - ustulo_V : V ; - usualis_A : A ; - usuarius_A : A ; - usucapio_V2 : V2 ; - usura_F_N : N ; - usurarius_A : A ; - usurpatio_F_N : N ; - usurpo_V : V ; - usus_M_N : N ; - ut_Conj : Conj ; - utcumque_Adv : Adv ; - utcunque_Adv : Adv ; - utens_A : A ; - utensilis_A : A ; - uter_A : A ; - uter_M_N : N ; - uter_N_N : N ; - uterum_N_N : N ; - uterus_M_N : N ; - uti_Conj : Conj ; - utibilis_A : A ; - utilis_A : A ; - utilitas_F_N : N ; - utiliter_Adv : Adv ; - utillimus_A : A ; - utinam_Adv : Adv ; - utique_Adv : Adv ; - utlagaria_F_N : N ; - utlagatio_F_N : N ; - utlagatus_M_N : N ; - utlago_V : V ; - utor_V : V ; - utpote_Adv : Adv ; - utputa_Adv : Adv ; - utquomque_Adv : Adv ; - utralibet_Adv : Adv ; - utrarius_M_N : N ; - utricularius_M_N : N ; - utriculus_M_N : N ; - utrimque_Adv : Adv ; - utrimquesecus_Adv : Adv ; - utrinde_Adv : Adv ; - utrinque_Adv : Adv ; - utro_Adv : Adv ; - utrobique_Adv : Adv ; - utrolibet_Adv : Adv ; - utroque_Adv : Adv ; - utrubique_Adv : Adv ; - utrum_Adv : Adv ; - utrumlibet_Adv : Adv ; - utrumnam_Conj : Conj ; - utut_Conj : Conj ; - uva_F_N : N ; - uvesco_V : V ; - uvidulus_A : A ; - uvidus_A : A ; - uvor_M_N : N ; - uxor_F_N : N ; - uxorcula_F_N : N ; - uxorculo_V : V ; - uxorium_N_N : N ; - uxorius_A : A ; - va_Interj : Interj ; - vacatio_F_N : N ; - vacca_F_N : N ; - vaccinatio_F_N : N ; - vaccinium_N_N : N ; - vaccinum_N_N : N ; - vaccinus_A : A ; - vaccula_F_N : N ; - vacefio_V : V ; - vacerra_F_N : N ; - vacerrosus_A : A ; - vacillo_V : V ; - vacive_Adv : Adv ; - vacivus_A : A ; - vaco_V : V ; - vacuefacio_V2 : V2 ; - vacuitas_F_N : N ; - vacuo_V : V ; - vacuus_A : A ; - vadimonium_N_N : N ; - vadio_V : V ; - vado_V : V ; - vado_V2 : V2 ; - vador_V : V ; - vadosus_A : A ; - vadum_N_N : N ; - vae_Interj : Interj ; - vaenum_N_N : N ; - vafer_A : A ; - vaflum_N_N : N ; - vaframentum_N_N : N ; - vagabundus_A : A ; - vage_Adv : Adv ; - vagina_F_N : N ; - vagio_V2 : V2 ; - vagitus_M_N : N ; - vagor_V : V ; - vagus_A : A ; - vah_Interj : Interj ; - vaha_Interj : Interj ; - valde_Adv : Adv ; - valedico_V : V ; - valefacio_V : V ; - valens_A : A ; - valenter_Adv : Adv ; - valentulus_A : A ; - valeo_V : V ; - valeriana_F_N : N ; - valerianella_F_N : N ; - valesco_V : V ; - valet_V0 : V ; - valetudinarium_N_N : N ; - valetudo_F_N : N ; - valgus_A : A ; - validus_A : A ; - valitudo_F_N : N ; - vallaris_A : A ; - vallaris_F_N : N ; - valles_F_N : N ; - vallis_F_N : N ; - vallo_V : V ; - vallum_N_N : N ; - vallus_M_N : N ; - valor_M_N : N ; - valorosus_A : A ; - valva_F_N : N ; - vanesco_V : V ; - vanidicus_A : A ; - vanidicus_M_N : N ; - vanilla_F_N : N ; - vanilleus_A : A ; - vaniloquentia_F_N : N ; - vaniloquor_V : V ; - vaniloquus_A : A ; - vanitas_F_N : N ; - vannus_M_N : N ; - vanus_A : A ; - vapide_Adv : Adv ; - vapidus_A : A ; - vapor_M_N : N ; - vaporarium_N_N : N ; - vaporarius_A : A ; - vaporo_V : V ; - vappa_F_N : N ; - vappa_M_N : N ; - vapulatio_F_N : N ; - vapulator_M_N : N ; - vapulo_V : V ; - vapulus_A : A ; - variabilis_A : A ; - variantia_F_N : N ; - varianus_A : A ; - variatio_F_N : N ; - varico_V : V ; - varicosus_A : A ; - varicus_A : A ; - varietas_F_N : N ; - vario_V : V ; - varius_A : A ; + ureter_2_N : N ; -- [XBXFO] :: ureter; urinary duct; + urgeo_V : V ; -- [XXXAO] :: ||hem in; threaten by proximity; press verbally/argument/point; follow up; + urgueo_V : V ; -- [XXXAO] :: ||hem in; threaten by proximity; press verbally/argument/point; follow up; + urina_F_N : N ; -- [XXXDX] :: urine; + urinatio_F_N : N ; -- [GXXEK] :: diving; + urinator_M_N : N ; -- [XXXDX] :: diver; + urino_V : V ; -- [XXXDX] :: dive, plunge into water; + urinor_V : V ; -- [XXXDX] :: dive, plunge into water; + urna_F_N : N ; -- [XXXBX] :: pot; cinerary urn; urn used for drawing lots; voting urn; water jar, ~13 liters; + uro_V2 : V2 ; -- [XXXBX] :: burn; + ursa_F_N : N ; -- [XXXDX] :: she-bear; Great Bear; + ursinus_A : A ; -- [XAXES] :: bear-; of a bear; + ursus_M_N : N ; -- [XXXDX] :: bear; + urtica_F_N : N ; -- [XXXDX] :: stinging-nettle; + urticaria_F_N : N ; -- [GXXEK] :: hives; + urus_M_N : N ; -- [XXXDX] :: wild ox; + usarius_A : A ; -- [XLXDO] :: that may be used by one other than owner but not for profit; (object/slave); + usitatus_A : A ; -- [XXXCO] :: usual, customary, ordinary, common, familiar, everyday; commonly used/practiced; + usitor_V : V ; -- [BXXFO] :: make usual/common/habitual use of; use everyday; + uspiam_Adv : Adv ; -- [XXXDX] :: anywhere, somewhere; + usquam_Adv : Adv ; -- [XXXBX] :: anywhere, in any place; to any place; + usque_Acc_Prep : Prep ; -- [XXXDX] :: up to (name of town or locality); + usque_Adv : Adv ; -- [XXXAX] :: all the way, right on; all the time, continuously, at every point, always; + usquequaque_Adv : Adv ; -- [XXXDX] :: in every conceivable situation; wholly, altogether; + usquequo_Adv : Adv ; -- [XXXDW] :: how long? (Douay); to what point/time/extent?; until (Rufine); + ustilo_V2 : V2 ; -- [XXXEO] :: scorch, char, burn partially; frost nip; cause to smart/tingle; + ustio_F_N : N ; -- [DXXFS] :: burning; searing; + ustor_M_N : N ; -- [XXXES] :: corpse-burner; cremator; + ustrina_F_N : N ; -- [XXXFS] :: burning; place of burning; + ustulo_V : V ; -- [XXXDX] :: scorch, char, burn partially; + usualis_A : A ; -- [DXXES] :: usual, common, ordinary; fit for use, that is for use; + usuarius_A : A ; -- [XXXES] :: |usable; made use of; + usucapio_V2 : V2 ; -- [XXXDX] :: acquire ownership of (thing) by virtue of uninterrupted possession; + usura_F_N : N ; -- [XXXDX] :: interest (usu. fraction/times of 12% per annum); use, enjoyment; + usurarius_A : A ; -- [XXXDO] :: of interest/usury; interest-derived; subject to interest; provided on loan; + usurpatio_F_N : N ; -- [XLXBO] :: |assertion of right/privilege by use; usage; constant carrying out (practices); + usurpo_V : V ; -- [XXXDX] :: seize upon, usurp; use; + usus_M_N : N ; -- [XXXAX] :: use, enjoyment; experience, skill, advantage; custom; + ut_Conj : Conj ; -- [XXXAX] :: to (+ subjunctive), in order that/to; how, as, when, while; even if; + utcumque_Adv : Adv ; -- [XXXBO] :: whatever, as far as; in whatever manner/degree. no matter how/to what extent; + utcunque_Adv : Adv ; -- [XXXBO] :: whatever, as far as; in whatever manner/degree. no matter how/to what extent; + utens_A : A ; -- [XXXFO] :: having money to spend; + utensilis_A : A ; -- [XXXCO] :: useful, utile, that can be made use of; + uter_A : A ; -- [XXXAO] :: |(w/que) each/either (of two); both (separately); each side (pl.), each set; + uter_M_N : N ; -- [XXXDS] :: skin; wine/water skin; bag/bottle made of skin/hide; (inflated for flotation); + uter_N_N : N ; -- [XXXDS] :: skin; wine/water skin; bag/bottle made of skin/hide; (inflated for flotation); + uterum_N_N : N ; -- [XXXDX] :: womb; belly, abdomen; + uterus_M_N : N ; -- [XXXDX] :: womb; belly, abdomen; + uti_Conj : Conj ; -- [XXXAX] :: in order that; that, so that; as, when; [ut primum => as soon as]; + utibilis_A : A ; -- [BXXES] :: useful; serviceable; + utilis_A : A ; -- [XXXAX] :: useful, profitable, practical, helpful, advantageous; + utilitas_F_N : N ; -- [XXXBX] :: usefulness, advantage; + utiliter_Adv : Adv ; -- [XXXCO] :: usefully/profitably/to advantage; interestedly; validly/effectively/practically; + utillimus_A : A ; -- [XXXFX] :: useful; + utinam_Adv : Adv ; -- [XXXBX] :: if only, would that; + utique_Adv : Adv ; -- [XXXDX] :: certainly, by all means; at any rate; + utlagaria_F_N : N ; -- [FLXFJ] :: outlawry; + utlagatio_F_N : N ; -- [FLXFJ] :: outlawry; + utlagatus_M_N : N ; -- [FLXFJ] :: outlaw; + utlago_V : V ; -- [FLXFJ] :: outlaw; + utor_V : V ; -- [XXXAX] :: use, make use of, enjoy; enjoy the friendship of (with ABL); + utpote_Adv : Adv ; -- [DXXCS] :: as, in as much as; namely; inasmuch as; + utputa_Adv : Adv ; -- [DXXDS] :: as for example; namely; + utquomque_Adv : Adv ; -- [XXXBO] :: whatever, as far as; in whatever manner/degree. no matter how/to what extent; + utralibet_Adv : Adv ; -- [XXXNO] :: on either side; + utrarius_M_N : N ; -- [XXXDX] :: water-carrier; + utricularius_M_N : N ; -- [XXXES] :: bagpiper; raft-master; one who uses animal bladders; + utriculus_M_N : N ; -- [XXXDX] :: wineskin, leather bottle; + utrimque_Adv : Adv ; -- [XXXBF] :: on/from both sides/parts; at both ends; on one side and on the other; + utrimquesecus_Adv : Adv ; -- [XXXCO] :: on both sides; + utrinde_Adv : Adv ; -- [XXXFO] :: from either side; + utrinque_Adv : Adv ; -- [FXXCF] :: on/from both sides/parts; at both ends; on one side and on the other; + utro_Adv : Adv ; -- [XXXEO] :: to which side (of two)?; in which direction?; + utrobique_Adv : Adv ; -- [XXXCO] :: in both places; on both parts/sides/cases/instances; on one side and the other; + utrolibet_Adv : Adv ; -- [XXXFO] :: to whichever side you please; + utroque_Adv : Adv ; -- [XXXCO] :: to both places; in both directions; to both sides (in conflict); + utrubique_Adv : Adv ; -- [XXXCO] :: in both places; on both parts/sides/cases/instances; on one side and the other; + utrum_Adv : Adv ; -- [XXXBO] :: whether; (introducing an indirect question); [utrum...an => whether...or]; + utrumlibet_Adv : Adv ; -- [EXXFZ] :: on either side; whichever/wherever (side) you please; + utrumnam_Conj : Conj ; -- [EXXFP] :: whether; (Vulgate 1 Samuel 10:22); + utut_Conj : Conj ; -- [XXXCO] :: however; in whatever way; + uva_F_N : N ; -- [XXXBX] :: grape; + uvesco_V : V ; -- [XXXDX] :: become wet; + uvidulus_A : A ; -- [XXXDX] :: wet, damp; + uvidus_A : A ; -- [XXXDX] :: wet, soaked, dripping; moistened with drinking; + uvor_M_N : N ; -- [XXXFO] :: moisture; moistness (L+S); humidity; wetness (Ecc); dampness; + uxor_F_N : N ; -- [XXXBO] :: wife; [uxorem ducere => marry, bring home as wife]; + uxorcula_F_N : N ; -- [XXXFS] :: little wife; (literally and endearing); + uxorculo_V : V ; -- [XXXFO] :: play the part of a wife; + uxorium_N_N : N ; -- [XXXEO] :: old-bachelor tax; potions (pl.) to cause fondness for a wife; (Viagra?); + uxorius_A : A ; -- [XXXCO] :: of or belonging to a wife; of marriage; excessively fond of one's wife; + va_Interj : Interj ; -- [DXXCO] :: Ha!/oh!/ah!; (exclamation of pain/dismay, of contempt/anger, of surprise/joy); + vacatio_F_N : N ; -- [XXXDX] :: freedom, exemption; privilege; + vacca_F_N : N ; -- [XAXCO] :: cow; + vaccinatio_F_N : N ; -- [GBXEK] :: vaccination; + vaccinium_N_N : N ; -- [GAXEK] :: huckleberry; + vaccinum_N_N : N ; -- [GBXEK] :: vaccine; (from a cow/vacca); + vaccinus_A : A ; -- [XAXEO] :: cow-; of/derived from a cow; + vaccula_F_N : N ; -- [XAXDO] :: young cow; heifer; small cow (L+S); + vacefio_V : V ; -- [XXXFO] :: become/be made empty; be vacated; + vacerra_F_N : N ; -- [XXXCO] :: wooden post/stake; fence post; rail fence; log, block; blockhead; dumb as post; + vacerrosus_A : A ; -- [XXXDX] :: crack brained (term of abuse used by Augustus), demented, mad, crazy; + vacillo_V : V ; -- [XXXDX] :: stagger, totter; be in a weak condition; + vacive_Adv : Adv ; -- [BXXES] :: leisurely; + vacivus_A : A ; -- [BXXES] :: empty; void; + vaco_V : V ; -- [XXXAX] :: be empty; be vacant; be idle; be free from, be unoccupied; + vacuefacio_V2 : V2 ; -- [XXXCO] :: empty/free/clear place); make room; make vacant; disencumber; abolish (L+S); + vacuitas_F_N : N ; -- [XXXCS] :: vacancy, empty space; absence of, freedom/exemption from; leisure, indolence; + vacuo_V : V ; -- [XXXDX] :: empty; + vacuus_A : A ; -- [XXXBX] :: empty, vacant, unoccupied; devoid of, free of; + vadimonium_N_N : N ; -- [XXXDX] :: bail, security, surety; + vadio_V : V ; -- [FLXFY] :: pledge (to meet debt); + vado_V : V ; -- [XXXDX] :: ford; + vado_V2 : V2 ; -- [XXXBX] :: go, advance, rush, hurry; walk; + vador_V : V ; -- [XXXDX] :: accept sureties from (the other party) for his appearance in court; + vadosus_A : A ; -- [XXXDX] :: full of shallows; + vadum_N_N : N ; -- [XXXBX] :: shallow place, stream; ford, shoal; channel; + vae_Interj : Interj ; -- [XXXBX] :: alas, woe, ah; oh dear; (Vae, puto deus fio. - Vespasian); Bah!, Curses!; + vaenum_N_N : N ; -- [DXXES] :: sale, purchase; (only sg. ACC/DAT w/dare); [venum dare => put up for sale]; + vafer_A : A ; -- [XXXDX] :: sly, cunning, crafty; + vaflum_N_N : N ; -- [GXXEK] :: waffle; + vaframentum_N_N : N ; -- [XXXEO] :: trick, crafty/clever device/stratagem; quirk; artifice; + vagabundus_A : A ; -- [XXXDS] :: strolling about; vagabond; roving/wandering; + vage_Adv : Adv ; -- [XXXDX] :: so as to move in different directions over a wide area; + vagina_F_N : N ; -- [XXXDX] :: sheath, scabbard; + vagio_V2 : V2 ; -- [XXXDX] :: utter cries of distress, wail, squall; + vagitus_M_N : N ; -- [XXXDX] :: crying; + vagor_V : V ; -- [XXXBX] :: wander, roam; + vagus_A : A ; -- [XXXDX] :: roving, wandering; + vah_Interj : Interj ; -- [XXXCO] :: Ha!/oh!/ah!; (exclamation of pain/dismay, of contempt/anger, of surprise/joy); + vaha_Interj : Interj ; -- [BXXCO] :: Ha!/oh!/ah!; (exclamation of pain/dismay, of contempt/anger, of surprise/joy); + valde_Adv : Adv ; -- [XXXBO] :: greatly/very/intensely; vigorously/strongly/powerfully/energetically; loudly; + valedico_V : V ; -- [XXXFO] :: say goodbye; + valefacio_V : V ; -- [XXXFO] :: say goodbye; + valens_A : A ; -- [XXXAO] :: strong; vigorous/healthy/robust; powerful/potent/effective; severe; influential; + valenter_Adv : Adv ; -- [XXXCO] :: strongly/forcefully/powerfully/vigorously/sturdily; w/vigor of action/language; + valentulus_A : A ; -- [XXXDS] :: strong, stout; + valeo_V : V ; -- [XXXAX] :: be strong/powerful/influential/healthy; prevail; [vale => goodbye/farewell]; + valeriana_F_N : N ; -- [GXXEK] :: valerian, herbaceous plant of genus Valeriana; sedative drug from its root; + valerianella_F_N : N ; -- [GXXEK] :: chew; + valesco_V : V ; -- [XXXDX] :: become sound in health; become powerful; + valet_V0 : V ; -- [XXXDX] :: farewell, goodbye, adieu (the Roman equivalent of "Live long and prosper"); + valetudinarium_N_N : N ; -- [GXXEK] :: hospital; + valetudo_F_N : N ; -- [XXXBX] :: good health, soundness; condition of body/health; illness, indisposition; + valgus_A : A ; -- [XBXEO] :: knock-kneed, having legs converging at the knee and diverging below; + validus_A : A ; -- [XXXAX] :: strong, powerful; valid; + valitudo_F_N : N ; -- [XXXDX] :: good health, soundness; condition of body/health; illness, indisposition; + vallaris_A : A ; -- [XXXDX] :: of a rampart/corona; of the first soldier to scale an enemy rampart (vallum); + vallaris_F_N : N ; -- [XXXDX] :: crown/garland awarded to first soldier to scale an enemy rampart (vallum); + valles_F_N : N ; -- [XXXBX] :: valley, vale, hollow; + vallis_F_N : N ; -- [XXXDX] :: valley, vale, hollow; + vallo_V : V ; -- [XXXDX] :: surround/fortify/furnish (camp, etc) with a palisaded rampart; + vallum_N_N : N ; -- [XXXBX] :: wall, rampart; entrenchment, line of palisades, stakes; + vallus_M_N : N ; -- [XXXDX] :: stake, palisade, point, post, pole; + valor_M_N : N ; -- [XXXDX] :: valor; + valorosus_A : A ; -- [GXXEK] :: brave; valorous; + valva_F_N : N ; -- [XXXDX] :: double or folding door (usu. pl.), one leaf of the doors; + vanesco_V : V ; -- [XXXDX] :: vanish, fade, disappear; + vanidicus_A : A ; -- [XXXFS] :: vain-speaking; + vanidicus_M_N : N ; -- [XXXFS] :: liar; + vanilla_F_N : N ; -- [GXXEK] :: vanilla; + vanilleus_A : A ; -- [GXXEK] :: vanilla-flavored; + vaniloquentia_F_N : N ; -- [XXXDX] :: idle talk, chatter; boastful speech; + vaniloquor_V : V ; -- [XXXDX] :: talk idly; + vaniloquus_A : A ; -- [XXXEC] :: lying; boastful; + vanitas_F_N : N ; -- [XXXDX] :: emptiness, untruthfulness; futility, foolishness, empty pride; + vannus_M_N : N ; -- [XXXDX] :: winnowing basket; + vanus_A : A ; -- [XXXBX] :: empty, vain; false, untrustworthy; + vapide_Adv : Adv ; -- [XXXFO] :: in a flat/vapid manner; [vapide se habere => be poorly - Augustus]; + vapidus_A : A ; -- [XXXDO] :: flat, vapid; that has lost its freshness (of wine); + vapor_M_N : N ; -- [DXXDS] :: |sound; cry; + vaporarium_N_N : N ; -- [XTXES] :: room for circulating steam heating bath suite; steam-pipe (for baths L+S); + vaporarius_A : A ; -- [GXXEK] :: steam-powered; + vaporo_V : V ; -- [XXXDX] :: cover or fill with vapor; heat, warm; be hot; + vappa_F_N : N ; -- [XXXDX] :: flat wine, wine that has gone flat; + vappa_M_N : N ; -- [XXXDX] :: worthless person; good-for-nothing; + vapulatio_F_N : N ; -- [FXXEM] :: flogging; threshing; + vapulator_M_N : N ; -- [FXXEM] :: flogger; thresher; + vapulo_V : V ; -- [XXXDX] :: be beaten; + vapulus_A : A ; -- [FXXEN] :: flogged, beaten; knocked about; + variabilis_A : A ; -- [DXXES] :: variable, changeable; + variantia_F_N : N ; -- [XXXDX] :: diversity, variety; + varianus_A : A ; -- [XXXFS] :: diverse-colored; variegated (Pliny); of Varus; + variatio_F_N : N ; -- [XXXDX] :: divergence of behavior; + varico_V : V ; -- [XXXFS] :: straddle (with legs apart); + varicosus_A : A ; -- [XXXFS] :: varicose; full of dilated veins; + varicus_A : A ; -- [XXXDX] :: straddling; + varietas_F_N : N ; -- [XXXBX] :: variety, difference; mottled appearance; + vario_V : V ; -- [XXXBX] :: mark with contrasting colors, variegate; vary, waver; fluctuate, change; + varius_A : A ; -- [XXXAX] :: different; various, diverse; changing; colored; party colored, variegated; varix_F_N : N ; -- [XBXEC] :: varicose vein; - varix_M_N : N ; - varus_A : A ; - vas_M_N : N ; - vas_N_N : N ; - vasarium_N_N : N ; - vascularius_M_N : N ; - vasculum_N_N : N ; - vassallus_M_N : N ; - vastatio_F_N : N ; - vastator_M_N : N ; - vastificus_A : A ; - vastitas_F_N : N ; - vastities_F_N : N ; - vasto_V : V ; - vastus_A : A ; - vasum_N_N : N ; - vasus_M_N : N ; - vates_M_N : N ; - vaticinatio_F_N : N ; - vaticinator_M_N : N ; - vaticinium_N_N : N ; - vaticinius_A : A ; - vaticinor_V : V ; - vaticinus_A : A ; - vatillum_N_N : N ; - vatis_F_N : N ; - vatius_A : A ; - vattium_N_N : N ; - vav_N : N ; - vavasor_M_N : N ; - vecordia_F_N : N ; - vecors_A : A ; - vectigal_N_N : N ; - vectigalis_A : A ; - vectio_F_N : N ; - vectis_M_N : N ; - vecto_V2 : V2 ; - vector_M_N : N ; - vectorius_A : A ; - vectura_F_N : N ; - vegeo_V : V ; - vegetabilis_A : A ; - vegetabiliter_Adv : Adv ; - vegetale_N_N : N ; - vegetalis_A : A ; - vegetarianus_A : A ; - vegetatio_F_N : N ; - vegetativus_A : A ; - vegeto_V2 : V2 ; - vegetus_A : A ; - vegrandis_A : A ; - vehemens_A : A ; - vehementer_Adv : Adv ; - vehiculum_N_N : N ; - veho_V2 : V2 ; - vel_Adv : Adv ; - vel_Conj : Conj ; - velamen_N_N : N ; - velamentum_N_N : N ; - velarium_N_N : N ; - veles_M_N : N ; - velifer_A : A ; - velificatio_F_N : N ; - velificator_M_N : N ; - velifico_V : V ; - velificor_V : V ; - velitaris_A : A ; - velitatio_F_N : N ; - velitor_V : V ; - velivolans_A : A ; - velivolum_N_N : N ; - velivolus_A : A ; - vellaea_F_N : N ; - vellea_F_N : N ; - velleianus_A : A ; - vellicatim_Adv : Adv ; - vellico_V : V ; - vello_V2 : V2 ; - vellus_N_N : N ; - velo_V : V ; - velocitas_F_N : N ; - velociter_Adv : Adv ; - velox_A : A ; - velum_N_N : N ; - velut_Adv : Adv ; - veluti_Adv : Adv ; - vemens_A : A ; - vena_F_N : N ; - venabulum_N_N : N ; - venalicius_A : A ; - venalicius_M_N : N ; - venalis_A : A ; - venalitas_F_N : N ; - venaticus_A : A ; - venatio_F_N : N ; - venator_M_N : N ; - venatorius_A : A ; - venatrix_F_N : N ; - venatus_M_N : N ; - vendibilis_A : A ; - vendico_V : V ; - venditatio_F_N : N ; - venditio_F_N : N ; - vendito_V : V ; - venditor_M_N : N ; - venditrix_F_N : N ; - vendo_V2 : V2 ; - venefica_F_N : N ; - veneficium_N_N : N ; - veneficus_A : A ; - veneficus_M_N : N ; - venenatus_A : A ; - venenifer_A : A ; - veneno_V : V ; - venenum_N_N : N ; - veneo_1_V : V ; - veneo_2_V : V ; - venerabilis_A : A ; - venerabundus_A : A ; - veneranter_Adv : Adv ; - veneratio_F_N : N ; - venerator_M_N : N ; - venero_V : V ; - veneror_V : V ; - venetum_N_N : N ; - venetus_A : A ; - venetus_M_N : N ; - venia_F_N : N ; - venio_V2 : V2 ; - vennucula_F_N : N ; - venor_V : V ; - venosus_A : A ; - ventagium_N_N : N ; - venter_M_N : N ; - ventilabrum_N_N : N ; - ventilagium_N_N : N ; - ventilatrum_N_N : N ; - ventilo_V : V ; - ventimolina_F_N : N ; - ventito_V : V ; - ventosus_A : A ; - ventriculus_M_N : N ; - ventriosus_A : A ; - ventulus_M_N : N ; - ventus_M_N : N ; - venucula_F_N : N ; - venum_N_N : N ; - venumdo_V2 : V2 ; - venundo_V2 : V2 ; - venus_M_N : N ; - venustas_F_N : N ; - venuste_Adv : Adv ; - venusto_V2 : V2 ; - venustulus_A : A ; - venustus_A : A ; - vepallidus_A : A ; - veprecula_F_N : N ; - vepris_M_N : N ; - ver_N_N : N ; - veraciter_Adv : Adv ; - veratrum_N_N : N ; - verax_A : A ; - verbatim_Adv : Adv ; - verbena_F_N : N ; - verbeneca_F_N : N ; - verber_N_N : N ; - verberabilis_A : A ; - verberatus_M_N : N ; - verbero_M_N : N ; - verbero_V : V ; - verbosus_A : A ; - verbum_N_N : N ; - vere_Adv : Adv ; - verecundia_F_N : N ; - verecundor_V : V ; - verecundus_A : A ; - veredictum_N_N : N ; - veredus_M_N : N ; - verendum_N_N : N ; - verendus_A : A ; - vereor_V : V ; - veretilla_F_N : N ; - veretrum_N_N : N ; - verfico_V2 : V2 ; - vergo_V : V ; - vergobretus_M_N : N ; - vericulum_N_N : N ; - veridicus_A : A ; - verifico_V2 : V2 ; - veriloquium_N_N : N ; - verisimilis_A : A ; - verisimilitudo_F_N : N ; - veritas_F_N : N ; - veritate_Adv : Adv ; - vermiculus_M_N : N ; - verminatio_F_N : N ; - vermino_V : V ; - vermis_M_N : N ; - verna_C_N : N ; - vernaculus_A : A ; - vernilis_A : A ; - verniliter_Adv : Adv ; - vernix_M_N : N ; - verno_V : V ; - vernula_F_N : N ; - vernus_A : A ; - vero_Adv : Adv ; - verpa_F_N : N ; - verpus_A : A ; - verres_M_N : N ; - verrinus_A : A ; - verris_M_N : N ; - verro_V2 : V2 ; - verruca_F_N : N ; - verrucosus_A : A ; - verrunco_V : V ; - verrutum_N_N : N ; - versabundus_A : A ; - versara_F_N : N ; - versatilis_A : A ; - versatio_F_N : N ; - versicolor_A : A ; - versiculus_M_N : N ; - versificatio_F_N : N ; - versificator_M_N : N ; - versifico_V : V ; - versilis_A : A ; - versio_F_N : N ; - versipellis_M_N : N ; - verso_V : V ; - versor_V : V ; - versum_Acc_Prep : Prep ; - versum_Adv : Adv ; - versus_Acc_Prep : Prep ; - versus_Adv : Adv ; - versus_M_N : N ; - versutia_F_N : N ; - versutiloquus_A : A ; - versutus_A : A ; - vertebra_F_N : N ; - vertex_M_N : N ; - vertibilis_A : A ; - vertibilitas_F_N : N ; - verticitas_F_N : N ; - verticosus_A : A ; - vertigo_F_N : N ; - verto_V2 : V2 ; - veru_N_N : N ; - verum_Adv : Adv ; - verum_N_N : N ; - verumtamen_Conj : Conj ; - verus_A : A ; - verutum_N_N : N ; - verutus_A : A ; - vervex_M_N : N ; - vesania_F_N : N ; - vesaniens_A : A ; - vesanus_A : A ; - vescor_V : V ; - vescus_A : A ; - vesica_F_N : N ; - vesicuia_F_N : N ; - vesicula_F_N : N ; - vespa_F_N : N ; - vesper_M_N : N ; - vespera_F_N : N ; - vesperasco_V : V ; - vesperasct_V0 : V ; - vesperi_Adv : Adv ; - vespertilio_M_N : N ; - vespertinus_A : A ; - vespillo_M_N : N ; - vester_A : A ; - vestiarium_N_N : N ; - vestiarius_M_N : N ; - vestibulum_N_N : N ; - vestigium_N_N : N ; - vestigo_V : V ; - vestimentum_N_N : N ; - vestio_V2 : V2 ; - vestiplica_F_N : N ; - vestis_F_N : N ; - vestispica_F_N : N ; - vestitus_M_N : N ; - veter_A : A ; - veteranus_A : A ; - veterasco_V : V ; - veterator_M_N : N ; - veteratorie_Adv : Adv ; - veteratorius_A : A ; - veteresco_V : V ; - veterinarius_M_N : N ; - veterinus_A : A ; - veternosus_A : A ; - veternus_M_N : N ; - vetero_V2 : V2 ; - veto_V2 : V2 ; - vetulus_A : A ; - vetus_A : A ; - vetus_M_N : N ; - vetus_N_N : N ; - vetust_A : A ; - vetustas_F_N : N ; - vetuste_Adv : Adv ; - vetustus_A : A ; - vexamen_N_N : N ; - vexatio_F_N : N ; - vexillarius_M_N : N ; - vexillatio_F_N : N ; - vexilliatio_F_N : N ; - vexillium_N_N : N ; - vexillum_N_N : N ; - vexo_V : V ; - via_F_N : N ; - viaeductus_M_N : N ; - viaticum_N_N : N ; - viaticus_A : A ; - viator_M_N : N ; - viatorius_A : A ; - vibramen_N_N : N ; - vibro_V : V ; - viburnum_N_N : N ; - vicanus_A : A ; - vicanus_M_N : N ; - vicaria_F_N : N ; - vicariatus_M_N : N ; - vicarius_A : A ; - vicarius_M_N : N ; - vicatim_Adv : Adv ; - vicecomes_M_N : N ; - vicedominus_M_N : N ; - vicennal_N_N : N ; - vicenus_A : A ; - vicepraepositus_M_N : N ; - vicesima_F_N : N ; - vicesimanus_M_N : N ; - vicesimarius_A : A ; - vicia_F_N : N ; - vicies_Adv : Adv ; - vicinalis_A : A ; - vicinia_F_N : N ; - vicinitas_F_N : N ; - vicinum_N_N : N ; - vicinus_A : A ; - vicinus_M_N : N ; - vicis_F_N : N ; - vicissatim_Adv : Adv ; - vicissim_Adv : Adv ; - vicissitudo_F_N : N ; - victima_F_N : N ; - victimarius_M_N : N ; - victimo_V2 : V2 ; - victor_A : A ; - victor_M_N : N ; - victoria_F_N : N ; - victoriatus_M_N : N ; - victoriola_F_N : N ; - victoriosus_A : A ; - victrix_A : A ; - victrix_F_N : N ; - victuale_N_N : N ; - victualis_A : A ; - victuma_F_N : N ; - victus_M_N : N ; - viculus_M_N : N ; - vicus_M_N : N ; - videlicet_Adv : Adv ; - video_V : V ; - viduatus_A : A ; - viduitas_F_N : N ; - vidulus_M_N : N ; - viduo_V : V ; - viduus_A : A ; - vieo_V : V ; - vietus_A : A ; - vigens_A : A ; - vigenter_Adv : Adv ; - vigentia_F_N : N ; - vigeo_V : V ; - vigerius_M_N : N ; - vigesco_V2 : V2 ; - vigies_Adv : Adv ; - vigil_A : A ; - vigil_M_N : N ; - vigilabilis_A : A ; - vigilans_A : A ; - vigilanter_Adv : Adv ; - vigilantia_F_N : N ; - vigilax_A : A ; - vigilia_F_N : N ; - vigilo_V : V ; - vigintisexvir_M_N : N ; - vigintivir_M_N : N ; - vigintiviratus_M_N : N ; - vigor_M_N : N ; - vigoratio_M_N : N ; - vigoratus_A : A ; - vigoro_V : V ; - vigorosus_A : A ; - vilesco_V : V ; - vilica_F_N : N ; - vilicatio_M_N : N ; - vilico_V : V ; - vilicus_M_N : N ; - vilipendo_V : V ; - vilipensio_F_N : N ; - vilis_A : A ; - vilitas_F_N : N ; - villa_F_N : N ; - villana_F_N : N ; - villanus_M_N : N ; - villata_F_N : N ; - villaticus_A : A ; - villenagium_N_N : N ; - villica_F_N : N ; - villicatio_M_N : N ; - villico_V : V ; - villicus_M_N : N ; - villosus_A : A ; - villula_F_N : N ; - villus_M_N : N ; - vimen_N_N : N ; - vimineus_A : A ; - vinaceus_A : A ; - vinarium_N_N : N ; - vinarius_M_N : N ; - vincio_V2 : V2 ; - vinclum_N_N : N ; - vinco_V2 : V2 ; - vinculum_N_N : N ; - vindemia_F_N : N ; - vindemiator_M_N : N ; - vindemiatorius_A : A ; - vindemio_V : V ; - vindemiola_F_N : N ; - vindex_M_N : N ; - vindicatio_F_N : N ; - vindicia_F_N : N ; - vindico_V : V ; - vindicta_F_N : N ; - vinea_F_N : N ; - vinetum_N_N : N ; - vineus_A : A ; - vinia_F_N : N ; - vinitor_M_N : N ; - vinolentia_F_N : N ; - vinolentus_A : A ; - vinosus_A : A ; - vinulentus_A : A ; - vinum_N_N : N ; - viocurus_M_N : N ; - viola_F_N : N ; - violabilis_A : A ; - violaceus_A : A ; - violacium_N_N : N ; - violarium_N_N : N ; - violatio_F_N : N ; - violator_M_N : N ; - violens_A : A ; - violenter_Adv : Adv ; - violentia_F_N : N ; - violentus_A : A ; - violina_F_N : N ; - violinista_M_N : N ; - violo_V : V ; - violoncellum_N_N : N ; - vipera_F_N : N ; - vipereus_A : A ; - viperinus_A : A ; - vir_M_N : N ; - virago_F_N : N ; - virdiarium_N_N : N ; - virectum_N_N : N ; - virens_A : A ; - virens_N_N : N ; - vireo_V : V ; - viresco_V : V ; - virga_F_N : N ; - virgatus_A : A ; - virgetum_N_N : N ; - virgeus_A : A ; - virginal_N_N : N ; - virginalis_A : A ; - virginarius_A : A ; - virginea_F_N : N ; - virginea_M_N : N ; - virgineus_A : A ; - virginia_F_N : N ; - virginia_M_N : N ; - virginitas_F_N : N ; - virginius_A : A ; - virgo_F_N : N ; - virgula_F_N : N ; - virgultum_N_N : N ; - virguncula_F_N : N ; - viridarium_N_N : N ; - viridiarium_N_N : N ; - viridis_A : A ; - viriditas_F_N : N ; - virido_V : V ; - viridor_V : V ; - virilis_A : A ; - viriliter_Adv : Adv ; - viripotens_A : A ; - viritim_Adv : Adv ; - viritualis_A : A ; - viror_M_N : N ; - virosus_A : A ; - virtualis_A : A ; - virtualis_F_N : N ; - virtualitas_F_N : N ; - virtualiter_Adv : Adv ; - virtualosus_A : A ; - virtuose_Adv : Adv ; - virtus_F_N : N ; - virulentus_A : A ; - virum_N_N : N ; - virus_N_N : N ; - vis_F_N : N ; - visa_F_N : N ; - viscatus_A : A ; - viscer_N_N : N ; - visceratio_F_N : N ; - vischium_N_N : N ; - visco_V2 : V2 ; - viscum_N_N : N ; - viscus_M_N : N ; - viscus_N_N : N ; - visibilis_A : A ; - visibiliter_Adv : Adv ; - visificus_A : A ; - visio_F_N : N ; - visitatio_F_N : N ; - visitator_M_N : N ; - visitatorius_A : A ; - visito_V : V ; - visnetum_N_N : N ; - viso_V2 : V2 ; - visocaseta_F_N : N ; - vison_M_N : N ; - visorius_A : A ; - vispellio_M_N : N ; - vispilio_M_N : N ; - vispillo_M_N : N ; - visum_N_N : N ; - visus_M_N : N ; - vita_F_N : N ; - vitabilis_A : A ; - vitabundus_A : A ; - vital_N_N : N ; - vitalis_A : A ; - vitaliter_Adv : Adv ; - vitaminum_N_N : N ; - vitatio_F_N : N ; - vitellum_N_N : N ; - vitellus_M_N : N ; - viteus_A : A ; - vitex_F_N : N ; - viticula_F_N : N ; - vitifer_A : A ; - vitigenus_A : A ; - vitil_N_N : N ; - vitilena_F_N : N ; - vitilis_A : A ; - vitilitigo_V : V ; - vitilla_F_N : N ; - vitio_V : V ; - vitiosus_A : A ; - vitis_F_N : N ; - vitisator_M_N : N ; - vitium_N_N : N ; - vito_V : V ; - vitreo_V : V ; - vitreus_A : A ; - vitricus_M_N : N ; - vitriolum_N_N : N ; - vitriterstrum_N_N : N ; - vitrum_N_N : N ; - vitta_F_N : N ; - vittatus_A : A ; - vitula_F_N : N ; - vitulamen_N_N : N ; - vitulina_F_N : N ; - vitulinus_A : A ; - vitulus_M_N : N ; - vituperabilis_A : A ; - vituperabiliter_Adv : Adv ; - vituperatio_F_N : N ; - vitupero_V : V ; + varix_M_N : N ; -- [XBXEC] :: varicose vein; + varus_A : A ; -- [XXXDX] :: bent-outwards; bandy; bow-legged; contrasting; + vas_M_N : N ; -- [XLXCO] :: one who guarantees court appearance of defendant; surety; bail (L+S); + vas_N_N : N ; -- [XXXAO] :: vessel/dish; vase; pack/kit; utensil/instrument/tool; equipment/apparatus (pl.); + vasarium_N_N : N ; -- [XXXEC] :: outfit allowance; + vascularius_M_N : N ; -- [XXXEC] :: maker of vessels, esp. in metal; + vasculum_N_N : N ; -- [XXXCO] :: small vessel/container/vase; (seed) capsule, calyx; instrument, tool; penis; + vassallus_M_N : N ; -- [FXXEM] :: vassal; servant; + vastatio_F_N : N ; -- [XXXDX] :: laying waste, ravaging; + vastator_M_N : N ; -- [XXXDX] :: destroyer, ravager; + vastificus_A : A ; -- [XXXEC] :: devastating; + vastitas_F_N : N ; -- [XXXDX] :: desolation; devastation; + vastities_F_N : N ; -- [XXXDS] :: ruin; destruction; + vasto_V : V ; -- [XXXDX] :: lay waste, ravage, devastate; + vastus_A : A ; -- [XXXBX] :: huge, vast; monstrous; + vasum_N_N : N ; -- [XXXAO] :: vessel/dish; vase; pack/kit; utensil/instrument/tool; equipment/apparatus (pl.); + vasus_M_N : N ; -- [XXXAE] :: vessel/dish; vase; pack/kit; utensil/instrument/tool; equipment/apparatus (pl.); + vates_M_N : N ; -- [XXXBO] :: prophet/seer, mouthpiece of deity; oracle, soothsayer; poet (divinely inspired); + vaticinatio_F_N : N ; -- [XEXDO] :: prophecy, prediction; + vaticinator_M_N : N ; -- [XEXFO] :: prophet; seer; + vaticinium_N_N : N ; -- [FEXFS] :: prediction; prophecy; + vaticinius_A : A ; -- [XEXES] :: prophetic, vatic; revealing future by divine inspiration; + vaticinor_V : V ; -- [XEXCO] :: prophesy; utter inspired predictions/warnings; rave, talk wildly; + vaticinus_A : A ; -- [XEXEO] :: prophetic, vatic; revealing future by divine inspiration; + vatillum_N_N : N ; -- [XXXES] :: shovel; fire/coal/dirt/dung shovel; chafing dish, fire/fumigating/incense pan; + vatis_F_N : N ; -- [XXXBO] :: prophetess/ mouthpiece of deity; oracle/soothsayer; poetess (divinely inspired); + vatius_A : A ; -- [XXXFS] :: kept-outwards; bow-legged; + vattium_N_N : N ; -- [GSXEK] :: watt; + vav_N : N ; -- [DEQEW] :: vav; (6th letter of Hebrew alphabet); (transliterate as V); + vavasor_M_N : N ; -- [FLXFM] :: vavasour; under-tenant; (feudal); feudal tenant ranking right below baron (OED); + vecordia_F_N : N ; -- [XXXDX] :: frenzy; + vecors_A : A ; -- [XXXDX] :: mad; frenzied; + vectigal_N_N : N ; -- [XXXDX] :: tax, tribute, revenue; + vectigalis_A : A ; -- [XXXDX] :: yielding taxes, subject to taxation; + vectio_F_N : N ; -- [XXXDS] :: conveyance; transport; + vectis_M_N : N ; -- [XXXDX] :: crowbar, lever; + vecto_V2 : V2 ; -- [XXXCO] :: transport, carry; (of habitual agent/means); (PASS) ride, be conveyed, travel; + vector_M_N : N ; -- [XXXDX] :: passenger; one that carries or transports; + vectorius_A : A ; -- [XXXDX] :: for carrying; [vectorium navigium => transport/cargo ship]; + vectura_F_N : N ; -- [XXXDX] :: transportation, carriage; + vegeo_V : V ; -- [XXXEC] :: stir up, excite; + vegetabilis_A : A ; -- [FXXEM] :: vegetative; capable of growth; + vegetabiliter_Adv : Adv ; -- [FXXEN] :: vigorously; + vegetale_N_N : N ; -- [GAXEK] :: plant; + vegetalis_A : A ; -- [GAXEK] :: plant-like; + vegetarianus_A : A ; -- [GXXEK] :: vegetarian; + vegetatio_F_N : N ; -- [FXXEM] :: power of growth; vegetation (Cal); + vegetativus_A : A ; -- [FBXDM] :: vegetative; capable of growth; + vegeto_V2 : V2 ; -- [XXXCO] :: invigorate; impart energy to; + vegetus_A : A ; -- [XXXBO] :: vigorous, active, energetic; invigorating; lively, bright, vivid, quick; + vegrandis_A : A ; -- [XXXDX] :: far from large, puny; + vehemens_A : A ; -- [XXXAX] :: violent, severe, vehement; emphatic, vigorous, lively; + vehementer_Adv : Adv ; -- [XXXDX] :: vehemently, vigorously; exceedingly, very much; + vehiculum_N_N : N ; -- [XXXDX] :: carriage, vehicle; + veho_V2 : V2 ; -- [XXXBX] :: bear, carry, convey; pass, ride, sail; + vel_Adv : Adv ; -- [XXXBX] :: even, actually; or even, in deed; or; + vel_Conj : Conj ; -- [XXXAX] :: or; [vel ... vel => either ... or]; + velamen_N_N : N ; -- [XXXCO] :: veil; for nun/Muslim); covering (esp. clothing for body/parts); + velamentum_N_N : N ; -- [XXXDX] :: cover, olive-branch wrapped in wool carried by a suppliant; + velarium_N_N : N ; -- [XXXDS] :: awning; covering (over theater); + veles_M_N : N ; -- [XXXDX] :: light-armed foot-soldier; guerrilla forces (pl.), irregular bands; skirmishers; + velifer_A : A ; -- [XXXDX] :: carrying a sail; + velificatio_F_N : N ; -- [XWXEC] :: sailing; + velificator_M_N : N ; -- [GXXEK] :: sailor; + velifico_V : V ; -- [XWXCO] :: sail (ship); operate sails; set/direct course; direct effort towards, work for; + velificor_V : V ; -- [XWXDO] :: sail (ship); operate sails; set/direct course; direct effort towards, work for; + velitaris_A : A ; -- [XXXDX] :: of or belonging to the velites (guerrilla forces); + velitatio_F_N : N ; -- [XXXES] :: skirmishing; bickering, wrangling (Nelson); + velitor_V : V ; -- [XXXFS] :: skirmish; fight like light troops (velites); + velivolans_A : A ; -- [XWXEC] :: flying with sails; + velivolum_N_N : N ; -- [HTXEK] :: glider; + velivolus_A : A ; -- [XXXDX] :: speeding along under sail; characterized by speeding sails; + vellaea_F_N : N ; -- [XLXES] :: Vellaean Law, Roman law of 46 AD providing woman cannot be surety for another; + vellea_F_N : N ; -- [XLXES] :: Vellaean Law, Roman law of 46 AD providing woman cannot be surety for another; + velleianus_A : A ; -- [XLXES] :: Vellaean; of Vellaean Law; (on woemn's rights); + vellicatim_Adv : Adv ; -- [XXXFS] :: piecemeal; (by pinches); + vellico_V : V ; -- [XXXDX] :: pinch, nip; criticize carpingly; + vello_V2 : V2 ; -- [XXXAO] :: pluck/pull/tear out; extract; pull hair/plants; uproot; depilate; demolish; + vellus_N_N : N ; -- [XXXBX] :: fleece; + velo_V : V ; -- [XXXBX] :: veil, cover, cover up; enfold, wrap, envelop; hide, conceal; clothe in; + velocitas_F_N : N ; -- [XXXDX] :: speed, swiftness; velocity; + velociter_Adv : Adv ; -- [XXXCO] :: swiftly/rapidly, with speed of movement; quickly, in a short time; + velox_A : A ; -- [XXXBX] :: swift, quick, fleet, rapid, speedy; + velum_N_N : N ; -- [XXXBX] :: sail, covering; curtain; [vela vento dare => sail away]; + velut_Adv : Adv ; -- [XXXAX] :: just as, as if; + veluti_Adv : Adv ; -- [XXXBX] :: just as, as if; + vemens_A : A ; -- [XXXFS] :: violent; emphatic; vehement; + vena_F_N : N ; -- [XXXBX] :: blood-vessel, vein; artery; pulse; fissure, pore, cavity; vein of ore/talent; + venabulum_N_N : N ; -- [XXXDX] :: hunting-spear; + venalicius_A : A ; -- [XXXDX] :: for sale; + venalicius_M_N : N ; -- [XXXDX] :: slave dealer; + venalis_A : A ; -- [XXXDX] :: for sale; (that is) on hire; open to the influence of bribes; + venalitas_F_N : N ; -- [DLXES] :: corruptibility; venality; capability of being bought (by bribes); + venaticus_A : A ; -- [XXXDX] :: for hunting; + venatio_F_N : N ; -- [XXXDX] :: hunting; the chase; + venator_M_N : N ; -- [XXXBX] :: hunter; + venatorius_A : A ; -- [XXXDS] :: hunter's; of a hunter; + venatrix_F_N : N ; -- [XXXDX] :: huntress; + venatus_M_N : N ; -- [XXXDX] :: hunting, hunt; + vendibilis_A : A ; -- [XXXDX] :: that can (easily) be sold, marketable; + vendico_V : V ; -- [XXXES] :: claim, vindicate; punish, avenge; (alternative spelling of vindico); + venditatio_F_N : N ; -- [XXXDS] :: showing-off; specious display; boasting; + venditio_F_N : N ; -- [XXXCO] :: sale, action/process of selling; document recording a sale; + vendito_V : V ; -- [XXXDX] :: offer for sale; cry up; pay court (to); + venditor_M_N : N ; -- [XXXCO] :: seller/vendor; one who sells for bribes or corrupt payments; + venditrix_F_N : N ; -- [XLXES] :: female seller; + vendo_V2 : V2 ; -- [XXXAX] :: sell; + venefica_F_N : N ; -- [XXXCO] :: witch, sorceress, enchantress; hag; jade; poisoner (female); mixer of poisons; + veneficium_N_N : N ; -- [XXXCI] :: magic/sorcery; poisoning; crime of poisoning; mixing of poison; poisoned drink; + veneficus_A : A ; -- [XXXDX] :: of/connected with sorcery/charms, sorcerous, magic; poisoning, poisonous; + veneficus_M_N : N ; -- [XXXCO] :: sorcerer, wizard, enchanter; poisoner; mixer of poisons; rogue; + venenatus_A : A ; -- [XXXDX] :: poisonous, venomous, filled with poison; poisoned; bewitched, enchanted, magic; + venenifer_A : A ; -- [XXXDX] :: venomous; containing poison; + veneno_V : V ; -- [XXXDX] :: imbue or infect with poison; injure by slander; + venenum_N_N : N ; -- [XXXBX] :: poison; drug; + veneo_1_V : V ; -- [XXXBO] :: go for sale, be sold (as slave), be disposed of for (dishonorable/venal) gain; + veneo_2_V : V ; -- [XXXBO] :: go for sale, be sold (as slave), be disposed of for (dishonorable/venal) gain; + venerabilis_A : A ; -- [XXXBX] :: venerable, august; + venerabundus_A : A ; -- [XXXDX] :: expressing religious awe (towards); + veneranter_Adv : Adv ; -- [XXXFS] :: reverently; + veneratio_F_N : N ; -- [XXXDX] :: veneration, reverence, worship; + venerator_M_N : N ; -- [XXXDX] :: one who reveres; + venero_V : V ; -- [XXXDX] :: adore, revere, do homage to, honor, venerate; worship; beg, pray, entreat; + veneror_V : V ; -- [XXXBX] :: adore, revere, do homage to, honor, venerate; worship; beg, pray, entreat; + venetum_N_N : N ; -- [XXXDO] :: blue; (racing faction/team of Roman circus); + venetus_A : A ; -- [XXXEO] :: blue; sea blue; blue-green (Cal); + venetus_M_N : N ; -- [XXXDO] :: blue; (racing faction/team of Roman circus); + venia_F_N : N ; -- [XXXBX] :: favor, kindness; pardon; permission; indulgence; + venio_V2 : V2 ; -- [XXXAX] :: come; + vennucula_F_N : N ; -- [XAXEC] :: kind of grape; + venor_V : V ; -- [XXXBX] :: hunt; + venosus_A : A ; -- [XBXFS] :: full of veins; dry; + ventagium_N_N : N ; -- [FXXEN] :: winnowing; + venter_M_N : N ; -- [XXXAX] :: stomach, womb; belly; + ventilabrum_N_N : N ; -- [XXXEO] :: winnowing-shovel; + ventilagium_N_N : N ; -- [FXXEM] :: window, louver; + ventilatrum_N_N : N ; -- [GXXEK] :: ventilator; fan; + ventilo_V : V ; -- [XXXDX] :: expose to a draught; fan; brandish; + ventimolina_F_N : N ; -- [GXXEK] :: windmill; + ventito_V : V ; -- [XXXDX] :: keep coming; come regularly, come often; resort (to); + ventosus_A : A ; -- [XXXDX] :: windy; swift (as the wind); fickle, changeable; vain, puffed up; + ventriculus_M_N : N ; -- [XXXEC] :: belly; a ventricle; + ventriosus_A : A ; -- [XXXES] :: large-bellied; + ventulus_M_N : N ; -- [XXXEC] :: slight wind; + ventus_M_N : N ; -- [XXXAX] :: wind; + venucula_F_N : N ; -- [XAXEC] :: kind of grape; + venum_N_N : N ; -- [XXXCO] :: sale, purchase; (only sg. ACC/DAT w/dare); [venum dare => put up for sale]; + venumdo_V2 : V2 ; -- [XXXCO] :: sell; offer for sale; + venundo_V2 : V2 ; -- [XXXCO] :: sell; offer for sale; + venus_M_N : N ; -- [XXXCO] :: sale, purchase; (only sg. ACC/DAT w/dare); [venui dare => put up for sale]; + venustas_F_N : N ; -- [XXXBO] :: attractiveness, charm, grace; luck in love; delightful conditions (pl.); + venuste_Adv : Adv ; -- [XXXCO] :: charmingly, attractively, gracefully; in a charming/attractive manner; + venusto_V2 : V2 ; -- [XXXDS] :: make lovely/attractive; beautify; adorn; + venustulus_A : A ; -- [XXXDS] :: charming; delightful; + venustus_A : A ; -- [XXXBO] :: attractive, charming, graceful, pretty, neat; + vepallidus_A : A ; -- [XXXDX] :: deathly pale; + veprecula_F_N : N ; -- [XXXEC] :: thorn-bush; + vepris_M_N : N ; -- [XXXDX] :: thorn-bush; + ver_N_N : N ; -- [XXXBO] :: spring; spring-time of life, youth; [ver sacrum => sacrifice of spring-born]; + veraciter_Adv : Adv ; -- [XXXCS] :: truly; in truth, truthfully; really; + veratrum_N_N : N ; -- [XAXEC] :: hellebore; (poisonous winter plant); + verax_A : A ; -- [XXXCO] :: speaking the truth, truthful (people); conveying the truth (things); + verbatim_Adv : Adv ; -- [GXXEK] :: literally, word to word; + verbena_F_N : N ; -- [XXXDX] :: leafy branch/twig from aromatic trees/shrubs (religious/medicinal purposes); + verbeneca_F_N : N ; -- [XBXNS] :: vervain (plant); + verber_N_N : N ; -- [XXXBX] :: lash, whip; blows (pl.), a beating, flogging; + verberabilis_A : A ; -- [XXXDS] :: flogging-worthy; worthy of being beaten; + verberatus_M_N : N ; -- [XXXES] :: beating; chastisement (Vulgate); + verbero_M_N : N ; -- [XXXDX] :: scoundrel; + verbero_V : V ; -- [XXXAX] :: beat, strike, lash; + verbosus_A : A ; -- [XXXDX] :: verbose; copious; + verbum_N_N : N ; -- [XXXAX] :: word; proverb; [verba dare alicui => cheat/deceive someone]; + vere_Adv : Adv ; -- [XXXBO] :: really, truly, actually, indeed; rightly, correctly, exactly; truthfully; + verecundia_F_N : N ; -- [XXXDX] :: shame; respect; modesty; + verecundor_V : V ; -- [XXXDO] :: show modesty/restraint; be shy/diffident (of doing w/inf); feel bashful/ashamed; + verecundus_A : A ; -- [XXXDX] :: modest; + veredictum_N_N : N ; -- [FLXFJ] :: true-speaking; truth; + veredus_M_N : N ; -- [XXXEC] :: swift horse, hunter; + verendum_N_N : N ; -- [XBXEO] :: external sexual organs, private parts (pl.); [partes ~ae => private parts]; + verendus_A : A ; -- [XXXDO] :: awesome, awe inspiring, that is to be regarded with awe or reverence; + vereor_V : V ; -- [XXXDX] :: revere, respect; fear; dread; + veretilla_F_N : N ; -- [XAXFO] :: fish (unidentified); (so called from resemblance to male sex organ); + veretrum_N_N : N ; -- [XBXDO] :: external (usu. male) sex organ; penis; + verfico_V2 : V2 ; -- [FXXEF] :: verify, confirm the truth/authenticity of; show to be true by evidence; + vergo_V : V ; -- [XXXDX] :: incline, lie, slope; + vergobretus_M_N : N ; -- [XXXDX] :: minister of justice, executive (of the Aedui); + vericulum_N_N : N ; -- [FXXEK] :: skewer (instrument); + veridicus_A : A ; -- [XXXEC] :: truthful; + verifico_V2 : V2 ; -- [FSXEF] :: verify, confirm the truth/authenticity of; show to be true by evidence; + veriloquium_N_N : N ; -- [XXXEC] :: etymology; + verisimilis_A : A ; -- [XXXDX] :: having appearance of truth; + verisimilitudo_F_N : N ; -- [XXXDX] :: true likeness; verisimilitude; + veritas_F_N : N ; -- [XXXAO] :: |reality, that which is real; real life, actuality; true nature; correctness; + veritate_Adv : Adv ; -- [XXXEO] :: in point of fact; actually; + vermiculus_M_N : N ; -- [XXXDX] :: grub, larva; + verminatio_F_N : N ; -- [XBXFS] :: worms; itching pain; + vermino_V : V ; -- [XBXFS] :: have worms; have itching; + vermis_M_N : N ; -- [XXXDX] :: worm, maggot; + verna_C_N : N ; -- [XXXDX] :: slave born in the master's household; house servant, family slave; + vernaculus_A : A ; -- [XXXDX] :: domestic, homegrown; indigenous, native; country; low-bred, proletarian; + vernilis_A : A ; -- [XXXDX] :: servile, obsequious; + verniliter_Adv : Adv ; -- [XXXDX] :: obsequiously, fawningly; + vernix_M_N : N ; -- [GXXEK] :: varnish; + verno_V : V ; -- [XXXDX] :: carry on or undergo the process proper to spring; + vernula_F_N : N ; -- [XXXEZ] :: young home-grown slave, native; (Collins); + vernus_A : A ; -- [XXXBX] :: of spring, vernal; + vero_Adv : Adv ; -- [XXXAX] :: yes; in truth; certainly; truly, to be sure; however; + verpa_F_N : N ; -- [XXXDX] :: penis; penis (as protruded from foreskin); erect penis; (rude); + verpus_A : A ; -- [XXXDX] :: circumcised; + verres_M_N : N ; -- [XXXDX] :: boar, uncastrated male hog/swine; wild boar; + verrinus_A : A ; -- [XXXEC] :: of a boar; + verris_M_N : N ; -- [XXXDX] :: boar; uncastrated male hog/swine; wild boar; + verro_V2 : V2 ; -- [XXXDX] :: sweep clean; sweep together; sweep (to the ground); skim, sweep; sweep along; + verruca_F_N : N ; -- [XXXDX] :: wart; excrescence on skin/other things; projection on earth's surface/hill; + verrucosus_A : A ; -- [XXXDS] :: warty; rugged; + verrunco_V : V ; -- [XXXDX] :: turn out; (w/bene, turn out well, have a fortunate outcome); + verrutum_N_N : N ; -- [DWXEZ] :: pike; + versabundus_A : A ; -- [XXXDX] :: revolving; + versara_F_N : N ; -- [XXXDX] :: loan; [versaram facere => get a loan]; + versatilis_A : A ; -- [XXXDX] :: revolving; versatile; + versatio_F_N : N ; -- [XXXES] :: turning around; changing; + versicolor_A : A ; -- [XXXDX] :: having colors that change; + versiculus_M_N : N ; -- [XXXDX] :: verse; + versificatio_F_N : N ; -- [XPXEC] :: making of verses; + versificator_M_N : N ; -- [XPXEC] :: poet, versifier, one who composes verses, verse-maker; + versifico_V : V ; -- [XPXEC] :: write verse; + versilis_A : A ; -- [EXXES] :: turnable; may be turned; + versio_F_N : N ; -- [FXXDM] :: turning; change; conversion; version; translation; + versipellis_M_N : N ; -- [XXXEO] :: shape-changer, who can metamorphose to different shape; double-dealer (Vulgate); + verso_V : V ; -- [XXXAX] :: keep turning/going round, spin, whirl; turn over and over; stir; maneuver; + versor_V : V ; -- [XXXDX] :: move about; live, dwell; be; + versum_Acc_Prep : Prep ; -- [XXXCO] :: toward, in the direction of; (placed after ACC); -ward (after name of town); + versum_Adv : Adv ; -- [XXXCO] :: toward, in the direction of; in specified direction; towards quarter named; + versus_Acc_Prep : Prep ; -- [XXXCO] :: toward, in the direction of; (placed after ACC); -ward (after name of town); + versus_Adv : Adv ; -- [XXXCO] :: toward, in the direction of; in specified direction; towards quarter named; + versus_M_N : N ; -- [XPXBO] :: line, verse; furrow, ground traversed before turn; row/string, bench (rowers); + versutia_F_N : N ; -- [XXXDX] :: cunning, craft; + versutiloquus_A : A ; -- [XXXDS] :: crafty-speaking; sly; + versutus_A : A ; -- [XXXDX] :: full of stratagems or shifts wily cunning, adroit; + vertebra_F_N : N ; -- [XXXES] :: joint; + vertex_M_N : N ; -- [XXXDX] :: whirlpool, eddy, vortex; crown of the head; peak, top, summit; the pole; + vertibilis_A : A ; -- [FEXFZ] :: changeability; + vertibilitas_F_N : N ; -- [EXXEP] :: change; ability to change, changeableness; vicissitude; inconstancy (Def); + verticitas_F_N : N ; -- [FXXFM] :: vertical direction; + verticosus_A : A ; -- [XXXDX] :: full of whirlpools or eddies; + vertigo_F_N : N ; -- [XXXCO] :: gyration/rotation, whirling/spinning movement; giddiness, dizziness; changing; + verto_V2 : V2 ; -- [XXXAX] :: turn, turn around; change, alter; overthrow, destroy; + veru_N_N : N ; -- [XXXCO] :: spit (for roasting meat); point of javelin/weapon; spiked railing (pl.); + verum_Adv : Adv ; -- [XXXDX] :: yes; in truth; certainly; truly, to be sure; however; (rare form, usu. vero); + verum_N_N : N ; -- [XXXDX] :: truth, reality, fact; + verumtamen_Conj : Conj ; -- [XXXDX] :: but yet, nevertheless, but even so, still (resuming after digression); + verus_A : A ; -- [XXXAX] :: true, real, genuine, actual; properly named; well founded; right, fair, proper; + verutum_N_N : N ; -- [XXXDX] :: dart; + verutus_A : A ; -- [XXXEC] :: armed with a javelin; + vervex_M_N : N ; -- [XXXDX] :: wether (castrated male sheep); stupid/sluggish person; + vesania_F_N : N ; -- [XXXDX] :: madness, frenzy; + vesaniens_A : A ; -- [XXXDX] :: raging, frenzied; + vesanus_A : A ; -- [XXXDX] :: mad, frenzied; wild; + vescor_V : V ; -- [XXXDX] :: feed on, eat, enjoy (with ABL); + vescus_A : A ; -- [XXXDX] :: thin, attenuated; + vesica_F_N : N ; -- [XXXDX] :: bladder; balloon; + vesicuia_F_N : N ; -- [XXXDX] :: small bladder-like formation; + vesicula_F_N : N ; -- [XXXEC] :: little bladder; + vespa_F_N : N ; -- [XXXDX] :: wasp; + vesper_M_N : N ; -- [XXXBX] :: evening; evening star; west; + vespera_F_N : N ; -- [XXXDX] :: evening, even-tide; + vesperasco_V : V ; -- [XXXDX] :: grow towards evening; grow dark; + vesperasct_V0 : V ; -- [XXXDX] :: to become evening, grow towards evening; it is growing late; + vesperi_Adv : Adv ; -- [XXXDX] :: in the evening; + vespertilio_M_N : N ; -- [XAXEO] :: bat; (night flying mammal); + vespertinus_A : A ; -- [XXXDX] :: evening; + vespillo_M_N : N ; -- [XXXCO] :: undertaker who buries paupers; (disreputable trade); night thief/robber (Nel); + vester_A : A ; -- [XXXBO] :: your (pl.), of/belonging to/associated with you; + vestiarium_N_N : N ; -- [FXXEK] :: cloakroom; + vestiarius_M_N : N ; -- [XXXEO] :: clothes-, concerned with/relating to clothes; + vestibulum_N_N : N ; -- [XXXDX] :: entrance, court; + vestigium_N_N : N ; -- [XXXBX] :: step, track; trace; footstep; + vestigo_V : V ; -- [XXXDX] :: track down, search for; search out; try to find out by searching; investigate; + vestimentum_N_N : N ; -- [XXXBX] :: garment, robe; clothes; + vestio_V2 : V2 ; -- [XXXBX] :: clothe; + vestiplica_F_N : N ; -- [XXXFS] :: clothes-folder; she who folds clothes; + vestis_F_N : N ; -- [XXXAX] :: garment, clothing, blanket; clothes; robe; + vestispica_F_N : N ; -- [XXXDS] :: wardrobe mistress/maid/woman, she who has care of clothing; + vestitus_M_N : N ; -- [XXXDX] :: clothing; + veter_A : A ; -- [BXXDX] :: old; long established; veteran, bygone; chronic; + veteranus_A : A ; -- [XXXDX] :: old, veteran; + veterasco_V : V ; -- [XXXEO] :: become long-established; grow old (Cas); + veterator_M_N : N ; -- [XXXCO] :: old hand (often derogatory); experienced practitioner; experienced slave; + veteratorie_Adv : Adv ; -- [XXXEO] :: adroitly; in a practiced manner; cunningly, craftily (Cas); + veteratorius_A : A ; -- [XXXEO] :: adroit, wily, cunning, crafty; (acquired); bearing mark of practice/experience; + veteresco_V : V ; -- [XXXFO] :: age; + veterinarius_M_N : N ; -- [GXXEK] :: veterinary; + veterinus_A : A ; -- [XAXEC] :: of draft, draft; [w/bestia => beast of burden]; + veternosus_A : A ; -- [XXXES] :: lethargic; + veternus_M_N : N ; -- [XXXDX] :: morbid state of torpor; + vetero_V2 : V2 ; -- [EXXFS] :: make old; age; + veto_V2 : V2 ; -- [XXXAO] :: forbid, prohibit; reject, veto; be an obstacle to; prevent; + vetulus_A : A ; -- [XXXDX] :: elderly, aging; + vetus_A : A ; -- [XXXAX] :: old, aged, ancient; former; veteran, experienced; long standing, chronic; + vetus_M_N : N ; -- [XXXDX] :: ancients (pl.), men of old, forefathers; + vetus_N_N : N ; -- [XXXDX] :: old/ancient times (pl.), antiquity; earlier events; old traditions/ways; + vetust_A : A ; -- [XXXDX] :: old, aged, ancient; former; veteran, experienced; long standing, chronic; + vetustas_F_N : N ; -- [XXXBX] :: old age; antiquity; long duration; + vetuste_Adv : Adv ; -- [XXXDX] :: in accordance with primitive practice/long standing/ancient practice; + vetustus_A : A ; -- [XXXDX] :: ancient, old established; long-established; + vexamen_N_N : N ; -- [XXXDX] :: shaking, jolting; shock; disturbance, upheaval; + vexatio_F_N : N ; -- [XXXDX] :: shaking, jolting; shock; disturbance, upheaval; + vexillarius_M_N : N ; -- [XXXDX] :: |troops (pl.) serving for the time being in a special detachment; + vexillatio_F_N : N ; -- [XWXDS] :: body of troops; division of cavalry; + vexilliatio_F_N : N ; -- [XXXDX] :: military detachment; + vexillium_N_N : N ; -- [XWXDX] :: cavalry standard; small banner; + vexillum_N_N : N ; -- [XXXDX] :: flag, banner; + vexo_V : V ; -- [XXXBX] :: shake, jolt, toss violently; annoy, trouble, harass, plague, disturb, vex; + via_F_N : N ; -- [XXXAX] :: way, road, street; journey; + viaeductus_M_N : N ; -- [GXXEK] :: viaduct; + viaticum_N_N : N ; -- [XXXDX] :: provision for a journey, traveling allowance; money saved by soldiers; + viaticus_A : A ; -- [XXXEC] :: relating to a journey; + viator_M_N : N ; -- [XXXBX] :: traveler; + viatorius_A : A ; -- [XXXFS] :: traveling; of journey; + vibramen_N_N : N ; -- [XXXFS] :: quivering; + vibro_V : V ; -- [XXXDX] :: brandish, wave, crimp, corrugate; rock; propel suddenly; flash; dart; glitter; + viburnum_N_N : N ; -- [XXXDX] :: guelder rose; wayfaring-tree; + vicanus_A : A ; -- [XXXEC] :: dwelling in a village; + vicanus_M_N : N ; -- [XXXEC] :: villagers (pl.); + vicaria_F_N : N ; -- [FEBEM] :: vicarage, office of vicar; its income, payment due vicar; parish; + vicariatus_M_N : N ; -- [GEXEK] :: curacy, office/position od curate; + vicarius_A : A ; -- [XXXDO] :: substitute; substituted; vicarious; supplying the place of someone/something; + vicarius_M_N : N ; -- [FEXEM] :: vicarage, office of vicar; its income, payment due vicar; house of vicar; + vicatim_Adv : Adv ; -- [XXXDX] :: by (urban) districts, street by street; in or by villages; + vicecomes_M_N : N ; -- [FLXFJ] :: sheriff; + vicedominus_M_N : N ; -- [FLXFM] :: deputy, vidame; + vicennal_N_N : N ; -- [ELXFS] :: 20-year festival (pl.); celebration of 20 years of rule; + vicenus_A : A ; -- [XXXDX] :: twenty each (pl.); + vicepraepositus_M_N : N ; -- [GGXET] :: vice-provost; (Erasmus); + vicesima_F_N : N ; -- [XXXDX] :: five-percent tax; + vicesimanus_M_N : N ; -- [XWXEC] :: soldiers (pl.) of the twentieth legion; + vicesimarius_A : A ; -- [XXXEC] :: relating to the vicesimanus (soldier of 20th Legion); + vicia_F_N : N ; -- [XXXDX] :: vetch; + vicies_Adv : Adv ; -- [XXXDX] :: twenty times; + vicinalis_A : A ; -- [XXXDX] :: of or for the use of local inhabitants; + vicinia_F_N : N ; -- [XXXDX] :: neighborhood, nearness; + vicinitas_F_N : N ; -- [XXXDX] :: neighborhood, proximity; + vicinum_N_N : N ; -- [XXXDX] :: neighborhood, neighboring place, vicinity (of ); + vicinus_A : A ; -- [XXXAX] :: nearby, neighboring; + vicinus_M_N : N ; -- [XXXDX] :: neighbor; + vicis_F_N : N ; -- [XXXAX] :: turn, change, succession; exchange, interchange, repayment; plight, lot; + vicissatim_Adv : Adv ; -- [BXXFS] :: in turn, again; (pre-classical form of vicissim); + vicissim_Adv : Adv ; -- [XXXDX] :: in turn, again; + vicissitudo_F_N : N ; -- [XXXDX] :: change, vicissitude; + victima_F_N : N ; -- [XXXDX] :: victim; animal for sacrifice; + victimarius_M_N : N ; -- [XXXEC] :: attendant at a sacrifice; + victimo_V2 : V2 ; -- [XEXFO] :: offer (victim/animal) for sacrifice; + victor_A : A ; -- [XXXDX] :: triumphant; + victor_M_N : N ; -- [XXXAX] :: conqueror; victor; [in apposition => victorious, conquering]; + victoria_F_N : N ; -- [XXXAX] :: victory; + victoriatus_M_N : N ; -- [XXXEC] :: silver coin stamped with a figure of Victory; + victoriola_F_N : N ; -- [XXXEC] :: small statue of Victory; + victoriosus_A : A ; -- [XXXES] :: victorious; + victrix_A : A ; -- [XWXBS] :: conquering; + victrix_F_N : N ; -- [XXXBX] :: conqueror; + victuale_N_N : N ; -- [XXXES] :: provisions (pl.), victuals, sustenance; + victualis_A : A ; -- [XXXEO] :: nutritional; of/associated with bodily sustenance; + victuma_F_N : N ; -- [XXXFX] :: victim; animal for sacrifice; (also victima); + victus_M_N : N ; -- [XXXBX] :: living, way of life; that which sustains life; nourishment; provisions; diet; + viculus_M_N : N ; -- [XXXDX] :: small village, hamlet; + vicus_M_N : N ; -- [XXXBX] :: village; hamlet; street, row of houses; + videlicet_Adv : Adv ; -- [XXXBX] :: one may see; clearly, evidently; + video_V : V ; -- [XXXAX] :: see, look at; consider; (PASS) seem, seem good, appear, be seen; + viduatus_A : A ; -- [XXXDX] :: devoid (of); + viduitas_F_N : N ; -- [XXXDX] :: widowhood; bereavement; + vidulus_M_N : N ; -- [XXXES] :: travel-trunk, portmanteau, wallet; bag for carrying belongings; box/trunk (Cas); + viduo_V : V ; -- [XXXDX] :: widow; bereave of a husband; + viduus_A : A ; -- [XXXDX] :: widowed, deprived of (with gen.); bereft; unmarried; + vieo_V : V ; -- [XXXDX] :: plait, weave; bend/twist into basketwork; + vietus_A : A ; -- [XXXDX] :: shriveled, wrinkled; + vigens_A : A ; -- [FXXEL] :: vigorous, active; + vigenter_Adv : Adv ; -- [FXXEL] :: vigorously, actively; + vigentia_F_N : N ; -- [FXXEL] :: vigor; authority; + vigeo_V : V ; -- [XXXBX] :: be strong/vigorous; thrive, flourish, bloom/blossom; be active, be effective; + vigerius_M_N : N ; -- [FEXEM] :: vicarage; verger, provost (Nelson); + vigesco_V2 : V2 ; -- [XXXDX] :: acquire strength; + vigies_Adv : Adv ; -- [FXXFS] :: twenty times; (mis-reading of vicies); + vigil_A : A ; -- [XXXCO] :: awake, wakeful; watchful; alert, vigilant, paying attention; + vigil_M_N : N ; -- [XXXBO] :: sentry, guard; fireman, member of Roman fire/police brigade; watchman; + vigilabilis_A : A ; -- [XXXFO] :: awake, wakeful; watchful; alert, vigilant, paying attention; + vigilans_A : A ; -- [XXXCO] :: watchful, vigilant, alert; wakeful, wide awake (of watchkeeper); + vigilanter_Adv : Adv ; -- [XXXDO] :: vigilantly, alertly; + vigilantia_F_N : N ; -- [XXXDX] :: vigilance, alertness; wakefulness, condition of not sleeping; + vigilax_A : A ; -- [XXXEX] :: watchful; + vigilia_F_N : N ; -- [XXXBX] :: watch (fourth part of the night), vigil, wakefulness; + vigilo_V : V ; -- [XXXAX] :: remain awake, be awake; watch; provide for, care for by watching, be vigilant; + vigintisexvir_M_N : N ; -- [CLIEO] :: member of board of twenty six at Rome to fill boards of minor magistrates; + vigintivir_M_N : N ; -- [CLIEO] :: member of commission of twenty (by Caesar 59 BC)/(municipal administration); + vigintiviratus_M_N : N ; -- [CLIFO] :: rank/office of a member of commission of twenty (municipal administrators); + vigor_M_N : N ; -- [XXXBX] :: vigor, liveliness; + vigoratio_M_N : N ; -- [FEXEM] :: invigoration; + vigoratus_A : A ; -- [FXXEN] :: stout, hale, hearty; + vigoro_V : V ; -- [EXXES] :: animate; invigorate; gain strength; + vigorosus_A : A ; -- [FXXEM] :: vigorous, strong; + vilesco_V : V ; -- [DXXCS] :: become worthless/bad/vile; + vilica_F_N : N ; -- [XXXDX] :: wife of a farm overseer; + vilicatio_M_N : N ; -- [XAXEO] :: function of a farm overseer (slave/free) or estate manager; + vilico_V : V ; -- [XAXCO] :: perform duties of farm overseer; act as overseer of estate/public property; + vilicus_M_N : N ; -- [XXXDX] :: farm overseer (slave/free), estate manager; grade of imperial/public servant; + vilipendo_V : V ; -- [XXXDX] :: despise, slight; + vilipensio_F_N : N ; -- [FXXEM] :: disparagement; contempt; + vilis_A : A ; -- [XXXAX] :: cheap, common, mean, worthless; + vilitas_F_N : N ; -- [XXXDX] :: cheapness; worthlessness; + villa_F_N : N ; -- [XXXBO] :: farm/country home/estate; large country residence/seat, villa; village (L+S); + villana_F_N : N ; -- [FLXFJ] :: female villein, female feudal tenant; + villanus_M_N : N ; -- [FLXEJ] :: villein; feudal tenant; + villata_F_N : N ; -- [FLXFJ] :: vill, feudal unit of contiguous houses/buildings; township, parish, tithing; + villaticus_A : A ; -- [XXXES] :: villa-; + villenagium_N_N : N ; -- [FLXFJ] :: villeinage; tenure of a villein/serf/peasant; + villica_F_N : N ; -- [XXXDX] :: wife of a farm overseer; + villicatio_M_N : N ; -- [XAXEO] :: function of a farm overseer (slave/free) or estate manager; + villico_V : V ; -- [XAXCO] :: perform duties of farm overseer; act as overseer of estate/public property; + villicus_M_N : N ; -- [XXXDX] :: farm overseer (slave/free), estate manager; grade of imperial/public servant; + villosus_A : A ; -- [XXXDX] :: shaggy; + villula_F_N : N ; -- [XXXDX] :: small farmstead or country house; + villus_M_N : N ; -- [XXXDX] :: shaggy hair, tuft of hair; + vimen_N_N : N ; -- [XXXDX] :: twig, shoot; + vimineus_A : A ; -- [XXXDX] :: of wickerwork; + vinaceus_A : A ; -- [XXXEC] :: of/belonging to wine or a grape; + vinarium_N_N : N ; -- [XXXDX] :: wine flask/jar; + vinarius_M_N : N ; -- [XXXDX] :: vintner, wine merchant; + vincio_V2 : V2 ; -- [XXXBX] :: bind, fetter; restrain; + vinclum_N_N : N ; -- [XXXAX] :: chain, bond, fetter; imprisonment (pl.); + vinco_V2 : V2 ; -- [XXXAX] :: conquer, defeat, excel; outlast; succeed; + vinculum_N_N : N ; -- [XXXAX] :: chain, bond, fetter; imprisonment (pl.); + vindemia_F_N : N ; -- [XXXDX] :: grape-gathering; produce of a vineyard in any given year; + vindemiator_M_N : N ; -- [XAXCO] :: grape-picker; + vindemiatorius_A : A ; -- [XAXCO] :: used by a grape-picker (vindemiator); + vindemio_V : V ; -- [XAXDO] :: gather/harvest grapes (for wine); gather grapes with which to make (wine); + vindemiola_F_N : N ; -- [XXXEC] :: little vintage; a perquisite; + vindex_M_N : N ; -- [XXXDX] :: defender, protector; + vindicatio_F_N : N ; -- [XLXCO] :: suing for possession; championing (cause); avenging (wrong); punishment; + vindicia_F_N : N ; -- [XXXDX] :: interim possession (pl.) (of disputed property); + vindico_V : V ; -- [XXXBX] :: claim, vindicate; punish, avenge; + vindicta_F_N : N ; -- [XXXDX] :: ceremonial act claiming as free one contending wrongly enslaved; vengeance; + vinea_F_N : N ; -- [XXXCO] :: vines in a vineyard/arranged in rows; vine; (movable) bower-like shelter; + vinetum_N_N : N ; -- [XXXDX] :: vineyard; + vineus_A : A ; -- [DXXFS] :: made of/belonging to wine, wine-; + vinia_F_N : N ; -- [XXXCO] :: vines in a vineyard/arranged in rows; vine; (movable) bower-like shelter; + vinitor_M_N : N ; -- [XXXDX] :: vineyard worker; + vinolentia_F_N : N ; -- [XXXEC] :: wine-drinking, intoxication; + vinolentus_A : A ; -- [XXXEC] :: mixed with wine; drunk, intoxicated; + vinosus_A : A ; -- [XXXCO] :: drunk w/over fond of wine; tasting/smelling of wine; vinous; dreg-colored; + vinulentus_A : A ; -- [XXXES] :: full of wine; drunk; (vinolentus); + vinum_N_N : N ; -- [XXXAX] :: wine; + viocurus_M_N : N ; -- [XXXDX] :: one who has charge of roads; + viola_F_N : N ; -- [GDXEK] :: |viola (Cal); + violabilis_A : A ; -- [XXXDX] :: that may be violated or suffer outrage; + violaceus_A : A ; -- [XXXDX] :: violet-colored; + violacium_N_N : N ; -- [XAXFS] :: violet wine; + violarium_N_N : N ; -- [XXXDX] :: bed of violets; + violatio_F_N : N ; -- [XXXDX] :: profanation, violation; + violator_M_N : N ; -- [XXXDX] :: profaner, violator; + violens_A : A ; -- [XXXBX] :: violent; + violenter_Adv : Adv ; -- [XXXCO] :: violently, w/unreasonable/destructive force; w/violent (expression of) feelings; + violentia_F_N : N ; -- [XXXBX] :: violence, aggressiveness; + violentus_A : A ; -- [XXXDX] :: violent, vehement, impetuous, boisterous; + violina_F_N : N ; -- [GDXEK] :: violin; + violinista_M_N : N ; -- [GDXEK] :: violinist; + violo_V : V ; -- [XXXBX] :: violate, dishonor; outrage; + violoncellum_N_N : N ; -- [GDXEK] :: cello; + vipera_F_N : N ; -- [XXXDX] :: viper, snake; + vipereus_A : A ; -- [XXXDX] :: of a viper/snake; of vipers; + viperinus_A : A ; -- [XXXDX] :: of a viper/snake; of vipers; + vir_M_N : N ; -- [XXXAX] :: man; husband; hero; person of courage, honor, and nobility; + virago_F_N : N ; -- [XXXDX] :: warlike/heroic woman; + virdiarium_N_N : N ; -- [XAXES] :: tree-plantation; tree garden; + virectum_N_N : N ; -- [XXXDX] :: area of greenery; + virens_A : A ; -- [GAXEQ] :: green; (in reference to plants); (Dell); + virens_N_N : N ; -- [DAXFS] :: plants (pl.); herbage; + vireo_V : V ; -- [XXXBX] :: be green or verdant; be lively or vigorous; be full of youthful vigor; + viresco_V : V ; -- [XXXDX] :: turn green; + virga_F_N : N ; -- [XXXBX] :: twig, sprout, stalk; switch, rod; staff, wand; stripe/streak; scepter (Plater); + virgatus_A : A ; -- [XXXDX] :: made of twigs striped; + virgetum_N_N : N ; -- [XXXEC] :: osier-bed, thicket of rods/willows; + virgeus_A : A ; -- [XXXDX] :: consisting of twigs or shoots; + virginal_N_N : N ; -- [XXXEO] :: external female genitals; unknown sea creature resembling female genitals; + virginalis_A : A ; -- [XXXCO] :: maidenly; of/appropriate for girls of marriageable age; virginal; + virginarius_A : A ; -- [XXXFO] :: maidenly; of/concerned with girls of marriageable age; + virginea_F_N : N ; -- [XXXIO] :: virgin bride/wife; one married when still single girl; + virginea_M_N : N ; -- [XXXIO] :: husband of virgin bride; first husband of girl/virgin; + virgineus_A : A ; -- [XXXBO] :: |married (couple) when wife still girl; of constellation Virgo; of aqua Virgo; + virginia_F_N : N ; -- [XXXIO] :: virgin bride/wife; one married when still single girl; + virginia_M_N : N ; -- [XXXIO] :: husband of virgin bride; first husband of girl/virgin; + virginitas_F_N : N ; -- [XXXDX] :: maidenhood; virginity; being girl of marriageable age; being sworn to celibacy; + virginius_A : A ; -- [XXXBO] :: |married (couple) when wife still girl; of constellation Virgo; of aqua Virgo; + virgo_F_N : N ; -- [XXXAO] :: maiden, young woman, girl of marriageable age; virgin, woman sexually intact; + virgula_F_N : N ; -- [XXXCO] :: small rod/stick/staff; shoot, small twig; streak, mark; comma; line in diagram; + virgultum_N_N : N ; -- [XXXDX] :: brushwood; + virguncula_F_N : N ; -- [XXXEC] :: little girl; + viridarium_N_N : N ; -- [XAXES] :: tree-plantation; tree garden; + viridiarium_N_N : N ; -- [XAXFS] :: tree-plantation; tree garden; + viridis_A : A ; -- [XXXBX] :: fresh, green; blooming,youthful; + viriditas_F_N : N ; -- [XXXCO] :: greenness; fresh green color of plants; green vegetation; youthful vigor; + virido_V : V ; -- [XXXDX] :: make green; be green; + viridor_V : V ; -- [XXXFC] :: become green; + virilis_A : A ; -- [XXXDX] :: manly, virile; mature; + viriliter_Adv : Adv ; -- [XXXCO] :: with masculine/manly vigor; manfully/in a manly/virile way; powerfully (Souter); + viripotens_A : A ; -- [EXXFS] :: mighty, powerful; + viritim_Adv : Adv ; -- [XXXDX] :: man by man; individually; + viritualis_A : A ; -- [FXXDF] :: pertaining to/coming from the power/potentiality of a thing; virtuous; + viror_M_N : N ; -- [XXXFO] :: verdure, fresh green quality (of vegetation); + virosus_A : A ; -- [XXXDX] :: having unpleasantly strong taste or smell, rank; + virtualis_A : A ; -- [FXXDM] :: virtual; + virtualis_F_N : N ; -- [FXXEN] :: manliness, virtues; + virtualitas_F_N : N ; -- [FXXEM] :: virtuality; + virtualiter_Adv : Adv ; -- [FXXDM] :: virtually; + virtualosus_A : A ; -- [FXXDM] :: virtual; + virtuose_Adv : Adv ; -- [FXXDM] :: virtuously, manfully; + virtus_F_N : N ; -- [EEXCR] :: |army; host; mighty works (pl.); class of Angels; [Dominus ~ => Lord of hosts]; + virulentus_A : A ; -- [XXXES] :: full-of-poison; virulent; + virum_N_N : N ; -- [GBXEK] :: virus; + virus_N_N : N ; -- [XXXAO] :: venom (sg.), poisonous secretion of snakes/creatures/plants; acrid element; + vis_F_N : N ; -- [XXXAX] :: strength (sg. only), force, power, might, violence; + visa_F_N : N ; -- [GXXEK] :: visa; + viscatus_A : A ; -- [XXXDX] :: smeared with birdlime; + viscer_N_N : N ; -- [XXXDX] :: entrails; innermost part of the body; heart; vitals; + visceratio_F_N : N ; -- [XXXDX] :: communal sacrificial feast at which the flesh of the victim was shared among; + vischium_N_N : N ; -- [GXXEK] :: whisky; + visco_V2 : V2 ; -- [XXXDS] :: smear; glue; make sticky; + viscum_N_N : N ; -- [XXXDX] :: mistletoe; bird-lime (made from mistletoe berries); + viscus_M_N : N ; -- [XXXDX] :: mistletoe; bird-lime (made from mistletoe berries); + viscus_N_N : N ; -- [XBXBX] :: soft fleshy body parts (usu. pl.), internal organs; entrails, flesh; offspring; + visibilis_A : A ; -- [XXXEO] :: visible, capable of being seen; capable of seeing; + visibiliter_Adv : Adv ; -- [DXXFS] :: visibly; + visificus_A : A ; -- [HDXEK] :: video; visual; + visio_F_N : N ; -- [XXXDX] :: vision; + visitatio_F_N : N ; -- [EXXDP] :: |visit/visitation; (to sick/prisoners); visit of inspection/supervision; + visitator_M_N : N ; -- [XXXDX] :: visitor; frequent visitor; + visitatorius_A : A ; -- [GXXEK] :: of visiting; + visito_V : V ; -- [XXXBX] :: visit, call upon; see frequently/habitually; + visnetum_N_N : N ; -- [FLXFJ] :: locality(?); [in proximo visneto => in vicinity]; + viso_V2 : V2 ; -- [XXXBX] :: visit, go to see; look at; + visocaseta_F_N : N ; -- [GXXEK] :: video-cassette; + vison_M_N : N ; -- [XXXDX] :: bison; wild ox; + visorius_A : A ; -- [GXXEK] :: showing; indicating; + vispellio_M_N : N ; -- [XXXEO] :: undertaker who buries paupers; (disreputable trade); night thief/robber (Nel); + vispilio_M_N : N ; -- [XXXEN] :: undertaker who buries paupers; (disreputable trade); night thief/robber (Nel); + vispillo_M_N : N ; -- [XXXCO] :: undertaker who buries paupers; (disreputable trade); night thief/robber (Nel); + visum_N_N : N ; -- [XXXDX] :: vision; that which is seen, appearance, sight; visual/mental image; + visus_M_N : N ; -- [XXXDX] :: look, sight, appearance; vision; + vita_F_N : N ; -- [XXXAX] :: life, career, livelihood; mode of life; + vitabilis_A : A ; -- [XXXDX] :: to be avoided; + vitabundus_A : A ; -- [XXXDX] :: taking evasive action; + vital_N_N : N ; -- [XXXDX] :: vital parts, indispensable body parts (pl.); grave clothes; [lectus ~ => bier]; + vitalis_A : A ; -- [XXXBX] :: vital; of life (and death); living/alive, able to survive; lively; life-giving; + vitaliter_Adv : Adv ; -- [XXXDX] :: so as to endow with life; + vitaminum_N_N : N ; -- [GBXEK] :: vitamin; + vitatio_F_N : N ; -- [XXXDS] :: avoidance; shunning; + vitellum_N_N : N ; -- [XAXES] :: little-calf; egg-yoke; (see also vitellus); + vitellus_M_N : N ; -- [XXXDO] :: yolk, yolk of egg; + viteus_A : A ; -- [XXXDX] :: of/belonging to vine; + vitex_F_N : N ; -- [DAXNS] :: chaste-tree (Pliny); + viticula_F_N : N ; -- [XXXEC] :: little vine; + vitifer_A : A ; -- [XAXEC] :: vine-bearing; + vitigenus_A : A ; -- [XXXDX] :: produced from the vine; + vitil_N_N : N ; -- [XXXFS] :: wicker-work (pl.); + vitilena_F_N : N ; -- [XXXDS] :: procuress; + vitilis_A : A ; -- [XXXFS] :: plaited; interwoven; + vitilitigo_V : V ; -- [XXXFS] :: brawl; guard; + vitilla_F_N : N ; -- [XXXIO] :: little darling; (term of endearment); + vitio_V : V ; -- [XXXDX] :: make faulty, spoil, damage; vitiate; + vitiosus_A : A ; -- [XXXDX] :: full of vice, vicious; + vitis_F_N : N ; -- [XXXBX] :: vine; grape vine; + vitisator_M_N : N ; -- [XXXDX] :: vine-planter; + vitium_N_N : N ; -- [XXXAX] :: fault, vice, crime, sin; defect; + vito_V : V ; -- [XXXBX] :: avoid, shun; evade; + vitreo_V : V ; -- [GXXEK] :: glaze; + vitreus_A : A ; -- [XXXDX] :: of glass; resembling glass in its color (greenish), translucency, or glitter; + vitricus_M_N : N ; -- [XXXDX] :: stepfather; + vitriolum_N_N : N ; -- [GXXEK] :: vitriol; + vitriterstrum_N_N : N ; -- [GTXEK] :: windshield wiper; + vitrum_N_N : N ; -- [XXXDX] :: woad, a blue dye used by the Britons; + vitta_F_N : N ; -- [XXXDX] :: band, ribbon; fillet; + vittatus_A : A ; -- [XXXDX] :: wearing or carrying a ritual vitta; + vitula_F_N : N ; -- [XXXDX] :: calf, young cow; + vitulamen_N_N : N ; -- [DAXFS] :: shoot, sucker, sprig; + vitulina_F_N : N ; -- [XAXEC] :: veal; + vitulinus_A : A ; -- [XAXEC] :: of a calf; [w/assum => roast veal]; + vitulus_M_N : N ; -- [XXXDX] :: calf; + vituperabilis_A : A ; -- [XXXFS] :: blamable; can be censured; + vituperabiliter_Adv : Adv ; -- [XXXES] :: blamably; + vituperatio_F_N : N ; -- [XXXCO] :: blame; censure; unfavorable criticism; + vitupero_V : V ; -- [XXXDX] :: find fault with, blame, reproach, disparage, scold, censure; 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_V2 : V2 ; - vividus_A : A ; - vivifico_V : V ; - vivificus_A : A ; - viviradix_F_N : N ; - vivisco_V : V ; - vivo_V2 : V2 ; - vivus_A : A ; - vix_Adv : Adv ; - vixdum_Adv : Adv ; - vocabularium_N_N : N ; - vocabulum_N_N : N ; - vocalis_A : A ; - vocamen_N_N : N ; - vocatio_F_N : N ; - vocativus_A : A ; - vocativus_M_N : N ; - vocatus_M_N : N ; - vociferatio_F_N : N ; - vociferor_V : V ; - vocito_V : V ; - vocivus_A : A ; - voco_V : V ; - vocula_F_N : N ; - volaemum_N_N : N ; - volans_A : A ; - volans_M_N : N ; - volaticus_A : A ; - volatilis_A : A ; - volatilitas_F_N : N ; - volatio_F_N : N ; - volatus_M_N : N ; - volens_A : A ; - volgo_Adv : Adv ; - volgo_V : V ; - volgus_N_N : N ; - volitio_F_N : N ; - volito_V : V ; - volitus_A : A ; - volnero_V2 : V2 ; - volnificus_A : A ; - volnus_N_N : N ; - volo_M_N : N ; - volo_V : V ; - volpes_F_N : N ; - volsella_F_N : N ; - voltium_N_N : N ; - voltur_M_N : N ; - volturius_M_N : N ; - voltus_M_N : N ; - volubilis_A : A ; - volubilitas_F_N : N ; - volucer_A : A ; - volucris_F_N : N ; - volumen_N_N : N ; - voluntarie_Adv : Adv ; - voluntarius_A : A ; - voluntarius_M_N : N ; - voluntas_F_N : N ; - volup_Adv : Adv ; - volupe_Adv : Adv ; - voluptabilis_A : A ; - voluptarius_A : A ; - voluptas_F_N : N ; - voluptuosus_A : A ; - volutabrum_N_N : N ; - volutabundus_A : A ; - voluto_V : V ; - volva_F_N : N ; - volvo_V2 : V2 ; - vomer_M_N : N ; - vomica_F_N : N ; - vomitio_F_N : N ; - vomito_V : V ; - vomitor_M_N : N ; - vomitorius_A : A ; - vomitus_M_N : N ; - vomo_V2 : V2 ; - voracitas_F_N : N ; - voraginosus_A : A ; - vorago_F_N : N ; - vorax_M_N : N ; - voro_V : V ; - vorsipellis_M_N : N ; - vorsum_Acc_Prep : Prep ; - vorsum_Adv : Adv ; - vorsus_Acc_Prep : Prep ; - vorsus_Adv : Adv ; - vortex_M_N : N ; - voster_A : A ; - votivus_A : A ; - voto_V2 : V2 ; - votum_N_N : N ; - voveo_V : V ; - vox_F_N : N ; - vulcanus_M_N : N ; - vulgaris_A : A ; - vulgator_M_N : N ; - vulgatus_A : A ; - vulgivagus_A : A ; - vulgo_Adv : Adv ; - vulgo_V : V ; - vulgus_N_N : N ; - vulnero_V2 : V2 ; - vulnificus_A : A ; - vulnus_N_N : N ; - vulo_V : V ; - vulpecula_F_N : N ; - vulpes_F_N : N ; - vulticulus_M_N : N ; - vultuosus_A : A ; - vultur_M_N : N ; - vulturius_M_N : N ; - vulturnus_A : A ; - vultus_M_N : N ; - vulva_F_N : N ; - wadiarius_M_N : N ; - wadiator_M_N : N ; - warantia_F_N : N ; - warantizatio_F_N : N ; - warantizo_V : V ; - warantus_M_N : N ; - warra_F_N : N ; - werra_F_N : N ; - xandicus_M_N : N ; - xeniolum_N_N : N ; - xenium_N_N : N ; - xenodochium_N_N : N ; - xenodochus_M_N : N ; - xenon_M_N : N ; - xenoparochus_M_N : N ; - xenophobia_F_N : N ; - xerampelina_F_N : N ; - xerophagia_F_N : N ; - xiphias_M_N : N ; - xprimus_M_N : N ; - xvir_M_N : N ; - xviralis_A : A ; - xviratus_M_N : N ; - xylon_N_N : N ; - xylophonum_N_N : N ; - xysticus_M_N : N ; - xystus_M_N : N ; - yatus_A : A ; - zabulus_M_N : N ; - zaeta_F_N : N ; - zagon_M_N : N ; - zagonus_M_N : N ; - zai_N : N ; - zain_N : N ; - zamia_F_N : N ; - zea_F_N : N ; - zebra_C_N : N ; - zelo_V2 : V2 ; - zelotes_M_N : N ; - zelotypia_F_N : N ; - zelotypus_A : A ; - zelus_M_N : N ; - zenith_N : N ; - zenodochium_N_N : N ; - zeroticus_A : A ; - zerum_N_N : N ; - zeta_F_N : N ; - zetarius_M_N : N ; - zimmarra_F_N : N ; - zingiber_N_N : N ; - zinzio_V : V ; - zio_N : N ; - zizania_F_N : N ; - zizanium_N_N : N ; - ziziphum_N_N : N ; - zizyfum_N_N : N ; - zmaragdachates_F_N : N ; - zmaragdinus_A : A ; - zmaragdites_A : A ; - zmaragdos_M_N : N ; - zmaragdus_M_N : N ; - zmegma_N_N : N ; - zmyrna_F_N : N ; - zodiacus_M_N : N ; - zona_F_N : N ; - zonarius_A : A ; - zonarius_M_N : N ; - zonula_F_N : N ; - zoologia_F_N : N ; - zoologicus_A : A ; - zoologus_M_N : N ; - zoophorus_M_N : N ; - zotheca_F_N : N ; - zothecula_F_N : N ; - zythum_N_N : N ; + vitus_M_N : N ; -- [FEXEK] :: rim; + vivarium_N_N : N ; -- [XXXDX] :: game enclosure or preserve; + vivatus_A : A ; -- [XXXDS] :: animated; + vivax_A : A ; -- [XXXCO] :: long-lived, tenacious of life; lively, vigorous, energetic; high-spirited; + viverra_F_N : N ; -- [XAXEO] :: ferret/similar animal; + vivesco_V2 : V2 ; -- [XXXDX] :: come to life; begin to live; become lively; + vividus_A : A ; -- [XXXDX] :: lively, vigorous spirited lifelike; + vivifico_V : V ; -- [EEXDX] :: bring back to life; make live; + vivificus_A : A ; -- [FXXDM] :: live-giving, life-restoring; + viviradix_F_N : N ; -- [XXXEC] :: cutting with a root, a layer; + vivisco_V : V ; -- [XXXES] :: come to life; begin to live; become lively; (vivescere); + vivo_V2 : V2 ; -- [XXXAX] :: be alive, live; survive; reside; + vivus_A : A ; -- [XXXAX] :: alive, fresh; living; + vix_Adv : Adv ; -- [XXXAO] :: hardly, scarcely, barely, only just; with difficulty, not easily; reluctantly; + vixdum_Adv : Adv ; -- [XXXCO] :: scarcely yet, only just; + vocabularium_N_N : N ; -- [GXXEK] :: vocabulary; + vocabulum_N_N : N ; -- [XGXBO] :: noun, common/concrete noun; word used to designate thing/idea, term, name; + vocalis_A : A ; -- [XXXDX] :: able to speak; having a notable voice; tuneful; + vocamen_N_N : N ; -- [XXXDX] :: designation, name; + vocatio_F_N : N ; -- [XXXDX] :: calling; vocation; + vocativus_A : A ; -- [XGXFO] :: vocative (case); + vocativus_M_N : N ; -- [XGXFO] :: vocative case; + vocatus_M_N : N ; -- [XXXDX] :: peremptory or urgent call; + vociferatio_F_N : N ; -- [XXXDX] :: loud cry, yell; + vociferor_V : V ; -- [XXXDX] :: utter a loud cry, shout, yell, cry out, announce loudly; + vocito_V : V ; -- [XXXDX] :: call; + vocivus_A : A ; -- [BXXES] :: empty; void; (form of vacivus found in Plautus); + voco_V : V ; -- [XXXAX] :: call, summon; name; call upon; + vocula_F_N : N ; -- [XXXEC] :: low, weak voice; a low tone; a petty speech; + volaemum_N_N : N ; -- [XXXDX] :: large kind of pear; + volans_A : A ; -- [FXXDM] :: flying, soaring; movable, hinged; + volans_M_N : N ; -- [FXXDM] :: mercury (element); flying/soaring things, birds (pl.); + volaticus_A : A ; -- [XXXEC] :: winged, flying; flighty, inconstant; + volatilis_A : A ; -- [XXXDX] :: equipped to fly, flying fleeing, fleeting transient; + volatilitas_F_N : N ; -- [GXXEK] :: volatility; + volatio_F_N : N ; -- [XXXEZ] :: flying about; hovering; + volatus_M_N : N ; -- [XXXDX] :: flight; + volens_A : A ; -- [XXXDX] :: willing, welcome; + volgo_Adv : Adv ; -- [XXXDX] :: generally, universally, everywhere; publicly, in/to the crowd/multitude/world; + volgo_V : V ; -- [XXXDX] :: spread around/among the multitude; publish, divulge, circulate; prostitute; + volgus_N_N : N ; -- [XXXBO] :: common people/general public/multitude/common herd/rabble/crowd/mob; flock; + volitio_F_N : N ; -- [GXXFX] :: volition; (Spinoza); act of willing; resolution; (w/reference to will of God); + volito_V : V ; -- [XXXBX] :: fly about, hover over; + volitus_A : A ; -- [FXXFZ] :: desired; (this is the otherwise-unknown medieval VPAR of volo, velle, volui); + volnero_V2 : V2 ; -- [XXXBO] :: wound/injure/harm, pain/distress; inflict wound on; damage (things/interest of); + volnificus_A : A ; -- [XXXCO] :: causing wounds; + volnus_N_N : N ; -- [XXXAO] :: wound; mental/emotional hurt; injury to one's interests; wound of love; + volo_M_N : N ; -- [XWXEC] :: volunteers (pl.); (in the Second Punic War); + volo_V : V ; -- [XXXAX] :: fly; + volpes_F_N : N ; -- [XXXDX] :: fox; + volsella_F_N : N ; -- [XXXEC] :: pair of tweezers; + voltium_N_N : N ; -- [GSXEK] :: volt; + voltur_M_N : N ; -- [XXXDX] :: vulture; + volturius_M_N : N ; -- [XXXDX] :: vulture; + voltus_M_N : N ; -- [XXXDX] :: face, expression; looks; + volubilis_A : A ; -- [XXXDX] :: winding, twisting; + volubilitas_F_N : N ; -- [XXXDX] :: rapid turning, whirling; circular motion; fickleness (fate); fluency (speech); + volucer_A : A ; -- [XXXBO] :: winged; able to fly; flying; in rapid motion, fleet/swift; transient, fleeting; + volucris_F_N : N ; -- [XXXCO] :: bird, flying insect/creature; constellation Cycnus/Cygnus; + volumen_N_N : N ; -- [XXXDX] :: book, chapter, fold; + voluntarie_Adv : Adv ; -- [XXXES] :: willingly; + voluntarius_A : A ; -- [XXXDX] :: willing, voluntary; + voluntarius_M_N : N ; -- [XXXDX] :: volunteer; + voluntas_F_N : N ; -- [XXXAX] :: will, desire; purpose; good will; wish, favor, consent; + volup_Adv : Adv ; -- [XXXDX] :: with pleasure; pleasurably; [~ esse => be pleasurable/a source of pleasure]; + volupe_Adv : Adv ; -- [XXXDX] :: with pleasure; pleasurably; [~ esse => be a source of pleasure (early)]; + voluptabilis_A : A ; -- [XXXDS] :: pleasurable; voluptuous; + voluptarius_A : A ; -- [XXXEC] :: pleasant; concerned with or devoted to pleasure; + voluptas_F_N : N ; -- [XXXAX] :: pleasure, delight, enjoyment; + voluptuosus_A : A ; -- [XXXEC] :: delightful; + volutabrum_N_N : N ; -- [XXXDX] :: place where pigs wallow, wallowing hole; + volutabundus_A : A ; -- [XXXEC] :: rolling, wallowing; + voluto_V : V ; -- [XXXDX] :: roll, wallow, turn over in one's mind, think or talk over; + volva_F_N : N ; -- [XBXCO] :: womb/uterus/matrix; (esp. sow's); female sexual organ; (seed) covering (L+S); + volvo_V2 : V2 ; -- [XXXAO] :: ||roll along/forward; (PASS) move sinuously (snake); grovel, roll on ground; + vomer_M_N : N ; -- [XXXDX] :: plowshare; stylus (for writing with (L+S); (metaphor for penis); + vomica_F_N : N ; -- [XXXCO] :: abscess, boil, gathering of pus; gathering of fluid found in minerals; + vomitio_F_N : N ; -- [XXXCO] :: vomit; vomited matter; act of vomiting; + vomito_V : V ; -- [XXXDX] :: vomit frequently or continually; + vomitor_M_N : N ; -- [XXXFO] :: one who vomits, vomiter; + vomitorius_A : A ; -- [XXXEO] :: emetic, that is used to provoke vomiting; + vomitus_M_N : N ; -- [XXXCO] :: vomit; vomited matter; act of vomiting; + vomo_V2 : V2 ; -- [XXXDX] :: be sick, vomit; discharge, spew out; belch out; + voracitas_F_N : N ; -- [XXXEZ] :: voracity; + voraginosus_A : A ; -- [XXXFS] :: pit-filled; full of pits; full of chasms; + vorago_F_N : N ; -- [XXXDX] :: deep hole, chasm, watery hollow; + vorax_M_N : N ; -- [XXXDX] :: ravenous; insatiable; devouring; + voro_V : V ; -- [XXXDX] :: swallow, devour; + vorsipellis_M_N : N ; -- [XXXEO] :: shape-changer, who can metamorphose to different shape; double-dealer (Vulgate); + vorsum_Acc_Prep : Prep ; -- [BXXCO] :: toward, in the direction of; (placed after ACC); -ward (after name of town); + vorsum_Adv : Adv ; -- [BXXCO] :: toward, in the direction of; in specified direction; towards quarter named; + vorsus_Acc_Prep : Prep ; -- [BXXCO] :: toward, in the direction of; (placed after ACC); -ward (after name of town); + vorsus_Adv : Adv ; -- [BXXCO] :: toward, in the direction of; in specified direction; towards quarter named; + vortex_M_N : N ; -- [XXXDX] :: whirlpool, eddy, vortex; crown of the head; peak, top, summit; the pole; + voster_A : A ; -- [AXXBO] :: your (pl.), of/belonging to/associated with you; + votivus_A : A ; -- [XXXDX] :: offered in fulfillment of a vow; + voto_V2 : V2 ; -- [BXXAO] :: forbid, prohibit; reject, veto; be an obstacle to; prevent; + votum_N_N : N ; -- [XXXAO] :: vow, pledge, religious undertaking/promise; prayer/wish; votive offering; vote; + voveo_V : V ; -- [XXXDX] :: vow, dedicate, consecrate; + vox_F_N : N ; -- [XXXAX] :: voice, tone, expression; + vulcanus_M_N : N ; -- [GXXEK] :: volcano; + vulgaris_A : A ; -- [XXXDX] :: usual, common, commonplace, everyday; of the common people; shared by all; + vulgator_M_N : N ; -- [XXXDX] :: divulger; + vulgatus_A : A ; -- [XXXDX] :: common, ordinary; conventional, well-known; + vulgivagus_A : A ; -- [XXXDX] :: widely ranging; promiscuous; + vulgo_Adv : Adv ; -- [XXXDX] :: generally, usually; universally; publicly, in/to the crowd/multitude/world; + vulgo_V : V ; -- [XXXBX] :: spread around/among the multitude; publish, divulge, circulate; prostitute; + vulgus_N_N : N ; -- [XXXBO] :: common people/general public/multitude/common herd/rabble/crowd/mob; flock; + vulnero_V2 : V2 ; -- [XXXBO] :: wound/injure/harm, pain/distress; inflict wound on; damage (things/interest of); + vulnificus_A : A ; -- [XXXCO] :: causing wounds; + vulnus_N_N : N ; -- [XXXAO] :: wound; mental/emotional hurt; injury to one's interests; wound of love; + vulo_V : V ; -- [XXXEX] :: wish, want, prefer; be willing, will; + vulpecula_F_N : N ; -- [XXXDX] :: fox (little); + vulpes_F_N : N ; -- [XAXBX] :: fox; + vulticulus_M_N : N ; -- [XXXEC] :: look, aspect; + vultuosus_A : A ; -- [XXXEC] :: grimacing, affected; + vultur_M_N : N ; -- [XXXDX] :: vulture; + vulturius_M_N : N ; -- [XXXDX] :: vulture; + vulturnus_A : A ; -- [FXXFM] :: south-east; south-easterly; + vultus_M_N : N ; -- [XXXAX] :: face, expression; looks; + vulva_F_N : N ; -- [XBXCO] :: womb/uterus/matrix; (esp. sow's); female sexual organ; (seed) covering (L+S); + wadiarius_M_N : N ; -- [FLXFY] :: executor of will; security; + wadiator_M_N : N ; -- [FLXFY] :: executor of will; + warantia_F_N : N ; -- [FLXFJ] :: warranty; + warantizatio_F_N : N ; -- [FLXFJ] :: warranty; + warantizo_V : V ; -- [FLXFJ] :: warrant; + warantus_M_N : N ; -- [FLXFJ] :: warrantor; + warra_F_N : N ; -- [FWXEM] :: war; retaliation, feud; + werra_F_N : N ; -- [FWXEM] :: war; retaliation, feud; + xandicus_M_N : N ; -- [EEQEW] :: Xanthicus (Greek), Abib/Nisen/first month of Jewish ecclesiastical calendar; + xeniolum_N_N : N ; -- [XXXEO] :: small present/gift; + xenium_N_N : N ; -- [XXXDO] :: present/gift from host to guest; gift (other); picture depicting such gift; + xenodochium_N_N : N ; -- [DXXES] :: guest-house; inn, caravansary; hospital/home for strangers/travelers; hospice; + xenodochus_M_N : N ; -- [DXXFS] :: one who receives strangers; superintendent of stranger's hospital/housing; + xenon_M_N : N ; -- [DXXES] :: guest-house; inn, caravansary; hospital/home for strangers/travelers; hospice; + xenoparochus_M_N : N ; -- [DXXFS] :: one who attends or provides for strangers; + xenophobia_F_N : N ; -- [GXXEK] :: xenophobia; hatred/antipathy towards foreigners; + xerampelina_F_N : N ; -- [XXXEC] :: dark red garments (pl.); + xerophagia_F_N : N ; -- [XBXFS] :: eating dry food; dry fast (Ecc); + xiphias_M_N : N ; -- [XXXDX] :: swordfish; + xprimus_M_N : N ; -- [XLXDO] :: one of 10 seniors of the senate/priesthood in municipium/colonia; abb. xprimus; + xvir_M_N : N ; -- [XLXCO] :: decemvir, one of ten men; (commission of ten, board with consular powers); + xviralis_A : A ; -- [XLXCO] :: of/belonging to a decemvirate (office of decemvir/board of ten); abb. xviralis; + xviratus_M_N : N ; -- [XXXDO] :: office of decemvir; abb. xviratus; + xylon_N_N : N ; -- [XAXNO] :: cotton (plant); + xylophonum_N_N : N ; -- [GDXEK] :: xylophone; + xysticus_M_N : N ; -- [XXXDX] :: athlete; + xystus_M_N : N ; -- [XXXDX] :: shaded/colonnaded walk; covered way used for winter athletic exercise; + yatus_A : A ; -- [XXXFX] :: gaped; + zabulus_M_N : N ; -- [EEXCM] :: devil; The Devil, Satan, Prince of Evil/Darkness; evil one; + zaeta_F_N : N ; -- [XBXFS] :: |diet, regimen; course of treatment, way/mode of living prescribed by physician; + zagon_M_N : N ; -- [XSXEO] :: diagonal line, line from one angle to an opposite; (geometry); + zagonus_M_N : N ; -- [XSXEO] :: diagonal line, line from one angle to an opposite; (geometry); + zai_N : N ; -- [DEQEW] :: zayin; (7th letter of Hebrew alphabet); (transliterate as Z); + zain_N : N ; -- [EEQEE] :: zayin; (7th letter of Hebrew alphabet); (transliterate as Z); + zamia_F_N : N ; -- [XBXEO] :: injury; damage;; hurt (L+S); loss; + zea_F_N : N ; -- [XAXEO] :: grain; emmer wheat (Triticum diciccum); spelt (T. spelta L+S); rosemary (kind); + zebra_C_N : N ; -- [GXXEK] :: zebra; + zelo_V2 : V2 ; -- [XEXFO] :: love ardently; be jealous of (L+S); be serious about; + zelotes_M_N : N ; -- [EEXES] :: one who is jealous; who loves with jealously (God); who loves with zeal (Ecc); + zelotypia_F_N : N ; -- [XXXDX] :: jealousy; + zelotypus_A : A ; -- [XXXDX] :: jealous; + zelus_M_N : N ; -- [XXXEO] :: jealousy; spirit of rivalry/emulation, partisanship; zeal (L+S); fervor; + zenith_N : N ; -- [GXXEK] :: zenith; + zenodochium_N_N : N ; -- [FXXEM] :: guest-house; inn, caravansary; hospital/home for strangers/travelers; hospice; + zeroticus_A : A ; -- [GXXEK] :: zero (adj.); + zerum_N_N : N ; -- [GXXEK] :: zero; + zeta_F_N : N ; -- [XBXFS] :: |diet, regimen; course of treatment, way/mode of living prescribed by physician; + zetarius_M_N : N ; -- [FXXFE] :: valet; chamberlain; + zimmarra_F_N : N ; -- [FEXFE] :: cassock w/small cape; + zingiber_N_N : N ; -- [GXXEK] :: ginger; + zinzio_V : V ; -- [XXXDX] :: zinzie; (expressing the sound made by a blackbird); + zio_N : N ; -- [EEQEW] :: ziv, Hebrew name of ancient second month; (meaning splendor/flowering); + zizania_F_N : N ; -- [EAXCP] :: cockle, darnel, tares, wild vetch; (noxious weed in the grain); + zizanium_N_N : N ; -- [DAXDS] :: cockle, darnel, tares, wild vetch; (noxious weed in the grain); + ziziphum_N_N : N ; -- [DAXNS] :: jujube plant (Pliny); + zizyfum_N_N : N ; -- [DAXNS] :: jujube plant (Pliny); + zmaragdachates_F_N : N ; -- [XXHNO] :: precious stone (described as a variety of agate); + zmaragdinus_A : A ; -- [XXHFO] :: emerald-green; + zmaragdites_A : A ; -- [XXHNO] :: emerald-like, having the nature of emeralds; + zmaragdos_M_N : N ; -- [XXHCO] :: green precious stone, emerald; beryl, jasper; + zmaragdus_M_N : N ; -- [XXHCO] :: green precious stone; emerald; beryl, jasper; + zmegma_N_N : N ; -- [XXXNO] :: ointment; cleansing preparation; fine slag from copper melting; + zmyrna_F_N : N ; -- [XXXCO] :: myrrh; Smyrna (city on the coast of Ionia); + zodiacus_M_N : N ; -- [XXXDX] :: zodiac; + zona_F_N : N ; -- [XXXBO] :: |celestial zone; encircling band/marking; B:shingles (Herpes zoster); + zonarius_A : A ; -- [XXXEC] :: girdle-, of a girdle; + zonarius_M_N : N ; -- [XXXEC] :: girdle-maker; + zonula_F_N : N ; -- [XXXDS] :: little belt; little girdle; + zoologia_F_N : N ; -- [GSXEK] :: zoology; + zoologicus_A : A ; -- [GSXEK] :: zoological; + zoologus_M_N : N ; -- [GSXEK] :: zoologist; + zoophorus_M_N : N ; -- [XTXFS] :: column-frieze; + zotheca_F_N : N ; -- [XXXEC] :: private room; + zothecula_F_N : N ; -- [XXXDS] :: small closet; cubicle; + zythum_N_N : N ; -- [DAXNS] :: malt-liquor (Pliny); } From d960d0d361003c4d524105037ecfd70dfdfcaf17 Mon Sep 17 00:00:00 2001 From: Herbert Lange Date: Tue, 29 Oct 2019 14:46:40 +0100 Subject: [PATCH 60/85] tried to implement CountNP --- src/latin/NounLat.gf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/latin/NounLat.gf b/src/latin/NounLat.gf index 7c0df4128..907b12da1 100644 --- a/src/latin/NounLat.gf +++ b/src/latin/NounLat.gf @@ -179,4 +179,9 @@ concrete NounLat of Noun = CatLat ** open ResLat, Prelude, ConjunctionLat in { { s = \\n,c => cn.s ! n ! c ++ (combineNounPhrase np) ! PronNonDrop ! c ; } ; -- massable = cn.massable } ; + + -- CountNP : Det -> NP -> NP ; -- three of them, some of the boys + CountNP det np = np ** { + det = det + }; } From 11a4d6ed123a6541b2c49cf04f270be4fcaeb072 Mon Sep 17 00:00:00 2001 From: Herbert Lange Date: Thu, 31 Oct 2019 13:15:29 +0100 Subject: [PATCH 61/85] some fixes and extensions --- src/latin/AdverbLat.gf | 2 +- src/latin/ExtendLat.gf | 2 +- src/latin/NounLat.gf | 6 +++--- src/latin/ResLat.gf | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/src/latin/AdverbLat.gf b/src/latin/AdverbLat.gf index 473073103..db44f63fa 100644 --- a/src/latin/AdverbLat.gf +++ b/src/latin/AdverbLat.gf @@ -8,7 +8,7 @@ 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 ++ (combineNounPhrase np) ! PronNonDrop ! prep.c ) ; + mkAdv (prep.s ++ (combineNounPhrase np) ! PronNonDrop ! prep.c ) ; -- ComparAdvAdj : CAdv -> A -> NP -> Adv ; -- more warmly than John diff --git a/src/latin/ExtendLat.gf b/src/latin/ExtendLat.gf index d1babd834..003ca30e3 100644 --- a/src/latin/ExtendLat.gf +++ b/src/latin/ExtendLat.gf @@ -90,7 +90,7 @@ concrete ExtendLat of Extend = CatLat ** open ResLat in { -- EmbedPresPart : VP -> SC ; -- looking at Mary (is fun) -- PastPartAP : VPSlash -> AP ; -- lost (opportunity) ; (opportunity) lost in space - PastPartAP vp = { s = vp.part ! VPassPerf } ; + PastPartAP vp = { s = \\ag => vp.part ! VPassPerf ! ag ++ vp.adv ++ vp.c.s} ; -- TODO -- PastPartAgentAP : VPSlash -> NP -> AP ; -- (opportunity) lost by the company -- -- this is a generalization of Verb.PassV2 and should replace it in the future. diff --git a/src/latin/NounLat.gf b/src/latin/NounLat.gf index 907b12da1..e52cd3c94 100644 --- a/src/latin/NounLat.gf +++ b/src/latin/NounLat.gf @@ -85,7 +85,7 @@ concrete NounLat of Noun = CatLat ** open ResLat, Prelude, ConjunctionLat in { -- DetQuant quant num = { s = \\g,c => quant.s ! Ag g num.n c ++ num.s ! g ! c ; - sp = \\g,c => quant.sp ! Ag g num.n c ++ num.s ! g ! c ; + sp = \\g,c => quant.sp ! Ag g num.n c ; n = num.n } ; @@ -182,6 +182,6 @@ concrete NounLat of Noun = CatLat ** open ResLat, Prelude, ConjunctionLat in { -- CountNP : Det -> NP -> NP ; -- three of them, some of the boys CountNP det np = np ** { - det = det + det = det ** { s = \\g,c => det.s ! g ! c++ np.det.s ! g ! c } ; }; -} +} \ No newline at end of file diff --git a/src/latin/ResLat.gf b/src/latin/ResLat.gf index 702e2bea9..419ad088f 100644 --- a/src/latin/ResLat.gf +++ b/src/latin/ResLat.gf @@ -351,6 +351,7 @@ param VAct VSim (VPres VInd) Sg P1 => -- Present Indicative ( case pres_ind_base of { _ + "a" => ( init pres_ind_base ) ; + -- | _ + "ui" => ( init pres_ind_base ) ; _ => pres_ind_base } ) + "o" ; --actPresEnding Sg P1 ; From 6a6062039e8c44f6177dd4122552c230fcbca84c Mon Sep 17 00:00:00 2001 From: Aarne Ranta Date: Wed, 6 Nov 2019 17:05:04 +0100 Subject: [PATCH 62/85] some more concrete configs in LangEng --- src/english/LangEng.labels | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/english/LangEng.labels b/src/english/LangEng.labels index 482344348..e011bab47 100644 --- a/src/english/LangEng.labels +++ b/src/english/LangEng.labels @@ -1,7 +1,7 @@ -UseV,ComplVV,ComplVS,ComplVQ,ComplVA,SlashV2a,SlashV2V,SlashV2A,SlashV2S,Slash2V3,Slash3V3,UseComp,ProgrVP,PassV2 {"not","don't","doesn't","didn't","haven't","hasn't","hadn't","wouldn't","won't","isn't","aren't","wasn't","weren't"} PART neg head -UseV,ComplVV,ComplVS,ComplVQ,ComplVA,SlashV2a,SlashV2V,SlashV2A,SlashV2S,Slash2V3,Slash3V3,UseComp,ProgrVP,PassV2 {"has","had","have","will","would","do","does","did"} AUX aux head +UseV,ComplVV,ComplVS,ComplVQ,ComplVA,SlashV2a,SlashV2V,SlashV2A,SlashV2S,Slash2V3,Slash3V3,UseComp,CompAdv,CompNP,CompAP,CompCN,ProgrVP,PassV2 {"not","don't","doesn't","didn't","haven't","hasn't","hadn't","wouldn't","won't","isn't","aren't","wasn't","weren't"} PART neg head +UseV,ComplVV,ComplVS,ComplVQ,ComplVA,SlashV2a,SlashV2V,SlashV2A,SlashV2S,Slash2V3,Slash3V3,UseComp,CompAdv,CompNP,CompAP,CompCN,ProgrVP,PassV2 {"has","had","have","will","would","do","does","did"} AUX aux head UseV,UseComp {"to"} PART mark head -UseComp,ProgrVP,QuestIComp {"is","are","am","was","were","been","be"} VERB cop head +UseComp,CompAdv,CompAP,CompNP,CompCN,ProgrVP,QuestIComp {"is","are","am","was","were","been","be"} VERB cop head CompCN {"a","an"} DET det head PassV2 {"is","are","am","was","were""been","be"} VERB auxpass head ComplVV {"to"} PART mark xcomp From 6a245549289c6abec1e407eac0295ccba9977c83 Mon Sep 17 00:00:00 2001 From: aarneranta Date: Wed, 6 Nov 2019 17:08:47 +0100 Subject: [PATCH 63/85] fixed (hopefully) the rest confusions in French mkA argument order --- src/french/MorphoFre.gf | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/french/MorphoFre.gf b/src/french/MorphoFre.gf index b87c55b24..bac8693da 100644 --- a/src/french/MorphoFre.gf +++ b/src/french/MorphoFre.gf @@ -106,44 +106,44 @@ oper _ => grand + "e" } in - mkAdj grand (grand + "s") grande (grande + "ment") ; + mkAdj grand grande (grand + "s") (grande + "ment") ; -- Masculine form used for adverbial; also covers "carré". adjJoli : Str -> Adj = \joli -> - mkAdj joli (joli + "s") (joli + "e") (joli + "ment") ; + mkAdj joli (joli + "e") (joli + "s") (joli + "ment") ; adjHeureux : Str -> Adj = \heureux -> let {heureu = Predef.tk 1 heureux} in - mkAdj heureux heureux (heureu+"se") (heureu+"sement") ; + mkAdj heureux (heureu+"se") heureux (heureu+"sement") ; adjBanal : Str -> Adj = \banal -> let {bana = Predef.tk 1 banal} in - mkAdj banal (bana + "ux") (banal+"e") (banal+"ement") ; + mkAdj banal (banal + "e") (bana+"ux") (banal+"ement") ; adjJeune : Str -> Adj = \jeune -> - mkAdj jeune (jeune+"s") jeune (jeune+"ment") ; + mkAdj jeune jeune (jeune+"s") (jeune+"ment") ; adjIndien : Str -> Adj = \indien -> - mkAdj indien (indien+"s") (indien+"ne") (indien+"nement") ; + mkAdj indien (indien+"ne") (indien+"s") (indien+"nement") ; adjTel : Str -> Adj = \tel -> - mkAdj tel (tel+"s") (tel+"le") (tel+"lement") ; + mkAdj tel (tel+"le") (tel+"s") (tel+"lement") ; adjFrancais : Str -> Adj = \francais -> - mkAdj francais francais (francais+"e") (francais+"ement") ; + mkAdj francais (francais+"e") francais (francais+"ement") ; adjCher : Str -> Adj = \cher -> let {ch = Predef.tk 2 cher} in - mkAdj cher (cher + "s") (ch + "ère") (ch + "èrement") ; + mkAdj cher (ch + "ère") (cher + "s") (ch + "èrement") ; adjPublic : Str -> Adj = \public -> let publique = init public + "que" in - mkAdj public (public+"s") (publique) (publique+"ment") ; + mkAdj public publique (public+"s") (publique+"ment") ; adjVif : Str -> Adj = \vif -> let vive = init vif + "ve" in - mkAdj vif (vif+"s") (vive) (vive+"ment") ; + mkAdj vif vive (vif+"s") (vive+"ment") ; mkAdjReg : Str -> Adj = \creux -> case Predef.dp 3 creux of { From 523b4841fce93977119a576d22ff3533ac3432fd Mon Sep 17 00:00:00 2001 From: Herbert Lange Date: Sun, 10 Nov 2019 20:39:42 +0100 Subject: [PATCH 64/85] fixing issues with extend and add new rule for different word order --- src/latin/ExtraLat.gf | 2 ++ src/latin/ExtraLatAbs.gf | 5 ++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/latin/ExtraLat.gf b/src/latin/ExtraLat.gf index 41e24af62..e3981751d 100644 --- a/src/latin/ExtraLat.gf +++ b/src/latin/ExtraLat.gf @@ -50,4 +50,6 @@ concrete ExtraLat of ExtraLatAbs = Abl_Prep = mkPrep "" Abl ; inAbl_Prep = mkPrep "in" Abl ; onAbl_Prep = mkPrep "in" Abl ; -- L... + + UttSSVO s = { s = combineSentence s ! SPreS ! PreS ! CPreV ! SVO }; } diff --git a/src/latin/ExtraLatAbs.gf b/src/latin/ExtraLatAbs.gf index 7bfe0fd33..571a90dba 100644 --- a/src/latin/ExtraLatAbs.gf +++ b/src/latin/ExtraLatAbs.gf @@ -1,5 +1,5 @@ abstract ExtraLatAbs = - Extra, Conjunction + Conjunction ** { cat CS ; fun @@ -29,4 +29,7 @@ abstract ExtraLatAbs = -- Preposition with alternate case inAbl_Prep : Prep ; onAbl_Prep : Prep ; + + -- Add all the word orders + UttSSVO : S -> Utt ; } From 48d9b3909ec6d14bc92a90f3e62b22fff41f6356 Mon Sep 17 00:00:00 2001 From: Herbert Lange Date: Sun, 10 Nov 2019 20:40:32 +0100 Subject: [PATCH 65/85] start reworking grammar to split verb and verb complement --- src/latin/ConjunctionLat.gf | 1 + src/latin/QuestionLat.gf | 4 +++- src/latin/ResLat.gf | 25 +++++++++++++++++-------- src/latin/SentenceLat.gf | 3 ++- 4 files changed, 23 insertions(+), 10 deletions(-) diff --git a/src/latin/ConjunctionLat.gf b/src/latin/ConjunctionLat.gf index 9ff723403..77911d720 100644 --- a/src/latin/ConjunctionLat.gf +++ b/src/latin/ConjunctionLat.gf @@ -16,6 +16,7 @@ concrete ConjunctionLat of Conjunction = o = \\_ => [] ; v = \\_,_ => [] ; neg = \\_ => [] ; + vcompl = [] ; p = ss.p ; sadv = [] ; t = ss.t diff --git a/src/latin/QuestionLat.gf b/src/latin/QuestionLat.gf index 6c0865242..f9c2348e8 100644 --- a/src/latin/QuestionLat.gf +++ b/src/latin/QuestionLat.gf @@ -17,7 +17,8 @@ concrete QuestionLat of Question = CatLat ** open ResLat, IrregLat, Prelude in { neg = \\_,_ => "" ; o = \\_ => vp.obj ; q = ip.s ! Nom ; - v = \\t,a,_,ap,cp => vp.s ! VAct (anteriorityToVAnter a) (tenseToVTense t) ip.n P3 ! VQFalse + v = \\t,a,_,ap,cp => vp.s ! VAct (anteriorityToVAnter a) (tenseToVTense t) ip.n P3 ! VQFalse ; + vcompl = vp.compl ! Ag Masc ip.n Nom ; -- default gender masculine } ; -- let qcl = mkQuestion { s = ip.s ! Nom } ( mkClause emptyNP vp ) -- in {s = \\t,a,b,qd => qcl.s ! t ! a ! b ! qd} ; @@ -40,6 +41,7 @@ concrete QuestionLat of Question = CatLat ** open ResLat, IrregLat, Prelude in { 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 ; + vcompl = "" ; } ; -- -- diff --git a/src/latin/ResLat.gf b/src/latin/ResLat.gf index 419ad088f..2ebbbb14c 100644 --- a/src/latin/ResLat.gf +++ b/src/latin/ResLat.gf @@ -1303,7 +1303,14 @@ oper sadv : Str -- sentence adverb¡ } ; - Clause = {s,o : AdvPos => Str ; v : Tense => Anteriority => VQForm => AdvPos => ComplPos => Str ; neg : Polarity => AdvPos => Str ; adv : Str } ; + Clause = + {s : AdvPos => Str ; + o : AdvPos => Str ; + v : Tense => Anteriority => VQForm => AdvPos => ComplPos => Str ; + det : Determiner ; + compl : Str ; + neg : Polarity => AdvPos => Str ; + adv : Str } ; QClause = {s : C.Tense => Anteriority => C.Pol => QForm => Str} ; mkClause : NounPhrase -> VerbPhrase -> Clause = \np,vp -> @@ -1320,8 +1327,8 @@ oper 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 ; _ => [] } ; - cprev : ComplPos -> Str = \cp -> case cp of { CPreV => compl ; _ => [] } ; - cpostv : ComplPos -> Str = \cp -> case cp of { CPostV => compl ; _ => [] } +-- cprev : ComplPos -> Str = \cp -> case cp of { CPreV => compl ; _ => [] } ; +-- cpostv : ComplPos -> Str = \cp -> case cp of { CPostV => compl ; _ => [] } in { -- subject part of the clause: @@ -1341,12 +1348,14 @@ oper -- 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 +-- 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 ++ - cpostv complpos ; -- complement can also go after the verb - + vp.s ! VAct ( anteriorityToVAnter anter ) ( tenseToVTense tense ) np.n np.p ! vqf ; -- ++ +-- cpostv complpos ; -- complement can also go after the verb + + -- verb complement + vcompl = compl ; -- object part of the clause o = \\advpos => preo advpos ++ vp.obj ; -- optional negation particle, adverbs can be placed before the negation @@ -1361,7 +1370,7 @@ oper neg = cl.neg ! pol.p ; sadv = "" ; t = tense ; - p = pol + p = pol ; } ; combineSentence : Sentence -> ( SAdvPos => AdvPos => ComplPos => Order => Str ) = \s -> diff --git a/src/latin/SentenceLat.gf b/src/latin/SentenceLat.gf index b5294b3e5..8c27956bd 100644 --- a/src/latin/SentenceLat.gf +++ b/src/latin/SentenceLat.gf @@ -67,7 +67,8 @@ concrete SentenceLat of Sentence = CatLat ** open Prelude, ResLat in { -- } ; -- -- AdvS : Adv -> S -> S - AdvS adv s = { s = s.s ; o = s.o ; v = s.v ; neg = s.neg ; t = s.t ; p = s.p ; sadv = adv.s ! Posit ++ s.sadv } ; + AdvS adv s = -- { s = s.s ; o = s.o ; v = s.v ; neg = s.neg ; t = s.t ; p = s.p ; sadv = adv.s ! Posit ++ s.sadv } ; + s ** { sadv = adv.s ! Posit ++ s.sadv } ; -- This covers subjunctive clauses, but they can also be added to the end. -- SSubjS : S -> Subj -> S -> S ; -- I go home if she comes From 57ba9c240a68750a88e24c41e018ecf2bb243957 Mon Sep 17 00:00:00 2001 From: Herbert Lange Date: Sun, 10 Nov 2019 20:40:57 +0100 Subject: [PATCH 66/85] remove no longer missing numeral function --- src/latin/MissingLat.gf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/latin/MissingLat.gf b/src/latin/MissingLat.gf index 269a950b4..bf5c996bd 100644 --- a/src/latin/MissingLat.gf +++ b/src/latin/MissingLat.gf @@ -34,7 +34,7 @@ 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 NumNumeral : Numeral -> Card = notYet "NumNumeral" ; oper OrdDigits : Digits -> Ord = notYet "OrdDigits" ; oper OrdNumeral : Numeral -> Ord = notYet "OrdNumeral" ; oper OrdSuperl : A -> Ord = notYet "OrdSuperl" ; From 2d5a1118936c0b28c964558e1aa6b297e67ad45b Mon Sep 17 00:00:00 2001 From: Herbert Lange Date: Tue, 12 Nov 2019 14:44:46 +0100 Subject: [PATCH 67/85] update combinenounphrase --- src/latin/AdjectiveLat.gf | 6 +++--- src/latin/AdverbLat.gf | 4 ++-- src/latin/CatLat.gf | 2 +- src/latin/NounLat.gf | 2 +- src/latin/PhraseLat.gf | 4 ++-- src/latin/QuestionLat.gf | 2 +- src/latin/ResLat.gf | 12 +++++++++--- src/latin/VerbLat.gf | 2 +- 8 files changed, 20 insertions(+), 14 deletions(-) diff --git a/src/latin/AdjectiveLat.gf b/src/latin/AdjectiveLat.gf index 199ef20fa..6242dfcd4 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" ++ (combineNounPhrase np) ! PronNonDrop ! Nom ; + s = \\ag => a.s ! Compar ! ag ++ "quam" ++ (combineNounPhrase np) ! PronNonDrop ! APostN ! DPreN ! Nom ; } ; -- ComplA2 : A2 -> NP -> AP ; -- married to her ComplA2 a np = { - s = \\ag => a.s ! Posit ! ag ++ a.c.s ++ (combineNounPhrase np) ! PronNonDrop ! a.c.c ; + s = \\ag => a.s ! Posit ! ag ++ a.c.s ++ (combineNounPhrase np) ! PronNonDrop ! APostN ! DPreN ! 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 ++ (combineNounPhrase np) ! PronNonDrop ! Nom } ; + { s = \\ag => cadv.s ++ ap.s ! ag ++ cadv.p ++ (combineNounPhrase np) ! PronNonDrop ! APostN ! DPreN ! Nom } ; -- The superlative use is covered in $Ord$. diff --git a/src/latin/AdverbLat.gf b/src/latin/AdverbLat.gf index db44f63fa..4c54ed03f 100644 --- a/src/latin/AdverbLat.gf +++ b/src/latin/AdverbLat.gf @@ -8,12 +8,12 @@ concrete AdverbLat of Adverb = CatLat ** open ResLat, Prelude, ParadigmsLat in -- PrepNP : Prep -> NP -> Adv ; -- in the house PrepNP prep np = - mkAdv (prep.s ++ (combineNounPhrase np) ! PronNonDrop ! prep.c ) ; + mkAdv (prep.s ++ (combineNounPhrase np) ! PronNonDrop ! APostN ! DPreN ! prep.c ) ; -- ComparAdvAdj : CAdv -> A -> NP -> Adv ; -- more warmly than John ComparAdvAdj cadv a np = - mkAdv (cadv.s ++ a.adv.s ! Compar ++ cadv.p ++ (combineNounPhrase np) ! PronNonDrop ! Nom) ; + mkAdv (cadv.s ++ a.adv.s ! Compar ++ cadv.p ++ (combineNounPhrase np) ! PronNonDrop ! APostN ! DPreN ! Nom) ; -- ComparAdvAdjS : CAdv -> A -> S -> Adv ; -- more warmly than he runs ComparAdvAdjS cadv a s = diff --git a/src/latin/CatLat.gf b/src/latin/CatLat.gf index 1b7fab347..26537bda6 100644 --- a/src/latin/CatLat.gf +++ b/src/latin/CatLat.gf @@ -87,7 +87,7 @@ concrete CatLat of Cat = CommonX-[Adv] ** open ResLat, ParamX, Prelude in { A2 = Adjective ** { c : Prep} ; linref - NP = \np -> combineNounPhrase np ! PronNonDrop ! Nom ; + NP = \np -> combineNounPhrase np ! PronNonDrop ! APreN ! DPostN ! Nom ; VP = \vp -> vp.adv ++ vp.inf ! VInfActPres ++ vp.obj ++ vp.compl ! Ag Masc Sg Nom ; S = \s -> combineSentence s ! SPreO ! PreO ! CPreV ! SOV ; V, VS, VQ, VA, VV = \v -> v.act ! (VAct VSim (VPres VInd) Sg P1) ; diff --git a/src/latin/NounLat.gf b/src/latin/NounLat.gf index e52cd3c94..d671ac5a4 100644 --- a/src/latin/NounLat.gf +++ b/src/latin/NounLat.gf @@ -177,7 +177,7 @@ concrete NounLat of Noun = CatLat ** open ResLat, Prelude, ConjunctionLat in { ApposCN cn np = cn ** { - s = \\n,c => cn.s ! n ! c ++ (combineNounPhrase np) ! PronNonDrop ! c ; + s = \\n,c => cn.s ! n ! c ++ (combineNounPhrase np) ! PronNonDrop ! APostN ! DPreN ! c ; } ; -- massable = cn.massable } ; -- CountNP : Det -> NP -> NP ; -- three of them, some of the boys diff --git a/src/latin/PhraseLat.gf b/src/latin/PhraseLat.gf index fa6fd9df0..828c17b0b 100644 --- a/src/latin/PhraseLat.gf +++ b/src/latin/PhraseLat.gf @@ -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 ++ (combineNounPhrase np) ! PronNonDrop ! Nom} ; + UttNP np = {s = np.adv ++ (combineNounPhrase np) ! PronNonDrop ! APostN ! DPreN ! 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 = "," ++ (combineNounPhrase np) ! PronNonDrop ! ResLat.Voc} ; ---- what is the compiler error here? AR 1/2/2014 -- answer: clash with the type name Voc 3/2 + VocNP np = {s = bindComma ++ (combineNounPhrase np) ! PronNonDrop ! APostN ! DPreN ! 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 f9c2348e8..702d9f53e 100644 --- a/src/latin/QuestionLat.gf +++ b/src/latin/QuestionLat.gf @@ -38,7 +38,7 @@ concrete QuestionLat of Question = CatLat ** open ResLat, IrregLat, Prelude in { s = \\_ => "" ; adv = "" ; neg = \\_,_ => "" ; - o = \\_ => combineNounPhrase np ! PronNonDrop ! Nom ; -- Should probably not go into the object field + o = \\_ => combineNounPhrase np ! PronNonDrop ! APostN ! DPreN ! 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 ; vcompl = "" ; diff --git a/src/latin/ResLat.gf b/src/latin/ResLat.gf index 2ebbbb14c..f888f6742 100644 --- a/src/latin/ResLat.gf +++ b/src/latin/ResLat.gf @@ -26,7 +26,8 @@ param } ; param Order = SVO | VSO | VOS | OSV | OVS | SOV ; - AdvPos = PreS | PreV | PreO | PreNeg | InV | InS ; -- | InO + -- (verb-modifying) adverb position + AdvPos = APreS | APreV | APreO | APreNeg | AInV | AInS | APreN | APostN ; -- | InO ComplPos = CPreV | CPostV ; SAdvPos = SPreS | SPreV | SPreO | SPreNeg ; param @@ -148,8 +149,13 @@ param 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 ; + combineNounPhrase : NounPhrase -> PronDropForm => AdvPos => DetPos => Case => Str = \np -> + let detpren : DetPos -> { s , sp : Case => Str} = \dp -> case dp of { DPreN => np.det ; _ => { s, sp = \\_ => [] } } ; + detpostn : DetPos -> { s , sp : Case => Str} = \dp -> case dp of { DPostN => np.det ; _ => { s, sp = \\_ => [] } } ; + apren : AdvPos -> Str = \ap -> case ap of { APreN => np.adv ; _ => [] } ; + apostn : AdvPos -> Str = \ap -> case ap of { APostN => np.adv ; _ => [] } ; + in + \\pd,ap,dp,c => apren ap ++ (detpren dp).s ! c ++ np.preap.s ! (Ag np.g np.n c) ++ np.s ! pd ! c ++ np.postap.s ! (Ag np.g np.n c) ++ (detpren dp).sp ! c ++ (detpostn dp).s ! c ++ apostn ap ; -- also used for adjectives and so on -- adjectives diff --git a/src/latin/VerbLat.gf b/src/latin/VerbLat.gf index 8c8f30ebd..384a0b686 100644 --- a/src/latin/VerbLat.gf +++ b/src/latin/VerbLat.gf @@ -115,7 +115,7 @@ concrete VerbLat of Verb = CatLat ** open (S=StructuralLat),ResLat,IrregLat,Extr -- CompNP : NP -> Comp ; -- (be) the man CompNP np = {s = \\_ => - (combineNounPhrase np) ! PronNonDrop ! Nom + (combineNounPhrase np) ! PronNonDrop ! APostN ! DPreN ! Nom ; } ; -- CompAdv : Adv -> Comp ; -- (be) here From f46cbfe51e66a98a5314307baea4add3a43b425d Mon Sep 17 00:00:00 2001 From: Herbert Lange Date: Tue, 12 Nov 2019 14:47:21 +0100 Subject: [PATCH 68/85] work on relative clauses --- src/latin/CatLat.gf | 5 +++-- src/latin/ConjunctionLat.gf | 18 ++++++++++++--- src/latin/LangLat.gf | 3 ++- src/latin/RelativeLat.gf | 44 ++++++++++++++++++++++++++++--------- src/latin/SentenceLat.gf | 9 ++++---- 5 files changed, 59 insertions(+), 20 deletions(-) diff --git a/src/latin/CatLat.gf b/src/latin/CatLat.gf index 26537bda6..0b704307e 100644 --- a/src/latin/CatLat.gf +++ b/src/latin/CatLat.gf @@ -8,6 +8,7 @@ concrete CatLat of Cat = CommonX-[Adv] ** open ResLat, ParamX, Prelude in { -- S = Sentence ; QS = {s : QForm => Str} ; + RS = { s : Gender => Number => Str } ; -- Sentence ; -- RS = {s : Agr => Str ; c : Case} ; -- c for it clefts -- SSlash = {s : Str ; c2 : Str} ; -- @@ -28,11 +29,11 @@ concrete CatLat of Cat = CommonX-[Adv] ** open ResLat, ParamX, Prelude in { -- ---- Relative -- --- RCl = { + RCl = Gender => Number => Clause ; -- s : ResLat.Tense => Anteriority => CPolarity => Agr => Str ; -- c : Case -- } ; --- RP = {s : RCase => Str ; a : RAgr} ; + RP = {s : Agr => Str } ; -- ---- Verb -- diff --git a/src/latin/ConjunctionLat.gf b/src/latin/ConjunctionLat.gf index 77911d720..0fc23f3df 100644 --- a/src/latin/ConjunctionLat.gf +++ b/src/latin/ConjunctionLat.gf @@ -62,8 +62,12 @@ concrete ConjunctionLat of Conjunction = -- isPre = ss.isPre -- } ; ---} --- ----- These fun's are generated from the list cat's. + -- + + -- ConjRS : Conj -> ListRS -> RS + ConjRS conj rss = { s = \\g,n => conj.s1 ++ (rss.s ! conj.c).init ! g ! n ++ conj.s2 ++ (rss.s ! conj.c).last ! g ! n++ conj.s3 }; + + ---- These fun's are generated from the list cat's. -- -- BaseS : S -> S -> ListS @@ -131,13 +135,21 @@ concrete ConjunctionLat of Conjunction = -- -- ConsAP : AP -> ListAP -> ListAP -- ConsAP x xs = -- { l = \\_ => consrTable Agr and_Conj.s2 x (xs.l ! Comma ) } ; + + -- BaseRS : RS -> RS -> ListRS ; + BaseRS rs1 rs2 = { s = \\co => { init = rs1.s ; last = rs2.s }} ; + + -- ConsRS : RS -> List RS -> ListRS ; + ConsRS rs rss = { s = \\co => { init = rs.s ; last = \\g,n => coord co { init = (rss.s ! co).init ! g ! n ; last = (rss.s ! co).last ! g ! n } } } ; + + -- lincat [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 } } ; - + [RS] = { s : Coordinator => { init, last : Gender => Number => Str }} ; oper -- Generates a new number value given two number values. -- Pl if any of the two is Pl diff --git a/src/latin/LangLat.gf b/src/latin/LangLat.gf index 09e9d919d..da0c70d2c 100644 --- a/src/latin/LangLat.gf +++ b/src/latin/LangLat.gf @@ -3,7 +3,8 @@ concrete LangLat of Lang = GrammarLat, ParadigmsLat, - LexiconLat + LexiconLat, + RelativeLat -- ConstructionLat ** { diff --git a/src/latin/RelativeLat.gf b/src/latin/RelativeLat.gf index c3b3fa045..7e1a36eac 100644 --- a/src/latin/RelativeLat.gf +++ b/src/latin/RelativeLat.gf @@ -2,14 +2,14 @@ concrete RelativeLat of Relative = CatLat ** open ResLat in { -- -- flags optimize=all_subs ; -- --- lin + lin -- -- RelCl cl = { -- s = \\t,a,p,_ => "such" ++ "that" ++ cl.s ! t ! a ! p ! ODir ; -- c = Nom -- } ; -- --- RelVP rp vp = { + RelVP rp vp = \\g,n => mkClause (emptyNP ** { s = \\_,c => rp.s ! (Ag g n c) ; g = g ; n = n } ) vp ; -- s = \\t,ant,b,ag => -- let -- agr = case rp.a of { @@ -25,19 +25,43 @@ concrete RelativeLat of Relative = CatLat ** open ResLat in { ---- Pied piping: "at which we are looking". Stranding and empty ---- relative are defined in $ExtraLat.gf$ ("that we are looking at", ---- "we are looking at"). --- --- RelSlash rp slash = { + -- + -- RelSlash : RP -> ClSlash -> RCl ; + RelSlash rp slash = \\g,n => slash ** { adv = rp.s ! Ag g n Gen } ; -- abuse adverbs again -- s = \\t,a,p,agr => -- slash.c2 ++ rp.s ! RPrep (fromAgr agr).g ++ slash.s ! t ! a ! p ! ODir ; -- c = Acc --- } ; -- --- FunRP p np rp = { --- s = \\c => (combineNounPhrase np) ! PronNonDrop ! Acc ++ p.s ++ rp.s ! RPrep (fromAgr np.a).g ; --- a = RAg np.a --- } ; + FunRP p np rp = { + s = \\a => case a of { Ag g n c => rp.s ! a ++ p.s ++ (combineNounPhrase np) ! PronNonDrop ! APostN ! DPreN ! Acc }; + -- s = \\c => (combineNounPhrase np) ! PronNonDrop ! Acc ++ p.s ++ rp.s ! RPrep (fromAgr np.a).g ; + -- a = RAg np.a + } ; -- --- IdRP = + IdRP = { + s = table { + Ag Masc Sg (Nom | Voc) => "qui" ; + Ag Fem Sg (Nom | Voc) => "quae" ; + Ag Neutr Sg (Nom | Voc) => "quod" ; + Ag _ Sg Gen => "cuius" ; + Ag _ Sg Dat => "cui" ; + Ag Masc Sg Acc => "quem" ; + Ag Fem Sg Acc => "quam" ; + Ag Neutr Sg Acc => "quod" ; + Ag (Masc | Neutr) Sg Abl => "quo" ; + Ag Fem Sg Abl => "qua" ; + Ag Masc Pl (Nom | Voc) => "qui" ; + Ag (Fem | Neutr) Pl (Nom | Voc) => "quae" ; + Ag (Masc | Neutr) Pl Gen => "quorum" ; + Ag Fem Pl Gen => "quarum" ; + Ag _ Pl Dat => "quibus" ; + Ag Masc Pl Acc => "quos" ; + Ag Fem Pl Acc => "quas" ; + Ag Neutr Pl Acc => "quae" ; + Ag _ Pl Abl => "cui" + } + } + ; -- let varr : Str -> Str = \x -> variants {x ; "that"} --- for bwc -- in { -- s = table { diff --git a/src/latin/SentenceLat.gf b/src/latin/SentenceLat.gf index 8c27956bd..ec91b0c42 100644 --- a/src/latin/SentenceLat.gf +++ b/src/latin/SentenceLat.gf @@ -56,11 +56,12 @@ concrete SentenceLat of Sentence = CatLat ** open Prelude, ResLat in { 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 = { + -- UseRCl : Temp -> Pol -> RCl -> RS ; + UseRCl t p cl = { + s = \\g,n => defaultSentence (combineClause (cl ! g ! n) (lin Tense t) t.a (lin Pol p) VQFalse) ! SOV ; -- s = \\r => t.s ++ p.s ++ cl.s ! t.t ! t.a ! ctr p.p ! r ; -- c = cl.c --- } ; + } ; -- UseSlash t p cl = { -- s = t.s ++ p.s ++ cl.s ! t.t ! t.a ! ctr p.p ! ODir ; -- c2 = cl.c2 @@ -75,7 +76,7 @@ concrete SentenceLat of Sentence = CatLat ** open Prelude, ResLat in { -- TO FIX -- SSubjS s1 subj s2 = { s = \\_ => subj.s ++ s2.s ! PreS ++ s1.s ! PreS ; sadv = lin Adv (mkAdverb []) } ; --- RelS s r = {s = s.s ++ "," ++ r.s ! agrP3 Sg} ; +-- RelS s r = {s = s.s ! APreV ++ "," ++ r.s } ; -- -- oper -- ctr = contrNeg True ; -- contracted negations From 6864f61e9225cdb6e6d37f19c8911b3360eeb886 Mon Sep 17 00:00:00 2001 From: Herbert Lange Date: Tue, 12 Nov 2019 14:48:54 +0100 Subject: [PATCH 69/85] updated createSentence/add defaultSentence --- src/latin/AdverbLat.gf | 4 +- src/latin/CatLat.gf | 2 +- src/latin/PhraseLat.gf | 2 +- src/latin/ResLat.gf | 90 ++++++++++++++++++++++++++++++---------- src/latin/SentenceLat.gf | 4 +- src/latin/VerbLat.gf | 2 +- 6 files changed, 76 insertions(+), 28 deletions(-) diff --git a/src/latin/AdverbLat.gf b/src/latin/AdverbLat.gf index 4c54ed03f..9d35714f2 100644 --- a/src/latin/AdverbLat.gf +++ b/src/latin/AdverbLat.gf @@ -17,7 +17,7 @@ concrete AdverbLat of Adverb = CatLat ** open ResLat, Prelude, ParadigmsLat in -- 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 ! CPreV ! SOV ) ; + mkAdv (cadv.s ++ a.adv.s ! Compar ++ cadv.p ++ defaultSentence s ! SOV ) ; -- AdAdv : AdA -> Adv -> Adv ; -- very quickly AdAdv ada adv = mkAdv (ada.s ++ (adv.s ! Posit) ) ; @@ -29,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 ! CPreV ! SOV ) ; + SubjS subj s = mkAdv (subj.s ++ defaultSentence s ! SOV ) ; -- AdnCAdv : CAdv -> AdN ; -- less (than five) AdnCAdv cadv = {s = cadv.s ++ cadv.p} ; diff --git a/src/latin/CatLat.gf b/src/latin/CatLat.gf index 0b704307e..d73a4a1da 100644 --- a/src/latin/CatLat.gf +++ b/src/latin/CatLat.gf @@ -90,7 +90,7 @@ concrete CatLat of Cat = CommonX-[Adv] ** open ResLat, ParamX, Prelude in { linref NP = \np -> combineNounPhrase np ! PronNonDrop ! APreN ! DPostN ! Nom ; VP = \vp -> vp.adv ++ vp.inf ! VInfActPres ++ vp.obj ++ vp.compl ! Ag Masc Sg Nom ; - S = \s -> combineSentence s ! SPreO ! PreO ! CPreV ! SOV ; + S = \s -> defaultSentence s ! 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 ; diff --git a/src/latin/PhraseLat.gf b/src/latin/PhraseLat.gf index 828c17b0b..9a0763e0c 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 ! CPreV ! SOV }; + UttS s = { s = defaultSentence s ! SOV }; -- UttQS : QS -> Utt UttQS qs = {s = qs.s ! QDir } ; diff --git a/src/latin/ResLat.gf b/src/latin/ResLat.gf index f888f6742..5c6cd6b86 100644 --- a/src/latin/ResLat.gf +++ b/src/latin/ResLat.gf @@ -25,11 +25,19 @@ param det : Determiner } ; param + -- Parameters to determine word order + -- top level order, e.g. subject verb object Order = SVO | VSO | VOS | OSV | OVS | SOV ; + -- determiner position in a noun phrase, e.g. before or after noun + DetPos = DPreN | DPostN ; + -- verb position, eithe regular or interleaved in the subject + VPos = VReg | VInS ; -- (verb-modifying) adverb position AdvPos = APreS | APreV | APreO | APreNeg | AInV | AInS | APreN | APostN ; -- | InO + -- verb complement position in relation to verb ComplPos = CPreV | CPostV ; - SAdvPos = SPreS | SPreV | SPreO | SPreNeg ; + -- sentence adverb position + SAdvPos = SAPreS | SAPreV | SAPreO | SAPreNeg ; param Agr = Ag Gender Number Case ; -- Agreement for NP et al. oper @@ -1303,10 +1311,12 @@ oper Sentence = { s,o,neg : AdvPos => Str ; -- Subject, verbphrase, object and negation particle plus potential adverb - v : AdvPos => ComplPos => Str ; + v : AdvPos => Str ; t : C.Tense ; -- tense marker p : C.Pol ; -- polarity marker - sadv : Str -- sentence adverb¡ + sadv : Str ; -- sentence adverb¡ + det : { s , sp : Case => Str } ; + compl : Str -- verb complement } ; Clause = @@ -1379,32 +1389,70 @@ oper p = pol ; } ; - combineSentence : Sentence -> ( SAdvPos => AdvPos => ComplPos => Order => Str ) = \s -> + combineSentence : Sentence -> ( SAdvPos => AdvPos => DetPos => VPos => 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 ; _ => [] } + advpres : SAdvPos -> Str = \ap -> case ap of { SAPreS => s.sadv ; _ => [] } ; + advprev : SAdvPos -> Str = \ap -> case ap of { SAPreV => s.sadv ; _ => [] } ; + advpreo : SAdvPos -> Str = \ap -> case ap of { SAPreO => s.sadv ; _ => [] } ; + advpreneg : SAdvPos -> Str = \ap -> case ap of { SAPreNeg => s.sadv ; _ => [] } ; + detpren : DetPos -> { s, sp : Case => Str } = \dp -> case dp of { DPreN => s.det; _ => { s,sp = \\_ => [] } } ; + detpostn : DetPos -> { s, sp : Case => Str } = \dp -> case dp of { DPostN => s.det ; _ => { s , sp = \\_ => [] } } ; + verbins : VPos -> ResLat.AdvPos => Str = \vp -> case vp of { VInS => s.v ; _ => \\_ => [] } ; + verbreg : VPos -> ResLat.AdvPos => Str = \vp -> case vp of { VReg => s.v ; _ => \\_ => [] } ; + complprev : ComplPos -> Str = \cp -> case cp of { CPreV => s.compl ; _ => [] } ; + complpostv : ComplPos -> Str = \cp -> case cp of { CPostV => s.compl ; _ => [] } in - -- 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 + -- sadvpos is the position of the sentence adverbial + -- advpos is the position of the adverb + -- detpos is the position of the determiner (relative to the noun) + -- vpos is the position of the main verb (either regular or interleaved) + -- complosp is the position of the verb complement + \\sadvpos,advpos,detpos,verbpos,complpos,order => case order of { + SVO => + s.t.s ++ s.p.s ++ + advpres sadvpos ++ (detpren detpos).s ! Nom ++ s.s ! advpos ++ (verbins verbpos) ! advpos ++ (detpostn detpos).s ! Nom ++ (detpren detpos).sp ! Nom ++ + advpreneg sadvpos ++ s.neg ! advpos ++ + advprev sadvpos ++ (complprev complpos) ++ (verbreg verbpos) ! advpos ++ (complpostv complpos) ++ + advpreo sadvpos ++ s.o ! advpos; + VSO => + s.t.s ++ s.p.s ++ + advpreneg sadvpos ++ s.neg ! advpos ++ + advprev sadvpos ++ (complprev complpos) ++ (verbreg verbpos) ! advpos ++ (complpostv complpos) ++ + advpres sadvpos ++ (detpren detpos).s ! Nom ++ s.s ! advpos ++ (verbins verbpos) ! advpos ++ (detpostn detpos).s ! Nom ++ (detpren detpos).sp ! Nom ++ + advpreo sadvpos ++ s.o ! advpos; + VOS => + s.t.s ++ s.p.s ++ + advpreneg sadvpos ++ s.neg ! advpos ++ + advprev sadvpos ++ (complprev complpos) ++ (verbreg verbpos) ! advpos ++ (complpostv complpos) ++ + advpreo sadvpos ++ s.o ! advpos ++ + advpres sadvpos ++ (detpren detpos).s ! Nom ++ s.s ! advpos ++ (verbins verbpos) ! advpos ++ (detpostn detpos).s ! Nom ++ (detpren detpos).sp ! Nom ; + OSV => + s.t.s ++ s.p.s ++ + advpreo sadvpos ++ s.o ! advpos ++ + advpres sadvpos ++ (detpren detpos).s ! Nom ++ s.s ! advpos ++ (verbins verbpos) ! advpos ++ (detpostn detpos).s ! Nom ++ (detpren detpos).sp ! Nom++ + advpreneg sadvpos ++ s.neg ! advpos ++ + advprev sadvpos ++ (complprev complpos) ++ (verbreg verbpos) ! advpos ++ (complpostv complpos) ; + OVS => + s.t.s ++ s.p.s ++ + advpreo sadvpos ++ s.o ! advpos ++ + advpreneg sadvpos ++ s.neg ! advpos ++ + advprev sadvpos ++ (complprev complpos) ++ (verbreg verbpos) ! advpos ++ (complpostv complpos) ++ + advpres sadvpos ++ (detpren detpos).s ! Nom ++ s.s ! advpos ++ (verbins verbpos) ! advpos ++ (detpostn detpos).s ! Nom ++ (detpren detpos).sp ! Nom ; + SOV => + s.t.s ++ s.p.s ++ + advpres sadvpos ++ (detpren detpos).s ! Nom ++ s.s ! advpos ++ (verbins verbpos) ! advpos ++ (detpostn detpos).s ! Nom ++ (detpren detpos).sp ! Nom ++ + advpreo sadvpos ++ s.o ! advpos ++ + advpreneg sadvpos ++ s.neg ! advpos ++ + advprev sadvpos ++ (complprev complpos) ++ (verbreg verbpos) ! advpos ++ (complpostv complpos) } ; - + defaultSentence : Sentence -> Order => Str = \s -> combineSentence s ! SAPreS ! APreV ! DPreN ! VReg ! CPreV ; -- 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 ! CPreV ! OVS ; - QIndir => ss.s ++ (combineSentence (combineClause cl tense anter pol VQFalse)) ! SPreO ! PreO ! CPreV ! OSV + QDir => ss.s ++ (defaultSentence (combineClause cl tense anter pol VQFalse)) ! OVS ; + QIndir => ss.s ++ (combineSentence (combineClause cl tense anter pol VQFalse)) ! SAPreO ! APreO ! DPreN ! VReg ! CPreV ! OSV } }; diff --git a/src/latin/SentenceLat.gf b/src/latin/SentenceLat.gf index ec91b0c42..e3e7065e7 100644 --- a/src/latin/SentenceLat.gf +++ b/src/latin/SentenceLat.gf @@ -52,8 +52,8 @@ concrete SentenceLat of Sentence = CatLat ** open Prelude, ResLat in { { 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 + QDir => cl.q ++ defaultSentence qs ! 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 ++ defaultSentence qs ! SOV -- t.s ++ p.s ++ cl.q ++ cl.s ! PreV ++ cl.o ! PreV ++ cl.v ! t.t ! t.a ! VQTrue ! PreV ! CPostV } } ; -- UseRCl : Temp -> Pol -> RCl -> RS ; diff --git a/src/latin/VerbLat.gf b/src/latin/VerbLat.gf index 384a0b686..ffaff356e 100644 --- a/src/latin/VerbLat.gf +++ b/src/latin/VerbLat.gf @@ -20,7 +20,7 @@ concrete VerbLat of Verb = CatLat ** open (S=StructuralLat),ResLat,IrregLat,Extr 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 ; + compl = \\ag => defaultSentence s ! SOV ; -- s.s ! QIndir ; adv = [] ; obj = [] } ; From f60a4a2052164d90449b5c3c6f7c51d37f1e2eaf Mon Sep 17 00:00:00 2001 From: Herbert Lange Date: Tue, 12 Nov 2019 14:50:08 +0100 Subject: [PATCH 70/85] fix clauses --- src/latin/ResLat.gf | 38 ++++++++++++++++++-------------------- 1 file changed, 18 insertions(+), 20 deletions(-) diff --git a/src/latin/ResLat.gf b/src/latin/ResLat.gf index 5c6cd6b86..fe9409005 100644 --- a/src/latin/ResLat.gf +++ b/src/latin/ResLat.gf @@ -1322,8 +1322,8 @@ oper Clause = {s : AdvPos => Str ; o : AdvPos => Str ; - v : Tense => Anteriority => VQForm => AdvPos => ComplPos => Str ; - det : Determiner ; + v : Tense => Anteriority => VQForm => AdvPos => Str ; + det : { s , sp : Case => Str } ; compl : Str ; neg : Polarity => AdvPos => Str ; adv : Str } ; @@ -1337,41 +1337,39 @@ oper 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 ; _ => [] } ; - prev : AdvPos -> Str = \ap -> case ap of { PreV => adv ; _ => [] } ; - 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 ; _ => [] } ; --- cprev : ComplPos -> Str = \cp -> case cp of { CPreV => compl ; _ => [] } ; --- cpostv : ComplPos -> Str = \cp -> case cp of { CPostV => compl ; _ => [] } + pres : AdvPos -> Str = \ap -> case ap of { APreS => adv ; _ => [] } ; + prev : AdvPos -> Str = \ap -> case ap of { APreV => adv ; _ => [] } ; + preo : AdvPos -> Str = \ap -> case ap of { APreO => adv ; _ => [] } ; + preneg : AdvPos -> Str = \ap -> case ap of { APreNeg => adv ; _ => [] } ; + ins : AdvPos -> Str = \ap -> case ap of { AInS => adv ; _ => [] } ; + inv : AdvPos -> Str = \ap -> case ap of { AInV => adv ; _ => [] } ; in { -- subject part 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.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 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 + 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 -- advposis the adverb position in the clause -- comppos is the position of the verb complement - v = \\tense,anter,vqf,advpos,complpos => + v = \\tense,anter,vqf,advpos => 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 ; -- ++ -- cpostv complpos ; -- complement can also go after the verb - + det = np.det ; --{ s = np.det.s ! np.g ; sp = np.det.sp ; n = np.n } ; -- verb complement - vcompl = compl ; + compl = compl ; -- object part of the clause o = \\advpos => preo advpos ++ vp.obj ; -- optional negation particle, adverbs can be placed before the negation @@ -1380,11 +1378,11 @@ oper } ; combineClause : Clause -> C.Tense -> Anteriority -> C.Pol -> VQForm -> Sentence = \cl,tense,anter,pol,vqf -> - { s = cl.s ; - o = cl.o ; - v = cl.v ! tense.t ! anter ! vqf ; + cl ** + { + v = \\advpos => cl.v ! tense.t ! anter ! vqf ! advpos ; neg = cl.neg ! pol.p ; - sadv = "" ; + sadv = cl.adv ; t = tense ; p = pol ; } ; From b49cd9afc3fea0a37f09e9f7b033b92f3ddc4610 Mon Sep 17 00:00:00 2001 From: Herbert Lange Date: Tue, 12 Nov 2019 14:51:43 +0100 Subject: [PATCH 71/85] add passive to vp and add emptyvp --- src/latin/ResLat.gf | 23 ++++++++++++++++++++--- src/latin/VerbLat.gf | 6 ++++-- 2 files changed, 24 insertions(+), 5 deletions(-) diff --git a/src/latin/ResLat.gf b/src/latin/ResLat.gf index fe9409005..241afce4b 100644 --- a/src/latin/ResLat.gf +++ b/src/latin/ResLat.gf @@ -278,7 +278,8 @@ param oper VerbPhrase : Type = { s : VActForm => VQForm => Str ; - part : VPartForm =>Agr => Str ; + pass : VPassForm => VQForm => Str ; + part : VPartForm => Agr => Str ; inf : VInfForm => Str ; imp : VImpForm => Str ; obj : Str ; @@ -288,6 +289,17 @@ param ObjectVerbPhrase : Type = VerbPhrase ** {c : Preposition} ; + emptyVP : VerbPhrase = { + s = \\_,_ => "" ; + pass = \\_,_ => "" ; + part = \\_,_ => "" ; + inf = \\_ => "" ; + imp = \\_ => "" ; + obj = ""; + compl = \\_ => "" ; + adv = "" + } ; + Verb : Type = { act : VActForm => Str ; pass : VPassForm => Str ; @@ -1250,6 +1262,7 @@ oper predV : Verb -> VerbPhrase = \v -> { s = \\a,q => v.act ! a ++ case q of { VQTrue => Prelude.BIND ++ "ne"; VQFalse => "" }; + pass = \\p,q => v.pass ! p ++ case q of { VQTrue => Prelude.BIND ++ "ne"; VQFalse => "" }; part = v.part; imp = v.imp ; inf = v.inf ; @@ -1268,20 +1281,22 @@ oper insertObj : NounPhrase -> Preposition -> VerbPhrase -> VerbPhrase = \np,prep,vp -> { s = vp.s ; + pass = vp.pass ; 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 ! PronNonDrop)) ++ np.postap.s ! (Ag np.g np.n prep.c) ++ np.det.sp ! np.g ! prep.c ++ vp.obj ; + obj = np.det.s ! 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 ! prep.c ++ vp.obj ; compl = vp.compl ; adv = vp.adv ++ np.adv } ; insertObjc: NounPhrase -> VPSlash -> VPSlash = \np,vp -> { s = vp.s ; + pass = vp.pass ; 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 ! PronNonDrop)) ++ 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 ! 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 ! vp.c.c ++ vp.obj ; compl = vp.compl ; c = vp.c ; adv = vp.adv ++ np.adv @@ -1289,6 +1304,7 @@ oper insertAdj : (Agr => Str) -> VerbPhrase -> VerbPhrase = \adj,vp -> { s = vp.s ; + pass = vp.pass ; part = vp.part ; imp = vp.imp ; inf = vp.inf ; @@ -1299,6 +1315,7 @@ oper insertAdv : Adverb -> VerbPhrase -> VerbPhrase = \a,vp -> { s = vp.s ; + pass = vp.pass ; part = vp.part ; imp = vp.imp ; inf = vp.inf ; diff --git a/src/latin/VerbLat.gf b/src/latin/VerbLat.gf index ffaff356e..289d94c67 100644 --- a/src/latin/VerbLat.gf +++ b/src/latin/VerbLat.gf @@ -19,7 +19,8 @@ concrete VerbLat of Verb = CatLat ** open (S=StructuralLat),ResLat,IrregLat,Extr -- ComplVS : VS -> S -> VP ; -- say that she runs ComplVS vs s = -- insertObj ( dummyNP (S.that_Subj.s ++ s.s ! PreS)) Nom_Prep (predV v) ; vs ** { - s = \\af,qf => vs.act ! af ; + s = \\a,q => vs.act ! a ++ case q of { VQTrue => Prelude.BIND ++ "ne"; VQFalse => "" }; + pass = \\p,q => vs.pass ! p ++ case q of { VQTrue => Prelude.BIND ++ "ne"; VQFalse => "" }; compl = \\ag => defaultSentence s ! SOV ; -- s.s ! QIndir ; adv = [] ; obj = [] @@ -27,7 +28,8 @@ concrete VerbLat of Verb = CatLat ** open (S=StructuralLat),ResLat,IrregLat,Extr -- ComplVQ : VQ -> QS -> VP ; -- wonder who runs ComplVQ vq qs = -- insertObj (dummyNP (q.s ! QIndir)) Nom_Prep (predV v) ; vq ** { - s = \\af,qf => vq.act ! af ; + s = \\a,q => vq.act ! a ++ case q of { VQTrue => Prelude.BIND ++ "ne"; VQFalse => "" }; + pass = \\p,q => vq.pass ! p ++ case q of { VQTrue => Prelude.BIND ++ "ne"; VQFalse => "" }; compl = \\ag => qs.s ! QIndir ; adv = [] ; obj = [] From 5b04dbffa0b3d43ef873d5397b967d3412ee18c2 Mon Sep 17 00:00:00 2001 From: Herbert Lange Date: Tue, 12 Nov 2019 14:53:10 +0100 Subject: [PATCH 72/85] change determiners in np and fix emptynp --- src/latin/NounLat.gf | 14 +++++++------- src/latin/QuestionLat.gf | 10 ++++++---- src/latin/ResLat.gf | 6 +++--- 3 files changed, 16 insertions(+), 14 deletions(-) diff --git a/src/latin/NounLat.gf b/src/latin/NounLat.gf index d671ac5a4..c6ebf97cc 100644 --- a/src/latin/NounLat.gf +++ b/src/latin/NounLat.gf @@ -11,7 +11,7 @@ concrete NounLat of Noun = CatLat ** open ResLat, Prelude, ConjunctionLat in { adv = cn.adv ; preap = cn.preap ; postap = cn.postap ; - det = det + det = { s = det.s ! cn.g ; sp = det.sp ! cn.g } ; } ; -- UsePN : PN -> NP ; -- John @@ -22,7 +22,7 @@ concrete NounLat of Noun = CatLat ** open ResLat, Prelude, ConjunctionLat in { p = P3 ; adv = "" ; preap, postap = { s = \\_ => "" } ; - det = { s,sp = \\_,_ => "" ; n = Sg } + det = { s,sp = \\_ => "" ; n = Sg } } ; -- UsePron : Pron -> NP ; -- he @@ -33,13 +33,13 @@ concrete NounLat of Noun = CatLat ** open ResLat, Prelude, ConjunctionLat in { s = \\pd,c => p.pers.s ! pd ! PronNonRefl ! c; adv = "" ; preap, postap = { s = \\_ => "" } ; - det = { s,sp = \\_,_ => "" ; n = p.pers.n } ; + det = { s,sp = \\_ => "" ; n = p.pers.n } ; } ; -- PredetNP : Predet -> NP -> NP ; -- only the man PredetNP predet np = np ** { - det = np.det ** { s = \\g,c => predet.s ++ np.det.s ! g ! c } + det = { s = \\c => predet.s ++ np.det.s ! c ; sp = np.det.sp } } ; -- PPartNP : NP -> V2 -> NP ; -- the man seen @@ -74,7 +74,7 @@ concrete NounLat of Noun = CatLat ** open ResLat, Prelude, ConjunctionLat in { p = P3 ; adv = "" ; preap, postap = { s = \\_ => "" } ; - det = { s,sp = \\_,_ => "" ; n = det.n } ; + det = { s,sp = \\_ => "" ; n = det.n } ; } ; -- -- DetQuantOrd quant num ord = { @@ -130,7 +130,7 @@ concrete NounLat of Noun = CatLat ** open ResLat, Prelude, ConjunctionLat in { -- s = case cn.massable of { True => cn.s ! Sg ; False => \\_ => nonExist } ; n = Sg ; p = P3 ; - det = { s,sp = \\_,_ => "" ; n = Sg } ; + det = { s,sp = \\_ => "" ; n = Sg } ; }; UseN n = -- N -> CN @@ -182,6 +182,6 @@ concrete NounLat of Noun = CatLat ** open ResLat, Prelude, ConjunctionLat in { -- CountNP : Det -> NP -> NP ; -- three of them, some of the boys CountNP det np = np ** { - det = det ** { s = \\g,c => det.s ! g ! c++ np.det.s ! g ! c } ; + det = { s = \\c => det.s ! np.g ! c ++ np.det.s ! c ; sp = \\c => det.sp ! np.g ! c ++ np.det.sp ! c } ; }; } \ No newline at end of file diff --git a/src/latin/QuestionLat.gf b/src/latin/QuestionLat.gf index 702d9f53e..7a5c2a3c6 100644 --- a/src/latin/QuestionLat.gf +++ b/src/latin/QuestionLat.gf @@ -17,8 +17,9 @@ concrete QuestionLat of Question = CatLat ** open ResLat, IrregLat, Prelude in { neg = \\_,_ => "" ; o = \\_ => vp.obj ; q = ip.s ! Nom ; - v = \\t,a,_,ap,cp => vp.s ! VAct (anteriorityToVAnter a) (tenseToVTense t) ip.n P3 ! VQFalse ; - vcompl = vp.compl ! Ag Masc ip.n Nom ; -- default gender masculine + v = \\t,a,_,ap => vp.s ! VAct (anteriorityToVAnter a) (tenseToVTense t) ip.n P3 ! VQFalse ; + compl = vp.compl ! Ag Masc ip.n Nom ; -- default gender masculine + det = { s, sp = \\_ => [] ; n = ip.n } ; } ; -- let qcl = mkQuestion { s = ip.s ! Nom } ( mkClause emptyNP vp ) -- in {s = \\t,a,b,qd => qcl.s ! t ! a ! b ! qd} ; @@ -40,8 +41,9 @@ concrete QuestionLat of Question = CatLat ** open ResLat, IrregLat, Prelude in { neg = \\_,_ => "" ; o = \\_ => combineNounPhrase np ! PronNonDrop ! APostN ! DPreN ! 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 ; - vcompl = "" ; + v = \\t,a,_,ap => esseAux.act ! VAct (anteriorityToVAnter a) (tenseToVTense t) np.n P3 ; + det = { s , sp = \\_=> [] ; n = Sg } ; -- default number singilar + compl = "" ; } ; -- -- diff --git a/src/latin/ResLat.gf b/src/latin/ResLat.gf index 241afce4b..2a6ae9b81 100644 --- a/src/latin/ResLat.gf +++ b/src/latin/ResLat.gf @@ -22,7 +22,7 @@ param adv : Str ; preap : {s : Agr => Str } ; postap : {s : Agr => Str } ; - det : Determiner + det : { s, sp : Case => Str } ; } ; param -- Parameters to determine word order @@ -150,12 +150,12 @@ param p = P3; adv = "" ; preap, postap = { s = \\_ => "" } ; - det = { s = \\_,_ => "" ; sp = \\_,_ => "" ; n = n} ; + det = { s,sp = \\_ => "" ; n = n} ; } ; 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 = P3 ; adv = "" ; preap, postap = { s = \\_ => "" } ; det = { s , sp = \\_ => "" ; n = Sg } ;}; combineNounPhrase : NounPhrase -> PronDropForm => AdvPos => DetPos => Case => Str = \np -> let detpren : DetPos -> { s , sp : Case => Str} = \dp -> case dp of { DPreN => np.det ; _ => { s, sp = \\_ => [] } } ; From 15c6e9c32303a8a42c1218b983327c4291d70525 Mon Sep 17 00:00:00 2001 From: Herbert Lange Date: Tue, 12 Nov 2019 14:53:31 +0100 Subject: [PATCH 73/85] fix conjunction for np and s --- src/latin/ConjunctionLat.gf | 40 +++++++++++++++---------------------- 1 file changed, 16 insertions(+), 24 deletions(-) diff --git a/src/latin/ConjunctionLat.gf b/src/latin/ConjunctionLat.gf index 0fc23f3df..8fc2b5400 100644 --- a/src/latin/ConjunctionLat.gf +++ b/src/latin/ConjunctionLat.gf @@ -11,15 +11,16 @@ concrete ConjunctionLat of Conjunction = 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 ; + s = \\apos => conj.s1 ++ (ss.s ! conj.c).init ! SAPreS ! apos ! DPreN ! VReg ! CPreV ! SOV ++ conj.s2 ++ + (ss.s ! conj.c).last ! SAPreS ! apos ! DPreN ! VReg ! CPreV ! SOV ++ conj.s3 ; o = \\_ => [] ; - v = \\_,_ => [] ; + v = \\_ => [] ; neg = \\_ => [] ; - vcompl = [] ; + compl = [] ; p = ss.p ; sadv = [] ; - t = ss.t + t = ss.t ; + det = { s, sp = \\_ => [] } ; } ; -- ConjAdv : Conj -> ListAdv -> Adv ; -- here or there @@ -35,14 +36,13 @@ concrete ConjunctionLat of Conjunction = -- } ; -- 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 ; + s = \\pd,ca => conj.s1 ++ (nps.s ! conj.c).init ! pd ! APreN ! DPreN ! ca ++ conj.s2 ++ (nps.s ! conj.c).last ! pd ! APreN ! DPreN ! 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 = nps.det + adv = "" ; + preap , postap = { s = \\_ => "" }; + det = { s , sp = \\_ => ""} ; } ; -- ConjAP : Conj -> ListAP -> AP ; @@ -82,7 +82,7 @@ concrete ConjunctionLat of Conjunction = -- ConsS x xs = { l = \\_ => consrSS bindComma (ss (x.s ! PreS)) (xs.l ! Comma) }; 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 } ; + { init = \\s,a,d,v,c,o => coord co { init = (ss.s ! co).init ! s ! a ! d ! v ! c ! o ; last = (ss.s ! co).last ! s ! a ! d ! v ! c ! o } ; last = combineSentence s } ; p = s.p ; t = s.t @@ -104,29 +104,21 @@ concrete ConjunctionLat of Conjunction = -- -- BaseNP : NP -> NP -> ListNP ; -- John, Mary BaseNP x y = { -- s = \\c => twoTable Case x y ; - s = \\c => { init = x.s ; last = y.s } ; - g = Masc ; -- Just guessing (but maybe sexist bullshit) + s = \\c => { init = combineNounPhrase x ; last = combineNounPhrase y } ; + g = Neutr ; -- Trying to avoid trouble by choosing a gender n = matchNumber x.n y.n ; p = P3 ; - adv = x.adv ++ y.adv ; - 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 = 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 x xs = { -- 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 } ; + s = \\co => { init = \\pd,ap,dp,ca => coord co { init = (xs.s ! co).init ! pd ! ap ! dp ! ca ; last = (xs.s ! co).last ! pd ! ap ! dp ! ca} ; last = combineNounPhrase x } ; 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 ; - 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 @@ -145,9 +137,9 @@ concrete ConjunctionLat of Conjunction = -- lincat - [S] = { s : Coordinator => {init,last : SAdvPos => AdvPos => ComplPos => Order => Str} ; p : Pol ; t : Tense } ; -- TO FIX + [S] = { s : Coordinator => {init,last : SAdvPos => AdvPos => DetPos => VPos => 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 } ; + [NP] = { s : Coordinator => {init,last : PronDropForm => AdvPos => DetPos => Case => Str} ; g : Gender ; n : Number ; p : Person ; isBase : Bool } ; [AP] = {s : Coordinator => {init,last : Agr => Str } } ; [RS] = { s : Coordinator => { init, last : Gender => Number => Str }} ; oper From 67b107ea7ebc8e156489ad58ad029b9ff02cda59 Mon Sep 17 00:00:00 2001 From: Herbert Lange Date: Tue, 12 Nov 2019 14:54:02 +0100 Subject: [PATCH 74/85] remove unnecessary parameter --- src/latin/QuestionLat.gf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/latin/QuestionLat.gf b/src/latin/QuestionLat.gf index 7a5c2a3c6..75ab28dc5 100644 --- a/src/latin/QuestionLat.gf +++ b/src/latin/QuestionLat.gf @@ -5,7 +5,7 @@ concrete QuestionLat of Question = CatLat ** open ResLat, IrregLat, Prelude in { lin -- QuestCl : Cl -> QCl ; -- does John walk QuestCl cl = cl ** { - v = \\t,a,_,ap,cp => cl.v ! t ! a ! VQTrue ! ap ! cp ; + v = \\t,a,_,ap => cl.v ! t ! a ! VQTrue ! ap ; q = "" } ; From d60ddb1c4ab7ee4e79d0ed668498dff45efc793a Mon Sep 17 00:00:00 2001 From: Herbert Lange Date: Tue, 12 Nov 2019 14:54:19 +0100 Subject: [PATCH 75/85] fix relnp and posspron --- src/latin/NounLat.gf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/latin/NounLat.gf b/src/latin/NounLat.gf index c6ebf97cc..bfff54006 100644 --- a/src/latin/NounLat.gf +++ b/src/latin/NounLat.gf @@ -64,7 +64,7 @@ concrete NounLat of Noun = CatLat ** open ResLat, Prelude, ConjunctionLat in { ExtAdvNP = AdvNP ; -- RelNP : NP -> RS -> NP ; -- Paris, which is here - RelNP np rs = np ** { adv = rs.s ++ np.adv } ; + RelNP np rs = np ** { adv = bindComma ++ rs.s ! np.g ! np.n ++ np.adv } ; -- DetNP : Det -> NP ; -- these five DetNP det = { @@ -91,7 +91,7 @@ concrete NounLat of Noun = CatLat ** open ResLat, Prelude, ConjunctionLat in { --- PossPron p = { + PossPron p = { s = \\a => p.poss.s ! PronNonRefl ! a ; sp = \\_ => "" } ; -- s = \\_,_ => p.s ! Gen ; -- sp = \\_,_ => p.sp -- } ; From ed4ff97b7b17aad95ee7ea3f186eb1241d5fe27f Mon Sep 17 00:00:00 2001 From: Herbert Lange Date: Tue, 12 Nov 2019 14:54:33 +0100 Subject: [PATCH 76/85] varios function is extend --- src/latin/ExtendLat.gf | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/src/latin/ExtendLat.gf b/src/latin/ExtendLat.gf index 003ca30e3..ec214bb84 100644 --- a/src/latin/ExtendLat.gf +++ b/src/latin/ExtendLat.gf @@ -16,7 +16,8 @@ concrete ExtendLat of Extend = CatLat ** open ResLat in { lin --- GenNP : NP -> Quant ; -- this man's + -- GenNP : NP -> Quant ; -- this man's + GenNP np = { s = \\_ => combineNounPhrase np ! PronNonDrop ! APostN ! DPreN ! Gen ; sp = \\_ => ""} ; -- GenIP : IP -> IQuant ; -- whose -- GenRP : Num -> CN -> RP ; -- whose car @@ -95,7 +96,10 @@ concrete ExtendLat of Extend = CatLat ** open ResLat in { -- -- this is a generalization of Verb.PassV2 and should replace it in the future. --- PassVPSlash : VPSlash -> VP ; -- be forced to sleep + -- PassVPSlash : VPSlash -> VP ; -- be forced to sleep + PassVPSlash vp = vp ** { + s = \\a => case a of { VAct _ t n p => vp.pass ! VPass t n p } ; + } ; -- -- the form with an agent may result in a different linearization -- -- from an adverbial modification by an agent phrase. @@ -147,8 +151,18 @@ concrete ExtendLat of Extend = CatLat ** open ResLat in { -- -- to use an AP as CN or NP without CN --- AdjAsCN : AP -> CN ; -- a green one ; en grön (Swe) --- AdjAsNP : AP -> NP ; -- green (is good) + -- AdjAsCN : AP -> CN ; -- a green one ; en grön (Swe) + -- AdjAsNP : AP -> NP ; -- green (is good) + AdjAsNP ap = { + s = \\_,c => ap.s ! (Ag Neutr Sg c) ; + adv = "" ; + det = { s, sp = \\_ => "" } ; + g = Neutr ; + n = Sg ; + p = P3 ; + postap = { s = \\_ => "" } ; + preap = { s = \\_ => "" } ; + } ; -- -- infinitive complement for IAdv From e46f120de3769e34cc9353fc8ac5548c30a14660 Mon Sep 17 00:00:00 2001 From: Herbert Lange Date: Tue, 12 Nov 2019 14:54:51 +0100 Subject: [PATCH 77/85] various additions to extralat --- src/latin/ExtraLat.gf | 86 ++++++++++++++++++++++++++++++++++++++-- src/latin/ExtraLatAbs.gf | 27 +++++++++++-- 2 files changed, 106 insertions(+), 7 deletions(-) diff --git a/src/latin/ExtraLat.gf b/src/latin/ExtraLat.gf index e3981751d..d13e48d02 100644 --- a/src/latin/ExtraLat.gf +++ b/src/latin/ExtraLat.gf @@ -1,9 +1,10 @@ concrete ExtraLat of ExtraLatAbs = CatLat, ConjunctionLat ** - open ResLat, ParadigmsLat, Coordination, Prelude in { - lincat CS = Str ; + open ResLat, ParadigmsLat, RelativeLat, NounLat, Prelude in { + lincat CS = SAdvPos => AdvPos => DetPos => VPos => ComplPos => Order => Str ; + TestRS = { s : Gender => Number => SAdvPos => AdvPos => DetPos => VPos => ComplPos => Order => Str } ; lin - useS s = combineSentence s ! SPreO ! PreO ! CPreV ! SOV ; + useS s = combineSentence s ; -- PastPartAP : VPSlash -> AP ; -- lost (opportunity) ; (opportunity) lost in space -- PastPartAP vp = { s = vp.part ! VPassPerf } ; @@ -51,5 +52,82 @@ concrete ExtraLat of ExtraLatAbs = inAbl_Prep = mkPrep "in" Abl ; onAbl_Prep = mkPrep "in" Abl ; -- L... - UttSSVO s = { s = combineSentence s ! SPreS ! PreS ! CPreV ! SVO }; + -- UttS_SVO : S -> Utt + UttS_SVO s = { s = defaultSentence s ! SVO }; + -- UttS_VInS : S -> Utt + UttS_VInS s = { s = combineSentence s ! SAPreS ! APreV ! DPostN ! VInS ! CPostV ! SVO } ; + + TestRCl t p cl = { + s = \\g,n => combineSentence (combineClause (cl ! g ! n) (lin Tense t) t.a (lin Pol p) VQFalse) ; + } ; + + -- UseRCl_OSV : Temp -> Pol -> RCl -> RS ; + UseRCl_OSV t p cl = { + s = \\g,n => combineSentence (combineClause (cl ! g ! n) (lin Tense t) t.a (lin Pol p) VQFalse) ! SAPreO ! APreV ! DPreN ! VReg ! CPostV ! OSV ; + } ; + -- UseRCl_OVS : Temp -> Pol -> RCl -> RS ; + UseRCl_OVS t p cl = { + s = \\g,n => combineSentence (combineClause (cl ! g ! n) (lin Tense t) t.a (lin Pol p) VQFalse) ! SAPreO ! APreV ! DPreN ! VReg ! CPostV ! OVS ; -- SAPreO APreV DPreN VReg CPostV OVS + } ; + -- UseRCl_SOV : Temp -> Pol -> RCl -> RS ; + UseRCl_SOV t p cl = { + s = \\g,n => combineSentence (combineClause (cl ! g ! n) (lin Tense t) t.a (lin Pol p) VQFalse) ! SAPreS ! APreV ! DPreN ! VReg ! CPostV ! SOV ; + } ; + -- UseRCl_SVO : Temp -> Pol -> RCl -> RS ; + UseRCl_SVO t p cl = { + s = \\g,n => combineSentence (combineClause (cl ! g ! n) (lin Tense t) t.a (lin Pol p) VQFalse) ! SAPreS ! APreV ! DPreN ! VReg ! CPostV ! SVO ; + } ; + -- PrepNP_DPostN : Prep -> NP -> Adv ; -- in the house + PrepNP_DPostN prep np = + mkAdv (prep.s ++ (combineNounPhrase np) ! PronNonDrop ! APostN ! DPostN ! prep.c ) ; + + -- ApposCN_DPostN : CN -> NP -> CN + ApposCN_DPostN cn np = + cn ** + { + s = \\n,c => cn.s ! n ! c ++ (combineNounPhrase np) ! PronNonDrop ! APostN ! DPostN ! c ; + } ; -- massable = cn.massable } ; + + -- CompNP_DPostN : NP -> Comp ; -- (be) the man + CompNP np = {s = \\_ => + (combineNounPhrase np) ! PronNonDrop ! DPostN ! Nom + } ; + + -- DetNP_Fem : Det -> NP ; -- these five + DetNP_Fem det = { + s = \\_ => det.s ! Fem ; + g = Fem ; + n = det.n ; + p = P3 ; + adv = "" ; + preap, postap = { s = \\_ => "" } ; + det = { s,sp = \\_ => "" ; n = det.n } ; + } ; + + -- AdjAsNP_Fem : AP -> NP ; -- green (is good) + AdjAsNP_Fem ap = { + s = \\_,c => ap.s ! (Ag Fem Sg c) ; + adv = "" ; + det = { s, sp = \\_ => "" } ; + g = Fem ; + n = Sg ; + p = P3 ; + postap = { s = \\_ => "" } ; + preap = { s = \\_ => "" } ; + } ; + + -- PredVP_VP_Ellipsis : NP -> VP -> Cl + PredVP_VP_Ellipsis np = + mkClause np emptyVP ; + + -- SlashVP_VP_Ellipsis : NP -> VPSlash -> ClSlash ; -- (whom) he sees + SlashVP_VP_Ellipsis np = + mkClause np emptyVP ; + + -- FunRP_RP_Ellipsis : Prep -> NP -> RP ; + FunRP_RP_Ellipsis p np = FunRP p np (lin RP { s = \\_ => "" }) ; + + RelNP_NP_Ellipsis rs = RelNP emptyNP rs ; + + comma_Conj = mkConj "" "," "" Pl Comma ; } diff --git a/src/latin/ExtraLatAbs.gf b/src/latin/ExtraLatAbs.gf index 571a90dba..2b101286a 100644 --- a/src/latin/ExtraLatAbs.gf +++ b/src/latin/ExtraLatAbs.gf @@ -1,7 +1,8 @@ abstract ExtraLatAbs = Conjunction ** { - cat CS ; + cat CS ; + TestRS ; fun useS : S -> CS ; -- do not drop pronouns @@ -30,6 +31,26 @@ abstract ExtraLatAbs = inAbl_Prep : Prep ; onAbl_Prep : Prep ; - -- Add all the word orders - UttSSVO : S -> Utt ; + -- Add other word orders + UttS_SVO : S -> Utt ; + UttS_VInS : S -> Utt ; + TestRCl : Temp -> Pol -> RCl -> TestRS ; + UseRCl_OSV : Temp -> Pol -> RCl -> RS ; + UseRCl_OVS : Temp -> Pol -> RCl -> RS ; + UseRCl_SOV : Temp -> Pol -> RCl -> RS ; + UseRCl_SVO : Temp -> Pol -> RCl -> RS ; + + PrepNP_DPostN : Prep -> NP -> Adv ; + ApposCN_DPostN : CN -> NP -> CN ; + + -- More genders + DetNP_Fem : Det -> NP ; + AdjAsNP_Fem : AP -> NP ; + + -- Ellipsis + PredVP_VP_Ellipsis : NP -> Cl ; + SlashVP_VP_Ellipsis : NP -> ClSlash ; + FunRP_RP_Ellipsis : Prep -> NP -> RP ; + RelNP_NP_Ellipsis : RS -> NP ; + comma_Conj : Conj ; } From b3584b8bda482513341d8dc7563d340d39020fe4 Mon Sep 17 00:00:00 2001 From: Herbert Lange Date: Tue, 12 Nov 2019 15:27:45 +0100 Subject: [PATCH 78/85] fix problem with rcl --- src/latin/CatLat.gf | 2 +- src/latin/ExtraLat.gf | 10 +++++----- src/latin/RelativeLat.gf | 4 ++-- src/latin/SentenceLat.gf | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/latin/CatLat.gf b/src/latin/CatLat.gf index d73a4a1da..b283d8655 100644 --- a/src/latin/CatLat.gf +++ b/src/latin/CatLat.gf @@ -29,7 +29,7 @@ concrete CatLat of Cat = CommonX-[Adv] ** open ResLat, ParamX, Prelude in { -- ---- Relative -- - RCl = Gender => Number => Clause ; + RCl = { s : Gender => Number => Clause }; -- s : ResLat.Tense => Anteriority => CPolarity => Agr => Str ; -- c : Case -- } ; diff --git a/src/latin/ExtraLat.gf b/src/latin/ExtraLat.gf index d13e48d02..495426115 100644 --- a/src/latin/ExtraLat.gf +++ b/src/latin/ExtraLat.gf @@ -58,24 +58,24 @@ concrete ExtraLat of ExtraLatAbs = UttS_VInS s = { s = combineSentence s ! SAPreS ! APreV ! DPostN ! VInS ! CPostV ! SVO } ; TestRCl t p cl = { - s = \\g,n => combineSentence (combineClause (cl ! g ! n) (lin Tense t) t.a (lin Pol p) VQFalse) ; + s = \\g,n => combineSentence (combineClause (cl.s ! g ! n) (lin Tense t) t.a (lin Pol p) VQFalse) ; } ; -- UseRCl_OSV : Temp -> Pol -> RCl -> RS ; UseRCl_OSV t p cl = { - s = \\g,n => combineSentence (combineClause (cl ! g ! n) (lin Tense t) t.a (lin Pol p) VQFalse) ! SAPreO ! APreV ! DPreN ! VReg ! CPostV ! OSV ; + s = \\g,n => combineSentence (combineClause (cl.s ! g ! n) (lin Tense t) t.a (lin Pol p) VQFalse) ! SAPreO ! APreV ! DPreN ! VReg ! CPostV ! OSV ; } ; -- UseRCl_OVS : Temp -> Pol -> RCl -> RS ; UseRCl_OVS t p cl = { - s = \\g,n => combineSentence (combineClause (cl ! g ! n) (lin Tense t) t.a (lin Pol p) VQFalse) ! SAPreO ! APreV ! DPreN ! VReg ! CPostV ! OVS ; -- SAPreO APreV DPreN VReg CPostV OVS + s = \\g,n => combineSentence (combineClause (cl.s ! g ! n) (lin Tense t) t.a (lin Pol p) VQFalse) ! SAPreO ! APreV ! DPreN ! VReg ! CPostV ! OVS ; -- SAPreO APreV DPreN VReg CPostV OVS } ; -- UseRCl_SOV : Temp -> Pol -> RCl -> RS ; UseRCl_SOV t p cl = { - s = \\g,n => combineSentence (combineClause (cl ! g ! n) (lin Tense t) t.a (lin Pol p) VQFalse) ! SAPreS ! APreV ! DPreN ! VReg ! CPostV ! SOV ; + s = \\g,n => combineSentence (combineClause (cl.s ! g ! n) (lin Tense t) t.a (lin Pol p) VQFalse) ! SAPreS ! APreV ! DPreN ! VReg ! CPostV ! SOV ; } ; -- UseRCl_SVO : Temp -> Pol -> RCl -> RS ; UseRCl_SVO t p cl = { - s = \\g,n => combineSentence (combineClause (cl ! g ! n) (lin Tense t) t.a (lin Pol p) VQFalse) ! SAPreS ! APreV ! DPreN ! VReg ! CPostV ! SVO ; + s = \\g,n => combineSentence (combineClause (cl.s ! g ! n) (lin Tense t) t.a (lin Pol p) VQFalse) ! SAPreS ! APreV ! DPreN ! VReg ! CPostV ! SVO ; } ; -- PrepNP_DPostN : Prep -> NP -> Adv ; -- in the house PrepNP_DPostN prep np = diff --git a/src/latin/RelativeLat.gf b/src/latin/RelativeLat.gf index 7e1a36eac..67360e8d6 100644 --- a/src/latin/RelativeLat.gf +++ b/src/latin/RelativeLat.gf @@ -9,7 +9,7 @@ concrete RelativeLat of Relative = CatLat ** open ResLat in { -- c = Nom -- } ; -- - RelVP rp vp = \\g,n => mkClause (emptyNP ** { s = \\_,c => rp.s ! (Ag g n c) ; g = g ; n = n } ) vp ; + RelVP rp vp = { s = \\g,n => mkClause (emptyNP ** { s = \\_,c => rp.s ! (Ag g n c) ; g = g ; n = n } ) vp }; -- s = \\t,ant,b,ag => -- let -- agr = case rp.a of { @@ -27,7 +27,7 @@ concrete RelativeLat of Relative = CatLat ** open ResLat in { ---- "we are looking at"). -- -- RelSlash : RP -> ClSlash -> RCl ; - RelSlash rp slash = \\g,n => slash ** { adv = rp.s ! Ag g n Gen } ; -- abuse adverbs again + RelSlash rp slash = { s = \\g,n => slash ** { adv = rp.s ! Ag g n Gen } } ; -- abuse adverbs again -- s = \\t,a,p,agr => -- slash.c2 ++ rp.s ! RPrep (fromAgr agr).g ++ slash.s ! t ! a ! p ! ODir ; -- c = Acc diff --git a/src/latin/SentenceLat.gf b/src/latin/SentenceLat.gf index e3e7065e7..4dc5e164f 100644 --- a/src/latin/SentenceLat.gf +++ b/src/latin/SentenceLat.gf @@ -58,7 +58,7 @@ concrete SentenceLat of Sentence = CatLat ** open Prelude, ResLat in { } ; -- UseRCl : Temp -> Pol -> RCl -> RS ; UseRCl t p cl = { - s = \\g,n => defaultSentence (combineClause (cl ! g ! n) (lin Tense t) t.a (lin Pol p) VQFalse) ! SOV ; + s = \\g,n => defaultSentence (combineClause (cl.s ! g ! n) (lin Tense t) t.a (lin Pol p) VQFalse) ! SOV ; -- s = \\r => t.s ++ p.s ++ cl.s ! t.t ! t.a ! ctr p.p ! r ; -- c = cl.c } ; From 4438ef45c0a57eb75af4bea4d228c12d4a5aefdd Mon Sep 17 00:00:00 2001 From: Herbert Lange Date: Tue, 12 Nov 2019 16:02:52 +0100 Subject: [PATCH 79/85] move include of relativelat to correct file --- src/latin/GrammarLat.gf | 2 +- src/latin/LangLat.gf | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/latin/GrammarLat.gf b/src/latin/GrammarLat.gf index 31aebc317..1d1eac74e 100644 --- a/src/latin/GrammarLat.gf +++ b/src/latin/GrammarLat.gf @@ -8,7 +8,7 @@ concrete GrammarLat of Grammar = NumeralLat, SentenceLat, QuestionLat, --- RelativeLat, + RelativeLat, ConjunctionLat, PhraseLat, TextX-[Adv], diff --git a/src/latin/LangLat.gf b/src/latin/LangLat.gf index da0c70d2c..09e9d919d 100644 --- a/src/latin/LangLat.gf +++ b/src/latin/LangLat.gf @@ -3,8 +3,7 @@ concrete LangLat of Lang = GrammarLat, ParadigmsLat, - LexiconLat, - RelativeLat + LexiconLat -- ConstructionLat ** { From f2eebc3a644d69a74327bddcc2a84047ae733a7b Mon Sep 17 00:00:00 2001 From: Herbert Lange Date: Tue, 12 Nov 2019 16:03:04 +0100 Subject: [PATCH 80/85] fix symbollat --- src/latin/SymbolLat.gf | 87 +++++++++++++++++++++++------------------- 1 file changed, 47 insertions(+), 40 deletions(-) diff --git a/src/latin/SymbolLat.gf b/src/latin/SymbolLat.gf index 81c68d94c..0148b170a 100644 --- a/src/latin/SymbolLat.gf +++ b/src/latin/SymbolLat.gf @@ -2,51 +2,58 @@ concrete SymbolLat of Symbol = CatLat ** open Prelude, ResLat, ParadigmsLat, TenseX in { -lin - 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 = \\_ => [] } ; - } ; + lin + -- SymbPN : Symb -> PN ; + SymbPN i = {s = \\c => i.s ; g = Neutr ; n = Sg } ; --- c + -- IntPN : Int -> PN ; + IntPN i = {s = \\c => i.s ; g = Neutr ; n = Sg } ; --- c + -- FloatPN : Float -> PN ; + FloatPN i = {s = \\c => i.s ; g = Neutr ; n = Sg } ; --- c + -- NumPN : Num -> PN ; + NumPN i = {s = \\c => i.s ! Neutr ! c; g = Neutr ; n = Pl } ; --- c + -- CNIntNP : CN -> Int -> NP ; + CNIntNP cn i = { + s = \\_,c => (cn.s ! Sg ! Nom ++ i.s) ; + g = cn.g ; + n = Sg ; + adv = [] ; + det = { s , sp = \\_ => [] ; n = Sg } ; + p = P3 ; + preap , postap = { s = \\_ => [] } ; + } ; + --CNSymbNP : CN -> Symb -> NP ; + CNSymbNP det cn xs = { + s = \\_,c => (cn.s ! Sg ! Nom ++ xs.s ) ; + g = cn.g ; + n = det.n ; + adv = [] ; + det = { s = det.s ! cn.g ; sp = det.sp ! cn.g } ; + p = P3 ; + preap , postap = { 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 ! cn.g ! Nom ) ; - g = cn.g ; - n = Sg ; - adv = [] ; - det = { s = \\_,_ => [] ; n = Sg ; sp = \\_,_ => [] } ; - p = P3 ; - postap = { s = \\_ => [] } ; - preap = { s = \\_ => [] } ; - } ; + -- } ; + + -- CNNumNP : CN -> Num -> NP ; + CNNumNP cn i = { + s = \\_,c => (cn.s ! Sg ! Nom ++ i.s ! cn.g ! Nom ) ; + g = cn.g ; + n = Sg ; + adv = [] ; + det = { s , sp = \\_ => [] ; n = Sg }; + p = P3 ; + preap , postap = { s = \\_ => [] } ; + } ; -- + -- SymbS : Symb -> S ; + SymbS sy = { s = \\_ => sy.s ; o , neg = \\_ => "" ; p = PPos ; sadv = "" ; t = TPres ; v = \\_ => "" ; compl = "" ; det = { s , sp = \\_ => [] ; n = Sg } } ; - SymbS sy = { s = \\_ => sy.s ; neg = \\_ => "" ; o = \\_ => "" ; p = PPos ; sadv = "" ; t = TPres ; v = \\_,_ => "" } ; --- - SymbNum sy = {s = \\_,_ => sy.s ; n = Pl } ; - SymbOrd sy = { s = \\g,n,c => sy.s } ; -- does not inflect properly + -- SymbNum : Symb -> Num + SymbNum sy = {s = \\_,_ => sy.s ; n = Pl } ; + -- SymbOrd : Symb -> Ord + SymbOrd sy = { s = \\g,n,c => sy.s } ; -- does not inflect properly lincat Symb, [Symb] = SS ; From 6f35b9f67fe00ac24b7de14af8d308c18ebe5f9e Mon Sep 17 00:00:00 2001 From: Herbert Lange Date: Tue, 12 Nov 2019 16:03:55 +0100 Subject: [PATCH 81/85] fix mkmissing and update missinglat --- src/latin/MissingLat.gf | 120 ++++++++++------------------------------ src/latin/mkMissing.hs | 9 +-- src/latin/mkMissing.sh | 1 + 3 files changed, 34 insertions(+), 96 deletions(-) diff --git a/src/latin/MissingLat.gf b/src/latin/MissingLat.gf index bf5c996bd..1415060bc 100644 --- a/src/latin/MissingLat.gf +++ b/src/latin/MissingLat.gf @@ -2,142 +2,78 @@ resource MissingLat = open GrammarLat, Prelude in { -- temporary definitions to enable the compilation of RGL API oper AdNum : AdN -> Card -> Card = notYet "AdNum" ; +oper AddAdvQVP : QVP -> IAdv -> QVP = notYet "AddAdvQVP" ; +oper AdjDAP : DAP -> AP -> DAP = notYet "AdjDAP" ; oper AdvCN : CN -> Adv -> CN = notYet "AdvCN" ; oper AdvIAdv : IAdv -> Adv -> IAdv = notYet "AdvIAdv" ; oper AdvIP : IP -> Adv -> IP = notYet "AdvIP" ; +oper AdvQVP : VP -> IAdv -> QVP = notYet "AdvQVP" ; oper AdvSlash : ClSlash -> Adv -> ClSlash = notYet "AdvSlash" ; oper BaseAP : AP -> AP -> ListAP = notYet "BaseAP" ; -oper BaseRS : RS -> RS -> ListRS = notYet "BaseRS" ; +oper BaseAdV : AdV -> AdV -> ListAdV = notYet "BaseAdV" ; +oper BaseCN : CN -> CN -> ListCN = notYet "BaseCN" ; +oper BaseDAP : DAP -> DAP -> ListDAP = notYet "BaseDAP" ; +oper BaseIAdv : IAdv -> IAdv -> ListIAdv = notYet "BaseIAdv" ; 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 ComplSlashIP : VPSlash -> IP -> QVP = notYet "ComplSlashIP" ; oper ConjAP : Conj -> ListAP -> AP = notYet "ConjAP" ; -oper ConjRS : Conj -> ListRS -> RS = notYet "ConjRS" ; +oper ConjAdV : Conj -> ListAdV -> AdV = notYet "ConjAdV" ; +oper ConjAdv : Conj -> ListAdv -> Adv = notYet "ConjAdv" ; +oper ConjCN : Conj -> ListCN -> CN = notYet "ConjCN" ; +oper ConjDet : Conj -> ListDAP -> Det = notYet "ConjDet" ; +oper ConjIAdv : Conj -> ListIAdv -> IAdv = notYet "ConjIAdv" ; +-- Error: No type found for ConjNPque oper ConsAP : AP -> ListAP -> ListAP = notYet "ConsAP" ; -oper ConsRS : RS -> ListRS -> ListRS = notYet "ConsRS" ; +oper ConsAdV : AdV -> ListAdV -> ListAdV = notYet "ConsAdV" ; +oper ConsCN : CN -> ListCN -> ListCN = notYet "ConsCN" ; +oper ConsDAP : DAP -> ListDAP -> ListDAP = notYet "ConsDAP" ; +oper ConsIAdv : IAdv -> ListIAdv -> ListIAdv = notYet "ConsIAdv" ; +oper DetDAP : Det -> DAP = notYet "DetDAP" ; oper DetQuantOrd : Quant -> Num -> Ord -> Det = notYet "DetQuantOrd" ; oper EmbedQS : QS -> SC = notYet "EmbedQS" ; oper EmbedS : S -> SC = notYet "EmbedS" ; oper EmbedVP : VP -> SC = notYet "EmbedVP" ; oper ExistIP : IP -> QCl = notYet "ExistIP" ; oper ExistNP : NP -> Cl = notYet "ExistNP" ; -oper FunRP : Prep -> NP -> RP -> RP = notYet "FunRP" ; +oper ExtAdvS : Adv -> S -> S = notYet "ExtAdvS" ; +oper ExtAdvVP : VP -> Adv -> VP = notYet "ExtAdvVP" ; oper GenericCl : VP -> Cl = notYet "GenericCl" ; oper IdetCN : IDet -> CN -> IP = notYet "IdetCN" ; oper IdetIP : IDet -> IP = notYet "IdetIP" ; oper IdetQuant : IQuant -> Num -> IDet = notYet "IdetQuant" ; -oper IdRP : RP = notYet "IdRP" ; -oper ImpersCl : VP -> Cl = notYet "ImpersCl" ; oper ImpPl1 : VP -> Utt = notYet "ImpPl1" ; oper ImpVP : VP -> Imp = notYet "ImpVP" ; +oper ImpersCl : VP -> Cl = notYet "ImpersCl" ; 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 PossPron : Pron -> Quant = notYet "PossPron" ; oper PPartNP : NP -> V2 -> NP = notYet "PPartNP" ; +oper PartNP : CN -> NP -> CN = notYet "PartNP" ; +oper PossNP : CN -> NP -> CN = notYet "PossNP" ; oper PredSCVP : SC -> VP -> Cl = notYet "PredSCVP" ; oper PrepIP : Prep -> IP -> IAdv = notYet "PrepIP" ; oper ProgrVP : VP -> VP = notYet "ProgrVP" ; -oper QuestCl : Cl -> QCl = notYet "QuestCl" ; -oper QuestIAdv : IAdv -> Cl -> QCl = notYet "QuestIAdv" ; -oper QuestIComp : IComp -> NP -> QCl = notYet "QuestIComp" ; -oper QuestSlash : IP -> ClSlash -> QCl = notYet "QuestSlash" ; -oper QuestVP : IP -> VP -> QCl = notYet "QuestVP" ; -oper ReflVP : VPSlash -> VP = notYet "ReflVP" ; -oper RelCl : Cl -> RCl = notYet "RelCl" ; -oper RelCN : CN -> RS -> CN = notYet "RelCN" ; -oper RelSlash : RP -> ClSlash -> RCl = notYet "RelSlash" ; -oper RelVP : RP -> VP -> RCl = notYet "RelVP" ; -oper SentCN : CN -> SC -> CN = notYet "SentCN" ; -oper SlashV2S : V2S -> S -> VPSlash = notYet "SlashV2S" ; -oper SlashV2V : V2V -> VP -> VPSlash = notYet "SlashV2V" ; -oper SlashV2VNP : V2V -> NP -> VPSlash -> VPSlash = notYet "SlashV2VNP" ; -oper SlashVS : NP -> VS -> SSlash -> ClSlash = notYet "SlashVS" ; -oper SlashVV : VV -> VPSlash -> VPSlash = notYet "SlashVV" ; -oper Use2N3 : N3 -> N2 = notYet "Use2N3" ; -oper UseQCl : Temp -> Pol -> QCl -> QS = notYet "UseQCl" ; -oper UseRCl : Temp -> Pol -> RCl -> RS = notYet "UseRCl" ; -oper UseSlash : Temp -> Pol -> ClSlash -> SSlash = notYet "UseSlash" ; -oper AddAdvQVP : QVP -> IAdv -> QVP = notYet "AddAdvQVP" ; -oper AdjDAP : DAP -> AP -> DAP = notYet "AdjDAP" ; -oper AdNum : AdN -> Card -> Card = notYet "AdNum" ; -oper AdvCN : CN -> Adv -> CN = notYet "AdvCN" ; -oper AdvIAdv : IAdv -> Adv -> IAdv = notYet "AdvIAdv" ; -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 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 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 CountNP : Det -> NP -> NP = notYet "CountNP" ; -oper DetDAP : Det -> DAP = notYet "DetDAP" ; -oper DetQuantOrd : Quant -> Num -> Ord -> Det = notYet "DetQuantOrd" ; -oper EmbedQS : QS -> SC = notYet "EmbedQS" ; -oper EmbedS : S -> SC = notYet "EmbedS" ; -oper EmbedVP : VP -> SC = notYet "EmbedVP" ; -oper ExtAdvS : Adv -> S -> S = notYet "ExtAdvS" ; -oper ExtAdvVP : VP -> Adv -> VP = notYet "ExtAdvVP" ; -oper IdetCN : IDet -> CN -> IP = notYet "IdetCN" ; -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 PPartNP : NP -> V2 -> NP = notYet "PPartNP" ; -oper PredSCVP : SC -> VP -> Cl = notYet "PredSCVP" ; -oper PrepIP : Prep -> IP -> IAdv = notYet "PrepIP" ; -oper QuestCl : Cl -> QCl = notYet "QuestCl" ; -oper QuestIAdv : IAdv -> Cl -> QCl = notYet "QuestIAdv" ; -oper QuestIComp : IComp -> NP -> QCl = notYet "QuestIComp" ; oper QuestQVP : IP -> QVP -> QCl = notYet "QuestQVP" ; oper QuestSlash : IP -> ClSlash -> QCl = notYet "QuestSlash" ; -oper QuestVP : IP -> VP -> QCl = notYet "QuestVP" ; oper ReflVP : VPSlash -> VP = notYet "ReflVP" ; oper RelCN : CN -> RS -> CN = notYet "RelCN" ; +oper RelCl : Cl -> RCl = notYet "RelCl" ; oper RelS : S -> RS -> S = notYet "RelS" ; +oper SSubjS : S -> Subj -> S -> S = notYet "SSubjS" ; oper SentCN : CN -> SC -> CN = notYet "SentCN" ; oper SlashV2S : V2S -> S -> VPSlash = notYet "SlashV2S" ; oper SlashV2V : V2V -> VP -> VPSlash = notYet "SlashV2V" ; oper SlashV2VNP : V2V -> NP -> VPSlash -> VPSlash = notYet "SlashV2VNP" ; oper SlashVS : NP -> VS -> SSlash -> ClSlash = notYet "SlashVS" ; oper SlashVV : VV -> VPSlash -> VPSlash = notYet "SlashVV" ; -oper SSubjS : S -> Subj -> S -> S = notYet "SSubjS" ; oper Use2N3 : N3 -> N2 = notYet "Use2N3" ; oper Use3N3 : N3 -> N2 = notYet "Use3N3" ; -oper UseQCl : Temp -> Pol -> QCl -> QS = notYet "UseQCl" ; -oper UseRCl : Temp -> Pol -> RCl -> RS = notYet "UseRCl" ; +-- Error: No type found for UsePronNonDrop oper UseSlash : Temp -> Pol -> ClSlash -> SSlash = notYet "UseSlash" ; oper VPSlashPrep : VP -> Prep -> VPSlash = notYet "VPSlashPrep" ; diff --git a/src/latin/mkMissing.hs b/src/latin/mkMissing.hs index 83b1790c4..02a579186 100644 --- a/src/latin/mkMissing.hs +++ b/src/latin/mkMissing.hs @@ -1,10 +1,11 @@ import PGF import System.Environment - +import Data.List +import Data.Maybe 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] + ms <- readFile (args !! 1) {- "tmp/MissingLat.tmp" -} >>= return . nub . sort . map (last . words) . lines + let ts = [maybe ("-- Error: No type found for " ++ m) (\t -> "oper " ++ m ++ " : " ++ PGF.showType [] t ++ " = notYet \"" ++ m ++ "\" ;") $ PGF.functionType pgf (PGF.mkCId m) | m <- ms ] + putStrLn $ unlines ts -- ["oper " ++ f ++ " : " ++ t ++ " = notYet \"" ++ f ++ "\" ;" | (f,t) <- zip ms ts] diff --git a/src/latin/mkMissing.sh b/src/latin/mkMissing.sh index d4370fdae..a539caf43 100755 --- a/src/latin/mkMissing.sh +++ b/src/latin/mkMissing.sh @@ -2,6 +2,7 @@ echo "Create tmp dir" mkdir tmp/ echo "Remove old file" +rm -Rfv tmp/* 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 From 0197002b85aba29d22e04b246ca53ec945f5792b Mon Sep 17 00:00:00 2001 From: Herbert Lange Date: Fri, 22 Nov 2019 12:01:36 +0100 Subject: [PATCH 82/85] change in handling determiners in clauses --- src/latin/ResLat.gf | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/latin/ResLat.gf b/src/latin/ResLat.gf index 2a6ae9b81..c284e847c 100644 --- a/src/latin/ResLat.gf +++ b/src/latin/ResLat.gf @@ -1366,12 +1366,10 @@ oper -- 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 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 @@ -1379,12 +1377,10 @@ oper -- comppos is the position of the verb complement v = \\tense,anter,vqf,advpos => 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 ; -- ++ --- cpostv complpos ; -- complement can also go after the verb - det = np.det ; --{ s = np.det.s ! np.g ; sp = np.det.sp ; n = np.n } ; + det = np.det ; -- verb complement compl = compl ; -- object part of the clause From a21df23da5f51f5ee3029360f16e19ca7373098a Mon Sep 17 00:00:00 2001 From: David Bamutura Date: Thu, 28 Nov 2019 07:12:57 +0300 Subject: [PATCH 83/85] redesigned the Verb, VerbPhrase, Cl and RCL so as to check for empty tense Markers and hence correct errors with Copulative statements. The Problem with Numeral still remains --- src/rukiga/CatCgg.gf | 4 + src/rukiga/DictCggAbs.gf | 2 +- src/rukiga/ExtraCatAbs.gf | 5 ++ src/rukiga/ExtraCggAbs.gf | 16 ++++ src/rukiga/ExtraCggAbsCgg.gf | 14 ++++ src/rukiga/LexiconCgg.gf | 2 +- src/rukiga/QuestionCgg.gf | 13 +++ src/rukiga/RelativeCgg.gf | 8 +- src/rukiga/ResCgg.gf | 38 +++++++-- src/rukiga/SentenceCgg.gf | 132 ++++++++++++++++++++++-------- src/rukiga/SentenceCggAbsCgg.gf | 33 ++++++++ src/rukiga/SentenceCggExtra.gf | 3 + src/rukiga/SentenceCggExtraAbs.gf | 25 ++++++ src/rukiga/StructuralCgg.gf | 15 ++-- src/rukiga/VerbCgg.gf | 109 ++++++++++++++++++------ 15 files changed, 344 insertions(+), 75 deletions(-) create mode 100644 src/rukiga/ExtraCatAbs.gf create mode 100644 src/rukiga/ExtraCggAbs.gf create mode 100644 src/rukiga/ExtraCggAbsCgg.gf create mode 100644 src/rukiga/SentenceCggAbsCgg.gf create mode 100644 src/rukiga/SentenceCggExtra.gf create mode 100644 src/rukiga/SentenceCggExtraAbs.gf diff --git a/src/rukiga/CatCgg.gf b/src/rukiga/CatCgg.gf index 2fa057e80..4022333e3 100755 --- a/src/rukiga/CatCgg.gf +++ b/src/rukiga/CatCgg.gf @@ -65,6 +65,8 @@ lincat perf :Str; root : Str; --morphs : Res.VFormMini => Res.VerbMorphPos =>Str; + isPresBlank :Bool; + isPerfBlank : Bool; compl : Str; -- after verb: complement, adverbs isCompApStem : Bool; whichRel: Res.RForm @@ -78,6 +80,8 @@ lincat pres: Str; perf:Str; --morphs : Res.VFormMini => Res.VerbMorphPos =>Str; --; compl : Str -- after verb: complement, adverbs + isPresBlank : Bool; + isPerfBlank : Bool; ap:Str; isRegular:Bool; adv:Str; diff --git a/src/rukiga/DictCggAbs.gf b/src/rukiga/DictCggAbs.gf index 3b21f73a4..453fccc20 100644 --- a/src/rukiga/DictCggAbs.gf +++ b/src/rukiga/DictCggAbs.gf @@ -1,4 +1,4 @@ -abstract DictEngAbs = Cat ** { +abstract DictCggAbs = Cat ** { {- --beginning of comment diff --git a/src/rukiga/ExtraCatAbs.gf b/src/rukiga/ExtraCatAbs.gf new file mode 100644 index 000000000..dc3563b08 --- /dev/null +++ b/src/rukiga/ExtraCatAbs.gf @@ -0,0 +1,5 @@ +abstract ExtraCatAbs = Cat **{ + cat + TenseExtra; + TempExtra; +} \ No newline at end of file diff --git a/src/rukiga/ExtraCggAbs.gf b/src/rukiga/ExtraCggAbs.gf new file mode 100644 index 000000000..fe1afbc65 --- /dev/null +++ b/src/rukiga/ExtraCggAbs.gf @@ -0,0 +1,16 @@ +abstract ExtraCggAbs = Cat **{ + +-- there is a default linearization for abstract +-- categories Tense and Temp +-- these in TenseX +-- + cat + AllTenses; + --TempExtra; + fun + UseClExtra : TempExtra -> Pol -> Cl -> S ; -- she had not slept + UseQClExtra : TempExtra -> Pol -> QCl -> QS ; -- who had not slept + UseRClExtra : TempExtra -> Pol -> RCl -> RS ; -- that had not slept + UseSlashExtra : TempExtra -> Pol -> ClSlash -> SSlash ; -- (that) she had not seen + +} \ No newline at end of file diff --git a/src/rukiga/ExtraCggAbsCgg.gf b/src/rukiga/ExtraCggAbsCgg.gf new file mode 100644 index 000000000..3a23599da --- /dev/null +++ b/src/rukiga/ExtraCggAbsCgg.gf @@ -0,0 +1,14 @@ +concrete ExtraCggAbsCgg of ExtraCggAbs = CatCgg + open (R=ResCgg), (P=ParamX) in { + + lincat + AllTenses = {s : Str ; t : P.Tense; tExtra : R.TensesExtra } ; + TempExtra = {s : Str ; t : R.TensesExtra } ; + --TempExtraWithAspects = {s : Str ; t : P.Tense ; a : R.AspectsExtra } ; + fun + UseClExtra : TempTempExtra -> Pol -> Cl -> S ; -- she had not slept + UseQClExtra : TempTempExtra -> Pol -> QCl -> QS ; -- who had not slept + UseRClExtra : TempTempExtra -> Pol -> RCl -> RS ; -- that had not slept + UseSlashExtra : TempTempExtra -> Pol -> ClSlash -> SSlash ; -- (that) she had not seen + +} \ No newline at end of file diff --git a/src/rukiga/LexiconCgg.gf b/src/rukiga/LexiconCgg.gf index 868cdd602..d623ff1b3 100755 --- a/src/rukiga/LexiconCgg.gf +++ b/src/rukiga/LexiconCgg.gf @@ -145,7 +145,7 @@ lin --today_Adv = mkAdv "erizooba" AgrNo; - father_N2 = mkN2 (mkN "tata" MU_BA) (lin Prep (mkPrep [] [] True)) ; + father_N2 = mkN2 (mkN "tata" ZERO_BAA) (lin Prep (mkPrep [] [] True)) ; distance_N3 = mkN3 (mkN "orugyendo" ZERO_BU) (lin Prep (mkPrep "kurunga" "" False)) (lin Prep (mkPrep "mpáka" "" False)); --could orugyendo work in its place? diff --git a/src/rukiga/QuestionCgg.gf b/src/rukiga/QuestionCgg.gf index eaf866e7a..352a82990 100755 --- a/src/rukiga/QuestionCgg.gf +++ b/src/rukiga/QuestionCgg.gf @@ -7,6 +7,7 @@ concrete QuestionCgg of Question = CatCgg ** open ResCgg, Prelude in { lin --QuestCl : Cl -> QCl ; -- does John walk + QuestCl cl = cl ** {posibleSubAgr = mkSubjCliticTable}; --QuestVP : IP -> VP -> QCl ; -- who walks @@ -17,6 +18,8 @@ concrete QuestionCgg of Question = CatCgg ** open ResCgg, Prelude in { root = vp.s; pres = vp.pres; perf = vp.perf; + isPresBlank = vp.isPresBlank; + isPerfBlank = vp.isPerfBlank; --morphs = vp.morphs; {- inf : Str; @@ -45,6 +48,8 @@ concrete QuestionCgg of Question = CatCgg ** open ResCgg, Prelude in { root = clSlash.s; pres = clSlash.pres; perf = clSlash.perf; + isPresBlank = clSlash.isPresBlank; + isPerfBlank = clSlash.isPerfBlank; --morphs = clSlash.morphs; {- inf : Str; @@ -66,6 +71,8 @@ concrete QuestionCgg of Question = CatCgg ** open ResCgg, Prelude in { pres = cl.pres; perf = cl.perf; --morphs = cl.morphs; + isPresBlank = cl.isPresBlank; + isPerfBlank = cl.isPerfBlank; {- inf : Str; pres : Str; @@ -90,6 +97,8 @@ concrete QuestionCgg of Question = CatCgg ** open ResCgg, Prelude in { pres = be_Copula.pres; perf = be_Copula.perf; --morphs = be_Copula.morphs; + isPresBlank = be_Copula.isPresBlank; + isPerfBlank = be_Copula.isPerfBlank; {- inf : Str; pres : Str; @@ -108,6 +117,8 @@ concrete QuestionCgg of Question = CatCgg ** open ResCgg, Prelude in { pres = be_Copula.pres; perf = be_Copula.perf; --morphs = be_Copula.morphs; + isPresBlank = be_Copula.isPresBlank; + isPerfBlank = be_Copula.isPerfBlank; {- inf : Str; pres : Str; @@ -126,6 +137,8 @@ concrete QuestionCgg of Question = CatCgg ** open ResCgg, Prelude in { pres = be_Copula.pres; perf = be_Copula.perf; --morphs = be_Copula.morphs; + isPresBlank = be_Copula.isPresBlank; + isPerfBlank = be_Copula.isPerfBlank; {- inf : Str; pres : Str; diff --git a/src/rukiga/RelativeCgg.gf b/src/rukiga/RelativeCgg.gf index 4f62f2956..97cf02de2 100755 --- a/src/rukiga/RelativeCgg.gf +++ b/src/rukiga/RelativeCgg.gf @@ -32,6 +32,8 @@ lin perf =cl.perf; root = cl.root; --morphs = cl.morphs; + isPresBlank = cl.isPresBlank; + isPerfBlank = cl.isPerfBlank; compl =cl.compl; isCompApStem = False; whichRel = Such_That; @@ -52,6 +54,8 @@ lin perf =vp.perf; root = vp.s; --morphs = vp.morphs; + isPresBlank = vp.isPresBlank; + isPerfBlank = vp.isPerfBlank; compl =vp.comp; isCompApStem = vp.isCompApStem; whichRel = RF RSubj; @@ -76,9 +80,11 @@ lin rp = rp.s; --rObjVariant2 = rp.rObjVariant2; pres = clSlash.pres; - perf = clSlash.perf; + perf = clSlash.perf; root = clSlash.root; --morphs = clSlash.morphs; + isPresBlank = clSlash.isPresBlank; + isPerfBlank = clSlash.isPerfBlank; compl = comp; isCompApStem = isCompApStem; whichRel = RF RObj; diff --git a/src/rukiga/ResCgg.gf b/src/rukiga/ResCgg.gf index 922ba4385..355978ad0 100755 --- a/src/rukiga/ResCgg.gf +++ b/src/rukiga/ResCgg.gf @@ -62,6 +62,13 @@ param -- may not need it NounCat = ComNoun | PropNoun; --prepositions agree with nouns to form adverbial Phrases PrepForm = Form1 | Form2; -- omu and omuri, aha, ahari + -- for Extra Tenses not implemented + -- would be better if I had alliases + TensesExtra = RemotePast | ImmediatePast | RemoteFuture; + + -- for Extra Aspects not implemented + -- would be better if I had alliases + Aspect = Performative | Perfect | Resultative | Retrospective | Habitual | Progressive | Persitive; {- Complete = Nouns with IV, Incomplete = Nouns without IV: important for use with pre-determiners @@ -100,6 +107,8 @@ oper s = rad; pres = end1; perf = end2; + isPresBlank = False; + isPerfBlank = False; --morphs = mkVerbMorphs; isRegular = False; }; @@ -109,6 +118,8 @@ oper pres = "a"; perf = "ire"; --morphs = mkVerbMorphs; + isPresBlank = False; + isPerfBlank = False; isRegular = True; }; @@ -1105,6 +1116,8 @@ mkSubjPrefix : Agreement -> Str =\a ->case a of { pres:Str; perf:Str; --morphs: VFormMini => VerbMorphPos=> Str; + isPresBlank : Bool; + isPerfBlank : Bool; isRegular:Bool }; @@ -1139,7 +1152,9 @@ mkSubjPrefix : Agreement -> Str =\a ->case a of { s:Str; pres:Str; perf:Str; - --morphs: VMorphs ; + --morphs: VMorphs ; + isPresBlank : Bool; + isPerfBlank : Bool; isRegular:Bool; comp:Str ; comp2:Str; @@ -1177,13 +1192,17 @@ mkSubjPrefix : Agreement -> Str =\a ->case a of { s = "ri" ; pres=[]; perf=[]; - --morphs= mkVerbMorphs; + --morphs= mkVerbMorphs; + isPresBlank = True; + isPerfBlank = True; isRegular=False }; mkBecome : Verb ={ s = "b" ; pres="a"; - perf="ire"; + perf="ire"; + isPresBlank = False; + isPerfBlank = False; --morphs= mkVerbMorphs; isRegular=False }; @@ -1339,7 +1358,9 @@ mkSubjPrefix : Agreement -> Str =\a ->case a of { s:Str; pres:Str; perf:Str; - --morphs: VMorphs; + --morphs: VMorphs; + isPresBlank : Bool; + isPerfBlank : Bool; comp: Str; comp2:Str; ap:Str; @@ -1362,6 +1383,8 @@ mkSubjPrefix : Agreement -> Str =\a ->case a of { root : Str; pres: Str; perf: Str; + isPresBlank : Bool; + isPerfBlank : Bool; --morphs : VFormMini => VerbMorphPos =>Str; {- inf : Str; @@ -1371,9 +1394,12 @@ mkSubjPrefix : Agreement -> Str =\a ->case a of { pastPart : Str; -- subject --root : Str ; -- dep. on Pol,Temp, e.g. "does","sleep" -} - compl : Str -- after verb: complement, adverbs + compl : Str -- after verb: complement, adverbs } ; - Comp : Type = {s:Str}; +param + CompSource = NounP | ADverb | AdjP | CommonNoun; +oper + Comp : Type = {s:Str; source : CompSource }; --Conjunctions diff --git a/src/rukiga/SentenceCgg.gf b/src/rukiga/SentenceCgg.gf index 411e349a7..8b61cb4af 100755 --- a/src/rukiga/SentenceCgg.gf +++ b/src/rukiga/SentenceCgg.gf @@ -24,54 +24,110 @@ lin compl = cl.compl in case of { - => {s = subj ++ clitic ++ --Predef.BIND ++ - root ++ Predef.BIND ++ presRestOfVerb ++ compl}; + => case cl.isPresBlank of { + True => {s = subj ++ clitic ++ root ++ compl}; + False => {s = subj ++ clitic ++ root ++ Predef.BIND ++ compl} + }; {-Note: when I use pol.s instead of ti, the word alignment instead becomes worse-} - => {s = subj ++ "ti" ++ Predef.BIND ++ clitic ++ --Predef.BIND ++ - root ++ presRestOfVerb ++ compl}; - => {s = subj ++ clitic ++ --Predef.BIND ++ - vMorphs!VFPresAnt!TAMarker ++ root ++ Predef.BIND ++ pastRestOfVerb ++ compl}; - =>{s = subj ++ "ti" ++ Predef.BIND ++ clitic ++ --Predef.BIND ++ - vMorphs!VFPresAnt!TAMarker ++ root ++ Predef.BIND ++ pastRestOfVerb ++ compl}; + => case cl.isPresBlank of { + True => {s = subj ++ "ti" ++ Predef.BIND ++ clitic ++ root ++ compl}; + False => {s = subj ++ "ti" ++ Predef.BIND ++ clitic ++ + root ++ Predef.BIND ++ presRestOfVerb ++ compl} + }; + => case cl.isPerfBlank of { + True => {s = subj ++ clitic ++ root ++ compl}; + False => {s = subj ++ clitic ++ root ++ Predef.BIND ++ pastRestOfVerb ++ compl} + }; + => case cl.isPerfBlank of { + True => {s = subj ++ clitic ++ root ++ compl}; + False => {s = subj ++ "ti" ++ Predef.BIND ++ clitic ++ + root ++ Predef.BIND ++ pastRestOfVerb ++ compl} + }; - => {s = subj ++ clitic ++ --Predef.BIND ++ - root ++ Predef.BIND ++ pastRestOfVerb ++ compl}; + => case cl.isPerfBlank of { + True => {s = subj ++ clitic ++ "ka" ++ Predef.BIND ++ root ++ compl}; + False => {s = subj ++ clitic ++ root ++ Predef.BIND ++ pastRestOfVerb ++ compl} + }; {-Note: when I use pol.s instead of ti, the word alignment instead becomes worse-} - => {s = subj ++ "ti" ++ Predef.BIND ++ clitic ++ --Predef.BIND ++ - root ++ pastRestOfVerb ++ compl}; - => {s = subj ++ clitic ++ "bire" ++ clitic ++ --Predef.BIND ++ - vMorphs!VFPastAnt!TAMarker ++ root ++ Predef.BIND ++ pastRestOfVerb ++ compl}; - =>{s = subj ++ clitic ++ "bire" ++ clitic ++ "ta"--Predef.BIND ++ ant!TAMarker - ++ root ++ Predef.BIND ++ pastRestOfVerb ++ compl}; + => case cl.isPerfBlank of { + True => {s = subj ++ "ti" ++ Predef.BIND ++ clitic ++ root ++ compl}; + False => {s = subj ++ "ti" ++ Predef.BIND ++ clitic ++ + root ++ pastRestOfVerb ++ compl} + }; - => {s = subj ++ "ni" ++ Predef.BIND ++clitic ++ "za ku" ++ Predef.BIND ++ --choice of za over ija - root ++ Predef.BIND ++ presRestOfVerb ++ compl}; + => case cl.isPerfBlank of { + True => {s = subj ++ clitic ++ "kaba" ++Predef.BIND ++ clitic ++ + root ++ compl}; + False => {s = subj ++ clitic ++ "kaba" ++ clitic ++ "a" ++ Predef.BIND ++ + root ++ Predef.BIND ++ pastRestOfVerb ++ compl} + }; + =>case cl.isPerfBlank of { + True => {s = subj ++ clitic ++ "ka" ++Predef.BIND ++ clitic ++ + root ++ compl}; + False => {s = subj ++ clitic ++ "kaba" ++ clitic ++ "taa" ++ Predef.BIND ++ + root ++ Predef.BIND ++ pastRestOfVerb ++ compl} + }; + + => case cl.isPresBlank of { + True => {s = subj ++ "ni" ++ Predef.BIND ++clitic ++ "za ku" ++ Predef.BIND ++ --choice of za over ija + root ++ compl}; + False => {s = subj ++ "ni" ++ Predef.BIND ++clitic ++ "za ku" ++ Predef.BIND ++ --choice of za over ija + root ++ Predef.BIND ++ presRestOfVerb ++ compl} + }; + + {-Note: when I use pol.s instead of ti, the word alignment instead becomes worse-} - => {s = subj ++ "ti" ++ Predef.BIND ++ clitic ++ "kuza ku" ++ Predef.BIND ++ - root ++ presRestOfVerb ++ compl}; - => {s = subj ++ "ni" ++ Predef.BIND ++clitic ++ "za kuba" ++ Predef.BIND ++ --choice of za over ija - root ++ Predef.BIND ++ pastRestOfVerb ++ compl}; - =>{s = subj ++ "ni" ++ Predef.BIND ++ clitic ++ "za kuba" ++ clitic ++ "taka" ++ Predef.BIND ++ - root ++ pastRestOfVerb ++ compl}; - - - => {s = subj ++ clitic ++ "kaa" ++Predef.BIND ++ - root ++ Predef.BIND ++ presRestOfVerb ++ compl}; + => case cl.isPresBlank of { + True => {s = subj ++ "ti" ++ Predef.BIND ++ clitic ++ "kuza ku" ++ Predef.BIND ++ + root ++ compl}; + False => {s = subj ++ "ti" ++ Predef.BIND ++ clitic ++ "kuza ku" ++ Predef.BIND ++ + root ++ BIND ++ presRestOfVerb ++ compl} + }; + => case cl.isPerfBlank of { + True => {s = subj ++ "ni" ++ Predef.BIND ++clitic ++ "za kuba" ++ Predef.BIND ++ clitic ++ --choice of za over ija + root ++ Predef.BIND ++ "ire" ++ compl}; + False => {s = subj ++ "ni" ++ Predef.BIND ++clitic ++ "za kuba" ++ Predef.BIND ++ clitic ++ --choice of za over ija + root ++ Predef.BIND ++ pastRestOfVerb ++ compl} + }; + + => case cl.isPerfBlank of { + True => {s = subj ++ "ni" ++ Predef.BIND ++ clitic ++ "za kuba" ++ clitic ++ Predef.BIND ++ + root ++ "ire" ++ compl}; + False => {s = subj ++ "ni" ++ Predef.BIND ++ clitic ++ "za kuba" ++ clitic ++ "taka" ++ Predef.BIND ++ + root ++ pastRestOfVerb ++ compl} + }; + => case cl.isPresBlank of { + True => {s = subj ++ clitic ++ "kaa" ++Predef.BIND ++ root ++ compl}; + False => {s = subj ++ clitic ++ "kaa" ++Predef.BIND ++ + root ++ Predef.BIND ++ presRestOfVerb ++ compl} + }; {-Note: when I use pol.s instead of ti, the word alignment instead becomes worse-} - => {s = subj ++ "ti" ++ Predef.BIND ++ clitic ++ "kaa" ++ Predef.BIND ++ - root ++ presRestOfVerb ++ compl}; - => {s = subj ++ clitic ++ "kaa"--Predef.BIND ++ - ++ root ++ Predef.BIND ++ pastRestOfVerb ++ compl}; - =>{s = subj ++ "ti" ++ Predef.BIND ++ clitic ++ "kaa" ++Predef.BIND + =>case cl.isPresBlank of { + True => {s = subj ++ "ti" ++ Predef.BIND ++ clitic ++ "kaa" ++ Predef.BIND ++ + root ++ "ire" ++ compl}; + False => {s = subj ++ "ti" ++ Predef.BIND ++ clitic ++ "kaa" ++ Predef.BIND ++ + root ++ presRestOfVerb ++ compl} + }; + + => case cl.isPerfBlank of { + True => {s = subj ++ clitic ++ "kaa" ++ root ++ compl}; + False => {s = subj ++ clitic ++ "kaa" ++ root ++ Predef.BIND ++ pastRestOfVerb ++ compl} + }; + + =>case cl.isPerfBlank of { + True => {s = subj ++ "ti" ++ Predef.BIND ++ clitic ++ "kaa" ++Predef.BIND + ++ root ++ Predef.BIND ++ "ire" ++ compl}; + False => {s = subj ++ "ti" ++ Predef.BIND ++ clitic ++ "kaa" ++Predef.BIND ++ root ++ Predef.BIND ++ pastRestOfVerb ++ compl} + } }; --: Temp -> Pol -> QCl -> QS ; -- has John walked -- These are the 2 x 4 x 4 = 16 forms generated by different -- combinations of tense, polarity, and -- anteriority, which are defined in [``Common`` Common.html]. UseQCl = UseCl; -- : Temp -> Pol -> Cl -> S ; -- John has not walked - QuestCl qcl = qcl; --: Cl -> QCl ; -- does John (not) walk + --UseRCl : Temp -> Pol -> RCl -> RS ; -- that had not slept UseRCl temp pol rcl = let @@ -231,6 +287,8 @@ lin perf = vp.perf; root = vp.s; --morphs = vp.morphs; + isPresBlank = vp.isPresBlank; + isPerfBlank = vp.isPerfBlank; {- inf = mkVerbInrf vp.root; pres = mkVerbPres vp.root; @@ -248,6 +306,8 @@ lin perf = vp.perf; root = vp.s; --morphs = vp.morphs; + isPresBlank = vp.isPresBlank; + isPerfBlank = vp.isPerfBlank; {- inf = mkVerbInrf vp.root; pres = mkVerbPres vp.root; @@ -256,7 +316,7 @@ lin pastPart = mkVerbPastPart vp.root; -- subject -} --root = vp.root ; - compl = mkSubjClitic np.agr ++ Predef.BIND ++ vp.comp --mkSubjClitic np.agr ++ Predef.BIND ++ vp.comp + compl = mkSubjClitic np.agr ++ vp.comp --mkSubjClitic np.agr ++ Predef.BIND ++ vp.comp } };--: NP -> VP -> Cl ; -- John walks / John does not walk @@ -309,6 +369,8 @@ lin pres = vpslash.pres; perf = vpslash.perf; --morphs = vpslash.morphs; + isPresBlank = vpslash.isPresBlank; + isPerfBlank = vpslash.isPerfBlank; ap = vpslash.ap; isRegular = vpslash.isRegular; adv = vpslash.adv; diff --git a/src/rukiga/SentenceCggAbsCgg.gf b/src/rukiga/SentenceCggAbsCgg.gf new file mode 100644 index 000000000..b01aad45b --- /dev/null +++ b/src/rukiga/SentenceCggAbsCgg.gf @@ -0,0 +1,33 @@ +concrete SentenceCggAbsCgg of SentenceCggAbs = CatCgg + open (R=ResCgg) in { + + lincat + ExtTense = {s : Str ; t : R.TensesExtra } ; + TempExtra = {s : Str ; t : R.TensesExtra a : R.Aspects} ; + Aspect = {s : Str ; a : R.AspectsExtra } ; + lin + --TAspect -> ExtTense ->Ant -> TempExtra ; + TAspect extT a ={s = extT.s ++ a.s; t = exT.t; a = a.a}; + --TRPast : ExtTense ; -- bakagyenda [Remote past] + TRPast = {s = [] ; t = R.Remotepast }; + --TIPast : ExtTense ; -- baagyenda [Immediate Past or Memorial ] + TIPast = {s =[] ; t = R.ImmediatePast}; + --TRFut : ExtTense ; -- I sleep/slept [simultaneous, not compound] + TRFut = {s = [] ; t = R.RemoteFut}; + + --APerformative : Aspect ; -- I slept [past, "imperfect"] --# notpresent + APerformative = {s = []; a = R.Performative }; + APerfect = {s = []; a = R.Perfect }; -- I will sleep [future] --# notpresent + ARes = {s = []; a = R.Resultative }; -- I would sleep [conditional] --# notpresent + ARetr = {s = []; a = R.Retrospective }; -- I have slept/had slept [anterior, "compound", "perfect"] --# notpresent + AHab = {s = []; a = R.Habitual }; + AProg = {s = []; a = R.Progrssive }; + APer = {s = []; a = R.Persitive }; + UseClExtra : TempExtra -> Pol -> Cl -> S ; -- she had not slept + + + --UseQClExtra : TempExtra -> Pol -> QCl -> QS ; -- who had not slept + --UseRClExtra : TempExtra -> Pol -> RCl -> RS ; -- that had not slept + --UseSlashExtra : TempExtra -> Pol -> ClSlash -> SSlash ; -- (that) she had not seen + +} \ No newline at end of file diff --git a/src/rukiga/SentenceCggExtra.gf b/src/rukiga/SentenceCggExtra.gf new file mode 100644 index 000000000..07dfb0815 --- /dev/null +++ b/src/rukiga/SentenceCggExtra.gf @@ -0,0 +1,3 @@ +abstract SentenceCggExtra = Cat **{ + +} \ No newline at end of file diff --git a/src/rukiga/SentenceCggExtraAbs.gf b/src/rukiga/SentenceCggExtraAbs.gf new file mode 100644 index 000000000..b21c3f093 --- /dev/null +++ b/src/rukiga/SentenceCggExtraAbs.gf @@ -0,0 +1,25 @@ +abstract SentenceCggExtraAbs = Cat **{ + + cat + ExtTense; + TempExtra; + Aspect; + fun + TAspect -> ExtTense ->Ant -> TempExtra ; + TRPast : ExtTense ; -- bakagyenda [Remote past] + TIPast : ExtTense ; -- baagyenda [Immediate Past or Memorial ] + TRFut : ExtTense ; -- I sleep/slept [simultaneous, not compound] + APerformative : Aspect ; -- I slept [past, "imperfect"] --# notpresent + APerfect : Aspect ; -- I will sleep [future] --# notpresent + ARes : Aspect ; -- I would sleep [conditional] --# notpresent + ARetr : Aspect ; -- I have slept/had slept [anterior, "compound", "perfect"] --# notpresent + AHab : Aspect ; + AProg : Aspect ; + APer : Aspect ; + + + UseClExtra : TempExtra -> Pol -> Cl -> S ; -- she had not slept + UseQClExtra : TempExtra -> Pol -> QCl -> QS ; -- who had not slept + UseRClExtra : TempExtra -> Pol -> RCl -> RS ; -- that had not slept + UseSlashExtra : TempExtra -> Pol -> ClSlash -> SSlash ; -- (that) she had not seen +} \ No newline at end of file diff --git a/src/rukiga/StructuralCgg.gf b/src/rukiga/StructuralCgg.gf index 95b361720..64ec1527b 100755 --- a/src/rukiga/StructuralCgg.gf +++ b/src/rukiga/StructuralCgg.gf @@ -97,7 +97,8 @@ lin n = Sg }; - have_V2 ={s= "ine"; pres=[]; perf =[]; morphs = mkVerbMorphs; comp = []; isRegular=False}; --: V2 ; + have_V2 ={s= "ine"; pres=[]; perf =[]; isPresBlank = False; + isPerfBlank = False; morphs = mkVerbMorphs; comp = []; isRegular=False}; --: V2 ; {- All Predeterminers are given here. @@ -203,12 +204,16 @@ lin doesAgree = True };--: Det ; - want_VV = {s = "yend"; pres="da"; perf = "zire"; morphs=mkVerbMorphs; isRegular=True; inf=[]; whenUsed = VVBoth}; - can8know_VV = {s = "baas"; pres="a"; perf = "ize"; morphs=mkVerbMorphs; isRegular=True; inf=[]; whenUsed = VVBoth};--: VV ; -- can (capacity) - can_VV = {s = "baas"; pres="a"; perf = "ize"; morphs=mkVerbMorphs; isRegular=True; inf=[]; whenUsed = VVBoth};--: VV ; -- can (possibility) + want_VV = {s = "yend"; pres="da"; perf = "zire"; isPresBlank = False; + isPerfBlank = False; morphs=mkVerbMorphs; isRegular=True; inf=[]; whenUsed = VVBoth}; + can8know_VV = {s = "baas"; pres="a"; perf = "ize"; isPresBlank = False; + isPerfBlank = False; morphs=mkVerbMorphs; isRegular=True; inf=[]; whenUsed = VVBoth};--: VV ; -- can (capacity) + can_VV = {s = "baas"; pres="a"; perf = "ize"; isPresBlank = False; + isPerfBlank = False; morphs=mkVerbMorphs; isRegular=True; inf=[]; whenUsed = VVBoth};--: VV ; -- can (possibility) -- must_VV used especially in the perfective mood: see dictionary entry shemerera on Pg 501 of Mpairwe -- must has no passive form - must_VV = {s = "shemere"; pres="ra"; perf = "ire"; morphs=mkVerbMorphs; isRegular=False; inf=[]; whenUsed = VVPerf}; --VV + must_VV = {s = "shemere"; pres="ra"; perf = "ire"; isPresBlank = False; + isPerfBlank = False; morphs=mkVerbMorphs; isRegular=False; inf=[]; whenUsed = VVPerf}; --VV --somebody_NP = {}; --: NP ; --something_NP : NP ; --somewhere_Adv : Adv ; diff --git a/src/rukiga/VerbCgg.gf b/src/rukiga/VerbCgg.gf index f94d4e12b..f2832cfcc 100755 --- a/src/rukiga/VerbCgg.gf +++ b/src/rukiga/VerbCgg.gf @@ -8,7 +8,9 @@ lin s = v.s ; pres =v.pres; perf = v.perf; - --morphs = v.morphs; + --morphs = v.morphs; + isPresBlank = v.isPresBlank; + isPerfBlank = v.isPerfBlank; comp =[]; comp2 = []; ap =[]; @@ -23,14 +25,35 @@ lin -- UseComp : Comp -> VP ; -- be warm means complement of a copula especially adjectival Phrase --AdjectivalPhrase : Type = {s : Str ; post : Str; isPre : Bool; isProper : Bool; isPrep: Bool}; - UseComp comp = let auxBe = mkBecome - - in - { - s = auxBe.s ++ BIND ++auxBe.pres++ comp.s; --Assuming there is no AP which is prepositional + UseComp comp = + --let auxBe = mkBecome + --in + case comp.source of{ + AdjP => { + s = mkBecome.s ++ BIND ++ mkBecome.pres; --Assuming there is no AP which is prepositional + pres =[]; + perf = []; + isPresBlank = True; + isPerfBlank = True; + --morphs=\\form,morphs=>[]; + comp = comp.s; + comp2 = []; + ap = []; + isCompApStem = True; + agr = AgrNo; + isRegular = False; + adv = []; + containsAdv =False; + adV =[]; + containsAdV = False + }; + _ => { + s = mkBecome.s ++ BIND ++mkBecome.pres++ comp.s; --Assuming there is no AP which is prepositional pres =[]; perf = []; --morphs=\\form,morphs=>[]; + isPresBlank = True; + isPerfBlank = True; comp = []; comp2 = []; ap = []; @@ -41,27 +64,32 @@ lin containsAdv =False; adV =[]; containsAdV = False - }; --its not generating any sentence + } + }; --its not generating any sentence + + -- CompAP : AP -> Comp; -- (be) small - CompAP ap = {s=ap.s! AgP3 Sg KI_BI}; -- used a hack. + CompAP ap = {s=ap.s! AgP3 Sg KI_BI; source = AdjP}; -- used a hack. -- CompNP : NP -> Comp ; -- (be) the man - CompNP np = {s= np.s ! Acc}; --{s =[] ; post =np.s; isPre = False; isProper = Bool; isPrep: Bool}; + CompNP np = {s= np.s ! Acc; source = NounP}; --{s =[] ; post =np.s; isPre = False; isProper = Bool; isPrep: Bool}; -- CompAdv : Adv -> Comp ; -- (be) here - CompAdv adv =adv; + CompAdv adv ={ s= adv.s; source = ADverb}; {- This has been a hack to simply pick the sigular and complete noun. -} --CompCN : CN -> Comp ; -- (be) a man/men - CompCN cn = {s =cn.s ! Sg ! Complete} ; -- (be) a man/men + CompCN cn = {s =cn.s ! Sg ! Complete; source = CommonNoun} ; -- (be) a man/men -- SlashV2a : V2 -> VPSlash ; -- love (it) SlashV2a v2 ={ s =v2.s; pres =v2.pres; perf = v2.perf; --morphs = v2.morphs; + isPresBlank = v2.isPresBlank; + isPerfBlank = v2.isPerfBlank; comp = []; comp2 =[]; ap =[]; @@ -76,7 +104,9 @@ lin s =v3.s; pres =v3.pres; perf = v3.perf; - --morphs = v3.morphs; + --morphs = v3.morphs; + isPresBlank = v3.isPresBlank; + isPerfBlank = v3.isPerfBlank; comp = np.s ! Acc; comp2 =[]; ap =[]; @@ -93,6 +123,8 @@ lin pres =v3.pres; perf = v3.perf; --morphs = v3.morphs; + isPresBlank = v3.isPresBlank; + isPerfBlank = v3.isPerfBlank; comp = np.s ! Acc; comp2 = np.s ! Acc; -- what is the meaning of this function? ap = []; @@ -107,8 +139,13 @@ lin s =vv.s; pres =vv.pres; perf = vv.perf; - --morphs = vv.morphs; - comp = vpslash.s ++ BIND ++ vpslash.pres; + --morphs = vv.morphs; + isPresBlank = vv.isPresBlank; + isPerfBlank = vv.isPerfBlank; + comp = case vv.isPresBlank of { + False => vpslash.s ++ BIND ++ vpslash.pres; + _ => vpslash.s + }; comp2 = []; ap = []; isRegular = vv.isRegular; @@ -127,7 +164,9 @@ lin s =vpslash.s; pres =vpslash.pres; perf = vpslash.perf; - --morphs = vpslash.morphs; + --morphs = vpslash.morphs; + isPresBlank = vpslash.isPresBlank; + isPerfBlank = vpslash.isPerfBlank; comp = vpslash.comp ++ np.s ! Acc; comp2 =vpslash.comp2; --should be empty ap = []; @@ -146,7 +185,9 @@ lin s=vp.s; pres =vp.pres; perf = vp.perf; - --morphs = vp.morphs; + --morphs = vp.morphs; + isPresBlank = vp.isPresBlank; + isPerfBlank = vp.isPerfBlank; comp = adv.s; comp2 = []; ap =[]; @@ -164,9 +205,11 @@ lin s=vp.s; pres =vp.pres; perf = vp.perf; - --morphs = vp.morphs; + --morphs = vp.morphs; + isPresBlank = vp.isPresBlank; + isPerfBlank = vp.isPerfBlank; comp = vp.comp; - comp2 =vp.comp; + comp2 =vp.comp2; ap = []; isCompApStem = False; agr = AgrNo; @@ -187,7 +230,9 @@ lin s =vpslash.s; pres =vpslash.pres; perf = vpslash.perf; - --morphs = vpslash.morphs; + --morphs = vpslash.morphs; + isPresBlank = vpslash.isPresBlank; + isPerfBlank = vpslash.isPerfBlank; comp = vpslash.comp; comp2 = vpslash.comp2; ap = []; @@ -207,7 +252,9 @@ lin s =vpslash.s; pres =vpslash.pres; perf = vpslash.perf; - --morphs = vpslash.morphs; + --morphs = vpslash.morphs; + isPresBlank = vpslash.isPresBlank; + isPerfBlank = vpslash.isPerfBlank; comp = vpslash.comp; comp2 = vpslash.comp2; ap = []; @@ -231,7 +278,9 @@ lin s= vv.s ++ BIND ++ vv.perf ++ vpPres; pres = [];--vv.pres; perf= []; -- vv.perf; - --morphs = vv.morphs; + --morphs = vv.morphs; + isPresBlank = True; + isPerfBlank = True; comp=vp.comp ; comp2 = vp.comp2; ap = []; @@ -246,7 +295,9 @@ lin s= vv.s ++ BIND ++ vv.pres ++ vpPres; pres = [];--vv.pres; perf= [];--vv.perf; - --morphs = vv.morphs; + --morphs = vv.morphs; + isPresBlank = True; + isPerfBlank = True; comp=vp.comp ; comp2 = vp.comp2; ap = []; @@ -265,7 +316,9 @@ lin s= vs.s; pres =vs.pres; perf=vs.perf; - --morphs = vs.morphs; + --morphs = vs.morphs; + isPresBlank = vs.isPresBlank; + isPerfBlank = vs.isPerfBlank; comp=s.s ; comp2 = []; ap = []; @@ -286,7 +339,9 @@ lin s= vq.s; pres =vq.pres; perf=vq.perf; - --morphs = vq.morphs; + --morphs = vq.morphs; + isPresBlank = vq.isPresBlank; + isPerfBlank = vq.isPerfBlank; comp=qs.s ; comp2 = []; ap = []; @@ -312,7 +367,9 @@ lin s= va.s; pres =va.pres; perf=va.perf; - --morphs = va.morphs; + --morphs = va.morphs; + isPresBlank = va.isPresBlank; + isPerfBlank = va.isPerfBlank; comp=[] ; comp2 = []; ap = ap.s! AgP3 Sg KI_BI; @@ -327,7 +384,7 @@ lin -- Copula alone --UseCopula : VP ; -- be - UseCopula = mkBecome ** { + UseCopula = be_Copula ** { comp=[]; comp2 = []; ap = []; From 00d5bb85d1174969ac818d14228f8bebc4409967 Mon Sep 17 00:00:00 2001 From: aarneranta Date: Fri, 3 Jan 2020 09:57:50 +0100 Subject: [PATCH 84/85] added VPS variants of existentials in Extend; made this also for questions, but concrete syntax is not yet there --- src/abstract/Extend.gf | 7 +++++++ src/common/ExtendFunctor.gf | 8 ++++++++ 2 files changed, 15 insertions(+) diff --git a/src/abstract/Extend.gf b/src/abstract/Extend.gf index ea9f9f3b6..718ffdaca 100644 --- a/src/abstract/Extend.gf +++ b/src/abstract/Extend.gf @@ -45,6 +45,13 @@ abstract Extend = Cat ** { MkVPS : Temp -> Pol -> VP -> VPS ; -- hasn't slept ConjVPS : Conj -> [VPS] -> VPS ; -- has walked and won't sleep PredVPS : NP -> VPS -> S ; -- she [has walked and won't sleep] + SQuestVPS : NP -> VPS -> QS ; -- has she walked + QuestVPS : IP -> VPS -> QS ; -- who has walked + +-- existentials that work in the absence of Cl + ExistS : Temp -> Pol -> NP -> S ; -- there was a party + ExistNPQS : Temp -> Pol -> NP -> QS ; -- was there a party + ExistIPQS : Temp -> Pol -> IP -> QS ; -- what was there MkVPI : VP -> VPI ; -- to sleep (TODO: Ant and Pol) ConjVPI : Conj -> [VPI] -> VPI ; -- to sleep and to walk diff --git a/src/common/ExtendFunctor.gf b/src/common/ExtendFunctor.gf index c07d34353..73847677e 100644 --- a/src/common/ExtendFunctor.gf +++ b/src/common/ExtendFunctor.gf @@ -117,6 +117,14 @@ lin UttDatIP ip = UttAccIP (lin IP ip) ; -- whom (dative) ; DEFAULT who UttVPShort = UttVP ; -- have fun, as opposed to "to have fun" ; DEFAULT UttVP + SQuestVPS = variants {} ; -- : NP -> VPS -> QS ; -- has she walked + QuestVPS = variants {} ; -- : IP -> VPS -> QS ; -- who has walked + +-- these will probably not need language-specific implementations + ExistS t p np = UseCl t p (ExistNP np) ; + ExistNPQS t p np = UseQCl t p (QuestCl (ExistNP np)) ; + ExistIPQS t p np = UseQCl t p (ExistIP np) ; + oper quoted : Str -> Str = \s -> "\"" ++ s ++ "\"" ; ---- TODO bind ; move to Prelude? From 0e2fdd3a73675973d4fa4cb0a274e705fa37f98b Mon Sep 17 00:00:00 2001 From: Aarne Ranta Date: Thu, 16 Jan 2020 17:39:45 +0100 Subject: [PATCH 85/85] added a missing case to mkQCl in the API --- doc/example-tables.gfs | 3 +++ src/api/Constructors.gf | 2 ++ 2 files changed, 5 insertions(+) diff --git a/doc/example-tables.gfs b/doc/example-tables.gfs index 45111c36b..256d044f3 100644 --- a/doc/example-tables.gfs +++ b/doc/example-tables.gfs @@ -4,3 +4,6 @@ gt MkDocument (NoDefinition "") (InflectionN ?) "" | l | wf -file="example-table gt MkDocument (NoDefinition "") (InflectionA ?) "" | l | wf -append -file="example-tables.html" gt MkDocument (NoDefinition "") (InflectionV ?) "" | l | wf -append -file="example-tables.html" gt MkDocument (NoDefinition "") (InflectionV2 ?) "" | l | wf -append -file="example-tables.html" +gt MkDocument (NoDefinition "") (InflectionV3 ?) "" | l | wf -append -file="example-tables.html" +gt MkDocument (NoDefinition "") (InflectionVV ?) "" | l | wf -append -file="example-tables.html" +gt MkDocument (NoDefinition "") (InflectionV2V ?) "" | l | wf -append -file="example-tables.html" diff --git a/src/api/Constructors.gf b/src/api/Constructors.gf index 6e9816024..b9f696d5a 100644 --- a/src/api/Constructors.gf +++ b/src/api/Constructors.gf @@ -1180,6 +1180,8 @@ incomplete resource Constructors = open Grammar in { --% = \a,p -> TUseQCl TPres a p ; --% mkQS : (Tense) -> (Ant) -> (Pol) -> QCl -> QS -- who wouldn't have slept = TUseQCl ; --% + mkQS : Temp -> Pol -> QCl -> QS -- who wouldn't have slept --% + = UseQCl ; --% -- Since 'yes-no' question clauses can be built from clauses (see below), -- we give a shortcut